lucene-misc-8.5.0-150200.4.4.3 >  A cp9|PW*x mf{Xg%acz 9zѝ+mƂ274'ߢeGxUr\ zS֟`%bᔽ/%*sd{}2٘#'9pf:-qކ]E6q1 O29ά?Tڤi*GEp+VEXJx"!7#Ox;I)؄29#Cq b,oIEѢK"MmH):~$pѕ~"h>p>?d ! 8 'B]cl    z (   (898:UFGHIXY\ ]8^bcd)e.f1l3uHv`wx0yHzdtx~Clucene-misc8.5.0150200.4.4.3Misc module for luceneApache Lucene is a full-text search engine written entirely in Java. This package provides the "misc" module for Lucene.cibs-power9-13\SUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Development/Libraries/Javahttps://lucene.apache.org/linuxppc64lew AA큤cccccca1c4cd454b46866cd5b770c2c5becad1357e7071ebdaa9cf955041a98723542dee118c9bf242a2f219c64a9ae0487b4d9bacadeb975c89285df6a0f2fc9f457012d002b49fbeac11eae6bb420385ef28267ddc8885c931a1859df1f729b1ea23lucene/lucene-misc.jarrootrootrootrootrootrootrootrootrootrootrootrootlucene-8.5.0-150200.4.4.3.src.rpmlucene-misclucene-misc(ppc-64)mvn(org.apache.lucene:lucene-misc)mvn(org.apache.lucene:lucene-misc:pom:)osgi(org.apache.lucene.misc)@@@@    java-headlessjavapackages-filesystemmvn(org.apache.lucene:lucene-core)mvn(org.apache.lucene:lucene-core)osgi(org.apache.lucene.core)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)8.5.08.5.03.0.4-14.6.0-14.0-15.2-14.14.1b7@^@^x]n]?]@]@]@]@\b@\'@[Y5Ycl@YTY@U hfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comidonmez@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comjengelh@inai.debadshah400@gmail.comdziolkowski@suse.comtchvatal@suse.com- Added patch: * lucene-nodoclint.patch + Do not abort compilation on html5 errors with javadoc 17- Upgrade to version 8.5.0 * API Changes: + LUCENE-9093: Change in behavior of the UnifiedHighlighter's LengthGoalBreakIterator that will yield Passages sized a little different due to the fact that the sizing pivot is now the center of the first match and not its left edge. + LUCENE-9116: PostingsWriterBase and PostingsReaderBase no longer support setting a field's metadata via a 'long[]'. + LUCENE-9116: The FSTOrd postings format has been removed. + LUCENE-8369: Remove obsolete spatial module. + LUCENE-8621: Refactor LatLonShape, XYShape, and all query and utility classes to core. + LUCENE-9218: XY geometries API works in float space. + LUCENE-9212: Intervals.multiterm() takes CompiledAutomaton rather than plain Automaton + LUCENE-9150: Restore support for dynamic PlanetModel in spatial3d. + LUCENE-9171: QueryBuilder.newTermQuery() and .newSynonymQuery() now take boost parameters. + LUCENE-9029: Deprecate SloppyMath toRadians/toDegrees in favor of Java Math. + LUCENE-8620: Add CONTAINS support for LatLonShape and XYShape. + LUCENE-9050: MultiTermIntervalsSource.visit() was not calling back to its visitor. + LUCENE-8909: IndexWriter#getFieldNames() method is used to get fields present in index. After LUCENE-8316, this method is no longer required. Hence, deprecate IndexWriter#getFieldNames() method. + LUCENE-8755: SpatialPrefixTreeFactory now consumes the "version" parsed with Lucene's Version class. The quad and packed quad prefix trees are sensitive to this. It's recommended to pass the version like you should do likewise for analysis components for tokenized text, or else changes to the encoding in future versions may be incompatible with older indexes. + LUCENE-8956: QueryRescorer now only sorts the first topN hits instead of all initial hits. + LUCENE-8921: IndexSearcher.termStatistics() no longer takes a TermStates; it takes the docFreq and totalTermFreq. And don't call if docFreq <= 0. The previous implementation survives as deprecated and final. It's removed in 9.0. + LUCENE-8990: PointValues#estimateDocCount(visitor) estimates the number of documents that would be matched by the given IntersectVisitor. THe method is used to compute the cost() of ScorerSuppliers instead of PointValues#estimatePointCount(visitor). + LUCENE-8865: IndexSearcher now uses Executor instead of ExecutorService. This change is fully backwards compatible since ExecutorService directly implements Executor. + LUCENE-8856: Intervals queries have moved from the sandbox to the queries module. + LUCENE-8893: Intervals.wildcard() and Intervals.prefix() methods now take BytesRef rather than String. + LUCENE-3041: A query introspection API has been added. Queries should implement a visit() method, taking a QueryVisitor, and either pass the visitor down to any child queries, or call a visitX() or consumeX() method on it. All locations in the code that called Weight.extractTerms() have been changed to use this API, and the extractTerms() method has been deprecated. + LUCENE-8735: Directory.getPendingDeletions is now abstract to ensure subclasses override it. FilterDirectory now delegates the call, ensuring correct default behaviour for subclasses. + LUCENE-8662: TermsEnum.seekExact(BytesRef) to abstract and delegate seekExact(BytesRef) in FilterLeafReader.FilterTermsEnum. + LUCENE-8469: Deprecated StringHelper.compare has been removed. + LUCENE-8039: Introduce a "delta distance" method set to GeoDistance. This allows distance calculations, especially for paths, to take into account an "excursion" to include the specified point. + LUCENE-8007: Index statistics Terms.getSumDocFreq(), Terms.getDocCount() are now required to be stored by codecs. Additionally, TermsEnum.totalTermFreq() and Terms.getSumTotalTermFreq() are now required: if frequencies are not stored they are equal to TermsEnum.docFreq() and Terms.getSumDocFreq(), respectively, because all freq() values equal 1. + LUCENE-8038: Deprecated PayloadScoreQuery constructors have been removed + LUCENE-8014: Similarity.computeSlopFactor() and Similarity.computePayloadFactor() have been removed + LUCENE-7996: Queries are now required to produce positive scores. + LUCENE-8099: CustomScoreQuery, BoostedQuery and BoostingQuery have been removed + LUCENE-8012: Explanation now takes Number rather than float + LUCENE-8116: SimScorer now only takes a frequency and a norm as per-document scoring factors. + LUCENE-8113: TermContext has been renamed to TermStates, and can now be constructed lazily if term statistics are not required + LUCENE-8242: Deprecated method IndexSearcher#createNormalizedWeight() has been removed + LUCENE-8267: Memory codecs removed from the codebase (MemoryPostings, MemoryDocValues). + LUCENE-8144: Moved QueryCachingPolicy.ALWAYS_CACHE to the test framework. + LUCENE-8356: StandardFilter and StandardFilterFactory have been removed + LUCENE-8373: StandardAnalyzer.ENGLISH_STOP_WORD_SET has been removed + LUCENE-8388: Unused PostingsEnum#attributes() method has been removed + LUCENE-8405: TopDocs.maxScore is removed. IndexSearcher and TopFieldCollector no longer have an option to compute the maximum score when sorting by field. + LUCENE-8411: TopFieldCollector no longer takes a fillFields option, it now always fills fields. + LUCENE-8412: TopFieldCollector no longer takes a trackDocScores option. Scores need to be set on top hits via TopFieldCollector#populateScores instead. + LUCENE-6228: A new Scorable abstract class has been added, containing only those methods from Scorer that should be called from Collectors. LeafCollector.setScorer() now takes a Scorable rather than a Scorer. + LUCENE-8475: Deprecated constants have been removed from RamUsageEstimator. + LUCENE-8483: Scorers may no longer take null as a Weight + LUCENE-8352: TokenStreamComponents is now final, and can take a Consumer in its constructor + LUCENE-8498: LowerCaseTokenizer has been removed, and CharTokenizer no longer takes a normalizer function. + LUCENE-7875: Moved MultiFields static methods out of the class. getLiveDocs is now in MultiBits which is now public. getMergedFieldInfos and getIndexedFields are now in FieldInfos. getTerms is now in MultiTerms. getTermPositionsEnum and getTermDocsEnum were collapsed and renamed to just getTermPostingsEnum and moved to MultiTerms. + LUCENE-8513: MultiFields.getFields is now removed. Please avoid this class, and Fields in general, when possible. + LUCENE-8497: MultiTermAwareComponent has been removed, and in its place TokenFilterFactory and CharFilterFactory now expose type-safe normalize() methods. This decouples normalization from tokenization entirely. + LUCENE-8597: IntervalIterator now exposes a gaps() method that reports the number of gaps between its component sub-intervals. This can be used in a new filter available via Intervals.maxgaps(). + LUCENE-8609: Remove IndexWriter#numDocs() and IndexWriter#maxDoc() in favor of IndexWriter#getDocStats(). * Changes in Runtime Behavior + LUCENE-8671: Load FST off-heap also for ID-like fields if reader is not opened from an IndexWriter. + LUCENE-8730: WordDelimiterGraphFilter always emits its original token first. This brings its behaviour into line with the deprecated WordDelimiterFilter, so that the only difference in output between the two is in the position length attribute. + LUCENE-7386: Disjunctions nested in disjunctions are now flattened. This might trigger changes in the produced scores due to changes to the order in which scores of sub clauses are summed up. + LUCENE-8756: MoreLikeThisQuery now respects custom term frequencies (TermFrequencyAttribute) at search time + LUCENE-8333: Switch MoreLikeThis.setMaxDocFreqPct to use maxDoc instead of numDocs. + LUCENE-7837: Indices that were created before the previous major version will now fail to open even if they have been merged with the previous major version. + LUCENE-8020: Similarities are no longer passed terms that don't exist by queries such as SpanOrQuery, so scoring formulas no longer require divide-by-zero hacks. IndexSearcher.termStatistics/collectionStatistics return null instead of returning bogus values for a non-existent term or field. + LUCENE-7996: FunctionQuery and FunctionScoreQuery now return a score of 0 when the function produces a negative value. + LUCENE-8116: Similarities now score fields that omit norms as if the norm was 1. This might change score values on fields that omit norms. + LUCENE-8134: Index options are no longer automatically downgraded. + LUCENE-8031: Length normalization correctly reflects omission of term frequencies. + LUCENE-7444: StandardAnalyzer no longer defaults to removing English stopwords + LUCENE-8060: IndexSearcher's search and searchAfter methods now only compute total hit counts accurately up to 1,000 in order to enable top-hits optimizations such as block-max WAND (LUCENE-8135). + LUCENE-8505: IndexWriter#addIndices will now fail if the target index is sorted but the candidate is not. + LUCENE-8535: Highlighter and FVH doesn't support ToParent and ToChildBlockJoinQuery out of the box anymore. In order to highlight on Block-Join Queries a custom WeightedSpanTermExtractor / FieldQuery should be used. + LUCENE-8563: BM25 scores don't include the (k1+1) factor in their numerator anymore. This doesn't affect ordering as this is a constant factor which is the same for every document. + LUCENE-8509: WordDelimiterGraphFilter will no longer set the offsets of internal tokens by default, preventing a number of bugs when the filter is chained with tokenfilters that change the length of their tokens + LUCENE-8633: IntervalQuery scores do not use term weighting any more, the score is instead calculated as a function of the sloppy frequency of the matching intervals. + LUCENE-8635: FSTs can now remain off-heap, accessed via IndexInput, and the default codec's term dictionary (BlockTreeTermsReader) will now leave the FST for the terms index off-heap for non-primary-key fields using MMapDirectory, reducing heap usage for such fields. * New Features: + LUCENE-8903: Add LatLonShape and XYShape point query. + LUCENE-8707: Add LatLonShape and XYShape distance query. + LUCENE-9238: New XYPointField field and Queries for indexing, searching and sorting cartesian points. + LUCENE-8936: Add SpanishMinimalStemFilter + LUCENE-8764 LUCENE-8945: Add "export all terms and doc freqs" feature to Luke with delimiters. + LUCENE-8747: Composite Matches from multiple subqueries now allow access to their submatches, and a new NamedMatches API allows marking of subqueries and a simple way to find which subqueries have matched on a given document + LUCENE-8769: Introduce Range Query For Multiple Connected Ranges + LUCENE-8960: Introduce LatLonDocValuesPointInPolygonQuery for LatLonDocValuesField + LUCENE-8753: New UniformSplitPostingsFormat (name "UniformSplit") primarily benefiting in simplicity and extensibility. New STUniformSplitPostingsFormat (name "SharedTermsUniformSplit") that shares a single internal term dictionary across fields. + LUCENE-8632: New XYShape Field and Queries for indexing and searching general cartesian geometries. + LUCENE-8891: Snowball stemmer/analyzer for the Estonian language. + LUCENE-8815: Provide a DoubleValues implementation for retrieving the value of features without requiring a separate numeric field. Note that as feature values are stored with only 8 bits of mantissa the values returned may have a delta from the original values indexed. + LUCENE-8803: Provide a FeatureSortfield to allow sorting search hits by descending value of a feature. This is exposed via the factory method FeatureField#newFeatureSort. + LUCENE-8784: The KoreanTokenizer now preserves punctuations if discardPunctuation is set to false (defaults to true). + LUCENE-8812: Add new KoreanNumberFilter that can change Hangul character to number and process decimal point. It is similar to the JapaneseNumberFilter. + LUCENE-8362: Add doc-value support to range fields. + LUCENE-8766: Add monitor subproject (previously Luwak monitoring library). This allows a stream of documents to be matched against a set of registered queries in an efficien manner, for use as a monitoring or classification tool. + LUCENE-7714: Add a numeric range query in sandbox that takes advantage of index sorting. + LUCENE-8859: The completion suggester's postings format now have an option to load its internal FST off-heap. + LUCENE-2562: The well-known graphical user interface for inspecting Lucene indexes "Luke" was added as a Lucene module. It can be started from the binary distribution by calling the shell scripts in the module folder or from the source checkout by using 'ant -f lucene/luke/build.xml run'. Luke provides a Swing-based user interface and can be used to open Lucene or Solr (or Elasticsearch) indexes, inspect documents, check index commits and segments, or test (custom) analyzers. It also has maintenance functions to check index structures and force merge indexes for archival. + LUCENE-8340: LongPoint#newDistanceFeatureQuery may be used to boost scores based on how close a value of a long field is from a configurable origin. This is typically useful to boost by recency. + LUCENE-8482: LatLonPoint#newDistanceFeatureQuery may be used to boost scores based on the haversine distance of a LatLonPoint field to a provided point. This is typically useful to boost by distance. + LUCENE-8216: Added a new BM25FQuery in sandbox to blend statistics across several fields using the BM25F formula. + LUCENE-8564: GraphTokenFilter is an abstract class useful for token filters that need to read-ahead in the token stream and take into account graph structures. This also changes FixedShingleFilter to extend GraphTokenFilter + LUCENE-8612: Intervals.extend() treats an interval as if it covered a wider span than it actually does, allowing users to force minimum gaps between intervals in a phrase. + LUCENE-8629: New interval functions: Intervals.before(), Intervals.after(), Intervals.within() and Intervals.overlapping(). + LUCENE-8622: Adds a minimum-should-match interval function that produces intervals spanning a subset of a set of sources. + LUCENE-8645: Intervals.fixField() allows you to report intervals from one field as if they came from another. + LUCENE-8646: New interval functions: Intervals.prefix() and Intervals.wildcard() + LUCENE-8655: Add a getter in FunctionScoreQuery class in order to access to the underlying DoubleValuesSource. + LUCENE-8697: GraphTokenStreamFiniteStrings correctly handles side paths containing gaps + LUCENE-8702: Simplify intervals returned from vararg Intervals factory methods * Improvements: + LUCENE-9149: Increase data dimension limit in BKD. + LUCENE-9102: Add maxQueryLength option to DirectSpellchecker. + LUCENE-9091: UnifiedHighlighter HTML escaping should only escape essentials + LUCENE-9105: UniformSplit postings format detects corrupted index and better handles IO exceptions. + LUCENE-9106: UniformSplit postings format allows extension of block/line serializers. + LUCENE-9093: UnifiedHighlighter's LengthGoalBreakIterator has a new fragmentAlignment option to better center the first match in the passage. Also the sizing point now pivots at the center of the first match term and not its left edge. This yields Passages that won't be identical to the previous behavior. + LUCENE-9153: Allow WhitespaceAnalyzer to set a maxTokenLength other than the default of 255 + LUCENE-9152: Improve line intersections with polygons when they are touching from the outside. + LUCENE-9123: Add new JapaneseTokenizer constructors with discardCompoundToken option that controls whether the tokenizer emits original (compound) tokens when the mode is not NORMAL. + UCENE-9253: KoreanTokenizer now supports custom dictionaries(system, unknown). + LUCENE-9171: QueryBuilder can now use BoostAttributes on input token streams to selectively boost particular terms or synonyms in parsed queries. + LUCENE-9002: Skip costly caching clause in LRUQueryCache if it makes the query many times slower. + LUCENE-9006: WordDelimiterGraphFilter's catenateAll token is now ordered before any token parts, like WDF did. + LUCENE-9028: introducing Intervals.multiterm() + LUCENE-9018: ConcatenateGraphFilter now has a configurable separator. + LUCENE-9036: ExitableDirectoryReader may interupt scaning over DocValues + LUCENE-9062: QueryVisitor now has a consumeTermsMatching() method, allowing queries that match a class of terms to pass a ByteRunAutomaton matching those that class back to the visitor. + LUCENE-9073: IntervalQuery to respond field on toString() and explain() + LUCENE-8874: Show SPI names instead of class names in Luke Analysis tab. + LUCENE-8894: Add APIs to find SPI names for Tokenizer/CharFilter/TokenFilter factory classes. + LUCENE-8914: move the logic for discarding inner modes in FloatPointNearestNeighbor to the IntersectVisitor so we take advantage of the change introduced in LUCENE-7862. + LUCENE-8955: move the logic for discarding inner modes in LatLonPoint NearestNeighbor to the IntersectVisitor so we take advantage of the change introduced in LUCENE-7862. + LUCENE-8918: PhraseQuery throws exceptions at construction time if it is passed null arguments. + LUCENE-8916: GraphTokenStreamFiniteStrings preserves all Token attributes through its finite strings TokenStreams + LUCENE-8933: Check kuromoji user dictionary beforehand to avoid unexpected runtime exceptions. (Tomoko Uchida + LUCENE-8906: Expose Lucene50PostingsFormat.IntBlockTermState as public so that other postings formats can re-use it. + LUCENE-8942: Remove redundant parameters and improve visibility strictness in LRUQueryCache + SOLR-13663: Introduce into XML Query Parser + LUCENE-8952: Use a sort key instead of true distance in NearestNeighbor + LUCENE-8620: Tessellator labels the edges of the generated triangles whether they belong to the original polygon. This information is added to the triangle encoding. + LUCENE-8964: Fix geojson shape parsing on string arrays in properties + LUCENE-8976: Use exact distance between point and bounding rectangle in FloatPointNearestNeighbor. + LUCENE-8966: The Korean analyzer now splits tokens on boundaries between digits and alphabetic characters. + LUCENE-8984: MoreLikeThis MLT is biased for uncommon fields + LUCENE-7840: Non-scoring BooleanQuery now removes SHOULD clauses before building the scorer supplier as opposed to eliminating them during scoring construction. + LUCENE-8770: BlockMaxConjunctionScorer now leverages two-phase iterators in order to avoid executing the second phase when scorers don't intersect. + LUCENE-8781: FST lookup performance has been improved in many cases by encoding Arcs using full-sized arrays with gaps. The new encoding is enabled for postings in the default codec and for suggesters. + LUCENE-8818: Fix smokeTestRelease.py encoding bug + LUCENE-8845: Allow Intervals.prefix() and Intervals.wildcard() to specify their maximum allowed expansions + LUCENE-8875: Introduce a Collector optimized for use cases when large number of hits are requested + LUCENE-8848 LUCENE-7757 LUCENE-8492: The UnifiedHighlighter now detects that parts of the query are not understood by it, and thus it should not make optimizations that result in no highlights or slow highlighting. This generally works best for WEIGHT_MATCHES mode. Consequently queries produced by ComplexPhraseQueryParser and the surround QueryParser will now highlight correctly. + LUCENE-8793: Luke enhanced UI for CustomAnalyzer: show detailed analysis steps. + LUCENE-8855: Add Accountable to some Query implementations + LUCENE-8673: Use radix partitioning when merging dimensional points instead of sorting all dimensions before hand. + LUCENE-8687: Optimise radix partitioning for points on heap. + LUCENE-8699: Change HeapPointWriter to use a single byte array instead to a list of byte arrays. In addition a new interface PointValue is added to abstract out the different formats between offline and on-heap writers. + LUCENE-8703: Build point writers in the BKD tree only when they are needed. + LUCENE-8652: SynonymQuery can now deboost the document frequency of each term when blending the score of the synonym. + LUCENE-8631: The Korean's user dictionary now picks the longest-matching word and discards the other matches. + LUCENE-8732: ConstantScoreQuery can now early terminate the query if the minimum score is greater than the constant score and total hits are not requested. + LUCENE-8750: Implements setMissingValue() on sort fields produced from DoubleValuesSource and LongValuesSource + LUCENE-8701: ToParentBlockJoinQuery now creates a child scorer that disallows skipping over non-competitive documents if the score of a parent depends on the score of multiple children (avg, max, min). Additionally the score mode 'none' that assigns a constant score to each parent can early terminate top scores's collection. + LUCENE-8751: Weight#matches now use the ScorerSupplier to build scorers with a lead cost of 1 (single document). + LUCENE-8752: Japanese new era name '令和' (Reiwa) is added to the dictionary used in JapaneseTokenizer so that the analyzer handles the era name correctly. Reiwa is set to replace the Heisei Era on May 1, 2019. + LUCENE-8671: Introduced reader attributes allows a per IndexReader configuration of codec internals. This enables a per reader configuration if FSTs are on- or off-heap on a per field basis + LUCENE-8787: spatial-extras DateRangePrefixTree used to only parse ISO-8601 timestamps with 0 or 3 digits of milliseconds precision but now parses other lengths (although > 3 not used). + LUCENE-7997: Add BaseSimilarityTestCase to sanity check similarities. SimilarityBase switches to 64-bit doubles internally to help avoid common numeric issues. Add missing range checks for similarity parameters. Improve BM25 and ClassicSimilarity's explanations. + LUCENE-8011: Improved similarity explanations. + LUCENE-4198: Codecs now have the ability to index score impacts. + LUCENE-8135: Boolean queries now implement the block-max WAND algorithm in order to speed up selection of top scored documents. + LUCENE-8279: CheckIndex now cross-checks terms with norms. + LUCENE-8660: TopDocsCollectors now return an accurate count (instead of a lower bound) if the total hit count is equal to the provided threshold. * Optimizations + LUCENE-9211: Add compression for Binary doc value fields. + LUCENE-4702: Better compression of terms dictionaries. + LUCENE-9228: Sort dvUpdates in the term order before applying if they all update a single field to the same value. This optimization can reduce the flush time by around 20% for the docValues update user cases. + LUCENE-9245: Reduce AutomatonTermsEnum memory usage. + LUCENE-9237: Faster UniformSplit intersect TermsEnum. + LUCENE-9068: FuzzyQuery builds its Automaton up-front + LUCENE-9113: Faster merging of SORTED/SORTED_SET doc values. + LUCENE-9125: Optimize Automaton.step() with binary search and introduce Automaton.next(). + LUCENE-9147: The index of stored fields and term vectors in now off-heap. + LUCENE-8928: When building a kd-tree for dimensions n > 2, compute exact bounds for an inner node every N splits to improve the quality of the tree. N is defined by SPLITS_BEFORE_EXACT_BOUNDS which is set to 4. + BaseDirectoryReader no longer sums up the 'LeafReader#numDocs' of its leaves eagerly. This especially helps when creating views of readers that hide documents, since computing the number of live documents is an expensive operation. + LUCENE-8992: TopFieldCollector and TopScoreDocCollector can now share minimum scores across leaves concurrently. + LUCENE-8932: BKDReader's index is now stored off-heap when the IndexInput is an instance of ByteBufferIndexInput. + LUCENE-9024: IntroSelector now falls back to the median of medians algorithm instead of sorting when the maximum recursion level is exceeded, providing better worst-case runtime. + LUCENE-8920: The denser arcs of FST now index labels with a bitset in order to provide near constant time access. + LUCENE-9027: Use SIMD instructions to decode postings. + LUCENE-9049: Remove FST cached root arcs now redundant with labels indexed by bitset. This frees some on-heap FST space. + LUCENE-9045: Do not use TreeMap/TreeSet in BlockTree and PerFieldPostingsFormat. + LUCENE-8922: DisjunctionMaxQuery more efficiently leverages impacts to skip non-competitive hits. + LUCENE-8935: BooleanQuery with no scoring clause can now early terminate the query when the total hits is not requested. + LUCENE-8941: Matches on wildcard queries will defer building their full disjunction until a MatchesIterator is pulled + LUCENE-8755: spatial-extras quad and packed quad prefix trees now index points faster. + LUCENE-8860: add additional leaf node level optimizations in LatLonShapeBoundingBoxQuery. + LUCENE-8968: Improve performance of WITHIN and DISJOINT queries for Shape queries by doing just one pass whenever possible. + LUCENE-8939: Introduce shared count based early termination across multiple slices + LUCENE-8980: Blocktree's seekExact now short-circuits false if the term isn't in the min-max range of the segment. Large perf gain for ID/time like data when populated sequentially. + LUCENE-8796: Use exponential search instead of binary search in IntArrayDocIdSet#advance method + LUCENE-8865: Use incoming thread for execution if IndexSearcher has an executor. Now caller threads execute at least one search on an index even if there is an executor provided to minimize thread context switching. + LUCENE-8868: New storing strategy for BKD tree leaves with low cardinality. It stores the distinct values once with the cardinality value reducing the storage cost. + LUCENE-8885: Optimise BKD reader by exploiting cardinality information stored on leaves. + LUCENE-8896: Override default implementation of IntersectVisitor#visit(DocIDSetBuilder, byte[]) for several queries. + LUCENE-8901: Load frequencies lazily only when needed in BlockDocsEnum and BlockImpactsEverythingEnum + LUCENE-8888: Optimize distribution of points with data dimensions in BKD tree leaves. + LUCENE-8311: Phrase queries now leverage impacts. + LUCENE-8040: Optimize IndexSearcher.collectionStatistics, avoiding MultiFields/MultiTerms + LUCENE-4100: Disjunctions now support faster collection of top hits when the total hit count is not required. + LUCENE-7993: Phrase queries are now faster if total hit counts are not required. + LUCENE-8109: Boolean queries propagate information about the minimum competitive score in order to make collection faster if there are disjunctions or phrase queries as sub queries, which know how to leverage this information to run faster. + LUCENE-8439: Disjunction max queries can skip blocks to select the top documents if the total hit count is not required. + LUCENE-8204: Boolean queries with a mix of required and optional clauses are now faster if the total hit count is not required. + LUCENE-8448: Boolean queries now propagates the mininum score to their sub-scorers. + LUCENE-8511: MultiFields.getIndexedFields is now optimized; does not call getMergedFieldInfos + LUCENE-8507: TopFieldCollector can now update the minimum competitive score if the primary sort is by relevancy and the total hit count is not required. + LUCENE-8464: ConstantScoreScorer now implements setMinCompetitveScore in order to early terminate the iterator if the minimum score is greater than the constant score. + LUCENE-8607: MatchAllDocsQuery can shortcut when total hit count is not required + LUCENE-8585: Index-time jump-tables for DocValues, for O(1) advance when retrieving doc values. * Bug Fixes + LUCENE-9084: Fix potential deadlock due to circular synchronization in AnalyzingInfixSuggester + LUCENE-9115: NRTCachingDirectory no longer caches files of unknown size. + LUCENE-9144: Fix error message on OneDimensionBKDWriter when too many points are added to the writer. + LUCENE-9135: Make UniformSplit FieldMetadata counters long. + LUCENE-9200: Fix TieredMergePolicy to use double (not float) math to make its merging decisions, fixing a corner-case bug uncovered by fun randomized tests + LUCENE-9099: Unordered and Ordered interval queries now correctly handle repeated subterms - ordered intervals could supply an 'extra' minimized interval, resulting in odd matches when combined with eg CONTAINS queries; and unordered intervals would match duplicate subterms on the same position, so an query for UNORDERED(foo, foo) would match a document containing 'foo' only once. + LUCENE-9250: Add support for Circle2d#intersectsLine around the dateline. + LUCENE-9243: Add fudge factor when creating a bounding box of a XYCircle. + LUCENE-9239: Circle2D#WithinTriangle detects properly if a triangle is Within distance. + LUCENE-9251: Fix bug in the polygon tessellator where edges with different value on #isEdgeFromPolygon were bot filtered out properly. + LUCENE-9263: Fix wrong transformation of distance in meters to radians in Geo3DPoint. + LUCENE-9001: Fix race condition in SetOnce. + LUCENE-9030: Fix WordnetSynonymParser behaviour so it behaves similar to SolrSynonymParser. + LUCENE-9054: Fix reproduceJenkinsFailures.py to not overwrite junit XML files when retrying + LUCENE-9031: UnsupportedOperationException on MatchesIterator.getQuery() + LUCENE-8996: maxScore was sometimes missing from distributed grouped responses. + LUCENE-9055: Fix the detection of lines crossing triangles through edge points. + LUCENE-9103: Disjunctions can miss some hits in some rare conditions. + LUCENE-8755: spatial-extras quad and packed quad prefix trees could throw a NullPointerException for certain cell edge coordinates + LUCENE-9005: BooleanQuery.visit() would pull subVisitors from its parent visitor, rather than from a visitor for its own specific query. This could cause problems when BQ was nested under another BQ. Instead, we now pull a MUST subvisitor, pass it to any MUST subclauses, and then pull SHOULD, MUST_NOT and FILTER visitors from it rather than from the parent. + LUCENE-8831: Fixed LatLonShapeBoundingBoxQuery .hashCode methods. + LUCENE-8775: Improve tessellator to handle better cases where a hole share a vertex with the polygon. + LUCENE-8785: Ensure new threadstates are locked before retrieving the number of active threadstates. This causes assertion errors and potentially broken field attributes in the IndexWriter when IndexWriter#deleteAll is called while actively indexing. + LUCENE-8804: Forbid calls to putAttribute on frozen FieldType instances. + LUCENE-8828: Removes the buggy 'disallow overlaps' boolean from Intervals.unordered(), and replaces it with a new Intervals.unorderedNoOverlaps() method + LUCENE-8843: Don't ignore exceptions that are thrown when trying to open a file in IOUtils#fsync. + LUCENE-8835: FileSwitchDirectory now respects the file extension when listing directory contents to ensure we don't expose pending deletes if both directory point to the same underlying filesystem directory. + LUCENE-8853: FileSwitchDirectory now applies best effort to place tmp files in the same directory as the target files. + LUCENE-8892: Add missing closing parentheses in MultiBoolFunction's description() + LUCENE-8736: LatLonShapePolygonQuery returns incorrect WITHIN results with shared boundaries. Point in Polygon now correctly includes boundary points. Box and Polygon relations with triangles have also been improved to correctly include boundary points. + LUCENE-8712: Polygon2D does not detect crossings through segment edges. + LUCENE-8720: NameIntCacheLRU (in the facets module) had an int overflow bug that disabled cleaning of the cache + LUCENE-8726: ValueSource.asDoubleValuesSource() could leak a reference to IndexSearcher + LUCENE-8719: FixedShingleFilter can miss shingles at the end of a token stream if there are multiple paths with different lengths. + LUCENE-8688: TieredMergePolicy#findForcedMerges now tries to create the cheapest merges that allow the index to go down to 'maxSegmentCount' segments or less. + LUCENE-8477: Interval disjunctions could miss valid hits if some of the clauses of the disjunction are minimized away. We now rewrite intervals if a source contains a disjunction and the internal gaps matter for matching. This behaviour can be disabled if users are more interested in speed rather than accuracy of matching. + LUCENE-8741: ValueSource.fromDoubleValuesSource() was casting to Scorer instead of Scorable, leading to ClassCastExceptions + LUCENE-8754: Fix ConcurrentModificationException in SegmentInfo if attributes are accessed in MergePolicy while the merge is running + LUCENE-8765: Fixed validation of the number of added points in KD trees. * Other + LUCENE-9109: Backport some changes from master (except StackWalker) to improve TestSecurityManager + LUCENE-9110: Backport refactored stack analysis in tests to use generalized LuceneTestCase methods + LUCENE-9141: Simplify LatLonShapeXQuery API by adding a new abstract class called LatLonGeometry. Queries are executed with input objects that extend such interface. + LUCENE-9194: Simplify XYShapeXQuery API by adding a new abstract class called XYGeometry. Queries are executed with input objects that extend such interface. + LUCENE-9096: Simplification of CompressingTermVectorsWriter#flushOffsets. + LUCENE-9225: Rectangle extends LatLonGeometry so it can be used in a geometry collection. + LUCENE-8979: Code Cleanup: Use entryset for map iteration wherever possible. - Part 2 + LUCENE-8746: Refactor EdgeTree - Introduce a Component tree that represents the tree of components (e.g polygons). Edge tree is now just a tree of edges. + LUCENE-8994: Code Cleanup - Pass values to list constructor instead of empty constructor followed by addAll(). + LUCENE-9046: Fix wrong example in Javadoc of TermInSetQuery + LUCENE-8983: Add sandbox PhraseWildcardQuery to control multi-terms expansions in a phrase. + LUCENE-9067: Polygon2D#contains() is now thread safe. + LUCENE-8778 LUCENE-8911 LUCENE-8957: Define analyzer SPI names as static final fields and document the names in Javadocs. + LUCENE-8758: QuadPrefixTree: removed levelS and levelN fields which weren't used. + LUCENE-8975: Code Cleanup: Use entryset for map iteration wherever possible. + LUCENE-8993, LUCENE-8807: Changed all repository and download references in build files to HTTPS. + LUCENE-8998: Fix OverviewImplTest.testIsOptimized reproducible failure. + LUCENE-8999: LuceneTestCase.expectThrows now propogates assert/assumption failures up to the test w/o wrapping in a new assertion failure unless the caller has explicitly expected them + LUCENE-8062: GlobalOrdinalsWithScoreQuery is no longer eligible for query caching. + LUCENE-8847: Code Cleanup: Remove StringBuilder.append with concatenated strings. + LUCENE-8861: Script to find open Github PRs that needs attention + LUCENE-8852: ReleaseWizard tool for release managers + LUCENE-8838: Remove support for Steiner points on Tessellator. + LUCENE-8879: Improve BKDRadixSelector tests. + LUCENE-8886: Fix TestMutablePointsReaderUtils tests. + LUCENE-8680: Refactor EdgeTree#relateTriangle method. + LUCENE-8685: Refactor LatLonShape tests. + LUCENE-8713: Add Line2D tests. + LUCENE-8729: Workaround: Disable accessibility doclints (Java 13+), so compilation with recent JDK succeeds. + LUCENE-8725: Make TermsQuery.SeekingTermSetTermsEnum a top level class and public * Build + Upgrade forbiddenapis to version 2.7; upgrade Groovy to 2.4.17. + LUCENE-9041: Upgrade ecj to 3.19.0 to fix sporadic precommit javadoc issues * Test Framework + LUCENE-8825: CheckHits now display the shard index in case of mismatch between top hits. - Modified patches: * 0001-Disable-ivy-settings.patch * 0002-Dependency-generation.patch * lucene-java8compat.patch * lucene-osgi-manifests.patch + rediff to changed context - Added patch: * lucene-missing-dependencies.patch + patch out dependencies that are not needed for modules that we distribute + patch out dependencies on jars that we don't build + add target for the new monitor jars- Modified patch: * lucene-osgi-manifests.patch + add the OSGi manifest to queryparser module too- Modified patch: * lucene-osgi-manifests.patch + add the OSGi manifests also to modules that are currently not built due to missing dependencies- Remove a bogus log4j build dependency- Fix property Provides and Obsoletes in order to make upgrade smooth - Added patch: * lucene-osgi-manifests.patch + Patch the build to produce OSGi manifests needed by eclipse - Install the artifacts to "lucene" subdirectory and create compatibility symlinks - Install lucene-misc as archful artifact, since it contains JNI code- Upgrade to version 7.1.0 - Added patches: * 0001-Disable-ivy-settings.patch * 0002-Dependency-generation.patch + Sync with Fedora's 7.1.0 * lucene-java8compat.patch + Avoid using java9+ only functions- Remove the parent references from the pom files, since we are not building lucene using maven. - Overhaul the packaging to distribute the artifacts and the corresponding metadata and pom files in the same package - Specify runtime dependencies of the different packages - Remove version information from the artifact names- Remove the JPP prefix from pom filenames- Remove dependency on jline, because nothing in the build uses it- Require the different apache-commons-* packages instead of jakarta-commons-*- Do not require asm to build. Nothing depends on it- Minimum supported java is 1.8- Remove unused "%package javadoc" declaration block. - Trim filler words from descriptions. Say a thing about features.- Update to version 6.6.0: + See https://lucene.apache.org/core/6_6_0/changes/Changes.html for a full list of changes. - Drop patches that are no longer applicable or needed: + lucene-no-classpath-in-manifest.patch + lucene-no-get.patch + lucene-2.3.0-db-javadoc.patch - Add BuildRequires: antlr-java, apache-commons-codec, apache-ivy, asm, fdupes, git - Replace SOURCE0 by full source URL. - Update to changed list of non-core modules: + Update source URL's for corresponding pom files. + Update %%install section to reflect changed list + Each module corresponds to a subpackage, named according to its jar file (except lucene which corresponds to the main jar file lucene-core-%{version}.jar). - Adapt file list to changes.- New build dependency: javapackages-local- Fix build with new javapackages-toolsibs-power9-13 16773280718.5.0-150200.4.4.38.5.0-150200.4.4.38.5.08.5.08.5.0lucenelucene-misc.jarlucene-misc.jarlucene-misc.xmllucenelucene-misc.pom/usr/lib64/java//usr/lib64/java/lucene//usr/share/maven-metadata//usr/share/maven-poms//usr/share/maven-poms/lucene/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:28016/SUSE_SLE-15-SP2_Update/cf27f6bc2a8a2e797691796ab9ed9cfd-lucene.SUSE_SLE-15-SP2_Updatecpioxz5ppc64le-suse-linuxdirectorygzip ERROR: Stdin has more than one entry--rest ignored (Zip archive data, at least v1.0 to extract Java archive data (JAR))ASCII textexported SGML document, ASCII textPRPPRRRABAF&"Gutf-8ab72f8bd5ac5e95162d9408369214781aa9ef3bbad03bd92536da62146e09c46? 7zXZ !t/j] crt:bLL %;:ܣF\H!.10tgݹ]_({ĊJHp߀S ig4|Ѻ/ fvu\ 6(y,F\g'.!8JgE ;V`n! $ /=~}faCyِcTb~.`9dԎKLqee,6z԰=h7ԮMr5lEڙ4؉X̑:FpbloɌ*b F).Y*Èq0ȀS#-aXAg$8#2V5W/ tUK֜R:ɘekɛ,ѥr)>t\hmfĐ4Z)ܓJ*28ٯ ] &wUIZ ӨsSX6IAKX>,:Z4Ozݱw'и@PMna8&B)7x=xC͸ih1D4ۧؔP.R-HtI按'j8PHh &nA'l³\²eYRWPCN[8F*K7tFzZ e%1 )X7+(ԃ-jxd`f@$7V*W0C'lk/@HF}|-EWLzƀEw"'kM_u<=C>G¤ zn7ĠKbSrYc`هH\u?AK K%POA툹r6I7Y{X7+X<}Er4@(#sn-[1ʭ+%!1ft/#:j<֑aY~~6ɱb.6&*KOBI  "V en`0(R~zRꋠd=֕*\ј (޻^HcOZ}iKZ@nYxdA+;./y+ kYf|j[#{g7vzomkAj ]BEޅۃLṽn{d7G, 2SV@΁7)lP+Y/B?JE.t #>AT~}:GTP݄c}*4uӨDi:\ }t{7K%DkQJ`  1tVgX:> re.7. Ѵ _yW1Oƺ? Vlr#lz*3~ ǔ/ ^2L{ms@w2vDkw|2XG2˨.&BRtu >Vۍj{a#tA=:Qc)TsVVn>6vuXD51(2ibC[}ƺT97I~R I%x=J~k kzzqŶH!,2FC=lăv(]~h/9?\`2"dUm{o=#)?VVGj fŮī+}.8yfܦG X@i{啟C{t{Q9x"C0cNpHYI#a,ف%zzeI|ݭ=I:#2T TP/lcSplXσ꣭fdƺHLI-#>LߔLMeAM~',oUO2ڞk i+Z廐­w_I ڿg42} l&Iԙk*;Z \扽M#x]-Uɘ&rvONcjuz0 OKsM)nGA'ElkqeqNuŊC0Kv-єp8ǘ5 k$;Dv^[s{` gࢀE4Qϸ󯤘ù-ǖTT' Mh-d 8C jn/TiH6pCpBX]ٰ?+ * iV!Y\:իP勵]hs3 p<͢0ťMb)6m+}v=aŃ,$ޅbc&-Xy+Mp/N[,J)JIǡ>ӟSjYJq7Ӿ|QTP؟祋+9J\wS:'6La@ŕ[z~ǯ=(H62-x"v>^O$n9!# v }?8PzU.A|Ŕ-v h<<.bWƸ#thMr# R0Njxc5Mk=h&4,@l˓$DN?*K $tć+Qź?&P/u7]rd`f +l+~9~ݒKA' a|/WZZL^JIlPMQN@]/QqNvgrmS) 6a9I˜B"PoEAu'o1%QTЏ# > ]4}WS4/P4JhD ^F OKl N 5&}޲w`MJLlѷߕBVZVT6ӺA0/gcaP$R b;H^{rv{^tC>H\CaJ7# oURFZp)r/ap\nOc̎xs2 JwQYHw1KN$2-iE x*T%o]E+A#KS7"ZvSaJ%s[K4J- -@@QRKȊ94 {\j`H;^i 3cD򞍿1UQ_ ̫gk` =" O]]vbhB`Ǚ!>:Т iPCpe ӂa.g4@ {єdލ<S Z܂ HzT>D HTc}vёh~U*K{~W:/y[v>6ҫ:f#58K dgGز-36BfhqO5ә'̲S%dMo9:Vm3Q hly͟؜_eHzIWxb܉'S;oӷu9BE[g.,խi P,¢ю/a7`j@IjvI}~ 8ogo?  -U UCDd챟b#i ,s i8{pqhDթ#bv^2[QF swcY05qnn Pb\*AnYcExmAdeԓa44C4՞[dLWxf6lw8MqUjU٨V{H*[VF[T58$\ԡc =S1p<X~@qczr<+FVpP rj*hyVoԎm;7|!7`ziv1۹Y5Xȍs%b4N;=ANT_}.sYR3֒nszO}@KTU锡uGlqXZ#r*\&,Da-hRH}82$X9aC 5 1{ [W(kmǪ$U'syܟrS {ݍ8ƟYfo )h PNYڳ|#.FYOF.#}ug+ lzR1d|*NhqڗJPuABR Loꤰ$r΀!\pG(T p[B0'gdSSgsxNYTW@ӓf-5d ՚Y~EMfݤLIs:Q-%hk"^bU*t#[A.l-\ٝҨ`$1('JaQnn6v6>-(-2A{%U1c쵹ኮqQN8Vil<@N55q |#q}8sydZ Ӯ6 贻nJ,~KРա^ ?8j!BFjVX0Ԫ ꉀPpq1gmg!4$Q>5d:JB!/ROqȯ:[|_)l65>zYM7phi=%]n2BE"JC9łDZ Va~bb%UApj@(kKj"Y\E`:d@i֐Uԙ x'% 18t% ]l/5F)f·$CQ5ma]2%JJ5xb5^:)C%#$B,\wc]":=2qtάO0ar(*ggٷ1Pe sP Zr2 pMnPn7 #J <QdH/,(%t`#nScf0ejQM7Y{z}""(CU] `K@V=È-4Cy&eařGVn$;M%+]^v˯)/Or0GcfG&m&m'nm'zUVugPVQ!2iu$;/SNR@F곯hJ.L@r) *^d2uS $?x̿4bC!/= O!rQ[YzJT{_W^reO]O p<:wx-D x(ÖZ+KPz%V\,ض@c=uřHvy;wWQKQ>oWBtc 7[,iLԁdu @уEVeA3g^a˔b)F9/>V %>8!iR ֖qm &󥇲>_ 7|j^0h01Yٵ;0YHCrfS[6}ѡU02o5$fɩI}[qie18,»%",,d#E`XM Z}#ǂF %o/mv]9OT0ء1*vrE%p%EQ A-;&>*7`5jpq/d7wHe'KA/̄B췠-?=jLw0ȨPĆg?O;q %*ɨvl_#}u*j"K$CÑ\/)"ݤQm|1kt_iR LSgS!nVFވSxfGW>KQBf4a%6 ]ù-$^ͬsbM|[W3ua V̭OBu&YVN-f3,?]&FWLO<;W~reqҲe2rU @i$7?!(QBa<]5B-GAT"~9)jNt8oHe"]_yl[M`?w:@yH*c54n<#ZR^AKYߟM4.u_W0 \剬q.[ܴyͶ{pˠ'Nj 9WvZ5 2Bʨ:@kWEwA7#$^̾t{<0fmT4T/rOLmc:R3·dMaA-znq]a(݄IMY5u(&\朾4 h.$&d^4Bת7I 5 Uh9Pv 1i4Fʞu87sU|4m{kb&+<9$TsƄ4]eIjzYI5V Noo7}X1el]cu(Un-e}5XB A~O]q#Q腱@dM*78 𻲽L [)R>̎_x|O˂L8yZIEpΟy,n``O<A/\㡈@TZ.͸0,҂D2w^ᐙ;d3~ݎ$ (*ꫳN=m;P[N & *%SQ'`],s|z<-( "B'&M7Ƒe xX:XhGVhGl(07Ru{14omQD;wZmZ)Ofn+nn~" W-/6l5x8 ,Lo=MF^{^WWn7$հl U(] ]A텞4+@(0dP9@rfӎ^SQm N~k/.1vHxpŅrqmx5t>-`2&Rvf$򭄣[-4,rkFfk gK)Ԁ3ëWۣ2=jY9WswЁ}ն 86q%h93X蠤]pd eJm-wu6 `u8Ύj5ɑp#Az(Y$ѦM!˵~+vj tvK3$M(EZ"M-ԖꎳIL77}Uʒo4]BV~} i. UUܱDg::pv* )9W^GJY=2ZGYmne@Ҽ'Iu5? 1 %C5 -SB{`bw,v`Q'J"B17_`;lJ}k*R|Groh lObzԹ#cCI`ju9D)$t_گP=2|E51.2oqX s*3l8 n{zCm>?t kq"xg:|gԣ_;q)}SFR16߯nGo.t$n%P?jXKeTuXHX&m->ThvzT勽ٖ w譾9nԴձS58!R`f,e%hٌ݈Nkv_NvN/Z nNu=/ɩ#2A{Ow &ۑ# 5r#Lg @^2iU` FdY:f\C(\a^ Wxqz!߬b[-tR47JךmWjPðE]QwPWO{'jc 0I'ć AN7SA~*ߧKL9x7/}N6L̠6\niueyi3)vE4W $gEDmޱ2b(ΊnP`ˍ RH-8'v]х|Wu96PQSJMe*m3ؓFB3w+= >Ltp{;9M]g"aJglEE<6߆Ô\ qxof vL# 4 [6J8Cfnz by+zZ'b0yǯ=2X*7S\4W -OecWRv"v9꽷.:jv}xf{ΕZ+q4@.Unt6=/6O_i.nhN R,f#k7Ƅ wzgܗM ՌV"%A: RhJ&yc-[OCoDW|:A1B Ha2|+qss}@{ֵ4.CITizţV:rOng3x1G.2:RxF`2@Ah#: F&0C6;QQ8P|,r$6_vʉ)2N[~j n;o9=hȻq-?Iq1IwDQfʒeȝG:FO%9S-i#< tf*Twg0d ȨsS{ g%fRZsv`HqѷMXW_UlCaֺjQ4R6K,w\I:4ti>7r=6菡ZPR R+9Z/!WH J7T;3IZ#1g?7;n{[=p ۖMzgDҐ8s6ߔ Tڥ5@z,E{̍R醐3͑d^"@H_ȍe\nΈw5nහ"`Ch);΂4{o'aUWT}5UZnR4F鬑p?h(M(31:B #)z.b/u tK]N ͜h"T]'Cu<2eQ @&ܜݒ0>ejJK|;oY$7[fAǼq~Acp]Gok:j7gK%?~6>f-HI 6q&ȝjδs]?z[3HR36՗iauL(Hp uF Ƿka h?jn ~xuQq,)[`?=#3("K+sJGH_j=9 *~ \Y )'^̝+ӳ1xmJrWO0&DpX,o،5܅sl(?vKƧQw=\ G{ƫPՏ`@^v sk݀8/}y~0%wm\棦!*36{s`L0†*AMl!s;k5uzX΢4۵.mytk)Y?SL'u s.IțL#?,:XN LW.PI@^!VT*K~c[+`/{[tlea? YˤX7۫|ɨ[ N ~+#h`-q.2r9f*(YYB2yJj=$˴Z?fY킃bwAIٜz^ԼpŬ 10Xdc1Q~c; j^ѻ\֚:0'#>cw5.iƲ}d㰤ele#krj_X+H` _^sK41$֡0[ӞofںKdnGO#׵+J ?IQphmPPl{+64HД\Ubp͊f{W ]*?Cj ݾGf{ݜup8m>*¿?f`)AX}`Ggn}{-r8Eg!ȼ(9< UE"ȏX—(Z-YC}jYP6I(S!&!2IE[e#˒>R م:W}Qw#G~Μd7#P.z!hz!gs:퓂5eUJ`=;\恟WAfawJ 7,7T:/rY$͏~Ԯ-ۺ~׾'փ# B{R0XGVsA; >8_;!j@HS,8'b2} )}#qv -z Z h[rVc6פ~Ab~s+c&zYQ)KqdvCkpgVMN \A;:Co(xg۲8c#>e`1r~ywJKYYp4 f kz[Z8${=>QX΋&dp8K/-`I#Zp3ZcU~[i(eh%1} ]} >N:AL0\lXjח tꗐ1>}b덚D/He&R{df?ǃc &ԤQڷ{c~fBg3pb,'tGW9[ MUԒR-WP޴4=q̄h#,sf ɑ-u<.h A5 $,B_D^3.&a"tKSackBG'40\p@d!f}G;[ǻ%K'AOa%؍lF y/~KP5˙*޿z]▲g7٨+mŊV"f0BΒ"lQ7ԗww<%uNMg߸eZ  Jk bB~Pck͓cVE a~0RbaGMz\̱7B:o&2.TآR'RB7d\F4-El7 ́A0!*. Ve Fp|bTWd}q='@m [/4(N׬Il9 rOl51#rI.n[&گ)WG mMw]%bGxcvfSm@x&"eqFP9r^Ƥ׶XYSCe m 2c*"1@<>z}2]7TPh0`ܟ<C1 4^%7P̖Hb%*Wɰ5m6s^uZ< 9Ĺ~jx>hYru.\\fx0 <>._!U M}H}%QN^ Y11n4N,$r|3|tI"(jA)y:傺Y_/HKĀAjWΤRLU;lq$ cx aEa(G-X/&->pV=I[,^- ͟}28AE{8%S+J&ОfA:~ң@[au2=#f+5R8Qtɯ zjO &d ǵ;_YZ,J>$ySףаqٱÏdYw(1U .B&z}Sfqyk3 lѡf7Tm*}Ֆnv\'=$2ʅ}N0`&iR$179GO:i㥠R惥tL @KJD+ IYN.'oZ}1uQ,*'t(ya>cRJISw+ⰚyhW$Vj;bRR~UqG8z3M2|.͎v 泥S`aCFײޚl_p^ሃ]9YCɛmӏ"N%>{ .gjU@UzdaRP,<sx$v~.4`N(s^ףx"Bڴ)VVuX\$fJDA(N4ikoy.B(VR9Ęk 'Ϗ5cP8Kn  k 6|\މA6;|@@F;IH֮^o<߳ oyg0Һc0'FRl-_Ft~v֮9ع'\Yz .{J2{n{H1179y D&qp꤁Tn낊Oomdݧ[,[/jTF>$1VYBޝҔs lN`Hܗ "CmUM";NbV/lwn^=)T<:mo&20/0SjƮ-M/@LQMG})߁\]ڥ^~ B7>si20&Z:ǿ2?0Y}:c. jR[fH(ֿ2 p* 9r j-Yƫ9:j$}CaQ9|Cz佁0~+"m%v] Ȑ^sD_@u\ /L]AjOLK q̂T6%cVpSݨ:g>yf`t}70}vhnhS)q%0Hg>L7EhK0NxLb[& Á ?ְ7L5!U#K-%T2%3f;% nn!'-#+@.[z\'ӟ5t3B?&}Nj9הZlCw{baM/K%LۘxtXm%q /?ZRҫ Nj,tn} RZl) [E!q>9*Q5#Kx<}8*`:>z` U3m!%2~z[rWk8@!1"{AWѵWϣV]jYj2 ZB(V#1}:m`FXg ?עę-0&U?) w&At@*ܺ0. :"9lA;{(OFv*wO0%fT Jb C\Ey:l}E7L$ .|͝=P;~m3=܏[Eӗ ՓIQxgcʥ˝|vyC2-(cZI6j홇N7s F nY@{%*$pے2hɶ\&jOX8{S è׼yAА{I3عvm[ J]cQA3 0 D@5R9hFg8hH0GEg.EWO%Ve=E!?vnA0Mx2smA؉[֤Y^_%szhm!t&̡5Wp }{(LJl]WBBEM ElG ]f:HX ,L+>."v;Zp 鰟ђGc8C!ͳJY7=ԏ;s d 2/ ~l/uo(2hsdGd*VdVk EAtB|Dm]sXʄbϳ0v/Pqfz}G |%QݕP 栦Ụ}ǖS4%ʿ@Χ&4vkR_F6A22* C`K۽M˱ 3eQRQFGB(! n/-)Qq4 XSH;uUK;pe1([6cGԀD4 ߿bsqMwY7q"{D|$<^ip ^zWUa:jҏ/dzwmOtM/)` Q`!9*QӅ8Hi4ʶJohSxل+N5+D楦˭:F 01g/imܻR/]i32.pĽO*'dܻ#i#i`*f$]9 xOuX+!DtW4>qScΤőV3;}TN ^NTS$qC3_?\xR އG_eQԷ[?]`KѪhIꑯ ~`d׌q-\tۇ+kJ#?}b(gϝT ,0Rnyx{ YfRa$̰ {0Ln0 GlMbpY2du`xKA;w0e\@Jqg F|6pU93)37|;ae[I/r =dyQNrD`?lDC7YX0 >&'JTG )AA 9ǂg1kϧGg[-'~^NaL}MV]]fȀ8ȹùsr!mUk/B_޲reE u1}E&F ;@1T?&Lz~zGw*@8yvZ@Ku"Oϕ;7y"*X/!j%1I5g;/ޗ[Zȴ6rۀiȒRT㓓6b&D5â2u|6htgpV^1K6Oo[x"\RNF :yX*vB< ȲfG/f /u.y#a9U3HjyEk-`&ؚ?}ɆrX۝45m'Q(n"!S(IkֲLߗJE!5%ܫFt"C)[4gl4h1ưO9E5 ۟Tl0dhze,S 7RE's'`VDEIgogMab@Qvy`&̧!`6U.Nۊ-rP u*Eę {$|-Eꭚ{c :{ֻ!_^|fT`N\D!fx,&@r] 4< m ]l4W1X8 C}vb.=%_Cc8^5TVu,hӖڶt Y2He7B8K(TMNRܖ?I[5Юe֨&F_Z5-]*~Y{_h$^s'tmo<6}N.N.(K2פa%҅&m\|eiOTU@Bh,JE^4^v\@gLP'b0%U"WS'4Ps\oF"c7,U0|ƥ<^q-$|;z7[:Żp]Χ0I*~D y2{*GZujKM5iw@U\9ؘTW~Q! GJ9y9U{kY~9~UzD깇ͽ3OźnBp|q([LWt"uKMoN΄)'W]$& X\(}&7{Syhtcud/*BA}"z*+eG:(LbLxf iH0+ڹ??؞"'~%hۆh59wɎ͌~jں7hM ]xWh&(@,N#, aIa|$wxPbQ4`+4W?lero-suKʸ Q"_Eo;Sj,Jn{ĉ#͖C-z2MÒ8Ţ"qq+l ݝiYz6SpF^8;*Z*?0gct hM֟y>߯#,7:!RZ(UCJO+V"BiiYN1үgqQZd 2}szX lbh)7@^f%Y̦y/"B4*o^qvW:t9id8*{KaT,(Tϱa'ԉ0L=weNY=` ͻ `/8bwC#•^2_Jo84w_{ň3=BXhUT{7xiWU_JM[%5qbA-_o{AƲGr4f| s]\f`o"mzUc:5JЯ1R3B6N =ܹ_O:8ҚF@kCdk`P+~ԴR^{®Bɜh"eVW柡t(@As (.!BF>qUf^5YnLYUӟz*HRJLAXIl[KEyd+ܞ!z8?d4fL#t)F`Q#3 d~+ś_h4<ֈ)VrB yC/?JK& =za'G0ďSA`hO-E.W[?I5 sxOݣ4EͨqdFY6 &Ο)HUx(T3EwM6JJ ZO-^ pvivbT~t2ۣe}pr5S S"et0E#/<WU%`Y=x1o/mP!W7"Q*RC|pذ*v~xi2\ U+؊`4`*'[velRt kViEg1eşRtV]>Tk>1HX "U.7j&c*+< QȜzJ!m+Sf 0SGisRcd2[Ù Qy1˺PhlSnDӪ|P#CWbq8_Jo{Ӝ)̅- Z87Bb\d#n9uL<DNq?i2x g3v#9y-aaj0o8)@0k_ О}+яM6)4Eǣk] AH#1xL٩ߔ"͞on=3_1]1EݎE߬j%@ gLWa^ YiVHM?ǧ`:޳'f҅QnQ=N^ ۶ qѮ䋃y.kTaHBw|[й'59QE}eYG"%ֆ rb&П\ařV/a+6uMzUT! gsN5&Ƹ;ek1RjІ#2' WBFFR|WX[l]*aaj;ݻ$Oj 1P+>ΠdV^&sBOPeORc"حm3.HF\?~4kx"HsbWxc&'(O0@HQchH͕lm|X9mo1ݣo9_ӺPl _YS_$dbop6ҍᛵU4se,Vi3%t]ꒅg_(k j (:ʝEꉇoO Fߔ$dJpMz=[uP"m1(<)yb8#Ӗ8gd %  23ioͫa8(h̋VdBd :-Y:| $ZLAN5[OsX`zM #L)+'EB+Kn=ײѴNGcZƖa?BT+q#Y2E<<##>!ܧ̴O=|qI!2U_k3>|$(,&pafKaʙoփl F 6O4 K9I!#?ϑ8~޼_[H N= [ 0>M\JRJ=D0MMBbg.:HIQ*wtA13Ⱦl~GT;m7漮8o1-SYbLiL陦bc% 1GR2 4eϼյpR:XX&qȃ4#Z #>_֔,Un֎#.Cu\I:S|fQ  .Ӽ5Xp_Eb[ѩC0P*ం;S_PR-PM?>f tdlqK8 \:˿>o\ξ`jL(Cs}gS[HLյyպ鴊װZ!Ƞi_M 7䷹Kνc?<=It+'07eJb&[6B{On5E:aoiX¥ЮS M+c"=BH\-o)aWӥ9 X<.86ƌsH'\ MdաH=A@&e3p jNe$Ep*?MMGegޭ@ph*4HЛB "s =`L Jl4×w(?v4柡gg׸aKiFP\?D4iv1lĆ֐`[\K'xLwqU@(N*1jpYp3 I2|rE҂j=J3!pL~77c9\a z!fSrSTO\)%3:Q,];R,A)C˚}$2i-CFm\dܪւdFSh#c`Pq3f_&p2QCL$L + ֳmĆt#qSF&Tpc!v}]12LKó/sȳ J?}^O߼N>"MJntsVIO(Z3qga-ZV?Mnr!6\=pZs ZRFG_KzlW ya#rV hvV+xŁnFadS-n|]!6&_+#=\e*!TFv lo7j9',+KI˻ǣ[ތʀ"45ZW5ZJjiKID2Fki4LU!&H/ j04yswY@1Eհ=@4j 87Pm&S$@-PE1Y8xxU^THO@PknG1b&5[SGV(-g7ВEdK0H |R1Ϊ}J{6BۜLh`&x+fop VJ_wν #}GeSA JƒqbpmWDćf:2yW¡{ERp$d PnȨ=T˘=vPO%3 gC^ O.f"& n+DFX/)Xdjow%EO.HWK +&V> Q[~p75/ V?dB_ť]DN+ԔLLQB]Ā'SMuMzd,<S*-Lӷ8$5q5=)yK54em>tptϻjԕ%a/!kM?^ WCH !> TDlM܏ł<ЬE#>ҩ0Cw4N/>⃹⺩h$hb酷e}5>&PyM}כ[\ϻ3-%#v?n6 _s1ץ 6fMrn+F ʳQXVGØ8jw0?8sKNKq dCqSbR.9fM~Lz/p n*pGホ 8թ<qoDmm}ᶘtjӈu&wiS4.2_Y8*&\P`CQ;-/+X𕬬&jP%5_yu]C\xjUC@Kg%H+,wkL!\]xiH1 ϸ% Y5)G? qLUh:w7MTȤbzq~C+jg1N.HKmmf!VfVϐ1O{U&-Փ 啣Y$A9ceAtw%V0̵_2eHV:)ϻb/f)FȲl^"O/;e(>lj(oMy+B!Sh k ݔ8z_]@^*+AT#'/:x5U_9h>]NZBg͖( *g*`yAWHę#Ae \`3~0> 2)G "^!EDN}c Q9[e G #A6|4` mc=5٭Iv9>&Y&5:" 9p [%E 8&} ,{Z G =66?VxT֎"T< %^+" }*'MVƸzj;O6φ)\*w48A}|XGÔI*j|UTҖjV,||Ra6(#)vC3˴"ZFsPםJ%Z}+F-?H RYϏJymJV󈤨d2V!cK tѲF5aљ1Yl?ޏ{A vlM:T$s>Pft4WD/%?`%qB*qS_(YzFo^~|X /%j &J&\`2,$-4hB}K$֓NdBh,}4ɇA yASy՘ŏA(t!X{/*a1ǴlΫ}aSXjOzԏ<d*}׺i*O-xݛ;̋]DoF}oB'WYʆH3QK)>}azѐpk*6/^vjSgX- R ug'yv<;FPx7%.[[֢IWIr Љ}&/N-ʼn6jeqLJ:/̏*kaubAh]2vF&6-fLE! 2л1#BD;<]YT5O<\>늉Vq> 8z en31TDp^8ɔ:Zp,闾kGq }ij 0obFc]>zW1^⩃i8..r﫣&~k"KȊ o@W2uC"wN@/&*ߥT*%Cý!(fn#4fǰ:fN]Er<^5K>w - уU,y8ه~vj<)|V-+K1.yvL!ZZiz( n@8AkPnVsN`ɦ4c?3L>Qw" Iza z4`>IsONjܜ%'YN71Xb2:YWHZncps86ߨ!j !0ez mFU˂ltmz>S! i ƶ80>; V:30;I*<^>q8&ѝfwS cRbSvK1u=E"3Ēk=ٸ# T,"V/tP~Ztle* f;sĥ- }/߂idfƯ*ve!Hk\gL%l2 z$cbr,xEպ @?@;})A~̆=yy=jx{+vbrBY ̍#m=4-: _{.zݶ~ g@ K)w`Iim$S&v ^V0KݔtZ;o>^L[(-6P̶إo&@mSBj1q5OtnMӻKip )Mx@k!W1_YD׳aXn_ &|H 6@< xt4-|tk?xQK8:]^QdNMFMIC3lܐLHzϢ ɅIm6TVYvB٣b_b" qE.Na 0h4A'-U "j6s1sGU2k[:^NI'=)b\ g'xh R"+MHJYlEj!Eqd[xlTc$8%wR za_U%8mV3cMLiq>VPhѭ:S\A!ѠЦ13~b\:F><@}ͬL a#D}I@HN#IŴp#&R\DZ m/ho#'ja4gryS,GP+A`5+1ʉ~NM:DydVJn2]=%S*AOZ@D̳E|iBr Md'(F '/X0Ґ 5Ė[`Œ#L&m'xKn_4*Y>Tǹgc4G.E':FN%!YNfB8tilXfk֬EVnB=ayWnqPj:}XHkDI-4>pΊKJMuΧũh^SmCY]gi@@1}y2WNrG)9ZET4lܨtk /RT[VB:5J߻q4Uw#5!-YRchF5":2fQJ zvF氳|;E3gVQȸx.=10Ҭ^W^mbv:V\@fD[ؠQ0H,kYY=y6\xCUK?Ơ9e\;Dv==4G.~2CA:)@3ёL^F12cȫ /6Nud Ub5$Hc3aT=%n1nk:o[ 6qY8/Hm >iV3):tj9o|/- eCHާ"'8&"!kWLz6n{q6 J,q*ߪh*` ۷dʄ-NJ) !䇂&AG\[vS:|7O$3c.؄!P"RV\*}Ff(L)i'7RS,Rpg~;UL1VAk,N«oǪ4G-bLxs&I7W\dq9.X|"W.,dhaA~:ƿ 0ESŰ͛?+.bpmhB#ҋkX!I[]aE4ŋ4_9(rf_S?/v:.$H@NBHW iu̞S]`>,r N-eY[A,!fxPou*8M+zH ٖX,L=>7\hG5EW7`Ku`A"}C~꟥ѼObԵ|ؓ Hkң?o5#*5OM:5nkZ֋O.~3z%]0T`Ɏb*ᆜkw!e궩Ưy/_۰_;O|gug,}8@K-F.gc#ȝttrEDCt jAZ-j`wg\<"5QM#=12 J6Iq[zZ$|'_WN% SؤD`J~y'3Q2+3AщVޡ,NU.63rfQHBK9EiNZЎRt(͍f`H 2ZHχhWjiPު큈9.LFW\azGɁ'4GAxG0;cilI}>`traёh31wUi)hIǵE&ٰ 2 J[TUרN9mAVTp,v/@Go^}2}fʳD): 6A|"{(>=n*S7()4+Z4baP9ը,PEd4z4@]WZ=K˹u LY6՘X}@`f'܇s1|x@dc53㳱mAAS_V_Jg@b5/r!9ϼlhχNKK*˃+s iSɃ~)`ZKEl), mr*JK3Agra0&|~!aǤ.oعl6Hy#:s\BؐoۢewVBS笔;Dbr ~3s"YnHIR0(,aA4)[ þeTׇ`.9hXlexKC ݊Gz(/Um,:e)mB|…4K/R*zJB@JH6)_O,mnsPN@˚gpX)="Cf` %ҽ|8yϊgL #e3FOC֪{nEle:jҟ "Ĥ#ۤY?Miz6 *`4oF2r/eТtDaKV)NAVA׸␹c{G7PM& HT>/R.7w`uH0MO%c bYzB\yFݠM :הRKxD E"+v;*[\Q/E!qwzzy =`i< Y:ER^dʴ>\$z&ˆj@")l"I#%$N)BHxa;@%L7XFvX2niu$剭NU.gv3iMZ<E%-`OvIz1!7^FdhS+r!z3RX@ M^zL;TۂhgC0gA${OjSA>G ?7my~̈& UGfijpN>L~(X Q燻q̋3RFcΓ"Ն+|Fq v$;<|6D0@*"Y+JFA^J0D@n5 ).(3K/)T;䨜zj{V2[K4z!n6}:$I#o`v}W}>].mGѫY ^YҔ$DJZZZb:gzreF[" `_'t rFMqz W m3XfTI:ǃ98 \ǿtN58Ʈ>{F|\dav52 R("&$Pz}mVX֓nC*QfE mt9`  )17F,bDZhFCK.V0aToԞXYl#d/ Цo4RJ,;Bbb GMge,_51 7!i)pUa)`cWO[| Y(&wۄG y`ӸEOPDp5s:ڷ-J+DPLekCލ%mثn7IdRCD6r^ɕxD> |Jc +ְ"k|)l"`80$<#r}oU]ݟ?%%]}0az\6L-\cL?pp2@03I^ lji ]HiD<>6ECu*Ѩ"g1gO?{}]W<2t"pnz BR;EIdLC[8%7HVHE3ۤ}4\|W[޶K;><oib مaDCb.Pɽ]KMg7=&`,ft[NCdKω;\`f$.VtY;B9BN^Bd=m@XASPāp[?Mh6mx< O^EdMdW֖Gs\ȏvֆBO)~E_n6"?aknEI@:,Ŧ`m,#PYW^[> +^JM )lvIW}5WV)' !&(5ֶxNNDq h VNYϕ%mFMߺ eeO5B\P5A.3,n3c1P?R/T*J81:tbN 5Zr2׏v($9 ' _% 0/ ݅}'iϔ#}(+z( \jQ<꾎Zl_._y "p̀Cw˴Cf8BlTtljߐ4*褝oj|-L WCJCjzrn.IdrG;Qn:8j0԰ɳĚ]yր{AA1,O_ZW72Cݔ GNPP| a}|I䘜ͨ?CsS{xMP֠?ᭊ`ytIHP#mNU-]p{ T WgYK xKuV- {Ql91byƱށ iHz*-LؖY`wAzV2n꟟R/Scg=Y_e8)<UV9'zNȥe(OT3ChR*J=[ w@;$rKK}F}\|NR*覺cuLW6ץh4T5_XKc-J$0LqOl8UW͙g#Z XA zS+oVxKuwd}4V4eơW4Wo a|V!t4 H}ƐE8ly$MS#勸}((8te-[H;$ ϗΔkyG(hSj4XhB .*ӒluLUt˱Bljhy\+R `ҴPŝWrh}L+Տă׫%AC"Z #=̰ABΆ{ 2QãlCv珞bdш m^e~ݯd +byu$eHc|%k:s`Nc!+|LC,$8'UH㛤](}s"``Z2P҉EWH|K58 EkA]& eW6;VV*ӄrKA{7{ 2yēR g{`SE]Ņ>P+P:Q"Rֶӫ1z/i3uNUVcJsT"vgIRqS?!LVL-.! g|Ohoo0.|/Do,l Z]jH*}-Tyg),lW- fB]JӦmЊ6 ?h3|,K gh1wВ!p螮ԾCe 2xxL S< p~ qfe󦓙!F!'##`t8 8pSMG/h{M`՘#b H㭛 Xg KfAI1/~ ~|{)lnc>B#Y3P6Jvo,aNo}ky\N<,#~qg&ktAWLe0٫\XtkSAv3qѠ,9 $!ֱ:tlL/ &s؇9E4Kf{8)]1.I]91Cd\Hn,BZǩݙOyQ_ \%Z'MGdVR+.{@X5Z=!ŵQo}OfRw>l6$W{_ *?B4Bwȇ$ǯ:Öԟ Hv8B7PPf_vay GjbTSmq _D"2Eߍ'd{4z{aV{uѷtp~k.el74zT<>)HݨWA.9!p 2$7ۆj%?ĄaQ|>:?OZv#\lT&xƗ \wkVf[kDvӬ no *mkS2I"Yen7^81bEu/FeQxBoG¥+ڌpGkjfqvt;gL h\9?c؎<^r6z.g*EI-}n|C$ E? gZ眓=" :"%il"~텁oFya^T> ߬2?="މ,/Bk#) [%0S4af>`'Vߛ)TDžP[Y?#w@d[J[rEٹ@hg[, eyYgġNPwg\:o}kPm* 5Wa)OB]?_(ex'h;1L6.Hv11oo{Q Gz4Wjr TP@w!d<{=" S-i6-vN:FFb߳<^zo-%hև1M:'Ys7MU' 0qnUh@R]4ݽq jT<  i?Ag4JtBR#SaݷP bY/[`=Tr>˸\~NTp^LG}Y(UvS=Xt4Nqǿ4#QpamԆM:Ye2dq{QXi)V6v_eSϾ}K*-YMn4) }p>Z;s^wB kmJ<[=yΣDP­:сrw '༈R*XFȨrwJ0xMB|AP. 8AQ9xg)[oD2~K{>7KNIzi(^A`ڊ?NFkCV(Qɤ;x߭}&ݹNs?'"LȖ1mG2Z `L3Ӈ7hcN ΄˼8^tG}ov6A(•*_k.$8=S`P=+1z>^YŹSr9T@_MGif*:0QݘGԄ.yfvO1*j8e1gZ2~RIws>H qu L"sbFʢm]2{MÔS7r1d8zIh"P!$ͲH އ`>8eo_ޥMЯ9CSLѿ͢p* 'LտqjRYsoCB3s qQut3rjyEΊB}J9HP$ [fDXy0x7[Qѷc ]~OKqPp{s #{dtRffX:zy{e첇x02*(cCDZa NW,u']LMEeW;ʚQw* rpB/8jiTD^Wsw|HI=BP7ZU>Ssr>݆[̊VEDt4%XJOhX|ؔJ`Yp^.ȋ{69AZo:-8CRjC) koHzڠlB؜B ^_T \s3TL8;2 $5]f8dsH'mO8iףn z; >uW I>m"&UתwŠM& WnMDig܊0-MJ+xE:PH1s{k[U2?x6zDDrj<^t; =HbJ FWrZ|0ꔶf"yqxYLzEh1]|8T׼$p \%X2et+:YoFׂᨤ7 U VAM K!;v wMuz@s:5L&?Wi{lÖH!i]XJ0'2: `|!p%;y%}c) h*.u&L(4@U¹&u ~_ޝ@뫀)]b?z{8/uV I' Ҧ 0JP]4=hFڐ)9:0ʧM+tx:5F"1QPWlI[6&r:`a!eJ}jzw#:k!"F,yqqNU<^tt,EKOѻ;+i/|^B'ȥYIt6rh3/~mH0( [bVv,h?9j!U{81dw>!W&[1=HԚH[Yך!*iZZ">ٞڋ!~⫘IP:@71 k{%?@63[kHDYu 縻??R VO`Z"UV, 8]z3t~W&p+U„11 nD=glXr?yG0Lr)߄Ŏ#z6rr~fՀr=!+WJli&X>7΅q3NbE@Ho}[:bx R$˒ \m`[M̰(m7ʽ3o !,C߅ZiE!WVمF{~;,J 5` `d(]0҂27rq'Ftλ8Nr4]rSwčoYʤ6+ ӸA&=D<%){,.;$$nM;Zfg]P,ҮS8*,tQCq( P1LJSwe3{>y(NɌ6qY+c8WP.uNXipF[S䱼p2fU7B@ƒqfz}]*-n.ge S0wB񧿺m cu%c)K[MO؆'uҒs-;q߮~IsW 9F~XKT LϏt&gXcHV-9oٹ$KY91S #S6v YwLKd7H|5Xls[}9\rRΘ̠,=2Χa'ڠmHS!;wt{VjtsQot3 ܹ 7c֎qq' vBu*jZZ|#MU1M3)Gțo.UPMG[ h5~K;dA2 hHa9{ OwQz&QH9',"L<ʸy3JS ")*|E׋~i)kWyգ{v`~ꃅ!s AU#LtcKET، >?_Zm\Ai,%n=etmKRw0ҏj`=* ;zq]M8b_B $}/cGdj yl٘t.J XzS4Vg 9J8J0b@xeDj2̅O +f؝EΙܗVy@b d!%J tX|xcT+6WJŇݑP-E8`6IQ*܎wrk4mfyɒy7eM*īE(oUNv2P%F&>(n.6^[Ư*T"go-4T[Qdԭjr?~a^glZ{ rcGHə۳cHzBgt$iZGUfFȳ^q4Ц})76nF-N W?p12fb.iJ3 }M="9P6cx~9ă*WVjČk=6_, 9Cz"jPFNLcػA"qDXh=+HD} Ŝ@=xOM2Z0 f|CB2WL޴CSI+ƳZ%Hp>ʐϺʢ'^9%Prq?é[𜑥3nkH@[*Ceo? u0a5.i.ڜ ޲!F/[Kt6v%"I1h:9 Q,ȡ?էWLy90kUmqCkJoA{f; l3/rysyiJoQdcl$/unc/ÍSm=ŽmkN|_eo`OfW] /N fSХ!NmUHώ.!BǞ%w '=)d)WjZ;U1Do<+<*@/BPˤUW%!eʜ\ =i/☥,7 5 b_>.*^ʸOBXЖ'2R]PinGMmpzbFm ^rXR.fn!6b| &^0 "#Ǒj>BN[z -ѩ nID;,r? є >vZ)nv'"?L2t R烺m&3^D9<99ܱKY\ 9W)i}:DWƤ PjY\ 7cn 㑱`%իtg@)5J +3gjMeXw 58MP-OJ,3 q$;|A&=D;_~m՗b$=>Rb®DleR2rbV#!5eֈ;q ?G+u1KRLa8c+ޏeo\zD% $1e2vrlҖy?7=%\)*-&n;d{)E@9b.n ܠҺ;аZ^|2X)0ֻO5)Qy0ac˃S߹ym|c'Ѣ5'`dO7_#K.a8{]UbrPZS0X#Tj%LănTaĘs&(Q5d~ q=&1E'0 q߷D>ݴsZ|9s4Lgà'Gلq{>!G+>*@6q)͇'&Xt]mJ޶yulFqo +Fùnv0"CI9z} 115AVi7l'VC5 ,܄ݷz%d ~ qk:g&TYi$p:Hl(jYVuv3;SZXL̳A%ELS(3vețٿ{ @$aR\?,4n?lP' vZ&z BފXZ$0+5eX+9~Ϣ+mXw3OX$Cf'\qrf 1BxkxjьEkil;(Ѥ/gEMh%f)*\ "krt#V0bk< Đ7ිÀvNꍶ845 X-aӂ{"r_]-Ay1%̯%}m0VK0QâLÞYԃ & U3]xje?|?!L!jӻI qN,m)=`u[*K Bns5K{?S16L.dzxXá{߶Zᆑ )R(t z:Oj]l Ju<8/UlMlf^S?C`yjAdK#Cv?$Y˥ej4Bb_.Nn)ZeQo''J`$H{q>JPVc7/R`)m#EC}y1[B$tm&M S/;t Xu3J?ėoNv~üvOǎ`Vr,j.6N V%!myU РF,>Ő 54KL]J@/dЛm FIAX,4ꁰ[(V;mcVS$oU1?TV"mX3"`rlɔ_ϟ %7ys-?GPlq[5CҼވFݼ= 8mI4=?8=i"7Ũ~zs`˽¢ʅSE[um:twn?L(';؀V D|0W!'L<+lgeHOC0/pDvl.>67/S4xPO/C@ x͉N.fGסe,9krB\Q\^$&t#RDH8]>g{/ka}Vǹs52c0⌸OCE{0gFxbp0%x2 d⫄\zo+zx$̶7ne ہB0Hn׺H #W9Ҽ$9g̹UvGgY~LuX"nAto|iI! w~MT܀ˮ<. dӻ)Xx+JKSiRg6Vҡl)T46嘭6݁M=`U2E؊/a壹WQNc(ٛ[쑁,s]ĚČ, T-f塌-xx}Pl `͊eAqUҁW.T\)IHZv($00!Los4PdCtB":Y[$:rq?'R?e_ 9:'-Yg0HVYu/*|>*ao^9-a&vbǸHZX*?-o>9<D@O=]JP-+.Aj2T8dgsK1FWkuuzvg#Ik8:T}} u٬3$-HW!yZl(AƦ (T%vkf_[ W;H bÍ9 *jƽ~ o?*47A{W b,{*]2`^2яj+Q'2YT{[Qa$41f={OGALܥP۝)b\sQAͻU8 #yz^nGz7p$ @ ?<3ʮ5-0߉jV*N <\>yP 0rkE t鞆[?[)Хsc}> !j}k F$wOuQeo~.cS¯=W<ZT;ӽNwx6](ÎHL^2SM;XP;_glE&3t4Db-oTG9K CPx{m)8^>k\EK2Iixl?fWS J<ێnOH7!XmFiB_gAϺg.XiHF("zChQ;ŀ 2妪u"QSI $=CL]. Ǒ 'R*nB=-;l*lô0!Vlt5 V &r'NEUNDM; lu uui^=v3VtJ8TGa;$ibR>ᰂ~0e趥 6,3qb+GE¼\a2.p?l;|sCq\,i[]4Ps׵(«@Mbv-JjT)gŬ;[݋) L:}= ;{x<G1 b@cL 5?>gQrkFԆNrL LԳ2mc,&+Ҕ3[=5z| އ(ͦ?~3,(+t&^_HGO۞]cO7 R$|[S"way+ )ѩf^vx߲W2AS4 8z$n9]Ԏ}C{aZI%4G:pn-J¨2md4RϐxP -O0UWZvD YژL8Z2ŧ4je5&$ͭfU, ȁ$Kg"]`Lš,0g\Jy6DO> , w3m|5%mlFoáM^y%/ˢM{3pp[cT 4ɿ(H'T-CqcFr QTƾ^_OuՇX6l$ 釰ɊNGJcP7esX0>5(_8ɇ [KԺdz  >BC(f)tÿ<+iu1jMo['k\wX=2 k{J[g4Ƣ[*{L:ᩖo6s VЭOÏg/^|'ChS"-$dYǾi,QiUbT)lKød0% zl?y_9csR%B@ʍ{2E-DǪf Ht8U楤(%lʪ,7{bJ-n9+m|(_uk4Zm˾8ʆK~JWAz6aR2rk:7eQ`s(w 0*M<ӡ`xo*vqA;* ,D֯J!l~#"PD|[ǔOHgNY4nI+Z5 ys={eRo΍Rwcl BNA=?I([4V┸_騀uGg~ "D)^~6Yȍ\|WTTw3ՂH4D}ޜt@ݏnaY/*6ƕ `$o#~^J6iEjc\HAd b]-#My alй!O#i)UWlE6N>oZ w׊[ds;@V.*s~(gt^bߍ<~Oqѵ3~Ap> B}ۋ/Ҩ5ޱ Hf6CcuyOs Ԓ^n+{݄xx 渼8ڬRHI-:+0hb=S_щjp&][%Fb^Cfw׸ GخfiVx$6KAklMp):tnH"<$jCJqabFsDuȍ{/HKvy` KYSh[)xn n Eĸ.ڒ'# Ȝ~%#0>8ڜ.SWgqcWo&dN3]mZdgc2vw'dlL"{7L];X^OM[F]ԟ F@t5 ?,{˹FJ܋'Y{C@kt46 >H͡b\?᷋] wfE4EkQfum[쨻; s'lKΙ=^xF_erJY+;0 ?nk34Z ~>]#})#~$UrperL940JJCDifὅжkJJʖ '7^!1kDkH-(%pXmlCׯ!T8]!1HBmGOfŃ +W%GZ$=*‚(IdI)r3nP>M5SF\:qy4yFkSOu9 T|nF=PWW Y~@`* FAb\MS{M DzI6O=#xnza>ܞw0ф^4cGj/F3:=m,QeD1d [ y5ٰȿȘwcU[eD闭ihKhwu>@#:aw< Ww¦}=l}i*4MoiT&Wp@\*7y:~&&s;_u*e~u [NsxQR+@OUFō]',ZaCtoN| \|F$>9&0E5j?M4exZ]2`^\.ly(BRa {AZ@gV%p#Ip#!u=rGP=.a遃8% ~chƭP&8Zi8?4u52B|YjMyCG+mZ?ٶ^Plj>rt*NiΟiz\B)ˠOTsܱI&+pu; l@64وӥ,SCV! ULΑ7iԆN%5{̩•HMzKqC3 0we`rCeKPoC pkg O4WguAw>X~g_fR:^oc]3>ueio$+~~N`0Ri 'zbi :U{`'MW.ЩH'cڔf̸9RFv9.ֻ_We\1F5ߙTƳ-U6 Xht>9*5I\ w^kq!'(.>0EV2e ]w$LրA¿,흓ޞZaOt0CHJgd1:/$B!8sez֡KDx 9ʼUW"=['xؤ#Ee8TCdۇ*u R+P&+,TJ&M=})bS fC]QQ=%e +Chuެ͊ʫ==pprf hl NEk67ZQ(8sτ-֥[:`n@J{Ťͤ:Omrr[˖h@ӯXqKA'-!/@6:d2 ,qf rVUX[lVAFDmb{Zo_"ѐǩ߽yHȟ|mJй( IFؘay=~<.nmpPΫc[? iwJ+g"(S"j3]ռa*߆e ̬>:kf;9TUPpVh|[@7t5BX* .[91]w=0C&[Avmt[5Lb\ʤz%u0ԵVy:tN(Gs_3ʹ4=%+C"m~Ҟ}ib+U8|ŵ7Vbk։ޖ$ǩ@JMKZ=vK*g+휤.}r+,ф}z:>"..YvP3/dYԂ8 3HRxVe~(jՊD'G[hxS?vVLQh<C#vyP ]*őe;<#};9 L"ATܿLd֞ H?k@ ^#f S܀_ex:2uoY*__f.DuM\bXNe; gy xLUpQ _$0@h,)5@Yg}uf4(?_4|mY,݊{9= iw76DZ{{I]L_[*X2R>O 0AzG`ISUl7{)֑)ht H눣U NMbY8 3*d\_՗y>w5r 솋8If!NhL?ş*mE6hQ Jy($ib'rd}=gf⇞2k^6UaѫwT>k7멐K0ZDH>UFEHpu=N. 6%SGieWl3:A枺}ƀ$ r2N8HVT:PW)#֯SyBʠnm^HzΤ~@ܻsBic(Hji)ODhdŀzbKڏ?KgKƭ-#*YΛH&0h醷ۮ<.)7ky7RtѿB;Ɠv`߆erh.ri1\Y6b4d/oŜn#TY7HWlV 3,-;̝ZH\iECHx-CMPoTݔ3E\;(ˣrK*$pG5Z9I+Xt c4<NGٱ,<,̽:y }?]{aѻ b!()q .CDO*MB("?¿MإgAc#mI w}ZZsM p&8DbL O_yf5enZO厈 s0+Uu$؅5Ó49HY>{wQzͩ t!fh?8c&1½U}_͊Qr|DKSa_{ֵЮS"|m~\ǭ@m>T7aKHX(/<ܣ[VPo3S*<6W;K.TU&|E~ ?JIK֋4%K >]Mdt;݄JVHZTjӾ5V"л< X]\ڍ`pF&mr, EWF[!TVKy5Ftx9 ԙΛ K)ȟl*}7doO pD8v/I+J_ܠxB(Lxtcf@QGXL 8=`M&+@K6DFpMPys|GwI_OYߗ"WՊzAҏmHnz9AFbn^pkMb?-oЅ|ٴZ>ųwv=I_kl|Tm@|L45}K=PCzﭠs.H"CNx[c/k9tAaa|vĉ%X֦5Ov1Qz92)[*d۩ ߵ}nD,_6^;mv $9"@T2GF@<1QQh\MFB~Q"35ER8Hl.R;oKuZ<ՆGi1 hQ&R}IFM̄ϲ$ B=WJRrс^;ՌF$|SȡO~=2qtY2٦ ?1MqTxһ-9cs%/3CCpD{eVl -rYU?1=ωN$_FY#W!: ^2>w|Y4^?2'nmw2uh,\3i~`* 7Kz*m1lȭIҫ2Hq%M)L%ȸjfJaî-GA8P"w8,8˂f*֭\ LФc/N9ƁAuX&9ER!GR۶Qv:L} ldaŌ6CZ IHW}ElS!b T:xʹoȆQJhsuFeWt಍sbD\KrUƍ{B&A1^qH4~8[$ = o~6藂G8O+bV)#d@ be1n ;ĩ&%meRפ2' # oHKP*H#>IH0<9PGHK)<䫪p8wL1<$ n͔2Lw*~V 4\{i~ m֪ѕRe|c J=%<T˚tْf٨p=-v;Bw*^ ͈s3P:+nؼ̈I]^􊯏 )Lϋp6vy_o!w MW<ѲR@A:qI4TA/rWfQ2#.$JD.7ը+Nu6~1^3GyLgr2*H~b^o. 8D&U fpY. ߓ7o WS m jMILƔҟK1Q:EH'܏R[m#5~wtFT-ereU;eeG"^[\m˷bX;޻[L&X*w*MxM\T 6ubq`l]O#7/E4.Ɯ ^XhypFy&R(`, c!M/>߶LZpSf¡P|sT<j!+VwG3Kn yfg+1=Bħ" Nj{iAf oA@pDP<39 r~X9m0'6l å:˘1 E aZ.$<Qpr@1à0Y+C>׭.Y㥓1mЊFF^ 4XTeCȹyK+V6_Y_E͔ n󝀓ڠ5E Bv ^D 'v\peb5s -7i,"ycނ=6 uxhB4型Xrv 0+G+9$,2\f*gH;8v MMd{^I13Q+g:5jS}mEL;8L!=Ux0#FV NYy*x7l,؀3:{:K\E[wڢttb#x6׸ahb$L7֭m+gK_X|"ᤉGyv{=I D/ ]8g|-d^AmoD\Yj=DٮOeT Ikx7r)1i_aWGOe|$Z.TY&K׳x8`S2<7a+=,S݁ܧ0 %$3}BO|A0LF>q_<aD 1A%]Q:LsB'؂%y&8pU| R/l6@P|ntP%A [gHdK8dAN Zxt(ʹf?XtP0wra$GAxSu%F^ȯ`FĚ2Ee%E\AfX>.0~f< f`0~hH¤ѬGXXɍcN ʻx jMjd,rf%_:GiRqi U0EDۘc?%wjb_c^O>2hy2'( ],_;ZavXY`KB9^y.Ih )PJJwѦ)$ˎdIʿf3lNȶBL8дjdhX'|˱hZ1bipb [M̲ QѸ~rt6)j2FTejV3n$:!GG=&ىd/!PvbjΓ"=H&qXt7Qdu9ҷR'I!Wq^'ryTB] -.g^8绛I77&bj҅=M9Q`:e,J`3$vcxmBa@[|-⤠va!t9yC*#lK 'EI>$ܢ,?|e5ʑR(\̐;-!J 7n ycl"Ndjkhr=#G6q4r {p-Ed-)%r|pё»r>*ϼ`NT<@9#g4$i+%+:Y( BntYMXJw{2"W +\WPME_v hGi|UtNRN1c!:^mq-IYYɽCoRI2HI)5yM2w܎ 9PsBɋ/l{#-w +G)z0}|>7SQ"ZZpDZ-5#=oLf+yG.꒝&Hpx"Z)#gˮ6n 1 /)5mk]@i4XDvwffӗPIЗG:= Sq 9Std[rjǰ>i;8K*>HZФ2=pT^l}[mZ*秮I[}iybbßKXG7΅y `q(PW3LWnx|^EιP@8F#fpPl mSŃ&w#L@sKsư rA4~q5U|/.tQjϿϔk}l<?-nHoϭ,J"Ej-CKDTǾDSԮK[K1qp}ήܯ)%*^ҒFUV~f)MuAsi:G6o[kQ(tfYߋ!1uVM L޲- ؉&gR@VT,wx^ {h'j2 ^%e2%cnxC_8| Juz햇emHnOncw4{TK gy$"8~A)9WoÚk†٠B>"=p0ۅH iދS^2&A4,([@@}"%|hb:ЃLb7IA8 '4hpgBT2).Qs$[1:zvI}}UNUcK#xaaY[!gZUS#Sfu2U]&7Uj3e+FI6CQ@P|kxՉY쑆;Q܏mjo."&J0 9s+el ޤ(N_¡€3݂slNѿ,X@zNJ V$gr"-o&-MJ-BMA;W" dX~9VD}@z b -jU!> \%Od哞f|أ^FäT #&ZԬğ0=4`= _(g63 jSmC񮒣q+qMT7f#eY$;J)\u~'g'dr?zFdZP8Ƞ&6tD%KWfUl}-Ʊ/N!;9Y1]u9#ދj_#;meBČ^ϖ?I` ˚ q%nMHFRJ?T1u[.Zl%f0O]zMi(D' dMHՅxKe[F T΀%ia]%yP7펩W[\a*f7dԴUAxX/~BͨDI6Zk#›|Ko0g~3~ *kO,ɕ^OO :n\T+[lѬ؃qۡݪߕ/PClw_j0$(~cVlBŽA݋k_WjNSX!d,*-ѻdGE2raY?Q/]f~>9|[ޒ5"]ZL__88%G7beWFwo͔?  yL/1/X)ĠgGETqc .A+ g;ӫp6vXk뮠_;`#4'M1s*`ćZavMޯyH:%/~I/Htw! NttnHSNh&0MN7"˦k2TF6"~"j  M8͜=e\[9 F<85;`}1REHM%@'*cMs)ntΓ?#ngD)X!4"{CZ% ov@vٶ㣛o7A;wbź5oN,!X0lF:*Ix؄5֑`־.Lc-7I߫:Z}h( 0we; *g2 YxVj"Y$}*`^BD>[}`8c|Nxȃe [4wcs"?H! WU`x>ՅhDw! |&B_3k5 龚%BK(C@S-.{|; X>[rbB'QLJI"fϰ9ܵCRTPIc]j&nsr_ͼ(L]ui9; wGF4I ֠[a‹iX2(J` /vf M~ڔ_ Io*$oK~=Aߏ S'^dfz䲻@7B<4:EC*`P)h%ْq)cO)ILW.(Ml[d|&Oɻ-Ԙ6JP0zvoC,m_(ttO4 :۲;}2"GK:q?a)mGQK0Z{歚?w,i\g@bϸ8M+9L 8GvS*Ҍb-үe :g4[M)#vxTJb\|R͂:.|2asTA0M3!NAGv @JFhiF!uUSҕ~)g1iI|mu36$UcLi6?{3R6nQ04/{k݉c xrvDH6EpϜ>5rR0 MsۼtD]݋'WΣޜU X ? oEOulySiR;`K8X!+ow/jIKDY=JaMVQIbJH2z9k6Sʪ1۴ʛ+bZwR]%S`sUAގR-kT j Sʭnj8hUp"<#1jb*eE|K$ܟ<ud ޞ|EPV6GR(U$w/=Rh? <.Ar *d4wHB:} !{9U YV/&_fkuE;(PYm%_:'>yȱG {!(Sg]+L5@ifzh+E6jħ8`[;ljYgҭ)ERoKʌ.g mCcႎH,{`&BsƕPB~ =_u}rJ T<݁&߈7 w|oSic)5:Se%\O:++Xlە#miD&߃%v+Ui66D?+hPJ“9{*`'$w oO -TawxŇ)XM T2Ǚ3L +ꎥ~8f#1s6 -Vg*K$+?j: c:%#/<{l g(M iͽB9#z "ZUMg췞KD2O6 :J7V[irY9'9Uc~)W` T"$8.^`zH~K.Px~% gUJ92;:enZ6U^ҏ 'nӕ9In=b{XeC E9 f969Jhl_%X}nyASCfT-JO3{熖u:-C$mYos|}[TMMY7gZaM)^{pnT24HN%/ ݱ1(N+}eqBp XB,;) nXX!n* c#ŽpXMF0: ] 5{RɔJD5O-ټ/'&M91$?$"]ٹ940Hʗ}|(Jŧ踒(&M,h髋]7繉>&TGH6ޫ?¸$YKܝs3. [SX:V瞕8ʾ;g^P`iTNtƹYLwxkoQEv!?T\:&\JG]m8':vSY0c׮[4Uٓp$kHtjg9hMui5"(0PV3h]v֐!;8DlM z5H5gvfs:dwgŽ\XTDroGCIbF`1S( L5lk+dnL'YBWa=RI:,XQz*ͲX.dG:ZAmrZ^i#x$aNk\Hļ7:ZQs:tS/nCñ#"Y]dHt Ruól) ~p hYi$i~3H­| VUZ^mDZL"BAk۰{ׅW6ggCvlu~~[e$um`E&1kAômbcMcXh/,23fӚzض}r9o8׈ uݚT[apBx(aR%7T6DV𥁜dFrޑúT2@j vwQP[}~iz9H+H]iIjxF]]̀?P/2T(QUk4$xͅZ0RYÆ8ԟmls2ߡB /6{31`&(@&?[`kb\$x˪:?,Tp{)Ej-",X?cf)SI .LY3y'N RDl(秇0Ja׮\P"I:W$&3$\/ NXI/b]"BOU:; Cp?yׅ*f&!؁Qp+Zy8VEvўuCRc`sJnTNH4zyBA` WLj$X/Ŋ};Y!TtR_RʐR9PBd 7ABlK"t X 7ϋu(=ABynxBI{v$GgUv(\BR V8Hwcg3Qkh:IX;U/ ˌxd}Hb>ɒ\+v3BB;W"Zo!aBZ&ǬPKeWO@=v_-Bʬ`BrgއްY< Ijݛpr.P֎U3G yW zɱA@/θ}Ŋ Qe*-: ۙo,I<+4?I: D3NJ .Zh}ˎ(fLp"l%rLV{JN(D֧BRv狆#y#4ty 1 wԓ?޺, ($Wze:z:dz"ت } %wB  5A E8ѕBqR4$dXЎF"yhtՃA5ꥉ^n$Oytf=3SzҪUSyY |ݖģŻx?Q4up'n N'0[,YN?_G2;I9V6qMIo vyb5rCkN Puο꠯'waI|&5#~8{َ  XluZg\$ JXBmRo*>c tOPo_|:9rt$ƽ0?=tm:?I"t+o2Z'r0`v ޽5]T $j93TpCn}ua0oLPcݐen{}izC*]PW,rDLk[sZV>HBQhR|&._k%ZQL'l5ó@Ey"i\ .+K -`3N+.){S,Lm;Y8X W!<\HD eTeF'yap_$jDsSÙ_sMsl9V*J_P̼_ o\T pܱ6iNf[WVr =P[`R|\t60 j^H |/z<\%k.).%ѾbO~hZ p7MZ>pwUNW!¬knN vPFSaxY'%q!IW*؞xݽ}rև6$RМUEp[1;whuo=5q0jJS'n{3͓"ps溇'y[kr aԏL1gu=f->˩59a:a7&P)FW#fН a0mīqCfM/uA2I6E(=bT8GO~V]ul7@y24nn:{pr ktه} N"%&THt%U=7IyF\"̂sl9#='J #,f eΏ2L1;}זj~G&x0ʢa0)X(ӌMyV!"!X 3MӖ_]z#56U}1MC*1csaV1pߠ)u]?`KhFУlpe6ᢂi8jAw*.g_}˂,l9&͵\衆+,rfh} ݴg <&jO#ߵҹ^QNk&#`éL쨳Q4,?7p{T8z9WM$Uԕ~=SМm & g`\6# 4SW /ؘ$aU*<~X<pz\R_rk* Oϊ)" }'@O9ZKГSY{;ˠ ʐr~& +H:=w6A>nW~ FY,jxJ:$#_HN)ݣ{W#LR7'^5JB:f_Mx BJ=栗/0;_[م\^@o_mE=\.dx'%m{~=D K˰HM)kt3+O}ՒVh j+/73kTuOB.}֛Oiq+:{6 B-) DV $SUnA$Pn%r|ǬC$$N|hkӌ2Kg'9|SZ}°>Flh\.d1&,}Jaȃ3K5 9QGzCgN5BR~ȝ3WL;dTC}W-,3D @@0b/x!Y"U{nÉTOLjv„_RTwɩκh`'mRH3FL{yBI%^'L[%V6sw28i!3lw8(wӁPayWE Dk^i0bًǴ]O6 =Us6?Sw=Į&h‹V{ {(zDįtMxLuM[ur<8H$Rʑ2TФe=Qt H UǸnne2v#` Ms{6"\*/,5R^'uy_Wz#dC+% Q}ڞ)}'hWPEOim1c(ޜ wRϐ.~tDIVqD#ر.cr|A3 ) b8+7jc4%@./O\A%}gؠCےRV}y<;'؋o羨'@Hle!\ /dcw={D@P) ۳oSPhA}%Wq7ѐ9aXï\6x-p|Zq lA`J4ag]Xh͕\ݛcn ;V /k14n@V'Ym׉hos$Sؔ)OA\]LlHgn߃^v24‘+:Q>EgNvH7G>lEN#;'+ZeM]$`b0v_ $|p" TK^ÏxRCF5B5 ;s8d 9)|{[Gqc!-J2ɜ!UZPR5EB8&&ʣgSά%VG qxc&}}b8%) NKyFW/haӺ5R[bZ v+ -4;K3Ҟw$phg2>{\r's3G"\QmɃebpbmmF N>H~4knābQ5(>0_X[RDd+'rU뎉fOGE D~6b+b1 $J ^OP=ة-lM)];nCick%> XkQ% ]Sl&\:U fʌ-ǩO1#r.4 8 i 5m2䜬#$5..>$9cnWj'vfzUT+6_>kм0](xWԈxww/F#pQ.ECg }()#><I/z@TB5?e{q:ec^\"Z;IM7lG݈#*d9׆2^s+Yh=&+emAJ ˾4Nq'E4nj,ttouV\꼇v hgplVR&S }jI13O9^Кx ݇dEK}ň{/)B3ΌlOa:H'*[UrCnOlG4mh/B`%-1jc !WvImQx6FH %ח~jp|>zV$r>)G H^1B8^l"'8y#?DRu`nR7̑KeտDp2됰ڷQKNE(Ks+^}2]CӐtbhR*`ƺFJ '7}'9cg;ذ`=CbRS4#VxNسZqF[?g,HM^͹ P8oE("-w>||R ?5:B#țZ7d_9BC|i]-8F lJ~e͝ .sdvkU M DX3T(Z!lX(I彤vguYgKavc{72( V/l0tt&!6BpҪ!` )@@qeǘaҨ2!qI^Lp!%'Qvd%xDNhO[ő_(87yU2mֳODŽ`z"lAämI锼<3(1k/zf5Z)6e301CycY.wۍ)&K"tn>=9hj!kN=6M&\Ӱa{޽8 ~.򶥣;A撾(i&x^qSB5n h ΂JL r4@BTVO$knқm8ͬf=烬 a-TAJmZM3iY%mlۇRGb4S3UyuS;yzKM҄k=нjB=qh Z_K}e*aX<ѫ Wb*%ɽSdy74晪Kh@̦81de>?q[/NlU>ɲ Ymׯ !2ֹA OSTh9@$pmZV{F")u^Ul3㜋2g,) D1a7F2+qB '85Nj1hJ@x9.v0T^ UU!C3/{qܝh&ICIn(JDM]9݇2nu9U!%N||Ƌ7_0th`W=~zi4TMiz_ߧ&҃LM5 ^Ҙ}>7įBD!3T G.Hi97XPeMvbɣ93K.NkI@; rL '=1#?jJBCYbͫ"Hr|ZleYߩK o"໡R `N 2P9j>8}=u㼧+7MOK-a-v/{꺇 =}44mP!ϳ㾄}SDGQ]Vgjn,WG{FqzgRA !Dg>&,¢sDo.H`P_@u2$ث-Ͱ <bJ@ &qE&9iAaX?c;,ukFcf+[_ܝLO1Tq[Tb%Շ VN/ʎaΥwє_+IYXRwI1D"YB LZ&3| -&Cqy8T~'Tͧ>qYÔ$]&[\^F77vl[S>s9f_tv/g.t断} 6V׽6ʮz3k,hQᡈ^̮&EM;>W[Z4gw, ?JC)0؊~ F T̬ (/Ǻ+Pu m- S=۪b.1Yat; dho!h~P;8L[($sZd7g,4Aum+êR`]ƌٞ Mb| w@~5):-,R͍G>g';-m>V&πL z$9(ZNQ<@_)h0 ofÄ( p91mJeh9[Gw!ģףҙL}lt3ZړFp绵Z]Wa³'6;úT*!]oHmԻ"o EN\TBy\g,Q^N.3gzfAaƯ*@>{&T=u_K~7g5/=G.d t*R>K*/᪚3Q~%.LzOJz&5hKUi]@7PBO-C?jLϩ6ٚ"S-\@^-F*Fw3Q2P6}xÕ~ڛO8s`̨܁ o  >OgTd4zAApz䈞(-A6nq,iqT tC $IC9HeV8e!!w׊+y  F%SEw*>9N+Ol|k]IS^eXKZEGGSr.Jg4 U܇,ސ`OUT)2\U 2ʇ} =#D9ICC/~(xu KC 뚨YBMPE7Tq.@Y4-^pG-3ǟ-9H4򥻵{`Yia3 8⠢DT^UNXѓ]Pkjm]^}mI3S#+3$޼DDzc&1e.8Ӿ2-)xz%qP.Y E3ŇD>t6"/Rڛ0gHmG^wK9|n}6ډt A±lax_ }CR`ywlcHNQ0Ugrp[b]90Gr> ]isYԁnoXLAb.(W6)eUP.nN'G3mT&WRL [3-buTE߈N݀x OH\d6-ZtU#G8#bB163AܒSb8B0G %(g8ۄ=h:<6B&rOSi[y>u*)t2LjAJQ.3{SfV lJ7;%Mw !Ms<yr@@j\q"5Q?!E|a /8"gVK]LeKfguz䕴s¸Rw^29*uCu{@ứTmA75fkŀ:;aOρ[zri%:oNXY4y+F^1ߟB?P/]j;g^T)TqJQUV|b̼Zd6P)h:Nq|g^l0c|a燕UNi}(!yNj(),σ*YQ0Fhtrf9WM"̅zj19kai՝?*!HWߌ|su?ƼqpBݳD@|;Kς3Z՟:V$p@ؽۅKc_i]~8]$Ős\ Ӳr w d&T݇@40}W3pܐ};je#kP~,2jdky|Wy%zʃ}G“3-ݲzڕa_%aJ'[q˱f4o3XCVJ|m؞ >j_*%Udz,_ 87t QiqS@8%e"frsN9mKghY1Cx %?Y^X MҕًTϒ&29-sM:JUeR~.u{Wp2}AvZˡZ4*{tr3_^`09fqmǦq\ty5) }ۆɇS6l(bQp~VQiয `uL͝g|3ș9Y]/b,!R+d}KtWzj~P]CE?(m,}Uq+Nחb?V^vv~&+.hԙF_䛃f-1,鷅Q/9c׊bYυsߥDG=BW-y<Scv1'+1r+ czCpB˘q\G#2HMfW ߘ"ͧ \[ֿ`2g߅Rm4jP Q_9&;*E5S+Y{ծ!#>}B7VQ~6YG ߒa&TTsbxuFX1A\Oo C/-"ғcry(Ҵ~@՜}|yTdZ@$ }wޠ ureԅ4N-?YF iueչsB0ND})?oY{"m%y2킘 73(g&)堜!h]$}mtUiגÄͥn#^5m@ql$i8[*@ @ qHC,߉ܑSE)r5H{ oq..e*,O5Tbk)/ãVd䝔rڠDa]3 5rUxRuj)4u3]ӟ n#iT,NՓFHj5c# 43n.WĹo0J.Kb9\qH'#Z'_3|X\<,u5m HF)q]NJY1 cǠ }LxIU-4d҉*DɌ_T:?U@!-jF J-e б}"] rB«M9ݕ.}LX9gMVG ,qipU"H|2>Q7l]>FPq|,ok"l'䟥z( K 3lO%]iF^$X@Z8c2(|gnqi^Sg;@oӭܑdj=%}Thh,/|]7m F~ϊpFLrEPŒ6q08g0,*1L=2׎1ɰ|\Zr]ܱqNb% 8h2-!E&.8>W!0qYѭDKw2Fl`y5P# LˠL!ҫOJe[x8̔Rt_CsA9[$s.ܭaj"e{7q7?iSWVڍ#U(2R}AEFb[H66RV,ax8\oU`ÍGٿ+<7IWmQGf{~ 7$PJtqU}ǾP4PC-‰t-g(KbOtOyZYPԛu fA"wyO%:whB`~'" {Px6 .W~7QRHeM{x([va~,1TP&`I&+uk2Z9ohp>Ȑ$$K~pb}aHcntJɢe45;ek H˜c2Z]9(CfN̆ihU`^)xB@c|Ĝ 1ȅK*cūzSzy?Ā{~eyqbkLx^z"&W/G`Zޒ&{J{]E!Wp,aUy&g(׌:LmETUDXԩ G'.v)~}HZ9 =4Srepu-Z̥ b7\5n$ǣdiT<(ZO5M2%{YTd* ~ Cv! Ю5'^zt?ٔpQ`ٲ0A`ax#.S~F$M l>RW @Ipp#g;ak'Sprӎ~T~YĴ(ax922"nFr;zMo÷|m_O.әCíCwiVǂ놀"oYwq)42ww71 l%YƘ|sAXV!PרA3Ĉ8d- x|RMKHRc=fR$K`K㚮[)\W~߭-;KsMÜozf!`xꁖY9v L0$ xX@TnLG7jYmn0 FwLk8I@!ЩRk_j]Շ-;,Jh#*0`4?a@.·!p<[$DgGpةE^nxk[~f: [w 9Y\y #` (\t5pqϰJVD_QM 'iRXC+ִ8y!c #gLVL(2n`zʍs&X&j>\ uy.?yڬEL]Lc)&}'YՓI~M:ق*̿~v%)|!]pS(]ҚO.\\Fs\px_@sXyw'{ 3)!t{*ltygHgV[8T"{Ԭ}lٴ导mYpÈX߻WȃsQX $?1 IL^R_&N|1CߗS;\ D]kcrQw"5ڂ@w^ׇLI8"fwW-0AgUyFQXyf;P|N?B!x+Rɓ3W7۹1?tyd9MW7:T7WZ=W8`>Yt{:}5^+).e_1N}KH=M$Rt}R+u |=#0ݫP]M'cl iiA;l]/ӜWM8۔3'~V,n0Kc:9ɟ"E2ޝWigϝ"U=%sxC܍Ed>¢eV,x8Saio~l9xfXeaC%AS&;ilMpDT`6 )\-ˬMM)$PYA}4q&/{7;8cΤzyRdXuEW+y4pLc[{iu(D"H[zOW#^@rC]6&\Wh~p/bwxue]t]kd#mY | Ė2\߆ﱡ^T. #^cx8}?z'W]۸ûƲ0 YZ