��c��RDUCK3 (�p ��mّ��[H�=�b! ����le L�n�!"�%"*-+�,.�0�3�6x:�?]A4E�G�LQ V�Y�Zv^1b�epil|oxrRu�z%|���@�V��3�Òh�͙������<�D�}����n�T�i���/���K�c�����3�#���X�j�]� �$�����=�C��������4�_<� ��jV���E!�"S&K*8,�.>4�7n:a<�?C�F4IcK�KTLN�RxSfX ]Q_Iaod�erg�j�l�os�v&w�x�{�}���ӈ��N���;�������,����i�[�����J�ι�����S�����^�������3�?�������������&�q�]�i�4�~�� � �e���G �!�$�%�((+?-Q36_9�=�BuD�H$K�N�RSV�Y�]�_*a�dphj�k�p%tpx�zn}u��.����+�t���������%� ���ާ��i�����8��Q� ��?�H�#���������>�a���������L�����}� ) V>���_!�#�&+v-�/2H5�6l:�>^D�G�KiN�S�WXZq[�\m^�`Ae�hk8lXoht|vz$}��=���|������הĖ������=��ا���C�N�ߺ��D����I�z���������J�N���-�=���9�� � [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject org.onyxplatform/onyx-datomic "0.7.10" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogal(defproject rill/rill "0.1.7-SNAPSHOT" :description "An Event Sourcing Toolkit" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :url "https://github.com/rill-event-sourcing/rill" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.338.0-5c5012-alpha"] [org.clojure/tools.logging "0.2.6"] [prismatic/schema "0.2.2"] [slingshot "0.10.3"] [environ "0.5.0"] [identifiers "1.1.0"] [org.clojure/java.jdbc "0.3.4"] [postgresql "9.1-901.jdbc4"] [com.taoensso/nippy "2.6.3"] [com.mchange/c3p0 "0.9.2.1"]]) (defproject org.onyxplatform/onyx-datomic "0.8.1.0-alpha1" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.9.7.0-alpha4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns braid.server.bots (:require [org.httpkit.client :as http] [taoensso.timbre :as timbre] [braid.server.crypto :as crypto] [braid.server.util :refer [->transit]]) (:import java.io.ByteArrayInputStream)) (defn send-message-notification [bot message] (let [body (->transit message) hmac (crypto/hmac-bytes (bot :token) body)] (timbre/debugf "sending bot notification") (println ; TODO: should this be a POST too? @(http/put (bot :webhook-url) {:headers {"Content-Type" "application/transit+msgpack" "X-Braid-Signature" hmac} :body (ByteArrayInputStream. body)})))) (defn send-event-notification [bot info] (when-let [url (:event-webhook-url bot)] (let [body (->transit info) hmac (crypto/hmac-bytes (bot :token) body)] (timbre/debugf "sending bot event notification") (println @(http/post url {:headers {"Content-Type" "application/transit+msgpack" "X-Braid-Signature" hmac} :body (ByteArrayInputStream. body)}))))) (ns kosha.app.search (:require [kosha.db.search :as db-search] [kosha.app.util :as util])) (def no-of-results (util/get-config :api :search-results)) (defn get-results "Retrieves 2n best matches for given ragam or kriti name." [query n] (let [ragams (future (db-search/ragams query n)) kritis (future (db-search/kritis query n))] (util/json-response (into [] (concat @ragams @kritis))))) (defn handler [{:keys [params]}] (let [query (:query params)] (get-results query no-of-results))) (ns fault.promise (:import (fault ResilientPromise Status) (clojure.lang IDeref IBlockingDeref IPending ILookup))) (set! *warn-on-reflection* true) (defn- status [status-enum] (cond (= Status/PENDING status-enum) :pending (= Status/SUCCESS status-enum) :success (= Status/ERROR status-enum) :error (= Status/TIMED_OUT status-enum) :time-out)) (deftype CLJResilientPromise [^ResilientPromise promise] IDeref (deref [_] (.awaitResult promise)) IBlockingDeref (deref [_ timeout-ms timeout-val] (if (.await promise timeout-ms) (.result promise) timeout-val))  IPending (isRealized [_] (.isDone promise)) ILookup (valAt [this key] (.valAt this key nil)) (valAt [_ key default] (case key :status (status (.status promise)) :result (.result promise) :error (.error promise) default))) (defproject {{name}} "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "https://example.com/FIXME" :dependencies [[com.stuartsierra/component "0.2.2"] [environ "1.0.0"] [org.clojure/clojure "1.7.0"] [prismatic/schema "0.4.3"]] :min-lein-version "2.5.0" :uberjar-name "{{hyphenated-name}}-standalone.jar" :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.5"] [reloaded.repl "0.1.0"]] :source-paths ["dev"]} :uberjar {:aot :all :main {{ns}}.main :omit-source true}}) (ns gol.client.bl) (defn neighbours [[x y]] (for [dx [-1 0 1] dy [-1 0 1] :when (not= 0 dx dy)] [(+ dx x) (+ dy y)])) (defn stepper [neighbours birth? survive?] (fn [cells] (set (for [[loc n] (frequencies (mapcat neighbours cells)) :when (if (cells loc) (survive? n) (birth? n))] loc)))) (def step (stepper neighbours #{3} #{2 3})) (defn filter-on-viewport [bw bh coll] (filter (fn [[x y]] (and (< -1 x bw) (< -1 y bh))) coll)) (defn filtered-on-viewport-stepper [w h] (comp set (partial filter-on-viewport w h) step)) (defn rand-2d [width height] (cons [(rand-int width) (rand-int height)] (lazy-seq (rand-2d width height)))) (defn rand-population [width height] (distinct (rand-2d width height))) ;; net utilities ;; (ns dakait.net) (defn get-json "Sends a get request to the server and gets back with data already EDNed" ([path response-cb error-cb] (get-json path {} response-cb error-cb)) ([path params response-cb error-cb] (let [r (.get js/jQuery path (clj->js params))] (doto r (.done (fn [data] (response-cb (js->clj data :keywordize-keys true)))) (.fail (fn [e] (error-cb (js->clj (.-responseJSON e) :keywordize-keys true)))))))) (defn http-post "Post an HTTP request" [path params scb ecb] (let [r (.post js/jQuery path (clj->js params))] (doto r (.success scb) (.fail ecb)))) (defn http-delete "Post an HTTP delete request" [url scb ecb] (let [r (.ajax js/jQuery (js-obj "url" url "type" "DELETE"))] (doto r (.success scb) (.fail ecb)))) (defproject cli4clj "1.7.1" ;(defproject cli4clj "1.7.2-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.0"] [clj-assorted-utils "1.18.3"] [org.clojure/core.async "0.4.490"] [jline/jline "2.14.6"]] ; :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :aot :all :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.3.4" :exclusions [org.clojure/clojure]]]}} ) (defproject ring/ring-core "1.6.0-beta4" :description "Ring core libraries." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [ring/ring-codec "1.0.1"] [commons-io "2.5"] [commons-fileupload "1.3.1"] [clj-time "0.11.0"] [crypto-random "1.2.0"] [crypto-equality "1.0.0"]] :profiles {:provided {:dependencies [[javax.servlet/servlet-api "2.5"]]} :dev {:dependencies [[javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject org.omcljs/ambly "0.2.0" :description "ClojureScript REPL into embedded JavaScriptCore." :url "https://github.com/omcljs/ambly" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0-beta3"] [org.clojure/clojurescript "0.0-3269"] [com.github.rickyclarkson/jmdns "3.4.2-r353-1"]]) (ns reddio-frontend.screens.app (:require [re-frame.core :as rf] [reddio-frontend.bridge :as bridge] [reddio-frontend.screens.shared.header :as header] [reddio-frontend.screens.home.top-subreddits :as top-subreddits])) (defn app [] [:> bridge/root-provider [:div.app [header/main] [top-subreddits/main {:url-path "/r/listentothis"}]]]) (defproject bk1 "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [graphql-clj "0.1.20" :exclusions [org.clojure/clojure]] [ring "1.5.1"] [ring/ring-json "0.4.0"] [ring/ring-defaults "0.2.3"] [ring-cors "0.1.9"] [compojure "1.5.2"] [org.clojure/core.match "0.3.0-alpha4"] [clojure-future-spec "1.9.0-alpha14"] [postgresql "9.3-1102.jdbc41"] [tentacles "0.5.1"] [org.clojure/java.jdbc "0.2.3"] ; https://github.com/barend/java-iban.git [nl.garvelink.oss/iban "1.5.0"]] :main ^:skip-aot bk1.core :target-path "target/%s" :profiles {:uberjar {:aot :all}} :plugins [[lein-ring "0.9.7"]] :ring {:handler bk1.handler/app :auto-reload? true :port 3002}) (defproject onyx-app/lein-template "0.10.0.0-beta5" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject re-frame/lein-template "0.3.22-SNAPSHOT" :description "Leiningen template for a Reagent web app that implements the re-frame pattern." :url "https://github.com/Day8/re-frame-template" :license {:name "MIT"} :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :scm {:name "git" :url "https://github.com/Day8/re-frame-template"} :eval-in-leiningen true) (defproject io.aviso/rook "0.1.6-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"]]) (defproject org.toomuchcode/clara-rules "0.2.2" :description "Clara Rules Engine" :url "http://rbrush.github.io/clara-rules/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.codehaus.jsr166-mirror/jsr166y "1.7.0"]] :plugins [[codox "0.6.4"] [lein-javadoc "0.1.1"]] :codox {:exclude [clara.other-ruleset clara.sample-ruleset clara.test-java clara.test-rules clara.rules.memory clara.test-accumulators clara.rules.testfacts clara.rules.java clara.rules.engine]} :javadoc-opts {:package-names ["clara.rules"]} :source-paths ["src/main/clojure"] :test-paths ["src/test/clojure"] :java-source-paths ["src/main/java"]) (defproject funcool/suricatta "0.5.0-SNAPSHOT" :description "High level sql toolkit for clojure (backed by jooq library)" :url "https://github.com/funcool/suricatta" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.jooq/jooq "3.7.0"]] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:global-vars {*warn-on-reflection* true} :plugins [[lein-ancient "0.6.7"]] :dependencies [[org.postgresql/postgresql "9.4-1204-jdbc42"] [com.h2database/h2 "1.4.190"] [cheshire "5.5.0"]]}} :java-source-paths ["src/java"]) (defproject kmg "0.1.0-SNAPSHOT" :description "Knowledge Media Guide" :url "https://github.com/alexpetrov/kmg" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2234"] [com.datomic/datomic-free "0.9.4894"] [datomic-schema-grapher "0.0.1"] [enfocus "2.1.0-SNAPSHOT"] [compojure "1.1.8"] [sonian/carica "1.1.0" :exclusions [[cheshire]]] [fogus/ring-edn "0.2.0"] [cljs-ajax "0.2.3"] [com.taoensso/timbre "2.7.1"] ] :profiles {:dev {:plugins [[lein-cljsbuild "1.0.3"]]}} :plugins [[datomic-schema-grapher "0.0.1"]] :cljsbuild { :builds [{ :source-paths ["src"] :compiler { :output-to "resources/public/js/main.js" :optimizations :whitespace :pretty-print true}}]} :ring {:handler kmg.core/app}) (defproject lein-jshint "0.1.5-SNAPSHOT" :description "A Leiningen plugin for running JS code through JSHint." :url "https://github.com/vbauer/lein-jshint" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [clj-glob "1.0.0" :exclusions [org.clojure/clojure]] [lein-npm "0.4.0" :exclusions [org.clojure/clojure]]] :plugins [[jonase/eastwood "0.1.4" :exclusions [org.clojure/clojure]] [lein-release "1.0.5" :exclusions [org.clojure/clojure]] [lein-kibit "0.0.8" :exclusions [org.clojure/clojure]] [lein-bikeshed "0.1.7" :exclusions [org.clojure/clojure]] [lein-ancient "0.5.5"]] :eval-in-leiningen true :pedantic? :abort :local-repo-classpath true :lein-release {:deploy-via :clojars :scm :git}) (defproject com.palletops/leaven "0.1.0-SNAPSHOT" :description "A lightweight component library for clojure and clojurescript." :url "https://github.com/palletops/leaven" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[com.keminglabs/cljx "0.4.0"] [com.cemerick/clojurescript.test "0.3.1"] [lein-cljsbuild "1.0.3"]] :hooks [leiningen.cljsbuild] :prep-tasks ["cljx" "javac" "compile"] :source-paths ["target/generated/src/clj"] :resource-paths ["target/generated/src/cljs"] :test-paths ["target/generated/test/clj"] :aliases {"auto-test" ["do" "clean," "cljx," "cljsbuild" "auto" "test"] "jar" ["do" "cljx," "jar"] "test" ["do" "cljx," "test"]}) (defproject io.aviso/tracker "0.1.4" :description "Track per-thread operations when exceptions occur" :url "https://github.com/AvisoNovate/tracker" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.3.0"] [io.aviso/pretty "0.1.14"] [io.aviso/toolchest "0.1.1"]] :plugins [[lein-shell "0.4.0"]] :shell {:commands {"scp" {:dir "doc"}}} :aliases {"deploy-doc" ["shell" "scp" "-r" "." "hlship_howardlewisship@ssh.phx.nearlyfreespeech.net:io.aviso/tracker"] "release" ["do" "clean," "doc," "deploy-doc," "deploy" "clojars"]} :codox {:src-dir-uri "https://github.com/AvisoNovate/tracker/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}} :profiles {:dev {:dependencies [[org.slf4j/slf4j-api "1.7.6"] [ch.qos.logback/logback-classic "1.1.1"]]}}) (defproject mvxcvi/vault "0.3.0-SNAPSHOT" :description "Content-addressable data store." :url "https://github.com/greglook/vault" :license {:name "Public Domain" :url "http://unlicense.org/"} :aliases {"tool-jar" ["with-profile" "tool" "uberjar"]} :dependencies [[byte-streams "0.1.10"] [potemkin "0.3.4"] [mvxcvi/clj-pgp "0.5.0"] [mvxcvi/puget "0.5.0-SNAPSHOT"] [org.clojure/clojure "1.6.0"] [org.clojure/data.codec "0.1.0"] [org.clojure/tools.cli "0.2.4"]] :hiera {:cluster-depth 2 :ignore-ns #{potemkin}} :profiles {:coverage {:plugins [[lein-cloverage "1.0.2"]]} :tool {:dependencies [[mvxcvi/directive "0.1.0"]] :source-paths ["tool"] :jar-name "vault-tool-%s.jar" :uberjar-name "vault-tool.jar" :main vault.tool.main :aot :all} :repl {:dependencies [[mvxcvi/directive "0.1.0"] [org.clojure/tools.namespace "0.2.4"]] :source-paths ["repl" "tool"]}}) (defproject org.clojars.gonewest818/defcon "0.6.0-SNAPSHOT" :description "Handle configuration settings with defaults" :url "http://github.com/gonewest818/defcon" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [environ "1.1.0"]] :deploy-repositories [["clojars" {:url "https://clojars.org/repo" :username :env/clojars_username :password :env/clojars_password :sign-releases false}]] :profiles {:dev {:dependencies [[midje "1.8.3"]] :plugins [[lein-midje "3.2.1"] [lein-cloverage "1.0.9"]]}}) (defproject me.arrdem/oxcart (slurp "VERSION") :description "An experimental optimizing compiler for Clojure code" :url "http://github.com/arrdem/oxcart" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.5.1"] [org.clojure/tools.analyzer "0.1.0-SNAPSHOT"] [org.clojure/tools.analyzer.jvm "0.1.0-SNAPSHOT"] [org.clojure/tools.emitter.jvm "0.0.1-SNAPSHOT"] [org.clojure/tools.reader "0.8.4"] ] :injections [(set! *print-length* 10) (set! *print-level* 10)]) (defproject com.draines/postal "1.4.0-SNAPSHOT" :resources-path "etc" :repositories {"java.net" "http://download.java.net/maven/2"} :dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"] [org.clojure/clojure-contrib "1.2.0-SNAPSHOT"] [javax.mail/mail "1.4.4-SNAPSHOT" :exclusions [javax.activation/activation]]] :dev-dependencies [[swank-clojure "1.2.1"]] :source-path "src/clj" :main com.draines.postal.main) (defproject incise "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [speclj "2.1.2"] [ring "1.2.0"] [hiccup "1.0.2"] [compojure "1.1.5"] [http-kit "2.1.10"] [robert/hooke "1.3.0"] [me.raynes/cegdown "0.1.0"] [org.clojure/java.classpath "0.2.0"] [org.clojure/tools.namespace "0.2.4"] [org.clojure/tools.cli "0.2.4"] [clj-time "0.5.1"] [com.taoensso/timbre "2.6.1"] [com.ryanmcg/stefon "0.5.0"]] :profiles {:dev {:dependencies [[speclj "2.5.0"]]}} :plugins [[speclj "2.5.0"]] :test-paths ["spec/"] :main incise.core) (defproject demo "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [ring/ring-core "1.2.0-beta1"] [com.h2database/h2 "1.3.160"] [org.clojure/java.jdbc "0.3.0-alpha4"]] :profiles {:openshift {:immutant {:init immutant.init/load-all}}}) (defproject cljam "0.1.1" :description "A DNA Sequence Alignment/Map (SAM) library for Clojure" :url "https://chrovis.github.io/cljam" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.2.6"] [org.clojure/tools.cli "0.3.1"] [me.raynes/fs "1.4.5"] [pandect "0.3.1"] [clj-sub-command "0.2.0"] [bgzf4j "0.1.0"]] :plugins [[lein-midje "3.1.3"] [lein-bin "0.3.4"] [lein-marginalia "0.7.1"]] :profiles {:dev {:dependencies [[midje "1.6.3"] [criterium "0.4.3"] [cavia "0.1.2"] [primitive-math "0.1.3"]] :global-vars {*warn-on-reflection* true}}} :main cljam.main :aot [cljam.main] :bin {:name "cljam"} :repl-options {:init-ns user}) ;; The only requirement of the project.clj file is that it includes a ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. (defproject leiningen "1.4.0-SNAPSHOT" :description "A build tool designed not to set your hair on fire." :url "http://github.com/technomancy/leiningen" :license {:name "Eclipse Public License"} :dependencies [[org.clojure/clojure "1.3.0-alpha1"] [org.clojure.contrib/complete "1.3.0-alpha1" :classifier "bin"] [ant/ant "1.6.5"] [jline "0.9.94"] [robert/hooke "1.0.2"] [org.apache.maven/maven-ant-tasks "2.0.10"]] :disable-implicit-clean true :eval-in-leiningen true) (defproject onyx-starter "0.1.0-SNAPSHOT" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.onyxplatform/onyx "0.8.0"] [com.stuartsierra/component "0.2.3"]] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"]] :source-paths ["env/dev" "src"]}}) (defproject cider-ci_repository "2.0.0" :description "Cider-CI Repository" :license {:name "GNU AFFERO GENERAL PUBLIC LICENSE Version 3" :url "http://www.gnu.org/licenses/agpl-3.0.html"} :dependencies [ [cider-ci/clj-auth "2.0.0"] [cider-ci/clj-utils "2.0.0"] [clj-jgit "0.8.0"] [org.clojure/tools.nrepl "0.2.6"] ] :source-paths ["src"] :profiles { :dev { :resource-paths ["resources_dev"] } :production { :resource-paths [ "/etc/cider-ci_repository" ] }} :aot [cider-ci.repository.main] :main cider-ci.repository.main :repositories [["tmp" {:url "http://maven-repo-tmp.drtom.ch" :snapshots false}]] ) (defproject buddy/buddy-auth "0.6.0" :description "Authentication and Authorization facilities for ring based web applications." :url "https://github.com/funcool/buddy-auth" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0" :scope "provided"] [buddy/buddy-sign "0.6.0"] [funcool/cuerdas "0.5.0"] [clout "2.1.2"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :exclude [] :language :clojure :output-dir "doc/dist/latest/api" :src-dir-uri "http://github.com/funcool/buddy-auth/blob/master/" :src-linenum-anchor-prefix "L"} :plugins [[funcool/codeina "0.1.0" :exclusions [org.clojure/clojure]]]}}) (defproject sqls "0.1.0-SNAPSHOT" :description "SQLS" :url "https://bitbucket.org/mpietrzak/sqls" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.6.0-beta2"] [org.clojure/data.json "0.2.4"] [org.clojure/java.jdbc "0.3.3"] [org.clojure/tools.logging "0.2.6"] [org.xerial/sqlite-jdbc "3.7.2"] [seesaw "1.4.4"] ] ; :main ^:skip-aot sqls.core :main sqls.core :java-source-paths ["src"] :target-path "target/%s" :plugins [[codox "0.6.7"] [lein-ancient "0.5.4"]] :profiles {:uberjar {:aot :all}} :jvm-opts ["-Xms4M" "-Xmx1G" "-XX:+PrintGC"]) (ns membership-manager.routing.admin (:require [compojure.core :refer :all] [cemerick.friend :as friend] [java-time :as t] [membership-manager.store.users :as users] [membership-manager.view.accounts :as account-views])) (defroutes members (GET "/members/" [] (account-views/member-list (vals (users/list-all)))) (GET "/members/add" [] (account-views/add-user)) (POST "/members/add" {params :params} (let [details {:username (:username params) :first-name (:first-name params) :second-name (:second-name params) :password "password" ;;TODO auto-generate password and show on user added screen - will eventually be email to user? :change-password true}] (users/create-user details #{} (t/instant)) (account-views/member-list (vals (users/list-all)))))) (defroutes all-routes (context "/admin" [] (friend/wrap-authorize members #{::users/admin}))) (ns spectacles.presenter (:require [quil.core :as q] [quil.middleware :as m] [spectacles.scheduler])) (q/defsketch spectacles :title "Presentation Cycle" :size [1280 720] :setup spectacles.scheduler/setup :update spectacles.scheduler/update :draw spectacles.scheduler/draw :middleware [m/fun-mode] ; :features [:keep-on-top :present] :bgcolor "#000000") (defn -main "Main NO-OP entry point" [] (println "Presentation started...")) (defproject reiddraper/simple-check "0.1.0" :description "A QuickCheck inspired property-based testing library." :url "http://github.com/reiddraper/simple-check" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.0"]] :plugins [[codox "0.6.4"]]) (defproject io.aviso/twixt "0.1.1" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.1.8"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.0.4"] [de.neuland/jade4j "0.3.12"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :profiles {:dev {:dependencies [[log4j "1.2.17"]]}})(defproject superstring "2.0.0" :description "String manipulation library for clojure" :url "http://github.com/expez/superstring" :license {:name "Eclipse Public License 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :year 2015 :key "epl-1.0"} :plugins [[codox "0.8.11"]] :codox {:src-dir-uri "http://github.com/expez/superstring/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[org.clojure/test.check "0.7.0"] [org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.28"] [com.cemerick/piggieback "0.2.1"]] :repl-options {:init-ns superstring.core :nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}}) (defproject io.aviso/twixt "0.1.2" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.1.1"] [de.neuland/jade4j "0.3.15"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject naughtmq "0.0.2" :description "A native-embedding wrapper for jzmq" :url "https://github.com/gaverhae/naughtmq" :scm {:name "git" :url "https://github.com/gaverhae/naughtmq"} :signing {:gpg-key "gary.verhaegen@gmail.com"} :deploy-repositories [["clojars" {:creds :gpg}]] :pom-addition [:developers [:developer [:name "Gary Verhaegen"] [:url "https://github.com/gaverhae"] [:email "gary.verhaegen@gmail.com"] [:timezone "+1"]]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [com.taoensso/timbre "3.1.6"] [org.zeromq/jzmq "2.2.2"]] :javac-options ["-target" "1.6" "-source" "1.6"] :java-source-paths ["src"]) (defproject transit-clj "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/data.generators "0.1.2"] [com.fasterxml.jackson.core/jackson-core "2.3.1"] [org.msgpack/msgpack "0.6.9"] [org.clojure/data.fressian "0.2.0"] [commons-codec 1.5]]) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.1-SNAPSHOT" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.1-SNAPSHOT"] [ring/ring-core "1.6.2"] [org.clojure/java.jmx "0.3.4"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (ns io.aviso.rook.resources.swagger "Exposes a resource used to access the Swagger description for the mapped namespaces (excluding this one, and any other endpoints with the :no-swagger metadata." {:no-swagger true :added "0.1.27"} (:require [ring.util.response :as res] [cheshire.core :as json])) (defn swagger-json "Returns the Swagger API description as (pretty) JSON." {:route [:get "swagger.json"]} [swagger-object] ;; It's a bit silly to stream this to JSON on each request; a cache would be nice. Later. ;; Don't want to rely on outer layers providing the right middleware, so we do the conversion ;; to JSON right here. (-> swagger-object (json/generate-string {:pretty true}) res/response (res/content-type "application/json"))) (set-env! :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [afrey/boot-asset-fingerprint "1.0.0-SNAPSHOT"]]) (require '[afrey.boot-asset-fingerprint :refer [asset-fingerprint]]) (deftask dev [] (comp (asset-fingerprint) (target))) (defproject stencil "0.3.0-SNAPSHOT" :description "Mustache in Clojure" :dependencies [[org.clojure/clojure "1.3.0"] [scout "0.1.0"] [quoin "0.1.0-SNAPSHOT"] [slingshot "0.8.0"] [org.clojure/core.cache "0.6.1"]] :profiles {:dev {:dependencies [[org.clojure/data.json "0.1.2"]]} :clj1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]} :clj1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :clj1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}} :extra-files-to-clean ["test/spec"])(defproject onyx-app/lein-template "0.11.1.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject rester "0.2.2-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.10.0"] [org.clojure/data.csv "0.1.3"] [clj-http "3.10.0"] [org.clojure/tools.logging "0.3.1"] [org.clojure/data.json "0.2.6"] [cheshire "5.6.1"] [org.clojure/data.xml "0.0.8"] [json-path "2.0.0"] [dk.ative/docjure "1.10.0"] [io.forward/yaml "1.0.9"] [org.clojure/core.async "0.4.490"] [ch.qos.logback/logback-classic "1.2.3"] [org.clojure/tools.cli "0.4.1"] ;; [org.clojure/core.specs.alpha "0.2.44"] ] :main ^:skip-aot rester.core :target-path "target/%s" :profiles {:uberjar {:aot :all} :dev {:dependencies [[org.clojure/test.check "0.10.0-alpha3"]]}} :uberjar-name "rester.jar") (defproject buddy/buddy-sign "0.5.1" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0" :scope "provided"] [com.taoensso/nippy "2.8.0"] [buddy/buddy-core "0.5.0"] [slingshot "0.12.2"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.4.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (ns teach-by-friends.shared.icons) (defn import-icon [name] (js/require (str "./images/" name ".png"))) (def ^:private icons {:back (import-icon "back") :close (import-icon "close") :episodes (import-icon "episodes") :favorites (import-icon "favorites") :information (import-icon "information") :words (import-icon "words_active")}) (defn get-icon [icon] (get icons icon))(ns {{project-ns}}.dev (:require [cemerick.piggieback :as piggieback] [weasel.repl.websocket :as weasel] [leiningen.core.main :as lein])) (defn browser-repl [] (piggieback/cljs-repl :repl-env (weasel/repl-env :ip "0.0.0.0" :port 9001))) (defn start-figwheel [] (future (print "Starting figwheel.\n") (lein/-main ["figwheel"]))) (ns dictionator.core (:require [com.stuartsierra.component :as component] [dictionator.system :as app]) (:gen-class)) (defn -main "starts the Dictionator webservice" [& args] (let [[port] args] (component/start (app/prod-system {:web-port 3000})))) (ns server.systems (:require [system.core :refer [defsystem]] (system.components [http-kit :refer [new-web-server]]) [clj-consonant.local-store :refer [new-local-store]] [server.handler :refer [app-server backend-server]])) (defsystem development-system [:app-server (new-web-server 3000 app-server) :backend-server (new-web-server 3001 backend-server) :consonant (new-local-store "/home/jannis/tmp/copaste-store.git")]) (defsystem production-system [:app-server (new-web-server 3000 app-server) :backend-server (new-web-server 3001 backend-server) :consonant (new-local-store "/home/jannis/tmp/copaste-store.git")]) (ns discuss.references.lib (:require [discuss.utils.common :as lib])) (defn save-selected-reference! "Saves the currently clicked reference for further processing." [ref] (lib/update-state-item! :reference-usages :selected-reference (fn [_] ref))) (defn get-selected-reference "Returns the currently selected reference." [] (get-in @lib/app-state [:reference-usages :selected-reference])) (defn save-selected-statement! "Saves the currently selected statement for further processing." [statement] (lib/update-state-item! :reference-usages :selected-statement (fn [_] statement))) (defn get-selected-statement "Returns the currently selected statement from reference usages." [] (get-in @lib/app-state [:reference-usages :selected-statement])) (defn get-reference-usages "Return list of reference usages, which were previously stored in the app-state. TODO: optimize" [] (get-in @lib/app-state [:common :reference-usages]))(ns incise.parsers.impl.markdown-spec (:require [speclj.core :refer :all] [clojure.java.io :refer [file resource]] (incise [load :refer (load-parsers-and-layouts)] [config :as conf]) [incise.spec-helpers :refer :all] [incise.parsers.html :refer [html-parser]] [incise.parsers.impl.markdown :refer :all] [me.raynes.cegdown :as md]) (:import [java.io File])) (defn parse-markdown [] (let [markdown-file (file (resource "spec/markdown-options.md")) parse (comp slurp first force (html-parser markdown-to-html))] (parse markdown-file))) (describe "parsing markdown" (context "parsing with default options" (around-with-custom-config :in-dir "resources/spec" :out-dir "/tmp/") (with result (parse-markdown)) (it "parses a markdown file into html" (should-contain #"" @result)) (it "parses without hardwraps" (should-contain "First line Second line" @result))) (context "parsing with custom options" (around-with-custom-config :in-dir "resources/spec" :out-dir "/tmp/" :parsers {:markdown {:extensions [:hardwraps]}}) (with result (parse-markdown)) (it "parses with hardwraps" (should-contain "First line
Second line" @result)))) (run-specs) (ns word-keeper.core (:require [org.httpkit.server :refer [run-server]] [compojure.core :refer [defroutes GET]] [compojure.handler :refer [site]] [compojure.route :refer [files not-found]] [clostache.parser :refer [render-resource]] [word-keeper.backend :refer :all] [word-keeper.frontend :refer :all])) <<<<<<< HEAD (def consumer-key "5KvZggyamEy8yHD0oACgAkLxH") (def consumer-secret "3DeEHXQ6LVh7LxSdApivzAOiwBAcGdvRorheKzheCchbPPQF6h") ======= >>>>>>> FETCH_HEAD (defroutes routes (GET "/" [] action-index) (files "/public/") (not-found "

404. Not found

")) (defn -main [& args] (run-server (site #'routes) {:port 8080})) (ns atom-finder.core (:require [atom-finder.classifier :refer :all] [atom-finder.count-subtrees :refer :all] [atom-finder.constants :refer :all] [atom-finder.util :refer :all] [atom-finder.classifier-util :refer :all] [atom-finder.results-util :refer :all] [atom-finder.atoms-in-dir :refer :all] [clojure.pprint :refer [pprint]] [clojure.data.csv :as csv] [clojure.java.io :as io] )) (defn -main [& args] (print-atoms-in-dir (expand-home "~/opt/src/redis") (map atom-lookup [:macro-operator-precedence]) ) ) (->> "macro-operator-precedence_redis_2017-03-10_1.edn" read-data (take 30) (found-atom-source :macro-operator-precedence) ;sum-found-atoms ) ;sum-found-atoms => {:macro-operator-precedence 1760} ;sum-found-atoms => {:macro-operator-precedence 759} # After removing atomic macros (#define M1 123) (ns onyx.log.commands.complete-task (:require [onyx.extensions :as extensions])) (defmethod extensions/apply-log-entry :complete-task [{:keys [args message-id]} replica] (-> replica (update-in [:completions (:job args)] conj (:task args)) (update-in [:completions (:job args)] vec) (update-in [:allocations (:job args)] dissoc (:task args)))) (defmethod extensions/replica-diff :complete-task [{:keys [args]} old new] {:job (:job args) :task (:task args)}) (defmethod extensions/reactions :complete-task [{:keys [args]} old new diff peer-args] (let [allocations (get-in old [:allocations (:job args) (:task args)])] (when (some #{(:id peer-args)} (into #{} allocations)) [{:fn :volunteer-for-task :args {:id (:id peer-args)}}]))) (defmethod extensions/fire-side-effects! :complete-task [{:keys [args]} old new diff state] state) (ns overseer.status "Functions for querying the state of jobs in the system" (:require [datomic.api :as d] [clojure.set :as set])) (defn jobs-with-status [db status] (->> (d/q '[:find ?jid :in $ ?status :where [?e :job/status ?status] [?e :job/id ?jid]] db status) (map first) (set))) (defn jobs-failed "Find all jobs that have failed." [db] (jobs-with-status db :failed)) (defn jobs-unfinished "Find all jobs that are not yet complete." [db] (->> (d/q '[:find ?jid :where [?e :job/status ?s] [((comp not contains?) #{:finished :aborted :failed} ?s)] [?e :job/id ?jid]] db) (map first) (into #{}))) (defn jobs-started "Find all jobs that are currently started." [db] (jobs-with-status db :started)) (defn jobs-ready "Find all jobs that are ready to run. Works by finding all jobs that are not yet done, and subtracting the jobs who dependencies are not yet ready." [db] (set/difference (jobs-unfinished db) (->> (d/q '[:find ?jid :where [?j :job/dep ?dj] [?dj :job/status ?djs] [(not= :finished ?djs)] [?j :job/id ?jid]] db) (map first) (into #{})))) (ns clj-http.examples.caching-middleware (:require [clj-http.client :as http] [clojure.core.cache :as cache])) (def http-cache (atom (cache/ttl-cache-factory {} :ttl (* 60 60 1000)))) (defn- cached-response ([client req] (let [cache-key (str (:server-name req) (:uri req) "?" (:query-string req))] (if (cache/has? @http-cache cache-key) (do (println "CACHE HIT") (client req (reset! http-cache (cache/hit @http-cache cache-key)) nil ) ) (do (println "CACHE MISS") (let [resp (client req)] (if (http/success? resp) (do (reset! http-cache (cache/miss @http-cache cache-key resp)) (client req resp nil)) (do (client req resp nil))))))))) (defn wrap-caching-middleware [client] (fn ([req] (cached-response client req)))) (defn example [& uri] (http/with-additional-middleware [#'wrap-caching-middleware] (http/get (or uri "https://api.github.com")))) ;; Try this out: ;; ;; user> (use '[clj-http.examples.caching-middleware :as mw]) ;; nil ;; user> (mw/example) ;; CACHE MISS (ns circle.env (:require midje.semi-sweet) (:require clojure.test) (:use [circle.sh :only (sh)]) (:require [clojure.string :as str]) (:use [clojure.contrib.except :only (throw-if-not)])) (def env (condp = (System/getenv "CIRCLE_ENV") "production" :production "staging" :staging nil :local)) (def production? (= env :production)) (def staging? (= env :staging)) (def local? (= env :local)) (throw-if-not (= 1 (count (filter true? [production? staging? local?])))) (when production? (alter-var-root (var midje.semi-sweet/*include-midje-checks*) (constantly false)) (alter-var-root (var clojure.test/*load-tests*) (constantly false))) (defn username "Returns the username that started this JVM" [] (-> (sh "whoami") :out (str/trim))) (defn hostname "hostname of the box" [] (-> (sh "hostname") :out (str/trim)))(ns {{project-ns}}.core (:require [om.core :as om :include-macros true]{{{core-cljs-requires}}})) (enable-console-print!) (defonce app-state (atom {:text "Hello Chestnut!"})) (defn main [] (om/root (fn [app owner] (reify om/IRender (render [_] (dom/h1 {{#not-om-tools?}}nil {{/not-om-tools?}}(:text app))))) app-state {:target (. js/document (getElementById "app"))})) (ns nth-prime) (defn sqrt "Wrapper around java's sqrt method." [number] (int (Math/ceil (Math/sqrt number)))) (defn divides? "Helper function to decide if a number is evenly divided by divisor." [number divisor] (zero? (mod number divisor))) (defn prime? [number] (cond (= 2 number) true (even? number) false :else (empty? (for [n (range 3 (inc (sqrt number)) 2) :when (divides? number n)] n)))) (defn next-prime [start] (loop [n (inc start)] (if (prime? n) n (recur (inc n))))) (defn nth-prime [index] (when (not (pos? index)) (throw (IllegalArgumentException. "nth-prime expects a positive integer for an argument"))) (loop [cur-prime 2 num-times 1] (if (= num-times index) cur-prime (recur (next-prime cur-prime) (inc num-times))))) (ns onyx.messaging.aeron-media-driver (:require [clojure.core.async :refer [chan afile (file) (.getCanonicalPath) (subs (count (.getCanonicalPath prefix-file))))) (defn- gitignore-file? [^File file] (= (.getName file) ".gitignore")) (defn delete-recursively "Delete a directory tree." [^File root] (when root (when (.isDirectory root) (doseq [file (remove gitignore-file? (.listFiles root))] (delete-recursively file))) (.delete root))) {:user { :plugins [[cider/cider-nrepl "0.12.0-SNAPSHOT"] [lein-ancient "0.6.8"] [lein-bikeshed "0.3.0"] [lein-kibit "0.1.2"]] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.reader "1.0.0-alpha3"] [com.cemerick/url "0.1.1"] [datomic-schema-grapher "0.0.1"] [com.datomic/datomic-pro "0.9.5350"] [me.raynes/fs "1.4.6"] [clj-stacktrace "0.2.8"] [acyclic/squiggly-clojure "0.1.5"] ^:replace [org.clojure/tools.nrepl "0.2.12"] ;; Consider using typed? [org.clojure/core.typed "0.3.22"] ] } ;; VisualVM profiling opts :jvm-opts ["-Dcom.sun.management.jmxremote" "-Dcom.sun.management.jmxremote.ssl=false" "-Dcom.sun.management.jmxremote.authenticate=false" "-Dcom.sun.management.jmxremote.port=43210"]} (hash-map :layout (layout/geodesic :radius 3.688 :pixel-spacing 0.02 :strut-pixels [48 64 64 64] :strip-struts [[0 6 12 10] [2 8 18 16] [4 9 17 19] [3 7 11 13] [1 5 14 15]]) #_ (layout/star :radius 3.688 ; 12.1' :pixel-spacing 0.02 ; 2 cm :strip-pixels 240 :strips 6) :event-handler (-> state/update-mode handler/mode-selector (handler/autocycle-modes (comp #{:button/press :button/repeat} :type))) :web-options {:port 8080 :min-threads 2 :max-threads 5 :max-queued 25} :modes {:rainbow (mode/rainbow) :strobe (mode/strobe [(color/rgb 1 0 0) (color/rgb 0 1 0) (color/rgb 0 0 1)]) :lantern (mode/lantern 0.5)} :playlist [:rainbow :strobe :lantern]) (def classifier-version "0.2.3") (defproject puppetlabs.packages/pe-classifier "0.2.4-SNAPSHOT" :description "Release artifacts for classifier" :pedantic? :abort :dependencies [[puppetlabs/classifier ~classifier-version]] :uberjar-name "classifier-release.jar" :repositories [["releases" "http://nexus.delivery.puppetlabs.net/content/repositories/releases/"] ["snapshots" "http://nexus.delivery.puppetlabs.net/content/repositories/snapshots/"]] :main puppetlabs.trapperkeeper.main :ezbake {:user "pe-classifier" :group "pe-classifier" :build-type "pe"}) (defproject buddy/buddy-sign "2.0.0" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.9.0-alpha17" :scope "provided"] [com.taoensso/nippy "2.13.0" :scope "provided"] [org.clojure/test.check "0.9.0" :scope "test"] [buddy/buddy-core "1.3.0"] [cheshire "5.7.1"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject suricatta "0.2.0-SNAPSHOT" :description "High level sql toolkit for clojure (backed by jooq library)" :url "https://github.com/niwibe/suricatta" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :profiles {:dev {:dependencies [[postgresql "9.3-1102.jdbc41"] [com.h2database/h2 "1.3.176"] [cheshire "5.3.1"]] ;; :global-vars {*warn-on-reflection* true} }} :java-source-paths ["src/java"] :dependencies [[org.clojure/clojure "1.6.0"] [org.jooq/jooq "3.5.0"] [clojure.jdbc "0.3.2"] [cats "0.2.0" :exclusions [org.clojure/clojure]] [org.clojure/core.async "0.1.346.0-17112a-alpha"]]) (defproject funcool/futura "0.2.0-SNAPSHOT" :description "A basic building blocks for async programming." :url "https://github.com/funcool/futura" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0-beta3" :scope "provided"] [cats "0.4.0"] [manifold "0.1.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.reactivestreams/reactive-streams "1.0.0"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :language :clojure :output-dir "doc/api"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]}}) (defproject io.aviso/rook "0.1.8-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"] [io.aviso/pretty "0.1.10"] [speclj "2.9.1"] [log4j "1.2.17"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [org.clojure/tools.logging "0.2.6"] [ring-middleware-format "0.3.2"] [prismatic/schema "0.2.1"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"] [speclj "2.9.1"]] :test-paths ["spec"]) (defproject madouc "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [ring-logger "0.7.7"] [ring-logger-timbre "0.7.5"] [com.taoensso/timbre "4.8.0"] [com.fzakaria/slf4j-timbre "0.3.4"] [environ "1.1.0"] [org.immutant/web "2.1.6" :exclusions [ch.qos.logback/logback-classic]]] :main madouc.core :profiles {:dev {:plugins [[lein-environ "1.1.0"]]} :uberjar {:aot :all}}) ;(defproject cli4clj "1.0.0" (defproject cli4clj "1.0.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-assorted-utils "1.11.0"] [jline/jline "2.13"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.1.3"] [lein-html5-docs "3.0.3"]]) (defproject onyx-app/lein-template "0.9.7.0-alpha1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject leancloud.data.json "0.1.0-RC2" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"]] :java-source-paths ["src/jvm"] :source-paths ["src/clj"] :jvm-opts ["-Xmx1g" "-server" "-XX:MaxPermSize=256m" "-XX:+UseConcMarkSweepGC" "-XX:+UseCMSCompactAtFullCollection" "-Dclojure.compiler.elide-meta='[:doc :added]'"] :profiles {:dev {:dependencies [[criterium "0.4.3"] [clj-tuple "0.1.6"] [org.clojure/data.json "0.2.5"]]}}) (ns workflo.macros.spec-test (:require #?(:cljs [cljs.test :refer-macros [deftest is]] :clj [clojure.test :refer [deftest is]]) #?(:cljs [cljs.spec :as s] :clj [clojure.spec :as s]) #?(:cljs [cljs.spec.test :as st] :clj [clojure.spec.test :as st]) [workflo.macros.view] [workflo.macros.query] [workflo.macros.query.util] [workflo.macros.command] [workflo.macros.command.util])) #?(:cljs (deftest test-specs (doseq [v (s/speced-vars)] (println " Testing" v) (let [result (st/check-var v :num-tests 10 :max-size 10)] (println " >" result) (and (is (map? result)) (is (true? (:result result)))))))) #?(:clj (deftest test-specs (doseq [s (st/testable-syms)] (println " Testing" s) (let [result (first (st/test s {:clojure.spec.test.check/opts {:num-tests 10}}))] (and (is (map? result)) (is (true? (:result result)))))))) (ns comic-reader.pages.sites (:require [comic-reader.session :as session] [reagent.core :as reagent :refer [atom]] [secretary.core :refer [dispatch!]])) (defn manga-site [site-data] ^{:key (:id site-data)} [:li (:name site-data)]) (defn site-list [sites] [:div [:h1 "Comic Sources"] [:ul (map manga-site sites)]]) ; An attempt to use in-place array mutation in Clojure ; Highly non-idiomatic. Should not be used. EXPERIMENTAL. ; Also it is ridiculously slow. Does anyone know why? (defn generatePermutations [a n] (if (zero? n) (println (apply str a)) (doseq [i (range 0 (inc n))] (generatePermutations a (dec n)) (let [j (if (even? n) i 0) oldn (aget a n) oldj (aget a j)] (aset a n oldj) (aset a j oldn))))) (if (not= (count *command-line-args*) 1) (do (println "Exactly one argument is required") (System/exit 1)) (let [word (-> *command-line-args* first vec to-array)] (time (generatePermutations word (dec (count word)))))) (ns cruncher.moves.main (:require [cruncher.moves.data :as data])) (defn get-name "Return move object from moves-database by the move id." [id] (:name (get data/all id)))(ns leiningen.pallet-release.core) (defn deep-merge "Recursively merge maps." [& ms] (letfn [(f [a b] (if (and (map? a) (map? b)) (deep-merge a b) b))] (apply merge-with f ms))) (defn fail "Fail with the given message, msg." [msg] (throw (ex-info msg {:exit-code 1}))) (defn fail-on-error "Fail on a shell error" [exit] (when (and exit (pos? exit)) (fail "Shell command failed"))) (def push-repo-fmt "https://pbors:${GH_TOKEN}@github.com%s.git") (defn repo-coordinates [{:keys [url] :as project}] (when-not (or url (-> project :pallet-release :url)) (fail "No :url available in project.clj")) (if-let [release-url (-> project :pallet-release :url)] release-url (let [u (java.net.URL. url)] (if (= "github.com" (.getHost u)) (format push-repo-fmt (.getPath u)) (fail (str "Don't know how to create a pushable git url from" url)))))) (defn release-config "Return a pallet release configuration map" [project] {:url (repo-coordinates project) :branch (or (-> project :pallet-release :branch) "master")}) (ns servisne-info.tasks (:use [raven-clj.core :only [capture]] [raven-clj.interfaces :only [stacktrace]]) (:require [environ.core :refer [env]] [overtone.at-at :as at-at] [taoensso.timbre :as timbre])) (defmacro deftask [task-name & body] `(fn [] (try (do (timbre/info ~task-name " starting...") ~@body (timbre/info ~task-name " done.")) (catch Exception e# (capture (env :sentry-dsn) (-> {:message (.getMessage e#)} (stacktrace e#))))))) (def tasks-pool (at-at/mk-pool :cpu-count 1)) (def default-period 3600) (def periodic-tasks (atom [])) (defn add-periodic-task [task] (swap! periodic-tasks conj task)) (defn schedule-periodic-tasks [] (doseq [task @periodic-tasks] (at-at/every default-period task tasks-pool :initial-delay (/ default-period 10)))) (ns route-ccrs.core (:require [clojure.tools.logging :as log] [route-ccrs.active-routes :as ar] [route-ccrs.route-ccr :as ccr])) (defn calculate-and-record-ccrs! [sys] (let [c {:connection (:db sys)}] (log/info "CCR calculation started") (->> (into [] ar/transduce-routes (ar/active-routes {} c)) (map (fn [[r o]] (ccr/ccr-entry-updates r (ccr/get-last-known-ccr r c) (ccr/select-current-ccr (:db sys) o)))) (filter seq) (reduce (fn [c u] (let [t (-> u second first) tc (get c t 0)] (ccr/update! (:db sys) u) (assoc c t (inc tc)))) {}) (log/info "calculation complete, updated:")))) (ns lt.objs.notifos (:require [lt.object :as object] [lt.objs.statusbar :as statusbar] [lt.objs.command :as cmd] [lt.util.js :refer [wait]] [crate.binding :refer [map-bound bound deref?]]) (:require-macros [lt.macros :refer [behavior defui]])) (def standard-timeout 10000) (defn working [msg] (when msg (set-msg! msg)) (statusbar/loader-inc)) (defn done-working ([] (statusbar/loader-dec)) ([msg] (set-msg! msg) (statusbar/loader-dec))) (defn msg* [m opts] (let [m (if (string? m) m (pr-str m))] (object/merge! statusbar/statusbar-loader (merge {:message m :class ""} opts)))) (defn set-msg! [msg opts] (msg* msg opts) (js/clearTimeout cur-timeout) (set! cur-timeout (wait standard-timeout #(msg* "")))) (cmd/command {:command :reset-working :desc "Statusbar: Reset working indicator" :exec (fn [] (statusbar/loader-set 0) )}) (ns puppeteer.domain.entity.message) (defrecord Field [title value short?]) (defrecord Attachment [text color fields]) (defrecord Message [channel-id user-id text timestamp attachments for-me?]) (defproject org.onyxplatform/onyx-metrics "0.8.0.2" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0.1"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject tttclj "0.0.1-SNAPSHOT" :description "Cool new project to do things and stuff" :dependencies [[org.clojure/clojure "1.4.0"] [http-kit "2.1.16"] [compojure "1.1.8"]] :profiles {:dev {:dependencies [[midje "1.5.0"]]}} :main tttclj.web) (defproject org.onyxplatform/onyx-metrics "0.8.0.3-SNAPSHOT" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0.1"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (ns om-tut.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true])) (enable-console-print!) (println "A new developer message. Pay attention, dev guy!") ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:list ["Lion" "Zebra" "Buffalo" "Antelope"]})) (om/root (fn [data owner] (om/component (apply dom/ul #js {:className "animals"} (map (fn [text] (dom/li nil text)) (:list data))))) app-state {:target (. js/document (getElementById "app0"))}) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) ) (ns detritus.types) (defn atom? [x] (instance? clojure.lang.Atom x)) (ns noir-app.init (:require [immutant.web :as web] [immutant.util :as util] [noir.server :as server] [lobos.config])) (server/load-views-ns 'noir-app.views) (web/start "/" (server/gen-handler {:mode :dev :ns 'noir-app})) (ns ^:figwheel-always potoo.core (:require [reagent.core :as r] [ajax.core :refer [GET POST]])) (defonce app-state (r/atom {:potoos []})) (defn potoo [p] (let [{:keys [text name date]} p] [:li [:span (str text ", " name ", " date)]])) (defn potoo-list [] (fn [] (GET "/api/potoos" {:keywords? true :response-format :json :handler #(swap! app-state assoc :potoos %)}) [:div [:h1 "Potooooooos!"] [:ul (for [p (:potoos @app-state)] ^{:key p} [potoo p])]])) (defn ^:export run [] (r/render [potoo-list] (js/document.getElementById "app"))) (run) ;; demo (comment (defn cp [text] (let [name "Mr. Meeseeks" date (str (js/Date.)) potoo {:key "zxc" :text text :name name :date date}] (swap! app-state update-in [:potoos] conj potoo)))) (ns lambdacd.state.protocols "Defines protocols that need to be implemented by a state component") (defprotocol StepResultUpdateConsumer "Components implementing this protocol can update the state of the pipeline" (consume-step-result-update [self build-number step-id step-result] "Tells the component to update the result of a particular step. Is called on every update so it needs to handle lots of requests")) (defprotocol PipelineStructureConsumer "Components implementing this protocol can set the structure a pipeline had for a particular build" (consume-pipeline-structure [self build-number pipeline-structure-representation] "Tells the component to update the structure of a particular build.")) (defprotocol NextBuildNumberSource "Components implementing this protocol provide the LambdaCD execution engine with new build numbers" (next-build-number [self] "Returns the build number for the next build. Must be comparable and greater than all existing build numbers")) ; TODO: is build number an int? (defprotocol QueryAllBuildNumbersSource "Components implementing this protocol can supply a list of all build numbers present in the datastore" (all-build-numbers [self] "Returns a sorted list of build numbers present in the datastore")) (defprotocol QueryStepResultsSource "Components implementing this protocol can supply steps results of a build" (get-step-results [self build-number] "Returns a map of step-id to step results")) (defprotocol PipelineStructureSource "Components implementing this protocol can supply the structure of the pipeline for a particular build" (get-pipeline-structure [self build-number] "Returns a map describing the pipeline of for a particular build")) (ns app.components.snippet-list (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom] [app.components.snippet :refer [snippet]])) (defn sort-snippets [snippets] (sort-by :uuid (fn [id1 id2] (instance? om.tempid/TempId id1)) snippets)) (defui SnippetList Object (render [this] (let [{:keys [snippets]} (om/props this) {:keys [toggle-fn create-fn edit-fn delete-fn update-fn save-fn]} (om/get-computed this)] (dom/div #js {:className "snippet-list"} (dom/h2 #js {:className "snippet-list-title"} (dom/span #js {:className "snippet-list-title-text"} "Snippets") (dom/span #js {:className "snippet-list-title-buttons"} (dom/button #js {:className "snippet-list-title-button" :onClick #(when create-fn (create-fn))} "+ Create"))) (for [sn (sort-snippets (reverse snippets))] (snippet (om/computed sn {:toggle-fn toggle-fn :edit-fn edit-fn :delete-fn delete-fn :update-fn update-fn :save-fn save-fn}))))))) (def snippet-list (om/factory SnippetList)) (ns clj-beautify.core (:require [clj-beautify.file-handler :as f] [clj-beautify.beautify :refer [format-clj]]) (:gen-class)) (defn format-file "Given a file page and a valid mode (`clj`|`edn`) open and use `clojure.tools.reader/read-string` to transform the file to a literal so that if can be formatted by `clojure.pprint/write`. It then writes back to the same file with a formatted string." [filename mode] (let [input (f/read-file filename) output (format-clj input mode)] (f/write-file filename output))) (defn -main "Entry point of the command line program that takes a file path (or directory) and mode (clj|edn). Formats all files to specified mode and rewrites the original files." [& args] (let [arg-cnt (count args)] (when (< 2 arg-cnt) (throw (Exception. (str "Invalid number of arguements. Expected 2 but " "found " arg-cnt)))) ;; TODO: do something with the valid args (doseq [file (f/list-files (nth args 1))] (format-file file (nth args 0))))) (defn square [x] (* x x)) (meditations "One may know what they seek by knowing what they do not seek" (= [__ __ __] (let [not-a-symbol? (complement symbol?)] (map not-a-symbol? [:a 'b "c"]))) "Praise and 'complement' may help you separate the wheat from the chaff" (= [:wheat "wheat" 'wheat] (let [not-nil? ___] (filter not-nil? [nil :wheat nil "wheat" nil 'wheat nil]))) "Partial functions allow procrastination" (= 20 (let [multiply-by-5 (partial * 5)] (___ __))) "Don't forget: first things first" (= [__ __ __ __] (let [ab-adder (partial concat [:a :b])] (ab-adder [__ __]))) "Functions can join forces as one 'composed' function" (= 25 (let [inc-and-square (comp square inc)] (inc-and-square __))) "Have a go on a double dec-er" (= __ (let [double-dec (comp dec dec)] (double-dec 10))) "Be careful about the order in which you mix your functions" (= 99 (let [square-and-dec ___] (square-and-dec 10)))) (ns todo-repl.core #_(:load "/todo-repl/date-parsing") (:require [todo-repl.date-parsing :as dp]) #_(:use todo-repl.date-parsing)) (defn new-task [name due-by due-after context url] {:name name :due-after due-after :due-by due-by :context context :url url :status :incomplete :created (str (java.util.Date.)) }) (defn new-task-better [{:keys [name due-after due-by context url] :or {due-by "never" due-after nil context nil url [{:label "" :url ""}] }}] (new-task name (dp/nl-to-date due-by) (dp/nl-to-date due-after) context url)) (defn add-new-task-to [new-task tasks] (cons (new-task-better new-task) tasks)) (defn filter-tasks [filter-attrib val tasks] (filter #(= val (filter-attrib %)) tasks)) (defn complete-task [& xs] (map #(assoc % :status :complete)) xs) (ns re-frame.core (:require [re-frame.handlers :as handlers] [re-frame.subs :as subs] [re-frame.middleware :as middleware])) ;; -- API ------- (def register-handler handlers/register) (def dispatch handlers/dispatch) (def dispatch-sync handlers/dispatch-sync) (def register-sub subs/register) (def subscribe subs/subscribe) (def pure middleware/pure) (def debug middleware/debug) (def undoable middleware/undoable) (def path middleware/path) (def validate middleware/validate) (def trim-v middleware/trim-v) ; (def log-events middleware/log-events) ;; -- Convienience ------- ;; virtually ever handler will be pure, make it easy (defn register-pure-handler ([id handler] (register-handler id pure handler)) ([id middleware handler] (register-handler id [pure middleware] handler))) {:user {:plugins [[cider/cider-nrepl "0.10.0-SNAPSHOT"] [refactor-nrepl "1.2.0-SNAPSHOT"]] :dependencies [[org.clojure/tools.nrepl "0.2.12"]]}} (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.7.0"] [ring "1.3.2"] [compojure "1.3.3"] [clj-time "0.9.0"] [org.clojure/data.json "0.2.6"] [org.clojure/tools.cli "0.3.3"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject io.aviso/rook "0.1.10-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :profiles {:dev {:dependencies [[ring-mock "0.1.5"] [io.aviso/pretty "0.1.11"] [clj-http "0.9.1"] [speclj "3.0.2"] [log4j "1.2.17"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.278.0-76b25b-alpha"] [org.clojure/tools.logging "0.2.6"] [ring "1.3.0"] [medley "0.4.0"] [ring-middleware-format "0.3.2"] [prismatic/schema "0.2.3"]] :plugins [[speclj "3.0.2"]] :test-paths ["spec"] :codox {:src-dir-uri "https://github.com/AvisoNovate/rook/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}}) (defproject onyx-app/lein-template "0.9.7.0-alpha8" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject fleetdb "0.2.0-RC1" :description "A schema-free database optimized for agile development." :url "http://github.com/mmcgrana/fleetdb" :source-path "src/clj" :java-source-path "src/jvm/" :javac-fork "true" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.1.0"] [clj-stacktrace "0.1.0"] [net.sf.jopt-simple/jopt-simple "3.2"] [clj-json "0.2.0"]] :dev-dependencies [[org.clojars.mmcgrana/lein-clojars "0.5.0"] [org.clojars.mmcgrana/lein-javac "0.1.0"] [clj-unit "0.1.0"]] :namespaces [fleetdb.server]) (ns theatralia.t-core (:require [midje.sweet :refer :all] [clojure.test.check :as tc] [clojure.test.check.generators :as gen] [clojure.test.check.properties :as prop] [theatralia.core :refer [first-element]])) ;; Credits: http://zotskolf.nl/2014/11/10/testcheckbasics.html (def prop-first-element-returns-first-element (prop/for-all [fst gen/simple-type v (gen/vector gen/simple-type)] (= fst (first-element (cons fst v) :default)))) (facts "about `first-element`" (fact "it normally returns the first element" (first-element [1 2 3] :default) => 1 (first-element '(1 2 3) :default) => 1 (tc/quick-check 100 prop-first-element-returns-first-element) => (just {:result true :num-tests 100 :seed anything})) ;; I'm a little unsure how Clojure types map onto the Lisp I'm used to. (fact "default value is returned for empty sequences" (first-element [] :default) => :default (first-element '() :default) => :default (first-element nil :default) => :default (first-element (filter even? [1 3 5]) :default) => :default)) (ns exploud.numel (:require [cemerick.url :refer [url]] [cheshire.core :as json] [environ.core :refer [env]] [exploud.http :as http])) (def timeout "The number of milliseconds we'll wait for a response." 10000) (def poke-numel-url "The base URL for Numel in poke" (url (env :service-numel-poke-url))) (def prod-numel-url "The base URL for Numel in prod" (url (env :service-numel-prod-url))) (defn application-registrations-url [environment application] (if (= "prod" (name environment)) (str (url prod-numel-url "1.x" "registration" application)) (str (url poke-numel-url "1.x" "registration" application)))) (defn application-registrations [environment application] (let [url (application-registrations-url environment application) {:keys [body status] :as response} (http/simple-get url {:socket-timeout timeout})] (if (= 200 status) (json/parse-string body true) (throw (ex-info "Unexpected response" {:type ::unexpected-response :response response}))))) (ns {{namespace}} (:require [play-clj.core :refer :all]) (:import [com.badlogic.gdx.graphics Color] [com.badlogic.gdx.graphics.g2d BitmapFont] [com.badlogic.gdx.scenes.scene2d.ui Label Label$LabelStyle])) (defscreen main-screen :on-show (fn [screen entities] (update! screen :renderer (stage)) (conj entities (label "Hello world!" (color :white)))) :on-render (fn [screen entities] (clear!) (draw! screen entities) entities)) (defgame {{app-name}} :on-create (fn [this] (set-screen! this main-screen))) (ns arachnida.core) (require '[clojure.java.jdbc :as jdbc]) (require '[clojure.pprint :as pprint]) (require '[hozumi.rm-rf :as rm-rf]) (require '[ring.adapter.jetty :as jetty]) (require '[ring.middleware.params :as http-params]) (require '[ring.util.response :as http-response]) (require '[ring.middleware.cookies :as cookies]) (require '[hiccup.page :as page]) (require '[hiccup.form :as form]) (require '[arachnida.db-spec :as db-spec]) (require '[arachnida.db-interface :as db-interface]) (require '[arachnida.git-data-fetcher :as git-data-fetcher]) (defn -main [& args] (git-data-fetcher/process)) (ns structural-typing.validators "Validators. These differ from Bouncer validators in that (1) they default to optional, and (2) the messages include the failing value." (:require [bouncer.validators :as v])) (defmacro defoptional [name doc message-format & body] `(do (v/defvalidator ~name {:optional true :default-message-format ~message-format} ~@body) (alter-meta! (var ~name) assoc :doc ~doc))) (v/defvalidator ^{:doc "Fails if key is missing or its value is `nil`."} required {:default-message-format "%s must be present and non-nil"} [v] (not (nil? v))) (defoptional number "Validates against optional `number?`" "%s is `%s`, which is not a number" [maybe-a-number] (number? maybe-a-number)) (defproject ring/ring-jetty-adapter "1.9.1" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-core "1.9.1"] [ring/ring-servlet "1.9.1"] [org.eclipse.jetty/jetty-server "9.4.36.v20210114"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9:+1.10" "test"]} :profiles {:dev {:dependencies [[clj-http "3.10.0"] [less-awful-ssl "1.0.6"]] :jvm-opts ["-Dorg.eclipse.jetty.server.HttpChannelState.DEFAULT_TIMEOUT=500"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.2"]]}}) (ns ^{:doc "When this library is loaded, create a logger named 'events' and send all application-specific events to it. To view log messages in the browser console, add a call to `(log/console-output)` to this namespace or evaluate this from the REPL. For more information see library.logging."} one.repmax.logging (:require [one.dispatch :as dispatch] [one.logging :as log])) (def ^{:doc "The logger that receives all application-specific events."} logger (log/get-logger "events")) (dispatch/react-to (constantly true) (fn [t d] (log/info logger (str (pr-str t) " - " (pr-str d))))) ;; log to the console (log/start-display (log/console-output)) (ns cglossa.core (:require [reagent.core :as reagent :refer [atom]] [plumbing.core :as plumbing :refer [map-vals]] [cglossa.centre :as centre])) (def state {:showing-results false}) (def data {:categories ["ku" "hest"] :users ["per" "kari"]}) (defonce app-state (into {} (map-vals atom state))) (defonce app-data (into {} (map-vals atom data))) (defn navbar [] [:div.navbar.navbar-fixed-top [:div.navbar-inner [:div.container [:span.brand "Glossa"]]]]) (defn bottom [_ {:keys [categories]}] [:div (for [cat @categories] [:div cat])]) (defn app [s d] [:div [navbar] [:div.container-fluid [centre/top s d]] [bottom s d]]) (defn ^:export main [] (reagent/render-component (fn [] [app app-state app-data]) (. js/document (getElementById "app")))) (ns pfrt.main (:require [pfrt.pf :refer [packet-filter]] [pfrt.web :refer [web-server]] [pfrt.core.app :as app] [pfrt.settings :as settings]) (:gen-class)) ;; Global var, only used for store ;; a global app instance when this is ;; used from REPL. (def main-app nil) ;; System private constructor with ;; clear and explicit dependency injection ;; on each app components. (defn- make-app [] (let [config (settings/cfg) pf (packet-filter config) webserver (web-server config pf)] (-> (app/->App [pf webserver]) (assoc :config config) (app/init)))) ;; Start function that should ;; only be used from REPL. (defn start [] (alter-var-root #'main-app (constantly (make-app))) (start main-app)) ;; Stop function that should ;; only be used from REPL. (defn stop [] (app/stop main-app)) ;; Main entry point (defn -main [& args] (let [app-instance (make-app)] (app/start app-instance) (println "Application started."))) (ns vinculum.main (:require [vinculum.core :as core])) (core/main) ;; This is usefull to display the functions, ask the user for the ;; input parameters, and then execute them, presenting the result to ;; the user. ;; Intended to expose the functions in a Browser, but it could be ;; anything else: command line, rich client, ... ;; (ns fnx.meta.expose "Get the public functions of a namespace" (:use [midje.sweet])) ;; ;; * First we load the ns with `require` ;; * Then we get the public functions (read from bottom to top): ;; * We want only functions, not the other vars: We can spot them because they have an `:arglists` in their meta. ;; * Don't really know why, but we need to `ns-resolve` the symbols(?) ;; * Get the public vars with `ns-publics` ;; (defn ns-public-fn "Given a ns symbol, returns all the public fns of this ns." [ns] (do (require ns) (filter #(:arglists (meta %)) (map #(ns-resolve ns %) (keys (ns-publics (find-ns ns))))))) (fact "ns-public-fn" (second (ns-public-fn 'fnx.meta.example)) => (resolve 'fnx.meta.example/hello-noir)) (fact "ns-public-fn: listing functions and calling them (it's more an example of usage than a true test)" (map (fn [f] (apply f (range 0 (count (first (:arglists (meta f))))))) (ns-public-fn 'fnx.meta.example)) => ["arg=0", "Hello noir" "args=0,1"]) ; Copyright 2009 Howard M. Lewis Ship ; ; 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 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or ; implied. See the License for the specific language governing permissions ; and limitations under the License. (ns cascade.utils) (defmacro lcond "A reimplementation of Clojure's cond, with the addition of a special :let keyword that injects an implicit let into the logic." [& clauses] (when clauses (if (= 1 (count clauses)) (throw (IllegalArgumentException. "lcond requires an even number of forms"))) (let [tst (first clauses) expr (second clauses) rst (next (next clauses))] (if (= tst :let) `(let [~@expr] (lcond ~@rst)) `(if ~tst ~expr (lcond ~@rst)))))) (ns example.one-bar-sequencer (:use overtone.live)) (def metro (metronome 128)) ; Our bar is a map of beat to instruments to play (def bar {0 [kick] 0.5 [c-hat] 1 [kick snare] 1.5 [c-hat] 2 [kick] 2.5 [c-hat] 3 [kick snare] 3.5 [c-hat]}) ; For every tick of the metronome, we loop through all our beats ; and find the apropriate one my taking the metronome tick mod 4. ; Then we play all the instruments for that beat. (defn player [tick] (dorun (for [k (keys bar)] (let [beat (Math/floor k) offset (- k beat)] (if (= 0 (mod (- tick beat) 4)) (let [instruments (bar k)] (dorun (for [instrument instruments] (at (metro (+ offset tick)) (instrument)))))))))) (ns blocks.store.replica-test (:require (blocks.store [memory :refer [memory-store]] [replica :refer [replica-store]] [tests :refer [test-block-store]]) [clojure.test :refer :all])) ; TODO: test that writes actually populate all backing stores. ; TODO: test that removing blocks from one store still returns all blocks. ; TODO: test that listing provides merged block list. (deftest ^:integration test-replica-store (let [store (replica-store [(memory-store) (memory-store)])] (test-block-store "replica-store" store :max-size 1024 :blocks 25))) (println "Map Function Tests") (is (= (map inc [1 2 3]) [2 3 4])) (ns circle.backend.test-build (:use midje.sweet) (:use [circle.backend.build.test-utils :only (minimal-build)]) (:use circle.model.build)) (fact "checkout-dir handles spaces" (let [b (minimal-build :build_num 42)] (checkout-dir b) => "Dummy-Project-42")) (fact "ensure-project-id works" (let [b (minimal-build)] @b => (contains {:_project_id truthy})))(defproject cljam "0.1.2" :description "A DNA Sequence Alignment/Map (SAM) library for Clojure" :url "https://chrovis.github.io/cljam" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.2.6"] [org.clojure/tools.cli "0.3.1"] [me.raynes/fs "1.4.5"] [pandect "0.3.2"] [clj-sub-command "0.2.0"] [bgzf4j "0.1.0"]] :plugins [[lein-midje "3.1.3"] [lein-bin "0.3.4"] [lein-marginalia "0.7.1"]] :profiles {:dev {:dependencies [[midje "1.6.3"] [criterium "0.4.3"] [cavia "0.1.2"] [primitive-math "0.1.3"]] :global-vars {*warn-on-reflection* true}}} :main cljam.main :aot [cljam.main] :bin {:name "cljam"} :repl-options {:init-ns user}) (defproject io.aviso/rook "0.1.4" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"]]) (defproject stencil "0.3.0-SNAPSHOT" :description "Mustache in Clojure" :dependencies [[org.clojure/clojure "1.3.0"] [scout "0.1.0"] [slingshot "0.8.0"] [org.clojure/core.cache "0.5.0"]] :profiles {:dev {:dependencies [[org.clojure/data.json "0.1.2"]]} :clj1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]} :clj1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :clj1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}} :extra-files-to-clean ["test/spec"])(defproject ktra-indexer "0.1.0-SNAPSHOT" :description "A simple application for indexing and searching KTRA track listings" :url "https://github.com/terop/ktra-indexer" :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.8.0"] [compojure "1.5.1"] [ring/ring-defaults "0.2.1"] [ring/ring-devel "1.5.0"] [org.immutant/web "2.1.5"] [selmer "1.0.7"] [cheshire "5.6.3"] [org.postgresql/postgresql "9.4.1207"] [org.clojure/java.jdbc "0.6.1"] [honeysql "0.7.0"] [clj-time "0.12.0"] [buddy/buddy-auth "1.1.0"] [com.yubico/yubico-validation-client2 "3.0.1"] [org.apache.commons/commons-lang3 "3.4"]] :main ktra-indexer.handler :aot [ktra-indexer.handler] :plugins [[lein-environ "1.0.3"]] :profiles {:dev {:dependencies [[ring/ring-mock "0.3.0"]] :resource-paths ["resources"] :env {:squiggly {:checkers [:eastwood :kibit :typed]}}}}) (defproject onyx-app/lein-template "0.9.9.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns braid.search.ui.search-bar (:require [reagent.core :as r] [re-frame.core :refer [subscribe dispatch]] [braid.core.client.routes :as routes] [braid.lib.color :as color])) (defn search-bar-view [] (r/with-let [search-query (r/atom @(subscribe [:braid.search/query])) prev-page (r/atom (:type @(subscribe [:page])))] (let [current-page (:type @(subscribe [:page]))] (when (not= @prev-page current-page) (when (= @prev-page :search) (reset! search-query "")) (reset! prev-page current-page))) [:div.search-bar [:input {:type "text" :placeholder "Search..." :value @search-query :on-change (fn [e] (reset! search-query (.. e -target -value)) (dispatch [:braid.search/update-query! (.. e -target -value)]))}] (if (and @search-query (not= "" @search-query)) [:a.action.clear {:on-click (fn [] (reset! search-query "")) :href (routes/group-page-path {:group-id @(subscribe [:open-group-id]) :page-id "inbox"}) :style {:color (color/->color @(subscribe [:open-group-id]))}}] [:div.action.search])])) (ns com.draines.postal.core (:use [com.draines.postal.sendmail :only [sendmail-send]] [com.draines.postal.smtp :only [smtp-send]])) (defn send-message [msg] (when-not (and (:from msg) (:to msg) (:subject msg) (:body msg)) (throw (Exception. "message needs at least :from, :to, :subject, and :body"))) (if (:host msg) (smtp-send msg) (sendmail-send msg))) (ns haystack.search-test (:require [haystack.search :as sut :refer [search]] ;; [clojure.test :as t :refer :all] [haystack.helpers :refer :all] )) (test-search matnrs-check {:search "2843977 2542450"} (max-docs 50) (in-top 2843977 2) (in-top 2542450 2) ) (test-search upcs-check {:search "078477045442 980100350109"} (max-docs 500) (in-top 199152 2) (in-top 2542450 2) ) (ns zetawar.util (:require [fipp.edn])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Accessors (defn solo "Like first, but throws if more than one item." [coll] (assert (not (next coll))) (first coll)) (defn only "Like first, but throws unless exactly one item." [coll] (assert (not (next coll))) (if-let [result (first coll)] result (assert false))) (defn ssolo "Same as (solo (solo coll))" [coll] (solo (solo coll))) (defn oonly "Same as (only (only coll))" [coll] (only (only coll))) ;; TODO: check performance (defn select-values [m ks] (reduce #(if-let [v (m %2)] (conj %1 v) %1) [] ks)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Debugging ;; TODO: refer to https://github.com/shaunlebron/How-To-Debug-CLJS/blob/master/src/example/macros.clj (defn spy [x] (js/console.debug (with-out-str (fipp.edn/pprint x))) x) (defproject onyx-app/lein-template "0.12.0.0-rc2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns kiries.layout (:use hiccup.core) (:use hiccup.page)) (defn full-layout [title & content] (html5 [:head (include-css "/kibana/common/css/bootstrap.dark.min.css") (include-css "/kibana/common/css/bootstrap-responsive.min.css") (include-css "/kibana/common/css/font-awesome.min.css") [:title title]] [:body [:div.container-fluid.main [:div.row-fluid content]]])) (ns incise.layouts.core (:refer-clojure :exclude [get])) (def layouts (atom {})) (defn exists? "Check for the existance of a layout with the given name." [layout-with-name] (contains? @layouts layout-with-name)) (defn get [& args] (apply clojure.core/get @layouts args)) (defn register "Register a layout function to a shortname" [short-name layout-fn] (swap! layouts assoc (str short-name) layout-fn)) (ns time-tracker.fixtures (:require [clojure.java.jdbc :as jdbc] [time-tracker.migration :refer [migrate-db]] [time-tracker.db :as db] [time-tracker.core :refer [app]] [time-tracker.auth.core :as auth] [time-tracker.auth.test-helpers :refer [fake-token->credentials]] [environ.core :as environ] [time-tracker.config :as config]) (:use org.httpkit.server)) (defn init! [f] (time-tracker.core/init!) (f)) (defn destroy-db [] (jdbc/execute! config/db-spec [(str "DROP OWNED BY " (environ/env :test-db-username))])) (defn migrate-test-db [f] (migrate-db) (f) (destroy-db)) (defn serve-app [f] (with-redefs [auth/token->credentials fake-token->credentials] (let [stop-fn (run-server app {:port 8000})] (f) (stop-fn :timeout 100)))) (defn isolate-db [f] (jdbc/with-db-transaction [conn (db/connection)] (jdbc/db-set-rollback-only! conn) (with-redefs [db/connection (fn [] conn)] (f)))) (defproject onyx-app/lein-template "0.10.0.0-alpha6" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject cli4clj "1.5.2" ;(defproject cli4clj "1.5.3-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.4.474"] [jline/jline "2.14.6"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.6" :exclusions [org.clojure/clojure]]]}} ) (defproject kiries "0.1.0-SNAPSHOT" :description "A bundled deployment of Kibana, Riemann, and ElasticSearch" :license "Eclipse Public License v1.0" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.cli "0.2.1"] [clj-logging-config "1.9.6"] [riemann "0.2.2"] [clj-time "0.6.0"] [clojurewerkz/elastisch "1.2.0"] [org.elasticsearch/elasticsearch "0.90.3"] [compojure "1.1.5"] [hiccup "1.0.4"] [org.markdownj/markdownj "0.3.0-1.0.2b4"] [ring/ring-core "1.2.0"] [ring/ring-jetty-adapter "1.2.0"] [clojure-csv/clojure-csv "1.3.2"] ] :resource-paths ["." "resources"] :jar-exclusions [#"^htdocs"] :main kiries.core :aliases {"server" ["trampoline" "run" "-m" "kiries.core"]}) ;(defproject cli4clj "1.2.5" (defproject cli4clj "1.2.6-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.15.0"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.2.5"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]]}} ) (defproject me.manuelp/confunion "0.1.1-SNAPSHOT" :description "Library for managing configuration based on EDN files." :url "http://github.com/manuelp/confunion" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.2.6"]] :plugins [[lein-marginalia "0.7.1"]] :source-paths ["src/clojure"] :test-paths ["test/clojure"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7"]) (defproject com.stuartsierra/component "0.2.2" :description "Managed lifecycle of stateful objects" :url "https://github.com/stuartsierra/component" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :min-lein-version "2.1.3" ; added :global-vars :dependencies [[com.stuartsierra/dependency "0.1.1"]] :global-vars {*warn-on-reflection* true} :aliases {"test-all" ["with-profile" "clj1.4:clj1.5:clj1.6:clj1.7" "test"]} :profiles {:dev {:dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.namespace "0.2.4"]] :source-paths ["dev"]} :clj1.7 {:dependencies [[org.clojure/clojure "1.7.0-master-SNAPSHOT"]] :repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public"}} :clj1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :clj1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :clj1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}}) (defproject thinktopic/cortex "0.1.0-SNAPSHOT" :description "A neural network toolkit for Clojure." :dependencies [[org.clojure/clojure "1.8.0-RC4"] [com.taoensso/timbre "4.2.0"] [net.mikera/vectorz-clj "0.40.0"] [org.clojure/test.check "0.9.0"]] :jvm-opts ["-Xmx8g" "-XX:+UseConcMarkSweepGC" "-XX:-OmitStackTraceInFastThrow"]) (ns audio-utils.recorder (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom] [audio-utils.util :refer [audio-context get-user-media]] [audio-utils.gate :as g])) (defui Recorder Object (start [this] (let [audio-ctx (audio-context) gate (g/gate {:audio-ctx audio-ctx})] (om/update-state! this assoc :audio-ctx audio-ctx :gate gate) (get-user-media {:audio true} #(.connect-audio-nodes this %) js/console.warn))) (connect-audio-nodes [this stream] (let [{:keys [audio-ctx gate]} (om/get-state this) source (.createMediaStreamSource audio-ctx stream)] (.connect source (.-destination audio-ctx)))) (stop [this] (let [audio-ctx (:audio-ctx (om/get-state this))] (.close audio-ctx) (om/update-state! this dissoc :audio-ctx))) (componentWillReceiveProps [this new-props] (when (not= (:record? (om/props this)) (:record? new-props)) (if (:record? new-props) (.start this) (.stop this)))) (render [this] (dom/div nil))) (def recorder (om/factory Recorder)) (ns org.scode.sob (:gen-class) (:require [org.scode.sob.markdown :as markdown] [clojure.contrib.command-line :as cmdline] [clojure.contrib.logging :as logging] [ring.adapter.jetty]) (:use [org.scode.sob.repos :as repos])) (defn die [msg] (logging/fatal msg) (System/exit 1)) (defn make-blog-app [port base path] (let [repos (repos/new path)] (fn [req] {:status 200 :headers {"Content-Type" "text/html"} :body (str req)}))) (defn serve-blog "Start serving a blog at http://*:port/base." [port base path] (logging/info (str "starting sob on *:" port base ", serving " path)) (ring.adapter.jetty/run-jetty (make-blog-app port base path) {:port port})) (defn -main [& args] (cmdline/with-command-line args "sob - scode's own blog" [[port "Select listen port" 8081] [base "Select base URI path" "/"] paths] (if (> 1 (count paths)) (die "only one file system path currently supported")) (if (empty? paths) (die "must specify the path to a blog")) (serve-blog port base (first paths)))) { :name "split-filter-fastqs", :path "", :func (fn [eid & data] (if (pg/eoi? eid) (pg/done) (let [exp (cmn/get-exp-info eid :exp)] (infof "Splitting and filtering fastqs by replicates for %s" eid) ;; This case dispatching is lame! Need to fix with mmethod (case exp :tnseq (htts/split-filter-fastqs eid) :rnaseq (htrs/split-filter-fastqs eid) :wgseq (htws/split-filter-fastqs eid)) eid))) :description "Uses experiment id EID to obtain set of initial fastqs for experiment and then splits them by experiment sample barcodes and filters these for quality, then writes new fastqs for all replicates.", } (ns incise.parsers.html-spec (:require [incise.parsers.html :refer :all] [incise.parsers.core :refer [map->Parse]] [clojure.java.io :refer [file resource]] [speclj.core :refer :all])) (describe "File->Parse" (with short-md-file (file (resource "spec/short-sample.md"))) (it "reads some stuff out of a file, yo" (should= (map->Parse {:title "My Short Page" :layout :page :date "2013-08-12" :path "2013/8/12/my-short-page/index.html" :tags [:cool] :category :blarg :content "\n\nHey there!\n" :extension "/index.html"}) (File->Parse identity @short-md-file)))) (run-specs) (ns bytebuf.buffer "Buffer abstractions." (:import java.nio.ByteBuffer io.netty.buffer.ByteBuf io.netty.buffer.ByteBufAllocator)) (defprotocol IBuffer (read-integer* [_] "Read an integer (32 bits) from buffer.") (read-long* [_] "Read an long (64 bits) from buffer.") (tell* [_] "Get the current position index of buffer.") (seek* [_ val] "Set the current position index on buffer.")) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; NIO ByteBuffer implementation ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (extend-type ByteBuffer IBuffer (read-integer* [buff] (.getInt buff)) (read-long* [buff] (.getLong buff)) (tell* [buff] (.position buff)) (seek* [buff val] (.position buff val))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Public Api ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (def ^{:private true} allocator (ByteBufAllocator/DEFAULT)) (defn allocate ([size] (allocate size {})) ([size {:keys [type impl] :or {type :heap impl :nio}}] (case impl :nio (case type :heap (ByteBuffer/allocate size) :direct (ByteBuffer/allocateDirect size)) :netty (case type :heap (.heapBuffer allocator size) :direct (.directBuffer allocator size))))) (defn seek! "Set the position index on the buffer." [buff ^long pos] (seek! buff pos)) (ns dragon.data.sources.core (:require [clojure.java.shell :as shell] [dragon.config :as config] [taoensso.timbre :as log])) (defn execute-db-command! [component] (let [start-cfg (config/db-start-config component) home (:home start-cfg) args (:args start-cfg)] (shell/with-sh-dir home (log/debugf "Running command in %s ..." home) (log/debug "Using shell/sh args:" args) (apply shell/sh args)))) (defn remove-connection [component] (assoc component :conn nil)) (ns ^:figwheel-always re-view.core (:require [clojure.string :as string])) (defn parse-name [n] (str (name (ns-name *ns*)) "/" n)) (defmacro defview ([view-name methods] `(def ~view-name (~'re-view.core/view ~(assoc methods :display-name (str (last (string/split (name (ns-name *ns*)) #"\.")) "/" view-name))))) ([view-name a1 a2 & body] (let [[methods args body] (if (map? a1) [a1 a2 body] [{} a1 (cons a2 body)])] `(~'re-view.core/defview ~view-name ~(assoc methods :render `(~'fn ~args (~'re-view.hiccup/element (do ~@body)))))))) (ns matross.test.helper "Helper functions for writing and running tests" (:require [me.raynes.conch :refer [with-programs]] [matross.connections.ssh :refer [translate-ssh-config ssh-connection]] [matross.connections.core :refer [connect disconnect]])) (defn get-available-vms [] (with-programs [vagrant grep cut] (cut "-f1" "-d " (vagrant "status" {:seq true}) {:seq true}))) (def vagrant-test-connection (memoize (fn [] (translate-ssh-config (slurp (System/getenv "TEST_SSH_CONF")))))) (defmacro task-tests "Evaluate the body against the test vm connection, exposed as conn" [conn & body] `(let [~conn (ssh-connection (vagrant-test-connection))] (connect ~conn) ~@body (disconnect ~conn))) (ns dna) (defn- strand-convert [ch] (cond (= \T ch) \U :else ch ) ) (defn to-rna [dna] (apply str (map strand-convert dna)) )(ns etcd-clojure.core-test (:require [clojure.test :refer :all] [etcd-clojure.core :as etcd])) (defn setup-test [] (etcd/connect! "http://127.0.0.1:4001")) (defn teardown-test [] (println "teardown")) (defn once-fixtures [f] (setup-test) (try (f) (finally (teardown-test)))) (use-fixtures :once once-fixtures) (deftest test-set (testing "should set a value" (is (= "bar" (get (etcd/set "foo" "bar") "value"))))) (deftest test-create (testing "should set a value" (is (= "bar" (get (etcd/create "foo" "bar") "value"))))) (deftest test-delete (testing "should delete a value" (etcd/set "foo" "bar") (is (= "DELETE" (get (etcd/delete "foo") "action"))))) (deftest test-get (testing "should get a value" (etcd/set "foo" "bar") (is (= "bar" (etcd/get "foo"))))) (ns tixi.mutators.delete (:require [tixi.data :as d] [tixi.mutators.shared :as msh] [tixi.mutators.locks :as ml] [tixi.mutators.undo :as mu] [tixi.items :as i])) (defn delete-items! [ids] (when (not-empty ids) (mu/snapshot!) (doseq [id ids] (ml/delete-from-locks! id (d/completed-item id)) (msh/update-state! update-in [:completed] dissoc id)))) (ns clj-ravendb.client-deleting-indexes-test (:require [clojure.test :refer :all] [clj-ravendb.client :refer :all] [clj-ravendb.requests :as req] [clj-ravendb.responses :as res] [clj-ravendb.config :refer :all])) (let [caching-client (client ravendb-url ravendb-database {:caching :aggressive :ssl-insecure? true :oauth-url oauth-url :api-key api-key}) client (client ravendb-url ravendb-database {:ssl-insecure? true :oauth-url oauth-url :api-key api-key})] (doseq [i ["test-index" "test-index2"]] (put-index! client {:index i :where [[:== :name "TestDocument"]] :select [:name]})) (deftest test-delete-index-returns-correct-status-code (testing "deleting an index returns the correct status code" (let [actual (delete-index! client "test-index") expected 204] (is (= expected (actual :status)))))) (deftest test-delete-index-returns-correct-status-code-when-using-caching-client (testing "deleting an index returns the correct status code" (let [actual (delete-index! caching-client "test-index2") expected 204] (is (= expected (actual :status))))))) ;;; ;;; Copyright 2015 Ruediger Gad ;;; ;;; This software is released under the terms of the Eclipse Public License ;;; (EPL) 1.0. You can find a copy of the EPL at: ;;; http://opensource.org/licenses/eclipse-1.0.php ;;; (ns ^{:author "Ruediger Gad", :doc "Helper that are primarily used during experiments"} dsbdp.experiment-helper (:require [clojure.walk :refer :all] [dsbdp.byte-array-conversion :refer :all])) (defmacro create-proc-fns [fn-1 fn-n n] (loop [fns (prewalk-replace {:idx 0} [fn-1])] (if (< (count fns) n) (recur (conj fns (prewalk-replace {:idx (count fns)} fn-n))) (do (println "proc-fns-full:" fns) fns)))) (defmacro create-no-op-proc-fns [n] `(create-proc-fns (fn [~'_ ~'_]) (fn [~'_ ~'_]) ~n)) (defmacro create-inc-proc-fns [n] `(create-proc-fns (fn [~'i ~'_] (inc ~'i)) (fn [~'_ ~'o] (inc ~'o)) ~n)) (ns selmer.node " Node protocol for the objects that get accum'd in the post-parse vector. Same vector that will be processed by the runtime context-aware renderer. Currently only TextNodes and FunctionNodes. Anything that requires action upon context map data at runtime is handled by a generated anonymous function. " (:gen-class)) ;; Generic INode protocol (defprotocol INode (render-node [this context-map] "Renders the context")) ;; Implements fn handler for the context map. fn handlers can ;; access any data in the context map. (deftype FunctionNode [handler] INode (render-node [this context-map] (handler context-map))) ;; Implements dumb text content injection at runtime. (deftype TextNode [text] INode (render-node [this context-map] text)) (ns clj-chess.ecn "Functions for reading chess games in ECN (extensible chess notation) format." (:require [clojure.edn :as edn] [clojure.java.io :as io]) (:import (java.io PushbackReader))) (defn reader "Convenience function for creating a java PushbackReader for the given file name. Why isn't this included in Clojure?" [filename] (PushbackReader. (io/reader filename))) (defn edn-seq "A lazy sequence of EDN objects in from the provided reader." [rdr] (when-let [game (edn/read rdr)] (cons game (lazy-seq (edn-seq rdr))))) (defn game-headers "Returns a lazy sequence of the game headers of an ECN file." [rdr] (map (comp rest second) (edn-seq rdr))) (defn games-in-file [ecn-file] (edn-seq (reader ecn-file))); vi: ft=clojure (set-env! :resource-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0"] [incanter "1.9.0"]]) (task-options! aot {:all true} pom {:project 'analyze-data :version "0.0.0"} jar {:main 'analyze-data.core}) (deftask build [] (comp (aot) (pom) (uber) (jar) (target))) (ns quil.helpers.applet-listener (:gen-class :name quil.helpers.AppletListener :main false :init init :state listeners :constructors {[java.util.Map] []} :methods [["dispose" [] java.lang.Void]])) (defn safe-call [fn] (when fn (fn))) (defn -init [listeners] [[] listeners]) (defn -dispose [this] (safe-call (:on-dispose (.listeners this))));; https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md {:provided {:dependencies [[djblue/portal "0.21.2"]]} :user {:plugins [[cider/cider-nrepl "0.27.4"] [lein-ancient "1.0.0-RC3"] [lein-check-namespace-decls "1.0.4"] [lein-cljfmt "0.8.0"] [lein-nsorg "0.3.0"] [nrepl "0.9.0"] [refactor-nrepl "3.1.0"]]} :dependencies [#_[alembic "0.3.2"] [antq "RELEASE"] [clj-kondo "RELEASE"]] :aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] "outdated" ["run" "-m" "antq.core"]}} (ns devsetup (:require [demo :as site] [runtests] [reagent.core :as r] [figwheel.client :as fw])) (defn test-results [] [runtests/test-output-mini]) (defn start! [] (demo/start! {:test-results test-results}) (runtests/run-tests)) (when r/is-client (fw/start {:websocket-url "ws://localhost:3449/figwheel-ws" :jsload-callback #(start!) :heads-up-display true :load-warninged-code false})) (start!) (ns ^{:doc "Functions dealing with making various forms of Midje output be ergonomically colorful."} midje.emission.colorize (:require [colorize.core :as color] [clojure.string :as str] [midje.config :as config]) (:use [midje.util.ecosystem :only [getenv on-windows?]])) (defn colorize-setting [] (config/choice :colorize)) (defn- colorize-config-as-str [] (let [setting-as-str (str (colorize-setting))] (when-not (str/blank? setting-as-str) setting-as-str))) (defn- colorize-choice [] (str/upper-case (or (getenv "MIDJE_COLORIZE") (colorize-config-as-str) (str (not (on-windows?)))))) (defn init! [] (case (colorize-choice) "TRUE" (do (def fail color/red) (def pass color/green) (def note color/cyan)) ("REVERSE" ":REVERSE") (do (def fail color/red-bg) (def pass color/green-bg) (def note color/cyan-bg)) (do (def fail str) (def pass str) (def note str)))) (ns themis.extended-protos (:require [themis.protocols :as protocols])) (extend-protocol protocols/Navigable clojure.lang.PersistentVector (-navigate [t coordinate-vec] (get-in t coordinate-vec)) clojure.lang.IPersistentMap (-navigate [t coordinate-vec] (get-in t coordinate-vec))) (ns madouc.db (:require [mount.core :refer [defstate]] [conman.core :as conman] [madouc.config :refer [env]])) (defn- make-pool-spec [host db user pass] {:jdbc-url (format "jdbc:postgresql://%s/%s" host db) :username user :password pass}) (defstate con :start (conman/connect! (make-pool-spec (env :db-host) (env :db-name) (env :db-user) (env :db-password))) :stop (conman/disconnect! con)) (ns hyphen-keeper.db "Persistence for the hyphenation dictionary" (:require [yesql.core :refer [defqueries]])) (def ^:private db "jdbc:mysql://localhost:3306/hyphenation?user=hyphenation&serverTimezone=UTC") (defqueries "hyphen_keeper/queries.sql" {:connection db}) (defn read-words "Return a coll of words for given `spelling`" [spelling] (-> {:spelling spelling} words)) (defn read-words-paginated "Return a coll of words for given `spelling` using `max-rows` and `offset` for pagination" [spelling offset max-rows] (-> {:spelling spelling :max_rows max-rows :offset offset} words-paginated)) (defn search-words "Return a coll of words for given `spelling` and given `search` term" [spelling search] (-> {:spelling spelling :search search} words-search)) (defn save-word! "Persist `word` with given `hyphenation` and `spelling`" [word hyphenation spelling] (-> {:word word :hyphenation hyphenation :spelling spelling} save-word-internal!)) (defn remove-word! [word spelling] (-> {:word word :spelling spelling} remove-word-internal!)) (defproject debugging "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://github.com/funcool/catacumba" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0-RC1"] [funcool/catacumba "0.1.0-alpha2"] [prone "0.8.1"]] :main ^:skip-aot debugging.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns clj-git.test.core-test (:require [clojure.java.io :as io] [clojure.test :refer :all]) (:require [clj-git.core :as git] :reload-all)) (def es-src-dir (-> "clj_git" io/resource io/file .getParent (io/file "elasticsearch-src") .getCanonicalPath)) (defn maybe-prep-repo [dir] (if (.exists (io/file dir ".git")) (do (print "Elasticsearch source already cloned. Pulling...") (flush) (git/git-pull (git/load-repo dir))) (do (print "Elasticsearch source missing. Cloning...") (flush) (git/git-clone dir "https://github.com/elastic/elasticsearch.git"))) (println " Done.")) (deftest parse-commit (maybe-prep-repo es-src-dir) (time (testing "the first thousand commits can parse" (is (= 1000 (->> es-src-dir git/load-repo git/git-log (take 1000) count)))))) (def scenes [{:subject "Frankie" :action "say" :object "relax"} {:subject "Lucy" :action "❤s" :object "Clojure"} {:subject "Rich" :action "tries" :object "a new conditioner"}]) (println "People:" (->> scenes (map :subject) (interpose ", ") (reduce str))) ;;=> People: Frankie, Lucy, Rich (defproject io.nervous/hildebrand "0.2.1" :description "High-level, asynchronous AWS client library" :url "https://github.com/nervous-systems/hildebrand" :License {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"} :scm {:name "git" :url "https://github.com/nervous-systems/hildebrand"} :deploy-repositories [["clojars" {:creds :gpg}]] :signing {:gpg-key "moe@nervous.io"} :global-vars {*warn-on-reflection* true} :source-paths ["src" "test"] :plugins [[codox "0.8.11"]] :codox {:include [hildebrand] :defaults {:doc/format :markdown}} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [io.nervous/eulalie "0.1.1-SNAPSHOT"] [io.nervous/glossop "0.1.0-SNAPSHOT"] [prismatic/plumbing "0.4.1"]] :exclusions [[org.clojure/clojure]]) (defproject onyx-app/lein-template "0.12.0.0-beta1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns devcards.discuss.utils (:require [discuss.communication.auth :as auth] [sablono.core :as html :refer-macros [html]])) (def shortcuts (html [:div.btn.btn-primary {:onClick #(auth/login "Christian" "iamgroot")} "Login"])) (ns user (:refer-clojure :exclude [dec < range <= min long int > - time / >= inc + max complement atom]) (:require [tick.alpha.api :refer :all] ;;[tick.deprecated.cal :refer [holidays-in-england-and-wales weekend?]] [tick.viz :refer [show-canvas view label]] ;;[tick.deprecated.schedule :as sch :refer [schedule]] [clojure.spec.alpha :as s] clojure.test) (:import [java.time DayOfWeek])) (defn test-all [] (require 'tick.alpha.api-test 'tick.core-test 'tick.interval-test) (clojure.test/run-all-tests #"(tick).*test$")) (ns comic-reader.scrape (:require [clojure.string :as s] [net.cgrand.enlive-html :as html]) (:import java.net.URL)) (defn fetch-url [url] (html/html-resource (URL. url))) (defn extract-list [html selector normalize] (map normalize (html/select html selector))) (defn fetch-list [{:keys [url selector normalize]}] (when (every? (complement nil?) [url selector normalize]) (extract-list (fetch-url url) selector normalize))) (defn enlive->hiccup [{:keys [tag attrs content]}] (if (nil? content) [tag attrs] [tag attrs content])) (defn clean-image-tag [[tag attrs & content]] [tag (select-keys attrs [:alt :src])]) (defn extract-image-tag [html selector] (some-> html (html/select selector) seq first enlive->hiccup clean-image-tag)) (defn fetch-image-tag [{:keys [url selector]}] (when (every? (complement nil?) [url selector]) (-> (fetch-url url) (extract-image-tag selector)))) (ns hu.ssh.github-changelog (:require [environ.core :refer [env]] [tentacles.core :as core] [tentacles.repos :as repos] [tentacles.pulls :as pulls] [clj-semver.core :as semver])) (defn repo "Gets the repository from its name" ([name] (repo "pro" name)) ([org repo] [org repo])) (defn parse-semver "Checks for semantic versions with or without v predicate" [tag] (let [version (:name tag) parse #(try (semver/parse %) (catch java.lang.AssertionError _e nil))] (if (= \v (first version)) (parse (apply str (rest version))) (parse version)))) (defn changelog "Fetches the changelog" [user repo] (let [tags (delay (map #(assoc % :version (parse-semver %)) (repos/tags user repo))) pulls (delay (pulls/pulls user repo {:state "closed"})) commits (delay (repos/commits user repo))] (println (first @tags)))) (core/with-defaults {:oauth-token (env :github-token) :all_pages true} (changelog "raszi" "node-tmp")) (ns buildviz.main (:require [buildviz.build-results :as results] [buildviz.handler :as handler] [buildviz.http :as http] [buildviz.storage :as storage])) (def jobs-filename "buildviz_jobs") (def tests-filename "buildviz_tests") (defn- persist-jobs! [build-data] (storage/store! build-data jobs-filename)) (defn- persist-tests! [tests-data] (storage/store! tests-data tests-filename)) (def app (let [builds (storage/load-from-file jobs-filename) tests (storage/load-from-file tests-filename)] (-> (handler/create-app (results/build-results builds tests) persist-jobs! persist-tests!) http/wrap-log-request http/wrap-log-errors))) (ns clojars.test.unit.certs (:require [clojure.test :refer :all])) (def sixty-days (* 86400 1000 60)) (deftest fail-when-gpg-key-is-about-to-expire (let [expire-date #inst "2017-09-04T00:00:00.000-00:00"] (is (< (System/currentTimeMillis) (- (.getTime expire-date) sixty-days)) (format "Security GPG key expires on %s" expire-date)))) (deftest fail-when-tls-cert-is-about-to-expire (let [expire-date #inst "2016-08-12T00:00:00.000-00:00"] (is (< (System/currentTimeMillis) (- (.getTime expire-date) sixty-days)) (format "clojars.org TLS cert expires on %s" expire-date)))) (ns radicalzephyr.boot-junit {:boot/export-tasks true} (:require [boot.core :as core]) (:import org.junit.runner.JUnitCore)) (defn failure->map [failure] {:description (.. failure (getDescription) (toString)) :exception (.getException failure) :message (.getMessage failure)}) (defn result->map [result] {:successful? (.wasSuccessful result) :run-time (.getRunTime result) :run (.getRunCount result) :ignored (.getIgnoredCount result) :failed (.getFailureCount result) :failures (map failure->map (.getFailures result))}) (core/deftask junit "Run the jUnit test runner." [p packages PACKAGE #{sym} "The set of Java packages to run tests in."] (core/with-pre-wrap fileset (let [result (JUnitCore/runClasses (into-array Class [#_ (magic goes here to find all test classes)]))] (when (> (.getFailureCount result) 0) (throw (ex-info "There were some test failures." (result->map result))))) fileset)) (ns wort.handler (:require [compojure.core :refer :all] [compojure.route :as route] [ring.util.response :as resp] [wort.core :as core] [ring.middleware.defaults :refer [wrap-defaults site-defaults]])) (defroutes app-routes (GET "/" [] (resp/content-type (resp/resource-response "index.html" {:root "public"}) "text/html")) (GET "/sound" [] (resp/response "../resources/a-team_crazy_fool_x.wav")) (route/resources "/") (route/not-found "Not Found")) (def app (wrap-defaults app-routes site-defaults)) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.7.0"] [ring "1.4.0"] [compojure "1.4.0"] [clj-time "0.11.0"] [org.clojure/data.json "0.2.6"] [org.clojure/tools.cli "0.3.3"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject quil/processing-js "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"}) (defproject buddy/buddy-sign "0.7.1" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [buddy/buddy-core "0.8.0"] [com.taoensso/nippy "2.10.0"] [funcool/cats "1.0.0"] [clj-time "0.11.0"] [cheshire "5.5.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject cli4clj "1.2.3" ;(defproject cli4clj "1.2.3-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.12.0"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.1.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.2" :exclusions [org.clojure/clojure]]]}} ) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.1"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.11.0"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) {:name "rnaseq-phase0-b", :path "", :graph {:strtscratch {:type "func" :name "start-scratch-space" :args ["#1"]} :bcstats {:type "func" :name "collect-barcode-stats"} :wrtstats {:type "func" :name "write-bcmaps"} :setexp {:type "func" :name "set-exp"} :split-filter {:type "func" :name "split-filter-fastqs"} :coll {:type "func" :name "collapser"} :mail {:type "func" :name "mailit" :args ["#2" ; recipient "Aerobio job status: tnseq phase-0b" "Finished"]} ; subject, body intro :edges {:strtscratch [:bcstats] :bcstats [:wrtstats] :wrtstats [:setexp] :setexp [:split-filter] :split-filter [:coll] :coll [:mail]}} :description "Tn-Seq w/o bcl2fastq - start-scratch-space through barcode stats and filter/splitter. Using (prebuilt) fastq files creates scratch space for fastq file processing, copies fastqs to canonical dir in scratch area, collects barcode and NT stats, then writes that to canonical area, sets the experiments db value, splits and filters fastqs by replicates and lastly collapses those fqs." } (ns fivethreeonern.sqlite (:require [mount.core :refer-macros [defstate]])) (def node-module (js/require "react-native-sqlite-storage")) (defstate sqlite :start (.openDatabase node-module #js {:name "531.db" :location "default"} #(js/console.log "sql ok") #(js/console.log "sql error"))) (defn execute-sql [tx final-cb [query & other-queries]] (.executeSql tx query #js [] (fn [tx results] (if (empty? other-queries) (let [results (-> results .-rows .raw js->clj)] (final-cb results)) (execute-sql tx final-cb other-queries))))) (defn transaction [query-strings final-cb] (.transaction @sqlite (fn [tx] (execute-sql tx final-cb query-strings)))) (defn query [query-str cb] (transaction [query-str] cb)) (ns robb1e.web (:require [compojure.core :refer [defroutes]] [ring.adapter.jetty :as container] [compojure.handler :as handler] [compojure.route :as route] [robb1e.controllers.home :as homeController]) (:gen-class)) (defroutes routes (homeController/routes "postgresql://localhost:5432/robb1e") (route/resources "/")) (def application (handler/site routes)) (defn start [port] (container/run-jetty application {:port port :join? false})) (defn -main [] (start 8080)) ;; Copyright (C) 2013 Anders Sundman ;; ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU Affero General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU Affero General Public License for more details. ;; ;; You should have received a copy of the GNU Affero General Public License ;; along with this program. If not, see . (ns spira.core.util) (defn uuid [] "Create a GUID string." (str (java.util.UUID/randomUUID))) (defn parse-uint [s] "a2uint" (Integer. (re-find #"\d+" s ))) (defn find-first [f coll] "Get first item in a seq matching a predicate." (first (filter f coll))) (ns memoria.handlers.app (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.params :refer [wrap-params]] [ring.middleware.json :refer [wrap-json-response wrap-json-body]] [taoensso.timbre :as timbre] [memoria.db :as db] [memoria.handlers.cards :as cards-handler])) (defn wrap-request-logging [app] (fn [request] (timbre/info (str "Received request: " request)) (let [response (app request)] (timbre/info (str "Response: " response "\n")) response))) (defn wrap-db-conn [app] (fn [request] (let [datasource (if (= "test" (get-in request [:headers "memoria-mode"])) (db/test-datasource) (db/datasource))] (binding [db/*conn* datasource] (app request))))) (defroutes app-routes cards-handler/cards-routes) (def app (-> app-routes wrap-params wrap-json-body wrap-json-response wrap-db-conn wrap-request-logging)) (defproject simple "lein-git-inject/version" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library org.clojure/google-closure-library-third-party]] [thheller/shadow-cljs "2.8.76"] [reagent "0.9.0-rc2"] [re-frame "0.11.0-rc2"]] :plugins [[day8/lein-git-inject "0.0.2"] [lein-shadow "0.1.6"]] :middleware [leiningen.git-inject/middleware] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) ;; For repl. ;; Sample arb doc in edn ;; ;; [{:arb/metadata [{:html-tag :body}] ;; :arb/value [{:arb/metadata [{:html-tag :h1}] ;; :arb/value [{:text "Title"}]} ;; {:arb/metadata [{:html-tag :p}] ;; :arb/value [{:text "This is a paragraph."}]}]}] (require '[clojure.core.async :refer [%s, автор (%s голосов)" (:link p) (:title p) (:author p) (:fav-count p)))) (defn print-favorites [since-date] (let [all-posts (posts/fetch-aw-posts #(is-more-recent since-date %))] (dorun (take 15 (map print-post (sort-by #(Integer/parseInt (:fav-count %)) #(compare %2 %1) all-posts)))) )) (defn print-favorites-of-month [] ;; print favs with dates more recent than month ago (print-favorites (t/minus (t/today-at 0 0) (t/months 1)))) ;;(print-favorites-of-month) (defproject todomvc-re-frame "0.11.0-rc2-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.52"] [reagent "0.9.0-rc1"] [re-frame "0.11.0-rc2-SNAPSHOT"] [binaryage/devtools "0.9.10"] [clj-commons/secretary "1.2.4"] [day8.re-frame/tracing "0.5.3"]] :plugins [[lein-shadow "0.1.5"]] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn todomvc.core/main}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (ns theatralia.core (:require [goog.dom :as gdom] [om.core :as om :include-macros true] [om.dom :as dom :include-macros true])) ;;; Credits: https://github.com/swannodette/om (enable-console-print!) (println "Hello world!") (defn widget [data owner] (reify om/IRender (render [this] (dom/h1 nil (:text data))))) (om/root widget {:text "Hello world!"} {:target (. js/document (getElementById "app"))}) { ;; inf-clojure support :jvm-opts ["-Dclojure.server.repl={:port 5555 :accept clojure.core.server/repl}"] ;; for all that repl goodness :user { :dependencies [[org.clojure/tools.namespace "0.3.0-alpha4"] [eftest "0.5.1"]] :plugins [[lein-cljfmt "0.4.1" :exclusions [org.clojure/clojure]] [lein-cloverage "1.0.6" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.10", :exclusions [org.clojure/clojure]]]} } (ns onyx.plugin.mysql "Implementation of MySQL-specific utility functions." (:require [honeysql.core :as hsql] [honeysql.format :as hformat])) (defn upsert "Using honeysql-postgres, construct a SQL string to do upserts with Postgres. We expect the key in the 'where' map to be a primary key." [table row where] (hsql/format {:insert-into table :values [(merge where row)] :on-duplicate-key-update row})) (defmethod hformat/format-clause :on-duplicate-key-update [[_ values] _] (str "ON DUPLICATE KEY UPDATE " (hformat/comma-join (for [[k v] values] (str (hformat/to-sql k) " = " (hformat/to-sql v)))))) (hformat/register-clause! :on-duplicate-key-update 225) (ns territory-bro.handler-test (:require [clojure.test :refer :all] [ring.mock.request :refer :all] [territory-bro.handler :refer :all])) (deftest test-app (testing "main route" (let [response (app (request :get "/"))] (is (= 200 (:status response))))) (testing "not-found route" (let [response (app (request :get "/invalid"))] (is (= 404 (:status response)))))) (use 'figwheel-sidecar.repl-api) (start-figwheel!) ;; <-- fetches configuration (cljs-repl)(ns bltool.data.steam (:require [bltool.data.default :refer [read-games]]) (:require [bltool.flags :refer :all]) (:require [clj-http.client :as http]) (:require [clojure.data.xml :as xml]) (:require [clojure.string :refer [trim]])) (register-flags ["--steam-name" "Steam Community name"] ["--steam-platform" "Default platform to use for Steam games (recommended: PC, PCDL, or Steam)" :default "PC"]) (defn- xml-to-map [tag] (let [tag-content (fn [tag] [(:tag tag) (apply str (:content tag))])] (into {} (map tag-content (:content tag))))) (defmethod read-games "steam" [_] (let [name (:steam-name *opts*) url (str "http://steamcommunity.com/id/" name "/games?tab=all&xml=1")] (->> url http/get :body xml/parse-str xml-seq (filter #(= :game (:tag %))) (map (comp trim :name xml-to-map)) sort (map (fn [name] { :id "0" :name name :platform (:steam-platform *opts*) :progress "unplayed" }))))) (defproject funcool/promesa "0.5.0-SNAPSHOT" :description "A promise library for ClojureScript" :url "https://github.com/funcool/promesa" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.48" :scope "provided"] [funcool/cats "1.0.0-SNAPSHOT"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api"} :plugins [[funcool/codeina "0.3.0"] [lein-externs "0.1.3"]]) (defproject io.atomix/trinity "1.0.0-SNAPSHOT" :description "A sweet little Clojure API for Atomix" :url "http://github.com/atomix/trinity" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [io.atomix/atomix-all "1.0.1-SNAPSHOT"] [io.atomix.catalyst/catalyst-netty "1.1.2"]] :repositories [["sonatype-nexus-snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"}]] :plugins [[lein-codox "0.9.0"] [lein-localrepo "0.5.3"]] :codox {:output-path "target/docs/api" :metadata {:doc/format :markdown} :source-uri "http://github.com/atomix/trinity/blob/master/{filepath}#L{line}"}) (defproject hatnik/tools.backup "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [com.google.apis/google-api-services-storage "v1beta2-rev43-1.18.0-rc"] [com.google.http-client/google-http-client-jackson2 "1.17.0-rc"] [com.google.oauth-client/google-oauth-client-jetty "1.17.0-rc"]] :main hatnik.tools.backup :aot :all) (ns metabase.models.label (:require [korma.core :as k] [metabase.db :as db] [metabase.models.interface :as i] [metabase.util :as u])) (i/defentity Label :label) (defn- pre-insert [{label-name :name, :as label}] (assoc label :slug (u/slugify label-name))) (defn- pre-update [{label-name :name, :as label}] (if-not label-name label (assoc label :slug (u/slugify label-name)))) (defn- pre-cascade-delete [{:keys [id]}] (db/cascade-delete 'CardLabel :label_id id)) (u/strict-extend (class Label) i/IEntity (merge i/IEntityDefaults {:can-read? (constantly true) :can-write? (constantly true) :pre-insert pre-insert :pre-update pre-update :pre-cascade-delete pre-cascade-delete})) (ns ^:figwheel-always sidequarter-frontend.api (:require-macros [sidequarter-frontend.env :refer [cljs-env]] [cljs.core.async.macros :refer [go]]) (:require [cljs-http.client :as http] [cljs.core.async :refer [! put! chan]])) (def api-url (cljs-env :api-url)) (defn get-sidekiqs [] (http/jsonp api-url {:callback-name "callback"})) (ns five-three-one.server (:require [five-three-one.handler :refer [app]] [environ.core :refer [env]] [ring.adapter.jetty :refer [run-jetty]] [five-three-one.model.migration :refer [migrate]]) (:gen-class)) (defn -main [& args] (let [port (Integer/parseInt (or (env :port) "3000"))] (migrate) (run-jetty app {:port port :join? false}))) (ns ktra-indexer.config "Namespace for configuration reading functions" (:require [clojure.edn :as edn])) (defn load-config "Given a filename, load and return a config file." [filename] (edn/read-string (slurp filename))) (defn get-conf-value "Return a key value from the configuration." [property & {:keys [k use-sample] :or {k nil use-sample false}}] (let [config (load-config (clojure.java.io/resource (if use-sample "config.edn_sample" "config.edn")))] (if k (k (property config)) (property config)))) (defn db-conf "Returns the value of the requested database configuration key" [k & [use-sample]] (get-conf-value :database :k k :use-sample use-sample)) (ns kolmogorov-music.test.kolmogorov (:require [kolmogorov-music.kolmogorov :as kolmogorov] [midje.sweet :refer :all])) (defn foo [x] (inc x)) (def bar (comp foo foo)) (fact "Kolmogorov complexity is how many symbols a definition comprises." (kolmogorov/complexity foo) => 2) (fact "The symbol count is recursive within the current namespace." (kolmogorov/complexity bar) => 7) (fact "Symbols outside the current namespace are considered atoms." (kolmogorov/complexity inc) => 0) (ns clj-record.test.serialization-test (:require [clj-record.test.model.manufacturer :as manufacturer] [clj-record.test.model.product :as product]) (:use clojure.contrib.test-is clj-record.test.test-helper)) (defdbtest serialized-attributes-support-common-clojure-types (let [record (manufacturer/create valid-manufacturer)] (are (= (do (manufacturer/update (assoc record :name _1)) _1) ((manufacturer/get-record (record :id)) :name)) "some string" ; Cheating? This passes without serialization implemented. ))) (defproject simple "0.11.0-rc2-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.52"] [reagent "0.9.0-rc1"] [re-frame "0.11.0-rc2-SNAPSHOT"]] :plugins [[lein-shadow "0.1.5"]] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (ns user "Namespace to support hacking at the REPL." (:require [clojure.main] [clojure.string :as str] [clojure.tools.namespace.move :refer :all] [clojure.tools.namespace.repl :refer :all] [midje.repl :refer :all])) ;;;; ___________________________________________________________________________ ;;;; Require the standard REPL utils. ;;;; ;;;; This is useful in a `dev` namespace, and is needed in a `user` namespace ;;;; because the requires get blatted by `tnr/refresh` and `reset`. (apply require clojure.main/repl-requires) ;;;; ___________________________________________________________________________ ;;;; ---- u-classpath ---- (defn u-classpath [] (str/split (System/getProperty "java.class.path") #":")) ;;;; ___________________________________________________________________________ ;;;; ---- u-move-ns-dev-src-test ---- (defn u-move-ns-dev-src-test [old-sym new-sym source-path] (move-ns old-sym new-sym source-path ["dev" "src" "test"])) ;;;; ___________________________________________________________________________ ;;;; App-specific additional utilities for the REPL or command line (comment (do (autotest :stop) (autotest :filter (complement :slow))) ) (ns hydrant.core-test (:require [clojure.test :refer :all] [hydrant.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. (ns containium.systems.elasticsearch (:require [containium.systems :refer (require-system)] [containium.systems.config :refer (Config get-config)]) (:import [containium.systems Startable Stoppable] [org.elasticsearch.node Node NodeBuilder])) ;;; The public API for Elastic systems. (defprotocol Elastic (whut? [this])) ;;--- FIXME: What would be a good API for Elastic? ;;; The embedded implementation. (defrecord EmbeddedElastic [^ Node node] Elastic (whut? [_]) Stoppable (stop [_] (println "Stopping embedded ElasticSearch node...") (.close node) (println "Embedded ElasticSearch node stopped."))) (def embedded (reify Startable (start [_ systems] (let [config (get-config (require-system Config systems) :elastic) _ (println "Starting embedded ElasticSearch node, using config" config "...") node (.node (NodeBuilder/nodeBuilder))] (println "Embedded ElasticSearsch node started.") (EmbeddedElastic. node))))) (defproject ring/ring-core "0.2.5" :description "Ring core libraries." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.1.0"] [commons-codec "1.4"] [commons-io "1.4"] [commons-fileupload "1.2.1"] [javax.servlet/servlet-api "2.5"]] :dev-dependencies [[lein-clojars "0.5.0"]]) (ns event-planner.pages.events) (defn events-page [id] [:div "Wow my id is: " id]) (ns cljam.pileup.common) ;; TODO: estiamte from actual data (def ^:const window-width 1250) (def ^:const step 2000) (def ^:const center (int (/ step 2))) ;; routes.clj (ns beebster-clj.routes (:use beebster-clj.core beebster-clj.views compojure.core) (:require [compojure.handler :as handler] [compojure.route :as route])) (defroutes app-routes (route/resources "/") (GET "/" [] (index-page)) (GET "/search" [] (about-page)) (GET "/categories" [category] (category-page category)) (POST "/results" [searchvalue] (result-page searchvalue)) (GET "/info" [index] (info-page index)) (ANY "/download" [index mode] (download-page index mode))) (def app (handler/site app-routes)) (defproject net.uncontended/beehive "0.5.2-SNAPSHOT" :description "Beehive is a Clojure facade for the Precipice library." :url "https://github.com/tbrooks8/Beehive" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :signing {:gpg-key "tim@uncontended.net"} :profiles {:dev {:dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"] [clj-http "1.0.1"] [criterium "0.4.3"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [net.uncontended/precipice-core "0.5.1"]]) (defproject org.onyxplatform/onyx-sql "0.7.3-SNAPSHOT" :description "Onyx plugin for JDBC-backed SQL databases" :url "https://github.com/MichaelDrogalis/onyx-sql" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/java.jdbc "0.3.3"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150901_140443-g6e4750b"] [java-jdbc/dsl "0.1.3"] [com.mchange/c3p0 "0.9.2.1"] [honeysql "0.5.1"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [environ "1.0.0"] [mysql/mysql-connector-java "5.1.25"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject lein-jshint "0.1.6-SNAPSHOT" :description "A Leiningen plugin for running JS code through JSHint." :url "https://github.com/vbauer/lein-jshint" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[clj-glob "1.0.0" :exclusions [org.clojure/clojure]] [lein-npm "0.4.0" :exclusions [org.clojure/clojure]]] :plugins [[jonase/eastwood "0.1.4" :exclusions [org.clojure/clojure]] [lein-release "1.0.6" :exclusions [org.clojure/clojure]] [lein-kibit "0.0.8" :exclusions [org.clojure/clojure]] [lein-bikeshed "0.1.8" :exclusions [org.clojure/clojure]] [lein-ancient "0.5.5"]] :eval-in-leiningen true :pedantic? :abort :local-repo-classpath true :lein-release {:deploy-via :clojars :scm :git}) (defproject com.lemondronor/turboshrimp-h264j "0.2.2-SNAPSHOT" :description (str "An AR.Drone video decoder for the turboshrimp library " "that uses the h264j H.264 decoder.") :url "https://github.com/wiseman/turboshrimp-h264j" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT"} :deploy-repositories [["releases" :clojars]] :dependencies [[com.twilight/h264 "0.0.1"] [org.clojure/clojure "1.6.0"]] :profiles {:test {:dependencies [[com.lemondronor/turboshrimp "0.3.2"]] :resource-paths ["test-resources"]} :dev {:dependencies [[com.lemondronor/turboshrimp "0.3.2"] [com.lemonodor/gflags "0.7.1"]] :plugins [[lein-cloverage "1.0.2"]] :source-paths ["examples"]}}) (defproject mars-ogler "0.0.1-SNAPSHOT" :description "Holy cow, it's Mars!" :url "http://github.com/aperiodic/mars-ogler" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [clj-time "0.4.4"] [compojure "1.1.1"] [hiccup "1.0.0"] [enlive "1.0.1"]] :plugins [[lein-ring "0.7.1"]] :ring {:handler mars-ogler.routes/handler}) (defproject lein-fore-prob "0.1.3-SNAPSHOT" :description "Leiningen plugin to populate a project from a 4clojure problem." :url "https://github.com/bfontaine/lein-fore-prob" :license {:name "Eclipse Public License" :url "https://www.eclipse.org/legal/epl-v10.html"} :dependencies [[clj-http "3.10.0"] [clj-soup/clojure-soup "0.1.3"]] :profiles {:dev {} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}} :aliases {"all" ["with-profile" "dev,1.8:dev,1.9:dev,1.10:dev"]} :eval-in-leiningen true :plugins [[lein-cloverage "1.0.2"]]) (defproject fault "0.1.0" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :profiles {:dev {:dependencies [[junit/junit "4.11"] [org.mockito/mockito-core "1.10.8"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [clj-http "1.0.1"]] :junit ["test/java"] :java-source-paths ["src/java" "test/java"] :plugins [[lein-junit "1.1.3"]] :junit-formatter "brief"}} :javac-target "1.7" :dependencies [[org.clojure/clojure "1.6.0"] [criterium "0.4.3"]] :source-paths ["src/clojure"] :java-source-paths ["src/java"]) (defproject org.onyxplatform/onyx-metrics "0.8.0.5" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject clj-ravendb "0.4.2-SNAPSHOT" :description "A Clojure library for consuming a RavenDB rest api." :url "https://github.com/markwoodhall/clj-ravendb" :license {:name "MIT License" :url "http://opensource.org/licenses/mit-license.php"} :plugins [[quickie "0.2.5"]] :dependencies [[org.clojure/clojure "1.5.1"] [clj-http "0.9.2"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [org.clojure/data.json "0.2.3"]] :deploy-repositories [ ["clojars" {:sign-releases false}] ] :scm {:name "github" :url "https://github.com/markwoodhall/clj-ravendb"}) (defproject cascade "0.2-SNAPSHOT" :description "Simple, fast, easy web applications in idiomatic Clojure" :url "http://github.com/hlship/cascade" :source-path "src/main/clojure" :resources-path "src/main/resources" :test-path "src/test/clojure" :dev-resources-path "src/test/resources" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/algo.monads "0.1.0"] [compojure "0.6.5"]] :dev-dependencies [[ring/ring-jetty-adapter "0.3.11"]]) (ns solver.core (:gen-class)) (defn create-grid ([] (create-grid 1000)) ([w] (create-grid w w)) ([w h] (let [row (vec (map (fn [x] false) (range w))) grid (vec (map (fn [x] row) (range h)))] grid))) (defn act-on ([f row a b] (let [low a high (+ b 1) difference (- high low)] (vec (concat (take low row) (map f (take difference (drop low row))) (drop high row))))) ([f grid a b c d] (let [low a high (+ c 1) difference (- high low) act-on-row (fn [row] (act-on f row b d))] (vec (concat (take low grid) (map act-on-row (take difference (drop low grid))) (drop high grid)))))) (defn -main "I don't do a whole lot ... yet." [& args] (println "Hello, World!")) (ns karmanaut.utils (:gen-class) (:require [clojure.java.io :as io]) (:import [java.util Calendar Date GregorianCalendar TimeZone])) (defn env [key default] (get (System/getenv) key default)) (defn version [] (if (.exists (io/as-file "project.clj")) (-> "project.clj" slurp read-string (nth 2)) (-> (eval 'karmanaut.utils) .getPackage .getImplementationVersion))) (defn utcnow [] (Date.)) (defn utcnow-midnight [] (let [tz (TimeZone/getTimeZone "UTC") c (GregorianCalendar. tz)] (doto c (.set Calendar/HOUR_OF_DAY 0) (.set Calendar/MINUTE 0) (.set Calendar/SECOND 0) (.set Calendar/MILLISECOND 0)) (.getTime c))) (defn long-to-date "Reddit timestamps are the number of seconds since the Unix epoch, in UTC." [epoch] (Date. (* 1000 (long epoch)))) (ns clstreams.examples.count-words.system (:require [clstreams.examples.count-words.pipelines :as pipelines] [clstreams.examples.count-words.webapi :as webapi] [com.stuartsierra.component :as component])) (defn count-words-system [] (component/system-map :pipeline (pipelines/count-words) :webapi (component/using (webapi/web-test) [:pipeline]))) (defproject jcf/lein-template "0.1.1-SNAPSHOT" :description "FIXME: write description" :url "https://github.com/jcf/lein-template" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :deploy-repositories [["releases" :clojars]] :eval-in-leiningen true :profiles {:dev {:dependencies [[me.raynes/fs "1.4.6"]]}}) (defproject dotenv "0.1.0" :description "dotenv: Load environment variables from .env file into the JVM System Properties" :url "https://github.com/primedia/clj-dotenv" :dependencies [ [org.clojure/clojure "1.5.1"] ;;[org.clojars.jackmorrill/dotenv "0.1.0"] [local/dotenv.core "0.1.0"] ;;[org.clojars.jackmorrill/environs "0.1.0"] [local/environs.core "0.1.0"] ] :repositories {"project" "file:repo"}) (ns bogo-clojure.core (:gen-class) (:require [clojure.string :as string] [bogo-clojure.bg-word :refer :all] [bogo-clojure.bg-telex :refer :all])) (defn get-action ;; Action is a function taking in current string, make transform, ;; return the new string [key typemode] (if (contains? typemode key) (get typemode key) :addchar)) (defn process-key ([astring key] (process-key astring key TELEX)) ([astring key typemode] (let [[first-word last-word] (grammar-split-word astring) action (get-action key typemode)] (str first-word (if (fn? action) (action last-word) (str last-word key)))))) (defn process-sequence ([sequence] (process-sequence sequence TELEX)) ([sequence typemode] (reduce (fn [word key] (process-key word (str key) typemode)) "" sequence))) (ns cljs-workers.test (:require [cljs-workers.core :as main] [cljs-workers.worker :as worker])) (defn app [] (let [worker-pool (main/create-pool 2 "js/worker/worker.js")] (main/do-with-pool! worker-pool {:handler :mirror, :arguments {:a "Hallo" :b "Welt" :c 10}} #(.debug js/console %)) (main/do-with-pool! worker-pool {:handler :mirror, :arguments {:a "Hallo" :b "Welt" :c 10 :d (js/ArrayBuffer. 10) :transfer [:d]} :transfer [:d]} #(.debug js/console %)) (main/do-with-pool! worker-pool {:handler :mirror, :arguments {:a "Hallo" :b "Welt" :c 10 :d (js/ArrayBuffer. 10) :transfer [:d]} :transfer [:c]} #(.debug js/console %)) (main/do-with-pool! worker-pool {:handler :mirror, :arguments {:a "Hallo" :b "Welt" :c 10 :d (js/ArrayBuffer. 10) :transfer [:c]} :transfer [:d]} #(.debug js/console %)))) (defn worker [] (worker/register :mirror (fn [arguments] arguments)) (worker/bootstrap)) (if (and (main/supported?) (main/main?)) (app) (worker)) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.services.core) (def +hierarchy+ (as-> (make-hierarchy) $ (derive $ :auth/login :command))) (defmulti -novelty (fn [conn data] (:type data)) :hierarchy #'+hierarchy+) (defmulti -query (fn [conn data] (:type data)) :hierarchy #'+hierarchy+) (defmethod -novelty :default [data] (throw (ex-info "Not implemented" {}))) (defmethod -query :default [data] (throw (ex-info "Not implemented" {}))) (ns io.aviso.rook.utils "Kitchen-sink of useful standalone utilities." (:import (java.util UUID)) (:use [clojure.core.async :only [go >!]]) (:require [clojure.pprint :as pprint])) (defn new-uuid "Generates a new UUID string, via UUIDrandomUUID." [] (-> (UUID/randomUUID) .toString)) (defn response "Construct Ring response for success or other status." ([body] (response 200 body)) ([status body] {:status status :body body})) (defn pretty-print "Pretty-prints the supplied object to a returned string." [object] (pprint/write object :stream nil :pretty true)) (defmacro try-go "Wraps the body in a go block and a try block. The try block will catch any throwable and put it into the exception channel. This allow a failure to be communicated out of an asynchronous process and back to some originator that can report it, or attempt recovery." [exception-ch & body] `(let [ch# ~exception-ch] (go (try ~@body (catch Throwable t# (>! ch# t#) ;; Re-throw the exception; that's the only way to get out of the go block ;; without returning a value. (throw t#))))))(ns circle.backend.build.test-run-build (:use midje.sweet) (:use [circle.backend.build.test-utils :only (minimal-build)]) (:use [circle.backend.action :only (defaction)]) (:use [circle.backend.build :only (build successful?)]) (:use [circle.backend.build.run :only (run-build)]) (:use [circle.util.predicates :only (ref?)])) (circle.db/init) (defaction successful-action [act-name] {:name act-name} (fn [build] nil)) (defn successful-build [] (build {:project-name "succesful build" :build-num 1 :vcs-url "git@github.com:foo/bar.git" :vcs-revision "f00b4r" :actions [(successful-action "1") (successful-action "2") (successful-action "3")]})) (fact "successful build is successful" (let [build (run-build (successful-build))] build => ref? @build => map? (-> @build :action-results) => seq (-> @build :action-results (count)) => 3 (for [res (-> @build :action-results)] (> (-> res :stop-time) (-> res :start-time)) => true) (successful? build) => truthy))(ns metrics.core (:import [com.codahale.metrics MetricRegistry Metric])) (def ^{:tag "MetricRegistry" :doc "Default registry used by public API functions when no explicit registry argument is given"} default-registry (MetricRegistry.)) (defn ^MetricRegistry new-registry [] (MetricRegistry.)) (defn ^String metric-name [title] (if (string? title) (MetricRegistry/name "default" ^"[Ljava.lang.String;" (into-array String ["default" ^String title])) (MetricRegistry/name ^String (first title) ^"[Ljava.lang.String;" (into-array String [(second title) (last title)])))) (defn add-metric "Add a metric with the given title." ([title ^Metric metric] (add-metric default-registry title metric)) ([^MetricRegistry reg title ^Metric metric] (.register reg (metric-name title) metric))) (defn remove-metric "Remove the metric with the given title." ([title] (remove-metric default-registry title)) ([^MetricRegistry reg title] (.remove reg (metric-name title)))) (defn replace-metric "Replace a metric with the given title." ([title ^Metric metric] (replace-metric default-registry title metric)) ([^MetricRegistry reg title ^Metric metric] (remove-metric reg (metric-name title)) (add-metric reg (metric-name title) metric))) interfaces { restore-original-config-on-shutdown: false interface eth0 { description: "Internal pNodes interface" disable: false default-system-config } } protocols { igmp { disable: false interface eth0 { vif eth0 { disable: false version: 3 } } traceoptions { flag all { disable: false } } } } ;; Licensed to the Apache Software Foundation (ASF) under one ;; or more contributor license agreements. See the NOTICE file ;; distributed with this work for additional information ;; regarding copyright ownership. The ASF licenses this file ;; to you 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 ;; ;; Unless required by applicable law or agreed to in writing, ;; software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ;; KIND, either express or implied. See the License for the ;; specific language governing permissions and limitations ;; under the License. (ns chaintool.build.core (:require [chaintool.build.golang :as golang]) (:refer-clojure :exclude [compile])) (defn compile [params] ;; generate golang output (shim, protobufs, etc) ;; FIXME: we need to switch on the Platform type (golang/compile params)) (defproject {{raw-name}} "0.1.0-SNAPSHOT" :description "FIXME: Write a description." :url "FIXME: Add a URL." :scm {:name "git" :url "FIXME: Add a URL."} :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :main {{namespace}}.site :source-paths ["src/main/clj" "src/main/cljs"] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2850"] [aviary "0.1.6"] [enlive "1.1.5"] [garden "1.2.5"]] :profiles {:dev {:source-paths ["src/dev/clj" "src/dev/cljs"] :dependencies [[weasel "0.5.0"] [com.cemerick/piggieback "0.1.5"]] :repl-options {:init ({{namespace}}.dev/start-dev) :init-ns {{namespace}}.dev :nrepl-middleware [cemerick.piggieback/wrap-cljs-repl]}}} :aliases {"ship" ["run" ":ship"] "export" ["run" ":export"]}) (ns aspire.core-test (:require [clojure.test :refer :all] [aspire.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (deftest pass-test (testing "I pass" (is (= 1 1)))) (set-env! :source-paths #{"src/main/java"} :test-paths #{"src/test/java"} :dependencies '[[junit "4.12" :scope "test"]]) (def +version+ "0.1.0") (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}}) (require 'clojure.set) (deftask junit "Run the jUnit test runner." [] (set-env! :source-paths #(clojure.set/union % (get-env :test-paths))) (with-pre-wrap fileset fileset)) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns backend.boot {:boot/export-tasks true} (:require [boot.core :refer :all] [reloaded.repl :refer [go]] [backend.main :refer :all])) (deftask start-app [p port PORT int "Port"] (let [x (atom nil)] (with-pre-wrap fileset (swap! x (fn [x] (if x x (do (setup-app! {:port port}) (go))))) fileset))) (ns user (:use io.aviso.repl clojure.pprint) (:require [clojure.tools.logging :as l])) (install-pretty-exceptions) (defmacro other-thread [& body] `(.start (Thread. (bound-fn [] ~@body)))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;;;; Development settings. {:config {:cassandra {:config-file "cassandra.yaml"} :kafka {:port "9090" :broker-id "1" :log-dir "target/kafka-log" :zk-connect "localhost:2181"} :http-kit {:port 8080}} :modules [] :resolve-dependencies true} (ns leiningen.difftest (:require [leiningen.test :as test])) (defn difftest [project & args] (apply test/test (-> project (update-in [:injections] conj '((ns-resolve (doto 'difftest.core require) 'activate))) (update-in [:dependencies] into {'difftest "1.3.8"})) args))(defproject clik-clak-joe "0.1.0-SNAPSHOT" :description "React Native tic-tac-toe in ClojureScript" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-3153"] [org.omcljs/om "0.9.0-SNAPSHOT"] [org.omcljs/ambly "0.1.0-SNAPSHOT"]] :plugins [[lein-cljsbuild "1.0.5"]] :source-paths ["src"] :clean-targets ["js" "out"] :cljsbuild {:builds {:dev {:source-paths ["src"] :compiler {:output-dir "out" :output-to "out/main.js" :optimizations :none #_:foreign-libs #_[{:provides ["reactnative"] :file "http://localhost:8081/Examples/TicTacToe/TicTacToeApp.includeRequire.runModule.bundle"}]}} :rel {:source-paths ["src"] :compiler {:output-to "out/main.js" :optimizations :advanced :externs ["externs.js"] :pretty-print false :pseudo-names false}}}}) (ns isla.test.talk (:use [isla.talk]) (:use [clojure.test]) (:use [clojure.pprint])) ;; list-rooms (deftest test-0-rooms (is (re-find #"no way out of this room" (list-rooms [])))) (deftest test-1-room (is (re-find #"see a door to the palace" (list-rooms [{:name "palace"}])))) (deftest test-2-rooms (is (re-find #"see a door to the palace and the garden" (list-rooms [{:name "palace"} {:name "garden"}])))) (deftest test-3-rooms (is (re-find #"see a door to the palace, the garden and the bedroom." (list-rooms [{:name "palace"} {:name "garden"} {:name "bedroom"}]))))(ns structural-typing.use.f-error-messages (:require [structural-typing.preds :as pred]) (:use midje.sweet structural-typing.type structural-typing.global-type structural-typing.clojure.core structural-typing.assist.testutil)) (future-fact "There should be an error if there's an instance of `includes` in a path") (future-fact "reject impossible condensed type descriptions" (type! :X 1) ;; vector is an old-style description ;; other kinds of seqs? ;; records? ) (ns uk.org.potentialdifference.darknet.config) (def ip "192.168.1.24") (def config {:ws-url (str "wss://" ip ":8081") :api-url (str "http://") ip ":8080" :api-key "x9RHJ2I6nWi376Wa"}) {:npm-dev-deps {"shadow-cljs" "2.8.69" "karma" "4.3.0" "karma-chrome-launcher" "3.1.0" "karma-cljs-test" "0.1.0" "karma-junit-reporter" "1.2.0"}} (ns less4clj.util) ;; ;; Debugging ;; from boot.util ;; ; Hack to detect boot verbosity (defn- get-verbosity [] (try (require 'boot.util) ; Deref var and atom @@(resolve 'boot.util/*verbosity*) (catch Exception _ 1))) (defn- print* [verbosity args] (when (>= (get-verbosity) verbosity) (binding [*out* *err*] (apply printf args) (flush)))) (defn dbug [& more] (print* 2 more)) (defn info [& more] (print* 1 more)) (defn warn [& more] (print* 1 more)) (defn fail [& more] (print* 1 more)) (ns doctopus.configuration (:require [nomad :refer [defconfig]] [clojure.java.io :as io])) (defconfig server-config (io/resource "configuration.edn")) (ns nightcode.repl (:require [nightcode.editors :as editors] [nightcode.lein :as lein] [nightcode.sandbox :as sandbox] [nightcode.shortcuts :as shortcuts] [nightcode.ui :as ui] [nightcode.utils :as utils] [seesaw.core :as s])) (defn run-repl! "Starts a REPL process." [process in-out] (lein/stop-process! process) (->> (if (sandbox/get-dir) (clojure.main/repl) (lein/start-process-indirectly! process nil "clojure.main")) (lein/start-thread! in-out))) (defn create-pane "Returns the pane with the REPL." [console] (let [process (atom nil) run! (fn [& _] (s/request-focus! (-> console .getViewport .getView)) (run-repl! process (ui/get-io! console))) pane (s/config! console :id :repl-console)] (utils/set-accessible-name! (.getTextArea pane) :repl-console) ; start the repl (run!) ; create a shortcut to restart the repl (when-not (sandbox/get-dir) (shortcuts/create-hints! pane) (shortcuts/create-mappings! pane {:repl-console run!})) ; return the repl pane pane)) (ns whitman.db-test (:require [clojure.test :refer :all] [whitman.db :as db])) (deftest test-db-url-with-default (let [cfg {"database" "test"}] (is (= (db/db-url cfg) "mongodb://localhost:27017/test")))) (deftest test-db-url-when-specified (let [cfg {"connection" "whitman.monkey-robot.com:27017" "database" "test"}] (is (= (db/db-url cfg) "mongodb://whitman.monkey-robot.com:27017/test")))) (deftest test-db-with-default (let [cfg {"database" "test"}] (-> cfg db/db nil? not is))) (deftest test-db-when-specified (let [cfg {"connection" "whitman.monkey-robot.com:27017" "database" "test"}] (-> cfg db/db nil? not is))) ;; Copyright 2014 Red Hat, Inc, and individual contributors. ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (defproject basic "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0-beta2"] ;; we can't depend on this, or we'll get the version ;; from .m2, not the version we're building ;;[org.projectodd.wunderboss/wunderboss-clojure "0.1.0-SNAPSHOT"] ]) (ns script.bootstrap.build (:require [cljs.source-map :as sm] [cognitect.transit :as transit] [planck.core :refer [slurp spit]] [planck.repl :refer [strip-source-map]])) (defn cljs->transit-json [x] (let [wtr (transit/writer :json)] (transit/write wtr x))) (let [file (first *command-line-args*) sm-json (slurp file) decoded (sm/decode (.parse js/JSON sm-json)) stripped (^:private-var-access-nowarn strip-source-map decoded) transit-json (cljs->transit-json stripped)] (spit file transit-json)) (defproject ring-example "0.1.0-SNAPSHOT" :description "Reitit Ring App with Swagger" :dependencies [[org.clojure/clojure "1.10.0"] [ring/ring-jetty-adapter "1.7.1"] [metosin/reitit "0.3.9"]] :repl-options {:init-ns example.server} :profiles{:dev {:dependencies [[ring/ring-mock "0.3.2"]]}}) (ns swanson.models.db (:require [clojure.java.jdbc :as sql])) (def db {:subprotocol "postgresql" :subname "//localhost/swanson" :user "admin" :password "admin"}) (defn create-users-table [] (sql/with-connection db (sql/create-table :users [:id "varchar(32) PRIMARY KEY"] [:username "varchar(100)"] [:pass "varchar(100)"]))) (defn get-user "first query" [id] (sql/with-connection db (sql/with-query-results res ["SELECT * FROM users WHERE id = ?"] (first res)))) (ns kolmogorov-music.kolmogorov (:require [clojure.repl :as repl])) (defn in-ns? [sym ns] (contains? (ns-interns ns) sym)) (defn sexpr [sym] (-> sym repl/source-fn read-string)) (defn definition [sym] (-> sym sexpr last)) (defn complexity-sym [sym ns] (if (in-ns? sym ns) (->> (definition sym) flatten (map #(-> % (complexity-sym ns) inc)) (apply +)) 0)) (defn complexity-sexpr [sexpr ns] (if (seq? sexpr) (->> sexpr (map #(-> % (complexity-fn ns) inc)) (apply +)) (complexity-fn sexpr ns))) (defmacro complexity [sexpr] (complexity-sexpr sexpr *ns*)) (complexity (+ 4 4)) (ns user (:require [clojure.java.io :as io] [clojure.string :as str] [clojure.pprint :refer (pprint)] [clojure.repl :refer :all] [clojure.tools.namespace.repl :refer (refresh refresh-all)] [pathfinder.system :as sys] [midje.repl :refer (autotest)])) ;;; this file will be loaded by the repl automatically on start up ;;; lifecycle (def system "Entry point in to the current system state." nil) (defn init "Constructs the current development system." [] (alter-var-root #'system (constantly (sys/system {:jetty {:port 9400 :join? false} :elasticsearch {:endpoint "http://localhost:9200"}})))) (defn start "Starts the current development system." [] (alter-var-root #'system sys/start)) (defn stop "Shuts down and destroys the current development system." [] (alter-var-root #'system (fn [s] (when s (sys/stop s))))) (defn go "Initializes the current development system and starts it running." [] (init) (start)) (defn reset [] (stop) (refresh :after 'user/go)) ;;; utilities (ns user (:require [ruuvi.system] [clojure.edn :as edn] [clojure.tools.logging :refer [info error] :as log] [com.stuartsierra.component :as component] [clojure.tools.namespace.repl :refer [refresh refresh-all]] )) (def system nil) (defn init "Constructs the current development system." [] (alter-var-root #'system (constantly (ruuvi.system/create-system "dev/config.edn")))) (defn start "Starts the current development system." [] (try (alter-var-root #'system component/start) (catch Exception e (error e "Failed to start system") (throw e)))) (defn stop "Shuts down and destroys the current development system." [] (try (alter-var-root #'system (fn [s] (when s (component/stop s)))) (catch Exception e (error e "Failed to stop system") (throw e)))) (defn go "Initializes the current development system and starts it running." [] (init) (start)) (defn reset [] (stop) (info "Resetting...") (refresh :after 'user/go) (info "Reset complete") :reset-complete) (def start-t (System/currentTimeMillis)) (defn random-sampler [ ] (let [current (atom 0.0)] (fn [ ] (swap! current #(+ % (/ (+ (Math/random) (Math/random)) 2) -0.5))))) (def rs-0 (random-sampler)) (def rs-1 (random-sampler)) (def rs-2 (random-sampler)) (defsensor random-unconstrained {:poll-interval (seconds 10)} (rs-0)) (defsensor random-positive {:poll-interval (seconds 10)} (+ 0.1 (Math/abs (rs-1)))) (defsensor random-negative {:poll-interval (seconds 10)} (- -0.1 (Math/abs (rs-2)))) (defsensor math {:poll-interval (seconds 10)} {:sine (+ 0.3 (Math/sin (/ (- (System/currentTimeMillis) start-t) (minutes 1)))) :cosine (Math/cos (/ (- (System/currentTimeMillis) start-t) (minutes 1))) }) (defsensor steps-ascending {:poll-interval (seconds 5)} (+ 2.3 (mod (/ (- (System/currentTimeMillis) start-t) (minutes 4)) 3))) (ns docker-clojure.dockerfile.tools-deps) (defn install-deps [{:keys [distro]}] (case distro "alpine" ["RUN echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \\" " apk add --update --no-cache bash curl rlwrap@testing"] "debian" ["RUN apt-get update && apt-get install -y rlwrap"] nil)) (defn contents [{:keys [build-tool-version] :as variant}] (-> [(format "ENV CLOJURE_VERSION=%s" build-tool-version) "" "WORKDIR /tmp" ""] (concat (install-deps variant)) (concat ["" "RUN wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh \\" " && chmod +x linux-install-$CLOJURE_VERSION.sh \\" " && ./linux-install-$CLOJURE_VERSION.sh" "" "RUN clojure -e \"(clojure-version)\"" "" "# Docker bug makes rlwrap crash w/o short sleep first" "# Bug: https://github.com/moby/moby/issues/28009" "CMD sleep 1; clj"]) (->> (remove nil?)))) (defproject madouc "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [ring/ring-devel "1.5.1"] [ring-logger "0.7.7"] [ring-logger-timbre "0.7.5"] [com.taoensso/timbre "4.8.0"] [com.fzakaria/slf4j-timbre "0.3.4"] [compojure "1.5.2"] [metosin/compojure-api "1.1.10"] [yogthos/config "0.8"] [org.immutant/web "2.1.6" :exclusions [ch.qos.logback/logback-classic]] [selmer "1.10.6"] [mount "0.1.11"]] :main madouc.core :profiles {:dev {:resource-paths ["config/dev"]} :prod {:resource-paths ["config/prod"]} :uberjar {:aot :all}}) (defproject govuk/blinken "0.1.0-SNAPSHOT" :description "Dashboard to integrate multiple alert systems" :url "https://github.com/alphagov/blinken" :license {:name "MIT" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [docopt "0.6.1"] [http-kit "2.1.16"] [cheshire "5.2.0"] [hiccup "1.0.4"] [clj-yaml "0.4.0"] [compojure "1.1.6"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [org.clojure/tools.logging "0.2.6"]] :main govuk.blinken) (defproject compojure "1.1.8" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/tools.macro "0.1.0"] [clout "1.2.0"] [ring/ring-core "1.3.1"]] :plugins [[codox "0.8.0"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.1.8/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[ring-mock "0.1.3"] [javax.servlet/servlet-api "2.5"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}) (defproject org.toomuchcode/clara-rules "0.1.1" :description "Clara Rules Engine" :url "http://rbrush.github.io/clara-rules/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.codehaus.jsr166-mirror/jsr166y "1.7.0"]] :plugins [[codox "0.6.4"] [lein-javadoc "0.1.1"]] :codox {:exclude [clara.other-ruleset clara.sample-ruleset clara.test-java clara.test-rules clara.rules.memory clara.test-accumulators clara.rules.testfacts clara.rules.java clara.rules.engine]} :javadoc-opts {:package-names ["clara.rules"]} :source-paths ["src/main/clojure"] :test-paths ["src/test/clojure"] :java-source-paths ["src/main/java"]) (defproject org.onyxplatform/onyx-bookkeeper "0.8.1.0-0.8.1" :description "Onyx plugin for BookKeeper" :url "https://github.com/onyx-platform/onyx-bookkeeper" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject wall-follower "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :uberjar-name "ev3main.jar" :main wall_follower.Main :source-paths ["src/clj"] :java-source-paths ["src/java"] :aliases {"run-ev3" ["do" "uberjar," "shell" "scp" "target/ev3main.jar" "root@10.0.1.1:," "shell" "ssh" "root@10.0.1.1" "/bin/jrun -jar /home/root/ev3main.jar"] "shutdown-ev3" ["shell" "ssh" "root@10.0.1.1" "halt"]} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojars.earthlingzephyr/lejos-ev3 "0.5.0-SNAPSHOT"]] :plugins [[lein-shell "0.3.0"]]) (defproject fixturex/fixturex "0.3.0" :description "A library of helpful test fixture macros and functions." :url "http://www.ryanmcg.com/fixturex/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"]] :repack [{:type :clojure :levels 1 :path "src"}] :profiles {:dev {:dependencies [[incise "0.5.0"] [com.ryanmcg/incise-codox "0.1.0"] [com.ryanmcg/incise-vm-layout "0.5.0"]] :plugins [[lein-repack "0.2.7"]] :aliases {"incise" ^:pass-through-help ["run" "-m" "incise.core"]}} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha4"]]}}) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.2"] [compojure "1.3.2"] [clj-time "0.9.0"] [org.clojure/data.json "0.2.5"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject onyx-app/lein-template "0.9.0.9" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "1.1.0" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0"]]}} :plugins [[jonase/eastwood "0.2.1"] [lein-ancient "0.6.7"]]) (defproject stencil "0.1.0-SNAPSHOT" :description "Mustache in Clojure" :dependencies [[clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"]] :dev-dependencies [[swank-clj "0.1.6-SNAPSHOT"] [org.clojure/clojure-contrib "1.2.0"]] :tasks [cake.tasks.swank-clj stencil.cake.tasks])(defproject clucy "0.4.0" :description "A Clojure interface to the Lucene search engine" :url "http://github/weavejester/clucy" :dependencies [[org.clojure/clojure "1.7.0"] [org.apache.lucene/lucene-core "5.3.0"] [org.apache.lucene/lucene-queryparser "5.3.0"] [org.apache.lucene/lucene-analyzers-common "5.3.0"] [org.apache.lucene/lucene-highlighter "5.3.0"]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.0"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0-master-SNAPSHOT"]]}} :codox {:src-dir-uri "http://github/weavejester/clucy/blob/master" :src-linenum-anchor-prefix "L"}) (defproject trinity "0.1.0-SNAPSHOT" :description "A sweet little Clojure API for Atomix" :url "http://github.com/atomix/trinity" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [io.atomix/atomix "0.1.0-SNAPSHOT"] [io.atomix/atomix-atomic "0.1.0-SNAPSHOT"] [io.atomix/atomix-collections "0.1.0-SNAPSHOT"] [io.atomix/atomix-coordination "0.1.0-SNAPSHOT"] [io.atomix/catalyst-netty "1.0.0-SNAPSHOT"]] :repositories [["sonatype-nexus-snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"}]] :plugins [[codox "0.8.13"]] :codox {:output-dir "target/docs/docs" :defaults {:doc/format :markdown} :src-dir-uri "http://github.com/atomix/trinity/blob/master/" :src-linenum-anchor-prefix "L"}) (defproject kixi.hecuba.weather "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/data.csv "0.1.2"] [clj-http "2.0.0"] [clj-time "0.10.0"]]) (defproject reply "0.1.0-alpha1" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.6-alpha1"] [org.thnetos/cd-client "0.3.1" :exclusions [org.clojure/clojure]] [clj-stacktrace "0.2.4"] [clojure-complete "0.1.4" :exclusions [org.clojure/clojure]] [org.clojure/tools.nrepl "0.0.5"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :repositories { "sonatype" {:url "http://oss.sonatype.org/content/repositories/snapshots" } } :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java") (defproject protobuf "0.6.0-beta19" :description "Clojure-protobuf provides a clojure interface to Google's protocol buffers." :dependencies [[org.clojure/clojure "1.4.0"] [ordered-collections "0.4.0"] [useful "0.8.2-alpha1"] [schematic "0.0.5"]] :plugins [[lein-protobuf "0.1.0-alpha1"]] :profiles {:dev {:dependencies [[gloss "0.2.1"] [io "0.2.0-beta2"]]}} :hooks [leiningen.protobuf] ;; Bug in the current 1.x branch of Leiningen causes ;; jar to implicitly clean no matter what, wiping stuff. ;; This prevents that. :disable-implicit-clean true :checksum-deps true :java-source-paths ["src"]) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-alpha5" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"] [org.onyxplatform/onyx-metrics "0.10.0.0-alpha1"] [org.onyxplatform/onyx "0.10.0-alpha5"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) ;; The only requirement of the project.clj file is that it includes a ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. (defproject leiningen "1.4.0-SNAPSHOT" :description "A build tool designed not to set your hair on fire." :url "http://github.com/technomancy/leiningen" :license {:name "Eclipse Public License"} :dependencies [[org.clojure/clojure "1.3.0-master-SNAPSHOT"] [ant/ant "1.6.5"] [jline "0.9.94"] [robert/hooke "1.0.2"] [org.apache.maven/maven-ant-tasks "2.0.10"]] :disable-implicit-clean true) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. (defproject containium "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Mozilla Public License 2.0" :url "http://mozilla.org/MPL/2.0/"} :dependencies [[org.clojure/clojure "1.5.1"] [boxure "0.1.0-SNAPSHOT"] [org.clojure/tools.nrepl "0.2.3"] [jline "2.11"] [ring "1.2.0"] [http-kit "2.1.10"] [org.apache.httpcomponents/httpclient "4.2.3"] [org.apache.cassandra/cassandra-all "1.2.8"] [org.elasticsearch/elasticsearch "0.90.3"] [org.scala-lang/scala-library "2.9.2"] [kafka/core-kafka_2.9.2 "0.7.2"]] :main containium.core) (defproject pinpointer "0.1.0-SNAPSHOT" :description "Pinpointer makes it easy to grasp which part of data is violating spec conformance." :url "https://github.com/athos/Pinpointer" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [;; clj stuff [org.clojure/clojure "1.9.0-alpha17"] [org.clojure/spec.alpha "0.1.123"] [spectrace "0.1.0-SNAPSHOT"] [rewrite-clj "0.5.1"] [clansi "1.0.0"] ;; cljs stuff [org.clojure/clojurescript "1.9.562" :scope "provided"] [rewrite-cljs "0.4.1"]] :plugins [[lein-cljsbuild "1.1.4"]] :cljsbuild {:builds {:dev {:source-paths ["src"] :compiler {:output-to "target/main.js" :output-dir "target" :optimizations :whitespace :pretty-print true}}}}) (defproject useful "0.8.3-alpha3" :description "A collection of generally-useful Clojure utility functions" :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.macro "0.1.1"]] :multi-deps {"1.3" [[org.clojure/clojure "1.3.0"]] "1.2" [[org.clojure/clojure "1.2.1"]] :all [[org.clojure/tools.macro "0.1.1"]]}) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-alpha7" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-alpha7"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns reabledit.util) (defn set-selected! [state row col] (swap! state assoc :selected [row col])) (defn enable-edit! [columns data state] (if-not (:disable-edit (nth columns (second (:selected @state)))) (let [row-data (nth data (first (:selected @state)))] (swap! state assoc :edit {:initial row-data :updated row-data})))) (defn disable-edit! [state element-id] (swap! state dissoc :edit) ;; Dirty as fudge, but what can you do with Reagent? (.focus (.getElementById js/document element-id))) (defn move-cursor-to-end! [e] (let [el (.-target e) length (count (.-value el))] (set! (.-selectionStart el) length) (set! (.-selectionEnd el) length))) (ns markiki.views (:require [reagent.core :as reagent :refer [atom]] [re-frame.core :refer [subscribe dispatch]])) (defn searchbar [] (fn [] [:form [:div.form-group.has-error.has-feedback [:input#searchbar.form-control.input-lg {:type "text" :placeholder "Search" :on-change #(dispatch [:searchbar-change (-> % .-target .-value)])}] [:span.glyphicon.glyphicon-search.form-control-feedback]]])) (defn markiki-app [] (let [loading? (subscribe [:loading?]) searchbar-val (subscribe [:searchbar]) last-article (subscribe [:last-article]) articles (subscribe [:articles])] (fn [] [:div [searchbar] [:div "Searching for: " @searchbar-val]]))) (defproject com.gfredericks/seventy-one "0.1.2-SNAPSHOT" :description "71 in Clojure" :url "https://github.com/gfredericks/seventy-one" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"]] :plugins [[codox "0.8.12"] [lein-cljsbuild "1.0.6"]] :deploy-repositories [["releases" :clojars]] :profiles {:dev {:dependencies [[org.clojure/clojurescript "0.0-3308"] [org.clojure/test.check "0.7.0"]] :cljsbuild {:builds [{:source-paths ["src" "test"] :compiler {:output-to "resources/private/js/unit-test.js" :optimizations :whitespace :pretty-print true}}]}}}) (defproject govuk/blinken "0.1.0-SNAPSHOT" :description "Dashboard to integrate multiple alert systems" :url "https://github.com/alphagov/blinken" :license {:name "MIT" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [docopt "0.6.1"] [http-kit "2.1.16"] [cheshire "5.2.0"] [hiccup "1.0.4"] [clj-yaml "0.4.0"] [compojure "1.1.6"] [lein-daemon "0.5.4"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [org.clojure/tools.logging "0.2.6"]] :main govuk.blinken) (defproject ezglib "0.1.4-SNAPSHOT" :description "An easy game library for ClojureScript." :url "https://github.com/bakpakin/ezglib" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/bakpakin/ezglib"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2268"]] :plugins [[lein-cljsbuild "1.0.3"]] :hooks [leiningen.cljsbuild] :source-paths ["src"] :cljsbuild { :builds { :src { :jar true :source-paths ["src"] :incremental? true} :examples { :incremental? true :source-paths ["src" "examples/src"] :compiler {:output-to "examples/js/cljs.js" :output-dir "examples/js" :optimizations :none :pretty-print true :source-map "examples/js/cljs.js.map"}}}}) (defproject onyx-app/lein-template "0.13.0.0-alpha1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject beatha "0.0.1-SNAPSHOT" :description "Cellular automata experiments." :url "http://github.com/gsnewmark/beatha" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :min-lein-version "2.3.4" :source-paths ["src/clj" "src/cljs"] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2156"] [org.clojure/core.async "0.1.278.0-76b25b-alpha"] [om "0.5.0"] [com.facebook/react "0.9.0"] [org.webjars/bootstrap "3.1.1"]] :plugins [[lein-cljsbuild "1.0.3-SNAPSHOT"]] :hooks [leiningen.cljsbuild] :cljsbuild {:builds {:beatha {:source-paths ["src/cljs"] :compiler {:output-to "dev-resources/public/js/beatha.js" :optimizations :advanced :pretty-print false}}}}) (defproject onyx-app/lein-template "0.9.9.2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject cli4clj "0.1.0" ;(defproject cli4clj "0.1.0-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"]] :main cli4clj.example) (defproject onyx-app/lein-template "0.9.10.0-beta6" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;;; Copyright (c) 2013 David Goldfarb. All rights reserved. ;;; Contact info: deg@degel.com ;;; ;;; The use and distribution terms for this software are covered by the Eclipse ;;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can ;;; be found in the file epl-v10.html at the root of this distribution. ;;; By using this software in any fashion, you are agreeing to be bound by the ;;; terms of this license. ;;; ;;; You must not remove this notice, or any other, from this software. (defproject my-muxx-sites "0.1.1" :description "Deployment project to wrap my web apps into a single site." :url "https://github.com/deg/my-muxx-sites" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [;; Clojure itself [org.clojure/clojure "1.5.1"] ;; Degel's Clojure utility library [degel-clojure-utils "0.1.14"] ;; Degel's website multiplexer [muxx "0.1.1"] ;; Our apps [deg-scraps "0.1.1"] [webol "0.1.2"]] :profiles {:dev { :plugins [[lein-marginalia "0.7.1"]]}} :min-lein-version "2.0.0" :main degel.deploy.deployment) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Juan de la Cruz ;; Copyright (c) 2016-2019 Andrey Antukh (ns uxbox.view.ui.viewer.sitemap (:require [lentes.core :as l] [rumext.alpha :as mf] [uxbox.builtins.icons :as i] [uxbox.view.data.viewer :as dv] [uxbox.view.store :as st])) (mf/defc sitemap [{:keys [project pages selected] :as props}] (let [project-name (:name project) on-click #(st/emit! (dv/select-page %))] [:div.view-sitemap [:span.sitemap-title project-name] [:ul.sitemap-list (for [page pages] (let [selected? (= (:id page) selected) page-id (:id page)] [:li {:class (when selected? "selected") :on-click (partial on-click page-id) :id (str "page-" page-id) :key page-id} [:div.page-icon i/page] [:span (:name page)]]))]])) (defproject measure "0.1.2" :description "Say things about your application with authority, using Coda Hale's Metrics." :url "https://github.com/KeepSafe/measure" :scm {:name "git" :url "https://github.com/KeepSafe/measure"} :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [com.codahale.metrics/metrics-core "3.0.1"] [com.codahale.metrics/metrics-graphite "3.0.1"]] :profiles {:dev {:plugins [[com.jakemccrary/lein-test-refresh "0.3.4"] [lein-marginalia "0.7.1"]]}} :repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/releases" :snapshots false :releases {:checksum :fail :update :always}}} :signing {:gpg-key "ben@getkeepsafe.com"} :deploy-repositories [["clojars" {:creds :gpg}]] :pom-addition [:developers [:developer [:name "Ben Bader"] [:url "http://getkeepsafe.com"] [:email "ben@getkeepsafe.com"] [:timezone "America/Los Angeles"]]] ) (defproject funcool/potok "2.1.0" :description "Reactive streams based state management toolkit for ClojureScript" :url "https://github.com/funcool/potok" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.9.495" :scope "provided"] [funcool/beicon "3.2.0"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :plugins [[lein-ancient "0.6.10"]]) (defproject cli4clj "1.6.3" ;(defproject cli4clj "1.6.4-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.4.474"] [jline/jline "2.14.6"]] ; :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :aot :all :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.7" :exclusions [org.clojure/clojure]]]}} ) (defproject iss "0.1.0-SNAPSHOT" :description "Write inline styles; ship optimized CSS stylesheets." :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.226"] [org.omcljs/om "0.9.0"]] :jvm-opts ^:replace ["-Xmx1g" "-server"] :source-paths ["src" "lib" "target/classes"] :clean-targets ["out" "release"] :target-path "target") (ns clj.medusa.alert (:require [amazonica.aws.simpleemail :as ses] [amazonica.core :as aws] [clojure.string :as string] [clj.medusa.config :as config] [clj.medusa.db :as db] [clj.medusa.config :as config])) (defn send-email [subject body destinations] (when-not (:dry-run @config/state) (ses/send-email :destination {:to-addresses destinations} :source "telemetry-alerts@mozilla.com" :message {:subject subject :body {:html (str "" body "")}}))) (defn notify-subscribers [{:keys [metric_id date emails]}] (let [{:keys [hostname]} @config/state foreign_subscribers (when (seq? emails) (string/split emails #",")) {metric_name :name, detector_id :detector_id metric_id :id} (db/get-metric metric_id) {detector_name :name} (db/get-detector detector_id) subscribers (db/get-subscribers-for-metric metric_id)] (send-email (str "Alert for " metric_name " (" detector_name ") on the " date) (str "http://" hostname "/index.html#/detectors/" detector_id "/" "metrics/" metric_id "/alerts/?from=" date "&to=" date) (concat subscribers foreign_subscribers ["dev-telemetry-alerts@lists.mozilla.org"])))) (defproject onyx-app/lein-template "0.12.0.0-alpha1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject funcool/beicon "0.1.0-SNAPSHOT" :description "A rxjs idiomatic wrapper for ClojureScript" :url "https://github.com/funcool/beicon" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.48" :scope "provided"] [funcool/cats "1.0.0"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/beicon/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-externs "0.1.3"]]) (defproject clj-gatling "0.4.2" :description "" :url "http://github.com/mhjort/clj-gatling" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [clj-containment-matchers "0.9.1"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [clojure-csv/clojure-csv "2.0.1"] [http-kit "2.1.16"] [clj-time "0.8.0"] [io.gatling/gatling-charts "2.0.3"] [io.gatling.highcharts/gatling-charts-highcharts "2.0.3"]] :repositories { "excilys" "http://repository.excilys.com/content/groups/public" }) ;;; ;;; Copyright 2017, Ruediger Gad ;;; ;;; This software is released under the terms of the Eclipse Public License ;;; (EPL) 1.0. You can find a copy of the EPL at: ;;; http://opensource.org/licenses/eclipse-1.0.php ;;; (ns ^{:author "Ruediger Gad", :doc "Java Interop for using the DSL from within Java."} dsbdp.DslHelper (:require [dsbdp.data-processing-dsl :refer :all]) (:gen-class :methods [^:static [generateProcessingFn [Object] clojure.lang.IFn]])) (defn -generateProcessingFn [dsl-expression] (if (string? dsl-expression) (create-proc-fn (binding [*read-eval* false] (read-string dsl-expression))) (create-proc-fn dsl-expression))) (defproject planck "0.1.0" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.189"] [tailrecursion/cljson "1.0.7"] [com.cognitect/transit-clj "0.8.275"] [com.cognitect/transit-cljs "0.8.220"] [malabarba/lazy-map "1.1"]] :clean-targets ["out" "target"]) (ns robot-name) (def ^:private random (java.util.Random.)) (def ^:private letters (map char (range 65 91))) (defn- generate-name [] (str (apply str (take 2 (shuffle letters))) (+ 100 (.nextInt random 899)))) (defn robot [] (atom {:name (generate-name)})) (defn robot-name [robot] (:name @robot)) (defn reset-name [robot] (swap! robot assoc :name (generate-name))) (ns shale.periodic (:require [shale.sessions :as sessions]) (:use overtone.at-at)) (def thread-pool (mk-pool)) (defn schedule! [] (every 10 #(sessions/refresh-sessions nil) thread-pool :fixed-delay true)) (defn stop! [] (stop-and-reset-pool! thread-pool)) (defproject clj-http "0.3.3-SNAPSHOT" :description "A Clojure HTTP library wrapping the Apache HttpComponents client." :url "https://github.com/dakrone/clj-http/" :repositories {"sona" "http://oss.sonatype.org/content/repositories/snapshots"} :warn-on-reflection false :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.3.0"] [org.apache.httpcomponents/httpclient "4.1.2"] [org.apache.httpcomponents/httpmime "4.1.2"] [commons-codec "1.5"] [commons-io "2.1"] [slingshot "0.10.2"] [cheshire "2.2.2"]] :profiles {:dev {:dependencies [[ring/ring-jetty-adapter "1.0.2"] [ring/ring-devel "1.0.2"]]} :1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0-beta1"]]}} :aliases {"all" ["with-profile" "dev,1.2:dev:dev,1.4"]} :test-selectors {:default #(not (:integration %)) :integration :integration :all (constantly true)} :checksum-deps true) (defproject compojure "1.3.4" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.6.0"] [ring/ring-core "1.4.0"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.12"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.4/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.2.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}}) ;; create the main project namespace (ns modern-cljs.core) ;; enable cljs to print to the JavaScript console of the browser (enable-console-print!) ;; print a friendly greeting to the console (println "Hello, Modern ClojureScript World!") (ns subman.routes (:use [compojure.core :only [defroutes GET]]) (:require [compojure.route :as route] [subman.models :as models] [subman.api :as api] [subman.views :as views])) (defroutes main-routes (GET "/" [] (views/index-page)) (GET "/api/search/" {params :params} (api/search params)) (route/resources "/") (route/not-found (views/index-page))) (defproject onyx-app/lein-template "0.12.2.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-sql "0.7.3-SNAPSHOT" :description "Onyx plugin for JDBC-backed SQL databases" :url "https://github.com/MichaelDrogalis/onyx-sql" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/java.jdbc "0.3.3"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150828_152050-gd122e3e"] [java-jdbc/dsl "0.1.3"] [com.mchange/c3p0 "0.9.2.1"] [honeysql "0.5.1"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [environ "1.0.0"] [mysql/mysql-connector-java "5.1.25"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.11.0.0-alpha1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject de.otto/tesla-httpkit "0.1.5" :description "httpkit addon for tesla-microservice." :url "https://github.com/otto-de/tesla-httpkit" :license {:name "Apache License 2.0" :url "http://www.apache.org/license/LICENSE-2.0.html"} :scm {:name "git" :url "https://github.com/otto-de/tesla-httpkit"} :dependencies [[org.clojure/clojure "1.7.0"] [http-kit "2.1.19"]] :exclusions [org.clojure/clojure org.slf4j/slf4j-nop org.slf4j/slf4j-log4j12 log4j commons-logging/commons-logging] :profiles {:provided {:dependencies [[de.otto/tesla-microservice "0.1.26"] [com.stuartsierra/component "0.3.1"]]} :dev {:dependencies [[javax.servlet/servlet-api "2.5"] [org.slf4j/slf4j-api "1.7.14"] [ch.qos.logback/logback-core "1.1.3"] [ch.qos.logback/logback-classic "1.1.3"] [ring-mock "0.1.5"]] :plugins [[lein-ancient "0.5.4"]]}} :test-paths ["test" "test-resources"]) (defproject org.onyxplatform/onyx-datomic "0.8.1.0-alpha4" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha4"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns puppetlabs.puppetserver.cli.gem-test (:require [clojure.test :refer :all] [puppetlabs.puppetserver.cli.gem :refer :all])) (deftest cli-gem-environment-test (let [fake-config {:jruby-puppet {:gem-home "/fake/path"}} fake-env {"PATH" "/bin:/usr/bin", "FOO_DEBUG" "1"}] (testing "The environment intended for the gem subcommand" (is (not (empty? ((cli-gem-environment fake-config fake-env) "PATH"))) "has a non-empty PATH originating from the System") (is (= "/bin:/usr/bin" ((cli-gem-environment fake-config fake-env) "PATH")) "does not modify the PATH environment variable") (is (= "/fake/path" ((cli-gem-environment fake-config fake-env) "GEM_HOME")) "has GEM_HOME set to /fake/path from the provided config") (is (= "1" ((cli-gem-environment fake-config fake-env) "FOO_DEBUG")) "preserves arbitrary environment vars for the end user")))) (ns merkki.core) (defn header "Given a number and a string, tags the string as that header level and adds a new line" [n s] (str (reduce str (take n (repeat "#"))) " " s " \n")) ;; Pre-provided curried versions of header for quicker use (def h1 (partial header 1)) (def h2 (partial header 2)) (def h3 (partial header 3)) (def h4 (partial header 4)) (def h5 (partial header 5)) (def h6 (partial header 6)) (defn u-header "Generates an underlined, multi-line setext style header, using the given underline character" [ch s] (str s " \n" (reduce str (take (count s) (repeat ch))) " \n")) ;; Pre-provided curried versions of u-header for h1 and h2 (def uh1 (partial u-header "=")) (def uh2 (partial u-header "-")) (defn em "Wraps string for emphasis" [s] (str "*" s "*")) (defn strong "Wraps string for strong emphasis" [s] (str "**" s "**")) ;; Copyright © 2016, JUXT LTD. (ns edge.server (:require [aleph.http :as http] [bidi.vhosts :refer [make-handler vhosts-model]] [clojure.java.io :as io] [clojure.tools.logging :refer :all] [com.stuartsierra.component :refer [Lifecycle using]] [schema.core :as s] [yada.yada :refer [yada resource] :as yada]) (:import [bidi.vhosts VHostsModel])) (s/defrecord HttpServer [port :- s/Int routes server] Lifecycle (start [component] (assoc component :server (yada/server routes {:port port}))) (stop [component] (when-let [server (:server component)] (.close server)) component)) (defn new-http-server [options] (map->HttpServer options)) h^���]���q�s ���Dl� ��B � #{',, .r1?4U6�6�:�<=�=�@hA�C�FEJ%P�S`Xu\)]�^ a�ccgNjNmq�q>u�x{}E�E�|�!�x�<�(��ԛ�i�j�f����g����J���k���������#�>��j���������L���]�,��i�h C ;����!�$�(R)3,N-�1635�7,9>�?�A�BE�I`N�P�RV�Y�] b e�flqo�q�t�vx|Z��O�O�e��������&���m��Ϩn�­Q�A�g�޹����D�"�O�C�M����� �����U���!���=�v�����k���s�� ���� �U�"[%�&�+�.s3�6�9�<A]E�G:J�LQ�Q�TZVuXwY�[�]�_dbd�hbk�lwndr�st"w�z~ǁc�[����������ٗo�ѠS�ϦR����\�����e���\���$���(���U�w�������?�G�������p����) -�_��W�# 'W+�,�/6�9�=*A�DG�J�OxSHWuZ�]MaUe'j�j�oOr�u�x�y�|�~���G�a�5�e�c��S�a����b�U���ƨ'��� �����~�b�����������S���)�(����������l�)�]�(ns clojuredocs.main (:require [ring.adapter.jetty :as jetty] [aleph.http :as ah] [clojuredocs.env :as env] [clojuredocs.entry :as entry] [somnium.congomongo :as mon])) (mon/set-connection! (mon/make-connection (env/str :mongo-url))) (mon/add-index! :examples [:ns :name :library-url]) (mon/add-index! :vars [:ns :name :library-url]) (defn start-http-server [entry-point opts] (ah/start-http-server (ah/wrap-ring-handler (fn [r] (let [resp (entry-point r)] (if (:status resp) resp (assoc resp :status 200))))) opts)) (defn -main [] (let [port (env/int :port 8080)] (start-http-server (var entry/routes) {:port port :join? false}) (println (format "Server running on port %d" port)))) ;; Copyright 2014-2015 Red Hat, Inc, and individual contributors. ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (defproject org.immutant/wildfly "2.0.0-SNAPSHOT" :description "Utility functions only useful within a WildFly container." :pedantic? false :plugins [[lein-modules "0.3.11"]] :dependencies [[org.immutant/core _] [org.clojure/tools.nrepl "_"] [org.projectodd.wunderboss/wunderboss-wildfly _]]) (ns hatnik.web.client.form (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [hatnik.web.client.form-components :as widget] [hatnik.web.client.app-state :as state]) (:use [jayq.core :only [$]])) (om/root widget/action-form-header state/app-state {:target (. js/document (getElementById "iActionFormHeader"))}) (om/root widget/action-form-body state/app-state {:target (. js/document (getElementById "iActionFormBody"))}) (om/root widget/action-form-footer state/app-state {:target (. js/document (getElementById "iActionFormFooter"))}) (ns grimoire.api.fs.write "Filesystem datastore implementation of the Grimoire API." (:refer-clojure :exclude [isa?]) (:require [grimoire.things :refer :all] [grimoire.api :as api] [grimoire.api.fs :refer :all])) ;; Interacting with the datastore - writing ;;-------------------------------------------------------------------- (defmethod api/write-meta :filesystem [config thing data] (let [thing (ensure-thing thing) _ (assert thing) handle (thing->meta-handle config thing) _ (assert handle)] (spit handle (pr-str data)) nil)) (defmethod api/write-notes :filesystem [config thing data] {:pre [(string? data) thing config (-> config :datastore :notes)]} (let [thing (ensure-thing thing) _ (assert thing) handle (thing->notes-handle config thing) _ (assert thing)] (spit handle data))) ;; FIXME: add write-example (defmethod api/write-related :filesystem [config thing related-things] (let [thing (ensure-thing thing) _ (assert thing) _ (assert (isa? :def thing)) handle (thing->related-handle config thing) _ (assert thing)] (doseq [thing related-things] (spit handle (str (thing->path thing) \newline) :append true)))) (ns com.palletops.leaven "A component composition library." (:require [com.palletops.leaven.protocols :as protocols :refer [ILifecycle IStatus]])) (defn start "Start a component." [component] (if (satisfies? ILifecycle component) (protocols/start component) component)) (defn stop "Stop a component." [component] (if (satisfies? ILifecycle component) (protocols/stop component) component)) (defn status "Ask a component for its status." [component] (if (satisfies? IStatus component) (protocols/status component))) #+clj (defmacro defsystem "Macro to build a system defrecord out of `components`, a sequence of keywords that specify the sub-components. The record will implement ILifecycle and IStatus by calling the protocol methods on each of the components." [record-name components] (letfn [(start-subcomp [k] `(update-in [~k] protocols/start)) (stop-subcomp [k] `(update-in [~k] protocols/stop)) (status-subcomp [k] `(update-in [~k] status))] `(defrecord ~record-name [~@(map (comp symbol name) components)] ILifecycle (~'start [component#] (-> component# ~@(map start-subcomp components))) (~'stop [component#] (-> component# ~@(map stop-subcomp (reverse components)))) IStatus (~'status [component#] (-> component# ~@(map status-subcomp components)))))) (ns evermind.domain.core (:require [clojure.spec.alpha :as s] [clojure.spec.gen.alpha :as gen])) (s/def ::node (s/keys :req-un [] :opt-un [::parent ::children])) (s/def ::parent ::node) (s/def ::children (s/* ::node)) (defn create-node ([] {})) (s/fdef create-node :args (s/cat) :ret ::node) (defn create-mindmap ([] (create-node))) (s/fdef create-mindmap :args (s/cat) :ret ::node) (defn add-child ([parent child] (assoc parent :children (conj (:children parent) child)))) ;; ([node child pos])) (s/fdef add-child :args (s/cat :parent ::node :child ::node) :ret ::node :fn (fn [arg] (some #(= % (-> arg :args :child)) (-> arg :ret :children)))) (defn remove-child ([node child])) (defn filter-children ([node pred]))(ns uxbox.tests.helpers (:require [clojure.test :as t] [mount.core :as mount] [suricatta.core :as sc] [uxbox.persistence :as up] [uxbox.config :as ucfg])) (def +config+ (ucfg/read-test-config)) (def +ds+ (up/create-datasource (:database +config+))) (defn database-reset [next] (with-open [conn (sc/context +ds+)] (sc/execute conn "drop schema if exists public cascade;") (sc/execute conn "create schema public;")) (mount/start-with {#'uxbox.config/config +config+}) (next)) (ns carambar.cache-test (:require [midje.sweet :refer :all] [carambar.cache :refer :all])) (fact (add-entry {:name "/path/test.jar" :values []}) => (contains {:name "/path/test.jar" :values []})) ;; need to run mvn clean install before... (def jarfile-with-two-classes "/home/nchapon/opt/m2_repo/org/carambar/simple/1.0-SNAPSHOT/simple-1.0-SNAPSHOT.jar") (def slf4j "/home/nchapon/opt/m2_repo/org/slf4j/slf4j-api/1.7.8/slf4j-api-1.7.8.jar") (fact (:values (parse jarfile-with-two-classes)) => ["org.carambar.App" "org.carambar.MyClass"]) (fact (filename->javaclass "a/b/c/MyClass.class") => "a.b.c.MyClass") (ns icecap.handlers.http-test (:require [clojure.core.async :as a] [manifold.deferred :as d] [icecap.handlers.core :refer [execute]] [icecap.schema :refer [check-plan]] [icecap.handlers.http] [aleph.http :as h] [clojure.test :refer :all])) (def url "http://www.example.com") (def step {:type :http :url url}) (deftest schema-tests (testing "valid steps" (are [s] (nil? (check-plan s)) step)) (testing "invalid steps" (are [s expected] (= (check-plan (merge {:type :http} s)) expected) {} '{:url missing-required-key} {:uri url} '{:uri disallowed-key :url missing-required-key}))) (def fake-response {}) (defn fake-request [_] (d/success-deferred fake-response)) (deftest execute-tests (with-redefs [h/request fake-request] (is (let [ch (execute step) [result] (a/> (line-seq reader) (drop-while #(not= % " specs:")) (drop 1) (take-while seq) doall)) (defn- parse-spec [spec] {:name (second spec) :version (nth spec 2)}) (defn- parse-specs [specs] (->> (map #(re-matches #"^\s{4}(\S+) \((.*)\)$" %) specs) (remove empty?) (map parse-spec))) (defn parse [file] (with-open [reader (io/reader file)] (parse-specs (get-specs reader)))) (ns chatom.parser (:require [om.next.server :as om]) (:refer-clojure :exclude [read])) (defn dispatch [_ k _] k) (defmulti read dispatch) (defmulti mutate dispatch) (defmethod read :default [{:keys [db query]} key params] (println "default read called") {:value "not-found"}) (defmethod mutate :default [{:keys [db query]} key params] (println "default mutate called") {:action #(do "foo!")}) (def parser (om/parser {:read read :mutate mutate})) (ns my-money.components.tab-bar (:require [clojure.string :as string] [my-money.app.controller.events :as ec])) (defn tab [e! active-value value type] [:label.btn.btn-primary (when (= value active-value) {:class "active"}) (string/capitalize value) [:input {:type "radio" :value value :id value :name type :on-click #(e! (ec/->SelectType value))}]]) (defn tab-bar [e! active-value] ;; TODO: Make this generic [:div.btn-group.btn-group-toggle [tab e! active-value "all" "type"] [tab e! active-value "expenses" "type"] [tab e! active-value "incomes" "type"]])(ns clstreams.webapi (:require [bidi.ring :as bidi] [clstreams.webapi.component :refer [new-aleph]] [ring.middleware.json :refer [wrap-json-body wrap-json-response]] [ring.util.response :refer [response]]) (:import org.apache.kafka.streams.state.QueryableStoreTypes)) (defn make-word-count-handler [{{kstreams :kstreams} :pipeline}] (fn [{:keys [route-params]}] (let [store (.store kstreams "Counts" (QueryableStoreTypes/keyValueStore))] (->> (:word route-params) (.get store) str response)) )) (defn make-main-handler [component] (bidi/make-handler [["/word-count/" :word] (make-word-count-handler component)])) (defn make-app [component] (-> (make-main-handler component) wrap-json-body wrap-json-response)) (defn web-test [] (new-aleph make-app {:host "0.0.0.0" :port 8080})) (defproject rm-hull/wireframes "0.0.1" :description "A lightweight 3D wireframe renderer for both Clojure and ClojureScript" :url "https://github.com/rm_hull/wireframes" :license {:name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-1934"] [org.clojure/core.rrb-vector "0.0.10-SNAPSHOT"] [prismatic/dommy "0.1.2"] [hiccup "1.0.4"] [jayq "2.4.0"] [rm-hull/monet "0.1.8"]] :plugins [[lein-cljsbuild "0.3.3"] [com.birdseye-sw/lein-dalap "0.1.0"]] :hooks [leiningen.dalap] :source-path "src" :cljsbuild { :builds [{:source-paths ["target/generated"], :id "main", :jar true}]} :min-lein-version "2.3.2" :global-vars {*warn-on-reflection* true}) (defproject ring/ring-core "1.9.0" :description "Ring core libraries." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-codec "1.1.2"] [commons-io "2.6"] [commons-fileupload "1.4"] [crypto-random "1.2.0"] [crypto-equality "1.0.0"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9:+1.10" "test"]} :profiles {:provided {:dependencies [[javax.servlet/servlet-api "2.5"]]} :dev {:dependencies [[clj-time "0.15.2"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}}) (ns madouc.handlers.api (:require [ring.util.http-response :as http-resp] [compojure.api.sweet :refer :all] [madouc.db :as db])) (defapi handler-old (context "/api" [] (GET "/status" [] (http-resp/ok {:api-status "ok"})))) (def handler (api {:swagger {:ui "/api-docs/" :spec "/api/swagger.json" :data {:info {:title "Madouc API" :description "API for the Madouc service" :version "0.1.3"}}}} (context "/api" [] (GET "/status" [] (http-resp/ok {:api-status "ok"}))))) (ns braid.server.events (:require [braid.server.db :as db] [braid.server.db.group :as group] [braid.server.db.thread :as thread] [braid.server.db.user :as user] [braid.server.sync-helpers :as sync-helpers])) (defn add-user-to-recent-threads-in-group! [user-id group-id] (->> (thread/recent-threads {:user-id user-id :group-id group-id :num-threads 5}) (mapcat (fn [t] (thread/user-show-thread-txn user-id (t :id)))) (db/run-txns!))) (defn user-join-group! [user-id group-id] (db/run-txns! (concat (group/user-add-to-group-txn user-id group-id) (group/user-subscribe-to-group-tags-txn user-id group-id))) (add-user-to-recent-threads-in-group! user-id group-id) (sync-helpers/broadcast-group-change group-id [:braid.client/new-user (user/user-by-id user-id)])) (defn register-user! [email group-id] (let [[user] (db/run-txns! (user/create-user-txn {:id (db/uuid) :email email}))] (user-join-group! (user :id) group-id) (user :id))) (ns uxbox.tests.test-txlog "A txlog and services abstraction generic tests." (:require [clojure.test :as t] [uxbox.tests.helpers :as th])) (t/use-fixtures :each th/database-reset) (t/deftest experiment-spec1 (t/is (= 1 1))) (t/deftest experiment-spec2 (t/is (= 1 1))) (defproject org.onyxplatform/onyx-metrics "0.8.1.0-alpha9" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha9"] [org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [[riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject cider-ci_storage "2.0.0" :description "Cider-CI Storage" :license {:name "GNU AFFERO GENERAL PUBLIC LICENSE Version 3" :url "http://www.gnu.org/licenses/agpl-3.0.html"} :dependencies [ [cider-ci/clj-auth "2.0.0"] [cider-ci/clj-utils "2.0.0"] [me.raynes/fs "1.4.6"] [org.clojure/tools.nrepl "0.2.6"] ] ;:pedantic? :warn :source-paths [ "src"] :profiles { :dev { :resource-paths ["resources_dev"] } :production { :resource-paths [ "/etc/cider-ci_storage" ] }} :aot [cider-ci.storage.main] :main cider-ci.storage.main :repositories [["tmp" {:url "http://maven-repo-tmp.drtom.ch" :snapshots false}]] ) (defproject stencil "0.3.0" :description "Mustache in Clojure" :dependencies [[org.clojure/clojure "1.3.0"] [scout "0.1.0"] [quoin "0.1.0"] [slingshot "0.8.0"] [org.clojure/core.cache "0.6.1"]] :profiles {:dev {:dependencies [[org.clojure/data.json "0.1.2"]]} :clj1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]} :clj1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :clj1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}} :extra-files-to-clean ["test/spec"])(defproject metosin/spec-tools "0.1.0-SNAPSHOT" :description "Common utilities for clojure.spec" :url "https://github.com/metosin/spec-tools" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo :comments "same as Clojure"} :dependencies [[org.clojure/clojure "1.9.0-alpha10"]] :plugins [[funcool/codeina "0.4.0"]] :codeina {:target "doc" :src-uri "http://github.com/metosin/spec-tools/blob/master/" :src-uri-prefix "#L"} :profiles {:dev {:plugins [[jonase/eastwood "0.2.3"]] :dependencies [[criterium "0.4.4"] [org.clojure/test.check "0.9.0"] [org.clojure/clojurescript "1.9.227"]]}} :aliases {"all" ["with-profile" "dev"] "test-clj" ["all" "do" ["test"] ["check"]]}) (ns clojure-walkthrough.cjia.ch07-xx) ; 7.1: Macro basic ; 7.1.1: Textual substitution (def a-ref (ref 0)) (dosync (ref-set a-ref 1)) ; 1 ;; You could implement this using the macros like ; (syn-set a-ref 1) (defmacro sync-set [r v] (list 'dosync (list 'ref-set r v))) (sync-set a-ref 1) ;; 1 (ns kixi.event.producer (:require [clj-kafka.core :as kafka] [clj-kafka.producer :as p] [kixi.event.zookeeper :as zk] [clojure.tools.logging :as log] [com.stuartsierra.component :as component] [clojure.tools.logging :as log]) (:import [kafka.admin AdminUtils])) (defrecord EventProducer [] component/Lifecycle (start [this] (log/info "Starting EventProducer") (assoc this :instance (p/producer {"metadata.broker.list" (zk/broker-list (:zookeeper this)) "serializer.class" "kafka.serializer.DefaultEncoder" "partitioner.class" "kafka.producer.DefaultPartitioner" "max.message.size" (:max-message-size this) "compression.codec" "1"}))) (stop [this] (log/info "Stopping EventProducer") (when-let [i (:instance this)] (.close i)) (dissoc this :instance))) (defn new-producer ([] (->EventProducer)) ([& {:as opts}] (map->EventProducer opts))) ;- ; Copyright 2011 (c) Meikel Brandmeyer. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.core) (defn init-server [] ; Check for doc macro. 1.2 in c.core, 1.3 in c.repl (when-not (ns-resolve 'clojure.core 'doc) (binding [*ns* *ns*] (in-ns 'user) (refer-clojure) (use 'clojure.repl)))) (ns github-changelog.util (:require [clojure.string :refer [ends-with?]])) (defn str-map [f & sqs] (apply str (apply map f sqs))) (defn extract-params [query-string] (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" query-string)] [(keyword k) v]))) (defn strip-trailing ([s] (strip-trailing s "/")) ([s end] (if (ends-with? s end) (recur (apply str (drop-last s)) end) s))) (ns circle.init (:require circle.env) ;; env needs to be loaded before any circle source files containing tests (:require circle.swank) (:require circle.db) (:require circle.repl) (:require circle.logging) (:require circle.util.chdir) (:require fs)) (defn maybe-change-dir "Change the current working directory to backend/. Although changing it to the project root makes more conceptual sense, there are lots of entrypoints to the clojure code (for example, tests, swank, etc) which are hard to get a hook on, but making sure there is a hook into the Rails code is easy. It makes more code to write this in JRuby, but it's written now, so why change it.cl" [] (when (= (-> (fs/cwd) fs/normpath fs/split last) "CircleCI") (circle.util.chdir/chdir "backend") (println "Changing current working directory to" (fs/abspath (fs/cwd))))) (def init* (delay (try (circle.logging/init) (circle.swank/init) (circle.db/init) (circle.repl/init) (println (java.util.Date.)) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init))(ns isla.library (:use [clojure.pprint]) (:require [clojure.string :as str]) (:require [isla.utils :as utils])) (defn get-initial-env [] { :ret nil :ctx { "write" (fn [env str] (utils/output str) ;; print out str) ;; add to context } })(ns discuss.tests "Test runner to execute all tests." (:require [doo.runner :refer-macros [doo-tests]] [discuss.components.clipboard-test] [discuss.references.lib-test] [discuss.utils.common-test] [discuss.translations-test])) (enable-console-print!) (doo-tests 'discuss.components.clipboard-test 'discuss.references.lib-test 'discuss.utils.common-test 'discuss.translations-test) ;;; ;;; Copyright 2015 Ruediger Gad ;;; ;;; This software is released under the terms of the Eclipse Public License ;;; (EPL) 1.0. You can find a copy of the EPL at: ;;; http://opensource.org/licenses/eclipse-1.0.php ;;; (ns ^{:author "Ruediger Gad", :doc "Helper that are primarily used during experiments"} dsbdp.experiment-helper (:require [dsbdp.byte-array-conversion :refer :all])) (defn create-proc-fns [fn-1 fn-n n] (loop [fns [fn-1]] (if (< (count fns) n) (recur (conj fns fn-n)) fns))) (ns {{name}}.web_unit (:use [{{name}}.web]) (:use [clojure.test]) (:use midje.sweet)) (defn request [method resource] (routes {:request-method method :uri resource } )) (deftest ^:unit tests (fact "Ping returns a pong" (:body (request :get "/1.x/ping")) => "pong" ) ) (ns solver.core (:gen-class)) (defn -main "I don't do a whole lot ... yet." [& args] (println "Hello, World!")) (ns clj-chrome-devtools.protocol-definitions "Loads CDP protocol definition JSON files for consumption by def macros." (:require [cheshire.core :as cheshire])) (defn- load-json [json-file] (as-> json-file it (str "resources/devtools-protocol/json/" it) (slurp it) (cheshire/parse-string it true))) (def browser-protocol-json (load-json "browser_protocol.json")) (def js-protocol-json (load-json "js_protocol.json")) (defn all-domains [] (concat (:domains browser-protocol-json) (:domains js-protocol-json))) (defn commands-for-domain [domain] (->> (all-domains) (filter #(= (:domain %) domain)) first :commands)) (defn domains [] (into #{} (map :domain) (all-domains))) (ns comic-reader.site-dev (:require [clojure.java.io :refer [as-file resource]] [clojure.test :refer [run-tests]] [clojure.tools.namespace.repl :refer [refresh]])) (defn run-site-tests* [] (require 'comic-reader.sites-test) (run-tests (find-ns 'comic-reader.sites-test))) (defn touch-file [file] (.setLastModified (as-file file) (System/currentTimeMillis))) (defn run-site-tests [] (touch-file (resource "comic_reader/sites_test.clj")) (refresh :after 'comic-reader.site-dev/run-site-tests*)) (ns braid.server.events (:require [braid.server.db :as db] [braid.server.db.group :as group] [braid.server.db.thread :as thread] [braid.server.db.user :as user] [braid.server.sync-helpers :as sync-helpers])) (defn user-join-group! [user-id group-id] (db/run-txns! (group/user-join-group-txn user-id group-id)) (sync-helpers/broadcast-group-change group-id [:braid.client/new-user (user/user-by-id user-id)])) (defn register-user! [email group-id] (let [[user] (db/run-txns! (user/create-user-txn {:id (db/uuid) :email email}))] (user-join-group! (user :id) group-id) (user :id))) (ns app-macros.util.string (:require [clojure.string :as str])) (defn camel->kebab "Converts from camel case (e.g. Foo or FooBar) to kebab case (e.g. foo or foo-bar)." [s] (str/lower-case (str/replace s #"(.+)([A-Z])" "$1-$2"))) (defproject net.uncontended/beehive "0.6.0-SNAPSHOT" :description "Beehive is a Clojure facade for the Precipice library." :url "https://github.com/tbrooks8/Beehive" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :signing {:gpg-key "tim@uncontended.net"} :java-source-paths ["src/beehive/java"] :profiles {:dev {:dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"] [clj-http "1.0.1"] [criterium "0.4.3"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [net.bytebuddy/byte-buddy "1.2.2"] [net.uncontended/precipice-core "0.7.0-SNAPSHOT"] [net.uncontended/precipice-threadpool "0.7.0-SNAPSHOT"]]) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150828_152050-gd122e3e"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.5.0"] [zookeeper-clj "0.9.3" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject protobuf "0.6.1-beta2" :description "Clojure-protobuf provides a clojure interface to Google's protocol buffers." :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :url "https://github.com/flatland/clojure-protobuf" :dependencies [[org.clojure/clojure "1.4.0"] [ordered-collections "0.4.0"] [useful "0.8.2-alpha1"] [schematic "0.0.5"]] :plugins [[lein-protobuf "0.2.0-beta2"]] :profiles {:dev {:dependencies [[gloss "0.2.1"] [io "0.2.0-beta2"]]}} :protobuf-version "2.4.1" :hooks [leiningen.protobuf] :checksum-deps true :java-source-paths ["src"]) (defproject io.aviso/rook "0.1.10-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :profiles {:dev {:dependencies [[ring-mock "0.1.5"] [io.aviso/pretty "0.1.11"] [clj-http "0.9.1"] [speclj "3.0.2"] [log4j "1.2.17"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.278.0-76b25b-alpha"] [org.clojure/tools.logging "0.2.6"] [ring "1.3.0"] [medley "0.2.1"] [ring-middleware-format "0.3.2"] [prismatic/schema "0.2.3"] [compojure "1.1.6"]] :plugins [[speclj "3.0.2"]] :test-paths ["spec"] :codox {:src-dir-uri "https://github.com/AvisoNovate/rook/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}}) (defproject d-cent "0.0.1-SNAPSHOT" :description "Cool new project to do things and stuff" :dependencies [[org.clojure/clojure "1.4.0"]] :profiles {:dev {:dependencies [[midje "1.5.1"]]}}) (defproject tetris "0.1.0-SNAPSHOT" :description "Tetris implementation in ClojureScript." :url "http://tetris.temochka.com/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2202"] [org.clojure/core.async "0.1.338.0-5c5012-alpha"]] :plugins [[lein-cljsbuild "1.0.3"] [com.cemerick/austin "0.1.5"]] :figwheel {:http-server-root "public" :port 3449 :css-dirs ["resources/public/css"]} :cljsbuild {:builds [{:id "dev" :source-paths ["src"] :compiler {:output-to "resources/public/tetris.js" :output-dir "resources/public/out" :optimizations :none :source-map true}} {:id "prod" :source-paths ["src"] :compiler {:output-to "resources/public/tetris.min.js" :output-dir "resources/public/out.prod" :optimizations :advanced}}]}) (defproject thomasa/mranderson "0.5.2-SNAPSHOT" :description "Dependency inlining and shadowing tool." :url "https://github.com/benedekfazekas/mranderson" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in :leiningen :plugins [[thomasa/mranderson "0.5.1"]] :java-source-paths ["java-src"] :javac-options ["-target" "1.6" "-source" "1.6"] :filespecs [{:type :bytes :path "mranderson/project.clj" :bytes ~(slurp "project.clj")}] :dependencies [^:source-dep [com.cemerick/pomegranate "0.4.0"] ^:source-dep [org.clojure/tools.namespace "0.3.0-alpha3"] ^:source-dep [me.raynes/fs "1.4.6"] ^:source-dep [rewrite-clj "0.6.1"] ^:source-dep [parallel "0.10"] [com.googlecode.jarjar/jarjar "1.3"]] :mranderson {:project-prefix "mranderson.inlined"} :profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"] [leiningen-core "2.8.3"]]}}) (defproject prismatic/fnhouse "0.2.2-SNAPSHOT" :description "Transform lightly-annotated functions into a full-fledged web service" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/Prismatic/fnhouse" :dependencies [[prismatic/plumbing "0.4.3" :exclusions [prismatic/schema]] [prismatic/schema "1.0.1"]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.6.0"]] :global-vars {*warn-on-reflection* true}} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}} :aliases {"all" ["with-profile" "dev:dev,1.5:dev,1.7"]} :lein-release {:deploy-via :shell :shell ["lein" "deploy" "clojars"]}) (defproject onyx-app/lein-template "0.13.0.0-beta1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject me.frmr.tools/dstt "0.2.0" :description "Damn Simple Test Tool, a simple and rudamentary load testing library." :url "https://github.com/farmdawgnation/dstt" :license {:name "Apache License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-http "2.0.0"] [org.clojure/tools.cli "0.3.3"] [org.clojure/data.json "0.2.6"]] :main frmr.dstt :aot [frmr.dstt] :scm {:url "git@github.com:farmdawgnation/dstt.git"} :pom-addition [:developers [:developer [:name "Matt Farmer"] [:url "http://farmdawgnation.com"] [:email "matt@frmr.me"] [:timezone "-5"]]]) (defproject io.aviso/twixt "0.1.6" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.1"] [de.neuland/jade4j "0.3.15"] [io.aviso/pretty "0.1.6"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject compojure "1.5.1" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.8.2"] [ring/ring-core "1.5.0"] [ring/ring-codec "1.0.1"]] :plugins [[lein-codox "0.9.5"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :aliases {"test-all" ["with-profile" "default:+1.8" "test"]} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-beta2" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta2"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject onyx-app/lein-template "0.14.0.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject cljam "0.1.0-SNAPSHOT" :description "A DNA Sequence Alignment/Map (SAM) library for Clojure" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories [["clojars classic" "http://clojars.org/repo/"]] :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojure-contrib "1.2.0"] [org.utgenome.thirdparty/picard "1.86p"] [clj-sub-command "0.1.0-SNAPSHOT"]] :profiles {:dev {:dependencies [[midje "1.5.1"]]}} :main cljam.core) (defproject onyx-app/lein-template "0.8.2.1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject io.aviso/twixt "0.1.9" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [io.aviso/tracker "0.1.0"] [ring/ring-core "1.2.1"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.4"] [de.neuland-bfi/jade4j "0.4.0"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject jungerer "0.1.3" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.8.0"] [net.sf.jung/jung-algorithms "2.1"] [net.sf.jung/jung-api "2.1"] [net.sf.jung/jung-graph-impl "2.1"] [net.sf.jung/jung-io "2.1"] [net.sf.jung/jung-visualization "2.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true} :resource-paths ["dev-resources"]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]] :resource-paths ["dev-resources"]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject clj-gamification "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [http-kit "2.1.4"] [compojure "1.1.5"] [hiccup "1.0.3"] [hiccup-bootstrap "0.1.2"] [org.clojure/data.json "0.2.2"]] ;:plugins [[lein-ring "0.8.5"]] ;:ring {:handler clj-gamification.handler/app, :auto-refresh? true, :nrepl {:start? true #_(:port 7000)}} :main clj-gamification.handler :profiles {:dev {:source-paths ["dev"], :dependencies [[ring-mock "0.1.5"]]}, :production {:misc "configuration", ; app-specific stuff :mirrors {"central" "http://s3pository.herokuapp.com/clojure"}}} :min-lein-version "2.0.0") ;; ring-serve has old hiccup (defproject cats "0.5.0-SNAPSHOT" :description "Category Theory abstractions for Clojure" :url "https://github.com/funcool/cats" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :cljsbuild {:test-commands {"test" ["node" "output/tests.js"]} :builds [{:id "test" :source-paths ["src" "test"] :notify-command ["node" "output/tests.js"] :compiler {:output-to "output/tests.js" :output-dir "output" :source-map true :static-fns true :cache-analysis false :main cats.runner :optimizations :none :target :nodejs :pretty-print true}}]} :jar-exclusions [#"\.swp|\.swo"] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"] [org.clojure/clojure "1.7.0-RC1"] [org.clojure/clojurescript "0.0-3297"]] :codeina {:sources ["src"] :output-dir "doc/codeina"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [lein-cljsbuild "1.0.6"]]}}) (defproject hello "compojure" :description "JSON/Database tests" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.5"] [ring/ring-json "0.2.0"] [korma "0.3.0-RC5"] [log4j "1.2.15" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [mysql/mysql-connector-java "5.1.6"] [org.clojure/java.jdbc "0.3.0-alpha1"] [c3p0/c3p0 "0.9.1.2"] [hiccup "1.0.3"] [enlive "1.1.1"] ] :plugins [[lein-ring "0.8.2"]] :ring {:handler hello.handler/app} :profiles {:dev {:dependencies [[ring-mock "0.1.3"]]}}) (ns robot-name) (def ^:private letters (map char (range 65 91))) (defn- generate-name [] (format "%s%03d" (apply str (repeatedly 2 #(first (shuffle letters)))) (rand-int 1000))) (defn robot [] (atom {:name (generate-name)})) (defn robot-name [robot] (:name @robot)) (defn reset-name [robot] (swap! robot assoc :name (generate-name))) (ns jcf.integration-test (:require [clojure.java.io :as io] [clojure.java.shell :refer [sh]] [clojure.string :as str] [clojure.test :refer :all] [leiningen.new.jcf-static :refer :all] [leiningen.new.templates :refer [*dir*]] [me.raynes.fs :refer [temp-dir]])) (defn generate-project [test-fn] (let [app-name "example" sandbox ^java.io.File (temp-dir "jcf-")] (binding [*dir* (str sandbox "/" app-name)] (println (format "Generating project in %s..." *dir*)) (jcf-static app-name) (try (test-fn) (finally (when (.isDirectory sandbox) (println (format "Deleting project in %s..." *dir*)) (.delete sandbox))))))) (use-fixtures :once generate-project) (deftest test-lein-test (let [_ (println "Running lein test. This'll take a couple of seconds...") {:keys [exit out err]} (sh "lein" "test" :dir *dir*)] (is (zero? exit) (format "lein test failed with status %d.\nOut:\n%s\n\nErr:\n%s\n\n" exit out err)))) (ns luaclj.core-test (:require [clojure.test :refer :all] [luaclj.library :refer :all] [luaclj.core :refer :all])) (comment (parse-lua (slurp "resources/test/basic.lua")) (parse-lua (slurp "resources/test/function.lua")) ) (deftest a-test (testing "Lua test scripts" (is (= ((create-lua-fn (slurp "resources/test/basic.lua"))) 11)) (is (= ((create-lua-fn (slurp "resources/test/basic1.lua"))) "local_var_modified")) (is (= ((create-lua-fn (slurp "resources/test/break.lua"))) 3)) (is (= ((create-lua-fn (slurp "resources/test/for.lua"))) 5060)) (is (= ((create-lua-fn (slurp "resources/test/function1.lua"))) 26)) (is (= ((create-lua-fn (slurp "resources/test/function2.lua"))) 5)) (is (= ((create-lua-fn (slurp "resources/test/function3.lua"))) 34)) )) (ns comic-reader.main (:require [figwheel.client :as fw] [comic-reader.session :as session] [comic-reader.pages.sites :as sites] [comic-reader.pages.comics :as comics] [comic-reader.pages.reader :as reader] [reagent.core :as reagent :refer [atom]] [secretary.core :as secretary :include-macros true :refer [defroute]])) (enable-console-print!) (fw/start { ;; configure a websocket url if you are using your own server :websocket-url "ws://localhost:3449/figwheel-ws" ;; optional callback :on-jsload (fn [] (print "reloaded")) ;; The heads up display is enabled by default ;; to disable it: ;; :heads-up-display false ;; when the compiler emits warnings figwheel ;; blocks the loading of files. ;; To disable this behavior: ;; :load-warninged-code true ;; if figwheel is watching more than one build ;; it can be helpful to specify a build id for ;; the client to focus on :build-id "dev"}) (ns messaging.init (:require [immutant.messaging :as msg])) (msg/start "/topic/gravy") (let [p (promise) l (msg/listen "/topic/gravy" (fn [v] (deliver p v)))] (try (msg/publish "/topic/gravy" :success) (let [delivery (deref p 1000 :fail)] (if-not (= :success delivery) (throw (Exception. (str "Should have received :success, but got " delivery))))) (finally (msg/unlisten l)))) (defproject caesium "0.3.0" :description "libsodium for clojure" :url "https://github.com/lvh/caesium" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.abstractj.kalium/kalium "0.3.0" :scope "compile"]] :main ^:skip-aot caesium.core :target-path "target/%s" :profiles {:uberjar {:aot :all}} :global-vars {*warn-on-reflection* true}) (defproject onyx-app/lein-template "0.13.5.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;;; Copyright (c) 2013 David Goldfarb. All rights reserved. ;;; Contact info: deg@degel.com ;;; ;;; The use and distribution terms for this software are covered by the Eclipse ;;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can ;;; be found in the file epl-v10.html at the root of this distribution. ;;; By using this software in any fashion, you are agreeing to be bound by the ;;; terms of this license. ;;; ;;; You must not remove this notice, or any other, from this software. (defproject my-muxx-sites "0.1.0-SNAPSHOT" :description "Deployment project to wrap my web apps into a single site." :url "https://github.com/deg/my-muxx-sites" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [;; Clojure itself [org.clojure/clojure "1.5.1"] ;; Degel's Clojure utility library [degel-clojure-utils "0.1.6"] ;; Our apps [receipts "0.1.0-SNAPSHOT"]] :profiles {:dev { :plugins [[lein-marginalia "0.7.1"]]}} :main degel.deploy.deployment) (defproject io.aviso/rook "0.1.5-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"]]) (defproject eureka "0.1.4-SNAPSHOT" :description "A Clojure library that wraps the Curator service discovery/registration API." :dependencies [[cheshire "5.2.0"] [environ "0.4.0"] [org.apache.curator/curator-x-discovery "2.3.0"] [org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [zookeeper-clj "0.9.3"]] :profiles {:dev {:dependencies [[zookem "0.1.0-SNAPSHOT"] [midje "1.5.1"]] :plugins [[lein-midje "3.0.1"] [lein-release "1.0.5"]]}} :lein-release {:deploy-via :clojars :clojars-url "clojars@clojars.brislabs.com:"}) (defproject overtone "0.3.0" :description "An audio/musical experiment." :url "http://project-overtone.org" :autodoc {:load-except-list [#"/test/" #"/classes/" #"/devices/"] :namespaces-to-document ["overtone.core" "overtone.gui" "overtone.music" "overtone.studio"] :trim-prefix "overtone.",} :dependencies [[org.clojure/clojure "1.3.0-RC0"] [org.clojure/core.incubator "0.1.0"] [overtone/scsynth-jna "0.1.2-SNAPSHOT"] [overtone/at-at "0.2.0"] [overtone/osc-clj "0.7.0"] [overtone/byte-spec "0.3.0"] [overtone/midi-clj "0.2.0"]] :dev-dependencies [[marginalia "0.2.0"]] :jvm-opts ["-Xms256m" "-Xmx1g" "-XX:+UseConcMarkSweepGC"]) ;; The only requirement of the project.clj file is that it includes a ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. (defproject leiningen "1.5.0-SNAPSHOT" :description "A build tool designed not to set your hair on fire." :url "https://github.com/technomancy/leiningen" :license {:name "Eclipse Public License"} :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"] [org.apache.ant/ant "1.7.1"] [jline "0.9.94"] [robert/hooke "1.1.0"] [org.apache.maven/maven-ant-tasks "2.0.10" :exclusions [ant]]] :disable-implicit-clean true :eval-in-leiningen true) (defproject jungerer "0.4.2-SNAPSHOT" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :min-lein-version "2.7.0" :dependencies [[org.clojure/clojure "1.7.0"] [net.sf.jung/jung-algorithms "2.1.1"] [net.sf.jung/jung-api "2.1.1"] [net.sf.jung/jung-graph-impl "2.1.1"] [net.sf.jung/jung-io "2.1.1"] [net.sf.jung/jung-visualization "2.1.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true}} :1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha12"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (ns warreq.kea.calc.math (:require [clojure.math.numeric-tower :refer [expt]] [neko.notify :refer [toast]] [warreq.kea.calc.util :as u]) (:import java.math.BigDecimal)) (defn rpn "Evaluate an expression composed in Reverse Polish Notation and return the result. `rpn` may optionally take a stack-based representation of an expression as a secondary parameter." ([e] (rpn e '())) ([e s] (if (empty? e) s (if (number? (first e)) (recur (rest e) (conj s (first e))) (recur (rest e) (conj (drop 2 s) (reduce (first e) (reverse (take 2 s))))))))) (defn floating-division [x y] (if (not= ^BigDecimal y BigDecimal/ZERO) (.divide ^BigDecimal x ^BigDecimal y 2 java.math.RoundingMode/HALF_EVEN) (do (u/vibrate! 500) (toast "Cannot divide by 0.")))) (defn op-alias [op] (case op "^" expt "÷" floating-division "×" * "+" + "-" -)) {:user {:env {:squiggly {:checkers [:eastwood]}} :plugin-repositories [["private-plugins" {:url "private repo url"}]] :singing {:gpg-key "matthew.russell@wormbase.org"} :dependencies [[clojure-ini "0.0.2"] [me.raynes/fs "1.4.6"]] :plugins [[cider/cider-nrepl "0.15.0-SNAPSHOT"] [refactor-nrepl "0.2.2"] [jonase/eastwood "0.2.3"] [lein-ancient "0.6.8"] [lein-bikeshed "0.3.0"] [lein-kibit "0.1.2"] [lein-ns-dep-graph "0.1.0-SNAPSHOT"]]} :repl {:dependencies [[acyclic/squiggly-clojure "0.1.6"] [datomic-schema-grapher "0.0.1"] [org.clojure/tools.nrepl "0.2.12"]]} ;; VisualVM profiling opts :jvm-opts ["-Dcom.sun.management.jmxremote" "-Dcom.sun.management.jmxremote.ssl=false" "-Dcom.sun.management.jmxremote.authenticate=false" "-Dcom.sun.management.jmxremote.port=43210"]} (ns dashboard-clj.widgets.simple-text (:require [reagent.core :as r :refer [atom]] [dashboard-clj.widgets.core :as widget-common])) (defmethod widget-common/widget :simple-text [{:keys [text data] :as w}] [:div {:class "simple-text-widget"} [:span {:class "title"} (:title w)] [:div {:class "data"} [:span (get-in @data [:value]) (:text w)]] ]) (defproject onyx-app/lein-template "0.11.0.0-alpha4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject com.hypirion/io "0.3.0-SNAPSHOT" :description "I/O classes in Java for those with specific needs." :url "https://github.com/hyPiRion/com.hypirion.io" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :source-paths [] :java-source-paths ["src"]) (defproject padawan "0.1.0" :description "Multiplayer Clojure web REPL for teaching and learning" :url "http://github.com/mkremins/padawan" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT" :distribution :repo} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/data.json "0.2.4"] [compojure "1.1.6"] [http-kit "2.1.18"] [ring/ring-core "1.2.2"]] :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"]]}} :main padawan.core) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-alpha4" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-alpha4"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject circleci "0.1.0-SNAPSHOT" :description "FIXME: write this!" :dependencies [[org.clojure/clojure "1.2.1"] [noir "1.1.0"] [enlive "1.0.0"]] :main circleci.server) (defproject org.onyxplatform/onyx-sql "0.7.3-SNAPSHOT" :description "Onyx plugin for JDBC-backed SQL databases" :url "https://github.com/MichaelDrogalis/onyx-sql" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/java.jdbc "0.3.3"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_202930-g49ef67c"] [java-jdbc/dsl "0.1.3"] [com.mchange/c3p0 "0.9.2.1"] [honeysql "0.5.1"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [environ "1.0.0"] [mysql/mysql-connector-java "5.1.25"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject com.nomistech/clojure-the-language "0.1.0-SNAPSHOT" :dependencies [[cheshire "5.4.0"] [com.climate/claypoole "1.1.4"] [com.taoensso/timbre "4.8.0"] [org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.3.442"] [org.clojure/core.match "0.3.0-alpha4"] [prismatic/schema "1.0.5"] [slingshot "0.12.2"]] :repl-options {:init-ns user} :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"] [midje "1.7.0"]] :source-paths ["dev"] :plugins [[lein-midje "3.1.3"]]}}) (defproject funcool/futura "0.2.0" :description "A basic building blocks for async programming." :url "https://github.com/funcool/futura" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0-RC1" :scope "provided"] [cats "0.4.0"] [manifold "0.1.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.reactivestreams/reactive-streams "1.0.0"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :language :clojure :output-dir "doc/api"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]}}) (defproject reiddraper/simple-check "0.1.1-SNAPSHOT" :description "A QuickCheck inspired property-based testing library." :url "http://github.com/reiddraper/simple-check" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.0"]] :plugins [[codox "0.6.4"]]) (defproject moves-server "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[lein-ring "0.8.11"] [lein-environ "1.0.0"]] :ring {:handler moves-server.core/app} :dependencies [[org.clojure/clojure "1.6.0"] [ring/ring-core "1.3.2"] [clj-http "1.1.2"] [environ "1.0.0"] [ring/ring-jetty-adapter "1.3.2"]]) (defproject compojure "1.4.0" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.7.1"] [ring/ring-core "1.4.0"] [ring/ring-codec "1.0.0"]] :plugins [[lein-codox "0.9.3"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject onyx-app/lein-template "0.9.10.0-beta3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject rivulet "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-1885"] [enfocus "2.0.0-beta1"]] :source-paths ["src/clj"] :resource-paths ["src/js" "src/rb" "target/resources"] :plugins [[lein-cljsbuild "0.3.2"] [lein-vertx "0.1.0-SNAPSHOT"]] :profiles {:provided {:dependencies [[io.vertx/clojure-api "0.3.0-SNAPSHOT"]]}} :cljsbuild {:crossovers [rivulet.config] :builds [{:source-paths ["src/cljs"] :compiler {:output-to "resources/client.js"} :crossover-path "target/crossover-cljs"}]} :vertx {:main-fn rivulet.init/init}) (ns slack-invite.core (:require [bidi.bidi :as b] [bidi.ring :refer (make-handler)] [clj-slack.core :as slack])) (defn showForm [request] {:status 200 :headers {"Content-Type" "text/html"} :body "

Hello world!

"}) (defn handleForm [request] ) (def routes ["/" {:get showForm :post handleForm}]) (def handler (make-handler routes)) (defproject buddy/buddy-core "0.6.0" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [commons-codec/commons-codec "1.10"] [org.bouncycastle/bcprov-jdk15on "1.52"] [org.bouncycastle/bcpkix-jdk15on "1.52"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :exclude [buddy.core.sign.impl] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.2.0" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.7"]]}}) (defproject introspect "1.0.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :test-paths ["test/clj"] :source-paths ["src/clj"] :java-source-paths ["src/java"] :aot [introspect.core] :manifest {"Premain-class" "introspect.Premain" "Agent-class" "introspect.Premain" "Can-Redefine-Classes" "true" "Can-Retransform-Classes" "true"} :jvm-opts ["-noverify"] :profiles {:test {:dependencies [[org.clojure/tools.nrepl "0.2.7"]] :jvm-opts ["-noverify" ~(str "-javaagent:" (System/getProperty "user.dir") "/target/introspect-1.0.0-SNAPSHOT-standalone.jar=introspect.helpers.simple-functions")] }} :dependencies [[org.clojure/clojure "1.6.0"] [net.bytebuddy/byte-buddy-agent "0.5.3"] [net.bytebuddy/byte-buddy "0.5.3"]] ) (defproject try-clojure "0.1.0-SNAPSHOT" :min-lein-version "2.0.0" :description "Try Clojure" :url "http://try-clojure.herokuapp.com" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [ring "1.1.8"] [compojure "1.1.5"] [de.ubercode.clostache/clostache "1.3.1"]] :main try-clojure.core) (defproject mars-ogler "1.0.1-SNAPSHOT" :description "Holy cow, it's Mars!" :url "http://github.com/aperiodic/mars-ogler" :license {:name "GNU Affero GPL" :url "http://www.gnu.org/licenses/agpl"} :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.cli "0.2.2"] [cheshire "5.2.0"] [clj-http "0.6.3"] [clj-time "0.4.4"] [compojure "1.1.3"] [enlive "1.0.1"] [hiccup "1.0.0"] [ring/ring-core "1.1.6"] [ring/ring-jetty-adapter "1.1.6"]] :plugins [[lein-ring "0.7.1"]] :main mars-ogler.main :uberjar-name "mars-ogler.jar" :jvm-opts ["-Xmx576m"] :ring {:handler mars-ogler.routes/ogler-handler :init mars-ogler.images/setup!}) (defproject io.aviso/twixt "0.1.7" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.1"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.1"] [de.neuland-bfi/jade4j "0.4.0"] [io.aviso/pretty "0.1.8"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (ns name-bazaar.ui.subs.watched-names-subs (:require [medley.core :as medley] [re-frame.core :refer [reg-sub subscribe]])) (reg-sub :watched-names (fn [db] (:watched-names db))) (reg-sub :watched-names/watched-items :<- [:watched-names] :<- [:ens/records] (fn [[watched-names ens-records]] (map (fn [node] (let [{:keys [:ens.record/name] :as watched-ens-record} (get-in watched-names [:ens/records node])] (merge watched-ens-record {:ens.record/node node}))) (:order watched-names)))) (reg-sub :watched-names.node/watched? :<- [:watched-names] (fn [watched-names [_ node]] (boolean (get-in watched-names [:ens/records node])))) (ns yetibot.core.logging (:require [schema.core :as s] [yetibot.core.config :refer [get-config]] [yetibot.core.util :refer [with-fresh-db]] [yetibot.core.db.log :as log] [taoensso.timbre.appenders.3rd-party.rolling :refer [rolling-appender]] [taoensso.timbre.appenders.core :refer [println-appender]] [taoensso.timbre :as timbre :refer [trace debug info warn error fatal spy with-log-level]])) (def config-schema String) (defn log-level [] (let [v (get-config config-schema [:log :level])] (if (:error v) ;; default config level :warn (keyword (:value v))))) (defn rolling-appender-enabled? "Rolling appender is enabled by default. Disable it by setting enabled=false" [] (let [v (get-config String [:log :rolling :enabled])] (if-let [enabled (:value v)] (not= enabled "false") true))) (defn start [] (timbre/set-config! {:level (log-level) :appenders ;; stdout {:println (println-appender {:stream :auto}) ;; rolling log files :rolling-appender (rolling-appender {:enabled? (rolling-appender-enabled?) :path "/var/log/yetibot/yetibot.log" :pattern :daily})}})) {:wrap-reload false :db-host "localhost" :db-name "mydb" :db-user nil :db-pwd nil :jetty-port 8080 :host "smtp.googlemail.com" :user "team@4clojure.com" :problem-submission true :advanced-user-count 50 :pass "" :repo-url "https://github.com/4clojure/4clojure" :hosts {;; :static "static.4clojure.com" ;; :dynamic "www.4clojure.com" :redirects ["4clojure.com"]} :golfing-active true :heartbeat nil ; set to, eg, [1 :hour] for periodic heap information on stdout ;; this list is just for bootstrapping - the real DB is authoritative :contributors ["amalloy" "dbyrne" "raynes" "cmeier" "devn" "0x89" "citizen428" "daviddavis" "clinteger" "amcnamara"]} (def project 'hangul-utils) (def version "0.1.0-SNAPSHOT") (set-env! :resource-paths #{"resources" "src"} :source-paths #{"test"} :dependencies '[[org.clojure/clojure "RELEASE"] [adzerk/boot-test "RELEASE" :scope "test"]]) (task-options! pom {:project project :version version :description "For splitting and Korean unicode characters (syllables, jaeum, moeum) in Clojure" :url "http://github.com/sooheon/hangul-utils" :scm {:url "https://github.com/sooheon/hangul-utils"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}}) (deftask build "Build and install the project locally." [] (comp (pom) (jar) (install))) (require '[adzerk.boot-test :refer [test]]) (ns doctopus.storage.impls.permanent-fs (:require [bidi.ring :as bidi-ring] [doctopus [configuration :refer [server-config]] [files :as files]] [doctopus.storage.impls.fs-impl :refer [save-html-file] :as fs-impl] [me.raynes.fs :as fs])) ;; TODO: this does not actually work the way we need it to! Neat! --RMD (def root (fs/file (:permanent-fs-root (server-config)))) (if-not (fs/exists? root) (fs/mkdirs root)) (defn save-fn "Save a dir of html stuff by moving it in to the annointed dir in the permanent fs" [key src-dir] (binding [fs/*cwd* root] (let [target-dir (fs/file key) result (fs/copy-dir src-dir target-dir)] (and (fs/exists? result) (fs/readable? result))))) (defn load-fn "Returns the routes this serves" [key] (let [file-handle (binding [fs/*cwd* root] (fs/file key)) file-name (str (.getPath file-handle) "/")] [key {"/" (bidi-ring/->Files {:dir file-name})}])) (defn remove-fn [key] (fs-impl/remove-html root key)) (ns clj-record.test.main (:require [clojure.contrib.sql :as sql] [clojure.contrib.test-is :as test-is] clj-record.config)) (defn drop-tables [] (try (sql/drop-table :manufacturer) (sql/drop-table :product) (catch Exception e))) (defn create-tables [] (sql/create-table :manufacturers [:id "INT" "GENERATED ALWAYS AS IDENTITY CONSTRAINT manufacturer_pk PRIMARY KEY"] [:name "VARCHAR(32)" "NOT NULL"] [:founded "VARCHAR(4)"] [:grade :real]) (sql/create-table :products [:id "INT" "GENERATED ALWAYS AS IDENTITY CONSTRAINT product_pk PRIMARY KEY"] [:name "VARCHAR(32)" "NOT NULL"] [:price "INT"] [:manufacturer_id "INT" "NOT NULL"])) (sql/with-connection clj-record.config/db (sql/transaction (drop-tables) (create-tables))) (println "Setup complete.") (load "core-test") (load "associations-test") (load "validation-test") (test-is/run-all-tests) (defproject buddy/buddy-core "0.6.0" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0"] [commons-codec/commons-codec "1.10"] [org.bouncycastle/bcprov-jdk15on "1.52"] [slingshot "0.12.2"] [org.bouncycastle/bcpkix-jdk15on "1.52"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :exclude [buddy.core.sign.impl] :language :clojure :output-dir "doc/dist/latest/api" :src-dir-uri "http://github.com/funcool/buddy-core/blob/master/" :src-linenum-anchor-prefix "L"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]}}) (defproject onyx-app/lein-template "0.13.0.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns gorillalabs.tesla.component.mongo (:require [monger.core :as mg] [monger.credentials :as mg-cred] [mount.core :as mnt]) (:import [com.mongodb MongoOptions ServerAddress WriteConcern])) (defn- start [] (let [^MongoOptions opts (mg/mongo-options {:threads-allowed-to-block-for-connection-multiplier 300}) ^ServerAddress sa (mg/server-address "127.0.0.1" 27017) cred (mg-cred/create "root" "admin" "password") conn (mg/connect sa opts cred)] conn)) (defn- stop [mongo] (mg/disconnect mongo) ) (mnt/defstate mongo :start (start) :stop (stop mongo))(defproject org.onyxplatform/onyx-metrics "0.8.0.8" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject cli4clj "1.2.4" ;(defproject cli4clj "1.2.4-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.15.0"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.2.5"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.2" :exclusions [org.clojure/clojure]]]}} ) ;;;; This file is part of gorilla-repl. Copyright (C) 2014-, Jony Hudson. ;;;; ;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details. (defproject gorilla-repl "0.3.3-SNAPSHOT" :description "A rich REPL for Clojure in the notebook style." :url "https://github.com/JonyEpsilon/gorilla-repl" :license {:name "MIT"} :dependencies [[org.clojure/clojure "1.6.0"] [http-kit "2.1.16"] [ring/ring-json "0.2.0"] [cheshire "5.0.2"] [compojure "1.1.6"] [org.slf4j/slf4j-api "1.7.5"] [ch.qos.logback/logback-classic "1.0.13"] [clojure-complete "0.2.3"] [gorilla-renderable "1.0.0"] [org.clojure/data.codec "0.1.0"] [grimradical/clj-semver "0.2.0" :exclusions [org.clojure/clojure]]] :main ^:skip-aot gorilla-repl.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns advent-of-code-day-2.core (:require [clojure.string :as string] [clojure.math.combinatorics :as combo]) (:gen-class)) (defn parse-dimensions [dimensions-string] (map #(Integer/parseInt %) (string/split dimensions-string #"x"))) ;(defn calc-face-areas [dimensions] ; ;; this version doesn’t work – ; ;; combo/combinations “helpfully” throws out duplicate combinations, ; ;; so input [1 1 10] results in two face areas instead of three ; (map (partial apply *) (combo/combinations dimensions 2))) (defn calc-face-areas [[l h w]] [(* l h) (* l w) (* h w)]) (defn wrapping-area [dimensions] (let [face-areas (calc-face-areas dimensions) smallest-face-area (apply min face-areas) surface-area (* 2 (apply + face-areas))] (+ surface-area smallest-face-area))) (defn ribbon-length [dimensions] (let [present-length (* 2 (apply + (take 2 (sort dimensions)))) bow-length (apply * dimensions)] (+ present-length bow-length))) (defn -main "Print total wrapping paper needed given present dimensions." [& args] (->> (slurp *in*) (string/split-lines) (map parse-dimensions) #_(map wrapping-area) (map ribbon-length) (reduce +) (println))) (ns clj-record.validation (:use clj-record.util) (:use clj-record.core)) (defn- validations-for [model-name] ((@all-models-metadata model-name) :validations)) (defn validate [model-name record] (reduce (fn [errors [attr message validation-fn]] (if (validation-fn (record attr)) errors (merge-with (fn [result addl-val] (apply conj result addl-val)) errors {attr [message]}))) {} (validations-for model-name))) (defn- validates [model-name attribute-name message function] (dosync (let [metadata (@all-models-metadata model-name) validations (or (@metadata :validations) [])] (ref-set metadata (assoc @metadata :validations (conj validations [(keyword (name attribute-name)) message (eval function)]))))) '(identity 1)) ; XXX: Have to return a no-op form since we don't need any defs. (ns vadas.core) (defn start-listening "Test CMU Sphinx4 listener" [] (let [config (new edu.cmu.sphinx.api.Configuration)] (println "Created new configuration: " (str config)))) (defn -main "VADAS" [] (start-listening)) (ns theatralia.core) ;;; This is an incorrect implementation, such as might be written by ;;; someone who was used to a Lisp in which an empty list is equal to ;;; nil. (defn first-element [sequence default] (if (nil? sequence) default (first sequence))) (require '[cljs.build.api :as b]) (b/watch (b/inputs "src" "vendor" "test") {:main 'uxbox.test-runner :output-to "out/tests.js" :output-dir "out" :parallel-build false :optimizations :none :pretty-print true :target :nodejs :language-in :ecmascript5 :language-out :ecmascript5 :verbose true}) (ns desdemona.query-test (:require [desdemona.query :as q] [clojure.test :refer [deftest is]])) (deftest query-tests (is (= [[{:ip "10.0.0.1"}]] (q/run-query '(== (:ip x) "10.0.0.1") [{:ip "10.0.0.1"}])))) (def root-ns "org.broadinstitute") (def build-dir-relative "target") (defproject org.broadinstitute/firecloud-ui "0.0.1" :dependencies [ ;; React library and cljs bindings for React. [dmohs/react "0.2.7"] [org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-3211"] [inflections "0.9.14"] ] :plugins [[lein-cljsbuild "1.0.5"] [lein-figwheel "0.3.1"]] :hooks [leiningen.cljsbuild] :profiles {:dev {:cljsbuild {:builds {:client {:compiler {:optimizations :none :source-map true :source-map-timestamp true} :figwheel {:on-jsload ~(str root-ns ".firecloud-ui.main/dev-reload")}}}}} :release {:cljsbuild {:builds {:client {:compiler {:optimizations :advanced :pretty-print false :closure-defines {"goog.DEBUG" false}}}}}}} :cljsbuild {:builds {:client {:source-paths ["src/cljs"] :compiler {:output-dir ~(str build-dir-relative "/build") :output-to ~(str build-dir-relative "/compiled.js")}}}}) (defproject test-utils-cljs "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.8.51" :classifier "aot" :exclusion [org.clojure/data.json]] [org.clojure/data.json "0.2.6" :classifier "aot"]] :jvm-opts ^:replace ["-Xmx1g" "-server"] :plugins [[lein-npm "0.6.1"]] :npm {:dependencies [[source-map-support "0.3.2"]]} :source-paths ["src" "target/classes"] :clean-targets ["out" "release"] :target-path "target") (ns decktouch.handler (:require [decktouch.dev :refer [browser-repl start-figwheel]] [compojure.core :refer [GET POST defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [ring.middleware.params :refer [wrap-params]] [ring.middleware.reload :refer [wrap-reload]] [ring.adapter.jetty :as jetty] [selmer.parser :refer [render-file]] [environ.core :refer [env]] [prone.middleware :refer [wrap-exceptions]] [decktouch.mtg-card-master :as mtg-card-master] [clojure.data.json :as json])) (defroutes routes (GET "/" [] (render-file "templates/index.html" {:dev (env :dev?)})) (GET "/data/input/:query" [query] (json/write-str (mtg-card-master/get-cards-matching-query query))) (POST "/data/card" request (let [card-name ((request :params) "card-name")] (str (mtg-card-master/get-card-info card-name)))) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-reload (wrap-params routes site-defaults))] (if (env :dev?) (wrap-reload (wrap-exceptions handler)) handler))) (ns com.palletops.bakery.om-root "A component for an Om root element." (:require-macros [com.palletops.api-builder.api :refer [defn-api]]) (:require [com.palletops.leaven.protocols :refer [Startable Stoppable]] [om.core :as om :include-macros true] [schema.core :as schema])) (defrecord OmRoot [f value options] Startable (start [_] (om/root f value options)) Stoppable (stop [_] (om/detach-root (:target options)))) (def OmRootFun (schema/make-fn-schema schema/Any [[schema/Any schema/Any]])) (def OmRootOptions {:f OmRootFun :value schema/Any :options {schema/Keyword schema/Any}}) (defn-api om-root "Return an om-root component" {:sig [[OmRootOptions :- OmRoot] [OmRootFun schema/Any {schema/Keyword schema/Any} :- OmRoot]]} ([f value options] (->OmRoot f value options)) ([{:keys [f value options] :as args}] (map->OmRoot args))) (ns genartlib.util (:use [quil.core :only [height width PI color-mode]])) (defn h ([] (h 1.0)) ([percentage] (* (height) percentage))) (defn w ([] (w 1.0)) ([percentage] (* (width) percentage))) (defn pi [x] (* PI x)) (defn in? "true if seq contains elm" [seq elm] (some #(= elm %) seq)) (defn not-in? "true if seq does not contain elm" [seq elm] (not-any? #(= elm %) seq)) (defn between? "Returns true if value is between end1 and end2" [value end1 end2] (and (>= value (min end1 end2)) (<= value (max end1 end2)))) (defn set-color-mode [] (color-mode :hsb 360 100 100 1.0)) (defn enumerate [s] (map-indexed vector s)) (defn zip [seq1 seq2] (map vector seq1 seq2)) (ns lexemic.core) (defn -main [& command]) (set! *main-cli-fn* -main) (ns braid.emoji.client.styles) (def autocomplete [:.app>.main>.page>.threads>.thread>.card [:>.message.new [:>.autocomplete-wrapper [:>.autocomplete [:>.result [:>.emoji.match [:>img {:display "block" :width "2em" :height "2em" :float "left" :margin "0.25em 0.5em 0.25em 0"}]]]]]]]) (ns isla.test.story (:use [clojure.test]) (:use [clojure.pprint]) (:use [isla.story])) ;; story creation (deftest test-room-creation (let [story-str (str "palace is a room") story (init-story story-str)] (is (= (first (:rooms story)) (assoc (isla.interpreter/instantiate-type (get types "room")) :name "palace"))))) (deftest test-player-alteration (let [story-str (str "my name is 'mary'") story (init-story story-str)] (is (= (:player story) (assoc (isla.interpreter/instantiate-type (get types "_player")) :name "mary"))))) (deftest test-room-alteration (let [description "The floors are made of marble." story-str (str "palace is a room palace description is '" description "'") story (init-story story-str)] (is (= (first (:rooms story)) (assoc (isla.interpreter/instantiate-type (get types "room")) :name "palace" :description description))))) {:name "tnseq-phase0-d", :path "", :graph {:coll {:type "func" :name "collapser"} :mail {:type "func" :name "mailit" :args ["#2" ; recipient "Aerobio job status: tnseq phase-0d" "Finished"]} ; subject, body intro :edges {:coll [:mail]}} :description "Basically, Tn-Seq collapser. Unclear if this is really needed as the collapse node is now part of phase-0*" } (ns solver.core (:gen-class)) (defn determine-floor [word] "Determines which floor Santa should deliver presents" (let [freqs (frequencies word)] (- (get freqs \( 0) (get freqs \) 0)))) (defn -main "I don't do a whole lot ... yet." [& args] (println (determine-floor (slurp "input")))) (defproject hello "compojure" :description "JSON/Database tests" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.5"] [ring/ring-json "0.2.0"] [org.clojure/tools.cli "0.2.1"] [http-kit/dbcp "0.1.0"] [http-kit "2.0.1"] [log4j "1.2.15" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [mysql/mysql-connector-java "5.1.6"]] :main hello.handler :aot [hello.handler] :uberjar-name "http-kit-standalone.jar" :profiles {:dev {:dependencies [[ring-mock "0.1.3"]]}}) (defproject simple "0.11.0-rc2-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.52"] [reagent "0.9.0-rc1"] [re-frame "0.11.0-rc2-SNAPSHOT"]] :plugins [[lein-shadow "0.1.6"]] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (set-env! :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [afrey/boot-asset-fingerprint "1.0.0-SNAPSHOT"] [pandeiro/boot-http "0.7.3" :scope "test"]]) (require '[afrey.boot-asset-fingerprint :refer [asset-fingerprint]] '[pandeiro.boot-http :refer [serve]]) (deftask dev [] (comp (watch) (serve :port 5000 :reload true) (asset-fingerprint) (target))) (defproject replete "0.1.0" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.170"] [tailrecursion/cljson "1.0.7"] [parinfer "0.2.0"]] :clean-targets ["out" "target"] :plugins [[lein-cljsbuild "1.1.1"]] :cljsbuild {:builds {:test {:source-paths ["src" "test"] :compiler {:output-to "test/resources/compiled.js" :optimizations :whitespace :pretty-print true}}} :test-commands {"test" ["phantomjs" "test/resources/test.js" "test/resources/test.html"]}}) (ns circle.swank (:require swank.swank) (:require [circle.env :as env])) (defn port [] (cond (env/test?) 5004 :else 4005)) (defn init [] (when (= "true" (System/getenv "CIRCLE_SWANK")) (binding [*print-length* 100 *print-level* 20] (println "Starting Swank") (clojure.main/with-bindings (swank.swank/start-server :port (port) :encoding "utf-8"))))) (defproject {{name}} "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2127"]] :plugins [[lein-cljsbuild "1.0.1"]] :source-paths ["src"] :cljsbuild { :builds [{:id "{{name}}" :source-paths ["src"] :compiler { :output-to "{{sanitized}}.js" :output-dir "out" :optimizations :none :source-map true}}]}) (ns incise.deploy.core (:require [taoensso.timbre :refer [warn]]) (:clojure-refer :exclude [get])) (def workflows (atom {})) (defn get [& args] (apply clojure.core/get @workflow args)) (defn deploy [] (let [{workflow-name :workflow :as settings} (conf/get :deploy) [workflow (get workflow-name)]] (if workflow (workflow settings) (warn "No workflow registered as" workflow-name)))) (defn register "Register a deployment workflow." [workflow-name workflow] (swap! workflows assoc (name workflow-name) workflow)) (ns nightmod.public (:require [nightmod.core :refer :all] [play-clj.core :refer :all])) (defn set-game-screen! [& screens] (->> (apply set-screen! nightmod (conj (vec screens) overlay-screen)) (fn []) (app! :post-runnable))) (ns yada.etag) (defprotocol ETag "The version function returns material that becomes the ETag response header. This is left open for extension. The ETag must differ between representations, so the representation is given in order to be used in the algorithm. Must always return a string (to aid comparison with the strings the client will present on If-Match, If-None-Match." (to-etag [_ rep])) (extend-protocol ETag Object (to-etag [o rep] (str (hash {:value o :representation rep}))) nil (to-etag [o rep] nil)) (ns uxbox.ui.forms (:require [sablono.core :refer-macros [html]] [uxbox.locales :refer (tr)] [uxbox.schema :as sc])) (defn input-error [errors field] (when-let [errors (get errors field)] (html [:ul.form-errors (for [error errors] [:li {:key error} (tr error)])]))) (defn error-class [errors field] (when (get errors field) "invalid")) (ns circle.util.test-straight-jacket (:use midje.sweet) (:use circle.util.straight-jacket) (:require [circle.airbrake :as airbrake])) (fact "straight-jacket catches exceptions" (straight-jacket (throw (Exception. "test"))) => nil (provided (airbrake/airbrake) => nil (circle.env/env) => :production)) (fact "except in test mode" (straight-jacket (/ 1 0)) => (throws ArithmeticException) (provided (circle.env/env) => :test)) (fact "and dev mode" (straight-jacket (/ 1 0)) => (throws ArithmeticException) (provided (circle.env/env) => :development)) (fact "code still works in a straight-jacket" (straight-jacket (+ 4 5)) => 9) (fact "straight-jacket catches assertions" (straight-jacket (assert false)) => nil (provided (airbrake/airbrake) => nil (circle.env/env) => :production))(ns com.wsscode.pathom.misc) #?(:clj (def INCLUDE_SPECS true) :cljs (goog-define INCLUDE_SPECS true)) (ns incise.layouts.core (:require [incise.parsers.parse] [incise.config :as conf]) (:refer-clojure :exclude [get])) (defonce layouts (atom {})) (defn exists? "Check for the existance of a layout with the given name." [layout-with-name] (contains? @layouts (name layout-with-name))) (defn get [layout-name & more] (apply @layouts (name layout-name) more)) (defn Parse->string [^incise.parsers.parse.Parse parse-data] (if-let [layout-key (:layout parse-data)] (if-let [layout-fn (get layout-key)] (layout-fn (conf/get) parse-data) (throw (ex-info (str "No layout function of with registered with key " layout-key) {:layouts @layouts}))) (throw (ex-info (str "No layout key specified in given parse.") {:layouts @layouts :parse parse-data})))) (defn register "Register a layout function to a shortname" [short-names layout-fn] (swap! layouts merge (zipmap (map name short-names) (repeat layout-fn)))) ; Copyright © 2015-2018 Esko Luontola ; This software is released under the Apache License 2.0. ; The license text is at http://www.apache.org/licenses/LICENSE-2.0 (ns territory-bro.dev-middleware (:require [prone.middleware :refer [wrap-exceptions]] [ring-debug-logging.core :refer [wrap-with-logger]] [ring.middleware.reload :refer [wrap-reload]] [selmer.middleware :refer [wrap-error-page]])) (defn wrap-dev [handler] (-> handler wrap-with-logger wrap-reload wrap-error-page ;; FIXME: prone fails to load its own css, so the error pages are useless #_(wrap-exceptions {:app-namespaces ['territory-bro]}))) (ns gtfve.handler (:require [compojure.core :refer [GET defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [selmer.parser :refer [render-file]] [prone.middleware :refer [wrap-exceptions]] [environ.core :refer [env]])) (defroutes routes (GET "/" [] (render-file "templates/index.html" {:dev (env :dev?)})) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-defaults routes site-defaults)] (if (env :dev?) (wrap-exceptions handler) handler))) (ns io.pivotal.pcf.rabbitmq.main-test (:require [clojure.test :refer :all] [io.pivotal.pcf.rabbitmq.main :as main] [io.pivotal.pcf.rabbitmq.server :as server])) (defn FakeExit [^long status] (def FakeExitCalled status)) (defn FakeServerStart [m] (throw (Exception. "Something Terrible Happened"))) ; (Thread. (fn [] (prn "Started Fake Sever")))) (deftest initialization (testing "when server starts with an error" (with-redefs [server/start FakeServerStart main/exit FakeExit] (def FakeExitCalled nil) (main/-main "-c" "test/config/valid.yml") (is (= FakeExitCalled 1))))) (ns github-changelog.semver-test (:require [github-changelog.semver :as semver] [github-changelog.schema :refer [Semver]] [github-changelog.schema-complete :refer [complete]] [github-changelog.version-examples :refer :all] [clojure.test :refer :all] [schema.core :as s])) (deftest extract (testing "with a v prefix" (are [version] (s/validate Semver (semver/extract version)) "v0.0.1" "v0.9.3-pre0" "v1.0.1")) (testing "without a v prefix" (are [version] (s/validate Semver (semver/extract version)) "0.0.1" "0.9.3-pre0" "1.0.1"))) (deftest newer? (let [high (complete {:major 1} Semver) low (complete {:major 0} Semver)] (is (semver/newer? high low)) (is (not (semver/newer? low high))))) (deftest semver-type (is (= (semver/get-type v-major) :major)) (is (= (semver/get-type v-minor) :minor)) (is (= (semver/get-type v-patch) :patch)) (is (= (semver/get-type v-pre-release) :pre-release)) (is (= (semver/get-type v-build) :build))) {:user { :plugins [[cider/cider-nrepl "0.12.0"] [lein-ancient "0.6.8"] [lein-bikeshed "0.3.0"] [jonase/eastwood "0.2.3"] [lein-kibit "0.1.2"] [lein-pprint "1.1.1"]] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.reader "1.0.0-alpha3"] [com.cemerick/url "0.1.1"] [datomic-schema-grapher "0.0.1"] [com.datomic/datomic-pro "0.9.5350"] [me.raynes/fs "1.4.6"] [clj-stacktrace "0.2.8"] [acyclic/squiggly-clojure "0.1.5"] ^:replace [org.clojure/tools.nrepl "0.2.12"] ;; Consider using typed? [org.clojure/core.typed "0.3.22"] ] } ;; VisualVM profiling opts :jvm-opts ["-Dcom.sun.management.jmxremote" "-Dcom.sun.management.jmxremote.ssl=false" "-Dcom.sun.management.jmxremote.authenticate=false" "-Dcom.sun.management.jmxremote.port=43210"]} (ns clj-record.query (:require [clojure.contrib.str-utils :as str-utils])) (defmacro generate-predicate [predicate join-predicate-params-with values] `(fn [attribute#] (let [[clause# params#] [(str-utils/str-join ~join-predicate-params-with (reduce (fn [predicate-params# value#] (conj predicate-params# (if (nil? value#) "NULL" "?"))) [] ~values)) (filter (complement nil?) ~values)]] [(format (str "%s " ~predicate) (name attribute#) clause#) params#]))) (defn between [value1 value2] (generate-predicate "BETWEEN %s" " AND " [value1 value2])) (defn in [& values] (generate-predicate "IN (%s)" ", " values)) (defn like [value] (generate-predicate "LIKE %s" "" [value])); This is a wrapper Clojure script that checks command line args and calls the ; methods we have defined in pi.clj. ; We could actually build in this script because of the way LISPs like Clojure ; work but that would mean building every time, so leave it to Make. (def n 10000000) (if (> (count *command-line-args*) 0) (def n(Integer/parseInt (first *command-line-args*))) ) (import 'pi) (println "Calculating PI using:") (println " " n "slices") (println " 1 processes") ; When referring to Java stuff the syntax is class/method. (def start (System/currentTimeMillis)) ; Call our function for estimating pi. (def mypi (pi/calcpi n)) (def stop (System/currentTimeMillis)) (def difference (/ (- stop start) 1000.0)) (println "Obtained value of PI:" mypi) (println "Time taken:" difference "seconds")(defproject cryogen/lein-template "0.6.2" :description "A Leiningen template for the Cryogen static site generator" :url "https://github.com/cryogen-project/cryogen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/cryogen-project/cryogen.git"} :dependencies [[org.clojure/core.unify "0.5.7"] [org.clojure/core.contracts "0.0.6"] [leinjacker "0.4.2" :exclusions [org.clojure/clojure org.clojure/core.contracts org.clojure/core.unify]] [org.clojure/tools.namespace "0.2.11" :exclusions [org.clojure/clojure]]] :eval-in-leiningen true) (defproject jungerer "0.3.0" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.7.0"] [net.sf.jung/jung-algorithms "2.1.1"] [net.sf.jung/jung-api "2.1.1"] [net.sf.jung/jung-graph-impl "2.1.1"] [net.sf.jung/jung-io "2.1.1"] [net.sf.jung/jung-visualization "2.1.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true} :resource-paths ["dev-resources"]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha12"]] :resource-paths ["dev-resources"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]] :resource-paths ["dev-resources"]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject funcool/cats "1.1.0-SNAPSHOT" :description "Category Theory abstractions for Clojure" :url "https://github.com/funcool/cats" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.107" :scope "provided"] [org.clojure/core.async "0.1.346.0-17112a-alpha" :scope "provided"] [manifold "0.1.0" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user\.clj"]) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-beta4" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta4"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (ns chess.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true])) (defonce app-state (atom {:text "Hello Chestnut!"})) (defn main [] (om/root (fn [app owner] (reify om/IRender (render [_] (dom/h1 nil (:text app))))) app-state {:target (. js/document (getElementById "app"))})) {:user {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; TODO: re-enable once clojars releases repo is up ;; "clojars" "http://s3pository.herokuapp.com/clojars" } :aliases {"repl" ["with-profile" "production" "trampoline" "repl"]}} :production {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; "clojars" "http://s3pository.herokuapp.com/clojars" } :offline true} :heroku {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; "clojars" "http://s3pository.herokuapp.com/clojars" }}}(ns metabase.api.slack "/api/slack endpoints" (:require [clojure.set :as set] [clojure.tools.logging :as log] [compojure.core :refer [PUT]] [metabase.api.common :refer :all] [metabase.config :as config] [metabase.integrations.slack :as slack])) (defendpoint PUT "/settings" "Update the `slack-token`. You must be a superuser to do this." [:as {{slack-token :slack-token} :body}] {slack-token [Required NonEmptyString]} (check-superuser) (try ;; just check that channels.list doesn't throw an exception (that the connection works) (when-not config/is-test? (slack/GET :channels.list, :exclude_archived 1, :token slack-token)) {:ok true} (catch clojure.lang.ExceptionInfo info {:status 400, :body (ex-data info)}))) (define-routes) (ns detritus.pred) (defn ->ensure ([v pred] (->ensure v pred "->assert failed!")) ([v pred error] (if (pred v) v (assert false error)))) (defn ->>ensure ([pred v] (->>ensure pred "->>assert failed!" v)) ([pred error v] (if (pred v) v (assert false error)))) (defn maybe-fix [pred resolution] (fn [x] (if-not (pred x) (resolution x) x))) (ns desdemona.lifecycles.logging-test (:require [desdemona.lifecycles.logging :as l] [clojure.test :refer [deftest is]])) (deftest log-batch-tests) (ns uuuurrrrllll.cassandra (:require [uuuurrrrllll.util :refer [gen-short-url]] [com.stuartsierra.component :as component]) (:use [clojurewerkz.cassaforte.client :as client] [clojurewerkz.cassaforte.cql] [clojurewerkz.cassaforte.query])) (def default-hosts ["localhost"]) (def keyspace "uuuurrrrllll") (def pastes "pastes") (def table "message") (defprotocol URLShortener (add-entry! [shortener body]) (get-entry [shortener short-code])) (defrecord Cassandra [conn] component/Lifecycle (start [cass] (let [conn (client/connect default-hosts)] (use-keyspace conn keyspace) (assoc cass :conn conn))) (stop [cass] (client/disconnect! conn)) URLShortener (add-entry! [cass body] (let [short-url (gen-short-url 5)] (insert (:conn cass) table (assoc body :short_url short-url)) short-url)) (get-entry [cass short-code] (first (select (:conn cass) table (where [[= :short_url short-code]]) (allow-filtering true))))) {:user {:plugins [[lein-vanity "0.2.0" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.15"] [lein-hiera "1.0.0"] [lein-kibit "0.1.6"] [jonase/eastwood "0.2.9"] ;;[com.billpiel/sayid "0.0.10"] [lein-cljfmt "0.6.0"]] :dependencies [[slamhound "1.5.5"]] :aliases {"slamhound" ["run" "-m" "slam.hound"]}}} (ns hbase-region-inspector.util-test (:require [clojure.test :refer :all] [hbase-region-inspector.util :refer :all])) (deftest test-compare-server-names (is (> (compare-server-names "foobar10" "foobar2"))) (is (< (compare-server-names "foo-1-bar02" "foo-1-bar010")))) (deftest test-rand-range (let [min 10 max 100 times 1000] (repeatedly times #(is (some (set (range min max)) (rand-range min max)))))) (deftest test-local-ip-address (is (re-find #"^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$" (local-ip-address)))) (deftest test-keyword->str (is (= "Hello" (keyword->str :hello)))) (defproject kwho "0.1.0" :description "FIXME: write description" :url "https://github.com/jacobmorzinski/kwho" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[lein-bin "0.3.6-SNAPSHOT"]] #_ "https://github.com/jacobmorzinski/lein-bin" :bin {:name "kwho.bat"} #_ "I wish I could use a conditional..." :main ^:skip-aot kwho.core :target-path "target/%s" :jar-exclusions [#"(^|\\|/)[._](.*\.|)s[a-w][a-z]$"] #_ "vim .swp files" :profiles {:uberjar {:aot :all}}) (set-env! :source-paths #{"src"} :resource-paths #{"src"} :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [boot/core "2.1.0" :scope "provided"] [junit "4.12" :scope "test"] [radicalzephyr/bootlaces "0.1.15-SNAPSHOT"]]) (require '[radicalzephyr.bootlaces :refer :all] '[radicalzephyr.boot-junit :refer [junit]]) (def +version+ "0.3.0-SNAPSHOT") (bootlaces! +version+) (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}} junit {:packages '#{radicalzephyr.boot_junit.test}}) (ns iss.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [iss.constants :refer [black white system-font-large]]) (:require-macros [iss.macros :as macros :refer [defstyles]])) (enable-console-print!) (def app-state (atom {:foo "bar"})) (defn widget [data owner] (reify om/ICheckState om/IInitState (init-state [_] {:count 0}) om/IWillMount (will-mount [_] (println "Hello widget mounting")) om/IWillUnmount (will-unmount [_] (println "Hello widget unmounting")) om/IRenderState (render-state [_ {:keys [count]}] (println "Render!") (dom/div #js {:className (.-container bump-app)} (dom/h2 nil "Hello world!") (dom/p nil (str "Count: " count)) (dom/button #js {:onClick #(do (println "I can read!" (:foo data)) (om/update-state! owner :count inc))} "Bump!") (dom/button #js {:onClick #(do (println "I can also read!" (:foo data)) (om/update-state! owner :count identity))} "Do Nothing"))))) (defstyles bump-app {:container {:backgroundColor white :color black :font system-font-large}}) (om/root widget app-state {:target (.-body js/document)}) (ns io.perun.rss (:require [io.perun.core :as perun] [clj-rss.core :as rss-gen])) (defn rss-definitions [files] (for [file files] {:link (:canonical-url file) :guid (:canonical-url file) :pubDate (:date-published file) :title (:title file) :description (:description file) :author (:author-email file)})) (defn generate-rss-str [files options] (let [rss-options {:title (:site-title options) :description (:description options) :link (:base-url options)} items (rss-definitions (filter :title files)) rss-str (apply rss-gen/channel-xml rss-options items)] rss-str)) (defn generate-rss [tgt-path files options] (let [rss-filepath (str (:out-dir options) "/" (:filename options)) rss-string (generate-rss-str files options)] (perun/create-file tgt-path rss-filepath rss-string) (perun/report-info "rss" "generated RSS feed and saved to %s" rss-filepath))) (ns play-clj.repl (:require [play-clj.core :refer :all])) (defn entities "Returns the entities in `screen-object`, optionally filtered by a supplied function. (entities main-screen :player)" ([screen-object] (-> screen-object :entities deref)) ([screen-object filter-fn] (filter filter-fn (entities screen-object)))) (defn entities! "Associates values to the entities in `screen-object` that match the supplied function. (entities! main-screen :player :health 10)" [screen-object filter-fn & args] (on-gl (swap! (:entities screen-object) (fn [entities] (for [e entities] (if (filter-fn e) (apply assoc e args) e))))) (entities screen-object filter-fn)) (defproject org.clojars.pntblnk/clj-ldap "0.0.9" :description "Clojure ldap client (development fork of alienscience's clj-ldap)." :url "https://github.com/pauldorman/clj-ldap" :dependencies [[org.clojure/clojure "1.3.0"] [com.unboundid/unboundid-ldapsdk "2.3.0"]] :dev-dependencies [[jline "0.9.94"] [org.apache.directory.server/apacheds-all "1.5.5"] [fs "1.1.2"] [org.slf4j/slf4j-simple "1.5.6"] [lein-clojars "0.7.0"]] :aot [clj-ldap.client] :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo :comments "same as Clojure"}) (defproject fixturex/fixturex "0.2.1" :description "A library of helpful test fixture macros and functions." :url "http://www.ryanmcg.com/fixturex/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"]] :repack [{:type :clojure :levels 1 :path "src"}] :profiles {:dev {:dependencies [[incise-markdown-parser "0.2.0"] [incise-git-deployer "0.1.0"] [com.ryanmcg/incise-codox "0.1.0"] [incise-core "0.4.0"] [com.ryanmcg/incise-vm-layout "0.5.0"]] :plugins [[lein-repack "0.2.4"]] :aliases {"incise" ^:pass-through-help ["run" "-m" "incise.core"]}} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha4"]]}}) (defproject onyx-app/lein-template "0.11.1.0-alpha1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject tailrecursion/boot "0.1.0-SNAPSHOT" :description "Dependency setup/build tool for Clojure" :url "https://github.com/tailrecursion/boot" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [com.cemerick/pomegranate "0.2.0" :exclusions [org.clojure/clojure]] ; for pom middleware [org.apache.maven/maven-model "3.0.4" :exclusions [org.codehaus.plexus/plexus-utils]] ; for cljsbuild middleware [org.clojure/clojurescript "0.0-1820"] ; for mtime middleware [digest "1.3.0"]] :main tailrecursion.boot) (defproject ring/ring-core "1.3.2" :description "Ring core libraries." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/tools.reader "0.8.1"] [ring/ring-codec "1.0.0"] [commons-io "2.4"] [commons-fileupload "1.3"] [clj-time "0.9.0"] [crypto-random "1.2.0"] [crypto-equality "1.0.0"]] :profiles {:provided {:dependencies [[javax.servlet/servlet-api "2.5"]]} :dev {:dependencies [[javax.servlet/servlet-api "2.5"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}) (defproject buddy/buddy-hashers "0.9.1" :description "A collection of secure password hashers for Clojure" :url "https://github.com/funcool/buddy-hashers" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [buddy/buddy-core "0.8.1"] [clojurewerkz/scrypt "1.2.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (ns decktouch.mtg-card-master (:require [clojure.data.json :as json])) (def mtg-cards (json/read-str (slurp "resources/AllCards.json"))) (def card-names (keys mtg-cards)) (defn match "Returns true if query is a substring in string" [query string] (some? (re-matches (re-pattern (str "(?i)" query ".*")) string))) (defn get-cards-matching-query "Return a list of maps of strings of card names that match the query for the card input autocomplete" [query] (let [match-query (partial match query)] (map (fn [thing] {:cardName thing}) (filter match-query card-names)))) (ns rads.kafka.transit.MsgpackMessageFormatter (:require [cognitect.transit :as transit] [clojure.java.io :as io]) (:import (kafka.common MessageFormatter) (java.io PrintStream ByteArrayInputStream) (java.util Properties) (org.apache.kafka.clients.consumer ConsumerRecord)) (:gen-class :implements [kafka.common.MessageFormatter] :constructors {[] []})) (defn -init [this ^Properties props]) (defn -writeTo [this ^ConsumerRecord record ^PrintStream output] (let [input-stream (ByteArrayInputStream. (.value record)) reader (transit/reader input-stream :msgpack)] (.println output (pr-str (transit/read reader))))) (defn -close [this]) (ns discuss.history (:require [discuss.utils.common :as lib])) (def discussion-history (atom [@lib/app-state])) (add-watch lib/app-state :history (fn [_ _ _ n] (when-not (= (last @discussion-history) n) (swap! discussion-history conj n)))) (defn back! "Travel one unit back in time!" [] (when (> (count @discussion-history) 1) (dotimes [_ 3] ; Workaround, because one action are currently x atom changes (swap! discussion-history pop)) (reset! lib/app-state (last @discussion-history))))(ns examples.describe1 (:use lazytest.describe)) (describe + (it "computes the sum of 3 and 4" (= 7 (+ 3 4)))) (describe + "given any 2 integers" (for [x (range 5), y (range 5)] (it "is commutative" (= (+ x y) (+ y x))))) (describe + (describe "with integers" (it "computes sums of small numbers" (= 7 (+ 3 4))) (it "computes sums of large numbers" (= 7000000 (+ 3000000 4000000)))) (describe "with floating point" (it "computes sums of small numbers" (= 0.0000007 (+ 0.0000003 0.0000004))) (it "computes sums of large numbers" (= 7000000.0 (+ 3000000.0 4000000.0))))) (ns squelch.nodes.script-processor) ; ----------- ; Properties: ; ----------- (defn get-buffer-size "Read only. Returns an integer representing both the input and output buffer size. It's value can be a power of 2 value in the range 256–16384." [buffer-source] (.-bufferSize buffer-source)) ; --------------- ; Event handlers: ; --------------- (defn get-on-audio-process "Represents the EventHandler to be called." [buffer-source] (.-onaudioprocess buffer-source)) (defn set-on-audio-process "Represents the EventHandler to be called." [buffer-source audio-process-fn] (set! (.-onaudioprocess buffer-source) audio-process-fn)) (ns fhofherr.clj-db-util.migrations (:require [clojure.tools.logging :as log] [fhofherr.clj-db-util.db :as db] [fhofherr.clj-db-util.migrations.flyway :as fw])) (defn migrate "Migrate the database identified by `db`. Return the `db` representing the migrated database. *Parameters*: - `db` the database to connect to." [db & options] (log/info "Preparing to migrate database.") (fw/migrate (db/dialect db) (db/db-spec db) options)) (defn clean "Clean the database identified by`db`. Return a `db` representing the cleaned database. **Warning**: This removes all database objects! Do not call this function for production databases! *Parameters*: - `db` the database to clean." [db & options] (fw/clean (db/dialect db) (db/db-spec db) options)) (ns potok.tests (:require [cljs.test :as t :include-macros true] [beicon.core :as rx] [potok.core :as ptk])) (enable-console-print!) (defrecord IncrementBy [n] ptk/UpdateEvent (update [_ state] (update state :counter + n))) (defrecord AsyncIncrementBy [n] ptk/WatchEvent (watch [_ state stream] (rx/of (->IncrementBy n)))) (t/deftest synchronous-state-transformation-test (t/async done (let [store (ptk/store {:state {:counter 0}})] (-> (rx/take 1 store) (rx/subscribe (fn [{:keys [counter]}] (t/is (= counter 1))) nil done)) (ptk/emit! store (->IncrementBy 1))))) (set! *main-cli-fn* #(t/run-tests)) (defmethod t/report [:cljs.test/default :end-run-tests] [m] (if (t/successful? m) (set! (.-exitCode js/process) 0) (set! (.-exitCode js/process) 1))) (ns caesium.util "Internal utilities. This ns is not considered public API, and may break without semver major version increments." (:import (java.util Arrays) (org.apache.commons.codec.binary Hex))) (defn unhexify [^String s] (.decode (Hex.) (.getBytes s))) (defn hexify [b] (Hex/encodeHexString b)) (defn n->bytes "Turns n into a byte array of length len." [len n] (let [unpadded (.toByteArray (biginteger n)) bytelen (alength unpadded) output (byte-array len)] (System/arraycopy unpadded 0 output (- len bytelen) bytelen) output)) (ns isla.talk (:use [clojure.pprint]) (:require [clojure.string :as str]) (:require [mrc.utils :as utils])) (declare list-rooms) (defn room-intro [room connected-rooms] (str "You are in the " (:name room) ". " (:summary room) " " (list-rooms connected-rooms))) (defn room-already [name] (str "You are already in the " name ".")) (defn room-not-allowed [name] (str "You cannot go into the " name ".")) (defmulti list-rooms (fn [rooms] (count rooms))) (defmethod list-rooms 0 [rooms] "There is no way out of this room.") (defmethod list-rooms 1 [rooms] (str "You can see a door to the " (:name (first rooms)))) (defmethod list-rooms :default [rooms] (let [all-room-list (reduce (fn [string x] (str string ", the " (:name x))) "" rooms) all-but-last-list (rest (butlast (str/split all-room-list #","))) final (str "You can see a door to" (str/join "," all-but-last-list) " and the " (:name (last rooms)) ".")] final)) (defproject nasa-cmr/cmr-umm-lib "0.1.0-SNAPSHOT" :description "The UMM (Unified Metadata Model) Library is responsible for defining the common domain model for Metadata Concepts in the CMR along with code to parse and generate the various dialects of each concept." :url "***REMOVED***projects/CMR/repos/cmr-umm-lib/browse" :dependencies [[org.clojure/clojure "1.6.0"] [nasa-cmr/cmr-common-lib "0.1.1-SNAPSHOT"] [nasa-cmr/cmr-spatial-lib "0.1.0-SNAPSHOT"] [camel-snake-kebab "0.1.5"] [clj-time "0.7.0"]] :plugins [[lein-test-out "0.3.1"]] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.4"] [org.clojars.gjahad/debug-repl "0.3.3"]] :source-paths ["src" "dev" "test"]}}) (defproject lein-voom "0.1.0-SNAPSHOT" :description "Tool for generating artifacts versioned on the most recent git commit sha and commit time." :url "https://github.com/LonoCloud/lein-voom" :scm {:name "git" :url "https://github.com/LonoCloud/lein-voom"} :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[clj-glob "1.0.0"] [lonocloud/synthread "1.0.5"] [org.clojure/data.codec "0.1.0"] [org.clojure/data.fressian "0.2.0"] [org.clojure/core.logic "0.8.6-SNAPSHOT"]] :signing {:gpg-key "A4D5C342"} :repositories [["sonatype-snapshot" "http://oss.sonatype.org/content/repositories/snapshots"]] :eval-in-leiningen true) ;(defproject dsbdp "0.4.0-SNAPSHOT" (defproject dsbdp "0.3.0" :description "Dynamic Stream and Batch Data Processing (dsbdp)" :url "https://github.com/ruedigergad/dsbdp" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/core.async "0.2.374"] [clj-assorted-utils "1.17.1"] [org.clojure/tools.cli "0.3.3"]] :global-vars {*warn-on-reflection* true} :java-source-paths ["src-java"] ; :javac-options ["-target" "1.6" "-source" "1.6"] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.2" :exclusions [org.clojure/clojure]]]}} :plugins [[lein-cloverage "1.0.6"]] :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^dsbdp.*" :html5-docs-repository-url "https://github.com/ruedigergad/dsbdp/blob/master" :aot :all :main dsbdp.main) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; This Source Code Form is "Incompatible With Secondary Licenses", as ;; defined by the Mozilla Public License, v. 2.0. ;; ;; Copyright (c) 2020 Andrey Antukh (ns sodi.prng "Random data generation helpers." (:require [clojure.string :as str] [sodi.util :as util]) (:import java.security.SecureRandom java.nio.ByteBuffer)) (defonce ^:no-doc rng (SecureRandom.)) (defn random-bytes "Generate a byte array of scpecified length with random bytes taken from secure random number generator. This method should be used to generate a random iv/salt or arbitrary length." [^long numbytes] (let [buffer (byte-array numbytes)] (.nextBytes rng buffer) buffer)) (defn random-nonce "Generate a secure nonce based on current time and additional random data obtained from secure random generator. The minimum value is 8 bytes, and recommended minimum value is 32." [^long numbytes] (let [buffer (ByteBuffer/allocate numbytes)] (.putLong buffer (System/currentTimeMillis)) (.put buffer (random-bytes (.remaining buffer) rng)) (.array buffer))) (ns staircase.config (:use [clojure.java.io :as io] [clojure.string :only (replace-first)]) (:require [clojure.tools.reader.edn :as edn])) (defn- from-edn [fname] (if-let [is (io/resource fname)] (with-open [rdr (-> is io/reader java.io.PushbackReader.)] (edn/read rdr)) (throw (IllegalArgumentException. (str fname " not found"))))) (defn- options [opts prefix] (->> opts keys (map name) ;; From keyword -> str (filter #(.startsWith % prefix)) (reduce #(assoc %1 (keyword (replace-first %2 prefix "")) (opts (keyword %2))) {}))) ;; Empty secrets if not configured. (defn secrets [opts] (merge (try (from-edn "secrets.edn") (catch Exception e {})) (options opts "secret-"))) (def configuration (delay (from-edn "config.edn"))) (defn config [k] (k @configuration)) (defn db-options [opts] (options opts "db-")) (defn app-options [opts] (options opts "web-")) (defproject str "0.1.0-SNAPSHOT" :description "String manipulation library for clojure" :url "http://github.com/expez/str" :license {:name "MIT License" :url "http://www.opensource.org/licenses/mit-license.php"} :dependencies [[org.clojure/clojure "1.6.0"]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.7.0"]]}}) (ns sunburst (:refer-clojure :exclude [partition]) ;;avoid name conflict with base "partition" function (:use [c2.core :only [unify style]] [c2.maths :only [sqrt sin cos Tau]] ;;Life's short, don't waste it writing 2*Pi [c2.svg :only [arc]] [c2.layout.partition :only [partition]] [vomnibus.d3 :only [flare]])) (let [radius 170 ;;Partition will give us entries for every node; ;;we only want slices, so filter out the root node. slices (filter #(-> % :partition :depth (not= 0)) (partition flare :value :size :size [Tau (* radius radius)]))] [:svg {:width (* 2 radius) :height (* 2 radius)} [:g {:transform (str "translate(" radius "," radius ")")} (unify slices (fn [{name :name, bites :bites {:keys [x dx y dy]} :partition}] [:g.slice [:path {:d (arc :inner-radius (sqrt y) :outer-radius (sqrt (+ y dy)) :start-angle x :end-angle (+ x dx))}]]))]] ) (ns org.zalando.stups.friboo.system.cron-test (:require [org.zalando.stups.friboo.system.cron :refer :all] [clojure.test :refer :all] [overtone.at-at :as at] [com.stuartsierra.component :as component])) (def-cron-component TestCron [state] (at/at (at/now) (job deliver state 42) pool)) (deftest test-cron-component-lifecycle ;; Here we make sure that the component is started and stopped properly. (let [state (promise) cron-component (map->TestCron {:state state})] (-> cron-component component/start component/stop component/stop) ; stopping twice shouldn't break anything (is (= 42 (deref state 500 :not-delivered))))) ;; Example of using clj-chrome-devtools with babashka ;; ;; Make a .classpath ;; $ clj -A:bb -Spath > .classpath ;; ;; Start Chrome in the background: ;; /some/chrome-binary --remote-debugging-port=9222 --headless & ;; ;; Run with: ;; $ bb --classpath $(cat .classpath) bb.clj (require '[clj-chrome-devtools.core :as core] '[clj-chrome-devtools.automation :as auto]) (println "Printing to bb.pdf") (def a (auto/create-automation (core/connect))) (auto/to a "https://babashka.org") (auto/print-pdf a "bb.pdf" {:print-background true :paper-width 8.3 :paper-height 11.7}) (ns useful.amalloy.debug) (defmacro ? "A useful debugging tool when you can't figure out what's going on: wrap a form with and-print, and the form will be printed alongside its result. The result will still be passed along." [val] `(let [x# ~val] (prn '~val '~'is x#) x#)) (ns clj_record.core (:require [clojure.contrib.sql :as sql])) (defn table-name [model-name] (if (keyword? model-name) (.getName model-name) model-name)) (defn find-record [model-name id] (sql/with-connection db (sql/with-results rows (format "select * from %s where id = %s" (table-name model-name) id) (merge {} (first rows))))) (defn create [model-name attributes] (sql/with-connection db (let [key-vector (keys attributes) val-vector (map attributes key-vector) id (sql/transaction (sql/insert-values (table-name model-name) key-vector val-vector) (sql/with-results rows "VALUES IDENTITY_VAL_LOCAL()" (:1 (first rows))))] (find-record model-name id)))) (defmacro setup-model [model-name] (let [find-record-fn-name 'find-record create-fn-name 'create] `[(defn ~find-record-fn-name [id#] (find-record ~model-name id#)) (defn ~create-fn-name [attributes#] (create ~model-name attributes#))])) (ns reabledit.core (:require [reabledit.components :as components] [reabledit.keyboard :as keyboard] [reagent.core :as reagent])) ;; ;; Convenience API ;; (defn update-row [data nth-row new-row] (let [[init tail] (split-at nth-row data)] (into [] (concat init [new-row] (rest tail))))) ;; ;; Main component ;; (defn data-table [columns data row-change-fn] (let [state (reagent/atom {}) element-id (gensym "reabledit-focusable")] (fn [columns data row-change-fn] [:div.reabledit {:id element-id :tabIndex 0 :on-key-down #(keyboard/handle-key-down % columns data state row-change-fn element-id)} [:table [components/data-table-headers columns] [:tbody (for [[nth-row row-data] (map-indexed vector data)] ^{:key nth-row} [components/data-table-row columns data row-data nth-row state])]]]))) (defproject naughtmq "0.0.1" :description "A native-embedding wrapper for jzmq" :url "https://github.com/gaverhae/naughtmq" :scm {:name "git" :url "https://github.com/gaverhae/naughtmq"} :signing {:gpg-key "gary.verhaegen@gmail.com"} :deploy-repositories [["clojars" {:creds :gpg}]] :pom-addition [:developers [:developer [:name "Gary Verhaegen"] [:url "https://github.com/gaverhae"] [:email "gary.verhaegen@gmail.com"] [:timezone "+1"]]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [com.taoensso/timbre "3.1.6"] [org.zeromq/jzmq "2.2.2"]] :java-source-paths ["src"]) (defproject stencil "0.2.0" :description "Mustache in Clojure" :dependencies [[clojure "1.3.0"] [slingshot "0.8.0"]] :multi-deps {"1.2" [[org.clojure/clojure "1.2.1"]] "1.3" [[org.clojure/clojure "1.3.0"]] :all [[slingshot "0.8.0"]]} :dev-dependencies [[ritz "0.2.0"] [org.clojure/data.json "0.1.1"]] :extra-files-to-clean ["test/spec"])(defproject soy-clj "0.1.0-SNAPSHOT" :description "An idiomatic Clojure wrapper for Google's Closure templating system." :url "https://github.com/codahale/soy-clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0-RC2"] [org.clojure/core.cache "0.6.4"] [com.google.template/soy "2015-04-10"]] :plugins [[codox "0.9.0"]]) (ns obb-rules.game-mode (:require [obb-rules.board :as board] [obb-rules.game :as game])) (defn final? "Checks if the game is finished" [game] (or (board/empty-board? game :p1) (board/empty-board? game :p2))) (defn winner "Gets the winner of the given game" [game] (cond (board/empty-board? game :p1) :p2 (board/empty-board? game :p2) :p1 :else :none)) (defn- finalize "Marks a game as final" [game] (game/state game :final)) (defn process "Checks if a given game is finished and updates it's state. Returns the given game if not finished" [game] (if (final? game) (finalize game) game)) (ns overtunes.songs.frere-jacques (:use [overtone.live]) (:use [overtunes.core]) (:use [overtunes.instruments.foo])) (def frère-jacques [:C4 :D4 :E4 :C4]) (def dormez-vous [:E4 :F4 :G4 :rest]) (def sonnez-les-matines [:G4 :G4 :E4 :C4]) (def din-dan-don [:C4 :G3 :C4 :rest]) (def melody (concat frère-jacques frère-jacques dormez-vous dormez-vous sonnez-les-matines sonnez-les-matines din-dan-don din-dan-don)) (defn frere-jacques-round [] (let [metro (metronome 120)] (play-melody melody foo metro) (play-melody melody foo (metronome-from metro 8)) (play-melody melody foo (metronome-from metro 16)) (play-melody melody foo (metronome-from metro 24)))) (do ;; Imports and aliases (clojure.core/use '[clojure.core]) (require '[clojure.string :as str]) (require '[clojure.pprint :as pp]) (require '[clojure.math.numeric-tower :as math]) ;; Convenience functions (defn codeblock [s & { type :type }] (str "```" type "\n" s "\n```")) (defn delete-self [] (alter-var-root #'k9.sandbox/*delete-self* (constantly true))) ;; Embed utilities (defn embed-create [title desc & fields] (let [builder (sx.blah.discord.util.EmbedBuilder.)] (do (when title (.withTitle builder title)) (when desc (.withDescription builder desc)) (doseq [[t d i] (partition 3 fields)] (.appendField builder t d i)) builder))) (defn embed-stamp [embed] (do (.withTimestamp embed (java.time.LocalDateTime/ofInstant (java.time.Instant/now) (java.time.ZoneId/of "UTC"))) embed)) ;; Simple embed function bindings (def embed-field (memfn appendField title desc inline)) (def embed-color (memfn withColor r g b)) (def embed-image (memfn withImage url)) (def embed-thumb (memfn withThumbnail url)) (def embed-url (memfn withUrl url)) (def embed-build (memfn build)) )(ns hacker-agent.utils) (defn dissoc-in [data path] (let [prefix (butlast path) key (last path)] (if prefix (update-in data prefix dissoc key) (dissoc data key)))) (defn log-clj [o] (.log js/console (clj->js o))) (defn domain [url] (let [re (new js/RegExp "^https?\\:\\/\\/(www\\.)?([^\\/:?#]+)(?:[\\/:?#]|$)") matches (.exec re url)] (and matches (get matches 2)))) (ns rp.util.number) (defn nat-num? [x] (and (number? x) (not (neg? x)))) (defn longitude? [x] (and (number? x) (<= -180 x 180))) (defn latitude? [x] (and (number? x) (<= -90 x 90))) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.2"] [compojure "1.3.1"] [clj-time "0.9.0"] [org.clojure/data.json "0.2.5"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject playasophy/wonderdome "1.0.0-SNAPSHOT" :description "Control and rendering software for driving an LED strip art project with various visualizations." :url "https://github.com/playasophy/wonderdome" :license {:name "Public Domain" :url "http://unlicense.org/"} :native-path "target/native" :jvm-opts ^:replace ["-Djava.library.path=target/native/linux"] ; TODO: write some simple dev code to search for dot files in the doc folder and generate SVG graphs. ;:aliases {"sysgraph" ["dot" "-Tsvg" "<" "doc/system-processes.dot" ">" "target/system-processes.svg"]} ; TODO: host this on a static S3 website :repositories [["local" "file:///home/greg/projects/playasophy/wonderdome/lib/repo"]] :dependencies [[com.codeminders/hidapi "1.1"] [com.heroicrobot/pixelpusher "20130916"] [com.stuartsierra/component "0.2.1"] [org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.303.0-886421-alpha"]] :hiera {:cluster-depth 4 :vertical? false :ignore-ns #{com.stuartsierra quil}} :profiles {:dev {:source-paths ["dev"] :dependencies [[quil "2.1.0"] [org.clojure/tools.namespace "0.2.4"]]}}) (defproject cljs-workspace "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[lein-cljsbuild "1.0.4-SNAPSHOT"]] :source-paths ["src/clj", "src/cljs"] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2760"] [http-kit "2.1.16"] [compojure "1.1.5"] [ring "1.3.1"] [fogus/ring-edn "0.2.0"] [om "0.8.0-rc1"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [cljs-tooling "0.1.3"]] :cljsbuild {:builds [{:id "om-test" :source-paths ["src/cljs"] :compiler { :main main.core :output-to "resources/public/js/om-test.js" :output-dir "resources/public/js/" :optimizations :none :source-map "resources/public/js/om-test.js.map"}}]}) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.2"] [compojure "1.3.1"] [clj-time "0.8.0"] [org.clojure/data.json "0.2.5"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject breeze-quiescent "0.1.1-SNAPSHOT" :description "A minimal, functional ClojureScript wrapper for ReactJS" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2173" :scope "provided"] [com.facebook/react "0.9.0"]] :source-paths ["src"] ;; development concerns :profiles {:dev {:source-paths ["src" "examples/src"] :resource-paths ["examples/resources"] :plugins [[lein-cljsbuild "1.0.1"]] :cljsbuild {:builds [{:source-paths ["src" "examples/src"] :compiler {:output-to "examples/resources/public/main.js" :output-dir "examples/resources/public/build" :optimizations :whitespace :preamble ["react/react.min.js"] :externs ["react/externs/react.js"] :pretty-print true :source-map "examples/resources/public/main.js.map" :closure-warnings {:non-standard-jsdoc :off}}}]}}}) (defproject guangyin/guangyin "0.1.1-SNAPSHOT" :description "Clojure date and time library wrapping java.time" :url "https://github.com/juhovh/guangyin" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT" :distribution :repo} :dependencies [[org.clojure/clojure "1.6.0"]] :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :profiles {:dev {:plugins [[codox "0.8.11"] [lein-cloverage "1.0.2"]] :codox {:include [guangyin.core guangyin.format]}}}) (ns circle.Init ;; capitalized for JRuby ;; (:require circle.swank) (:require circle.db) (:require circle.web) (:require circle.repl) (:require circle.logging) ;; (:require circle.backend.nodes ;; circle.backend.project.rails ;; circle.backend.project.circle) (:gen-class :name circle.Init :main true) ) (def init* (delay (try (circle.logging/init) ;; workaround for Heroku not liking us starting up swank (when (System/getenv "SWANK") (require 'circle.swank) (.invoke (ns-resolve 'circle.swank 'init))) (circle.db/init) (circle.web/init) (circle.repl/init) (println (java.util.Date.)) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init))(ns cmr.graph.rest.response (:require [cheshire.core :as json] [ring.util.http-response :as response] [taoensso.timbre :as log])) (defn ok [_request & args] (response/ok args)) (defn json [_request data] (-> data json/generate-string response/ok (response/content-type "application/json"))) (defn text [_request data] (-> data response/ok (response/content-type "text/plain"))) (defn not-found [_request] (response/content-type (response/not-found "Not Found") "plain/text")) (defn cors [request response] (case (:request-method request) :options (-> response (response/content-type "text/plain; charset=utf-8") (response/header "Access-Control-Allow-Origin" "*") (response/header "Access-Control-Allow-Methods" "POST, PUT, GET, DELETE, OPTIONS") (response/header "Access-Control-Allow-Headers" "Content-Type") (response/header "Access-Control-Max-Age" "2592000")) :get (response/header response "Access-Control-Allow-Origin" "*") response)) (ns lazytest.find (:use lazytest.suite)) (defn- find-tests-for-var [this-var] (if-let [f (:find-tests (meta this-var))] (do (assert (fn? f)) (f)) (when (bound? this-var) (let [value (var-get this-var)] (when (suite? value) value))))) (defn- test-seq-for-ns [this-ns] (vary-meta (remove nil? (map find-tests-for-var (vals (ns-interns this-ns)))) assoc :name (ns-name this-ns))) (defn- find-tests-in-namespace [this-ns] (when-not (= (the-ns 'clojure.core) this-ns) (if-let [f (:find-tests (meta this-ns))] (do (assert (fn? f)) (f)) (when-let [s (test-seq-for-ns this-ns)] (suite (fn [] (test-seq s))))))) (defn find-tests [x] "Returns a seq of runnable tests. Processes the :focus metadata flag. Recurses on all Vars in a namespace, unless that namespace has :find-tests metadata." (cond (symbol? x) (find-tests (the-ns x)) (instance? clojure.lang.Namespace x) (find-tests-in-namespace x) (var? x) (find-tests-for-var x) :else nil)) (ns onyx.types) (defrecord Leaf [message id acker-id completion-id ack-val hash-group route]) (defrecord Route [flow exclusions post-transformation action]) (defrecord Ack [id completion-id ack-val timestamp]) (defrecord Results [tree acks segments]) (defrecord Result [root leaves]) (defrecord Link [link timestamp]) (set-env! :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [afrey/boot-asset-fingerprint "1.3.1"] [tailrecursion/boot-jetty "0.1.3" :scope "test"]]) (require '[afrey.boot-asset-fingerprint :refer [asset-fingerprint]] '[tailrecursion.boot-jetty :as jetty]) (deftask dev [] (comp (watch) (asset-fingerprint :extensions [".css" ".html"]) (jetty/serve :port 5000) (target))) (ns comic-reader.history (:require [re-frame.core :as rf] [secretary.core :refer [dispatch!]] [goog.events :as events] [goog.history.EventType :as EventType]) (:import goog.history.Html5History)) (defonce goog-history (atom nil)) (defn hook-browser-navigation! [] (when (nil? @goog-history) (let [hist (Html5History. false "/blank" (.getElementById js/document "history_state"))] (reset! goog-history hist) (events/listen hist EventType/NAVIGATE (fn [event] (dispatch! (.-token event)))) (doto hist (.setEnabled true))))) (defn set-token [token] (.setToken @goog-history (str token))) (ns desdemona.lifecycles.logging (:require [taoensso.timbre :refer [info]])) (let [task-name (:onyx/name (:onyx.core/task-map event))] (doseq [m (map :message (mapcat :leaves (:tree (:onyx.core/results event))))] (defn log-batch [event lifecycle] (info task-name "logging segment:" m))) {}) (def log-calls {:lifecycle/after-batch log-batch}) (defn add-logging "Adds logging output to a task's output-batch." [job task] (if-let [entry (first (filter #(= (:onyx/name %) task) (:catalog job)))] (update-in job [:lifecycles] conj {:lifecycle/task task :lifecycle/calls ::log-calls}))) (ns nth-prime) (defn sqrt "Wrapper around java's sqrt method." [number] (int (Math/ceil (Math/sqrt number)))) (defn divides? "Helper function to decide if a number is evenly divided by divisor." [number divisor] (zero? (mod number divisor))) (defn- prime-by-trial-division? "Simple trial division prime check." [number] (empty? (for [n (range 3 (inc (sqrt number)) 2) :when (divides? number n)] n))) (defn prime? [number] (cond (= 2 number) true (even? number) false :else (prime-by-trial-division? number))) (defn next-prime [start] (loop [n (inc start)] (if (prime? n) n (recur (inc n))))) (def primes (iterate next-prime 1)) (defn nth-prime [index] (when (not (pos? index)) (throw (IllegalArgumentException. "nth-prime expects a positive integer for an argument"))) (nth primes index)) (defproject simple "lein-git-inject/version" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.69"] [reagent "0.9.0-rc2"] [re-frame "0.11.0-rc2"]] :plugins [[day8/lein-git-inject "0.0.2"] [lein-shadow "0.1.6"]] :middleware [leiningen.git-inject/middleware] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (ns advent2016.day3 (:require [clojure.java.io :as io] [clojure.string :as s])) (defn read-sides [line] (map #(Integer/parseInt %) (remove s/blank? (s/split line #" ")))) (defn valid-triangle? [[a b c]] (and (> (+ a b) c) (> (+ a c) b) (> (+ b c) a))) (def solution (->> "../day3.data" io/reader line-seq (map read-sides) (filter valid-triangle?) count)) (ns app.app (:require [cljsjs.material] [reagent.core :as reagent])) (defn fixed-header-and-drawer-component [content] [:div.mdl-layout.mdl-js-layout.mdl-layout--fixed-drawer.mdl-layout--fixed-header [:header.mdl-layout__header [:div.mdl-layout__header-row [:div.mdl-layout-spacer]]] [:div.mdl-layout__drawer [:span.mdl-layout-title "Resume"] [:nav.mdl-navigation [:a.mdl-navigation__link {:href "#"} "About"]]] [:main.mdl-layout__content [:div.page-content content]]]) (defn some-component [] [:div [fixed-header-and-drawer-component [:h3 "This is your app"]]]) (defn init [] (reagent/render-component [some-component] (.getElementById js/document "container"))) (ns {{name}}-devcards.core (:require [devcards.core :as dc :include-macros true] [{{name}}.core :as {{name}}] #_[om.core :as om :include-macros true] #_[sablono.core :as sab :include-macros true]) (:require-macros [devcards.core :refer [defcard is are= are-not=]])) (enable-console-print!) (devcards.core/start-devcard-ui!) (devcards.core/start-figwheel-reloader!) ;; remember to run lein figwheel and then browse to ;; http://localhost:3449/devcards/index.html (defcard devcard-intro (dc/markdown-card "# Devcards for {{ name }} I can be found in `devcards_src/{{sanitized}}_devcards/core.cljs`. If you add cards to this file, they will appear here on this page. You can add devcards to any file as long as you require `devcards.core` like so: ``` (:require [devcards.core :as dc :include-macros true]) ``` As you add cards to other namspaces, those namspaces will be listed on the Devcards **home** page. Here are some Devcard examples")) (ns user "Namespace to support hacking at the REPL." (:require [clojure.java.javadoc :refer [javadoc]] [clojure.pprint :refer [pp pprint]] [clojure.repl :refer :all] [clojure.string :as str] [clojure.tools.namespace.move :refer :all] [clojure.tools.namespace.repl :refer :all] [midje.repl :refer :all])) ;;;; ___________________________________________________________________________ ;;;; ---- u-classpath ---- (defn u-classpath [] (str/split (System/getProperty "java.class.path") #":")) ;;;; ___________________________________________________________________________ ;;;; ---- u-move-ns-dev-src-test ---- (defn u-move-ns-dev-src-test [old-sym new-sym source-path] (move-ns old-sym new-sym source-path ["dev" "src" "test"])) ;;;; ___________________________________________________________________________ ;;;; App-specific additional utilities for the REPL or command line (do (autotest :stop) (autotest :filter (complement :slow))) (defproject onyx-app/lein-template "0.10.0.0-rc2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject bukkure "0.4.2-SNAPSHOT" :description "Bringing Clojure to the Bukkit API" :url "http://github.com/SevereOverfl0w/Bukkure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :java-source-paths ["javasrc"] :javac-options ["-d" "classes/" "-source" "1.7" "-target" "1.7"] :resource-paths ["resources/*"] :repositories [["spigot-repo" "https://hub.spigotmc.org/nexus/content/groups/public/"]] :plugins [[codox "0.8.13"]] :codox {:defaults {:doc/format :markdown}} :dependencies [[org.clojure/clojure "1.7.0"] [org.bukkit/bukkit "1.8.7-R0.1-SNAPSHOT"] [org.reflections/reflections "0.9.8"] [org.clojure/tools.nrepl "0.2.3"] [cheshire "5.2.0"]]) (defproject rpi-challenger "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "https://github.com/solita" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.cli "0.2.2"] [http.async.client "0.5.0-SNAPSHOT"] [ring/ring-core "1.1.6"] [ring/ring-devel "1.1.6"] [ring/ring-jetty-adapter "1.1.6"] [compojure "1.1.3"] [enlive "1.0.0"]] :main rpi-challenger.main) (defproject buddy/buddy-sign "1.0.0" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [com.taoensso/nippy "2.11.1" :scope "provided"] [buddy/buddy-core "0.12.1"] [cheshire "5.6.1"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "1.0.0-SNAPSHOT" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url http://www.apache.org/licenses/LICENSE-2.0 :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[jonase/eastwood "0.2.1"]]) (ns chatapp.view (:require [re-frame.core :as re-frame])) (defn message [message] [:li {:class "list-group-item"} (:message message)]) (defn message-list [] (let [messages (re-frame/subscribe [:messages])] (fn [] [:div {:class "row"} [:div {:class "col-lg-6"} [:ul {:class "list-group"} (for [m @messages] (message m))]]]))) (defn message-input [] (let [input (re-frame/subscribe [:message-input])] [:div {:class "row"} [:div {:class "col-lg-6"} [:div {:class "input-group"} [:input {:type "text" :value (:text @input) :placeholder "Enter text to reverse!" :class "form-control" :on-change #(re-frame/dispatch [:message-input-text (-> % .-target .-value)])}] [:span {:class "input-group-btn"} [:button {:type "button" :class "btn btn-default" :on-click #(re-frame/dispatch [:send-message])} "Send"]] ]]])) (defn chat-ui [] [:div {:class "container-fluid"} [:h1 "ChatApp"] [message-list] [message-input]]) (ns cadence.migrations "Define some migrations yo." (:require [cadence.model.migration :refer [defmigration]] (monger [collection :as mc] [operators :refer :all])) (:import (org.bson.types ObjectId))) (defn- str-id "Helper function for generating an id when adding migrations." [] (str (ObjectId.))) ;; ## Define some migrations. (defmigration "Add roles to users" "5108749844ae8febda9c2ed4" (do (mc/update "users" {} {$set {:roles [:user]}} :multi true) (mc/update "users" {:username "RyanMcG"} {$push {:roles :admin}})) (mc/update "users" {} {$unset {:roles ""}} :multi true)) (ns proto.main (:require [clojure.contrib.io :as io]) (:require [clj-yaml.core :as yaml]) ) (defn init [& argv] (-> argv first io/reader slurp yaml/parse-string println)) (defn -main [& argv] (init *command-line-args*)) (ns afterglow.effects.color-test (:require [clojure.test :refer :all] [afterglow.effects.color :refer :all] [afterglow.channels :as channels] [com.evocomputing.colors :as colors] [afterglow.fixtures.chauvet :as chauvet] [taoensso.timbre :as timbre :refer [error warn info debug spy]])) (deftest test-extract-rgb (testing "Finding RGB color channels") (is (= [2 3 4] (map :offset (#'afterglow.effects.color/extract-rgb [(chauvet/slimpar-hex3-irc)]))))) (ns lens.middleware.wan-exception (:require [clj-stacktrace.repl :refer [pst-on]])) (defn wrap-exception "Calls the handler in a try catch block returning a WAN error response." [handler] (fn [request] (try (handler request) (catch Throwable e (pst-on *err* false e) {:status 500 :body {:error (.getMessage e)}})))) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "1.1.1" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]]}} :plugins [[jonase/eastwood "0.2.3"] [lein-ancient "0.6.8"]]) (ns cljs-nlp.tokenize.simple (:use [clojure.string :only [split]])) (defn space-tokenizer [str] (split str #"[ ]")) (defn tab-tokenizer [str] (split str #"\t")) (defn whitespace-tokenizer [str] (split str #"\s+")) (defn blankline-tokenizer [str] (split str #"\s*\n\s*\n\s*")) (defn char-tokenizer [str] (vec (seq str))) (defn line-tokenizer [str] (split str #"\n"))(ns tests-cats #+cljs (:require-macros [cemerick.cljs.test :refer (is deftest with-test run-tests testing test-var)]) #+cljs (:require [cemerick.cljs.test :as ts] [cats.core :as m] [cats.types :as t]) #+clj (:require [clojure.test :refer :all] [cats.core :as m] [cats.types :as t])) (deftest test-maybe (testing "Test predicates" (let [m1 (t/just 1)] (is (t/maybe? m1)) (is (t/just? m1)))) #+clj (testing "Test fmap" (let [m1 (t/just 1) m2 (t/nothing)] (is (= (m/fmap inc m1) (t/just 2))) (is (= (m/fmap inc m2) (t/nothing)))))) (ns doctopus.storage-test (:require [doctopus.storage :refer :all] [clojure.test :refer :all])) (deftest storage (testing "Can we swap backends?" (is (= default-backend (get-key-from-backend backend :name)) "Are we using the default backend?") (is (set-backend! backend :temp-fs) "Can we set the backend to a differen't implementation?") (is (set-backend! backend default-backend) "And can we set it back to the default")) ) (ns less4clj.util) ;; ;; Debugging ;; from boot.util ;; (def ^:dynamic *verbosity* 1) (defn- print* [verbosity args] (when (>= *verbosity* verbosity) (binding [*out* *err*] (apply printf args) (flush)))) (defn dbug [& more] (print* 2 more)) (defn info [& more] (print* 1 more)) (defn warn [& more] (print* 1 more)) (defn fail [& more] (print* 1 more)) (ns ninjudd.eventual.client (:require [cljs.core.async :as async] [cljs.reader :refer [read-string]])) (defn make-event [f event] (-> (f (.-data event)) (vary-meta merge {:event-id (.-lastEventId event) :event-type (keyword (.-type event))}))) (defn event-source [f url & [event-types]] (let [event-types (or event-types [:message]) source (new js/EventSource url) channel (async/chan)] (doseq [event-type event-types] (.addEventListener source (name event-type) (fn [event] (async/put! channel (make-event f event))))) (set! (.-onerror source) (fn [error] (.close source) (async/close! channel))) {:event-source source :channel channel})) (defn edn-event-source [url & [event-types]] (event-source read-string url event-types)) (defn json-event-source [url & [event-types]] (event-source #(.parse js/JSON %) url event-types)) (defn close-event-source! [{:keys [channel event-source]}] (when event-source (.close event-source)) (async/close! channel)) (ns braid.ui.styles.imports (:require [garden.stylesheet :refer [at-import]])) (def imports [(at-import "https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css") (at-import "https://fonts.googleapis.com/css?family=Open+Sans:400,300,400italic,700")]) (ns comic-reader.ui.component-css (:refer-clojure :exclude [merge]) (:require [garden.core :as g] [re-frame.core :as re-frame])) (defn get* [db] (:component-css db)) (defn merge* [db id garden-css] (assoc-in db [:component-css id] garden-css)) (defn setup! [] (re-frame/reg-sub :component-css (fn [app-db _] (get* app-db))) (re-frame/reg-event-db :add-to-component-css (fn [db [_ id garden-css]] (merge* db id garden-css)))) (defn merge [id garden-css] (re-frame/dispatch [:add-to-component-css id garden-css])) (defn component-garden-css [] (when-let [css @(re-frame/subscribe [:component-css])] (vals css))) (defn component-css [] [:style (g/css (component-garden-css))]) (ns dna) (defn- strand-convert [ch] (if (= \T ch) \U ch) ) (defn to-rna [dna] (apply str (map strand-convert dna)) )(ns ring.middleware.multipart-params.test.temp-file (:use clojure.test [ring.util.io :only (string-input-stream)] ring.middleware.multipart-params.temp-file)) (deftest test-temp-file-store (let [store (temp-file-store) result (store {:filename "foo.txt" :content-type "text/plain" :stream (string-input-stream "foo")})] (is (= (:filename result) "foo.txt")) (is (= (:content-type result) "text/plain")) (is (= (:size result) 3)) (is (instance? java.io.File (:tempfile result))) (is (.exists (:tempfile result))) (is (= (slurp (:tempfile result)) "foo")))) (deftest test-temp-file-expiry (let [store (temp-file-store {:expires-in 2}) result (store {:filename "foo.txt" :content-type "text/plain" :stream (string-input-stream "foo")})] (is (.exists (:tempfile result))) (Thread/sleep 2500) (is (not (.exists (:tempfile result)))))) (ns leipzig-live.core (:require [reagent.core :as reagent :refer [atom]] [reagent.session :as session] [secretary.core :as secretary :include-macros true] [accountant.core :as accountant])) ;; ------------------------- ;; Views (defn home-page [] [:div [:h1 "Welcome to Leipzig Live!"]]) (defn current-page [] [:div [(session/get :current-page)]]) ;; ------------------------- ;; Routes (secretary/defroute "/" [] (session/put! :current-page #'home-page)) ;; ------------------------- ;; Initialize app (defn mount-root [] (reagent/render [current-page] (.getElementById js/document "app"))) (defn init! [] (accountant/configure-navigation!) (accountant/dispatch-current!) (mount-root)) ;; Copyright 2013 Andrey Antukh ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.core.keys (:require [buddy.core.codecs :refer [str->bytes bytes->hex]])) (defprotocol SecretKey (key->bytes [key] "Normalize key to byte array") (key->str [key] "Normalize key String")) (extend-protocol SecretKey (Class/forName "[B") (key->bytes [it] it) (key->str [it] (bytes->hex it)) String (key->bytes [key] (str->bytes key)) (key->str [key] key)) (ns comic-reader.scrape (:require [clojure.string :refer [trim]] [net.cgrand.enlive-html :as html])) (def sites {"Manga Fox" {:url "http://mangafox.me/manga/" :selector [:div.manga_list :ul :li :a] :normalize (fn [{name :content {url :href} :attrs}] {:name name :url url})} "Manga Reader" {:url "http://www.mangareader.net/alphabetical" :selector [:div.series_alpha :ul :li :a] :normalize (fn [{name :content {url :href} :attrs}] {:name (trim name) :url url})}}) (defn fetch-url [url] (html/html-resource (java.net.URL. url))) (defn fetch-site-list [{:keys [url selector normalize]}]) {:user { :dependencies [[pjstadig/humane-test-output "0.6.0"] [slamhound "1.5.5"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)] :plugins [ [lein-kibit "0.1.2"] [lein-try "0.4.3"] [cider/cider-nrepl "0.8.2"] [lein-ancient "0.6.7"] [lein-pprint "1.1.1"]]}} (ns leiningen.pact-verify (:require [au.com.dius.pact.provider.lein.verify-provider :as verify] [clojure.string :as str]) (:import (au.com.dius.pact.provider.lein LeinVerifierProxy))) (defn- split-string [arg] (if (.contains arg "=") (let [key-val (str/split arg #"=")] [(read-string (first key-val)) (second key-val)]) [(read-string arg) arg])) (defn- parse-args [args] (if (not-empty args) (apply assoc {} (mapcat #(split-string %) args)) {})) (defn pact-verify "Verifies pact files against a provider" [project & args] (if (contains? project :pact) (let [verifier (LeinVerifierProxy. project (parse-args args))] (verify/verify verifier (-> project :pact))) (throw (ex-info "No pact definition was found in the project")))) (ns todo-repl-webapp.handler (:gen-class :main true) (:use compojure.core) (:require [compojure.handler :as handler] [compojure.route :as route] [ring.adapter.jetty :as jetty] [todo-repl.core :as todo] [todo-repl-webapp.views :as views])) (def *tasks-ref* (ref [])) (defn tasks [] (deref *tasks-ref*)) (defn add-new-task [x] (dosync (alter *tasks-ref* #(cons (todo/new-task-better x) %1)))) (defroutes app-routes (GET "/" [] (do (println "get /") (views/home))) (POST "/eval" [evalInput] (do (println "/eval " evalInput) (if (nil? evalInput) (views/eval "nil") (binding [*ns* (find-ns 'todo-repl-webapp.handler)] (let [result (load-string evalInput)] (println "evals to: " result) (views/eval (str result))))))) (route/resources "/") (route/not-found "Not Found")) (def app (handler/site app-routes)) (defn -main [port] (jetty/run-jetty (handler/site app-routes) {:port (Integer. port) :join? false})) (defproject compojure "1.6.0-beta1" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.8.2"] [ring/ring-core "1.6.0-beta4"] [ring/ring-codec "1.0.1"]] :plugins [[lein-codox "0.9.5"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :aliases {"test-all" ["with-profile" "default:+1.8" "test"]} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.1"] [incanter/incanter-core "1.5.7"] [incanter/incanter-charts "1.5.7"] [incanter/incanter-io "1.5.7"] [org.clojure/data.json "0.2.6"] [clj-http "3.10.0"] [slingshot "0.12.2"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject onyx-app/lein-template "0.9.10.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject com.stuartsierra/component "0.2.1" :description "Managed lifecycle of stateful objects" :url "https://github.com/stuartsierra/component" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :min-lein-version "2.1.3" ; added :global-vars :dependencies [[com.stuartsierra/dependency "0.1.1"]] :global-vars {*warn-on-reflection* true} :profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.namespace "0.2.4"]] :source-paths ["dev"]} :clj1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}}) (ns circleci.db.migrations (:use [circleci.db :only (with-conn)]) (:use [circleci.db.migration-lib :only (defmigration run-required-migrations reset-migration-state)]) (:require [clojure.java.jdbc :as jdbc])) (def migration-info (circleci.db.migration-lib/migration-info (.getName *ns*))) (defn init [] (with-conn (run-required-migrations migration-info)) (println "migrations/init done")) (reset-migration-state (.getName *ns*)) (defmigration "schema version" (println "create-table: schema version") (jdbc/create-table :schema_version [:name :varchar "UNIQUE NOT NULL"] [:date_run :timestamp "NOT NULL"])) (defmigration "add beta notify" (println "create-table: beta notify") (jdbc/create-table :beta_notify [:email :text "PRIMARY KEY"] [:environment :text] [:features :text])) (ns analyze-data.tf-idf.words-test (:require [clojure.test :refer [deftest is]] [analyze-data.tf-idf.words :as test-ns])) (deftest to-words-test (is (= ["hello" "world"] (test-ns/to-words "hello world")) "separates two words") (is (= ["hello" "world"] (test-ns/to-words "Hello world")) "lowercases words") (is (= ["hello" "world"] (test-ns/to-words "Hello world!")) "removes punctuation...") (is (= ["hello" "world"] (test-ns/to-words "Hello, world")) "...including commas...") (is (= ["he'll" "world"] (test-ns/to-words "he'll world")) "...but keeps apostrophes")) (deftest remove-stopwords-test (is (= ["hello" "world"] (test-ns/remove-stopwords ["the" "hello" "world"])) "removes common word \"the\"")) (deftest n-grams-test (is (= ["a b" "b c"] (test-ns/n-grams 2 ["a" "b" "c"])) "creates bigrams")) (ns comic-reader.scrape (:require [clojure.string :as s] [clojure.java.io :as io] [clj-http.client :as client] [tempfile.core :refer [tempfile with-tempfile]] [net.cgrand.enlive-html :as html]) (:import java.net.URL)) (defn fetch-url [url] (with-tempfile [html-file (tempfile (:body (client/get url)))] (html/html-resource html-file))) (defn extract-list [html selector normalize] (->> (html/select html selector) (map normalize) (filter identity))) (defn fetch-list [{:keys [url selector normalize]}] (when (every? (complement nil?) [url selector normalize]) (extract-list (fetch-url url) selector normalize))) (defn enlive->hiccup [{:keys [tag attrs content]}] (if (nil? content) [tag attrs] [tag attrs content])) (defn clean-image-tag [[tag attrs & content]] [tag (select-keys attrs [:alt :src])]) (defn extract-image-tag [html selector] (some-> html (html/select selector) seq first enlive->hiccup clean-image-tag)) (defn fetch-image-tag [{:keys [url selector]}] (when (every? (complement nil?) [url selector]) (-> (fetch-url url) (extract-image-tag selector)))) {:user { :plugins [[cider/cider-nrepl "0.11.0-SNAPSHOT"]] :dependencies [[com.datomic/datomic-free "0.9.5350"] [me.raynes/fs "1.4.6"]] }} (ns clj-templates.handler (:require [compojure.core :refer [GET routes]] [compojure.route :refer [resources]] [ring.util.response :refer [resource-response]] [ring.logger.timbre :refer [wrap-with-logger]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [ring.util.http-response :refer [content-type ok]] [integrant.core :as ig])) (defn home-page [] (content-type (resource-response "index.html" {:root "public"}) "text/html; charset=utf-8")) ;; TODO: Get from db (defn templates [db] "Templates") (defn app-routes [db] (routes (GET "/templates" [] (templates db)) (GET "/" [] (home-page)) (resources "/"))) (defmethod ig/init-key :handler/main [_ {:keys [db]}] (-> (app-routes db) (wrap-defaults site-defaults) wrap-with-logger)) (ns luhn (:require [clojure.string :as string])) (defn to-reversed-digits "returns a lazy sequence of least to most significant digits of n" [n] (->> [n 0] (iterate (fn [[i _]] [(quot i 10) (mod i 10)])) (take-while (complement #{[0 0]})) (map second) rest)) (defn checksum "returns the luhn checksum of n, assuming it has a check digit" [n] (-> (->> n to-reversed-digits (map * (cycle [1 2])) (map #(if (>= % 10) (- % 9) %)) (apply +)) (mod 10))) (defn string->long "Strips any non-digit characters and converts the string into a Long" [n] (-> n (string/replace #"[^0-9]+" "") Long/parseLong)) (defn valid? "whether n has a valid luhn check-digit" [n] ; Numbers with non digit/whitespace or only 1 digit are invalid (if (or (re-find #"[^0-9\s]+" n) (>= 1 (count (string/trim n)))) false (zero? (-> n string->long checksum)))) (defn add-check-digit "given a number, adds a luhn check digit at the end" [n] (let [n-shifted (* 10 n) check-digit (- 10 (checksum n-shifted))] (+ n-shifted check-digit))) (defproject doo "0.1.6-SNAPSHOT" :description "doo is a library to run clj.test on different js environments." :url "https://github.com/bensu/doo" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/bensu/doo"} :deploy-repositories [["clojars" {:creds :gpg}]] :test-paths ["test/clj"] :resource-paths ["resources"] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "0.0-3308" :scope "provided"] [selmer "0.8.9"] [karma-reporter "0.1.0"]] :profiles {:dev {:source-paths ["src/clj" "test/clj" "../example/src" "../example/test"] :dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"]]}}) (ns tryclojure.models.eval (:require [clojail.testers :refer [secure-tester-without-def]] [clojail.core :refer [sandbox]] [clojure.stacktrace :refer [root-cause]] [noir.session :as session]) (:use [clojure.pprint]) (:use [isla.parser]) (:use [isla.interpreter]) (:require [isla.utils :as utils]) (:require [isla.library :as library]) (:import java.io.StringWriter java.util.concurrent.TimeoutException)) (declare run repl) (def repl-context (ref (library/get-initial-context))) (defn eval-string [isla-expr] ;; (throw (Exception. (str form))) (with-open [out (StringWriter.)] {:expr isla-expr :result [out (run isla-expr)]})) (defn eval-request [expr] (try (eval-string expr) (catch TimeoutException _ {:error true :message "Execution Timed Out!"}) (catch Exception e {:error true :message (str (root-cause e))}))) (defn run [code] (println (first (:content (first (:content (isla.parser/parse code)))))) (let [return (interpret (first (:content (first (:content (isla.parser/parse code))))) (deref repl-context))] (println return) (dosync (ref-set repl-context (:ctx return))) (:ret return))) (defn repl [] (run (utils/take-input)) (repl))(ns leiningen.pallet-release.github "Github interaction" (:require [com.palletops.leinout.github :as github] [leiningen.core.eval :as eval] [tentacles.orgs :as orgs])) (defn auth-builder "Ensure the build-automation team is authorised on the repository." [url token] (let [{:keys [login name] :as repo} (github/url->repo url token)] (if-let [builder-id (github/team-id "build-automation" login token)] (let [r (github/auth-team-id builder-id repo token)] (case r :authorised (println "Authourised") :already-authorised (println "Already authorised") :authorisation-failed (println "Authorisation failed"))) (println "No team found for" (str login "/build-automation.") "Either create the build-automation team, or authorise pbors.")))) (def push-repo-fmt "https://pbors:${GH_TOKEN}@github.com/%s/%s.git") (defn repo-coordinates [origin] (let [{:keys [login name]} (github/url->repo origin)] (format push-repo-fmt login name))) (ns new-website.server (:require [clojure.java.io :as io] [compojure.core :refer [ANY GET PUT POST DELETE defroutes]] [compojure.route :refer [resources]] [ring.middleware.defaults :refer [wrap-defaults site-defaults]] [ring.middleware.gzip :refer [wrap-gzip]] [ring.middleware.logger :refer [wrap-with-logger]] [environ.core :refer [env]] [ring.adapter.jetty :refer [run-jetty]]) (:gen-class)) (defroutes routes (GET "/anti_forgery.js" [req] {:status 200 :headers {"Content-Type" "application/javascript"} :body (str "var csrf = '" *anti-forgery-token* "';")}) (GET "/" _ {:status 200 :headers {"Content-Type" "text/html; charset=utf-8"} :body (io/input-stream (io/resource "public/index.html"))}) (resources "/")) (def http-handler (-> routes (wrap-defaults site-defaults) wrap-with-logger wrap-gzip)) (defn -main [& [port]] (let [port (Integer. (or port (env :port) 10555))] (run-jetty http-handler {:port port :join? false}))) ;- ; Copyright 2011 (c) Meikel Brandmeyer. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.core) (defn init-server [] ; Check for doc macro. 1.2 in c.core, 1.3 in c.repl (when-not (ns-resolve 'clojure.core 'doc) (binding [*ns* *ns*] (in-ns 'user) (refer-clojure) (use 'clojure.repl)))) #!/usr/bin/env boot (set-env! :dependencies '[[org.clojure/clojure "1.7.0-RC1" :scope "provided"] [funcool/catacumba "0.2.0-SNAPSHOT"]]) (require '[catacumba.core :as ct]) (defn home-page [content] "Hello world") (def app (ct/routes [[:get home-page]])) (defn -main "The main entry point to your application." [& args] (let [lt (java.util.concurrent.CountDownLatch. 1)] (ct/run-server app {:port 5050 :basedir "."}) (.await lt))) (defn hello ([] "Hello World!") ([a] (str "Hello, you silly " a ".")) ([a & more] (str "Hello to this group: " (apply str (interpose ", " (concat (list a) more))) "!"))) (defmulti diet (fn [x] (:eater x))) (defmethod diet :herbivore [a] __) (defmethod diet :carnivore [a] __) (defmethod diet :default [a] __) (meditations "Some functions can be used in different ways - with no arguments" (= __ (hello)) "With one argument" (= __ (hello "world")) "Or with many arguments" (= __ (hello "Peter" "Paul" "Mary")) "Multimethods allow more complex dispatching" (= "Bambi eats veggies." (diet {:species "deer" :name "Bambi" :age 1 :eater :herbivore})) "Different methods are used depending on the dispatch function result" (= "Simba eats animals." (diet {:species "lion" :name "Simba" :age 1 :eater :carnivore})) "You may use a default method when no others match" (= "I don't know what Rich Hickey eats." (diet {:name "Rich Hickey"}))) (ns herder.web.handler (:require [compojure.route :as route] [compojure.core :refer [defroutes GET POST PUT context] :as compojure] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.util.response :refer [file-response content-type]] [ring.middleware.json :refer [wrap-json-response]] [ring.util.anti-forgery :refer [anti-forgery-field]] [korma.core :as d] [korma.db :as kd] [reloaded.repl :refer [system]] [herder.web.conventions :refer [convention-routes]])) (defn index [params] (content-type (file-response "resources/herder/templates/index.html") "text/html")) (defroutes core-routes (GET "/" [] index) (route/files "/resources/public/" {:root "target/resources/public/"}) (route/not-found "Not found")) (def routes (compojure/routes convention-routes core-routes)) (defn wrap-db [f] (fn [req] (if-let [sys-db (:db system)] (kd/with-db sys-db (f req)) (f req)))) (def app (-> #'routes (wrap-defaults (assoc-in api-defaults [:params :nested] true)) wrap-db wrap-json-response)) (ns codewars.runners.groovy-test (:require [clojure.test :refer :all] [clojure.test.junit :refer [with-junit-output]] [cheshire.core :as json] [codewars.core :refer [-main] :as core] [codewars.utils :refer [with-java-out-str]] ) (deftest groovy-code-only (testing "-main can handle a groovy code with no fixture" (with-in-str (json/generate-string {:language "groovy" :code "1 + 1"}) (is (= 2 (-main))) ) ) ) (deftest groovy-java-out (testing "-main can handle a groovy code with no setup code but no fixture" (with-in-str (json/generate-string {:language "groovy" :code "print 'Hello Groovy!'"} ) (is (= "Hello Groovy!" (with-java-out-str (-main))) ) ) ) ) (deftest groovy-java-fixt (testing "-main can handle a groovy code with no setup code but no fixture" (with-in-str (json/generate-string {:language "groovy" :code "class Greeter { static greet = { name -> 'Hello '+name } }" :fixture "class MyTestCase extends GroovyTestCase { void testGreet(){def result = Greeter.greet('Ruslan');assert result == 'Hello Ruslan';println 'Lets sum'}}"} ) ;(with-java-out-str (run-all-tests)) (let [test-out-string (with-java-out-str (-main))] (is (.contains test-out-string "testGreet(MyTestCase)")) (is (.contains test-out-string "Lets sum")) (is (.contains test-out-string "Test Passed<:LF:>")) ) ) ) ) (ns desdemona.launcher.launch-prod-peers (:require [desdemona.launcher.utils :as utils] [taoensso.timbre :as t] [onyx.plugin.kafka] [onyx.plugin.sql] [onyx.plugin.core-async] [onyx.plugin.seq] [desdemona.functions.sample-functions] [desdemona.jobs.sample-submit-job] [desdemona.lifecycles.sample-lifecycle]) (:gen-class)) (defn -main [n & args] (let [n-peers (Integer/parseInt n) {:keys [peer-config env-config]} (utils/read-config!) peer-group (onyx.api/start-peer-group peer-config) env (onyx.api/start-env env-config) peers (onyx.api/start-peers n-peers peer-group)] (println "Connecting to Zookeeper: " (:zookeeper/address peer-config)) (utils/add-shutdown-hook! (fn [] (onyx.api/shutdown-peers peers) (onyx.api/shutdown-peer-group peer-group) (shutdown-agents))) (println "Started peers. Blocking forever.") (utils/block-forever!))) (ns circle.backend.nodes.circle-artifact (:require pallet.core pallet.phase [pallet.action.user :as user] [pallet.action.directory :as directory] [pallet.action.package :as package] [pallet.crate.java :as java] [pallet.action.remote-file :as remote-file] [pallet.action.service :as service] [pallet.crate.automated-admin-user :as automated-admin-user] [pallet.crate.git :as git] [pallet.crate.ssh-key :as ssh-key] [pallet.thread-expr :as thread-expr])) (def circle-artifact-group (pallet.core/group-spec "circle" :circle-node-spec {:ami "ami-e913dd80" :availability-zone "us-east-1a" :instance-type "t1.micro" :keypair-name "www" :security-groups ["artifacts-server"] :username "ubuntu" :public-key (slurp "www.id_rsa.pub") :private-key (slurp "www.id_rsa")}))(defproject cljs-browser "0.0.1-SNAPSHOT" :description "" :dependencies [[org.clojure/clojure "1.4.0-beta4"] [org.clojure/clojurescript "0.0-993"] [ring "1.0.0-RC1"] [compojure "0.6.4"] [enlive "1.0.0"]] :repl-init one.sample.repl :source-path "src/app/clj" :extra-classpath-dirs ["src/app/cljs" "src/app/cljs-macros" "src/lib/clj" "src/lib/cljs" "templates" "../src" "../domina/src/cljs"]) (defproject leiningen/lein-swank "1.1.0" :description "A leiningen plugin to launch a swank server." :dependencies [[swank-clojure "1.1.0"] [org.apache.maven/maven-ant-tasks "2.0.10"]]) (ns ontrail.test.crypto (:use [ontrail.crypto]) (:use [clojure.test])) (deftest hash-properly (is (com.lambdaworks.crypto.SCryptUtil/check "keijo" (password-hash "keijo")))) (deftest match-properly (is (password-match? "keijo" (com.lambdaworks.crypto.SCryptUtil/scrypt "keijo" 16384 8 1)))) (deftest base64-decodes (is (= "esko" (byte-array-to-string (base64-decode "ZXNrbw=="))))) (deftest encrypt-and-decrypt-does-what-it-should-do (is (= "foo2" (decrypt (encrypt "foo2"))))) (deftest decrypt-does-what-it-should-do (is (= "foo2" (decrypt "hcmlYlBedinIG2d5PohVCRKkEGg="))))(ns transit.corner-cases) (def forms [nil true false :a :foo 'f 'foo (java.util.Date.) 1/3 \t "f" "foo" "~foo" [] '() #{} [1 24 3] `(7 23 5) {:foo :bar} #{:a :b :c} #{true false} 0 42 8987676543234565432178765987645654323456554331234566789 {false nil} {true nil} {false nil true nil} {"a" false} {"a" true} [\"] {\[ 1} {1 \[} {\] 1} {1 \]} [\{ 1] [\[] {\{ 1} {1 \{} ]) (def transit-json ["{\"~#point\":[1,2]}" "{\"foo\":\"~xfoo\"}" "{\"~/t\":null}" "{\"~/f\":null}" ]) (ns status-im.ui.screens.profile.group-chat.styles (:require [status-im.ui.components.colors :as colors])) (def action-container {:background-color colors/white :padding-top 24}) (def action {:background-color (colors/alpha colors/blue 0.1) :border-radius 50}) (def action-label {:color colors/blue}) (def action-separator {:height 1 :background-color colors/gray-light :margin-left 50}) (def action-icon-opts {:color colors/blue})(defproject angelic "1.0.0-SNAPSHOT" :description "Angelic hierarchical planning" :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"] ; [org.clojars.robertpfeiffer/vijual "0.1.0-SNAPSHOT"] [org.swinglabs/pdf-renderer "1.0.5"] [incanter "1.2.3-SNAPSHOT"] ] :dev-dependencies [[swank-clojure "1.2.1"] [mycroft/mycroft "0.0.2"]] :jvm-opts ["-server" "-Xmx1g" "-agentpath:/Applications/YourKit_Java_Profiler_9.0.0.app/bin/mac/libyjpagent.jnilib" #_ "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5000" ] ) (ns leiningen.jswat (:use [clojure.contrib.shell-out :only [sh]] [leiningen.classpath] [clojure.string :only [join]])) (defn jswat ([project] (jswat project "/Users/jawolfe/Library/clojure/jswat-4.5/bin/jswat")) ([project & [path]] (let [cp (join java.io.File/pathSeparatorChar (get-classpath project))] ;; jswat --cp:p (sh path "--cp:p" cp))))(ns adzerk.boot-cljs.util (:require [boot.core :as core] [clojure.java.io :as io] [clojure.string :as string])) (defn path->js "Given a path to a CLJS namespace source file, returns the corresponding Google Closure namespace name for goog.provide() or goog.require()." [path] (-> path (string/replace #"\.clj[s|c]$" "") (string/replace #"[/\\]" "."))) (defn path->ns "Given a path to a CLJS namespace source file, returns the corresponding CLJS namespace name." [path] (-> (path->js path) (string/replace #"_" "-"))) (defn get-name [path-or-file] (-> path-or-file io/file .getName)) (defn cljs-files [fileset] (->> fileset core/input-files (core/by-ext [".cljs" ".cljc"]) (sort-by :path))) (defn path [& parts] (.getPath (apply io/file parts))) (defn main-files [fileset id] (let [select (if (seq id) #(core/by-name [(str id ".cljs.edn")] %) #(core/by-ext [".cljs.edn"] %))] (->> fileset core/input-files select (sort-by :path)))) (defn tmp-file->docroot [tmp-file] (.getParent (io/file (core/tmp-path tmp-file)))) (ns apio.concurrency.core (import (java.util.concurrent ForkJoinPool))) ;; TODO: initialize forkjoin pool in dynamic context ;; using dynamic loaded configuration. (def *thread-pool* (ForkJoinPool.)) (defproject sketch "0.1.0-SNAPSHOT" :description "A template for a sketch with Quil/Processing" :dependencies [[org.clojure/clojure "1.10.1"] [genartlib/genartlib "0.1.20"] ; utility functions [com.seisw/gpcj "2.2.0"]] ; polygon clipping :jvm-opts ["-Xms4000m" "-Xmx4000M" "-server"] ; 4GB heap size :source-paths ["src/clj"] :java-source-paths ["src/java"] :aot [sketch.dynamic]) (defproject com.palletops/hyde-pallet "0.1.0-SNAPSHOT" :description "Site generation for clojure projects" :url "https://github.com/paleltops/hyde-pallet" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[lein-modules "0.3.1"]] :dependencies [[org.clojure/clojure "1.6.0"] [com.palletops/hyde "0.1.0"]]) (ns pfrt-js.templates (:require [crate.core :refer [html]] [domina :refer [log]] [clojure.string :as str])) (defn- hostname->domid "Convert host name to valid dom identifier." [host] (str "host" (str/join (str/split host #"\.")))) (defn host-entry [host data] (let [downloaded (get data "in") uploaded (get data "out") download-speed (get data "speed-in") upload-speed (get data "speed-out")] (html [:tr {:id (hostname->domid host)} [:td (:name data host)] [:td (js/filesize downloaded)] [:td (js/filesize uploaded)] [:td (str (js/filesize download-speed) "/s")] [:td (str (js/filesize upload-speed) "/s")]]))) (defn stats-layout [] (html [:div {:class "container table-container"} [:table {:id "stats-container" :class "stats-container"} [:thead [:tr [:td "Hostname"] [:td "Download"] [:td "Upload"] [:td "Download Speed"] [:td "Upload Speed"]]] [:tbody]]])) (defn base-layout "Main layout for all pages." [] (html [:div {:class "wrapper"} [:div {:class "container header-container"} [:h1 "Pr0n Stats"]] [:div {:class "container body-container"}]])) (ns lazytest.group (:use [lazytest.testable :only (Testable get-tests)] [lazytest.runnable-test :only (RunnableTest run-tests skip-or-pending try-expectations runnable-test?)] [lazytest.fixture :only (setup teardown fixture?)] [lazytest.test-result :only (result-group)])) (defrecord TestCase [fixtures f] Testable (get-tests [this] (list this)) RunnableTest (run-tests [this] (lazy-seq (list (or (skip-or-pending this) (try-expectations this (apply f (map setup fixtures)) (dorun (map teardown fixtures)))))))) (defn test-case [fixtures f] {:pre [(every? fixture? fixtures) (fn? f)]} (TestCase. fixtures f)) (defrecord TestGroup [children] Testable (get-tests [this] (list this)) RunnableTest (run-tests [this] (or (skip-or-pending this) (result-group this (lazy-seq (mapcat run-tests children)))))) (defn test-group [children] {:pre [(every? (runnable-test? children))]} (TestGroup. children))(defproject frereth-common "0.0.1-SNAPSHOT" :description "Pieces that the different Frereth parts share" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} ;; TODO: Could I totally pull datomic dependencies out of everything else? :dependencies [[com.stuartsierra/component "0.2.2"] [com.taoensso/timbre "3.3.1"] [im.chit/ribol "0.4.0"] [mvxcvi/puget "0.6.4"] [org.clojure/clojure "1.6.0"] [prismatic/schema "0.3.3"]] :profiles {:dev {:source-paths ["dev"] :dependencies [[org.clojure/tools.namespace "0.2.7"] [org.clojure/java.classpath "0.2.2"]]} :uberjar {:aot :all}} :repl-options {:init-ns user}) (defproject bukkure "0.4.2-SNAPSHOT" :description "Bringing Clojure to the Bukkit API" :url "http://github.com/SevereOverfl0w/Bukkure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :java-source-paths ["javasrc"] :javac-options ["-d" "classes/" "-source" "1.7" "-target" "1.7"] :resource-paths ["resources/*"] :repositories [["spigot-repo" "https://hub.spigotmc.org/nexus/content/groups/public/"]] :plugins [[codox "0.8.13"]] :codox {:defaults {:doc/format :markdown}} :dependencies [[org.clojure/clojure "1.7.0"] [org.reflections/reflections "0.9.8"] [org.clojure/tools.nrepl "0.2.3"] [cheshire "5.2.0"]] :profiles {:provided {:dependencies [[org.bukkit/bukkit "1.8.7-R0.1-SNAPSHOT"]]}}) ;;;; This file is part of algebolic. Copyright (C) 2014-, Jony Hudson. ;;;; ;;;; algebolic is licenced to you under the MIT licence. See the file LICENCE.txt for full details. (defproject algebolic "0.1.0-SNAPSHOT" :description "A library for doing symbolic regression with algebraic manipulation." :license {:name "MIT"} :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[lein-gorilla "0.3.4-SNAPSHOT"]] :jvm-opts ["-server" "-Xmx4g"]) (defproject org.onyxplatform/onyx-metrics "0.7.2.1-SNAPSHOT" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [com.mdrogalis/rotating-seq "0.1.3"] [com.taoensso/timbre "3.0.1"] [stylefruits/gniazdo "0.4.0"] [riemann-clojure-client "0.4.1"]] :profiles {:dev {:dependencies [[org.onyxplatform/onyx "0.7.2"] [midje "1.6.3"]] :plugins [[lein-midje "3.1.1"]]}}) (defproject compojure "1.5.1" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.8.2"] [ring/ring-core "1.5.0"] [ring/ring-codec "1.0.1"]] :plugins [[lein-codox "0.9.5"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :aliases {"test-all" ["with-profile" "default:+1.8" "test"]} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject dungeon-crusade "0.0.1-SNAPSHOT" :description "dungeon-crusade" :plugins [[lein-marginalia "0.7.1"] [lein-kibit "0.0.8"]] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.303.0-886421-alpha"] [org.clojure/tools.reader "0.8.4"] [org.clojure/core.typed "0.2.44"] [org.clojure/math.combinatorics "0.0.7"] [org.clojure/clojure-contrib "1.2.0"] [org.clojars.vishk/algotools "0.1.0"] [net.mikera/clisk "0.9.1-SNAPSHOT"] [com.palletops/thread-expr "1.3.0"] [tinter "0.1.1-SNAPSHOT"] [clj-tiny-astar "0.1.0-SNAPSHOT"] [dorothy "0.0.3"] [com.taoensso/timbre "3.2.1"] [org.clojars.folcon/clojure-lanterna "0.9.5-SNAPSHOT"]] :main dungeon-crusade.core :repl-init dungeon-crusade.main) (defproject get-here "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/data.csv "0.1.2"] [clj-time "0.7.0"] [aysylu/loom "0.4.2"] [ring "1.3.0"] [ring/ring-jetty-adapter "1.3.0"] [ring/ring-json "0.3.1"] [cheshire "5.3.1"] [compojure "1.1.8"] [org.clojure/core.memoize "0.5.6"]] :main get-here.core :profiles {:dev {:main get-here.core/-dev-main}} :min-lein-version "2.0.0" :uberjar-name "get-here.jar") (ns decktouch.handler (:require [decktouch.dev :refer [browser-repl start-figwheel]] [compojure.core :refer [GET defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [selmer.parser :refer [render-file]] [environ.core :refer [env]] [prone.middleware :refer [wrap-exceptions]])) (defroutes routes (GET "/" [] (render-file "templates/index.html" {:dev (env :dev?)})) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-defaults routes site-defaults)] (if (env :dev?) (wrap-exceptions handler) handler))) (ns juxt.crux.demo.foo (:require crux.api [yada.yada :as yada] [integrant.core :as ig])) (def id #uuid "50005565-299f-4c08-86d0-b1919bf4b7a9") (defmethod ig/init-key ::read-write [_ {:keys [system]}] (yada/resource {:id ::read-write :methods {:get {:produces ["text/html" "application/edn" "application/json"] :response (fn [ctx] (let [db (crux.api/db system)] (map #(crux.api/entity db (first %)) (crux.api/q db {:find '[?e] :where [['?e :crux.db/id id]]}))))} :post {:produces "text/plain" :consumes "application/edn" :response (fn [ctx] (crux.api/submit-tx system [[:crux.tx/put id (merge {:crux.db/id id} (:body ctx))]]) (yada/redirect ctx ::read-write))}}})) ;; To populate data using cURL: ; $ curl -H "Content-Type: application/edn" -d '{:foo/username "Bart"}' localhost:8300 (ns bytebuf.bytes (:import java.util.Arrays java.security.SecureRandom)) (defn random-bytes "Generate a byte array of scpecified length with random bytes taken from secure random number generator. This method should be used for generate a random iv/salt or arbitrary length." ([^long numbytes] (random-bytes numbytes (SecureRandom.))) ([^long numbytes ^SecureRandom sr] (let [buffer (byte-array numbytes)] (.nextBytes sr buffer) buffer))) (defn slice "Given a byte array, get a copy of it. If offset and limit is provided, a slice will be returned." [^bytes input ^long offset ^long limit] (Arrays/copyOfRange input offset limit)) (defn zeropad! "Add zero byte padding to the given byte array to the remaining bytes after specified data length." [^bytes input ^long datalength] (Arrays/fill input datalength (count input) (byte 0))) (defn zeropad-count "Given a byte array, returns a number of bytes allocated with zero padding (zero byte)." [^bytes input] (let [mark (byte 0)] (reduce (fn [sum index] (let [value (aget input index)] (if (= value mark) (inc sum) (reduced sum)))) 0 (reverse (range (count input)))))) (defproject cli4clj "1.5.0" ;(defproject cli4clj "1.5.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.4.474"] [jline/jline "2.14.6"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.6" :exclusions [org.clojure/clojure]]]}} ) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "1.1.2" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]]}} :plugins [[jonase/eastwood "0.2.3"] [lein-ancient "0.6.8"]]) (defproject mvxcvi/vault "0.3.0-SNAPSHOT" :description "Content-addressable data store." :url "https://github.com/greglook/vault" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[byte-streams "0.1.10"] [clj-time "0.7.0"] [environ "0.5.0"] [potemkin "0.3.4"] [mvxcvi/clj-pgp "0.5.2"] [mvxcvi/puget "0.5.2"] [org.clojure/clojure "1.6.0"] [org.clojure/data.codec "0.1.0"] [prismatic/schema "0.2.3"]] :hiera {:cluster-depth 2 :ignore-ns #{clojure byte-streams clj-time potemkin}} :profiles {:coverage {:plugins [[lein-cloverage "1.0.2"]]} :tool {:dependencies [[mvxcvi/directive "0.4.2"] [org.clojure/tools.namespace "0.2.4"]] :jvm-opts [] :repl-options {:init-ns vault.system} :source-paths ["tool"]} :repl [:tool]}) (ns circle.init ;; (:require circle.swank) (:require circle.db) (:require circle.web) (:require circle.repl) (:require circle.logging) ;; (:require circle.backend.nodes ;; circle.backend.project.rails ;; circle.backend.project.circle) ) (def init* (delay (try (circle.logging/init) ;; workaround for Heroku not liking us starting up swank (when (System/getenv "SWANK") (require 'circle.swank) (.invoke (ns-resolve 'circle.swank 'init))) (circle.db/init) (circle.web/init) (circle.repl/init) (println (java.util.Date.)) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init)){:user {:plugins [[lein-ancient "0.6.10"] [lein-cljfmt "0.5.6"] [lein-kibit "0.1.5" :exclusions [org.clojure/clojure]] [lein-cloverage "1.0.9"]]}} (ns leiningen.new.devcards (:require [leiningen.new.templates :refer [renderer name-to-path ->files]] [leiningen.core.main :as main])) (def render (renderer "devcards")) (defn devcards [name] (let [data {:name name :sanitized (name-to-path name)}] (main/info (str "Generating fresh 'lein new' devcards project.\n" "cd into your project directory\n" "Run 'lein figwheel' and then open localhost:3449/cards.html in your browser." "")) (->files data ["project.clj" (render "project.clj" data)] ["resources/public/cards.html" (render "resources/index.html" data)] ["resources/public/index.html" (render "resources/app_index.html" data)] ["resources/public/css/{{sanitized}}_style.css" (render "style.css" data)] ["src/{{sanitized}}/core.cljs" (render "core.cljs" data)]))) (ns devcards.discuss.add-statements (:require [devcards.core :as dc :refer-macros [defcard defcard-om-next]] [discuss.parser :as parser] [discuss.views :as views] [devcards.discuss.utils :as dutils] [om.next :as om])) (defcard shortcuts dutils/shortcuts) (def sample-api-route "/town-has-to-cut-spending/justify/37/agree?history=/attitude/37") (def ^:private stmts-reconciler (om/reconciler {:state (assoc @(om/app-state parser/reconciler) :api/last-call sample-api-route) :parser (om/parser {:read parser/read :mutate parser/mutate})})) (defcard-om-next main-content-view views/MainContentView parser/reconciler) (defcard-om-next add-new-statement views/AddElement parser/reconciler) (ns akvo.lumen.specs (:require [clojure.spec.alpha :as s] [clojure.spec.gen.alpha :as gen] [akvo.lumen.util :refer (squuid)] [clojure.tools.logging :as log])) (defn keyname [key] (str (namespace key) "/" (name key))) (defn sample-with-gen [s map-gen amount] (map first (s/exercise s amount map-gen))) (defn sample ([s] (sample s 1)) ([s amount] (let [res (map first (s/exercise s amount))] (if (== 1 amount) (first res) res)))) (defn str-uuid? [v] (when (some? v) (uuid? (read-string (format "#uuid \"%s\"" v))))) (s/def ::str-uuid (s/with-gen str-uuid? #(s/gen (reduce (fn [c _] (conj c (str (squuid)))) #{} (range 100))))) (s/def ::sort #{"ASC" "DESC"}) ; Copyright (c) Rich Hickey. All rights reserved. ; The use and distribution terms for this software are covered by the ; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ; which can be found in the file epl-v10.html at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by ; the terms of this license. ; You must not remove this notice, or any other, from this software. (ns ^{:doc "Tests for emit to print XML text." :author "Herwig Hochleitner"} clojure.data.xml.test-pprint (:require [clojure.test :refer :all] [clojure.data.xml :refer :all])) (def xml "") (def indented-xml ;; FIXME indent first " ") (deftest test-indent (is (= indented-xml (indent-str (parse-str xml))))) (defproject jungerer "0.1.1" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.8.0"] [net.sf.jung/jung-algorithms "2.1"] [net.sf.jung/jung-api "2.1"] [net.sf.jung/jung-graph-impl "2.1"] [net.sf.jung/jung-visualization "2.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true}} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}} :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject org.timmc/heim-logger "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [cheshire "5.6.3"] ;; v1 [aleph "0.4.1"] ;; v2 ;; I had trouble with http.async.client -- I got a ;; 403 when connecting to euphoria.io. [stylefruits/gniazdo "1.0.0"] ] :main ^:no-aot org.timmc.heim-logger.v1 :jvm-opts ["-Xmx100M"] ) (defproject onyx-plugin/lein-template "0.7.0" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [] :plugins [[lein-set-version "0.4.1"]] :eval-in-leiningen true) (ns datascript-dom.core-test (:require [clojure.test :refer :all] [datascript-dom.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (ns discuss.components.sidebar "Controlling the sidebar." (:require [om.core :as om] [om.dom :as dom] [discuss.utils.common :as lib] [discuss.utils.views :as vlib])) (def id (lib/prefix-name "sidebar")) (defn toggle "Toggle visibility of sidebar." ([] (let [sidebar-dom (.getElementById js/document id) main-wrapper (.getElementById js/document "main-wrapper")] (lib/toggle-class sidebar-dom "active") (lib/toggle-class main-wrapper "active"))) ([bool] (let [sidebar-dom (.getElementById js/document id) main-wrapper (.getElementById js/document "main-wrapper")] (lib/toggle-class sidebar-dom "active" bool) (lib/toggle-class main-wrapper "active" bool)))) (defn show "Show sidebar." [] (toggle true)) (defn hide "Hide sidebar." [] (toggle false)) ;;;; Sidebar (defn view [data] (reify om/IRender (render [_] (dom/div nil (vlib/fa-icon "fa-bars" hide) (om/build discuss.views/main-view data)))))(ns cortex.optimize.functions (:refer-clojure :exclude [+ - * /]) (:require [clojure.core.matrix :as m] [clojure.core.matrix.operators :refer [+ - * /]] [cortex.optimize.protocols :as P])) (extend-protocol P/Function clojure.lang.IPersistentMap (value [this params] ((:value this) params)) (gradient [this params] ((:gradient this) params))) (def cross-paraboloid "Depending on the number of args passed to it, generates functions of the form: f(x, y) = (x + y)² + (y + x)² f(x, y, z) = (x + y)² + (y + z)² + (z + x)² f(x, y, z, w) = (x + y)² + (y + z)² + (z + w)² + (w + x)²" {:value (fn [args] (->> args vec cycle (take (inc (m/ecount args))) (partition 2 1) (map (partial apply +)) (map m/square) (apply +))) :gradient (fn [args] (->> args vec cycle (drop (dec (m/ecount args))) (take (+ 3 (dec (m/ecount args)))) (partition 3 1) (map (partial map * [2 4 2])) (map (partial apply +)) (m/array :vectorz)))}) (ns onyx.log.full-test (:require [clojure.core.async :refer [chan >!! e .-target .-value)}))}]] [:div [:p (get dict word)]]])))) (defn main-component [] [:div [:h1.center "Etymologically delicious"] [etym-lookup]]) (r/render-component [main-component] (. js/document (getElementById "app"))) (ns {{name}}.test-common (:require [cheshire.core :as json] [clojure.string :as str] [environ.core :refer [env]])) (defn url+ [& suffix] (apply str (format (env :service-url) (env :service-port)) suffix)) (defn json-body "Reads the body of the request as json and parses it into a map with keywords. Fails pre-condition if content type is not application/json." [resp] {:pre [(re-matches #"application/(.+)?json.+" (get-in resp [:headers "content-type"]))]} (json/parse-string (:body resp) true)) (ns clopack-native.core) (require '[net.n01se.clojure-jna :as jna]) (defn foo "I don't do a whole lot." [x] (println x "Hello, World!")) (ns advent-2017.day-17) (def input 345) (defn spin [step [current-pos value buffer]] (let [new-pos (inc (mod (+ current-pos step) value))] [new-pos (inc value) (-> (subvec buffer 0 new-pos) (into [value]) (into (subvec buffer new-pos)))])) (defn part-1 [] (let [[current-pos _ buffer] (nth (iterate (partial spin input) [0 1 [0]]) 2017)] (buffer (inc current-pos)))) (defn spin' [step [current-pos value after-zero]] (let [new-pos (inc (mod (+ current-pos step) value))] [new-pos (inc value) (if (== 1 new-pos) value after-zero)])) (defn part-2 [] (last (nth (iterate (partial spin' input) [0 1 nil]) 50000000))) (ns test-nom-nom-nom (:use [nom.nom.nom] [clojure.test])) (defn f [x] (.list x)) (deftest should-use-1.1.0-SNAPSHOT (is (= "1.1.0-master-SNAPSHOT" (clojure-version))) (f (java.io.File. "/tmp"))) (ns {{project-ns}}.styles (:require [garden-reloader.def :refer [defstyles]])) (defstyles style [:h1 {:text-decoration "underline"}]) (ns cljam.io.sequence-bench (:require [libra.bench :refer :all] [libra.criterium :as c] [cljam.test-common :as tcommon] [cljam.io.sequence :as cseq])) (defbench read-all-sequences-test (are [f opts] (c/quick-bench (with-open [rdr (cseq/reader f)] (dorun (cseq/read-all-sequences rdr opts)))) tcommon/medium-fa-file {} tcommon/medium-fa-file {:mask? true} tcommon/medium-twobit-file {} tcommon/medium-twobit-file {:mask? true})) (ns leiningen.ring.server (:use leiningen.core.eval)) (defn load-namespaces "Create require forms for each of the supplied symbols. This exists because Clojure cannot load and use a new namespace in the same eval form." [& syms] `(require ~@(for [s syms :when s] `'~(if-let [ns (namespace s)] (symbol ns) s)))) (defn server-task "Shared logic for server and server-headless tasks." [project options] (let [project (update-in project [:ring] merge options)] (eval-in-project (update-in project [:dependencies] conj ['ring-server "0.2.1"]) `(ring.server.leiningen/serve '~project) (load-namespaces 'ring.server.leiningen (-> project :ring :handler) (-> project :ring :init) (-> project :ring :destroy))))) (defn server "Start a Ring server and open a browser." ([project] (server-task project {})) ([project port] (server-task project {:port port}))) (ns flambo.accumulator-test (:use midje.sweet)) (facts "about accumulators" (future-fact "some tests")) (ns clstreams.testutil.mockito (:import org.mockito.Mockito)) (defn mock [cls] (Mockito/mock cls)) (defn mock-fn [] (mock clojure.lang.IFn)) (defmacro return-> [mock-obj-expr method-invocation-form return-value-expr] `(let [mock-obj# ~mock-obj-expr] (-> (Mockito/doReturn ~return-value-expr) (.when mock-obj#) ~method-invocation-form) mock-obj#)) (defmacro on-call [mock-fn-expr parameter-expr-list return-value-expr] `(return-> ~mock-fn-expr (.invoke ~@parameter-expr-list) ~return-value-expr)) (defproject gov.nasa.earthdata/cmr-site-templates "0.1.0-SNAPSHOT" :description "Selmer templates for CMR documentation, directory pages, and various static web content" :url "https://github.com/nasa/Common-Metadata-Repository/site-templates" :license { :name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [ [org.clojure/clojure "1.8.0"]] :profiles { :test { :plugins [ [lein-shell "0.5.0"] [test2junit "1.4.0"]]}} :aliases { ;; The following aliases are needed for the CMR build process. "generate-static" ["with-profile" "+test" "shell" "echo" "NO OP"] "test-out" ["with-profile" "+test" "test2junit"]}) (ns circle.init ;; (:require circle.swank) (:require circle.db) (:require circle.web) (:require circle.repl) (:require circle.logging) ;; (:require circle.backend.nodes ;; circle.backend.project.rails ;; circle.backend.project.circle) ) (def init* (delay (try (circle.logging/init) ;; workaround for Heroku not liking us starting up swank (when (System/getenv "SWANK") (require 'circle.swank) (.invoke (ns-resolve 'circle.swank 'init))) (circle.db/init) (circle.web/init) (circle.repl/init) (println (java.util.Date.)) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init))(ns caesium.crypto.generichash (:import (org.abstractj.kalium.crypto Hash))) (def ^:private sixteen-nuls (repeat 16 (byte 0))) (defn blake2b "Computes the BLAKE2b digest of the given message, with optional salt, key and personalization parameters." ([message] (.blake2 (new Hash) message)) ([message & {salt :salt key :key personal :personal :or {salt sixteen-nuls personal sixteen-nuls key (byte-array 0)}}] (ns salava.core.ui.content-language (:require [reagent.session :as session] [salava.core.helper :refer [dump]])) (defn init-content-language "chose language between user-lng and default lng" [contents] (let [user-lng (session/get-in [:user :language])] (if (some #(= user-lng (:language_code %)) contents) user-lng (:language-code (first (filter #(= (:language_code %) (:default_language_code %)) contents)))))) (defn content-language-selector [content-language-atom contents] (if (< 1 (count contents)) (into [:div.badge-language-selector] (for [content contents] [:a {:href "#" :class (if (= @content-language-atom (:language_code content)) "chosen" "") :on-click #(reset! content-language-atom (:language_code content))} (str (:language_code content))])) [:div.badge-language-selector])) (defn content-setter "Show right language content or default content" [selected-language content] (let [filtered-content (first (filter #(= (:language_code %) selected-language) content))] (if filtered-content filtered-content (first (filter #(= (:language_code %) (:default_language_code %)) content))))) ;; ## Version utility ;; ;; This simple command-line tool prints a JSON hash with some info about ;; the version of PuppetDB. It is useful for testing and other situations ;; where you'd like to know some of the version details without having ;; a running instance of PuppetDB. (ns com.puppetlabs.puppetdb.cli.version (:require [cheshire.core :as json]) (:use [com.puppetlabs.puppetdb.version :only [version]] [com.puppetlabs.puppetdb.scf.migrate :only [desired-schema-version]])) (def cli-description "Print out a JSON hash containing version info about PuppetDB") ;; TODO: Would like to add database info and some other things here, but that ;; will require us to have access to the configuration info. At present, the ;; configuration parsing code is scattered throughout services.clj and not ;; cleanly accessible from here. Perhaps we can revisit this once we've ;; refactored and cleaned up the configuration stuff a bit. (defn -main [& args] (doseq [[key val] {"version" (version) "target_schema_version" desired-schema-version}] (println (format "%s=%s" key val)))) (ns fred ;; Used a non-standard prefix for rook, to demonstrate that the eval occurs ;; in the fred namespace, not somewhere where there's a rook alias already. {:arg-resolvers [(io.aviso.rook/build-map-arg-resolver {:partner :barney})]} (:require [clojure.core.async :refer [go]] [io.aviso.rook :as r] [io.aviso.rook [client :as c] [utils :as utils]])) (defn index [loopback-handler partner] (go (-> (c/new-request loopback-handler) (c/to :get partner) c/send (c/then (response (utils/response {:message (format "%s says `%s'" partner (:message response))})))))) {:user {:plugins [[lein-localrepo "0.5.3"] [lein-try "0.4.3"]]}} (ns useful.java-test (:use clojure.test useful.java)) (deftest test-rescue (is (= nil (rescue (/ 9 0) nil))) (is (= 3 (rescue (/ 9 3) nil)))) {:dev {:plugins [[lein-ancient "0.6.10"]] :dependencies [[clj-http "2.1.0"]] :main ^:skip-aot uxbox.main} :prod {:jvm-opts ^:replace ["-Xms4g" "-Xmx4g" "-XX:+UseG1GC" "-XX:+AggressiveOpts" "-server"]}} (ns cljs38.polygon) ; Calculate the distance between 2 points (defn distance [a b] (Math/sqrt (+ (Math/pow (- (a 0) (b 0)) 2) (Math/pow (- (a 1) (b 1)) 2)))) ; Generate a polygon where all edges are equally distant (defn coordinates [number-of-edges radius] (letfn [ (edge-coordinates [index] [(* radius (.cos js/Math (/(* index 2 (aget js/Math "PI")) number-of-edges))) (* radius (.sin js/Math (/(* index 2 (aget js/Math "PI")) number-of-edges)))]) (next-edge [edges-left, edges] (if (> edges-left 0) (next-edge (- edges-left 1) (conj edges (edge-coordinates edges-left)) ) edges))] (next-edge number-of-edges []))) (ns braid.users.core (:require [braid.core.api :as core] #?@(:cljs [[braid.users.client.views.users-page :as views]]))) (defn init! [] #?(:cljs (do (core/register-group-page! {:key :users :view views/users-page-view})))) (ns debugging.core (:require [catacumba.core :as ct] [catacumba.http :as http] [catacumba.helpers :as hp] [catacumba.plugins.prone :as prone]) (:gen-class)) (defn index [context] (http/ok "Go here" {:content-type "text/html; encoding=utg-8"})) (defn middle-hander [context] (ct/delegate)) (defn some-page [context] (throw (ex-info "Error" {:some "data"}))) (def app (ct/routes [[:setup (prone/handler {:namespaces ["debugging"]})] [:get "somepage" middle-hander some-page] [:get index]])) (defn -main [& args] (ct/run-server app)) ;; -*- indent-tabs-mode: nil -*- (ns behaviors.t-isolated-metaconstants (:use [clojure.pprint]) (:use [midje sweet])) (defn verify-service [service] true) (declare f g) (background (f) => 1 (g) => 33) (fact 1 => 1 (provided ..service.. =contains=> {:status 200})))) (ns spam-and-eggs.http.app (:require [compojure.core :refer :all] [compojure.route :as route] [spam-and-eggs.http.api :as api] [spam-and-eggs.http.html :as html])) (def handler (routes html/handler api/handler (route/not-found "Page not found"))) ;; Copyright © 2014 JUXT LTD. (defproject juxt.modular/ring "0.5.1" :description "A modular extension that represents the Ring interface" :url "https://github.com/juxt/modular/tree/master/modules/ring" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[prismatic/schema "0.2.1"]]) ;; Copyright (c) Daniel Borchmann. All rights reserved. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be bound by ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. (use 'clojure.contrib.command-line) ;; (defn- run-repl [] (clojure.main/repl :init #(use 'conexp.main))) (with-command-line *command-line-args* "conexp-clj -- a general purpose tool for Formal Concept Analysis\n" [[gui? "Start the graphical user interface"] [load "Load script and run"]] (when gui? (clojure.main/repl :init #(do (use 'conexp.main) (use 'conexp.contrib.gui) (@(ns-resolve 'conexp.contrib.gui 'gui) :default-close-operation javax.swing.JFrame/EXIT_ON_CLOSE)))) (when load (load-file load)) (when-not (or load gui?) (clojure.main/repl :init #(use 'conexp.main)))) ;; nil (ns gtfve.state (:require [om.core :as om])) (defn initial-state [] {:error-message nil :environment :development :ui {:editor {:mode :view :modes {:stops? false} :update-render? false :map-options {:center {:lat 0 :lng 0}}} :panel {:tab :stops :stops {:query "" :last-query "" :loading? false}}} :data {:stops-search-results [] :stop-times [] :routes []}}) (defn create-cursors [state] (let [root (om/root-cursor state)] {:data #(om/ref-cursor (:data root)) :ui #(om/ref-cursor (:ui root)) :panel #(om/ref-cursor (get-in root [:ui :panel])) :editor #(om/ref-cursor (get-in root [:ui :editor])) :stops-panel #(om/ref-cursor (get-in root [:ui :panel :stops]))})) (ns circleci.backend.project.circleci (:require [circleci.backend.nodes :as nodes]) (:require [circleci.backend.nodes.circleci :as circle]) (:use [circleci.backend.build :only (build)]) (:use [circleci.backend.action.vcs :only (checkout)]) (:use [circleci.backend.action.bash :only (bash)]) (:use [circleci.backend.action.junit :only (junit)])) (def circle-build (build :project-name "CircleCI" :build-num 1 :actions [(checkout "git@github.com:arohner/CircleCI.git") (bash [(lein deps)]) (bash [(lein midje)])] :group circle/circleci-group)) (def circle-deploy (build :project-name "CircleCI" :type :deploy ;;? :group circle/circleci-group :actions [(checkout "git@github.com:arohner/CircleCI.git") (bash [(lein deps) (lein run)]) ;;; Load Balancer ]))(ns minijava.test-compile (:use clojure.test clojure.contrib.def (minijava compile))) (deftest tests-files-convert-without-exception (let [filter (proxy [java.io.FilenameFilter] [] (accept [_ name] (not (nil? (re-find #"java$" name))))) files (-> "resources/sample" java.io.File. (.listFiles filter))] (doseq [f files] (compile-program f)))) (ns neko.data "Contains utilities to manipulate data that is passed between Android entities via Bundles and Intents." (:import android.os.Bundle android.content.Intent)) (defprotocol GenericKey "If given a string returns itself, otherwise transforms a argument into a string." (generic-key [key])) (extend-protocol GenericKey String (generic-key [s] s) clojure.lang.Keyword (generic-key [k] (.getName k))) (defprotocol MapLike "Returns a wrapper of the provided object that allows to extract values from it like from an ordinar map." (like-map [this])) (extend-protocol MapLike Bundle (like-map [b] (proxy [clojure.lang.APersistentMap] [] (containsKey [k] (.containsKey b (generic-key k))) (valAt ([k] (.get b (generic-key k))) ([k default] (let [key (generic-key k)] (if (.containsKey b key) (.get b (generic-key key)) default)))) (seq [] (map (fn [k] [k (.get b k)]) (.keySet b))))) Intent (like-map [i] (like-map (.getExtras i)))) {:dev {:aliases {"test-all" ["with-profile" "dev,1.8:dev,1.6:dev,1.5:dev:dev" "test"]} :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0-beta2"]]}} r��U��a����b�  �����nP%�'�*T-�0�2 9�<�=1BaE�J�L�N�Q8TsV [y_d�h�l|mqtNw�yA}m�(����;�,���Ƞ����6���~�ķ����C� ���p������X���o�F���������t��k���%���4����� ��_�4�!J%&(�*�+(.34�9�<�AuB�EGJM�O8R�S�VcY�]�^�`1dgj�oq(rMt+x�y�y~F�`���z�L����|�����ĥo����+���x��$������^�������� �����7���������%�����W�����CW �J.#�� O%n)2.�1w3�416:�;�>�@BE JLN�P�SCW�Z�\/_�`�cEi�l�p�s@w>z�|������Y�l������E�E�J�n��=�d�"�o���ݶK�g���c�����8�v�s�v�������Z��\�������Q�n�P�k�����? �U�Y� �$�'M(S*�,�-�1B6]74;�>?CEQFNK�K�N1QTPYc\�_�bg�j)lin�omq�t4v&z�}Xۀy�����3����9�–:�j���x�����Z���)�>� �����^������1����K�����p���G�{�����a�plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns web.components.node-link (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom(defproject onyx-app/lein-template "0.11.0.0-alpha2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns circle.backend.build.inference "fns for creating a build from a source tree" (:use circle.util.fs) (:require [circle.backend.build.template :as template]) (:require [circle.backend.action :as action]) (:require circle.backend.build.inference.rails circle.backend.build.inference.php)) (def inference-fns {:rails circle.backend.build.inference.rails/spec :php circle.backend.build.inference.php/spec}) (defn set-inferred [actions] (map #(action/set-source % :inferred) actions)) (def action-order [:pre-setup :setup :post-setup :pre-test :test :post-test]) (defn merge-actions [specs] (->> specs (group-by :type) ((apply juxt action-order)) (apply concat))) (defn infer-actions "Dispatches on repo type returned from (infer-repo-type). Returns a seq of build actions." [repo] (let [actions (->> inference-fns (vals) (mapcat #(% repo)) (merge-actions) (set-inferred))] ;; if we do an inference, and come up with nothing useful, don't ;; add the template, because that would start nodes. Just return [] (if (seq actions) (template/apply-template :build actions) []))) (ns subman.const) (def db-host "http://127.0.0.1:9200") (def index-name "subman7") (def type-addicted 0) (def type-podnapisi 1) (def type-opensubtitles 2) (def type-names {type-addicted "Addicted" type-podnapisi "Podnapisi" type-opensubtitles "OpenSubtitles"}) (def update-deep 10) (def update-period (* 5 60 60)) (def result-size 100) (ns lens.reducers (:require [clojure.core.reducers :as r]) (:refer-clojure :exclude [empty? partition-by count])) (defn partition-by "Applies f to each value in coll, splitting it each time f returns a new value." [f coll] (reify clojure.core.protocols/CollReduce (coll-reduce [this f1] (clojure.core.protocols/coll-reduce this f1 (f1))) (coll-reduce [_ f1 init] (let [result (clojure.core.protocols/coll-reduce coll (fn [accum v] (let [r (f v) vs (:vs accum)] (cond (= r (:last accum)) (assoc! accum :vs (conj! vs v)) (nil? vs) (-> accum (assoc! :vs (transient [v])) (assoc! :last r)) :else (let [ret (f1 (:ret accum) (persistent! vs))] (if (reduced? ret) (reduced {:ret @ret}) (assoc! accum :ret ret :vs (transient [v]) :last r)))))) (transient {:ret init}))] (if (:vs result) (f1 (:ret result) (persistent! (:vs result))) (:ret result)))))) (defn empty? [coll] (zero? (reduce + (r/take 1 (r/map (constantly 1) coll))))) (defn count [coll] (reduce + (r/map (constantly 1) coll))) (ns comic-reader.api (:require [re-frame.core :refer [dispatch]] [ajax.core :refer [GET POST]])) (defn error-handler [{:keys [status status-text]}] (.log js/console (str "something bad happened: " status " " status-text))) (defn get-sites [] (GET "/api/v1/sites" {:handler #(dispatch [:site-list %]) :error-handler error-handler :response-format :edn})) (ns balance.cmn.pages.task-details-page (:require [balance.libs.react-native :as rn] [reagent.core :as r] [re-frame.core :refer [subscribe dispatch]] [balance.libs.rnrf :refer [scene-keys]])) (def page-key (:task-details-page scene-keys)) (def page-title "Task Details") (def styles {:page {:margin-top 64 :padding 10} :title {:min-height 40 :font-size 20 :color "gray"} :description {:min-height 40 :font-size 14}}) (defn- update-task [id path value] (dispatch [:update-task id path value])) (defn page [] (fn [] (let [task (subscribe [:get-current-task]) {:keys [id title description]} @task] [rn/view {:style (:page styles)} [rn/text-input {:style (:title styles) :value title :placeholder "Title" :multiline true :placeholder-text-color "gray" :on-change-text #(update-task id [:title] %)}] [rn/text-input {:style (:description styles) :value description :placeholder "Task Description" :multiline true :placeholder-text-color "gray" :on-change-text #(update-task id [:description] %)}]]))) (ns desdemona.query-test (:require [desdemona.query :as q] [clojure.test :refer [deftest is]])) (def dsl->logic @#'desdemona.query/dsl->logic) (deftest dsl->logic-tests (is (= '(clojure.core.logic/featurec x {:ip "10.0.0.1"}) (dsl->logic '(= (:ip x) "10.0.0.1"))))) (deftest dsl-query-tests (is (= [[{:ip "10.0.0.1"}]] (q/run-dsl-query '(= (:ip x) "10.0.0.1") [{:ip "10.0.0.1"}])))) (deftest logic-query-tests (is (= [] (q/run-logic-query 'l/fail [{:ip "10.0.0.1"}]))) (is (= [[{:ip "10.0.0.1"}]] (q/run-logic-query '(l/featurec x {:ip "10.0.0.1"}) [{:ip "10.0.0.1"}])))) (defproject me.arrdem/oxcart "0.1.0-SNAPSHOT" :description "An experimental optimizing compiler for Clojure code" :url "http://github.com/arrdem/oxcart" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.5.1"] [org.clojure/tools.analyzer.jvm "0.1.0"] [org.clojure/tools.emitter.jvm "0.1.0"] ]) (defproject onyx-app/lein-template "0.9.7.0-alpha17" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-sql "0.7.3-SNAPSHOT" :description "Onyx plugin for JDBC-backed SQL databases" :url "https://github.com/MichaelDrogalis/onyx-sql" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/java.jdbc "0.3.3"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_160450-g706d154"] [java-jdbc/dsl "0.1.3"] [com.mchange/c3p0 "0.9.2.1"] [honeysql "0.5.1"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [environ "1.0.0"] [mysql/mysql-connector-java "5.1.25"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.9.0.8" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject com.howardlewisship.cascade/cascade-core "1.0.0-SNAPSHOT" :description "Simple, fast, easy web applications in idiomatic Clojure" :url "http://github.com/hlship/cascade/" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.1.0"] [org.slf4j/slf4j-api "1.5.2"] [org.slf4j/slf4j-log4j12 "1.5.2"] [log4j/log4j "1.2.14"]] :dev-dependencies [[org.eclipse.jetty/jetty-server "7.0.0.RC4"] [org.eclipse.jetty/jetty-servlet "7.0.0.RC4"] [org.easymock/easymock "2.5.1"] [org.seleniumhq.selenium.client-drivers/selenium-java-client-driver "1.0.3"] ; oops, need the right classification of this, not yet supported [org.seleniumhq.selenium.server/selenium-server "1.0.3"] [org.seleniumhq.selenium.server/selenium-server-coreless "1.0.3"]] :aot :all :warn-on-reflection true :source-path "src/main/clojure" :test-path "src/test/clojure" :resources-path "src/main/resources" :jar-dir "target") (ns app.players (:require [app.representation :as reps] [app.player :as player] [app.multiplexer :as mux] [app.screen :as screen])) (defonce index (atom 0)) (defn single [data layout] (reify player/Player (step-fwd [_] (reset! layout {:text ((:items (@data 0)) (mod @index (count @data))) :opacity 1.0}) (swap! index inc)) (step-rnd [_] (reset! layout {:text (mux/get-item data) :opacity 1.0})) (animation [_]) (render [_] [:div {:class "single" :key (rand-int 1000000) :style {:position "absolute" :opacity 1.0 :left "40%" :top "30%"}} (:text @layout)]))) (ns bmihw.submit (:require [bmihw.common :refer [auth fb]] [reagent-forms.core :refer [bind-fields]])) (defn update-state! [state key e] (let [new-state (swap! state assoc key (-> e .-target .-value)) {:keys [username keyword content]} new-state submit (.querySelector js/document "#submit")] (set! (.-disabled submit) (not (and (or (seq username) (seq keyword)) (seq content)))))) (defn submit-to-fb! [state] (.push fb (clj->js @state) (fn [error] (when error (js/alert (str "An error occurred: " error)))))) (defn submit-page [] (let [state (atom {})] [:div [:h2 "Submit your insult."] [:div [:div [:input {:type :text :name :username :placeholder "Username" :on-change #(update-state! state :username %)}] [:br] [:input {:type :text :name :keyword :placeholder "Keyword" :on-change #(update-state! state :keyword %)}] [:br] [:input {:type :text :name :content :placeholder "Content" :on-change #(update-state! state :content %)}] [:br] [:input {:type :submit :value "Submit" :id "submit" :disabled true :on-click #(submit-to-fb! state)}]]]]))(ns cadence.model (:refer-clojure :exclude [identity]) (:require [monger.core :as mg] [monger.collection :as mc] [cadence.model.validators :as is-valid] [cemerick.friend :as friend]) (:use clojure.walk [cemerick.friend.credentials :only [hash-bcrypt]])) (defn- ensure-indexes [] (mc/ensure-index "users" {:username 1})) (defn connect [connection-info] (if (:uri connection-info) (mg/connect-via-uri! (:uri connection-info)) (mg/connect!)) (let [db-name (:db-name connection-info)] (mg/authenticate db-name (:username connection-info) (into-array Character/TYPE (:password connection-info))) (mg/set-db! (mg/get-db db-name)) (ensure-indexes))) (defn get-user [username] (mc/find-one-as-map "users" {:username username})) (defn add-user [user] (if (is-valid/user? user) (mc/save "users" (assoc user :password (hash-bcrypt (:password user)))))) (def identity #(get friend/*identity* :current)) (defn get-phrase [] "passwords are so completely last decade") (defproject play-clj/lein-template "0.1.0-SNAPSHOT" :description "A template for making play-clj projects" :url "https://github.com/oakes/play-clj" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} :dependencies [[lein-droid "0.2.0"]] :resource-paths ["resources"] :eval-in-leiningen true) (ns braid.core.client.pages (:require [spec-tools.data-spec :as ds] [braid.core.hooks :as hooks])) (def page-dataspec {:key keyword? :on-load fn? :view fn? (ds/opt :styles) vector?}) (defonce pages (hooks/register! (atom {}) {keyword? page-dataspec})) (defn on-load! [page-id page] (when-let [f (get-in @pages [page-id :on-load])] (f page))) (defn get-view [page-id] (get-in @pages [page-id :view])) (ns avalon.rules.people (:require [bouncer.core :as b] [bouncer.validators :as v] [avalon.models.crud :as crud] [avalon.models.games :as games])) (defn person-rules [method game] (let [taken? (fn [name] (if (= method :post) (= (count (games/people-named game name)) 0) true))] {:name [v/required [taken? :message "There is already a player with that name"]]})) (def add-person-rules {:status [[#{:waiting} :message "Game already started"]]}) (defn valid-person? [id kw key] (fn [ctx] (let [game (crud/get games/games id) rules (person-rules (get-in ctx [:request :request-method]) game) valid (and (b/valid? (kw ctx) rules) (b/valid? game add-person-rules)) errors (concat (first (b/validate (kw ctx) rules)) (first (b/validate game add-person-rules)))] [valid {key errors}]))) (def info-rules {:status [[#{:playing} :message "Game not started"]]}) (defn valid-info? [game] (let [valid (b/valid? game info-rules) errors (first (b/validate game info-rules))] [valid errors])) ;; See: https://github.com/kumarshantanu/lein-localrepo {:user {:plugins [;; Try new api quickly using the repl [lein-try "0.4.3"] ;;[lein-localrepo "0.5.4"] ;; Convert pom.xml to project.clj ;; Note: from https://github.com/thickey/lein-nevam [lein-nevam "0.1.2"] ;; A Leiningen plugin for a superior development environment ;; See: [Introduction Blog Post](https://blog.venanti.us/ultra/) ;; https://github.com/venantius/ultra ;;[venantius/ultra "0.5.2"] ;; Pretty-print a representation of the project map [lein-pprint "1.2.0"] ;; Keep adding more stuff here ] ;; Experimental :dependencies [[pjstadig/humane-test-output "0.8.3"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}} ;; All about higher order functions =) (ns mlpractice.lesson1) (defn generate-data-set "Generates a map of :x y values for linear regression" [constant slope num] (nth (iterate #(let [x (Math/random)] (assoc %1 x (+ constant (* slope x)))) {}) num)) (defn hypothesis-fn "Builds the hypothesis function h(x) using th0 and th1" [theta0 theta1] (fn h [x] (+ theta0 (* theta1 x)))) (defn cost-summation "The function that gets applied to every entry in every data set" [hypothesis agg data] (let [x (first data) y (second data)] (+ agg (- (hypothesis x) y)))) ;;Difference between inside and outside let? (defn cost-fn "Builds the cost function J(th0, th1) for some amount of data" [data] (let [coefficient (->> data (count) (* 2) (/ 1))] (fn cost [th0 th1] (let [hypothesis (hypothesis-fn th0 th1)] (* coefficient (reduce (partial cost-summation hypothesis) 0 data)))))) (ns discuss.components.sidebar "Controlling the sidebar." (:require [om.core :as om] [om.dom :as dom] [discuss.utils.common :as lib] [discuss.utils.views :as vlib])) (def id (lib/prefix-name "sidebar")) (defn toggle "Toggle visibility of sidebar." ([] (let [sidebar-dom (.getElementById js/document id) main-wrapper (.getElementById js/document "main-wrapper")] (lib/toggle-class sidebar-dom "active") (lib/toggle-class main-wrapper "active"))) ([bool] (let [sidebar-dom (.getElementById js/document id) main-wrapper (.getElementById js/document "main-wrapper")] (lib/toggle-class sidebar-dom "active" bool) (lib/toggle-class main-wrapper "active" bool)))) (defn show "Show sidebar." [] (toggle true)) (defn hide "Hide sidebar." [] (toggle false)) ;;;; Sidebar (defn view [data] (reify om/IRender (render [_] (dom/div nil (vlib/fa-icon "fa-bars" hide) (om/build discuss.views/main-view data)))))(ns armstrong-numbers-test (:require [clojure.test :refer [deftest is testing]] [armstrong-numbers :refer [armstrong?]])) (deftest armstrong-number-5 (testing "Single digit numbers are Armstrong numbers" (is (armstrong? 5)))) (deftest not-armstrong-number-10 (testing "There are no 2 digit Armstrong numbers" (is (not (armstrong? 10))))) (deftest armstrong-number-153 (testing "Three digit number that is an Armstrong number" (is (armstrong? 153)))) (deftest not-armstrong-number-100 (testing "Three digit number that is an Armstrong number" (is (not (armstrong? 100))))) (deftest armstrong-number-9474 (testing "Four digit number that is an Armstrong number" (is (armstrong? 9474)))) (deftest not-armstrong-number-9475 (testing "Four digit number that is not an Armstrong number" (is (not (armstrong? 9476))))) (deftest armstrong-number-9926315 (testing "Seven digit number that is an Armstrong number" (is (armstrong? 9926315)))) (deftest not-armstrong-number-9926314 (testing "Seven digit number that is not an Armstrong number" (is (not (armstrong? 9926314))))) (ns ^{:doc "A patched JTextField implementation." :author "Frank Mosebach"} fm.simrunner.gui.text-field (:gen-class :name fm.simrunner.gui.TextField :extends javax.swing.JTextField :exposes-methods {setText superSetText})) (defn -setText [this text] (when (not= (.getText this) text) (.superSetText this text))) (ns yadnd5ecs.core (:require [om.core :as om :include-macros true] [om-tools.dom :as dom :include-macros true] [om-tools.core :refer-macros [defcomponent]])) (enable-console-print!) (def app-state (atom {:text "Hello Chestnut!"})) (defn main [] (om/root (fn [app owner] (reify om/IRender (render [_] (dom/h1 (:text app))))) app-state {:target (. js/document (getElementById "app"))})) (ns rill.cli (:require [rill.event-store.atom-store :refer [atom-event-store]] [rill.event-channel :refer [event-channel]] [rill.event-stream :refer [all-events-stream-id]] [rill.event-store.atom-store.event :refer [unprocessable?]] [clojure.core.async :refer [trigger [org-slug update origin-url user] {:to (vec (:to update)) :subject (:subject update) :note (:note update) :reply-to (:email user) :org-slug org-slug :origin-url origin-url :entries (:entries update)}) (defn send-trigger! [trigger] (timbre/info "Email request to:" config/aws-sqs-email-queue "\n" (dissoc trigger :entries)) (schema/validate EmailTrigger trigger) (timbre/info "Sending request to:" config/aws-sqs-email-queue) (sqs/send-message {:access-key config/aws-access-key-id :secret-key config/aws-secret-access-key} config/aws-sqs-email-queue trigger) (timbre/info "Request sent to:" config/aws-sqs-email-queue))(ns theatralia.welcome-page (:require [net.cgrand.enlive-html :as html] [garden.core :refer [css]] [clojure.java.io :as io])) ;;; Credits: ;;; - https://github.com/cgrand/enlive ;;; - https://github.com/swannodette/enlive-tutorial/ ;;; - http://clojurewebdev.com/workshop/slides/ (def ^:private main-html (io/resource "templates/around.html")) (def ^:private welcome-html (io/resource "templates/welcome.html")) (html/defsnippet welcome-snippet welcome-html [:body :> html/any-node] [] identity) (html/deftemplate index main-html [] [:title] (html/content "Welcome to Theatralia!") [:#main-content] (html/content (welcome-snippet))) (def css-data [[:html {:font-family "sans-serif"}] [:#theatralia {:font-family "fancy"}] [:#login {:float "right"}]]) (defn main-css [] {:status 200 :headers {"Content-Type" "text/css"} :body (css css-data)}) (ns my-money.routes.upload (:require [my-money.op-csv :refer :all] [compojure.core :refer [defroutes POST]] [ring.util.http-response :as response])) (defroutes upload-routes (POST "/upload" [file] (let [data (read-csv (slurp (:tempfile file)))] (-> (response/ok (-> data (remove-column-by-name "Arkistointitunnus"))))))) (ns comic-reader.scrape (:require [clojure.string :as s] [net.cgrand.enlive-html :as html]) (:import java.net.URL)) (defn fetch-feed [url] (html/xml-resource (java.net.URL. url))) (defn fetch-url [url] (html/html-resource (java.net.URL. url))) (defn fetch-list [{:keys [url selector normalize]}] (when (every? (complement nil?) [url selector normalize]) (map normalize (html/select (fetch-url url) selector)))) (ns cglossa.core (:require [reagent.core :as reagent :refer [atom]] [plumbing.core :as plumbing :refer [map-vals]] [cglossa.centre :as centre])) (def state {:showing-results false}) ; avoid "not resolved" messages in Cursive (declare getElementById) (def data {:categories ["ku" "hest"] :users ["per" "kari"]}) (defonce app-state (into {} (map-vals atom state))) (defonce app-data (into {} (map-vals atom data))) (defn header [] [:div.navbar.navbar-fixed-top [:div.navbar-inner [:div.container [:span.brand "Glossa"]]]]) (defn app [s d] [:div [header] [:div.container-fluid [centre/top s d] [centre/bottom s d]] [:div.app-footer [:img.textlab-logo {:src "img/tekstlab.gif"}]]]) (defn ^:export main [] (reagent/render-component (fn [] [app app-state app-data]) (. js/document (getElementById "app")))) (ns clojuresque.tasks.repl (:require [clojuresque.cli :as cli] [clojuresque.util :as util] [clojure.tools.nrepl.server :as repl])) (def barrier (promise)) (def server nil) (cli/deftask start-repl "Start a nrepl server on the given port. An optional handler may be given as fully-qualified symbol. The repl server may be stopped via clojuresque.tasks.repl/stop-server." [[port p "server port"] [handler h "handler function" nil]] (let [p (Long/parseLong port) h (if handler (let [custom-handler (util/resolve-required handler)] (when-not custom-handler (throw (Exception. (str "Unknown handler Var: " handler)))) (custom-handler)) (repl/default-handler)) s (repl/start-server :port p :handler h)] (println "Repl started on port" port) (alter-var-root #'server (constantly s))) @barrier) (defn stop-repl [] (when server (repl/stop-server server) (deliver barrier true))) (ns desdemona.query (:require [clojure.core.logic :as l])) (defn ^:private gen-query [n-answers query events] `(l/run ~n-answers [results#] (l/fresh [~'x] (l/membero ~'x results#) (l/everyg #(l/membero % results#) ~events) ~query))) (defn run-query ([query events] (run-query 1 query events)) ([n-answers query events] (eval (gen-query n-answers query events)))) (ns silly-image-store.handler (:require [silly-image-store.store :as store] [environ.core :refer [env]] [compojure.core :refer :all] [ring.middleware.json :refer :all] [compojure.handler :as handler] [compojure.route :as route])) (def images-dir (env :base-store-dir)) (defn image-not-found [image] (route/not-found (str "No image '" image "' found"))) (defn serve-image [image] (let [image-file (store/load-image images-dir image)] (or image-file (image-not-found image)))) (defroutes app-routes (GET "/blah" [] {:status 200 :body {:def [123 456 789]}}) (GET "/images/:image" [image] (serve-image image)) (route/resources "/") (route/not-found "Not Found")) (def app (-> (handler/site app-routes) (wrap-json-response))) (ns reabledit.cells.read-only (:require [reabledit.util :as util])) (defn read-only-cell [{:keys [row-data column-key]}] (let [v (get row-data column-key)] [:div.reabledit-read-only-cell {:title v} [:input.reabledit-read-only-cell__input.reabledit-focused {:type "text" :value "" :on-key-down #(if (= (.-keyCode %) 13) (.stopPropagation %)) :on-copy #(util/set-clipboard-data % v)}] [:span.reabledit-read-only-cell__view v]])) (ns buddy.crypto.keys (:import java.security.Key)) (defn make-secret-key "Generates a Key instance from given raw string key." [^String skey] (let [rawkey (.getBytes skey "UTF-8")] (proxy [Key] [] (getFormat [] nil) (getEncoded [] rawkey) (toString [] skey)))) (ns jest.arithmetic-test (:require [clojure.test :refer :all] [jest.utils :refer :all] :verbose)) (deftest product-test-1 (test-code "val x = 1 * 2;" ["(def x (* 1 2))"])) (deftest product-test-2 (test-code "val x = 1 * 2 * 3;" ["(def x (* (* 1 2) 3))"])) (deftest quotent-test-1 (test-code "val x = 1 / 2;" ["(def x (/ 1 2))"])) (deftest quotent-test-2 (test-code "val x = 1 / 2 / 3;" ["(def x (/ (/ 1 2) 3))"])) (deftest multiply-divide-test (test-code "val x = 1 * 2 / 3;" ["(def x (/ (* 1 2) 3))"])) (ns leiningen.clean-tokyo (:use [clojure.java.shell :only [sh]] [clojure.java.io :only [file]])) (defn clean [srcdir] (when (.exists (file srcdir "Makefile")) (println (:out (sh "make" "distclean" :dir (file srcdir)))))) (defn clean-tokyo [] (clean (file "src/tokyocabinet")) (clean (file "src/tokyocabinet-java"))) (defproject io.aviso/twixt "0.1.5" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.1.2"] [de.neuland/jade4j "0.3.15"] [io.aviso/pretty "0.1.5"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject nasa-cmr/cmr-system-trace-lib "0.1.0-SNAPSHOT" :description "Provides library functions for tracing requests throughout the CMR system. Built on Twitter Zipkin and clj-zipkin." :url "***REMOVED***projects/CMR/repos/cmr-system-trace-lib/browse" :dependencies [[org.clojure/clojure "1.6.0"] [nasa-cmr/cmr-common-lib "0.1.1-SNAPSHOT"] ;; clj-zipkin macros don't work very well. It's included mostly for some utility ;; functions, and the thrift handling. [clj-zipkin "0.1.3" :exclusions [ch.qos.logback/logback-classic log4j org.slf4j/slf4j-log4j12]] ;; Turn off the logging noise [com.dadrox/quiet-slf4j "0.1"] [clj-time "0.7.0"]] :plugins [[lein-test-out "0.3.1"]] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.4"] [org.clojars.gjahad/debug-repl "0.3.3"]] :source-paths ["src" "dev" "test"]}}) (defproject shurly "1.0.0-SNAPSHOT" :description "FIXME: write description" :url "http://shurly.herokuapp.com" :license {:name "FIXME: choose" :url "http://example.com/FIXME"} :dependencies [[org.clojure/clojure "1.6.0"] [compojure "1.1.8"] [ring/ring-jetty-adapter "1.2.2"] [ring/ring-devel "1.2.2"] [ring-basic-authentication "1.0.5"] [environ "0.5.0"] [com.cemerick/drawbridge "0.0.6"]] :min-lein-version "2.0.0" :plugins [[environ/environ.lein "0.2.1"]] :hooks [environ.leiningen.hooks] :uberjar-name "shurly-standalone.jar" :profiles {:production {:env {:production true}}}) (ns uxbox.locales "A i18n foundation." (:require [hodgepodge.core :refer [local-storage]] [cuerdas.core :as str] [uxbox.locales.en :as locales-en])) (defonce +locales+ {:en locales-en/+locales+}) (defonce +locale+ (get local-storage ::locale :en)) (deftype C [val] IDeref (-deref [o] val)) (defn c [x] (C. x)) (defn ^boolean c? [r] (instance? C r)) (defn tr "Translate the string." ([t] (let [default (name t) value (get-in +locales+ [+locale+ t] default)] (if (vector? value) (or (second value) default) value))) ([t & args] (let [value (get-in +locales+ [+locale+ t] (name t)) plural (first (filter c? args)) args (mapv #(if (c? %) @% %) args) value (if vector? (if (= @plural 1) (first value) (second value)) value)] (apply str/format value args)))) (ns de.otto.tesla.example.example-system (:require [de.otto.tesla.system :as system] [de.otto.tesla.example.calculating :as calculating] [de.otto.tesla.example.example-page :as example-page] [com.stuartsierra.component :as c]) (:gen-class)) (defn example-calculation-function [input] (.toUpperCase input)) (defn example-system [runtime-config] (-> (system/empty-system runtime-config) (assoc :calculator (c/using (calculating/new-calculator example-calculation-function) [:metering :app-status])) (assoc :example-page (c/using (example-page/new-example-page) [:routes :calculator :app-status])))) (defn -main "starts up the production system." [& args] (system/start-system (example-system{}))) (ns lcmap.clownfish.system (:require [again.core :as again] [clojure.tools.logging :as log] ;; requiring this ensures the server component will start [lcmap.clownfish.server :as server] [lcmap.clownfish.setup.cassandra] [lcmap.clownfish.setup.rabbitmq] [mount.core :refer [defstate] :as mount])) (defstate hook :start (do (log/debugf "registering shutdown handler") (.addShutdownHook (Runtime/getRuntime) (Thread. #(mount/stop) "shutdown-handler")))) (def default-retry-strategy (again/max-retries 10 (again/constant-strategy 5000))) (defn start ([environment] (start default-retry-strategy)) ([environment startup-retry-strategy] (again/with-retries startup-retry-strategy (do (log/info "Stopping mount components") (mount/stop) (log/info "Starting mount components...") ;; insulation to make sure these states do not get accidentally ;; started (mount/start-without #'lcmap.clownfish.setup.cassandra/setup #'lcmap.clownfish.setup.cassandra/teardown #'lcmap.clownfish.setup.rabbitmq/setup (mount/with-args {:environment environment})))))) (defn stop [] (mount/stop)) (ns icecap.schema-test (:require [icecap.schema :refer :all] [clojure.test :refer :all] [schema.core :as s])) (def simple-http-request {:target "http://example.test"}) (def simple-https-request {:target "https://example.test"}) (def simple-ftp-request {:target "ftp://example.test"}) (deftest RequestSpecTests (testing "Correct request specs validate" (are [example] (s/validate RequestSpec example) simple-http-request simple-https-request #{simple-http-request simple-https-request})) (testing "Request specs with unknown/unsupported schemes don't validate" (are [example] (thrown? Throwable (s/validate RequestSpec example)) simple-ftp-request))) (ns onyx.types) <<<<<<< HEAD (defrecord Message [id payload]) (defrecord Leaf [message id acker-id completion-id ack-val hash-group route]) ======= (defrecord Leaf [message id acker-id completion-id ack-val ack-vals route routes hash-group]) (defn leaf ([message] (->Leaf message nil nil nil nil nil nil nil nil))) >>>>>>> ba78b0e... Read vpeer-id separately to rest of buffer so that (defrecord Route [flow exclusions post-transformation action]) (defrecord Ack [id completion-id ack-val timestamp]) (defrecord Results [tree acks segments]) (defrecord Result [root leaves]) (defrecord Link [link timestamp]) (ns leiningen.pallet-release "Pallet release commands to support the PalletOps release workflow." (:require [leiningen.pallet-release.core :refer [fail]] [leiningen.pallet-release.release :as release] [leiningen.pallet-release.travis :as travis])) (defn pallet-release "Pallet release commands to support the PalletOps release workflow." ^{:subtasks [#'release/init #'release/start #'release/finish #'travis/push #'release/publish]} [project & [cmd & args]] (case cmd "init" (release/init project args) "start" (release/start project args) "finish" (release/finish project args) "push" (travis/push project args) "publish" (release/publish project args) (fail "Known cmds are init, start, finish, and push"))) (ns interop.Sample (:gen-class)) (defn -main [] (throw (UnsupportedOperationException. "Not yet implemented")))(ns reabledit.components (:require [reabledit.util :as util])) (defn data-table-cell-input [columns data nth-row nth-col state] (let [k (:key (nth columns nth-col))] [:input {:type "text" :auto-focus true :value (get (get-in @state [:edit :updated]) k) :on-change #(swap! state assoc-in [:edit :updated k] (-> % .-target .-value))}])) (defn data-table-cell [columns data v nth-row nth-col state] (let [selected? (= (:selected @state) [nth-row nth-col]) edit? (:edit @state)] [:td {:class (if selected? "selected") :on-click #(util/set-selected! state nth-row nth-col)} (if (and selected? edit?) [data-table-cell-input columns data nth-row nth-col state] [:span v])])) (defn data-table-row [columns data row-data nth-row state] [:tr ;; TODO: run map-indexed to columns only once (for [[nth-col {:keys [key value]}] (map-indexed vector columns)] ^{:key nth-col} [data-table-cell columns data (get row-data key) nth-row nth-col state])]) (defn data-table-headers [columns] [:thead [:tr (for [{:keys [key value]} columns] ^{:key key} [:th value])]]) (ns little-clojurer.chapter5 (:require [little-clojurer.chapter4 :refer :all])) (defn rember* [a l] nil) (defn insertR* [new old l] nil) (defn occur* [a l] nil) (defn subst* [new old l] nil) (defn insertL* [new old l] nil) (defn member* [a l] nil) (defn leftmost [l] nil) (defproject {{ project_name }} "0.0.1-SNAPSHOT" :source-paths ["topologies"] :resource-paths ["_resources"] :aot :all :target-path "_build" :min-lein-version "2.0.0" :dependencies [[org.apache.storm/storm-core "0.9.1-incubating"] [com.parsely/streamparse "0.0.1-SNAPSHOT"] [org.clojure/clojure "1.5.1"] [org.clojure/data.json "0.2.4"] [org.clojure/tools.cli "0.3.1"] ] ) (ns webdev.core (:use [org.httpkit.server :only [run-server]]) (:require [webdev.item.migration :as migration] [webdev.item.routes :refer [item-routes]] [webdev.common.routes :refer [common-routes]] [webdev.common.middleware :refer [wrap-db wrap-simulated-methods]]) (:require [ring.middleware.reload :refer [wrap-reload]] [ring.middleware.params :refer [wrap-params]] [ring.middleware.resource :refer [wrap-resource]] [ring.middleware.file-info :refer [wrap-file-info]] [compojure.core :refer [routes]] [environ.core :refer [env]])) (def db (env :database-url)) (def app (wrap-file-info (wrap-resource (wrap-db (wrap-params (wrap-simulated-methods (routes item-routes common-routes)))) "static"))) (defn -main [port] (migration/create-table db) (run-server app {:port (Integer. port)})) (defn -dev-main [port] (migration/create-table db) (run-server (wrap-reload #'app) {:port (Integer. port)})) ;; Copyright 2008-2014 Red Hat, Inc, and individual contributors. ;; ;; This is free software; you can redistribute it and/or modify it ;; under the terms of the GNU Lesser General Public License as ;; published by the Free Software Foundation; either version 2.1 of ;; the License, or (at your option) any later version. ;; ;; This software is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this software; if not, write to the Free ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ;; 02110-1301 USA, or see the FSF site: http://www.fsf.org. (ns no-clojure-jar.tests (:use clojure.test)) (deftest bundled-clojure-version (is (= "1.5.1" (clojure-version)))) (ns mathom.toolbar) (def tool (atom {})) (defn clean [] (let [prev (.getElementById js/document "mathom_toolbar")] (if (not (nil? prev)) (.remove prev)))) (defn set-content [content] (set! (.-innerHTML (:bar @tool)) content)) (def content "

Mithril ClojureScript Toolbar

") (defn setup [] (let [body (aget (.getElementsByTagName js/document "body") 0) tb (.createElement js/document "div")] (clean) (.setAttribute tb "id" "mathom_toolbar") (.appendChild body tb) (set-content content) (swap! tool #(assoc @tool :bar tb)) ; To get access to generated node )) (defn handle-event [eib]) (defn attach-listener [] (.addEventListener (:bar @tool) "click" #(handle-event (aget (.-target %) "id")))) (ns icecap.handlers.delay (:require [clojure.core.async :refer [timeout]] [icecap.handlers.core :refer [defstep]] [schema.core :as sc])) (defstep :delay {:amount (sc/both sc/Int (sc/pred #(< 0 % 60)'(< 0 delay 60)))} [step] (timeout (:amount step))) ;; See: https://github.com/kumarshantanu/lein-localrepo {:user {:plugins [;; Try new api quickly using the repl [lein-try "0.4.3"] ;;[lein-localrepo "0.5.4"] ;; Convert pom.xml to project.clj ;; Note: from https://github.com/thickey/lein-nevam [lein-nevam "0.1.2"] ;; A Leiningen plugin for a superior development environment ;; See: [Introduction Blog Post](https://blog.venanti.us/ultra/) ;; https://github.com/venantius/ultra ;;[venantius/ultra "0.5.2"] ;; Pretty-print a representation of the project map [lein-pprint "1.2.0"] ;; Keep adding more stuff here ] ;; Experimental :dependencies [[pjstadig/humane-test-output "0.8.3"] ;; See: https://github.com/pallet/alembic [alembic "0.3.2"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}} (ns app.analysis "GitHub releases URL analysis" (:require [taoensso.timbre :as timbre :refer-macros [info]])) (defn get-os [url] (cond (boolean (re-find #"windows" url)) "Windows" (boolean (re-find #"linux" url)) "Linux" (boolean (re-find #".dmg" url)) "Mac OS X" :else "Other")) (defn get-word-size [url] (cond (boolean (re-find #"x86_64" url)) "64-bit" (boolean (re-find #"x64" url)) "64-bit" (boolean (re-find #"x86" url)) "32-bit" :else "")) (defn get-file-type [url] (cond (boolean (re-find #".zip" url)) "Portable" (boolean (re-find #".tar.gz" url)) "Portable" (boolean (re-find #".dmg" url)) "Disk Image" :else "Installer")) (defn analyze-download-url [asset-info] (let [{url :browser-download-url} asset-info] {:os (get-os url) :word-size (get-word-size url) :file-type (get-file-type url) :url url})) (defn build-download-map [asset-info-vector] (group-by :os (map analyze-download-url asset-info-vector))) {:user {:plugins [[lein-marginalia "0.7.1"] [cider/cider-nrepl "0.7.0-SNAPSHOT"] [lein-try "0.4.1"] [lein-clojars "0.9.1"] [lein-ancient "0.5.5"] [lein-pprint "1.1.1"]] :dependencies [[com.gfredericks/clj-usage-graph "0.1.3"]] }} (ns oc.storage.util.sort) (defn- activity-sort " Compare function to sort 2 entries and/or activity by their `created-at` or `published-at` order respectively, in the order (:asc or :desc) provided. " [order x y] (let [order-flip (if (= order :desc) -1 1)] (* order-flip (compare (or (:published-at x) (:created-at x)) (or (:published-at y) (:created-at y)))))) (defn sort-activity "Given a set of entries, return up to the default limit of them, intermixed and sorted." [entries order limit] (take limit (sort (partial activity-sort order) entries)));; Copyright © 2014 JUXT LTD. (defproject juxt.modular/clostache "0.6.0" :description "A modular extension that provides a Clostache templater for juxt.modular/template" :url "https://github.com/juxt/modular/tree/master/modules/clostache" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[com.stuartsierra/component "0.2.1"] [de.ubercode.clostache/clostache "1.3.1"] [juxt.modular/template "0.6.0"] ]) (ns desdemona.launcher.utils (:require [clojure.core.async :as a])) (defn block-forever! [] (a/=11: [javax.xml.bind/jaxb-api "2.3.1"] ;; needed for clj-release [org.clojure/clojure-contrib "1.20"]]}} :repositories [["releases" {:url "http://clojars.org/repo" :creds :gpg}]] :plugins [[lein-codox "0.9.4"]]) (defproject org.onyxplatform/onyx-datomic "0.7.4" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.4-20150916_205458-gf33df5b"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject com.draines/postal "1.12-SNAPSHOT" :repositories {"java.net" "http://download.java.net/maven/2"} :dependencies [[commons-codec "1.9"] [javax.mail/mail "1.4.4" :exclusions [javax.activation/activation]]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}}) (defproject org.onyxplatform/onyx-datomic "0.7.2.0" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150901_140443-g6e4750b"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject asystant "0.1.1-SNAPSHOT" :description "A simple, flexible helper for building modular systems with clojure/core.async" :url "https://github.com/monteithpj/asystant" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.clojure/core.match "0.3.0-alpha4"] [aysylu/loom "0.5.4"]] :aliases {"repl" ["with-profile" "+test" "repl"]} :profiles {:test {:dependencies [[org.clojure/test.check "0.8.2"] [com.gfredericks/test.chuck "0.2.0"] [com.velisco/herbert "0.7.0-alpha1"]]}} :plugins [[codox "0.8.15"]] :codox {:src-dir-uri "https://github.com/monteithpj/asystant/blob/master"}) (ns telegenic.core (:import [org.jcodec.api FrameGrab])) (ns metrics.counters (:use [metrics.utils :only (metric-name)]) (:import (com.yammer.metrics Metrics)) (:import (com.yammer.metrics.core Counter))) ; Create ---------------------------------------------------------------------- (defn counter "Create and return a new Counter metric with the given title. Title can be a plain string like \"foo\" or a vector of three strings (group, type, and title) like: [\"myapp\" \"webserver\" \"connections\"] " [title] (Metrics/newCounter (metric-name title))) (defmacro defcounter "Define a new Counter metric with a given title, or group, type and title." ([title] `(def ~title (counter ~(str title)))) ([group type title] `(def ~title (counter ~(vec (map str [group type title])))))) ; Read ------------------------------------------------------------------------ (defn value "Return the current value of the counter." [^Counter c] (.count c)) ; Write ----------------------------------------------------------------------- (defn inc! "Increment the counter by the given amount (or 1 if not specified)." ([^Counter c] (inc! c 1)) ([^Counter c n] (.inc c n) c)) (defn dec! "Decrement the counter by the given amount (or 1 if not specified)." ([^Counter c] (dec! c 1)) ([^Counter c n] (.dec c n) c)) (defn clear! "Clear the given counter, resetting its value to zero." [^Counter c] (.clear c) c) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.7.0"] [ring "1.4.0"] [compojure "1.3.3"] [clj-time "0.9.0"] [org.clojure/data.json "0.2.6"] [org.clojure/tools.cli "0.3.3"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject kukui "0.1.0-pre" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2227"]] :profiles {:dev {:plugins [[lein-cljsbuild "1.0.3"] [com.cemerick/clojurescript.test "0.3.1"]] :hooks [leiningen.cljsbuild]}} :cljsbuild {:builds {:whitespace {:source-paths ["test"] :compiler {:output-to "target/cljsbuild/whitespace/kukui.js" :optimizations :whitespace :pretty-print true}} :advanced {:source-paths ["test"] :compiler {:output-to "target/cljsbuild/advanced/kukui.js" :pretty-print false :optimizations :advanced}}} :test-commands {"whitespace" ["phantomjs" :runner "target/cljsbuild/whitespace/kukui.js"] "advanced" ["phantomjs" :runner "target/cljsbuild/advanced/kukui.js"]}}) (ns time-tracker.core (:gen-class) (:require [time-tracker.web.service :as web-service] [time-tracker.db :as db] [time-tracker.logging :as log] [org.httpkit.server :as httpkit] [time-tracker.util :as util])) (defn init! [] (log/configure-logging!) (db/init-db!)) (defn teardown! [] (log/teardown-logging!)) (defn start-server! ([] (start-server! (web-service/app))) ([app-handler] (init!) (log/info {:event ::server-start}) (let [stop-fn (httpkit/run-server app-handler {:port (Integer/parseInt (util/from-config :port))})] (fn [] (stop-fn) (log/info {:event ::server-stop}) (teardown!))))) (defn -main [& args] (start-server!)) (ns robot-kata.server-test (:require [clojure.test :refer :all] [robot-kata.server :refer :all])) (deftest robot-kata-routes-test (testing "Routes work as expected" (testing "Default route" (let [resp (robot-kata-routes {:request-method :get :uri "/"})] (is (= 302 (:status resp)) "Default route redirects") (is (= "/robot-kata.html" ((:headers resp) "Location")) "Default route redirects to '/robot-kata.html'") ) ) (testing "Resource route" (let [resp (robot-kata-routes {:request-method :get :uri "/robot-kata.html" :headers {"if-modified-since" "Sat, 29 Oct 1994 19:43:31 GMT"}})] (is (= 200 (:status resp)) "GET of '/robot-kata.html' returns 200 status") (is (= "text/html" ((:headers resp) "Content-Type")) "GET of '/robot-kata.html' returns content type 'text/html'") (is (> ((:headers resp) "Content-Length") 0) "GET of '/robot-kata.html' returns content of length > 0") ) ) (testing "Page not found" (is (= 0 1) "Implement page not found tests!") ) ) ) ;; Copyright © 2014 JUXT LTD. ;; We call this project modular to make the invocation: lein new modular appname (defproject modular/lein-template "0.6.13" :description "Leiningen template for a full-featured component based app using modular extensions." :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0-alpha4"] ;; EDN reader with location metadata [org.clojure/tools.reader "0.8.3"] [org.clojure/tools.logging "0.2.6"]] :eval-in-leiningen true) (ns baustellen) (defn distance [p1 p2] (Math/sqrt (apply + (map (fn [c1 c2] (Math/pow (- c1 c2) 2)) p1 p2)))) (defn cost "Returns the cost for transporting cnt units of skill over a dist. The basis cost for transporting one unit of skill over one unit of distance is taken from skill-costs. Currently the cost increases linearly with the distance and squareroot-ly with the number of skill-units transported." [dist skill cnt skill-costs] (* dist (Math/sqrt cnt) (get skill-costs skill))) (ns chess.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [chess.board :as board])) (defonce app-state (atom {:board board/start-position})) (defn piece [p owner] (reify om/IRender (render [_] (dom/div #js {:className (str "piece " (board/colour p) " " (board/pieces p))} nil)))) (defn main [] (om/root (fn [app owner] (reify om/IRender (render [_] (apply dom/div #js {:className "board"} (map-indexed (fn [i r] (apply dom/div #js {:className "row"} (map-indexed (fn [j s] (dom/div #js {:className "square" :id (board/from-board-ks j i)} (if s (om/build piece s)))) r))) (:board app)))))) app-state {:target (. js/document (getElementById "app"))})) (ns rule110.core (:require [rule110.midi :as midi])) (def grid-size 1024 ) (def max-steps 100) (def step-rule { [1 1 1] 0, [1 1 0] 1, [1 0 1] 1, [1 0 0] 0, [0 1 1] 1, [0 1 0] 1, [0 0 1] 1, [0 0 0] 0 }) (defn step "Apply the rule to each cell in the grid and return a new grid" [grid] (let [torus (concat [(last grid)] grid [(first grid)])] (map step-rule (partition 3 1 torus)))) (defn random-grid "Generate a random grid of size size with x percent of the cells set to 1" [size percent-on] (mapv (fn [_] (if (<= (rand-int 100) percent-on) 1 0)) (range size))) (defn draw-grid "Simple drawing of grid to terminal and return grid" [grid] (doseq [c grid] (print (if (= 1 c) "*" " "))) (println "") grid) (defn -main [& args] (reduce (fn [s v] (-> s step draw-grid midi/play-grid)) (random-grid 100 25) (range 250)) nil) (ns com.wsscode.pathom.book.intro.demo (:require [com.wsscode.pathom.core :as p] [com.wsscode.pathom.connect :as pc])) (pc/defresolver answer [_ _] {::pc/output [:answer-to-everything]} {:answer-to-everything 42}) (pc/defresolver answer-plus-one [_ {:keys [answer-to-everything]}] {::pc/input #{:answer-to-everything} ::pc/output [:answer-plus-one]} {:answer-plus-one (inc answer-to-everything)}) (def parser (p/parallel-parser {::p/env {::p/reader [p/map-reader pc/parallel-reader pc/open-ident-reader p/env-placeholder-reader] ::p/placeholder-prefixes #{">"}} ::p/mutate pc/mutate-async ::p/plugins [(pc/connect-plugin {::pc/register [answer answer-plus-one]}) p/trace-plugin]})) (ns clj-json (:import (clj_json JsonExt) (org.codehaus.jackson JsonFactory JsonParser) (java.io StringWriter StringReader BufferedReader)) (:use (clojure.contrib [def :only (defvar-)]))) (defvar- #^JsonFactory factory (JsonFactory.)) (defn generate-string [obj] (let [sw (StringWriter.) generator (.createJsonGenerator factory sw)] (JsonExt/generate generator obj) (.flush generator) (.toString sw))) (defn parse-string [string] (JsonExt/parse (.createJsonParser factory (StringReader. string)) true nil)) (defn- parsed-seq* [#^JsonParser parser] (let [eof (Object.)] (lazy-seq (let [elem (JsonExt/parse parser true eof)] (if-not (identical? elem eof) (cons elem (parsed-seq* parser))))))) (defn parsed-seq [#^BufferedReader reader] (parsed-seq* (.createJsonParser factory reader)))(ns cljparse.core (:require [instaparse.core :as insta] [clojure.java.io :as io] [clojure.tools.cli :refer [parse-opts]] [cljparse.config.parser :as config]) (:gen-class)) (def configname "chaincode.conf") (def cli-options ;; An option with a required argument [["-p" "--path PATH" "path to project to build" :default "./"] ["-h" "--help"]]) (defn exit [status msg] (do (println msg) status)) (defn -main [& args] (let [ {:keys [options arguments errors summary]} (parse-opts args cli-options) ] (cond (:help options) (exit 0 summary) (not= errors nil) (exit -1 (str "Error: " errors)) :else (let [ path (:path options) file (io/file path configname) ] (do (cond (not (.isFile file)) (exit -1 (str ("Configuration not found at " path))) :else (do (println "Starting cljparse on:" (.getAbsolutePath file) "and errors:" errors) (config/parser file)))))))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.main.repo.projects "A main interface for access to remote resources." (:require [beicon.core :as rx] [uxbox.config :refer (url)] [uxbox.main.repo.impl :refer (request send!)])) (defmethod request :fetch/projects [type data] (let [url (str url "/projects")] (send! {:url url :method :get}))) (defmethod request :create/project [_ data] (let [params {:url (str url "/projects") :method :post :body data}] (send! params))) (defmethod request :delete/project [_ id] (let [url (str url "/projects/" id)] (send! {:url url :method :delete}))) (ns riemann.test.common (:use riemann.common) (:use clojure.test)) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "0.3.2" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url http://www.apache.org/licenses/LICENSE-2.0 :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[jonase/eastwood "0.1.4"]]) (defproject onyx-app/lein-template "0.13.3.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-datomic "0.8.1.0-alpha3" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha3"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns clj-record.test.validation-built-ins-test (:use clojure.contrib.test-is) (:require [clj-record.validation.built-ins :as vfn])) (deftest match-creates-a-matching-fn-for-the-given-pattern (let [matches-foo? (vfn/match #"foo")] (is (matches-foo? "yes foo does")) (are (not (matches-foo? _1)) "no bar doesn't" nil))) (deftest non-match-creates-an-anti-matching-fn-for-the-given-pattern (let [non-matches-foo? (vfn/non-match #"foo")] (is (not (non-matches-foo? "foo doesn't not"))) (are (non-matches-foo? _1) "bar non-matches" nil))) (ns word-count.test (:require [clojure.test :refer :all])) (load-file "word-count.clj") (deftest count-one-word (is (= {"word" 1} (phrase/word-count "word")))) (deftest count-one-of-each (is (= {"one" 1 "of" 1 "each" 1} (phrase/word-count "one of each")))) (deftest count-multiple-occurrences (is (= {"one" 1 "fish" 4 "two" 1 "red" 1 "blue" 1} (phrase/word-count "one fish two fish red fish blue fish")))) (deftest ignore-punctuation (is (= {"car" 1, "carpet" 1 "as" 1 "java" 1 "javascript" 1} (phrase/word-count "car : carpet as java : javascript!!&@$%^&")))) (deftest include-numbers (is (= {"testing" 2 "1" 1 "2" 1} (phrase/word-count "testing, 1, 2 testing")))) (deftest normalize-case (is (= {"go" 3} (phrase/word-count "go Go GO")))) (run-tests) (ns braid.ui.styles.body) (def body [:body {:margin 0 :padding 0 :font-family "\"Open Sans\", Helvetica, Arial, sans-serif" :font-size "12px" :background "#eee"} [:textarea :input {:font-family "inherit" :font-size "1em"}]]) (set-env! :source-paths #{"src/main/java" "src/test/java"} :dependencies '[[radicalzephyr/boot-junit "0.1.0" :scope "test"]]) (def +version+ "0.1.0") (require '[radicalzephyr.boot-junit :refer [junit]]) (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}} jar {:file "server.jar"} junit {:packages '#{net.zephyrizing.http_server}}) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns leiningen.bootstrap "Bootstrap the project by running lein deps and lein git-deps." (:require leiningen.deps leiningen.git-deps)) (defn bootstrap "Bootstrap the project by running lein deps and lein git-deps." [project] (leiningen.deps/deps project) (leiningen.git-deps/git-deps project)) (defproject ring/ring-jetty-adapter "1.4.0" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [ring/ring-core "1.4.0"] [ring/ring-servlet "1.4.0"] [org.eclipse.jetty/jetty-server "9.2.10.v20150310"]] :profiles {:dev {:dependencies [[clj-http "1.1.2"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (ns cmr.common.test.cache (:require [clojure.test :refer :all] [cmr.common.cache :as c])) (def counter (atom 0)) (defn increment-counter "Increments the counter atom and returns it" [] (swap! counter inc)) (deftest cache-test (testing "cache hit, miss and reset" (let [cache-atom (c/create-cache)] (is (= 1 (c/cache-lookup cache-atom "key" increment-counter))) ;; look up again will not call the increment-counter function (is (= 1 (c/cache-lookup cache-atom "key" increment-counter))) (c/reset-cache cache-atom) (is (= 2 (c/cache-lookup cache-atom "key" increment-counter))) (is (= 2 (c/cache-lookup cache-atom "key" increment-counter)))))) (defproject ring/ring-jetty-adapter "1.9.4" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-core "1.9.4"] [ring/ring-servlet "1.9.4"] [org.eclipse.jetty/jetty-server "9.4.42.v20210604"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9:+1.10" "test"]} :profiles {:dev {:dependencies [[clj-http "3.12.3"] [less-awful-ssl "1.0.6"]] :jvm-opts ["-Dorg.eclipse.jetty.server.HttpChannelState.DEFAULT_TIMEOUT=500"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}}) { :name "STAR", :path "STAR", ;; instructional data used in /help :description "splice aware utility for aligning reads to reference", } (ns immutant.init (:require [immutant.messaging :as msg] [immutant.web :as web])) (msg/start "/topic/gravy") (msg/start (msg/as-topic "toddball")) (let [p (promise) l (msg/listen "/topic/gravy" (fn [v] (deliver p v)))] (try (msg/publish "/topic/gravy" :success) (let [delivery (deref p 1000 :fail)] (if-not (= :success delivery) (throw (Exception. (str "Should have received :success, but got " delivery))))) (finally (msg/unlisten l)))) (msg/start "queue.198") (msg/start "topic.198") ;;; Topic listeners are additive, not idempotent (msg/listen "topic.198" #(msg/publish "queue.198" (inc %))) (msg/listen "topic.198" #(msg/publish "queue.198" (dec %))) (msg/start "queue.result") (msg/start "topic.echo") (let [responder (atom nil)] (web/start (fn [request] (if @responder (do (msg/unlisten @responder) (reset! responder nil)) (reset! responder (msg/listen "topic.echo" #(msg/publish "queue.result" (identity %))))) {:status 200 :body ":success"}))) (defproject fulcro-todo "0.0.1" :description "Fulcro Todo" :dependencies [[org.clojure/clojure "1.9.0-alpha17"] [org.clojure/clojurescript "1.9.908"] [org.omcljs/om "1.0.0-beta1"] [fulcrologic/fulcro "1.0.0-beta10"]] :source-paths ["src/main"] :resource-paths ["resources"] :clean-targets ^{:protect false} ["resources/public/js" "target" "out"] :plugins [[lein-cljsbuild "1.1.6"]] :cljsbuild {:builds [{:id "dev" :source-paths ["src/main" "src/dev"] :figwheel {:on-jsload "cljs.user/refresh"} :compiler {:main cljs.user :output-to "resources/public/js/app.js" :output-dir "resources/public/js/app" :preloads [devtools.preload] :asset-path "js/app" :optimizations :none}}]} :profiles {:dev {:source-paths ["src/dev" "src/main"] :dependencies [[binaryage/devtools "0.9.4"] [org.clojure/tools.namespace "0.3.0-alpha4"] [figwheel-sidecar "0.5.13"]]}}) (ns lab-notebook.core (:require [om.core :as om] [om.dom :as dom])) (defonce appstate (atom {})) (defn app-container [cursor component] (reify om/IRender (render [this] (dom/div nil (dom/h1 nil "Lab notebook") (:message cursor))))) (om/root app-container appstate {:target (. js/document (getElementById "app"))}) (ns caesium.magicnonce.secretbox-test (:require [caesium.magicnonce.secretbox :as s] [clojure.test :refer [deftest is]] [caesium.util :as u])) (deftest xor-test (let [one (byte-array [1 0 1]) two (byte-array [0 1 0]) out (byte-array [0 0 0])] (is (identical? (#'s/xor! out one two) out)) (is (u/array-eq (byte-array [1 1 1]) out))) (let [one (byte-array [1 0 1]) two (byte-array [0 1 0])] (is (identical? (#'s/xor-inplace! one two) one)) (is (u/array-eq (byte-array [1 1 1]) one)))) (ns circle.backend.build.test-queue (:use circle.backend.build.queue) (:use circle.backend.build.run) (:use circle.backend.build.test-utils) (:require [circle.model.build :as build]) (:use midje.sweet) (:use [circle.util.retry :only (wait-for)])) (fact "queuing builds works" (let [builds (take 10 (repeatedly #(minimal-build)))] (doall (map enqueue-build builds)) => anything (wait-for {:sleep 1000 :tries 30} (fn [] (->> builds (map #(build/fetch-build (-> @% :_id))) (every? build/successful?)))) => true)) (ns braid.server.search.elasticsearch (:require [braid.server.conf :refer [config]] [braid.server.db :as db] [clojure.data.json :as json] [org.httpkit.client :as http])) (defn elasticsearch-enabled? [] (some? (config :elasticsearch-url))) (defn search-for [{:keys [text group-id user-id]}] (some-> @(http/get (str (config :elasticsearch-url) "/braid-messages/_search") {:body (json/write-str {:query {:match {:content text}}})}) :body json/read-str (get-in ["hits" "hits"]) (->> (into #{} (comp (map #(get-in % ["_source" "thread-id"])) (map #(java.util.UUID/fromString %)) (filter #(= group-id (db/thread-group-id %))) (map (fn [t-id] [t-id (db/thread-newest-message t-id)]))))) seq set)) (ns demo.messaging-test (:use clojure.test immutant.messaging)) (if (immutant.util/in-immutant?) (deftest ^:integration listening (start "test.topic") (let [expected (promise) handler (listen "test.topic" #(deliver expected %))] (try (publish "test.topic" :success) (is (= :success (deref expected 500 :fail))) (finally @(unlisten handler) (stop "test.topic")))))) (ns lab-notebook.core (:require [om.core :as om] [om.dom :as dom])) (defonce appstate (atom {})) (defn app-container [cursor component] (reify om/IRender (render [this] (apply dom/div nil (dom/h1 nil "Lab notebook") nil (for [entry (:entries cursor)] (dom/div nil (dom/div nil (:summary entry)) (dom/div nil (:date-time entry)) (dom/div nil (:notes entry)))))))) (om/root app-container appstate {:target (. js/document (getElementById "app"))}) (ns hyphen-keeper.db "Persistence for the hyphenation dictionary" (:require [yesql.core :refer [defqueries]])) (def ^:private db {:name "java:jboss/datasources/old-productions"}) (defqueries "db/queries.sql" {:connection db}) (defn read-words "Return a coll of words for given `spelling`" [spelling] (-> {:spelling spelling} words)) (defn read-words-paginated "Return a coll of words for given `spelling` using `max-rows` and `offset` for pagination" [spelling offset max-rows] (-> {:spelling spelling :max_rows max-rows :offset offset} words-paginated)) (defn search-words "Return a coll of words for given `spelling` and given `search` term" [spelling search] (-> {:spelling spelling :search search} words-search)) (defn save-word! "Persist `word` with given `hyphenation` and `spelling`" [word hyphenation spelling] (-> {:word word :hyphenation hyphenation :spelling spelling} save-word-internal!)) (defn remove-word! [word spelling] (-> {:word word :spelling spelling} remove-word-internal!)) (ns ^:no-doc onyx.messaging.messenger-buffer (:require [clojure.core.async :refer [chan >!! MessengerBuffer {:opts opts})) (defproject todomvc-re-frame "0.8.0" :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.89"] [reagent "0.6.0-rc"] [re-frame "0.8.0-SNAPSHOT"] [binaryage/devtools "0.7.0"] [secretary "1.2.3"] [prismatic/schema "1.0.3"]] :plugins [[lein-cljsbuild "1.1.3"] [lein-figwheel "0.5.4-5"]] :hooks [leiningen.cljsbuild] :profiles {:dev {:cljsbuild {:builds {:client {:source-paths ["devsrc"] :compiler {:main "todomvc.dev" :asset-path "js" :optimizations :none :source-map true :source-map-timestamp true}}}}} :prod {:cljsbuild {:builds {:client {:compiler {:optimizations :advanced :elide-asserts true :pretty-print false}}}}}} :figwheel {:server-port 3450 :repl true} :clean-targets ^{:protect false} ["resources/public/js" "target"] :cljsbuild {:builds {:client {:source-paths ["src" "../../src"] :compiler {:output-dir "resources/public/js" :output-to "resources/public/js/client.js"}}}}) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.data.core "Worker related api and initialization events." (:require [beicon.core :as rx] [uxbox.rstore :as rs] [uxbox.constants :as c] [uxbox.util.workers :as uw])) (defonce worker (uw/init "/js/worker.js")) (ns ^{:added "2.0.0" :author "Pedro Santos"} obb-rules.logger "Specific logger that can be turned on and off" (:require [obb-rules.simplifier :as simplify])) (def ^:dynamic *verbose* false) (defmacro log "Logs the given data" [& args] `(when *verbose* (println ~@args))) (defn ai-turn "Logs ai-turn header" [ai-name game] (log "## ~~~~~~~~~~~~~~~~~~~~~~") (log "## AI Turn:" ai-name) (log "Game:") (log (simplify/clean-result {:board game}))) (defmacro with-verbose "Runs the given code in verbose mode" [& body] `(binding [*verbose* true] ~@body)) (defn ai-option "Logs an AI option" [option] (log (:actions option)) (log "\tValue:" (:value option) "(" (:old-value option) ")" "Cost:" (:cost option))) (ns circle.backend.test-git (:use midje.sweet) (:use circle.backend.git) (:require [circle.model.project :as project]) (:require [circle.backend.build.test-utils :as test]) (:require [circle.backend.github-url :as github]) (:require fs)) (test/ensure-test-project) (fact "clone works" (let [test-url (-> test/test-project :vcs_url) test-git-url (github/->ssh test-url) test-repo-path (default-repo-path test-url) ssh-key (project/ssh-key-for-url test-url)] (fs/deltree test-repo-path) (repo-exists? test-repo-path) => false (clone test-git-url :ssh-key ssh-key :path test-repo-path) (repo-exists? test-repo-path) => true))(ns icecap.schema-test (:require [icecap.schema :refer :all] [clojure.test :refer :all] [schema.core :as s])) (def simple-http-request {:target "http://example.test"}) (def simple-https-request {:target "https://example.test"}) (def simple-ftp-request {:target "ftp://example.test"}) (deftest RequestSpecTests (testing "Correct request specs validate" (are [example] (s/validate RequestSpec example) simple-http-request simple-https-request #{simple-http-request simple-https-request})) (testing "Empty collections don't validate" (are [example] (some? (s/check RequestSpec example)) [] #{})) (testing "Request specs with unknown/unsupported schemes don't validate" (are [example reason] (= (s/check RequestSpec example) reason) simple-ftp-request {:target (not ("supported-scheme?" "ftp://example.test"))}))) (defproject onyx-app/lein-template "0.10.0.0-beta3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject incise "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [speclj "2.1.2"] [ring "1.2.0"] [hiccup "1.0.2"] [compojure "1.1.5"] [http-kit "2.1.1"] [dieter "0.4.1"]] :plugins [[speclj "2.1.2"]] :test-paths ["spec/"] :main incise.core) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.7-alpha2"] [org.thnetos/cd-client "0.3.4"] [clj-stacktrace "0.2.4"] [org.clojure/tools.nrepl "0.2.0-beta6"] [com.cemerick/drawbridge "0.0.3"] [clojure-complete "0.2.1"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java" :source-paths ["src/clj"] :java-source-paths ["src/java"] :main ^{:skip-aot true} reply.main) (defproject io.curtis/boilerpipe-clj "0.2.0" :description "A simple wrapper around the Boilerpipe library for extracting text from html articles/pages" :url "http://curtis.io" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.0"] [org.thnetos/cd-client "0.3.4" :exclusions [org.clojure/clojure cheshire]] [net.sourceforge.nekohtml/nekohtml "1.9.15"] [xerces/xercesImpl "2.9.1"] [de.l3s.boilerpipe/boilerpipe "1.2.0"]] :repositories {"boilerpipe" {:url "http://boilerpipe.googlecode.com/svn/repo/"}}) (ns advent-2017.day-08 (:refer-clojure :exclude [inc dec]) (:require #?(:cljs [planck.core :refer [eval read]]) [#?(:clj clojure.java.io :cljs planck.io) :as io] [clojure.string :as str] [clojure.spec.alpha :as s]) #?(:clj (:import (java.io PushbackReader)))) (def input (->> "advent_2017/day_08/input" io/resource io/reader #?(:clj PushbackReader.))) (s/def ::instr (s/* (s/cat :tgt symbol? :upd symbol? :val number? :if #{'if} :lhs symbol? :cmp symbol? :rhs number?))) (def data (->> (repeatedly #(read {:eof nil} input)) (take-while some?) (s/conform ::instr))) (def inc +) (def dec -) (def != not=) (def register-history (reductions (fn [acc {:keys [tgt upd val lhs cmp rhs]}] (eval `(cond-> '~acc (~cmp ('~acc '~lhs 0) ~rhs) (update '~tgt (fnil ~upd 0) ~val)))) {} data)) (defn max-register-val [registers] (apply max (or (vals registers) [0]))) (defn part-1 [] (max-register-val (last register-history))) (defn part-2 [] (apply max (map max-register-val register-history))) (ns leftpad.handler (:require [compojure.core :refer :all] [compojure.route :as route] [compojure.handler :as handler] [ring.middleware.json :refer [wrap-json-response]] [ring.middleware.params :refer [wrap-params]] [ring.util.response :refer [response]] [ring.middleware.defaults :refer [wrap-defaults site-defaults]])) (defroutes app-routes (GET "/" {:keys [params] :as request} (response {:foo (get params :str "none")})) (route/not-found "Not Found")) (def app (-> (handler/api app-routes) (wrap-params) (wrap-json-response))) (defproject madouc "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.immutant/web "2.1.6"]] :main madouc.core :profiles {:uberjar {:aot :all}}) (defproject clj-gatling "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [clojure-csv/clojure-csv "2.0.1"] [clj-time "0.6.0"] [http-kit "2.1.16"] [io.gatling/gatling-charts "2.0.0-M3a"] [io.gatling.highcharts/gatling-charts-highcharts "2.0.0-M3a"]] :repositories { "excilys" "http://repository.excilys.com/content/groups/public" } :main clj-gatling.core) (defproject cctray-clj "0.1.0" :description "XML parser for cctray" :url "https://github.com/cowley05/cctray-clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/data.json "0.2.5"] [clj-time "0.8.0"]] :profiles {:dev {:plugins [[lein-midje "3.1.3"] [lein-ancient "0.5.5"]] :dependencies [[org.clojure/clojure "1.6.0"] [midje "1.6.3"]]}}) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.3"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "2.3.0"] [clj-http "3.12.1"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject onyx-app/lein-template "0.11.0.0-alpha3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.clojure-grimoire/lib-grimoire "0.9.0" :description "A shared library for Grimoire infrastructure" :url "http://github.com/clojure-grimoire/lib-grimoire" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [version-clj "0.1.0" :exclusions [org.clojure/clojure]] [me.arrdem/detritus "0.2.2" :exclusions [org.clojure/clojure]] [com.cemerick/url "0.1.1" :exclusions [org.clojure/clojure]]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.6.1" :exclusions [org.clojure/clojure]]]}}) (defproject cli4clj "1.7.0" ;(defproject cli4clj "1.7.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.4.474"] [jline/jline "2.14.6"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :aot :all :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.9" :exclusions [org.clojure/clojure]]]}} ) (defproject tile-game "1.0.0-SNAPSHOT" :description "A Tile Puzzle Game and Solver" :min-lein-version "2.0.0" :main tile-game.core :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.494"] [reagent "0.6.1"]] :plugins [[lein-figwheel "0.5.9"]] :sources-paths ["src"] :clean-targets ^{:protect false} ["resources/public/js/out" "resources/public/js/tile-game.js" :target-path] :cljsbuild { :builds [{:id "tile-game" :source-paths ["src"] :figwheel true :compiler {:main "tile-game.grid" :asset-path "js/out" :output-to "resources/public/js/tile-game.js" :output-dir "resources/public/js/out" :source-map-timestamp true}}]} :figwheel { :css-dirs ["resources/public/css"] :open-file-command "emacsclient" }) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-beta4" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta4"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject org.platypope/parenskit "0.1.1-SNAPSHOT" :description "Clojure integration library for the LensKit framework." :url "http://github.com/llasram/parenskit" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :global-vars {*warn-on-reflection* true} :source-paths ["src/clojure"] :java-source-paths ["src/java"] :javac-options ["-target" "1.6" "-source" "1.6"] :dependencies [[org.clojure/clojure "1.5.1"] [org.grouplens.lenskit/lenskit-core "2.0.2"] [org.platypope/esfj "0.2.0"]] :profiles {:dev {:dependencies [[com.google.code.findbugs/annotations "2.0.2"]]} :java6 {:dependencies [[org.codehaus.jsr166-mirror/jsr166y "1.7.0"]]}}) (defproject manners "0.1.0-SNAPSHOT" :description "A validation library built on using predicates properly." :url "https://github.com/RyanMcG/manners" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [speclj "2.5.0"]] :plugins [[speclj "2.5.0"]] :test-paths ["spec/"]) (defproject cascade "0.2-SNAPSHOT" :description "Simple, fast, easy web applications in idiomatic Clojure" :url "http://github.com/hlship/cascade" :source-path "src/main/clojure" :resources-path "src/main/resources" :test-path "src/test/clojure" :dev-resources-path "src/test/resources" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/algo.monads "0.1.0"] [compojure "0.6.5"]] :dev-dependencies [[ring/ring-jetty-adapter "0.3.11"] [swank-coljure "1.3.1"] [midje "1.1.1"]]) (defproject hawk "0.2.0-SNAPSHOT" :description "Watch files with clojure (in the manner of a hawk)" :url "https://github.com/wkf/hawk" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :test-paths ["src/test"] :source-paths ["src/main"] :java-source-paths ["vendor/barbarywatchservice/src"] :aot [hawk.watcher] :dependencies [[org.clojure/clojure "1.6.0"] [net.java.dev.jna/jna "3.2.3"]] :profiles {:dev {:dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"]]}}) (defproject onyx-app/lein-template "0.9.8.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.10.0.0-beta9" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.1"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.10.2"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject funcool/postal "0.1.0-SNAPSHOT" :description "A parser, renderer and validation layer for POSTAL protocol for Clojure and ClojureScript." :url "http://github.com/funcool/postal" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :source-paths ["src"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/tools.reader "0.10.0-alpha1"] [funcool/cuerdas "0.5.0"]] :profiles {:dev {:dependencies [[org.clojure/clojurescript "0.0-3308"]]}}) (ns incise.parsers.impl.markdown-spec (:require [speclj.core :refer :all] [clojure.java.io :refer [file resource]] [incise.core] ; Ensure that layouts have been loaded (incise.parsers [core :as pc] [markdown :refer :all])) (:import [java.io File])) (describe "parsing" (with markdown-file (file (resource "spec/another-forgotten-binding-pry.md"))) (it "does something" (should= "" (pc/Parse->string (parse @markdown-file))))) (run-specs) (ns circleci.init ;;(:require circleci.swank) (:require circleci.db) (:require circleci.db.migrations) (:require circleci.web) (:require circleci.repl) (:require circleci.logging)) (defn -main [] (try ;; (circleci.swank/init) (circleci.logging/init) (circleci.db/init) (circleci.db.migrations/init) (circleci.web/init) (circleci.repl/init) (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))(ns buildviz.main (:require [buildviz.build-results :as results] [buildviz.handler :as handler] [buildviz.storage :as storage] [clojure.tools.logging :as log])) (def jobs-filename "buildviz_jobs") (def tests-filename "buildviz_tests") (defn- wrap-log-request [handler] (fn [req] (let [resp (handler req) method (.toUpperCase (name (:request-method req))) uri (:uri req) status (:status resp)] (log/info (format "\"%s %s\" %s" method uri status)) resp))) (defn- wrap-log-errors [handler] (fn [req] (let [resp (handler req) status (:status resp) body (:body resp) uri (:uri req)] (when (>= status 400) (log/warn (format "Returned %s for %s: \"%s\"" status uri body))) resp))) (defn- persist-jobs! [build-data] (storage/store-jobs! build-data jobs-filename)) (defn- persist-tests! [tests-data] (storage/store-jobs! tests-data tests-filename)) (def app (let [builds (atom (storage/load-jobs jobs-filename)) tests (atom (storage/load-jobs tests-filename))] ; TODO hide atom inside record (-> (handler/create-app (results/build-results builds tests) persist-jobs! persist-tests!) wrap-log-request wrap-log-errors))) (defproject ring/ring-jetty-adapter "1.7.0" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-core "1.7.0"] [ring/ring-servlet "1.7.0"] [org.eclipse.jetty/jetty-server "9.2.24.v20180105"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9" "test"]} :profiles {:dev {:dependencies [[clj-http "2.2.0"]] :jvm-opts ["-Dorg.eclipse.jetty.server.HttpChannelState.DEFAULT_TIMEOUT=500"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}}) (ns made-merits.service.leaderboard-users (:require [made-merits.service.winner-calculator :as winner-calculator] [made-merits.service.score-calculator :as score-calculator])) (defn presentable [db-users] (winner-calculator/with-winner (score-calculator/with-score db-users))) (ns fault.core (:require [fault.future :as f] [fault.service :as s]) (:import (fault ServiceExecutor ResilientAction ResilientFuture))) (set! *warn-on-reflection* true) (defn service [pool-size] (s/service-executor pool-size)) (defn submit-action [^ServiceExecutor service f time-out-ms] (f/->CLJResilientFuture (.promise ^ResilientFuture (.submitAction service (reify ResilientAction (run [_] (f))) time-out-ms))))(ns io.aviso.launch (use io.aviso.twixt [io.aviso.twixt exceptions tracker] ring.adapter.jetty) (import [java.sql SQLException])) (defn handler [request] (trace "Invoking handler (that throws exceptions)" (throw (->> (SQLException. "Inner Exception" "SQL-STATE", 999) (RuntimeException. "Middle Exception") (IllegalArgumentException. "Outer Exception"))))) (defn app [] (let [twixt (new-twixt {:development-mode true})] (-> handler (wrap-with-twixt twixt) (wrap-with-exception-reporting twixt)))) (defn launch [] (let [server (run-jetty (app) {:port 8888 :join? false})] #(.stop server)))(ns leftpad.handler (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.json :refer [wrap-json-response]] [ring.util.response :refer [response]] [ring.middleware.defaults :refer [wrap-defaults site-defaults]])) (defroutes app-routes (GET "/" [] (response {:foo "bar"})) (route/not-found "Not Found")) (def app (wrap-json-response app-routes site-defaults)) (ns {{namespace}} (:import [com.badlogic.gdx Game Gdx Graphics Screen] [com.badlogic.gdx.graphics Color GL20] [com.badlogic.gdx.graphics.g2d BitmapFont] [com.badlogic.gdx.scenes.scene2d Stage] [com.badlogic.gdx.scenes.scene2d.ui Label Label$LabelStyle])) (def main-screen (let [stage (atom nil)] (proxy [Screen] [] (show [] (reset! stage (Stage.)) (let [style (Label$LabelStyle. (BitmapFont.) (Color. 1 1 1 1)) label (Label. "Hello world!" style)] (.addActor @stage label))) (render [delta] (.glClearColor (Gdx/gl) 0 0 0 0) (.glClear (Gdx/gl) GL20/GL_COLOR_BUFFER_BIT) (doto @stage (.act delta) (.draw))) (dispose []) (hide []) (pause []) (resize [w h]) (resume [])))) (gen-class :name {{package}}.Game :extends com.badlogic.gdx.Game) (defn -create [^Game this] (.setScreen this main-screen)) (ns runbld.build (:require [runbld.util.date :as date])) (defn make-rand-uuid [] (.replaceAll (str (java.util.UUID/randomUUID)) "-" "")) (defn make-id [] (format "%s-%s" (date/yyyymmdd-hhmmss) (make-rand-uuid))) (defn wrap-build-meta [proc] (fn [opts] (proc (assoc opts :id (make-id))))) {:user {:plugins [[lein-exec "0.3.0"] [lein-depgraph "0.1.0"] [lein-deps-tree "0.1.2"] [jonase/eastwood "0.1.2"]] :dependencies [[org.clojure/tools.namespace "0.2.4"] [criterium "0.4.2"] [slamhound "1.5.5"]] :aliases {"slamhound" ["run" "-m" "slam.hound"]}}} (ns clojush.ns) ;; provides a macro that uses all clojush namespaces except for examples/* and experimental/* (defmacro use-clojush [] '(do (use '(clojush core evaluate globals individual interpreter pushstate random simplification util)) (use '(clojush.instructions boolean code common numbers random-instructions return string tag zip)) (use '(clojush.pushgp breed genetic-operators parent-selection pushgp report)))) (ns zetawar.devcards.scenarios (:require [datascript.core :as d] [devcards.core :as dc :include-macros true] [integrant.core :as ig] [posh.core :as posh] [reagent.core :as r] [zetawar.app :as app] [zetawar.system :as system] [zetawar.views :as views]) (:require-macros [devcards.core :refer [defcard defcard-rg]])) (defcard-rg sterlings-aruba-multiplayer-card (let [system (ig/init system/game-config) game-cfg (:zetwar.system/game system) views-cfg (:zetwar.system/game-views system)] (app/start-new-game! game-cfg :sterlings-aruba-multiplayer) [views/board views-cfg])) (defcard-rg city-sprawl-multiplayer-card (let [system (ig/init system/game-config) game-cfg (:zetwar.system/game system) views-cfg (:zetwar.system/game-views system)] (app/start-new-game! game-cfg :city-sprawl-multiplayer) [views/board views-cfg])) (defproject degasolv/degasolv "1.1.1-SNAPSHOT" :description "Dependency resolver with an eye toward building software." :url "http://github.com/djhaskin987/degasolv" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :main degasolv.cli :dependencies [ [org.clojure/clojure "1.9.0-alpha14"] [version-clj "0.1.2"] [org.clojure/tools.cli "0.3.5"] [me.raynes/fs "1.4.6"] [com.velisco/tagged "0.5.0"] ] :plugins [[lein-print "0.1.0"]] :test-selectors { :resolve-basic :resolve-basic :resolve-harden :resolve-harden :string-to-requirement :string-to-requirement :repo-aggregation :repo-aggregation :resolve-conflict-strat :resolve-conflict-strat } :profiles { :dev {:dependencies [ [org.clojure/core.match "0.3.0-alpha4"] [version-clj "0.1.2" :exclusions [org.clojure/clojure]] ]} :uberjar {:aot [degasolv.cli degasolv.resolver]} } :target-path "target/%s") (ns router.core (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.middleware.json :refer [wrap-json-body wrap-json-response]] [ring.util.response :refer [response]] [router.haproxy :as h]) (:gen-class)) (def services (atom {})) (defn merge-services [one two] (let [in (one :in-port) outs (into (one :out-port) (two :out-port))] {:in-port in :out-port outs})) (defn register-service [{name :name in :in-port out :out-port}] (let [new-service {name {:in-port in :out-port [out]}}] (swap! services #(merge-with merge-services % new-service)))) (defroutes app-routes (GET "/status" [] (response (str @services))) (POST "/register" {body :body} (register-service body)) (route/not-found "Not Found")) (def app (-> app-routes (wrap-defaults api-defaults) (wrap-json-body {:keywords? true}) (wrap-json-response))) (ns om-chat.components.message-composer (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom] )) (def ESCAPE_KEY 27) (def ENTER_KEY 13) (defn change [c e] (om/update-state! c assoc :edit-text (.. e -target -value))) (defn key-down [c id e on-new-msg] (condp == (.-keyCode e) ENTER_KEY (let [msg-text (or (om/get-state c :edit-text) "")] (on-new-msg id msg-text) (doto e (.preventDefault) (.stopPropagation))) nil)) (defui MessageComposer ;; static om/IQuery ;; (query [this] ;; :thread/id) Object (render [this] (let [{:keys [thread/id] :as props} (om/props this) {:keys [on-new-msg]} (om/get-computed props)] ;; (println "RENDER composer: " props) (dom/textarea #js{:className "message-composer" :name "message" :value (om/get-state this :edit-text) :onChange #(change this %) :onKeyDown #(key-down this id % on-new-msg)}) ))) (def message-composer (om/factory MessageComposer)) ;; See: https://github.com/kumarshantanu/lein-localrepo {:user {:plugins [[lein-localrepo "0.5.4"] [lein-try "0.4.3"] ;; Convert pom.xml to project.clj ;; Note: from https://github.com/thickey/lein-nevam [lein-nevam "0.1.2"]]}} #!/usr/bin/env boot #tailrecursion.boot.core/version "2.0.0" (set-env! :dependencies [['tailrecursion/boot.core "2.0.0"] ['tailrecursion/boot.task "2.0.0"] ['tailrecursion/hoplon "5.0.0"] ['markdown-clj "0.9.38"] ['org.clojure/clojurescript "0.0-2156"]] :src-paths #{"src"} :out-path "resources/public") (add-sync! (get-env :out-path) #{"resources/assets"}) (require ['tailrecursion.boot.task :refer :all] ['tailrecursion.hoplon.boot :refer :all]) (deftask dev "Build hoplon.io for local development." [] (comp (watch) (hoplon {:pretty-print true :prerender false :optimizations :whitespace}))) (deftask prod "Build hoplon.io for production deployment." [] (hoplon {:optimizations :advanced})) (ns app.analysis "GitHub releases URL analysis" (:require [taoensso.timbre :as timbre :refer-macros [info]])) (defn get-os [url] (cond (boolean (re-find #"windows" url)) "Windows" (boolean (re-find #"linux" url)) "Linux" (boolean (re-find #"mac|.dmg" url)) "Mac OS X" :else "Other")) (defn get-word-size [url] (cond (boolean (re-find #"x86_64" url)) "64-bit" (boolean (re-find #"x64" url)) "64-bit" (boolean (re-find #"x86" url)) "32-bit" :else "")) (defn get-file-type [url] (cond (boolean (re-find #".zip" url)) "Portable" (boolean (re-find #".tar.gz" url)) "Portable" (boolean (re-find #".dmg" url)) "Disk Image" :else "Installer")) (defn analyze-download-url [asset-info] (let [{url :browser-download-url} asset-info] {:os (get-os url) :word-size (get-word-size url) :file-type (get-file-type url) :url url})) (defn build-download-map [asset-info-vector] (group-by :os (map analyze-download-url asset-info-vector))) (ns mikron.compiler.util-macros #?(:cljs [:require-macros mikron.compiler.util-macros])) (defmacro compile-time "Emits the body only at compile time." [& body] (when #?(:clj (not (:ns &env)) :cljs (re-matches #".*\$macros" (name (ns-name *ns*)))) `(do ~@body))) ;(defproject cli4clj "1.6.3" (defproject cli4clj "1.6.4-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.4.474"] [jline/jline "2.14.6"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :aot :all :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.9" :exclusions [org.clojure/clojure]]]}} ) (ns cljs.core) (def defmacro (fn [name & fdecl] `(do (def ~name (fn ~@fdecl)) (set! (. ~name macro) true)))) (set! (. defmacro macro) true) (defmacro defn [name & fdecl] `(def ~name (fn ~@fdecl)) ) (defn second [x] (first (next x))) (defn ffirst [x] (first (first x))) (defn nfirst [x] (next (first x))) (defn fnext [x] (first (next x))) (defn nnext [x] (next (next x))) (defmacro println [& args] `(js/console.log (str ~@args))(ns integration-spec (:use speclj.core) (:require [org.example.server :as server] [clj-http.client :as client])) (describe "integration" (with-all server (server/start-server 8080)) (it "can start the server" (should-not-be-nil @server)) (after-all ;; start-server returns a function to stop the server, invoke it after all characteristics ;; have executed. (@server)) (it "can get current counters" (let [response (client/get "http://localhost:8080/counters")] (->> response :body read-string (should= {"foo" 0 "bar" 0}))))) (run-specs)(ns attendance.server (:require [clojure.java.io :as io] [compojure.core :refer [GET defroutes]] [compojure.route :refer [resources]] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.middleware.gzip :refer [wrap-gzip]] [ring.middleware.json :refer [wrap-json-body wrap-json-response]] [environ.core :refer [env]] [ring.adapter.jetty :refer [run-jetty]] [attendance.google.sheets :refer [reflect-spreadsheets]]) (:gen-class)) (defroutes routes (resources "/") (GET "/sheets" _ (reflect-spreadsheets))) (def http-handler (-> routes wrap-json-body wrap-json-response (wrap-defaults api-defaults) wrap-gzip)) (defn -main [& [port]] (let [port (Integer. (or port (env :port) 10555))] (run-jetty http-handler {:port port :join? false}))) (ns sleuth.handler (:use compojure.core ring.middleware.edn ring.middleware.json sleuth.util [ring.adapter.jetty :only [run-jetty]]) (:require [compojure.handler :as handler] [compojure.route :as route] [sleuth.auth :as auth] [sleuth.users :as user] [sleuth.sites :as sites] [sleuth.events :as events] [monger.core :as m])) (m/connect!) (m/set-db! (m/get-db "sleuth-dev")) (defn wrap-dir-index [handler] (fn [req] (handler (update-in req [:uri] #(if (= "/" %) "/index.html" %))))) (defroutes app-routes (context "/events" [] events/event-routes) (context "/sites" [] sites/site-routes) (context "/auth" [] auth/auth-routes) (route/resources "/") (route/not-found "Not Found")) (def app (-> app-routes wrap-dir-index wrap-edn-params wrap-json-params wrap-json-response)) (defn -main [port] (run-jetty app {:port (Integer. port)})) (ns cljs.lean-map.test.core (:require [cljs.test :refer-macros [deftest]] [collection-check.core :as cc] [clojure.test.check.generators :as gen] [cljs.lean-map.core :as lean-map.core])) (def gen-element (gen/tuple gen/int)) (deftest assert-lean-map-core-map-like (cc/assert-map-like 100 (.-EMPTY lean-map.core/PersistentHashMap) gen-element gen-element)) (ns cruncher.utils.status (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom] [cljs.core.async :refer [Docker {:url url})) (ns coffee-table.component.web-server (:require [bidi.vhosts :refer [vhosts-model]] [schema.core :as s] [coffee-table.component.visits :refer [visit-routes]] [com.stuartsierra.component :as component] [yada.yada :as yada] [taoensso.timbre :as timbre])) (timbre/refer-timbre) (s/defn routes "Create the URI route structure for our application." [visits] ["" [ ["/hello" (yada/handler "Hello World")] ["/api" [(visit-routes visits)]] [true (yada/handler nil)]]]) (s/defrecord WebServer [host port visits listener] component/Lifecycle (start [component] (if listener component ; idempotence (let [vhosts-model (vhosts-model [{:scheme :http :host host} (routes visits)]) listener (yada/listener vhosts-model {:port port})] (info ::started "using port %s, host %s" (:port listener) host) (assoc component :listener listener)))) (stop [component] (when-let [close (get-in component [:listener :close])] (close)) (assoc component :listener nil))) (defn new-web-server [m] (component/using (map->WebServer m) [:visits])) (defproject io.aviso/twixt "0.1.3" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.1.2"] [de.neuland/jade4j "0.3.15"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :repl-options { :init-ns io.aviso.launch :port 4001} ;; The Sublime Text nREPL plugin is out of date, so... :repl-port 4001 :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject finagle-clojure "0.1.0" :description "A light wrapper around Finagle for Clojure" :url "https://github.com/twitter/finagle-clojure" :license {:name "Apache License, Version 2.0" :url "https://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[finagle-clojure/core "0.1.0"] [finagle-clojure/thrift "0.1.0"]] :plugins [[lein-sub "0.3.0"] [codox "0.8.10"] [lein-midje "3.1.3"]] :sub ["core" "thrift"] :codox {:sources ["core/src" "thrift/src"] :defaults {:doc/format :markdown} :output-dir "doc/codox" :src-dir-uri "http://github.com/samn/finagle-clojure/blob/v0.1.0/" :src-linenum-anchor-prefix "L"}) (defproject mvMusic "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.5"]] :plugins [[lein-ring "0.8.5"]] :ring {:handler mvMusic.handler/app} :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}}) (defproject theatralia "0.0.1-SNAPSHOT" :description "Cool new project to do things and stuff" :dependencies [[org.clojure/clojure "1.4.0"]] :profiles {:dev {:dependencies [[midje "1.5.0"]]}}) (defproject evolution-programs "0.0.1" :description "A bunch of EP experiments for my IS665 course at Pace University" :url "http://pace.saagermhatre.in/is665/" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.6.0"] [clj-genetic "0.3.0" :exclusions [org.clojure/clojure]] [org.jfree/jfreechart "1.0.19"]] :main ^:skip-aot clojure.main :target-path "target/%s") (defproject jungerer "0.1.0" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.8.0"] [net.sf.jung/jung-algorithms "2.1"] [net.sf.jung/jung-api "2.1"] [net.sf.jung/jung-graph-impl "2.1"] [net.sf.jung/jung-visualization "2.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true}} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}}) (defproject buddy/buddy-core "1.10.1" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.10.3" :scope "provided"] [org.clojure/test.check "1.1.0" :scope "test"] [commons-codec/commons-codec "1.15"] [cheshire "5.10.0"] [org.bouncycastle/bcprov-jdk15on "1.68"] [org.bouncycastle/bcpkix-jdk15on "1.68"]] :jar-name "buddy-core.jar" :source-paths ["src"] :java-source-paths ["src"] :test-paths ["test"] :global-vars {*warn-on-reflection* true} :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"]) (defproject onyx-app/lein-template "0.10.0.0-beta1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;;;; This file is part of gorilla-repl. Copyright (C) 2014-, Jony Hudson. ;;;; ;;;; gorilla-repl is licenced to you under the MIT licence. See the file LICENCE.txt for full details. (defproject gorilla-repl "0.3.3-SNAPSHOT" :description "A rich REPL for Clojure in the notebook style." :url "https://github.com/JonyEpsilon/gorilla-repl" :license {:name "MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [http-kit "2.1.16"] [ring/ring-json "0.2.0"] [cheshire "5.0.2"] [compojure "1.1.6"] [org.slf4j/slf4j-api "1.7.5"] [ch.qos.logback/logback-classic "1.0.13"] [clojure-complete "0.2.3"] [gorilla-renderable "1.0.0"] [org.clojure/data.codec "0.1.0"] [grimradical/clj-semver "0.2.0"]] :main ^:skip-aot gorilla-repl.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject doctopus "0.1.0-SNAPSHOT" :description "An un-opinionated framework for docs on the wobs" :url "http://github.com/Gastove/doctopus" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [joda-time/joda-time "2.6"] [markdown-clj "0.9.63"] [me.raynes/fs "1.4.6"] [http-kit "2.1.16"] [jarohen/nomad "0.7.0"] [com.taoensso/timbre "3.4.0"] [ring/ring-defaults "0.1.4"] [ring/ring-core "1.3.2"] [ring/ring-devel "1.3.2"] [bidi "1.18.10"] [enlive "1.1.5"]] :plugins [[lein-marginalia "0.8.0"]] :main ^:skip-aot doctopus.web :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject mtrx9 "0.1.0" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.5"] [ring/ring-jetty-adapter "1.1.6"]] :plugins [[lein-ring "0.8.5"]] :ring {:handler mtrx9.core/app} :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}} :main mtrx9.core) (defproject onyx-jepsen "0.1.0-SNAPSHOT" :description "Jepsen testing Onyx" :url "github.com/onyx-platform/onyx-jepsen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.onyxplatform/onyx "0.9.7-SNAPSHOT"] ;[org.onyxplatform/onyx "0.9.6" ;:exclusions [org.slf4j/slf4j-nop]] [fipp "0.6.4"] [org.onyxplatform/onyx-metrics "0.9.6.0"] [org.onyxplatform/onyx-bookkeeper "0.9.6.0"] [jepsen "0.0.9"]] ;;; NOTE, don't swallow in BK :test-selectors {:jepsen :jepsen :test-jepsen-tests :test-jepsen-tests :all (constantly true)} :jvm-opts ^:replace ["-server" "-Xmx3g"] :profiles {:uberjar {:aot [onyx-peers.launcher.aeron-media-driver onyx-peers.launcher.launch-prod-peers]} :dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]] :source-paths ["env/dev" "src"]}}) (defproject clojure-ruby "0.1.0-SNAPSHOT" :description "An extremely bare-bones Ruby interpreter" :url "https://github.com/shepmaster/clojure-ruby" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [instaparse "1.3.0"]] :main clojure-ruby.core) (defproject control "0.4.1" :description "A clojure DSL for system admin and deployment with many remote machines" :url "https://github.com/killme2008/clojure-control" :author "dennis zhuang(killme2008@gmail.com)" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/tools.cli "0.2.1"]] :lein-release {:deploy-via :clojars} :main control.main :dev-dependencies [[lein-exec "0.1"] [lein-marginalia "0.7.0"] [lein-autodoc "0.9.0"] [codox "0.5.0"]] :shell-wrapper {:bin "bin/clojure-control" :main control.main}) (defproject compojure "1.6.0-beta2" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.8.4"] [ring/ring-core "1.6.0-beta6"] [ring/ring-codec "1.0.1"]] :plugins [[lein-codox "0.9.5"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :aliases {"test-all" ["with-profile" "default:+1.8" "test"]} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.0"] [criterium "0.4.4"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject org.onyxplatform/onyx-metrics "0.7.5.2-SNAPSHOT" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [com.mdrogalis/rotating-seq "0.1.3"] [stylefruits/gniazdo "0.4.0"]] :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.5"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [riemann-clojure-client "0.4.1"] [com.taoensso/timbre "4.1.1"] [midje "1.7.0"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-pprint "1.1.1"]]}}) (defproject ring-curl "0.1.0" :description "Converts ring requests to cURL commands" :url "https://github.com/GentlemanHal/ring-curl" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[camel-snake-kebab "0.2.2"] [org.clojure/tools.logging "0.3.0"]] :profiles {:dev {:plugins [[lein-midje "3.1.3"]] :dependencies [[org.clojure/clojure "1.6.0"] [midje "1.6.3"] [clj-http "1.0.0"]]}}) (defproject org.onyxplatform/onyx-datomic "0.7.2.0" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.2"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.10.0.0-beta12" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject com.wsscode/pathom "2.0.0-beta2-SNAPSHOT" :description "A Clojure library designed to provide a collection of helper functions to support Clojure(script) graph parsers using\nom.next graph syntax." :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :source-paths ["src"] :dependencies [[org.clojure/clojure "1.9.0" :scope "provided"] [org.clojure/clojurescript "1.9.671" :scope "provided"] [org.clojure/core.async "0.3.443" :scope "provided"] [org.clojure/math.combinatorics "0.1.4"] [com.wsscode/spec-inspec "1.0.0-alpha2"] [fulcrologic/fulcro "2.1.8" :scope "provided"] [org.clojure/test.check "0.9.0" :scope "provided"] [camel-snake-kebab "0.4.0"]] :profiles {:dev {:source-paths ["src" "doc-examples"]}}) (defproject reiddraper/simple-check "0.5.3-SNAPSHOT" :description "A QuickCheck inspired property-based testing library." :url "http://github.com/reiddraper/simple-check" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [] :profiles {:dev {:dependencies [[org.clojure/clojure "1.5.0"] [codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}} :global-vars {*warn-on-reflection* true} :codox {:writer codox-md.writer/write-docs} :plugins [[codox "0.6.4"]]) (defproject beehive-http "0.1.1-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :java-source-paths ["src/java"] :dependencies [[org.clojure/clojure "1.6.0"] [com.ning/async-http-client "1.9.31"] [net.uncontended/beehive "0.5.5"]]) (defproject brevis "0.5.3-SNAPSHOT" :description "A Second-Generation Artificial Life Simulator" :url "https://github.com/kephale/brevis" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :jvm-opts ["-Xmx2g"] :resource-paths ["resources"] :plugins [[lein-marginalia "0.7.1"]] :java-source-paths ["java"] :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/math.numeric-tower "0.0.2"] [java3d/vecmath "1.3.1"] ; [kephale/ode4j "0.12.0-j1.4"] [kephale/ode4j "20130414_001"] [kephale/penumbra "0.6.7"] [kephale/slick-util "1.0.1"] [org.l33tlabs.twl/pngdecoder "1.0"] [com.nitayjoffe.thirdparty.net.robowiki.knn/knn-benchmark "0.1"] [clj-random "0.1.5"] ;[com.googlecode.efficient-java-matrix-library/ejml "0.23"] ]) (let [dev-deps '[[midje "1.3-alpha4" :exclusions [org.clojure/clojure]]]] (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [jline "2.7"] [org.thnetos/cd-client "0.3.4"] [clj-stacktrace "0.2.4"] [org.clojure/tools.nrepl "0.2.0-beta8"] [org.clojure/tools.cli "0.2.1"] [com.cemerick/drawbridge "0.0.6"] [trptcolin/versioneer "0.1.0"] [clojure-complete "0.2.1"]] :profiles {:dev {:dependencies ~dev-deps}} :dev-dependencies ~dev-deps :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java" :source-paths ["src/clj"] :java-source-paths ["src/java"] :main ^{:skip-aot true} reply.main)) (defproject naughtmq "0.0.2-SNAPSHOT" :description "A native-embedding wrapper for jzmq" :url "https://github.com/gaverhae/naughtmq" :scm {:name "git" :url "https://github.com/gaverhae/naughtmq"} :signing {:gpg-key "gary.verhaegen@gmail.com"} :deploy-repositories [["clojars" {:creds :gpg}]] :pom-addition [:developers [:developer [:name "Gary Verhaegen"] [:url "https://github.com/gaverhae"] [:email "gary.verhaegen@gmail.com"] [:timezone "+1"]]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [com.taoensso/timbre "3.1.6"] [org.zeromq/jzmq "2.2.2"]] :java-source-paths ["src"]) (defproject funcool/beicon "0.5.1" :description "Reactive Streams for ClojureScript (built on top of RxJS 4.x)" :url "https://github.com/funcool/beicon" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.189" :scope "provided"] [funcool/promesa "0.7.0" :scope "provided"] [funcool/cats "1.2.1"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/beicon/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"]]) (defproject uruk "0.3.5" :description "Clojure wrapper of MarkLogic XML Content Connector For Java (XCC/J)" :url "https://github.com/daveliepmann/uruk" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [com.marklogic/marklogic-xcc "8.0.6"] ;; required but not included by MarkLogic (e.g. for ContentFactory): [com.fasterxml.jackson.core/jackson-databind "2.6.3"] [org.clojure/data.json "0.2.6"] [org.clojure/data.xml "0.1.0-beta2"] [slingshot "0.12.2"]] :checksum :warn ;; TODO remove this workaround -- MarkLogic's Maven repo doesn't have checksums? :repositories [["MarkLogic-releases" "http://developer.marklogic.com/maven2"]]) (defproject funcool/continuo "0.1.0-SNAPSHOT" :description "A continuous transaction log persistence for Clojure." :url "https://github.com/funcool/continuo" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.txt"} :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [com.taoensso/nippy "2.10.0"] [funcool/cats "1.1.0-SNAPSHOT"] [funcool/cuerdas "0.6.0"] [funcool/promissum "0.4.0-SNAPSHOT"] [funcool/suricatta "0.5.0-SNAPSHOT"] [com.h2database/h2 "1.4.189"] [org.postgresql/postgresql "9.4-1202-jdbc42"] [danlentz/clj-uuid "0.1.6"] [hikari-cp "1.3.1"] [cheshire "5.5.0"] [com.github.spullara.mustache.java/compiler "0.9.1"]] :plugins [[lein-ancient "0.6.7"]]) (defproject clj-gatling "0.5.3" :description "" :url "http://github.com/mhjort/clj-gatling" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [clojure-csv/clojure-csv "2.0.1"] [http-kit "2.1.18"] [clj-time "0.8.0"] [io.gatling/gatling-charts "2.0.3"] [io.gatling.highcharts/gatling-charts-highcharts "2.0.3"]] :repositories { "excilys" "http://repository.excilys.com/content/groups/public" } :profiles {:dev {:dependencies [[clj-containment-matchers "0.9.3"]] }}) (defproject buddy/buddy-auth "0.6.1" :description "Authentication and Authorization facilities for ring based web applications." :url "https://github.com/funcool/buddy-auth" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [buddy/buddy-sign "0.6.1"] [funcool/cuerdas "0.6.0"] [clout "2.1.2"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :profiles {:dev {:codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-auth/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.2.0" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.7"]]}}) (defproject quil "2.0.0-SNAPSHOT" :description "(mix Processing Clojure)" :url "http://github.com/quil/quil" :mailing-list {:name "Quil Mailing List" :archive "https://groups.google.com/forum/?fromgroups#!forum/clj-processing" :post "clj-processing@googlegroups.com"} :license {:name "Common Public License - v 1.0" :url "http://www.opensource.org/licenses/cpl1.0"} :dependencies [[org.clojure/clojure "1.5.1"] [quil/processing-core "2.1.2"] [quil/processing-pdf "2.1.2"] [quil/processing-dxf "2.1.2"] [quil/jogl-fat "2.1.5"] [quil/gluegen-rt-fat "2.1.5"] [com.lowagie/itext "2.1.7"]] :aot [quil.helpers.applet-listener quil.applet]) (defproject visibility-2d "0.1.0" :description "2D Visibility" :url "https://toblux.github.io/visibility-2d/" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.170"]] :plugins [[lein-cljsbuild "1.1.1"]] :clean-targets ^{:protect false} ["target" "resources/public/js"] :hooks [leiningen.cljsbuild] :cljsbuild {:builds [{:id "debug" :source-paths ["src-cljs"] :compiler {:output-to "resources/public/js/visibility-2d.js" :output-dir "resources/public/js/out" :optimizations :none :source-map true}} {:id "release" :source-paths ["src-cljs"] :compiler {:elide-asserts true :pretty-print false :output-to "resources/public/js/visibility-2d.min.js" :optimizations :advanced}}]}) (defproject funcool/beicon "3.3.0" :description "Reactive Streams for Clojure(Script)" :url "https://github.com/funcool/beicon" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.9.521" :scope "provided"] [io.reactivex.rxjava2/rxjava "2.1.0"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/beicon/blob/master/" :src-uri-prefix "#L"} :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"] [funcool/promesa "1.8.1"]] :global-vars {*warn-on-reflection* false} :plugins [[funcool/codeina "0.5.0"] [lein-ancient "0.6.10"]]}}) (ns workflo.macros.jscomponents) (ns onyx.messaging.aeron-media-driver (:require [clojure.core.async :refer [chan ctx :pipeline first)] (let [next-ctx (try-validation next-step ctx)] (if (:stop next-ctx) next-ctx (recur (assoc next-ctx :pipeline (rest (:pipeline ctx)))))) ctx))) (defn process [pipeline initial-input] (let [ctx {:input initial-input :pipeline pipeline} result (run-pipeline ctx)] (log/info result) (when-let [ex (:exception result)] (log/error (with-out-str (stacktrace/print-stack-trace ex))) (throw (ex-info "Exception during processing" {:exception ex :initial-ctx ctx :final-ctx result}))) result)) (ns circle.util.fs "utilities for working with files and directories" (:require fs) (:require [clojure.java.io :as io]) (:import org.apache.commons.io.FileUtils) (:require [circle.sh :as sh])) (defn all-files "Returns a list of all files in the repos" [dir] (FileUtils/listFiles (io/as-file dir) nil true)) (defn files-matching "Returns a list of files that match re." [dir re] (->> dir (all-files) (filter #(re-find re %)))) (defn re-file? "True if the contents of the file match the regex" [file re] (when (fs/exists? file) (boolean (seq (re-find re (slurp file)))))) (defn line-count "returns the number of lines in the file" [file] (->> file (slurp) (re-seq #"\n") (count)))(ns lazytest.attach (:use [lazytest.groups :only (group?)])) (defn groups-var "Creates or returns the Var storing Groups in namespace n." [n] (or (ns-resolve n '*lazytest-groups*) (intern n (with-meta '*lazytest-groups* {:private true}) #{}))) (defn groups "Returns the Groups for namespace n" [n] (var-get (groups-var n))) (defn all-groups "Returns a sequence of all Groups in all namespaces." [] (mapcat (comp seq groups) (all-ns))) (defn add-group "Adds Group g to namespace n." [n g] {:pre [(group? g) (the-ns n)]} {:post [(some #{g} (seq (groups n)))]} (alter-var-root (groups-var (the-ns n)) conj g)) (set-env! :source-paths #{"src"}) (def +version+ "0.1.0") (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}}) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns ^{:doc "Simple Chapters extension: http://podlove.org/simple-chapters. Specification: http://podlove.org/simple-chapters"} qcast.feed.ext.simple-chapters (:require [hiccup.util :refer [escape-html]])) ;;; Interface ;; Channel ;; Channel or Item ;; Item (defn chapter ([start title] [:psc:chapter {:start start, :title (escape-html title)}]) ([start title link-url] (assoc-in (chapter start title) [1 :href] link-url)) ([start title link-url image-url] (assoc-in (chapter start title link-url) [1 :image] image-url))) (defn chapters [& chapters] [:psc:chapters {:version "1.2"} (map #(apply chapter %) chapters)]) (ns uk.org.potentialdifference.darknet.websocket (:import [org.java_websocket.client WebSocketClient] [org.java_websocket.drafts Draft_10] [java.net URI])) (defn connect! [url options] (.connect (proxy [WebSocketClient] [(new URI url) (new Draft_10)] (onOpen [handshake] ((:on-open options) handshake)) (onClose [code reason remote] ((:on-close options) code reason remote)) (onMessage [message] ((:on-message options) message)) (onError [^java.lang.Exception e] ((:on-error options) e))))) ;; Copyright © 2015, JUXT LTD. (ns yada.boolean (:require [schema.core :as s])) (defn boolean? [x] (contains? #{true false} x)) (declare BooleanExpression) (s/defschema NotExpression [(s/one (s/eq :not) "not") (s/one (s/recursive #'BooleanExpression) "not expr")]) (s/defschema AndExpression [(s/one (s/eq :and) "and") (s/recursive #'BooleanExpression)]) (s/defschema OrExpression [(s/one (s/eq :or) "or") (s/recursive #'BooleanExpression)]) (s/defschema CompositeExpression (s/conditional (comp (partial = :not) first) NotExpression (comp (partial = :and) first) AndExpression (comp (partial = :or) first) OrExpression)) (s/defschema BooleanExpression (s/conditional boolean? s/Bool vector? CompositeExpression :else s/Any)) (ns doctopus.storage-impls) ;; ## Backend Implementations ;; A backend implementation needs to expose two functions: one for load, and one ;; for save. ;; ;; ### Save ;; A save function needs to receive a "key" and a vector of path-html pairs, and ;; store each piece correctly in the given backend _such that it can easily be ;; looked up by the same key_. How should it store? However it likes. Whatever ;; makes it easiest to implement the load function. ;; ;; ### Load ;; The load function should be able to take a "key", and return a list of all ;; the paths for that key, plus a function that will load the data at the end of ;; each path. e.g.: ;; [["/" root-fn] ;; ["/foo" foo-fn]] (defrecord BackendImplementation [name load-fn save-fn]) (defproject kwho "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "https://github.com/jacobmorzinski/kwho" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.6.0"]] :main ^:skip-aot kwho.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (hash-map :layout (layout/geodesic-grid :radius 3.688 :pixel-spacing 0.02 :strut-pixels [48 64 64 64] :strip-struts [[0 6 15 8] [2 14 22 16] [4 18 20 23] [3 10 12 19] [1 5 7 11]]) #_ (layout/star :radius 3.688 ; 12.1' :pixel-spacing 0.02 ; 2 cm :strip-pixels 240 :strips 6) :event-handler (-> state/update-mode handler/mode-selector (handler/autocycle-modes (comp #{:button/press :button/repeat} :type))) :web-options {:port 8080 :min-threads 2 :max-threads 5 :max-queued 25} :modes {:rainbow (mode/rainbow) :strobe (mode/strobe [(color/rgb 1 0 0) (color/rgb 0 1 0) (color/rgb 0 0 1)]) :lantern (mode/lantern 0.5)} :playlist [:rainbow :strobe :lantern]) (ns c2.util (:require [singult.core :as singult])) (def clj->js singult/clj->js) (defn ->coll "Convert something into a collection, if it's not already." [x] (if (coll? x) x [x])) (ns circle.db.migrations (:require [clojure.set :as set]) (:use circle.db.migration-lib) (:require [somnium.congomongo :as mongo]) (:use [circle.util.core :only (apply-if)])) (clear-migrations) (def-migration "failed? -> failed" :num 0 :coll :builds :transform #(set/rename-keys % {:failed? :failed})) (def-migration "infer empty specs" :num 1 :coll :projects :transform (fn [project] (let [spec (mongo/fetch-one :specs :where {:project_id (-> project :_id)}) inferred? (or (nil? spec) (every? empty? ((juxt :dependencies :test :compile :setup) spec)))] (assoc project :inferred inferred?)))) (def-migration "move specs into project" :num 2 :coll :projects :transform (fn [p] (assert (= 1 (mongo/fetch :specs :where {:project_id (:_id p)} :count? true))) (let [spec (mongo/fetch-one :specs :where {:project_id (:_id p)})] (apply-if spec merge p (select-keys spec [:dependencies :setup :compile :test]))))) ;; (def-migration "old builds w/ git commit info") "action tags; inferred, infrastructure, spec, test, setup" "add end time to old builds" (ns icecap.store.riak-integration-test (:require [icecap.store.riak :refer :all] [icecap.store.test-props :refer :all] [clojure.test.check.clojure-test :refer [defspec]] [clojure.test :refer :all] [clojurewerkz.welle.buckets :as wb] [clojurewerkz.welle.core :as wc])) (def ^:private riak-test-url "http://localhost:8098/riak") (def ^:private riak-test-store) (defn connect [f] (let [conn (wc/connect riak-test-url) store (riak-store conn "test-bucket")] (try (wb/update conn "test-bucket" (bucket-props)) (with-redefs-fn {#'riak-test-store store} f) (finally (wc/shutdown conn))))) (use-fixtures :once connect) (defspec ^:riak riak-store-roundtrip (roundtrip-prop riak-test-store)) (defspec ^:riak riak-store-delete (delete-prop riak-test-store)) (defproject org.onyxplatform/onyx-metrics "0.8.0.7" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject com.draines/postal "1.8-SNAPSHOT" :repositories {"java.net" "http://download.java.net/maven/2"} :dependencies [[org.clojure/clojure "1.3.0"] [javax.mail/mail "1.4.4" :exclusions [javax.activation/activation]]]) (ns trak.globals (:require-macros [trak.config :refer [cljs-env]]) (:require [trak.utils :as utils] [clojure.string :as str]) (:import goog.Uri goog.Uri.QueryData goog.string)) (defn build-query-params [kws] (utils/info kws) (utils/info (.createFromKeysValues QueryData (map name (keys kws)) (vals kws))) (reduce #(.add %1 (name (first %2)) (second %2)) (QueryData.) kws) ) (defn spotify-authorization-link [scope] (doto (Uri. "https://accounts.spotify.com/authorize") (.setQuery (build-query-params {:response_type "token" :client_id (cljs-env :spotify-client-id) :scope scope :redirect_uri (cljs-env :spotify-redirect-url) :state (.getRandomString string)})))) (defn get-spotify-auth-token [] (let [fragment (.getFragment (Uri. (.-href (.-location js/document)))) fragment (str/split fragment "&")] (reduce (fn [acc part] (let [kw (str/split part "=")] (merge acc {(keyword (first kw)) (second kw)}))) {} fragment))) (ns day8.re-frame.trace.preload (:require [day8.re-frame.trace :as trace] [mranderson047.re-frame.v0v10v2.re-frame.core :as rf])) ;; Use this namespace with the :preloads compiler option to perform the necessary setup for enabling tracing: ;; {:compiler {:preloads [day8.re-frame.trace.preload] ...}} (js/console.warn "re-frame-trace has been renamed to re-frame-10x: (https://clojars.org/day8.re-frame/re-frame-10x). Update to newer versions of this library by using the `day8.re-frame/re-frame-10x` artifact ID. Thanks!") (rf/clear-subscription-cache!) (trace/init-db!) (defonce _ (trace/init-tracing!)) (trace/inject-devtools!) (ns cruncher.moves.main (:require [cruncher.moves.data :as data])) (defn get "Return move object from moves-database by the move id." [id] (id data/all))(defproject clstreams "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/tools.namespace "0.3.0-alpha3"] [org.apache.kafka/kafka-clients "0.10.2.1-rc2"] [org.apache.kafka/kafka-clients "0.10.2.1-rc2" :classifier "test"] [org.apache.kafka/kafka-streams "0.10.2.1-rc2"] [org.apache.kafka/kafka-streams "0.10.2.1-rc2" :classifier "test"]] :main ^:skip-aot clstreams.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns active.clojure.test-runner (:require [doo.runner :refer-macros [doo-tests]] [active.clojure.condition-test] [active.clojure.debug-test] [active.clojure.lens-test] [active.clojure.monad-test] [active.clojure.record-test] [active.clojure.record-spec-test] [active.clojure.match-test] [active.clojure.config-test])) (doo-tests 'active.clojure.condition-test 'active.clojure.debug-test 'active.clojure.lens-test 'active.clojure.monad-test 'active.clojure.record-test 'active.clojure.record-spec-test 'active.clojure.match-test 'active.clojure.config-test) (ns incise.parsers.helpers (:require (clj-time [core :as tm] [coerce :as tc]) [clojure.string :as s]) (:import [java.io File])) (defn dashify "Dashify a title, replacing all non word characters with a dash." [^String title] (-> title (s/lower-case) (s/replace #"[^\w]" "-"))) (defn date-time->path "Convert a DateTime to a path like string." [date-time] (str (when date-time (str (tm/year date-time) \/ (tm/month date-time) \/ (tm/day date-time) \/)))) (def date-str->path (comp date-time->path tc/from-string)) (defn Parse->path [^Parse {:keys [path date title extension]}] (or path (str (date-str->path date) (dashify title) extension))) (defn extension [^File file] "Get the extension, enforcing lower case, on the given file." (-> file (.getName) (s/split #"\.") (last) (s/lower-case))) ; Copyright (c) 2015 Designed.ly, Marcin Bilski ; The use and distribution terms for this software are covered by the ; Eclipse Public License which can be found in the file LICENSE at the root of this distribution. ; By using this software in any fashion, you are agreeing to be bound by the terms of this license. ; You must not remove this notice, or any other, from this software. (ns reforms.binding.core (:refer-clojure :exclude [reset! swap! deref get-in -deref -reset!]) (:require [reforms.binding.protocol :refer [-valid? -deref -reset! -get-in -path]])) (defn valid? [x] (-valid? x)) (defn deref [x] (-deref x)) (defn reset! ([x v] (-reset! x v)) ([x ks v] (if (not-empty ks) (-reset! x ks v) (-reset! x v)))) (defn get-in [x ks] (if (not-empty ks) (-get-in x ks) x)) (defn path [x] (-path x)) (in-ns 'herder.solver.types) (gen-class :name ^{PlanningEntity {}} herder.solver.types.Person :prefix "person-" :init init :state state :constructors {[] [] [java.util.UUID] []} :methods [[getId [] java.util.UUID] [getName [] String] [setName [String] void]]) (defn- person-init ([] (person-init (java.util.UUID/randomUUID))) ([uuid] [[] (ref {:id uuid :name ""})])) (defn- person-getId [this] (getValue this :id)) (defn- person-getName [this] (getValue this :name)) (defn- person-setName [this item] (setValue this :name item)) ;- ; Copyright 2011 (c) Meikel Brandmeyer. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.core) (defn init-server [] (binding [*ns* *ns*] (in-ns 'user) (refer-clojure) ; Check for doc macro. 1.2 in c.core, 1.3 in c.repl (when-not (ns-resolve 'clojure.core 'doc) (use 'clojure.repl)) (when (io/resource "user.clj") (load "user")))) (ns clj.medusa.alert (:require [amazonica.aws.simpleemail :as ses] [amazonica.core :as aws] [clojure.string :as string] [clj.medusa.config :as config] [clj.medusa.db :as db] [clj.medusa.config :as config])) (defn send-email [subject body destinations] (let [destinations ["rvitillo@mozilla.com"]] ;; TODO: remove once everything works (when-not (:dry-run @config/state) (ses/send-email :destination {:to-addresses destinations} :source "telemetry-alerts@mozilla.com" :message {:subject subject :body {:html (str "" body "")}})))) (defn notify-subscribers [{:keys [metric_id date emails]}] (let [{:keys [hostname]} @config/state foreign_subscribers (string/split emails #",") {metric_name :name, detector_id :detector_id metric_id :id} (db/get-metric metric_id) {detector_name :name} (db/get-detector detector_id) subscribers (db/get-subscribers-for-metric metric_id)] (send-email (str "Alert for " metric_name " (" detector_name ") on the " date) (str "http://" hostname "/index.html#/detectors/" detector_id "/" "metrics/" metric_id "/alerts/?from=" date "&to=" date) (concat subscribers foreign_subscribers ["dev-telemetry-alerts@lists.mozilla.org"])))) (ns clstreams.rocksdb-test (:require [clstreams.rocksdb :as sut] [clojure.test :refer :all])) (defn delete-recursively [fname] (let [file (clojure.java.io/file fname)] (if (.exists (clojure.java.io/as-file file)) (doseq [f (reverse (file-seq file))] (clojure.java.io/delete-file f))))) (deftest rocksdb-open-test (testing "can open a rocksdb DB" (delete-recursively "/tmp/ddeDB") (with-open [db (sut/create-db "/tmp/ddeDB/somedb")] (is (instance? Object db))) (delete-recursively "/tmp/ddeDB"))) (ns yetibot.core.logging (:require [schema.core :as s] [yetibot.core.config :refer [get-config]] [yetibot.core.util :refer [with-fresh-db]] [yetibot.core.db.log :as log] [taoensso.timbre.appenders.3rd-party.rolling :refer [rolling-appender]] [taoensso.timbre.appenders.core :refer [println-appender]] [taoensso.timbre :as timbre :refer [trace debug info warn error fatal spy with-log-level]])) (def config-schema String) (defn log-level [] (let [v (get-config config-schema [:yetibot :log :level])] (if (:error v) ;; default config level :warn (keyword (:value v))))) (defn start [] (timbre/set-config! {:level (log-level) :appenders ;; stdout {:println (println-appender {:stream :auto}) ;; rolling log files :rolling-appender (rolling-appender {:path "/var/log/yetibot/yetibot.log" :pattern :daily})}}) ) (ns pfrt.web (:require [compojure.handler :as handler] [org.httpkit.server :as hkit] [pfrt.web.routes :refer [app]] [pfrt.core.lifecycle :refer [ILifecycle]])) (defrecord Web [webserver app] ILifecycle (init [this system] (assoc system :web this)) (start [this system] (let [port (get-in system [:config :port] 9090) stopfn (hkit/run-server app {:port port})] (swap! webserver (fn [_] stopfn)) (println (format "Listening: http://localhost:%s/" port)) system)) (stop [_ system] (let [stopfn (deref webserver)] (@stopfn) system))) (defn web-server [config pf] (let [wrap-context (fn [h] (fn [req] (h (assoc req :ctx {:pf pf}))))] (->Web (atom nil) (handler/api (wrap-context app))))) ;; Copyright 2014 Red Hat, Inc, and individual contributors. ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. ;; *** NOTE: update the version in docs.clj when you change it here *** (defproject org.immutant/build-helper "0.1.6" :description "A plugin to aid in building Immutant" :url "https://github.com/immutant/immutant" :license {:name "Apache Software License - v 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo} :dependencies [[org.clojars.tcrawley/codox.core "0.8.0a"] ;;[codox/codox.core "0.8.0"] [org.clojars.tcrawley/markdown-clj "0.9.43a"] ;;[markdown-clj "0.9.43"] ] :eval-in-leiningen true :signing {:gpg-key "BFC757F9"}) ;; Functions for sending feedback (ns robinson.feedback (:require [clj-http.client :as client] [seesaw.core :as ss] [clojure.data.json :as json])) (defn send-report [state] nil) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150828_160954-g51b5cf8"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.5.0"] [zookeeper-clj "0.9.3" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject lean-map "0.2.0" :description "Lean Hash Array Mapped Trie implementation in ClojureScript" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :clean-targets ^{:protect false} ["resources/out"] :jvm-opts ^:replace ["-Xms512m" "-Xmx512m" "-server"] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.170"] [collection-check "0.1.7-SNAPSHOT"]] :plugins [[lein-doo "0.1.6-rc.1"]] :cljsbuild {:builds [{:id "test" :source-paths ["src/main" "test"] :compiler {:output-to "resources/public/js/testable.js" :main cljs.lean-map.test.runner :optimizations :none}} {:id "node-test" :source-paths ["src/main" "test"] :compiler {:output-to "resources/public/js/testable.js" :main cljs.lean-map.test.runner :output-dir "target" :target :nodejs :optimizations :none}}]})(defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150901_140443-g6e4750b"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.5.0"] [zookeeper-clj "0.9.3" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns comic-reader.web-app-test (:require [clojure.test :refer :all] [comic-reader.web-app :refer :all] [com.stuartsierra.component :as component] [ring.mock.request :as mock])) (defn server-test-system [] (component/system-map :site-scraper {} :web-app (component/using (new-web-app) [:site-scraper]))) (ns circle.util.test-airbrake (:use circle.airbrake) (:use midje.sweet)) (def div-by-zero (try (/ 1 0) (catch Exception e e))) (fact "airbrake works" (circle.airbrake/airbrake :exception div-by-zero) => (contains {:id integer? :error-id integer? :url string?}) (provided (circle.env/env) => :production)) (ns yetibot.core.models.google-search (:require [yetibot.core.util.http :refer [get-json map-to-query-string]])) (def endpoint "http://ajax.googleapis.com/ajax/services/search/images") (def configured? true) (def ^:private format-result (juxt :url :contentNoFormatting)) (defn- fetch-image [q n] (let [uri (str endpoint "?" (map-to-query-string {:v "1.0" :rsz n :q q :safe "active"}))] (get-json uri))) (defn image-search ([q] (image-search q 8)) ([q n] (map format-result (-> (fetch-image q n) :responseData :results)))) (ns riemann.xymon-test (:use riemann.xymon [riemann.time :only [unix-time]] clojure.test) (:require [riemann.logging :as logging])) (logging/init) (deftest ^:xymon ^:integration xymon-test (let [k (xymon)] (k {:host "riemann.local" :service "xymon test" :state "green" :description "all clear, uh, situation normal" :metric -2 :time (unix-time)})) (let [k (xymon)] (k {:service "xymon test" :state "green" :description "all clear, uh, situation normal" :metric 3.14159 :time (unix-time)})) (let [k (xymon)] (k {:host "riemann.local" :service "xymon test" :state "ok" :description "all clear, uh, situation normal" :metric 3.14159 :time (unix-time)})) (let [k (xymon)] (k {:host "no-service.riemann.local" :state "ok" :description "Missing service, not transmitted" :metric 4 :time (unix-time)}))) (ns subman.history (:require [cljs.reader :refer [read-string]] [goog.events :as gevents] [goog.history.EventType :as history-event] [goog.string :as string] [goog.history.Html5History :as history5] [jayq.util :refer [wait]])) (defn get-history "Get html5 history obj or fallback" [] (doto (goog.history.Html5History.) (.setUseFragment false) (.setPathPrefix "/search/") (.setEnabled true))) (defn init-history "Init history and spy to atom" [value] (when (history5/isSupported) (let [history (get-history)] (add-watch value :history (fn [_ _ _ new-value] (wait 500 #(when (= new-value @value) (.setToken history new-value))))) (gevents/listen history history-event/NAVIGATE #(let [token (.-token %)] (when (and (= (.-isNavigatopn %)) (not= token @value)) (reset! value token)))) (->> (.getToken history) string/urlDecode (reset! value))))) (ns hu.ssh.github-changelog.dependencies.bundler (:require [clojure.string :refer [split-lines]])) (defn- get-specs [file] (->> (split-lines file) (drop-while #(not= % " specs:")) (drop 1) (take-while seq))) (defn- parse-spec [spec] {:gem (second spec) :version (nth spec 2)}) (defn- parse-specs [specs] (->> (map #(re-matches #"^\s{4}(\S+) \((.*)\)$" %) specs) (remove empty?) (map parse-spec))) (defn parse [file] (->> (slurp file) get-specs parse-specs)) (ns hello.routes.home (:use compojure.core hello.models.db) (:require [hello.views.layout :as layout] [noir.response :as response])) (defroutes home-routes (GET "/" [] "Hello, World!") (GET "/json" [] (response/json {:message "Hello, World!"})) (GET "/db/:queries" [queries] (response/json (run-queries (get-query-count queries)))) (GET "/dbraw/:queries" [queries] (response/json (run-queries-raw (get-query-count queries)))) (GET "/fortune" [] (layout/render "home.html" {:messages (get-fortunes)}))) {:user {:dependencies [[clj-stacktrace "0.2.5"] [redl "0.1.0"] [spyscope "0.1.3"] [slamhound "1.3.3"]] :plugins [[lein-difftest "1.3.7"] [lein-drip "0.1.1-SNAPSHOT"] [lein-clojars "0.9.1"] [lein-pprint "1.1.1"] [lein-ring "0.8.0"] [lein-cljsbuild "0.1.9"] [lein-deps-tree "0.1.2"] [lein-marginalia "0.7.1"]] :repl-options {:timeout 120000} :injections [(require '[redl core complete]) (require 'spyscope.core) (let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly @new)))] :vimclojure-opts {:repl true}}} (ns grafter.rdf.ontologies.rdf "Some convenience terms for the RDF and RDFS vocabularies." (:require grafter.rdf.ontologies.util :refer :all)) (def rdf (prefixer "http://www.w3.org/1999/02/22-rdf-syntax-ns#")) (def rdfs (prefixer "http://www.w3.org/2000/01/rdf-schema#")) (def rdf:a (rdf "type")) (def rdf:Property (rdf "Property")) (def rdfs:subPropertyOf (rdfs "subPropertyOf")) (def rdfs:Class (rdfs "Class")) (def rdfs:subClassOf (rdfs "subClassOf")) (def rdfs:label (rdfs "label")) (def rdfs:comment (rdfs "comment")) (def rdfs:isDefinedBy (rdfs "isDefinedBy")) (def rdfs:range (rdfs "range")) (def rdfs:domain (rdfs "domain")) (ns grafter.rdf.ontologies.pmd "Some convenience terms for the Publish My Data vocabulary." (:require [grafter.rdf.ontologies.util :refer :all])) (def pmd (prefixer "http://publishmydata.com/def/dataset#")) (def pmd:Dataset (pmd "Dataset")) (def pmd:contactEmail (pmd "contactEmail")) (def pmd:graph (pmd "graph")) (def folder (prefixer "http://publishmydata.com/def/ontology/folder/")) (def folder:Folder (folder "Folder")) (def folder:hasTree (folder "hasTree")) (def folder:defaultTree (folder "defaultTree")) (def folder:parentFolder (folder "parentFolder")) (def folder:inFolder (folder "inFolder")) (def folder:inTree (folder "inTree")) ;; https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md {:user {:plugins [[lein-pprint "1.3.2"]] :dependencies [[alembic "0.3.2"]]}} (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150821_215046-g67feccf"] [clj-kafka "0.2.8-0.8.1.1" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [cheshire "5.4.0"] [zookeeper-clj "0.9.1" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0" :exclusions [commons-codec]]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns javascript-externs-generator.extern-test (:require [cljs.test :refer-macros [deftest is testing run-tests]] [javascript-externs-generator.extern :as extern])) (enable-console-print!) (deftest function (let [js-object (clj->js {"testFunction" #()})] (is (= "var TEST = {\"testFunction\": function () {}};" (extern/extract "TEST" js-object))))) (deftest property (let [js-object (clj->js {"testProperty" "value"})] (is (= "var TEST = {\"testProperty\": {}};" (extern/extract "TEST" js-object))))) (deftest object (let [js-object (clj->js {"testObject" {"testProperty" "value"}})] (is (= "var TEST = {\"testObject\": {\"testProperty\": {}}};" (extern/extract "TEST" js-object))))) (deftest prototype (let [js-object (clj->js {"testFunction" #()})] (set! (.. js-object -testFunction -prototype -testPrototypeFunction) #()) (is (= "var TEST = {\"testFunction\": function () {}};TEST.testFunction.prototype = {\"testPrototypeFunction\": function () {}};" (extern/extract "TEST" js-object))))) (ns storemi.urlfor (:require [storemi.lib.urldef :refer [defurl]])) (defurl login "/login") (defurl logout "/logout") (defurl register "/register") (defurl about "/about") (defurl upload-image "/upload") (defurl list-images "/images/:username") (defurl image "/images/:username/:filename") (defurl story-index "/story") (defurl story-create story-index "/create") (defurl user-index story-index "/:username") (defurl story user-index "/:story-id") (defurl chapter story "/chapter/:chapter") (defurl scene chapter "/scene/:scene") (defurl story-delete story "/delete") (defurl story-edit story "/edit") (defurl story-data story "/data") (ns leiningen.checkout-deps (:use [leiningen.core :only [read-project]] [clojure.contrib.java-utils :only [file]])) (defn checkout-deps-paths [project] (apply concat (for [dep (.listFiles (file (:root project) "checkouts"))] ;; Note that this resets the leiningen.core/project var! (let [proj (read-project (.getAbsolutePath (file dep "project.clj")))] (for [d [:source-path :compile-path :resources-path]] (proj d)))))) (defn checkout-deps [project] ;; TODO: look at all deps that have version-control repo information ;; in their jar and check them out into the checkouts directory. ) (ns riemann.keenio "Forwards events to Keen IO" (:require [clj-http.client :as client]) (:require [cheshire.core :as json])) (def ^:private event-url "https://api.keen.io/3.0/projects/") (defn post "POST to Keen IO." [collection project-id write-key request] (let [final-event-url (str event-url project-id "/events/" collection)] (client/post final-event-url {:body (json/generate-string request) :query-params { "api_key" write-key } :socket-timeout 5000 :conn-timeout 5000 :content-type :json :accept :json :throw-entire-message? true}))) (defn keenio "Creates a keen adapter. Takes your Keen project id and write key, and returns a function that accepts an event and sends it to Keen IO. The full event will be sent. (streams (let [kio (keenio \"COLLECTION_NAME\" \"PROJECT_ID\" \"WRITE_KEY\")] (where (state \"error\") kio)))" [collection project-id write-key] (fn [event] (post collection project-id write-key event))) (ns braid.server.events (:require [clojure.string :as string] [clavatar.core :refer [gravatar]] [braid.server.crypto :refer [random-nonce]] [braid.server.db :as db] [braid.server.sync :as sync])) (defn register-user! [email group-id] (let [id (db/uuid) ; XXX: copied from braid.common.util/nickname-rd disallowed-chars #"[ \t\n\]\[!\"#$%&'()*+,.:;<=>?@\^`{|}~/]" nick (-> (first (string/split email #"@")) (string/replace disallowed-chars "")) ; TODO: guard against duplicate nickname? u (db/create-user! {:id id :email email :password (random-nonce 50) :avatar (gravatar email :rating :g :default :identicon) :nickname nick})] (sync/user-join-group! id group-id) id)) (ns subman.push (:require [cljs.reader :refer [read-string]] [goog.net.WebSocket] [goog.events :as gevents])) (defn init-push "Init push connection" [total-count] (let [ws (goog.net.WebSocket.)] (gevents/listen ws goog.net.WebSocket.EventType.MESSAGE (fn [msg] (->> (.-message msg) read-string :total-count (reset! total-count))) false ws) (.open ws (str "ws://" (.-hostname js/location) ":" (.-port js/location) "/notifications/")) ws)) (defproject {{app-name}} "0.0.1-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0"] [quil "2.2.5"]] :main {{namespace}}) (ns comic-reader.routes (:require [comic-reader.history :as h] [re-frame.core :as rf] [secretary.core :as secretary :refer-macros [defroute]])) ;; Have secretary pull apart URL's and then dispatch with re-frame (defroute sites-path "/" [] (rf/dispatch [:sites])) (defroute comics-path "/comics/:site" {:keys [site] {:keys [filter]} :query-params} (rf/dispatch [:comics site filter])) (defroute read-path "/read/:site/:comic/:chapter/:page" {site :site :as location} (let [location (dissoc location :site)] (rf/dispatch [:read site location]))) (defroute "*" {:as _} (rf/dispatch [:unknown])) (defn go-to [page] (h/set-token page)) (defn setup-secretary! [] (secretary/set-config! :prefix "#")) (defproject nightweb-server/Nightweb "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Public Domain" :url "http://unlicense.org/UNLICENSE"} :dependencies [[org.clojure/clojure "1.4.0"]] :main nightweb-server.core :source-paths ["src" "../common/clojure"] :java-source-paths ["../common/java"]) (ns whatishistory.handler (:require [compojure.core :refer [GET defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [hiccup.core :refer [html]] [hiccup.page :refer [include-js include-css]] [prone.middleware :refer [wrap-exceptions]] [ring.middleware.reload :refer [wrap-reload]] [environ.core :refer [env]])) (def mount-target [:div#app [:h3 "ClojureScript has not been compiled!"] [:p "please run " [:b "lein figwheel"] " in order to start the compiler"]]) (def loading-page (html [:html [:head [:meta {:charset "utf-8"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1"}] (include-css (if (env :dev) "css/site.css" "css/site.min.css"))] [:body mount-target (include-js "js/app.js")]])) (defroutes routes (GET "/" [] loading-page) (GET "/about" [] loading-page) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-defaults #'routes site-defaults)] (if (env :dev) (-> handler wrap-exceptions wrap-reload) handler))) (defproject mvxcvi/vault "0.3.0-SNAPSHOT" :description "Content-addressible datastore." :url "https://github.com/greglook/vault" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/data.codec "0.1.0"] [org.clojure/tools.cli "0.2.4"] [org.bouncycastle/bcpg-jdk15on "1.49"] [mvxcvi/directive "0.1.0"] [mvxcvi/puget "0.2.0"] [digest "1.4.3"] [fipp "0.4.1"]] :main vault.tool) (defproject nhl-score-api "0.24.0" :description "A JSON API that returns the scores and goals from the latest finished NHL games." :license {:name "MIT" :url "https://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/data.json "0.2.6"] [clj-http-lite "0.3.0"] ; clj-http-lite supports SNI (unlike http-kit or clj-http) [clj-time "0.11.0"] [camel-snake-kebab "0.3.2"] [com.taoensso/carmine "2.12.0"] [enlive "1.1.6"] [http-kit "2.1.19"] [yleisradio/new-reliquary "1.0.1"]] :main nhl-score-api.core :profiles {:uberjar {:aot :all}} :plugins [[lein-heroku "0.5.3"]] :uberjar-name "server.jar" :heroku {:app-name "nhl-score-api" :include-files ["target" "newrelic"] :process-types { "web" "java -javaagent:newrelic/newrelic.jar -jar target/server.jar" }}) (defproject railway-oriented-programming "0.1.1" :description "An implementation of railway oriented programming" :url "https://github.com/HughPowell/railway-oriented-programming" :license {:name "Mozilla Public License v2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"} :dependencies [[org.clojure/clojure "1.9.0-alpha16"]] :plugins [[update-readme "0.1.0"]] :repositories [["releases" {:url "https://clojars.org/repo/" :username :env :password :env :sign-releases false}]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]]}} :monkeypatch-clojure-test false :release-tasks [["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["update-readme"] ["vcs" "commit"] ["vcs" "tag" "--no-sign"] ["deploy"] ["change" "version" "leiningen.release/bump-version"] ["update-readme"] ["vcs" "commit"] ["vcs" "push"]]) (defproject seathree "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.nrepl "0.2.3"] [clj-time "0.5.1"] [clj-http "0.7.8"] [com.taoensso/carmine "2.0.0-beta2"] [ring "1.2.0-RC1"] [amalloy/ring-gzip-middleware "0.1.2"] [ring/ring-jetty-adapter "1.1.8"] [ring/ring-json "0.2.0"] [ring-cors "0.1.0"] [ring-server "0.2.8"] [twitter-api "0.7.4"]] :plugins [[lein-ring "0.8.5"]] :main seathree.handler :ring {:handler seathree.handler/app}) (defproject org.onyxplatform/onyx-bookkeeper "0.8.0.0-alpha5" :description "Onyx plugin for BookKeeper" :url "https://github.com/onyx-platform/onyx-bookkeeper" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0-alpha5"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns bide.core-tests (:require [cljs.test :as t] [bide.core :as r])) (t/deftest router-tests (t/testing "Simple match" (let [r (r/build [["/a/b" :r1] ["/b/:c" :r2] ["/d/:e/f" :r3]])] (t/is (= [:r1 nil] (r/match r "/a/b"))) (t/is (= [:r2 {:c "1"}] (r/match r "/b/1"))) (t/is (= [:r3 {:e "2"}] (r/match r "/d/2/f"))) (t/is (= nil (r/match r "/foo/bar")))))) (enable-console-print!) (set! *main-cli-fn* #(t/run-tests)) (defmethod t/report [:cljs.test/default :end-run-tests] [m] (if (t/successful? m) (set! (.-exitCode js/process) 0) (set! (.-exitCode js/process) 1))) (defproject lspector/clojush "1.2.27" :description "The Push programming language and the PushGP genetic programming system implemented in Clojure. See http://hampshire.edu/lspector/push.html" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/math.numeric-tower "0.0.1"] [local-file "0.0.4"] [clojure-csv "2.0.0-alpha2"] [org.clojure/data.json "0.1.3"]] :main clojush.core) (ns clojournal.layout (:require [selmer.parser :as parser] [clojure.string :as s] [ring.util.response :refer [content-type response]] [compojure.response :refer [Renderable]] [environ.core :refer [env]] [clojournal.models.article :as article] [clojournal.models.tag :as tag])) (parser/set-resource-path! (clojure.java.io/resource "templates")) (deftype RenderableTemplate [template params] Renderable (render [this request] (content-type (->> (assoc params (keyword (s/replace template #".html" "-selected")) "active" :dev (env :dev) :servlet-context (if-let [context (:servlet-context request)] ;; If we're not inside a serlvet environment (for ;; example when using mock requests), then ;; .getContextPath might not exist (try (.getContextPath context) (catch IllegalArgumentException _ context))) ;; FIXME: the following line always issues db query even if not necessary :latest-articles (:articles (article/latest-articles 0 10)) :tag-cloud-tags (map #(assoc % :size (long (+ 20 (* (:group %) 20)))) (tag/tag-cloud))) (parser/render-file (str template)) response) "text/html; charset=utf-8"))) (defn render [template & [params]] (RenderableTemplate. template params)) (ns saapas.server (:require [clojure.java.io :as io] [compojure.core :refer [GET defroutes]] [compojure.route :refer [resources]] [compojure.handler :refer [api]] [ring.util.response :refer [redirect]] [ring.util.http-response :refer :all] [ring.middleware.reload :refer [wrap-reload]] [org.httpkit.server :refer [run-server]] [saapas.index :refer [index-page]])) (defroutes routes (resources "/" {:root "public"}) ; FIXME: boot-cljs will provide reverse routing fn which we ; can use to generate proper urls (resources "/public" {:root "public"}) (resources "/cljsjs" {:root "cljsjs"}) (GET "/" [] (ok index-page))) (defn stop [{:keys [http-kit] :as ctx}] (when http-kit (http-kit)) {}) (defn start [ctx & [{:keys [port reload reload-dirs]}]] (let [handler (cond-> #'saapas.server/routes reload (wrap-reload {:dirs (seq reload-dirs)})) port (Integer. (or port 10555)) http-kit (run-server handler {:port port :join? false})] (println "Starting web server on port" port) {:http-kit http-kit})) (ns mdr2.dtb "Functions to query DAISY Talking Books" (:require [clojure.data.xml :as xml] [clojure.java.io :refer [file]] [clojure.java.shell :refer [sh]] [clojure.string :refer [trim-newline]]) (:import javax.sound.sampled.AudioSystem)) (defn file-audio-length "Get the length of the audio in seconds for a given audio file" [file] ;; see http://stackoverflow.com/questions/3009908/how-do-i-get-a-sound-files-total-time-in-java (let [stream (AudioSystem/getAudioInputStream file) format (.getFormat stream) frameRate (.getFrameRate format) frames (.getFrameLength stream) durationInSeconds (/ frames frameRate)] durationInSeconds)) ;; admitedly this is kinda hackish but the "Java-way" using ;; AudioSystem et al doesn't seem to work inside immutant ;; see https://issues.jboss.org/browse/IMMUTANT-457 ;; (defn file-audio-length [file] ;; (-> (sh "soxi" "-D" (.getPath file)) ;; :out ;; trim-newline ;; Double/parseDouble)) (defn wav-file? [file] (and (.isFile file) (.endsWith (.getName file) ".wav"))) (defn audio-length [dtb] (let [audio-files (filter wav-file? (file-seq (file dtb)))] (reduce + (map file-audio-length audio-files)))) (ns storemi.js (:require [clj-rhino :as js] [clojure.walk :refer [keywordize-keys]])) (def parser-scope (doto (js/new-safe-scope) (js/eval (slurp "resources/public/js/underscore-min.js")) (js/eval (slurp "resources/public/js/parser.js")))) (defn parse-script [script] (let [sc (js/new-scope nil parser-scope)] (js/set! sc "script" script) (-> (js/eval sc "parseScript(script)") js/from-js))) (def react-scope (let [scripts ["resources/public/js/underscore-min.js" "resources/public/js/react.min.js" "resources/public/js/parser.js" "resources/public/js/react/story-ui.react.js"] scope (js/new-scope)] (js/eval scope "var global = this") (doseq [s scripts] (js/eval scope (slurp s))) scope)) (defn render-story-component [data & [paths]] (let [sc (js/new-scope nil react-scope)] (js/set! sc "data" (js/to-js data sc)) (js/set! sc "paths" (js/to-js paths sc)) (js/eval sc "React.renderComponentToString( Story({data: data, paths: paths}))"))) (ns ansel.session (:import java.util.UUID) (:require [ring.middleware.session.store :refer :all] [ansel.util :refer [when-slurp]])) (defn new-key [] (str (UUID/randomUUID))) (deftype FileSystemSessionStore [session-filename] SessionStore (read-session [s session-key] (let [session-text (when-slurp session-filename) session-data (read-string (or session-text "{}"))] (when session-data (session-data (keyword session-key))))) (write-session [_ session-key data] (let [k (or session-key (new-key)) session-text (when-slurp session-filename) session-data (read-string (or session-text "{}")) updated-data (assoc session-data (keyword k) data)] (spit session-filename updated-data) k)) (delete-session [_ session-key] (let [session-data (read-string (when-slurp session-filename)) updated-data (dissoc session-data (keyword session-key))] (spit session-filename updated-data) nil))) (defn filesystem-store [session-filename] (FileSystemSessionStore. session-filename)) (ns tttclj.web (:require [chord.http-kit :refer [wrap-websocket-handler]] [clojure.core.async :refer [! put! close! go go-loop timeout]] [compojure.core :refer [defroutes GET]] [compojure.route :refer [resources]] [org.httpkit.server :refer [run-server]])) (defn index [req] {:status 200 :headers {"Content-Type" "text/html"} :body "Hello HTTP via Compojure!"}) (defn ws-handler [{:keys [ws-channel] :as req}] (prn (:remote-addr req)) (go-loop [i 10] (! ws-channel (str "Hello from server" i)) (prn req) (when (> i 0) (recur (dec i))))) (defroutes app (resources "/") (GET "/ws" [] (-> ws-handler (wrap-websocket-handler))) (GET "/" [] index)) (defn -main [& args] (run-server app {:port 8080}) (println "Started server on http://localhost:8080")) (defproject compojure "1.3.3" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.1"] [medley "0.5.5"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.3/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.2.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha6"]]}}) #!/usr/bin/env boot (set-env! :source-paths #{"less" "src"} :resource-paths #{"html" "resources"} :dependencies '[; Boot setup [adzerk/boot-cljs "1.7.48-6"] [adzerk/boot-reload "0.4.1"] [deraen/boot-less "0.4.2"] [pandeiro/boot-http "0.7.0-SNAPSHOT"] ; App dependencies [org.clojure/clojurescript "1.7.145"] [org.omcljs/om "1.0.0-alpha14-SNAPSHOT"] ; Other dependencies [devcards "0.2.0-8"]]) (task-options! pom {:project "om-next-kanban-demo" :version "0.1.0-SNAPSHOT"}) (require '[adzerk.boot-cljs :refer [cljs]] '[adzerk.boot-reload :refer [reload]] '[deraen.boot-less :refer [less]] '[pandeiro.boot-http :refer [serve]]) (deftask run [] (comp (watch) (speak) (reload :on-jsload 'kanban.app/run) (less) (cljs :source-map true :optimizations :none :compiler-options {:devcards true}) (serve :dir "target"))) (ns user (:require [clojure.tools.namespace.repl :as repl] [clojure.walk :refer [macroexpand-all]] [clojure.pprint :refer [pprint]] [clojure.test :as test])) (defonce ^:dynamic *namespaces* ['cats.core-spec 'cats.builtin-spec 'cats.applicative.validation-spec 'cats.monad.identity-spec 'cats.monad.either-spec 'cats.monad.exception-spec 'cats.monad.maybe-spec]) (defn run-tests' [] (apply test/run-tests *namespaces*)) (defn run-tests [& nss] (if (pos? (count nss)) (binding [*namespaces* nss] (repl/refresh :after 'user/run-tests')) (repl/refresh :after 'user/run-tests'))) (defn trace "Asynchronous friendly println variant." [& strings] (locking println (apply println strings))) ;; (require '[cats.core :as m] ;; '[cats.context :as mc] ;; '[cats.monad.either :as either] ;; '[cats.builtin]) (require '[cljs.build.api :as b] '[cljs.tagged-literals]) (alter-var-root #'cljs.tagged-literals/*cljs-data-readers* assoc 'ux/tr (fn [v] `(uxbox.locales/tr ~v))) (println "Building ...") (let [start (System/nanoTime)] (b/build (b/inputs "src" "test") {:main 'uxbox.test-runner :output-to "out/tests.js" :output-dir "out" :parallel-build false :optimizations :whitespace :language-in :ecmascript5 :language-out :ecmascript5 :target :nodejs :verbose true}) (println "... done. Elapsed" (/ (- (System/nanoTime) start) 1e9) "seconds")) (in-ns 'instaskip.actions) (defn list-routes [filters innkeeper-config] (let [routes (m/match filters {:team team} (ik/get-routes {:owned-by-team team} innkeeper-config) :else (ik/get-routes innkeeper-config)) filtered-routes (map #(select-keys % [:id :name :endpoint]) routes)] (println "List routes") (t/table filtered-routes))) (defn list-route [id innkeeper-config] (let [route (ik/get-route id innkeeper-config) filtered-route (select-keys route [:id :name :path-id :created-by :activate-at :created-at :uses-common-filters :endpoint])] (println "List route wiht id" id) (t/table filtered-route))) (ns desdemona.lifecycles.logging (:require [taoensso.timbre :refer [info]])) (defn log-batch [event lifecycle] (let [task-name (-> event :onyx.core/task-map :onyx/name)] (doseq [m (->> event :onyx.core/results :tree (mapcat :leaves) (map :message))] (info task-name "logging segment:" m))) {}) (def log-calls {:lifecycle/after-batch log-batch}) (defn add-logging "Adds logging output to a task's output-batch." [job task] (if-let [entry (first (filter #(= (:onyx/name %) task) (:catalog job)))] (update-in job [:lifecycles] conj {:lifecycle/task task :lifecycle/calls ::log-calls}))) (ns tttclj.t-core (:use midje.sweet) (:use [tttclj.core])) (facts "about `create-game'" (fact "x always starts" (->> (repeat 100 (create-game)) (map :player) (frequencies)) => { :x 100 }) (fact "no tiles are set to start with" (frequencies (:tiles (create-game))) => { :- 9 })) (facts "about `opponent'" (opponent :x) => :o (opponent :o) => :x) (def game1 (make-move 3 (create-game))) (facts "about `make-move'" (fact "the player should swap to :o" (:player game1) => :o) (fact "one tile is taken now" (frequencies (:tiles game1)) => { :- 8 :x 1}) (fact "cannot make same move again" (make-move 3 (make-move 3 (create-game))) => nil)) (facts "about `possible-moves'" (fact "there should be 9 to start" (count (possible-moves (create-game))) => 9)) (ns hacker-agent.utils) (defn dissoc-in [data path] (let [prefix (butlast path) key (last path)] (if prefix (update-in data prefix dissoc key) (dissoc data key)))) (defn log-clj [o] (.log js/console (clj->js o))) (ns my-money.views.login (:require [my-money.components.common :as c] [my-money.components.button :refer [button]] [my-money.app.controller.authentication :as ac] [reagent.core :as r])) (defn- buttons [e! data close-fn] [:div [:input.btn.btn-primary.ml-1 {:type "submit" :form "login" :value "Login" :on-click #(do (.preventDefault %) (e! (ac/->Login @data)))}] [button {:type :danger :on-click #(close-fn)} "Cancel"]]) (defn- fields [data] [:form {:id "login"} [c/text-input "Username" :username "Enter your username" data false] [c/password-input "Password" :password "Enter your password" data false]]) (defn login-form [e! close-fn] (r/with-let [data (r/atom {})] [c/modal "Login" [fields data] [buttons e! data close-fn] close-fn])) (ns web.components.state-chooser (:require [clojure.string :as str] [om.next :as om :refer-macros [defui]] [om.dom :as dom])) (defui StateChooserItem static om/Ident (ident [this props] [:state (:id props)]) static om/IQuery (query [this] [:id :name :type]) Object (render [this] (let [{:keys [id name type]} (om/props this)] (dom/option #js {:value id} (condp = type :branch "b " :tag "t " " ") (str/replace name #"refs/heads/|refs/remotes/|refs/tags/" ""))))) (def state-chooser-item (om/factory StateChooserItem {:keyfn :id})) (defui StateChooser Object (state-selected [this e] (let [id (.. e -target -value) {:keys [select-fn]} (om/props this)] (when select-fn (select-fn [:state id]))) (.preventDefault e)) (render [this] (let [{:keys [state states]} (om/props this)] (dom/div #js {:className "state-chooser"} (dom/select #js {:onChange #(.state-selected this %)} (for [state states] (state-chooser-item state))))))) (def state-chooser (om/factory StateChooser)) (ns comic-reader.server (:gen-class) (:require [comic-reader.sites :as sites] [comic-reader.scrape :as scrape] [ring.util.response :as response] [ring.middleware.params :refer [wrap-params]] [compojure.core :as c] [compojure.route :as route] [hiccup.page :as hp])) (defn edn-response [data & [status]] {:status (or status 200) :headers {"Content-Type" "application/edn"} :body (pr-str data)}) (c/defroutes routes (c/GET "/" [] (hp/html5 [:input#history_state {:type "hidden"}] (hp/include-js "js/compiled/main.js"))) (c/GET "/blank" [] "") (c/context "/api/v1" [] (c/GET "/sites" [] (edn-response (vec (map #(select-keys % [:id :name :url]) sites/list)))) (c/GET "/comics/:site" [site] (->> sites/list (some (fn [s] (when (= (:id s) site) s))) scrape/fetch-comic-list edn-response)) (c/GET "/comic/:name" [name] (str "Hello comic" name))) (route/resources "/")) (def app (wrap-params routes)) (ns com.wsscode.pathom.book.connect.getting-started (:require [com.wsscode.pathom.core :as p] [com.wsscode.pathom.connect :as pc] [com.wsscode.pathom.profile :as pp])) ; initialize a dispatch function (defmulti resolver-fn pc/resolver-dispatch) ; initialize indexes (def indexes (atom {})) ; this creates a factory that will add a new method on the resolver-fn and add it to the indexes (def defresolver (pc/resolver-factory resolver-fn indexes)) ; creating our first resolver (defresolver `latest-product {::pc/output [{::latest-product [:product/id :product/title :product/price]}]} (fn [_ _] {::latest-product {:product/id 1 :product/title "Acoustic Guitar" :product/price 199.99M}})) (def parser (p/parser {::p/plugins [(p/env-plugin {::p/reader [p/map-reader pc/all-readers] ::pc/resolver-dispatch resolver-fn ::pc/indexes @indexes}) pp/profile-plugin]})) (comment (parser {} [::latest-product])) (ns demo.web (:require [clojure.pprint :refer [pprint]] [immutant.web :as web] [immutant.web.javax :as javax] [ring.middleware.resource :as ring-resource] [ring.util.response :as ring-util])) (defn echo-request "Echoes the request back as a string." [request] (ring-util/response (with-out-str (pprint request)))) (def assets "Serve static assets from resources/public/" (ring-resource/wrap-resource #'echo-request "public")) ;;; The Ring Session example: https://github.com/ring-clojure/ring/wiki/Sessions (defn counter [{session :session}] (let [count (:count session 0) session (assoc session :count (inc count))] (-> (ring-util/response (str "You accessed this page " count " times\n")) (assoc :session session)))) (defn -main [& {:as args}] ;; this uses an Undertow handler by default, which is faster than a servlet (web/run echo-request args) ;; using a servlet allows the session to be shared in a WildFly ;; cluster and allow access to the session from websockets (web/run (javax/create-servlet #'counter) :path "/counter")) (ns pp-client.util) ;;------------------------------------------------------------------------------ ;; Util Functions ;;------------------------------------------------------------------------------ (defn log "Log a Clojure thing." [thing] (js/console.log (pr-str thing))) (defn js-log "Log a JavaScript thing." [thing] (js/console.log thing)) (defn uuid [] "Create a UUID." [] (apply str (map (fn [x] (if (= x \0) (.toString (bit-or (* 16 (.random js/Math)) 0) 16) x)) "00000000-0000-4000-0000-000000000000"))) (ns chocolatier.engine.entities ;; NOTE to use protocols from another ns, import them explicitely by ;; name and not their methods ;; Use them in this ns by refering to the name (:require [chocolatier.engine.components :refer [Entity Renderable Attackable TestComp]])) (defrecord Bunny [id sprite x y] Entity (tick [this] (let [sprite (:sprite this)]) (aset sprite "rotation" (+ 0.01 (aget sprite "rotation")))) Renderable (render [this stage] (.addChild stage (:sprite this))) Attackable (attack [this] (println "owww")) TestComp (test-it [this] (println "testing"))) (ns xa.init (:require [immutant.xa :as xa] [immutant.web :as web] [clojure.java.jdbc :as sql])) (defonce ds (xa/datasource "foo" {:adapter "h2" :database "mem:foo"})) (def spec {:datasource ds}) (sql/with-connection spec (sql/create-table :things [:name :varchar])) (xa/transaction (sql/with-connection spec (sql/insert-records :things {:name "success"}))) (defn read [] (sql/with-connection spec (sql/with-query-results rows ["select name from things"] (:name (first rows))))) ;;; A web interface (defn handler [req] {:status 200 :headers {"Content-Type" "text/plain"} :body (read)}) (web/start "/thing" handler){:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"] [criterium "0.4.3"]] :source-paths ["dev"] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/cats/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]]]} :bench [:dev {:main ^:skip-aot benchmarks :jvm-opts ^:replace []}]} {:dev {:aliases {"test-all" ["with-profile" "dev,1.7:dev,1.6:dev,1.5:dev" "test"]} :dependencies [[com.nimbusds/nimbus-jose-jwt "4.13.1"]] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.10"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}} (ns backtype.storm.util-test (:import [backtype.storm Config]) (:import [backtype.storm.utils Utils]) (:import [com.netflix.curator.retry ExponentialBackoffRetry]) (:use [backtype.storm util]) (:use [clojure test]) ) (deftest test-new-curator-uses-exponential-backoff (let [expected_interval 2400 expected_retries 10 expected_ceiling 5000 conf (merge (clojurify-structure (Utils/readDefaultConfig)) {Config/STORM_ZOOKEEPER_RETRY_INTERVAL expected_interval Config/STORM_ZOOKEEPER_RETRY_TIMES expected_retries Config/STORM_ZOOKEEPER_RETRY_INTERVAL_CEILING expected_ceiling}) servers ["bogus_server"] arbitrary_port 42 curator (Utils/newCurator conf servers arbitrary_port) retry (-> curator .getZookeeperClient .getRetryPolicy) ] (is (.isAssignableFrom ExponentialBackoffRetry (.getClass retry))) (is (= (.getBaseSleepTimeMs retry) expected_interval)) (is (= (.getN retry) expected_retries)) (is (= (.getMaxRetryInterval retry) expected_ceiling)) ; It would be very unlikely for this to fail three times. (is (or (= (.getSleepTimeMs retry 10 0) expected_ceiling) (= (.getSleepTimeMs retry 10 0) expected_ceiling) (= (.getSleepTimeMs retry 10 0) expected_ceiling) )) ) ) (ns gtfve.utils.google-maps (:require-macros [cljs.core.async.macros :refer [go go-loop]]) (:require [cljs.core.async :as async :refer [put! chan clj Maps.MapTypeId :keywordize-keys true)) (defonce default-map-opts {:center {:lat 14.653386 :lng 121.032520} :mapTypeId (:ROADMAP map-types) :zoom 15}) (defn data-listen ([data type] (data-listen data type (chan))) ([data type c] (.. data (addListener type (fn [e] (put! c (if e e (js/Date.)))))) c)) (defn listen ([gmap type] (listen gmap type (chan))) ([gmap type c] (.. Maps -event (addListener gmap type (fn [e] (put! c (if e e (js/Date.)))))) c)) (ns pepa.bus (:require [com.stuartsierra.component :as component] [clojure.core.async :as async :refer [>!!]])) ;;; pepa.bus is a simple application-wide notification bus. Clients ;;; can subscribe for any topic they want and will receive a value for ;;; any call of `notify!' for that topic. (defn subscribe "Returns a channel with that will receive a value when `notify!' is called for that topic." ([bus topic buf] (let [chan (async/chan buf)] (async/sub (:output bus) topic chan) chan)) ([bus topic] (subscribe bus topic nil))) (defn notify! ([bus topic data] (>!! (:input bus) (assoc data ::topic topic))) ([bus topic] (notify! bus topic {}))) (defrecord Bus [input output] component/Lifecycle (start [component] (println ";; Starting bus") (let [input (async/chan) output (async/pub input ::topic)] (assoc component :input input :output output))) (stop [component] (println ";; Stopping bus") (assoc component :input nil :output nil))) (defn make-component [] (map->Bus {})) (ns test-runner (:require [cljs.core-test :as core-test] [cljs.reader-test :as reader-test] [clojure.string-test :as string-test])) (core-test/test-stuff) (reader-test/test-reader) (string-test/test-string) (println "Tests completed without exception") (ns cmr.opendap.util) (defn bool [arg] (if (contains? #{true :true "true" "TRUE" "t" "T" 1} arg) true false)) (defn remove-empty [coll] (remove #(or (nil? %) (empty? %)) coll)) (defn deep-merge "Merge maps recursively." [& maps] (if (every? #(or (map? %) (nil? %)) maps) (apply merge-with deep-merge maps) (last maps))) (defn now [] (/ (System/currentTimeMillis) 1000)) (defn timed [start] (- (now) start)) (defn most-frequent "This identifies the most frequently occuring data in a collection and returns it." [data] (->> data frequencies ;; the 'frequencies' function puts data first; let's swap the order (map (fn [[k v]] [v k])) ;; sort in reverse order to get the highest counts first (sort (comp - compare)) ;; just get the highest first ;; the first element is the count, the second is the bounding data second)) (ns ring.middleware.content-type "Middleware for automatically adding a content type to response maps." (:require [ring.util.mime-type :refer [ext-mime-type]] [ring.util.response :refer [content-type get-header]])) (defn content-type-response "Adds a content-type header to response. See: wrap-content-type." {:added "1.2"} ([response request] (content-type-response response request {})) ([response request options] (if response (if (get-header response "Content-Type") response (let [mime-type (ext-mime-type (:uri request) (:mime-types options))] (content-type response (or mime-type "application/octet-stream"))))))) (defn wrap-content-type "Middleware that adds a content-type header to the response if one is not set by the handler. Uses the ring.util.mime-type/ext-mime-type function to guess the content-type from the file extension in the URI. If no content-type can be found, it defaults to 'application/octet-stream'. Accepts the following options: :mime-types - a map of filename extensions to mime-types that will be used in addition to the ones defined in ring.util.mime-types/default-mime-types" ([handler] (wrap-content-type handler {})) ([handler options] (fn ([request] (-> (handler request) (content-type-response request options))) ([request respond raise] (handler request (fn [response] (respond (content-type-response response request options))) raise))))) (ns comic-reader.site-scraper-test (:require [clojure.java.io :as io] [clojure.test :as t] [comic-reader.site-scraper :as sut]) (:import comic_reader.sites.MangaSite)) (t/deftest make-site-entry-test (t/is (= (sut/make-site-entry "non-existent") ["non-existent" nil])) (let [test-file (io/as-file "resources/sites/test-site.clj")] (spit test-file "{}") (let [[label opts] (sut/make-site-entry "test-site")] (t/is (= label "test-site")) (t/is (= (class opts) MangaSite))) (io/delete-file test-file))) (ns useful.datatypes-test (:use clojure.test useful.datatypes)) (defrecord Test [a b c]) (record-accessors Test) (deftest test-record (let [init (Test. 1 2 3) second (Test. 1 5 4)] (is (= init (make-record Test :b 2 :a 1 :c 3))) (is (= second (assoc-record init :b 5 :c 4))) (is (= second (update-record init (+ b 3) (inc c)))) (is (= (:a init) (a init))) (testing "Preserves metadata" (let [m {:test 1} r (Test. 1 2 3 m {})] (is (= m (meta (assoc-record r :b 10)))))) (testing "Inline typehinting" (is (= second (assoc-record ^Test (assoc init :b 5) :c 4)))) (testing "Don't eval more than once" (let [times-evaled (atom 0) r (Test. 1 2 3)] (assoc-record ^Test (do (swap! times-evaled inc) r) :a :x :b :y :c :z) (is (= 1 @times-evaled)))))) (ns extracter.files (:require [clojure.java.io :as io])) (defn contains? [^java.util.regex.Pattern re ^String s] (boolean (re-find re s))) (defn fact? "Returns true if the given file appears to contain at least one fact docstring." [^java.io.File f] (with-open [fin (io/reader f)] (->> fin line-seq (some (partial contains? #"# Fact: "))))) (defn file? [^java.io.File f] (.isFile f)) (defn facts-in-dir "Returns a lazy sequence of java.io.File instances for every fact source file in a directory path. Scans recursively." [^String path] (->> path io/file file-seq (filter file?) (filter fact?))) (ns cljam.io.sam.util.refs "Utility functions for SAM references.") (defn make-refs "Return a reference sequence from the sam header." [hdr] (for [sq (:SQ hdr)] {:name (:SN sq), :len (:LN sq)})) (defn- ref-id* [refs name] (some #(when (= name (:name (second %))) (first %)) (map-indexed vector refs))) (def ref-id "Returns reference ID from the reference sequence and the specified reference name. If not found, returns nil." (memoize ref-id*)) (defn ref-name "Returns a reference name from the reference ID. Returns nil if id is not mapped." [refs ^long id] (when (<= 0 id (dec (count refs))) (:name (nth refs id)))) (defn ref-by-name "Returns the first reference which has the specified name." [refs name] (some #(if (= (:name %) name) %) refs)) (defproject {{name}} "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "0.0-3308" :classifier "aot" :exclusion [org.clojure/data.json]] [org.clojure/data.json "0.2.6" :classifier "aot"]] :jvm-opts ^:replace ["-Xmx1g" "-server"] :node-dependencies [[source-map-support "0.3.2"]] :plugins [[lein-npm "0.5.0"]] :source-paths ["src" "target/classes"] :clean-targets ["out" "release"] :target-path "target") (ns lambda-blog.templates.tags (:require [lambda-blog.templates.bits :refer [panel text-centered]] [lambda-blog.templates.page :refer [page]] [lambda-blog.utils :refer [pathcat]] [s-html.tags :refer [a div h1 span]])) (defn tag-cloud [min max {:keys [entries path-to-root tags]}] (let [counts (->> tags ;; FIXME O(N_tags * N_entries) but could be O(N_entries) (map #(->> entries (filter (fn [{:keys [tags]}] (contains? (into #{} (map :id tags)) (:id %)))) count (vector %)))) total (count entries)] (div (text-centered (map (fn [[t c]] (a {:class :tag :href (pathcat path-to-root (:path t))} (span {:class [:label :label-info] :style (format "font-size: %s%%;" (+ min-size (* (- max-size min-size) (/ c total))))} (:id t)) " ")) (sort-by (comp :id first) counts)))))) (defn tags-index [ent] (page (fn [ent] [(-> "Tag cloud" h1 text-centered panel) (tag-cloud 100 300 ent)]) ent)) (defproject inet.data "0.5.2-SNAPSHOT" :description "Represent and manipulate various Internet entities as data." :url "http://github.com/llasram/inet.data" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [hier-set "1.1.2"]] :plugins [[lein-ragel "0.1.0"] [codox "0.6.1"]] :source-paths ["src/clojure"] :java-source-paths ["src/java" "target/ragel"] :ragel-source-paths ["src/ragel"] :javac-options ["-g"] :prep-tasks ["ragel" "javac"] :warn-on-reflection true :codox {:exclude [inet.data.util]} :aliases {"doc!" ["with-profile" "doc,dev" "doc"]} :profiles {:dev {:dependencies [[byteable "0.2.0"] [criterium "0.2.1"]]} :doc {:dependencies [[org.clojure/clojure "1.3.0"]]}}) (defproject dependable "0.1.0-SNAPSHOT" :description "Dependency resolution for the impatient." :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"]] :main ^:skip-aot dependable.core :target-path "target/%s" :profiles {:uberjar {:aot :all} :user {:plugins [[lein-cloverage "1.0.0"]]}} ) (defproject com.farmlogs.conduit "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [com.novemberain/langohr "3.4.1"] [com.stuartsierra/component "0.3.0"] [org.clojure/core.async "0.2.374"] [org.clojure/tools.logging "0.3.1"] [ch.qos.logback/logback-classic "1.1.2" :exclusions [org.slf4j/slf4j-api]] [org.slf4j/jul-to-slf4j "1.7.7"] [org.slf4j/jcl-over-slf4j "1.7.7"] [org.slf4j/log4j-over-slf4j "1.7.7"]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]]}}) ;(defproject cli4clj "1.4.0" (defproject cli4clj "1.4.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.3.465"] [jline/jline "2.14.5"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.5" :exclusions [org.clojure/clojure]]]}} ) (defproject buddy/buddy-sign "0.6.0" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [com.taoensso/nippy "2.8.0"] [buddy/buddy-core "0.6.0"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.5.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject onyx-app/lein-template "0.12.0.0-beta2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject clj-tutorials "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [http-kit "2.1.19"] [ring/ring-core "1.3.1"] [javax.servlet/servlet-api "2.5"] [compojure "1.2.1"] [clj-gatling "0.3.0"]]) (defproject onyx-app/lein-template "0.10.0.0-beta7" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.9.10.0-beta7" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject re-frame/lein-template "0.3.24-SNAPSHOT" :description "Leiningen template for a Reagent web app that implements the re-frame pattern." :url "https://github.com/Day8/re-frame-template" :license {:name "MIT"} :deploy-repositories [["clojars" {:sign-releases false :url "https://clojars.org/repo" :username :env/CLOJARS_USERNAME :password :env/CLOJARS_PASSWORD}]] :release-tasks [["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] ["vcs" "tag" "v" "--no-sign"] ["deploy" "clojars"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"] ["vcs" "push"]] :scm {:name "git" :url "https://github.com/Day8/re-frame-template"} :eval-in-leiningen true) FIs�x������Q ��v� )$�&�)T+�.L2�5�6.9t;=�?3CF�I�LN�QSU�X�[b`�d�fkxo�o�pDr�t�y�~���i���4�k���؞|������G�Ʋʹ����[�Y��������� �<���f�!���@�����9������u� i ��7�* 9!"$�(�.J0�4: ?|DyF�KOR�U�Zm_1`�d�f�k�n�r�t/yrzs{X�V���4��� �K�2� ��;���e�+����?�ʽ6���������K���2�g���f�'�P�H���?�����V� �����0r�� " ����w��!�$�(�-�2R6�:�=�AyDqH4O�R> (merge {:port default-port} opts) (s/validate {:port s/Int}))] (->Webserver port) )) (ns leiningen.compile "Compile the namespaces listed in project.clj or all namespaces in src." (:use [clojure.contrib.java-utils :only [file]] [clojure.contrib.find-namespaces :only [find-namespaces-in-dir]]) (:refer-clojure :exclude [compile])) (defn compile "Ahead-of-time compile the project. Looks for all namespaces under src/ unless a list of :namespaces is provided in project.clj." [project] ;; TODO: use a java subprocess in case a different clojure version is needed (doseq [n (or (:namespaces project) (find-namespaces-in-dir (file (:root project) "src")))] (let [ns-file (str (.replaceAll (name n) "\\." "/"))] (when (> (.lastModified (file (:root project) "src" (str ns-file ".clj"))) (.lastModified (file (:root project) "classes" (str ns-file "__init.class")))) (println "Compiling" n) (clojure.core/compile n))))) (ns mvxcvi.vault.blob (:require (clojure [string :as string]) digest)) ;; HASH ALGORITHMS (def ^:private digest-functions "Map of content hashing algorithms to functional implementations." {:md5 digest/md5 :sha1 digest/sha-1 :sha256 digest/sha-256}) (def digest-algorithms "Set of available content hashing algorithms." (into #{} (keys digest-functions))) ;; BLOB REFERENCE (defrecord BlobRef [algorithm digest] Object (toString [this] (str (name algorithm) ":" digest))) (defn content-address "Calculates the blob reference for the given content." [algorithm content] (let [hashfn (digest-functions algorithm)] (when-not hashfn (throw (IllegalArgumentException. (str "Unsupported digest algorithm: " algorithm ", must be one of " (string/join ", " digest-algorithms))))) (BlobRef. algorithm (-> content hashfn .toLowerCase)))) (defn parse-address "Parses an address string into a blobref. Accepts either a hash URI or the shorter \"algo:address\" format." [address] (let [address (str address) address (if (re-find #"^urn:" address) (subs address 4) address) [algorithm digest] (string/split address #":" 2)] (BlobRef. (keyword algorithm) digest))) (ns com.wsscode.pathom.misc #?(:clj (:import (java.util UUID)))) #?(:clj (def INCLUDE_SPECS true) :cljs (goog-define INCLUDE_SPECS true)) (defn pathom-random-uuid [] #?(:clj (UUID/randomUUID) :cljs (random-uuid))) (ns rmfu-ui.nav (:require [secretary.core :as secretary :include-macros true])) (defn nav "Renders basic nav with an .active link" [active] [:nav {:className "navbar navbar-light bg-faded"} [:a.navbar-brand "FEED"] [:ul.nav.navbar-nav (for [anchor ["about" "create" "profile"] :let [title (clojure.string/capitalize anchor) class-names (if (= active anchor) "nav-item active" "nav-item")]] ^{:key anchor} [:li {:className class-names} [:a.nav-link {:href (str "/#/" anchor)} title]])] [:form.form-inline.navbar-form.pull-right [:button.btn.btn-success-outline {:type "button"} "logout"]]])(defproject cmdb "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies [[org.clojure/clojure "1.2.1"] [org.clojure/clojure-contrib "1.2.0"] [postgresql/postgresql "9.0-801.jdbc4"] [org.clojure/java.jdbc "0.0.5"] [clj-json "0.3.2"] [digest "1.2.1"] [log4j "1.2.16" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]]] :aot [com.puppetlabs.cmdb.core] :main com.puppetlabs.cmdb.core ) (defproject io.atomix/trinity "0.1.0-SNAPSHOT" :description "A sweet little Clojure API for Atomix" :url "http://github.com/atomix/trinity" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [io.atomix/atomix-all "1.0.0-rc4"] [io.atomix.catalyst/catalyst-netty "1.0.7"]] :repositories [["sonatype-nexus-snapshots" {:url "https://oss.sonatype.org/content/repositories/snapshots"}]] :plugins [[lein-codox "0.9.0"]] :codox {:output-path "target/docs/docs" :metadata {:doc/format :markdown} :source-uri "http://github.com/atomix/trinity/blob/master/{filepath}#L{line}"}) (defproject yorck-ratings "2.0.0" :description "IMDB ratings for movies playing in Yorck cinemas Berlin" :url "https://yorck-ratings.treppo.org" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [http-kit "2.3.0"] [ring/ring-devel "1.6.3"] [ring/ring-core "1.6.3"] [http-kit.fake "0.2.2"] [luminus/config "0.8"] [hickory "0.7.1"] [org.clojure/core.async "0.4.474"]] :main ^:skip-aot yorck-ratings.web :target-path "target/%s" :profiles {:uberjar {:aot :all} :dev {:resource-paths ["test/resources" "config/dev"] :dependencies [[midje "1.9.1"] [midje-notifier "0.2.0"]] :plugins [[lein-midje "3.2.1"]]} :test {:resource-paths ["test/resources" "config/test"]}} :min-lein-version "2.4.0" :uberjar-name "yorck-ratings-standalone.jar") (defproject compojure "1.6.1" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.macro "0.1.5"] [clout "2.2.1"] [medley "1.0.0"] [ring/ring-core "1.6.3"] [ring/ring-codec "1.1.0"]] :plugins [[lein-codox "0.10.3"]] :codox {:output-path "codox" :metadata {:doc/format :markdown} :source-uri "http://github.com/weavejester/compojure/blob/{version}/{filepath}#L{line}"} :aliases {"test-all" ["with-profile" "default:+1.8:+1.9" "test"]} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.3.2"] [criterium "0.4.4"] [javax.servlet/servlet-api "2.5"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}}) (defproject fleetdb "0.2.0" :description "A schema-free database optimized for agile development." :url "http://github.com/mmcgrana/fleetdb" :source-path "src/clj" :java-source-path "src/jvm/" :javac-fork "true" :namespaces [fleetdb.server] :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"] [clj-stacktrace "0.1.2"] [net.sf.jopt-simple/jopt-simple "3.2"] [clj-json "0.2.0"]] :dev-dependencies [[lein-javac "1.2.1-SNAPSHOT"] [clj-unit "0.1.0"]]) (defproject kixi/terraboot "0.4.4-SNAPSHOT" :description "Terraform modules for kixi framework" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [cheshire "5.5.0"] [stencil "0.5.0"] [clj-yaml "0.4.0"] [expectations "2.0.9"]] :repositories [["releases" {:url "https://clojars.org/repo" :creds :gpg}] ["snapshots" {:url "https://clojars.org/repo" :creds :gpg}]]) (defproject buddy/buddy-sign "0.5.1" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0" :scope "provided"] [com.taoensso/nippy "2.8.0"] [buddy/buddy-core "0.6.0-SNAPSHOT"] ;; [slingshot "0.12.2"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.4.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject carambar "0.1.0-SNAPSHOT" :description "Carambar !!" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/data.zip "0.1.1"] [ring/ring-core "1.3.2"] [compojure "1.3.2"] [ring/ring-json "0.3.1"]] :profiles {:dev {:dependencies [[midje "1.6.3"]]}} :plugins [[lein-ring "0.9.2"]] :uberjar-name "carambar.jar" :ring {:handler carambar.core/app :init carambar.core/init}) (defproject midje "1.3.0-RC2" :description "A TDD library for Clojure, with an emphasis on mocks" :url "https://github.com/marick/Midje" :dependencies [[org.clojure/clojure "[1.2.0],[1.2.1],[1.3.0]"] ; :dependencies [[org.clojure/clojure "[1.2.0],[1.2.1]"] [ordered "1.0.0"] [org.clojure/math.combinatorics "0.0.1"] [org.clojure/algo.monads "0.1.0"] [org.clojure/core.unify "0.5.1"] [utilize "0.1.3"] [colorize "0.1.1"] [org.clojure/tools.macro "0.1.1"]] :dev-dependencies [[swank-clojure "1.2.1"] [slamhound "1.1.1"] [com.intelie/lazytest "1.0.0-SNAPSHOT"]] ;; automatically detects when your :dependencies key changes and runs ;; lein deps behind the scenes when necessary. :checksum-deps true) ;(defproject cli4clj "0.8.0" (defproject cli4clj "0.8.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-assorted-utils "1.11.0"] [jline/jline "2.14-SNAPSHOT"]] :main cli4clj.example :plugins [[lein-cloverage "1.0.2"]]) (defproject org.onyxplatform/onyx-kafka "0.7.2.1-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.onyxplatform/onyx "0.7.2"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.4.0"] [zookeeper-clj "0.9.1" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns instaskip.innkeeper-hosts-client (:require [clj-http.client :as client] [instaskip.case-utils :refer [snake-to-hyphen-keyword]] [instaskip.innkeeper-client :as innkeeper] [clojure.spec :as s])) (def hosts-url (str innkeeper/innkeeper-url "/hosts")) (defn- hosts-response [] (client/get hosts-url {:headers {"Authorization" innkeeper/read-token} :insecure? true})) (defn- to-tuple-fn [id-to-host] [(id-to-host :name) (Integer. (id-to-host :id))]) (defn hosts-to-ids "A map in the format: {\"host1.com\" 1 \"host2.com\" 2}" [] (->> (hosts-response) innkeeper/extract-body (map to-tuple-fn) (into {}))) (comment (hosts-to-ids)) (defproject org.onyxplatform/onyx-bookkeeper "0.8.1.0-alpha7" :description "Onyx plugin for BookKeeper" :url "https://github.com/onyx-platform/onyx-bookkeeper" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha7"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.12.0.0-beta3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject viewer "0.1.0-SNAPSHOT" :description "EVE Online Data Dump Viewer" :url "http://evemastery.appspot.com/" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0-RC1"] [ring "1.2.2"] [compojure "1.1.6"] [org.clojure/data.json "0.2.4"] [hiccup "1.0.4"] [appengine-magic "0.5.1-SNAPSHOT"]] :plugins [[appengine-magic "0.5.1-SNAPSHOT"]]) (defproject onyx-app/lein-template "0.9.7.0-alpha6" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject oph/clj-parent "0.1.0" :url "http://example.com/FIXME" :license {:name "EUPL" :url "http://www.osor.eu/eupl/"} :plugins [[lein-modules "0.3.11"]] :modules {:inherited { :repositories [["oph-releases" {:url "https://artifactory.oph.ware.fi/artifactory/oph-sade-release-local" :sign-releases false :snapshots false}] ["oph-snapshots" "https://artifactory.oph.ware.fi/artifactory/oph-sade-snapshot-local"]] :deploy-repositories {"snapshots" {:url "https://artifactory.oph.ware.fi/artifactory/oph-sade-snapshot-local"} "releases" {:url "https://artifactory.oph.ware.fi/artifactory/oph-sade-release-local"}}}}) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [jline "2.7"] [org.thnetos/cd-client "0.3.4"] [clj-stacktrace "0.2.4"] [org.clojure/tools.nrepl "0.2.0-beta7"] [com.cemerick/drawbridge "0.0.3"] [clojure-complete "0.2.1"]] :profiles {:dev {:dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]]}} :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java" :source-paths ["src/clj"] :java-source-paths ["src/java"] :main ^{:skip-aot true} reply.main) (defproject onyx-app/lein-template "0.8.11.1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject shrimp "0.1.0-SNAPSHOT" :description "Demo project for Goby." :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2371"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [weasel "0.4.0-SNAPSHOT"]] :plugins [[lein-cljsbuild "1.0.3"] [jarohen/simple-brepl "0.1.1"]] :source-paths ["goby-src" "src"] :brepl {:ip "127.0.0.1"} :cljsbuild {:builds {:dev {:source-paths ["goby-src" "src" "dev-src"] :compiler {:output-to "js/main.js" :optimizations :whitespace :static-fns false :externs ["goby-externs.js" "externs.js"] :pretty-print true}} :rel {:source-paths ["goby-src" "src" "rel-src"] :compiler {:output-to "js/main.js" :optimizations :advanced :static-fns true :externs ["goby-externs.js" "externs.js"] :pretty-print false :pseudo-names false}}}}) (ns webdev.core-test (:require [clojure.test :refer :all] [webdev.core :refer [app]] [ring.mock.request :as mock])) (deftest routes (testing "/items" (let [response (app (mock/request :get "/items"))] (is (= 200 (:status response))))) (testing "not found" (let [response (app (mock/request :get "/no-such-route"))] (is (= 404 (:status response)))))) (ns pict-source.index (:require [hiccup.page :refer [html5]])) ;;;; Index page template (defn page [dictionaries] [:div {:class "content"} (for [dict-row (partition-all 3 dictionaries)] [:div {:class "row"} (for [dict dict-row] [:div {:class "four columns"} [:h2 [:a {:href (str "/" (:lang dict) "/")} (:lang dict)]] [:p (:description dict)] [:p (str (:words-count dict) " words")]])])]) (defproject onyx-app/lein-template "0.9.13.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject lein-jslint "0.1.5-SNAPSHOT" :description "A Leiningen plugin for running JS code through JSLint." :url "https://github.com/vbauer/lein-jslint" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [clj-glob "1.0.0" :exclusions [org.clojure/clojure]] [lein-npm "0.4.0" :exclusions [org.clojure/clojure]]] :plugins [[jonase/eastwood "0.1.4" :exclusions [org.clojure/clojure]] [lein-release "1.0.5" :exclusions [org.clojure/clojure]] [lein-kibit "0.0.8" :exclusions [org.clojure/clojure]] [lein-bikeshed "0.1.7" :exclusions [org.clojure/clojure]] [lein-ancient "0.5.5"]] :eval-in-leiningen true :pedantic? :abort :local-repo-classpath true :lein-release {:deploy-via :clojars :scm :git}) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-beta1" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta1"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150822_210824-ga0dc570"] [clj-kafka "0.2.8-0.8.1.1" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [cheshire "5.4.0"] [zookeeper-clj "0.9.1" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0" :exclusions [commons-codec]]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.8.11.7" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns bartleby.db) (def default-db "Default state" {:tasks []}) (ns postal.smtp (:use [postal.message :only [make-jmessage]] [postal.support :only [make-props]]) (:import [javax.mail Transport Session])) (defn smtp-send ([msg] (let [jmsg (make-jmessage msg)] (try (Transport/send jmsg) {:code 0 :error :SUCCESS :message "message sent"} (catch Exception e {:code 99 :error (class e) :message (.getMessage e)})))) ([auth-map & msgs] (let [{:keys [host port user pass sender] :or {host "localhost" port 25}} auth-map session (doto (Session/getInstance (make-props sender auth-map)) (.setDebug false))] (with-open [transport (.getTransport session (if (and user pass) "smtps" "smtp"))] (.connect transport host port (str user) (str pass)) (let [jmsgs (map #(make-jmessage % session) msgs)] (doseq [jmsg jmsgs] (.sendMessage transport jmsg (.getAllRecipients jmsg))) {:code 0 :error :SUCCESS :message "messages sent"}))))) (ns drum-machine.state) (def initial-state {:tracks [{:name "Kick" :source "http://sampleswap.org/samples-ghost/DRUMS%20and%20SINGLE%20HITS/kicks/61[kb]bass-kickers-2.wav.mp3" :play-on [1 3] :volume 1.0} {:name "Snare" :source "http://sampleswap.org/samples-ghost/DRUMS%20and%20SINGLE%20HITS/snares/57[kb]acoustic_snare.aif.mp3" :play-on [2 4] :volume 1.0} {:name "Hi-Hat" :source "http://sampleswap.org/samples-ghost/DRUMS%20and%20SINGLE%20HITS/hats/29[kb]909-squoosh-hat.aif.mp3" :play-on [1 2 3 4] :volume 0.1}]}) (set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [boot/core "2.0.0-rc12" :scope "provided"]]) (def +version+ "0.1.0") (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}}) ; Copyright 2009 Howard M. Lewis Ship ; ; 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 ; ; Unless required by applicable law or agreed to in writing, software ; distributed under the License is distributed on an "AS IS" BASIS, ; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or ; implied. See the License for the specific language governing permissions ; and limitations under the License. (ns #^{:doc "Wrappers around Simple Logging Facade for Java (SLF4J)"} cascade.logging (:import (org.slf4j LoggerFactory Logger))) (defn #^Logger get-logger [#^String name] (LoggerFactory/getLogger name)) (defmacro log* [check-fn log-fn fmt & args] (let [logger-name (name (ns-name *ns*))] `(let [logger# (get-logger ~logger-name)] (and (. logger# ~check-fn) (. logger# ~log-fn (format ~fmt ~@args)))))) (defmacro debug [fmt & args] `(log* isDebugEnabled debug ~fmt ~@args)) (defmacro info [fmt & args] `(log* isInfoEnabled info ~fmt ~@args)) (defmacro error [fmt & args] `(log* isErrorEnabled error ~fmt ~@args))(defproject dungeon-crusade "0.0.1-SNAPSHOT" :description "dungeon-crusade" :dependencies [[org.clojure/clojure "1.6.0"] [ns-tracker "0.2.2"] [org.clojure/math.combinatorics "0.0.7"] [org.clojure/clojure-contrib "1.2.0"] [org.clojars.vishk/algotools "0.1.0"] [clj-tiny-astar "0.1.0-SNAPSHOT"] [org.clojars.folcon/clojure-lanterna "0.9.5-SNAPSHOT"]] :main dungeon-crusade.core :repl-init dungeon-crusade.main) (defproject inet.data "0.2.0-SNAPSHOT" :description "Represent and manipulate various Internet entities as data." :url "http://github.com/llasram/inet.data" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [hier-set "1.1.1"]] :plugins [[lein-ragel "0.1.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java" "target/ragel"] :ragel-source-paths ["src/ragel"] :javac-options ["-g"] :prep-tasks [ragel javac] :profiles {:dev {:dependencies [[byteable "0.1.1"]] :warn-on-reflection true}}) (defproject onyx-app/lein-template "0.11.0.0-alpha5" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.13.3.0-alpha4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;; Copyright © 2014 JUXT LTD. (defproject cylon "0.4.0" :description "An integrated security system for applications built on component" :url "https://github.com/juxt/cylon" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[juxt.modular/bidi "0.5.0"] [juxt.modular/ring "0.5.0"] [prismatic/schema "0.2.1"] [ring/ring-core "1.2.2"] [hiccup "1.0.5"] [org.clojure/tools.logging "0.2.6"] ;; Required for OAuth2 support [cheshire "5.3.1"] [juxt.modular/http-kit "0.5.1"] [liberator "0.11.0"] ] :profiles {:dev {:dependencies [[org.clojure/clojure "1.6.0"]]}}) (defproject mkremins/flense-nw "0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2665"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [com.facebook/react "0.12.2.1"] [org.om/om "0.8.0"] [spellhouse/phalanges "0.1.4"] [mkremins/flense "0.0-SNAPSHOT"] [mkremins/fs "0.3.0"]] :plugins [[lein-cljsbuild "1.0.4"]] :source-paths ["src"] :cljsbuild {:builds [{:source-paths ["src"] :compiler {:preamble ["react/react.js"] :output-to "target/flense.js" :source-map "target/flense.js.map" :optimizations :whitespace :pretty-print true}}]}) (ns rill.event-store.atom-store "This is an event store implementation using the GetEventstore.com store as a backend. Code originally taken from https://github.com/jankronquist/rock-paper-scissors-in-clojure/tree/master/eventstore/src/com/jayway/rps " (:require [clojure.tools.logging :as log] [rill.event-store :refer [EventStore]] [rill.event-store.atom-store.cursor :as cursor] [rill.event-store.atom-store.event :as event] [rill.event-stream :refer [all-events-stream-id]] [rill.message :as msg])) (defn client-opts [user password] (if (and user password) {:basic-auth [user password]})) (deftype AtomStore [uri user password] EventStore (retrieve-events-since [_ stream-id cursor wait-for-seconds] (cursor/event-seq (if (= -1 cursor) (cursor/first-cursor uri (if (= all-events-stream-id stream-id) "%24all" stream-id) (client-opts user password)) (cursor/next-cursor cursor)) wait-for-seconds)) (append-events [_ stream-id from-version events] (event/post uri stream-id from-version events (client-opts user password)))) (defn atom-event-store [uri & [opts]] (->AtomStore uri (:user opts) (:password opts))) (ns comic-reader.dev (:require [clojure.repl :refer :all] [clojure.tools.namespace.repl :refer [clear refresh]] [clansi.core :refer [style]])) (declare doc-print goto-ns) (defn welcome [] (doc-print "Welcome to the comic reader. If you want to add a new site, run `(add-site)'. If you want to work on the frontend, run `(develop-frontend)'.")) (defn add-site [] (doc-print "Start by running the tests with `(run-site-tests)'. All the tests should pass. Now add a new site definition file and run the tests again. Follow the instructions in the test errors, and hopefully you'll end up with a working site scraper.") (goto-ns 'comic-reader.site-dev)) (defn develop-frontend [] (doc-print "To get started run `(start-dev!)'. This will kick off the application server, and the figwheel devcard build.") (goto-ns 'comic-reader.frontend-dev)) (defn- doc-print [msg] (println " " msg)) (defn- goto-ns [ns] (require ns) (in-ns ns)) (set-env! :source-paths #{"src/main/java" "src/test/java"} :dependencies '[[junit "4.12" :scope "test"]]) (def +version+ "0.1.0") (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}}) (require 'clojure.set) (deftask junit "Run the jUnit test runner." [] (with-pre-wrap fileset fileset)) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns github-changelog.util (:require [clojure.string :refer [join ends-with?]])) (defn str-map [f & sqs] (join (apply map f sqs))) (defn extract-params [query-string] (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" query-string)] [(keyword k) v]))) (defn strip-trailing ([s] (strip-trailing s "/")) ([s end] (if (ends-with? s end) (recur (join (drop-last s)) end) s))) (ns clj-record.test.model.config) (comment) (def db {:classname "org.apache.derby.jdbc.EmbeddedDriver" :subprotocol "derby" :subname "/tmp/clj-record.test.db" :create true}) (comment (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname "//localhost:5432/test" :user "user" :password "pass"})) (comment (def db {:classname "com.mysql.jdbc.Driver" :subprotocol "mysql" :user "root" :password "root" :subname "//localhost/test"}))(ns picard.log4j.CommonLogFormatLayout (:import [java.util Date] [java.text SimpleDateFormat] [org.apache.log4j Level Logger Layout] [org.apache.log4j.spi LoggingEvent]) (:gen-class :extends org.apache.log4j.Layout)) (def commons-date-formatter (SimpleDateFormat. "dd/MMM/yyyy:kk:mm:ss Z")) (defn format-commons-logging [request timestamp] (let [request-date (Date. (long timestamp)) request-time-string (.format commons-date-formatter request-date)] (format "%s - - [%s] \"%s %s HTTP/%d.%d\" %d %d\n" (first (:remote-addr request )) request-time-string (:request-method request) (:path-info request) (first (:http-version request)) (second (:http-version request)) (:response-status request) (:response-body-size request)))) (defn -format [this ^LoggingEvent logging-event] (format-commons-logging (.getMessage logging-event) (.getTimeStamp logging-event))) (defn -ignoresThrowable [_] true) (defn -activateOptions [_]) (ns ontrail.core (:use lamina.core aleph.http compojure.core) (:gen-class) (:require [compojure.route :as route])) (require '[monger.collection :as mc]) (use 'ring.middleware.file) (use '[clojure.data.json :only (read-json json-str)]) (use '[ontrail.summary]) (defn json-response [data & [status]] {:status (or status 200) :headers {"Content-Type" "application/json"} :body (json-str data)}) (defroutes app-routes "Routes requests to their handler function. Captures dynamic variables." (GET "/summary/:user" [user] (json-response (get-overall-summary user))) (route/resources "/") (route/not-found "Page not found")) (defn -main [& args] "Main thread for the server which starts an async server with all the routes we specified and is websocket ready." (start-http-server (wrap-ring-handler app-routes) {:host "localhost" :port 8080 :websocket true})) (ns audio-utils.web-audio) (defn audio-context [] (let [constructor (or js/window.AudioContext js/window.webkitAudioContext)] (constructor.))) (defn create-buffer [ctx n-channels size sample-rate] (.createBuffer ctx n-channels size sample-rate)) (defn create-buffer-source ([ctx] (.createBufferSource ctx)) ([ctx n-channels sample-rate data] (let [buf (create-buffer ctx n-channels (count (cond-> data (> n-channels 1) first)) sample-rate) src (create-buffer-source ctx)] (doseq [channel (range 0 n-channels) :let [channel-data (.getChannelData buf channel) input-data (cond-> data (> n-channels 1) (get channel))]] (doseq [[i x] (map-indexed vector input-data)] (aset channel-data i x))) (set! (.-buffer src) buf) src))) (ns com.wsscode.pathom.connect.run-graph-readers-test (:require [clojure.test :refer :all] [com.wsscode.pathom.connect :as pc] [com.wsscode.pathom.sugar :as ps] [com.wsscode.pathom.core :as p])) (defn run-parser [{::keys [resolvers query]}] (let [parser (ps/connect-serial-parser {::ps/connect-reader pc/reader3} resolvers)] (parser {} query))) (deftest test-runner3 (testing "simple resolver" (is (= (run-parser {::resolvers [(pc/resolver 'a {::pc/output [:a]} (fn [_ _] {:a 42}))] ::query [:a]}) {:a 42})) (is (= (run-parser {::resolvers [(pc/resolver 'a {::pc/output [:a :b]} (fn [_ _] {:a 42 :b "foo"}))] ::query [:a :b]}) {:a 42 :b "foo"}))) (testing "missed output" (is (= (run-parser {::resolvers [(pc/resolver 'a {::pc/output [:a]} (fn [_ _] {}))] ::query [:a]}) {:a ::p/not-found})))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016-2019 Andrey Antukh (ns user (:require [clojure.tools.namespace.repl :as repl] [clojure.walk :refer [macroexpand-all]] [clojure.pprint :refer [pprint]] [clojure.test :as test])) (defn- run-test ([] (run-test #"^suricatta\..*test.*")) ([o] (repl/refresh) (cond (instance? java.util.regex.Pattern o) (test/run-all-tests o) (symbol? o) (if-let [sns (namespace o)] (do (require (symbol sns)) (test/test-vars [(resolve o)])) (test/test-ns o))))) (defn -main [& args] (let [{:keys [fail]} (run-test)] (if (pos? fail) (System/exit fail) (System/exit 0)))) (ns leiningen.ring.server-headless (:use leiningen.ring.server)) (defn server-headless "Start a Ring server without opening a browser." ([project] (server-task project {:headless? true})) ([project port] (server-task project {:port (Integer. port), :headless? true}))) (ns foreclojure.ring (:use [compojure.core :only [GET]] [ring.util.response :only [response]]) (:require [clojure.java.io :as io] [clojure.string :as s]) (:import (java.net URL))) ;; copied from compojure.route, modified to use File instead of Stream (defn resources "A route for serving resources on the classpath. Accepts the following keys: :root - the root prefix to get the resources from. Defaults to 'public'." [path & [options]] (-> (GET path {{resource-path :*} :route-params} (let [root (:root options "public")] (when-let [res (io/resource (str root "/" resource-path))] (response (io/as-file res))))))) (defn wrap-url-as-file [handler] (fn [request] (when-let [{body :body :as resp} (handler request)] (if (and (instance? URL body) (= "file" (.getProtocol ^URL body))) (update-in resp [:body] io/as-file) resp)))) (defn wrap-strip-trailing-slash [handler] (fn [request] (handler (update-in request [:uri] s/replace #"(?<=.)/$" "")))) (ns etl (:require [clojure.string :as str])) (defn- pairs [pair] (let [[value key] pair] (map (fn [k] {(str/lower-case k) value}) key))) (defn transform [words] (into {} (flatten (map pairs words))))(ns swartz.models.core (:require [environ.core :refer [env]] [clojure.string :as str])) (def db {:connection-uri (str/replace (env :database-url) #":postgres:" ":postgresql:") :classname "org.postgresql.Driver"}) (ns fivethreeonern.sqlite (:require [mount.core :refer-macros [defstate]])) (def node-module (js/require "react-native-sqlite-storage")) (defstate sqlite :start (.openDatabase node-module #js {:name "531.db" :location "default"} #(js/console.log "sql ok") #(js/console.log "sql error"))) (defn- execute-sql [tx [query & other-queries] final-cb on-error] (.executeSql tx query #js [] (fn [tx results] (if (empty? other-queries) (let [results (-> results .-rows .raw (js->clj :keywordize-keys true))] (final-cb results)) (execute-sql tx other-queries final-cb on-error))) on-error)) (defn transaction ([query-strings final-cb] (transaction query-strings final-cb (fn [_]))) ([query-strings final-cb on-error] (.transaction @sqlite (fn [tx] (execute-sql tx query-strings final-cb on-error))))) (defn query ([query-str cb] (query query-str cb (fn [_]))) ([query-str cb on-error] (transaction [query-str] cb on-error))) (defproject spiral "0.1.1-SNAPSHOT" :description "core.async based http server library" :url "http://github.com/dgrnbrg/spiral" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :jvm-opts ^:replace ["-Xmx4g" "-server"] :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [org.clojure/data.priority-map "0.0.5"] [ring "1.2.2"] [org.clojure/core.async "0.1.303.0-886421-alpha"]] :profiles {:dev {:dependencies [[ring/ring-jetty-adapter "1.3.1"] [hiccup "1.0.5"] [compojure "1.1.7"] [clj-time "0.4.4"] [http-kit "2.1.19"] [org.immutant/web "2.0.0"]]}}) (defproject buddy/buddy-core "0.9.0" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [commons-codec/commons-codec "1.10"] [org.bouncycastle/bcprov-jdk15on "1.54"] [org.bouncycastle/bcpkix-jdk15on "1.54"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]) (ns circle.system (:require [circle.backend.build.run :as run]) (:require [circle.backend.ec2 :as ec2]) (:use [clojure.tools.logging :only (infof)])) (defn graceful-shutdown "Shutdown there are no more running builds." [] (letfn [(shutdown [] (infof "graceful shutdown watcher, count=%s" (count @run/in-progress)) (when (zero? (count @run/in-progress)) (let [id (ec2/self-instance-id)] (when id (infof "calling self-terminate on %s" id) (ec2/terminate-instances! id)))))] (add-watch run/in-progress :shutdown (fn [key in-progress old-state new-state] (shutdown))) (shutdown)))(ns tako.core (:require [tako.github :as github] [tako.slack :as slack] [clojure.tools.logging :refer [info]]) (:gen-class :methods [^:static [handler [Object] String]])) (defn -handler [unused] (info (str "Called tako from lambda... " unused)) (binding [tako.github/github-token "herewego"] (slack/publish-notifications (github/poll-notifications)))) (defn -main "This function is included for testing purposes. It is NOT used by AWS lambda. It is intended to be used with `lein run your-github-token`" [& args] (info "Running tako from main...") (binding [tako.github/github-token (first args) tako.slack/slack-webhook-url (second args)] (slack/publish-notifications (github/poll-notifications)))) (defproject org.onyxplatform/onyx-metrics "0.8.1.0-0.8.1" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1"] [org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [[riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.6-alpha1"] [org.thnetos/cd-client "0.3.1" :exclusions [org.clojure/clojure]] [clj-stacktrace "0.2.4"] [clojure-complete "0.2.1" :exclusions [org.clojure/clojure]] [org.clojure/tools.nrepl "0.2.0-beta1"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java") (defproject cli4clj "1.0.0" ;(defproject cli4clj "1.0.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-assorted-utils "1.11.0"] [jline/jline "2.13"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.1.3"] [lein-html5-docs "3.0.3"]]) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.1"] [compojure "1.2.1"] [clj-time "0.8.0"] [org.clojure/data.json "0.2.5"]] :pedantic? :abort :plugins [[jonase/eastwood "0.1.5"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"}) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-alpha6" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-alpha6"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject cake "0.7.0-beta1" :description "Save your fork, there's cake!" :dependencies [[clojure "1.2.0"] [clojure-contrib "1.2.0"] [uncle "0.2.3"] [depot "0.1.7"] [classlojure "0.6.3"] [useful "0.7.4-alpha4"] [slingshot "0.7.2"] [org.clojure/tools.namespace "0.1.1" :exclusions [org.clojure/java.classpath]] [org.clojars.ninjudd/java.classpath "0.1.2-SNAPSHOT"] [org.clojars.ninjudd/data.xml "0.0.1-SNAPSHOT"] [com.jcraft/jsch "0.1.42"] [difform "1.1.1"] [org.clojars.rosejn/clansi "1.2.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [clj-stacktrace "0.2.3"]] :copy-deps true) (defproject suricatta "0.1.0-SNAPSHOT" :description "High level sql toolkit for clojure (backed by jooq library)" :url "http://example.com/FIXME" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.txt"} :dependencies [[org.clojure/clojure "1.6.0"] [org.jooq/jooq "3.4.2"] [clojure.jdbc "0.3.0"] [postgresql "9.3-1101.jdbc41"] [com.h2database/h2 "1.3.176"]]) (ns subman.helpers (:require [net.cgrand.enlive-html :as html] [org.httpkit.client :as http] [subman.const :as const])) (defn remove-first-0 "Remove first 0 from string" [query] (clojure.string/replace query #"^(0+)" "")) (defn get-from-line "Get parsed html from line" [line] (html/html-resource (java.io.StringReader. line))) (defn fetch "Fetch url content" [url] (-> url (http/get {:timeout const/conection-timeout}) deref :body get-from-line)) (defn nil-to-blank "Replace nil with blank string" [item] (if (nil? item) "" item)) (defn make-safe "Make fnc call safe" [fnc fallback] (fn [x] (try (fnc x) (catch Exception e (do (println e) fallback))))) (defn get-season-episode "Add season and episode filters" [text] (if-let [nums (re-find #"[sS](\d+)[eE](\d+)" text)] [(remove-first-0 (get nums 1)) (remove-first-0 (get nums 2))] ["" ""])) (defn get-from-file "Get parsed html from file" [path] (html/html-resource (java.io.StringReader. (slurp path)))) (set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"] [adzerk/bootlaces "0.1.13" :scope "test"]]) (require '[adzerk.bootlaces :refer :all]) ;; tasks: build-jar push-snapshot push-release (def +version+ "1.0.0-SNAPSHOT") (bootlaces! +version+) (task-options! pom {:project 'afrey/boot-asset-fingerprint :version +version+ :description "Boot task to fingerprint asset references in html files." :url "https://github.com/pointslope/boot-fingerprint" :scm {:url "https://github.com/pointslope/boot-fingerprint"} :license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}}) (ns solver.core (:gen-class)) (def vowels #{"a" "e" "i" "o" "u"}) (defn contains-at-least-three-vowels [word] (>= (count (filter vowels (clojure.string/split word #""))) 3)) (defn contains-repeated-letter [word] (re-find #"(\w)\1" word)) (defn contains-forbidden-string [word] (re-find #"ab|cd|pq|xy" word)) (defn nice-word [word] (and (contains-at-least-three-vowels word) (contains-repeated-letter word) (not (contains-forbidden-string word)))) (defn -main "I don't do a whole lot ... yet." [& args] (with-open [rdr (clojure.java.io/reader "input")] (println (count (filter nice-word (line-seq rdr)))))) (defproject totem-destroyer "0.0.1-SNAPSHOT" :description "FIXME: write description" :dependencies [[com.badlogicgames.gdx/gdx "1.9.3"] [com.badlogicgames.gdx/gdx-backend-lwjgl "1.9.3"] [com.badlogicgames.gdx/gdx-box2d "1.9.3"] [com.badlogicgames.gdx/gdx-box2d-platform "1.9.3" :classifier "natives-desktop"] [com.badlogicgames.gdx/gdx-bullet "1.9.3"] [com.badlogicgames.gdx/gdx-bullet-platform "1.9.3" :classifier "natives-desktop"] [com.badlogicgames.gdx/gdx-platform "1.9.3" :classifier "natives-desktop"] [org.clojure/clojure "1.7.0"] [play-clj "1.1.1"]] :source-paths ["src" "src-common"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] :aot [totem-destroyer.core.desktop-launcher] :main totem-destroyer.core.desktop-launcher) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2015-2016 Andrey Antukh ;; Copyright (c) 2015-2016 Juan de la Cruz (ns uxbox.util.dom (:require [goog.dom :as dom])) (defn get-element-by-class ([classname] (dom/getElementByClass classname)) ([classname node] (dom/getElementByClass classname node))) (defn stop-propagation [e] (.stopPropagation e)) (defn prevent-default [e] (.preventDefault e)) (defn event->inner-text [e] (.-innerText (.-target e))) (defn event->value [e] (.-value (.-target e))) (defn event->target [e] (.-target e)) (ns tesq.utils (:require [clojure.string :refer [replace capitalize]])) (defn prettify "Turn table name into something more human friendly." [s] (-> s capitalize (replace #"_" " "))) (defn singularise "Turn plural string into singular." [s] (replace s #"s$" "")) (ns leiningen.new.lein-quick-om (:require [leiningen.new.templates :refer [renderer name-to-path ->files]] [leiningen.core.main :as main])) (def render (renderer "lein-quick-om")) (defn lein-quick-om "FIXME: write documentation" [name] (let [data {:name name :sanitized (name-to-path name)}] (main/info "Generating fresh 'lein new' lein-quick-om project.") (->files data ["src/{{sanitized}}/core.cljs" (render "core.cljs" data)] ["src/{{sanitized}}/devbar.cljs" (render "devbar.cljs" data)] ["src/{{sanitized}}/state_viewer.cljs" (render "state_viewer.cljs" data)] ["src/{{sanitized}}/ui.cljs" (render "ui.cljs" data)] ["src/{{sanitized}}/example_components.cljs" (render "example_components.cljs" data)] ["project.clj" (render "project.clj" data)] ["Dockerfile" (render "Dockerfile" data)] ["Makefile" (render "Makefile" data)] [".dockerignore" (render ".dockerignore" data)] ["resources/public/index.html" (render "index.html" data)] ["resources/public/css/style.css" (render "style.css" data)] ))) (ns engulf.core (:gen-class) (:require [engulf.benchmark :as benchmark] [noir.server :as nr-server]) (:use aleph.http noir.core lamina.core)) (defn start-webserver [args] (nr-server/load-views "src/engulf/views") (let [mode (keyword (or (first args) :dev)) port (Integer. (get (System/getenv) "PORT" "3000")) noir-handler (nr-server/gen-handler {:mode mode})] (start-http-server (wrap-ring-handler noir-handler) {:port port :websocket true}))) (defn -main [& args] (start-webserver args) (println "Engulf Started!")) {:user {:dependencies [[clj-stacktrace "0.2.5"] [org.clojure/tools.trace "0.7.5"] [org.clojure/tools.namespace "0.2.3"] [redl "0.1.0"] [spyscope "0.1.3"] [slamhound "1.3.3"]] :plugins [[lein-difftest "1.3.7"] [lein-drip "0.1.1-SNAPSHOT"] [lein-exec "0.3.0"] [lein-clojars "0.9.1"] [lein-pprint "1.1.1"] [lein-ring "0.8.0"] [lein-cljsbuild "0.1.9"] [lein-deps-tree "0.1.2"] [lein-marginalia "0.7.1"]] :repl-options {:timeout 120000} :injections [(require '[redl core complete]) (require 'spyscope.core) (require 'clojure.tools.namespace) (let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly @new)))] :vimclojure-opts {:repl true}}} (ns test-pom (:use [leiningen.core :only [read-project defproject]] [leiningen.util.maven :only [make-model]] [leiningen.pom :only [pom]]) (:use [clojure.test] [clojure.java.io :only [file delete-file]])) (def test-project (read-project "test_projects/sample/project.clj")) (deftest test-pom (let [pom-file (file (:root test-project) "pom.xml")] (delete-file pom-file true) (pom test-project) (is (.exists pom-file)))) (deftest test-make-model-includes-build-settings (let [model (make-model test-project)] (is (= "src" (-> model .getBuild .getSourceDirectory))) (is (= "test" (-> model .getBuild .getTestSourceDirectory))))) (deftest test-snapshot-checking (is (thrown? Exception (pom (assoc test-project :version "1.0" :dependencies [['clojure "1.0.0-SNAPSHOT"]]))))) (set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"] [adzerk/bootlaces "0.1.13" :scope "test"]]) (require '[adzerk.bootlaces :refer :all]) ;; tasks: build-jar push-snapshot push-release (def +version+ "1.0.0") (bootlaces! +version+) (task-options! pom {:project 'afrey/boot-asset-fingerprint :version +version+ :description "Boot task to fingerprint asset references in html files." :url "https://github.com/AdamFrey/boot-asset-fingerprint" :scm {:url "https://github.com/AdamFrey/boot-asset-fingerprint"} :license {"MIT" "https://opensource.org/licenses/MIT"}}) (deftask dev [] (comp (watch) (build-jar))) (ns cruncher.config) (def api {:host "http://localhost:5000/" :init "api/init/" :base "api/" :login "api/login" :get-all-pokemon "api/pokemon" :toggle-favorite "api/pokemon/favorite" :crunch-selected-pokemon "api/pokemon/delete" :status-delete "api/status/delete" :get-player "api/player"}) ; https://projecteuler.net/problem=1 (ns euler.001 (require [clojure.set :refer :all] [clojure.test :refer [is]])) (defn multiple-of-n? [n, num] (zero? (mod num n))) (defn multiple-of-3-or-5? [n] (or (multiple-of-n? 3 n) (multiple-of-n? 5 n))) ; Produce the entire range of numbers and then filter it down (defn multiples-3-and-5-sol1 [min max] (reduce + (filter multiple-of-3-or-5? (range min max)))) (is (= 233168 (multiples-3-and-5-sol1 0 1000))) ; Use `distinct` instead (defn multiples-3-and-5-sol2 [min max] (reduce + (distinct (concat (range min max 3) (range min max 5))))) (is (= 233168 (multiples-3-and-5-sol2 0 1000))) ; Produce two ranges and convert to `set` to deduplicate the range ; Apparently slightly more performant (but who cares) (defn multiples-3-and-5-sol3 [min max] (reduce + (set (concat (range min max 3) (range min max 5))))) (is (= 233168 (multiples-3-and-5-sol3 0 1000))) (ns braid.ui.styles.body) (def body [:body {:margin 0 :padding 0 :font-family "Open Sans, Helvetica, Arial, sans-serif" :font-size "12px" :background "#eee"}]) (ns vip.data-processor.validation.v5.retention-contest (:require [korma.core :as korma] [vip.data-processor.db.postgres :as postgres] [vip.data-processor.validation.v5.util :as util])) (def validate-no-missing-candidate-ids (util/build-xml-tree-value-query-validator :errors :retention-contests :missing :missing-candidate-id "SELECT xtv.path FROM (SELECT DISTINCT subltree(path, 0, 4) || 'CandidateId' AS path FROM xml_tree_values WHERE results_id = ? AND subltree(path, 0, 4) ~ 'VipObject.0.RetentionContest.*{1}') xtv LEFT JOIN (SELECT path FROM xml_tree_values WHERE results_id = ?) xtv2 ON xtv.path = subltree(xtv2.path, 0, 5) WHERE xtv2.path IS NULL" util/two-import-ids)) {:user {:dependencies [[clj-stacktrace "0.2.7"] [im.chit/vinyasa "0.1.0"] [io.aviso/pretty "0.1.8"] [org.clojure/tools.namespace "0.2.4"] [slamhound "1.3.1"] [spyscope "0.1.4"] [criterium "0.4.2"]] :plugins [[codox "0.6.6"] [jonase/eastwood "0.0.2"] [lein-cljsbuild "1.0.0"] [lein-clojars "0.9.1"] [lein-cloverage "1.0.2"] [lein-difftest "2.0.0"] [lein-kibit "0.0.8"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"]] :injections [(require 'spyscope.core 'vinyasa.inject 'io.aviso.repl 'clojure.repl 'clojure.main '[criterium.core :refer [bench quick-bench]]) (vinyasa.inject/inject 'clojure.core '[[vinyasa.inject [inject inject]] [vinyasa.pull [pull pull]] [vinyasa.lein [lein lein]] [clojure.repl apropos dir doc find-doc source [root-cause cause]] [clojure.tools.namespace.repl [refresh refresh]] [clojure.pprint [pprint >pprint]] [io.aviso.binary [write-binary >bin]]])] :aliases {"slamhound" ["run" "-m" "slam.hound"]} :source-paths ["/Users/jcf/.lein/dev"] :search-page-size 30}} (ns user (:require [uswitch.bifrost.system :refer (make-system)] [clojure.tools.logging :refer (error)] [clojure.tools.namespace.repl :refer (refresh)] [com.stuartsierra.component :as component])) (def system nil) (defn init [] (alter-var-root #'system (constantly (make-system (read-string (slurp "./etc/config.edn")))))) (defn start [] (alter-var-root #'system (fn [s] (try (component/start s) (catch Exception e (error e "Error when starting system") nil))) )) (defn stop [] (alter-var-root #'system (fn [s] (when s (try (component/stop s) (catch Exception e (error e "Error when stopping system") nil)))))) (defn go [] (init) (start)) (defn reset [] (stop) (refresh :after 'user/go)) (ns caesium.crypto.generichash (:import (org.abstractj.kalium.crypto Hash))) (def ^:private sixteen-nuls (byte-array 16)) (defn blake2b "Computes the BLAKE2b digest of the given message, with optional salt, key and personalization parameters." ([message] (.blake2 (new Hash) message)) ([message & {salt :salt key :key personal :personal :or {salt sixteen-nuls personal sixteen-nuls key (byte-array 0)}}] (.blake2 (new Hash) message key salt personal))) (ns status-im.ui.components.text-input.view (:require [status-im.ui.components.react :as react] [status-im.ui.components.text-input.styles :as styles] [status-im.ui.components.colors :as colors] [status-im.utils.platform :as platform] [status-im.ui.components.tooltip.views :as tooltip])) (defn text-input-with-label [{:keys [label content error style height container text] :as props}] [react/view (when label [react/text {:style styles/label} label]) [react/view {:style (merge (styles/input-container height) container)} [react/text-input (merge {:style (merge styles/input style) :placeholder-text-color colors/gray :auto-focus true :auto-capitalize :none} (dissoc props :style :height) (when-not platform/desktop? {:value text}))] (when content content)] (when error [tooltip/tooltip error (styles/error label)])]) (ns braid.search.ui.search-page-styles (:require [garden.units :refer [rem em px]] [braid.core.client.ui.styles.mixins :as mixins] [braid.core.client.ui.styles.vars :as vars])) (def avatar-size (rem 4)) (def card-style [:>.card {:margin-bottom "50%" :max-width (rem 25)} [:>.header {:overflow "auto"} [:>.pill.off :>.pill.on {:color [["white" "!important"]]}] [:>.status {:display "inline-block" :margin-left (em 0.5)} (mixins/mini-text)] [:>.badges {:display "inline-block" :margin [[0 (em 0.5)]]} [:>.admin::before {:display "inline-block" :-webkit-font-smoothing "antialiased"} (mixins/fontawesome \uf0e3)]] [:>img.avatar {:margin-top (px 2) :border-radius (px 3) :width avatar-size :height avatar-size :background "white" :float "left"}]] [:>.local-time [:&::after (mixins/fontawesome \uf017) {:margin-left (em 0.25)}]]]) (def >search-page [:>.page.search [:>.threads card-style] [:>.content card-style]]) (do (clojure.core/use '[clojure.core]) (require '[clojure.string :as str]) (require '[clojure.pprint :as pp]) (require '[clojure.math.numeric-tower :as math]) ) (let [ res (->> "%s" str/split-lines (map (fn [x] (str " \"" (str/replace x "=" "\": \"") \"))) (str/join ",\n")) ] (str "{\n" res "\n}"))(ns route-ccrs.active-routes (:require [clojure.java.jdbc :as jdbc] [yesql.core :refer [defquery]])) (defquery active-routes "route_ccrs/sql/active_routes.sql") (defn route-id [r] (select-keys r [:contract :part_no :bom_type_db :routing_revision_no :routing_alternative_no])) (defn sorted-operations [] (sorted-set-by (fn [x y] (compare (:operation_no x) (:operation_no y))) )) (defn transduce-routes [step] (let [routes (volatile! {})] (fn ([] (step)) ([r] (step (reduce step r @routes))) ([r o] (let [i (route-id o) route (conj (get @routes i (sorted-operations)) o) c (:operation_count o)] (if (and c (= (count route) c)) (step r route) (do (vreset! routes (assoc @routes i route)) r))))))) (ns mikron.runtime.core-test2 "Property based testing namespace." (:require [clojure.test :as test] [clojure.test.check.clojure-test :as tc.test #?@(:cljs [:include-macros true])] [clojure.test.check.properties :as tc.prop #?@(:cljs [:include-macros true])] [clojure.test.check.generators :as tc.gen #?@(:cljs [:include-macros true])] [macrowbar.core :as macrowbar] [mikron.runtime.core :as mikron] [mikron.runtime.test-generators :as test-generators] [mikron.runtime.test-util :as test-util] ;; Load these for macrowbar [cljs.js] [cljs.env])) ;; Property based testing (def buffer (mikron/allocate-buffer 100000)) (macrowbar/emit :debug-self-hosted (tc.test/defspec core-test 100 (tc.prop/for-all [[schema value] (tc.gen/bind test-generators/schema-generator (fn [schema] (tc.gen/tuple (tc.gen/return (macrowbar/eval `(mikron/schema ~schema :processor-types #{:pack :unpack}))) (test-generators/value-generator schema))))] (test-util/equal? value (mikron/with-buffer buffer (->> value (mikron/pack schema) (mikron/unpack schema))))))) (ns incise.watcher (:require [watchtower.core :refer [watcher rate file-filter extensions on-change]])) (defn watch [change-fn] (watcher ["resources/posts/" "resources/pages/"] (rate 300) (on-change change-fn))) (def watching nil) (defn start-watching [& args] (alter-var-root #'watching (fn [& _] (apply watch args)))) (defn stop-watching [] (when watching (future-cancel watching))) (ns cawala.api.mutations (:require [taoensso.timbre :as timbre] [com.wsscode.pathom.core :as p] [com.wsscode.pathom.connect :as pc] [cawala.api.read :as r] [fulcro.server :refer [defmutation]])) ;; Place your server mutations here #_(defmutation delete-person "Server Mutation: Handles deleting a person on the server" [{:keys [person-id]}] (action [{:keys [state]}] (timbre/info "Server deleting person" person-id) (swap! people-db dissoc person-id))) (def delete-person r/delete-person) #_(pc/defmutation delete-person [{::keys [db]} {:keys [person-id]}] {::pc/params [:person-id] ::pc/sym 'cawala.api.mutations/delete-person} (do (timbre/info "Server deleting person" person-id) (swap! db dissoc person-id) nil)) (ns bogo-clojure.bg-websocket (:gen-class) (:require [bogo-clojure.core :as bogo] [clojure.string :as string]) (:use org.httpkit.server)) (defn process! [channel data] (let [[old-string key] (string/split-lines data) new-string (bogo/process-key old-string key)] (println old-string key new-string) (send! channel new-string) )) (defn handler [req] (with-channel req channel (on-close channel (fn [status] (println "channel closed"))) (if (websocket? channel) (println "WebSocket channel") (println "HTTP channel")) (on-receive channel (fn [data] (process! channel data))))) (defn -main [& args] (run-server handler {:port 8080})) {:user {:dependencies [[clj-stacktrace "0.2.5"] [org.clojure/tools.trace "0.7.5"] [redl "0.1.0"] [spyscope "0.1.3"] [slamhound "1.3.3"]] :plugins [[lein-difftest "1.3.7"] [lein-drip "0.1.1-SNAPSHOT"] [lein-clojars "0.9.1"] [lein-pprint "1.1.1"] [lein-ring "0.8.0"] [lein-cljsbuild "0.1.9"] [lein-deps-tree "0.1.2"] [lein-marginalia "0.7.1"]] :repl-options {:timeout 120000} :injections [(require '[redl core complete]) (require 'spyscope.core) (let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly @new)))] :vimclojure-opts {:repl true}}} (set-env! :source-paths #{"src"} :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [alda "1.0.0-rc34"]]) (task-options! pom {:project '{{app-name}} :version "0.1.0-SNAPSHOT" :description "FIXME: write description"} aot {:namespace #{'{{namespace}}}} jar {:main '{{namespace}}}) (require '{{namespace}}) (deftask run [] (comp (with-pre-wrap fileset ({{namespace}}/-main) fileset))) (deftask build [] (comp (aot) (pom) (uber) (jar) (target))) (ns yaml.writer (:import (org.yaml.snakeyaml Yaml DumperOptions DumperOptions$FlowStyle))) (def flow-styles {:auto DumperOptions$FlowStyle/AUTO :block DumperOptions$FlowStyle/BLOCK :flow DumperOptions$FlowStyle/FLOW}) (defn- make-dumper-options [& {:keys [flow-style]}] (doto (DumperOptions.) (.setDefaultFlowStyle (flow-styles flow-style)))) (defn make-yaml [& {:keys [dumper-options]}] (if dumper-options (Yaml. ^DumperOptions (apply make-dumper-options (mapcat (juxt key val) dumper-options))) (Yaml.))) (defprotocol YAMLWriter (encode [data])) (extend-protocol YAMLWriter clojure.lang.IPersistentMap (encode [data] (into {} (for [[k v] data] [(encode k) (encode v)]))) clojure.lang.IPersistentSet (encode [data] (into #{} (map encode data))) clojure.lang.IPersistentCollection (encode [data] (map encode data)) clojure.lang.Keyword (encode [data] (name data)) Object (encode [data] data) nil (encode [data] data)) (defn generate-string [data & opts] (.dump ^Yaml (apply make-yaml opts) ^Object (encode data))) (defproject onyx-app/lein-template "0.12.5.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.9.12.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject hu.ssh/github-changelog "0.1.0-SNAPSHOT" :description "GitHub changelog" :url "https://github.com/raszi/github-changelog" :main hu.ssh.github-changelog.cli :repl-options {:init-ns user} :license {:name "MIT" :url "http://choosealicense.com/licenses/mit/"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/core.match "0.3.0-alpha4"] [prismatic/schema "1.0.3"] [environ "1.0.1"] [org.clojure/tools.cli "0.3.3"] [clj-jgit "0.8.8"] [tentacles "0.4.0"] [grimradical/clj-semver "0.3.0-20130920.191002-3" :exclusions [org.clojure/clojure]] [org.clojure/test.check "0.9.0"]] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]] :source-paths ["dev"]} :uberjar {:aot :all}}) (defproject mdr2 "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0"] [hiccup "1.0.5"] [compojure "1.1.6"] [com.gfredericks/java.jdbc "0.2.3-p3"] [org.xerial/sqlite-jdbc "3.7.2"]] :plugins [[lein-ring "0.8.10"]] :ring {:handler mdr2.web/app} :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]]}}) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-beta5" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta5"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject mars-ogler "1.0.1-SNAPSHOT" :description "Holy cow, it's Mars!" :url "http://github.com/aperiodic/mars-ogler" :license {:name "GNU Affero GPL" :url "http://www.gnu.org/licenses/agpl"} :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.cli "0.2.2"] [cheshire "5.2.0"] [clj-http "0.6.3"] [clj-time "0.4.4"] [compojure "1.1.3"] [enlive "1.0.1"] [hiccup "1.0.0"] [ring/ring-core "1.1.6"] [ring/ring-jetty-adapter "1.1.6"]] :plugins [[lein-ring "0.7.1"]] :main mars-ogler.main :uberjar-name "mars-ogler.jar" :jvm-opts ["-Xmx850m" "-XX:+UseConcMarkSweepGC" "-XX:+CMSIncrementalMode" "-XX:+UseCompressedOops"] :ring {:handler mars-ogler.routes/ogler-handler :init mars-ogler.images/setup!}) (defproject cats "0.5.0-SNAPSHOT" :description "Category Theory abstractions for Clojure" :url "https://github.com/funcool/cats" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :cljsbuild {:test-commands {"test" ["node" "output/tests.js"]} :builds [{:id "test" :source-paths ["src" "test"] :notify-command ["node" "output/tests.js"] :compiler {:output-to "output/tests.js" :output-dir "output" :source-map true :static-fns true :cache-analysis false :main cats.testrunner :optimizations :none :target :nodejs :pretty-print true}}]} :jar-exclusions [#"\.swp|\.swo"] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"] [org.clojure/clojure "1.7.0-RC1"] [org.clojure/clojurescript "0.0-3269"] [funcool/cljs-testrunners "0.1.0-SNAPSHOT"]] :codeina {:sources ["src"] :output-dir "doc/codeina"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [lein-cljsbuild "1.0.4"]]}}) (defproject deraen/less4clj "0.3.4-SNAPSHOT" :description "Wrapper for Less4j" :url "https://github.com/deraen/less4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo :comments "same as Clojure"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [com.github.sommeri/less4j "1.15.4"] [com.github.sommeri/less4j-javascript "0.0.1" :exclusions [com.github.sommeri/less4j]] [org.webjars/webjars-locator "0.29"] [org.slf4j/slf4j-nop "1.7.13"] ;; For testing the webjars asset locator implementation [org.webjars/bootstrap "3.3.6" :scope "test"]] :profiles {:dev {:resource-paths ["test-resources"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0-RC4"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}} :aliases {"all" ["with-profile" "dev:dev,1.6:dev,1.8"]}) (defproject io.aviso/twixt "0.1.0" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.1.8"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.0.4"] [de.neuland/jade4j "0.3.12"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :profiles {:dev {:dependencies [[log4j "1.2.17"]]}}){:user { :aliases { "lint" ["do" ["cljfmt" "check"] "kibit"] "fix" ["do" ["cljfmt" "fix"] ["kibit" "--replace" "--interactive"]]} :plugins [ [lein-drip "0.1.1-SNAPSHOT"];; faster JVM [venantius/ultra "0.6.0" :exclusions [org.clojure/clojure org.clojure/core.rrb-vector]];; pretty print [lein-auto "0.1.3"];; watch tasks [lein-try "0.4.3"];; REPL experimenting ;; Project Scaffolding [chestnut/lein-template "0.15.2"] ;; Dependency Management [com.livingsocial/lein-dependency-check "0.2.2"] [lein-ancient "0.6.10"] [lein-nvd "0.3.1"];; National Vulnerability Database dependency-checker ;; Code Quality [lein-cljfmt "0.5.7"] [lein-kibit "0.1.5"] [lein-bikeshed "0.4.1"] ;; Testing [lein-cloverage "1.0.9"]]}} (ns nightmod.manager (:require [clojure.java.io :as io] [nightmod.utils :as u] [play-clj.core :refer :all]) (:import [com.badlogic.gdx.assets.loaders FileHandleResolver] [com.badlogic.gdx.files FileHandle])) ; make all assets load relative to the current project's directory (def manager (asset-manager* (reify FileHandleResolver (resolve [this file-name] (FileHandle. (io/file @u/project-dir file-name)))))) (set-asset-manager! manager) (defn clear-ns! [nspace] (doall (map #(ns-unmap nspace %) (keys (ns-interns nspace))))) (defn clean! [] (clear-ns! u/game-ns) (on-gl (asset-manager! manager :clear))) ;; Copyright (C) 2013 Anders Sundman ;; ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU Affero General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU Affero General Public License for more details. ;; ;; You should have received a copy of the GNU Affero General Public License ;; along with this program. If not, see . (ns spira.core.system (:require [spira.dm.garden :as garden] [spira.dm.plant-desc :as plant-desc] [spira.dm.in-memory-repo :as mem-repo])) ;; A representation of the applications total top level state. (defrecord SystemState [garden-repo plant-desc-repo]) (defn dev-system [] "Create a light weight development state" (->SystemState (mem-repo/memory-garden-repo) (mem-repo/memory-plant-description-repo))) (defproject compojure "1.3.3" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.5.5"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.3/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.2.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-beta2"]]}}) (defproject caesium "0.8.0-SNAPSHOT" :description "libsodium for clojure" :url "https://github.com/lvh/caesium" :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [com.github.jnr/jnr-ffi "2.0.9"] [commons-codec/commons-codec "1.10"] [byte-streams "0.2.2"] [org.clojure/math.combinatorics "0.1.3"]] :main ^:skip-aot caesium.core :target-path "target/%s" :profiles {:uberjar {:aot :all} :dev {:dependencies [[criterium "0.4.4"]]} :test {:plugins [[lein-cljfmt "0.3.0"] [lein-kibit "0.1.2"] [jonase/eastwood "0.2.3"] [lein-codox "0.9.4"] [lein-cloverage "1.0.7-SNAPSHOT"]] :test-selectors {:default (complement :benchmark) :benchmark :benchmark}}} :codox {:metadata {:doc/format :markdown} :output-path "doc"} :global-vars {*warn-on-reflection* true}) (defproject org.onyxplatform/onyx-metrics "0.8.1.1" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1"] [org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [[riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject onyx-app/lein-template "0.8.11.3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject ring/ring-jetty-adapter "1.7.0" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-core "1.7.0"] [ring/ring-servlet "1.7.0"] [org.eclipse.jetty/jetty-server "9.2.24.v20180105"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9" "test"]} :profiles {:dev {:dependencies [[clj-http "2.2.0"]] :jvm-opts ["-Dorg.eclipse.jetty.server.HttpChannelState.DEFAULT_TIMEOUT=500"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}}) (ns libx.core-test (:require [clojure.test :refer [run-tests]] [libx.lang-test] [libx.deflogical-test] [libx.macros-test] [libx.tuple-rule-test] [libx.util-test] [libx.defaction-test] [libx.listeners-test])) (defn run [] (for [ns ['libx.lang-test 'libx.deflogical-test 'libx.macros-test 'libx.tuple-rule-test 'libx.util-test 'libx.defaction-test [libx.listeners-test]]] (dosync (-> ns (in-ns) (run-tests))))) (run) (ns vip.data-processor.validation.v5.hours-open (:require [vip.data-processor.validation.v5.util :as util])) (defn valid-time-with-zone? [time] (re-matches #"(?:(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]|(?:24:00:00))(?:Z|[+-](?:(?:0[0-9]|1[0-3]):[0-5][0-9]|14:00))" time)) (defn validate-times [{:keys [import-id] :as ctx}] (let [hours-open-path "VipObject.0.HoursOpen.*{1}.Schedule.*{1}.Hours.*{1}" times (util/select-lquery import-id (str hours-open-path ".StartTime|EndTime.*{1}")) invalid-times (remove (comp valid-time-with-zone? :value) times)] (reduce (fn [ctx row] (update-in ctx [:errors :hours-open (-> row :path .getValue) :format] conj (:value row))) ctx invalid-times))) (ns wombats-web-client.components.countdown-timer (:require [cljs-time.core :as t] [cljs-time.format :as f] [reagent.core :as reagent])) (defn- seconds-until [time] (t/in-seconds (t/interval (t/now) time))) (defn- format-time [time] (let [total-seconds (seconds-until time) seconds (mod total-seconds 60) minutes (/ (- total-seconds seconds) 60) seconds-display (if (< seconds 10) (str "0" seconds) seconds)] (str minutes ":" seconds-display))) (defn countdown-timer [start-time] (let [cmpnt-state (reagent/atom {:interval-fn nil})] (reagent/create-class {:component-will-mount (fn [] ;; Force timer to redraw every second (swap! cmpnt-state assoc :interval-fn (.setInterval js/window #(reagent/force-update-all) 1000))) :component-will-unmount (fn [] (.clearInterval js/window (:interval-fn @cmpnt-state))) :reagent-render (fn [] [:span {:class-name "countdown-timer"} (format-time start-time)])}))) (ns berry.parsing.scan-literal-test (:require [berry.parsing.context-handler :as context] [berry.parsing.scan-literal :refer :all] berry.parsing.token [clojure.test :refer :all]) (:import [berry.parsing.token Token Location])) (deftest scan-literal-test (testing "With a true literal." (let [true-literal (Token. "literal" "true" (Location. 1 1) (Location. 1 4))] (is (= true-literal (scan-literal '("t" "r" "u" "e") context/begin))))) (testing "With a false literal." (let [false-literal (Token. "literal" "false" (Location. 1 1) (Location. 1 5))] (is (= false-literal (scan-literal '("f" "a" "l" "s" "e") context/begin))))) (testing "With a null literal." (let [null-literal (Token. "literal" "null" (Location. 1 1) (Location. 1 4))] (is (= null-literal (scan-literal '("n" "u" "l" "l") context/begin))))) ) (ns cavm.jdbc (:import [java.sql PreparedStatement]) (:require [clojure.java.jdbc :as jdbc])) (extend-protocol jdbc/ISQLParameter clojure.lang.PersistentVector (set-parameter [v ^PreparedStatement s ^long i] (.setObject s i (to-array v)))) (ns icecap.store.mem-test (:require [caesium.crypto.util :refer [array-eq]] [icecap.store.api :refer :all] [icecap.store.mem :refer :all] [icecap.store.test-props :refer [store-roundtrip-prop]] [clojure.test :refer :all] [clojure.core.async :as a :refer [xsl-transformer-cache [context] (get-in context [:system :caches xsl-transformer-cache-name])) (defn- xsl->transformer "Returns the xsl transformer for the given xsl file" [xsl] (let [xsl-resource (new StreamSource (io/file xsl)) factory (TransformerFactory/newInstance)] (.newTransformer factory xsl-resource))) (defn transform "Transforms the given xml by appling the given xsl" [context xml xsl] (let [transformer (cache/cache-lookup (context->xsl-transformer-cache context) xsl #(xsl->transformer xsl)) source (new StreamSource (new StringReader xml)) result (new StreamResult (new StringWriter))] (.transform transformer source result) (.toString (.getWriter result)))) (ns transit.corner-cases) (def forms [nil true false :a :foo 'f 'foo (java.util.Date.) 1/3 \t "f" "foo" "~foo" [] '() #{} [1 24 3] `(7 23 5) {:foo :bar} #{:a :b :c} #{true false} 0 42 8987676543234565432178765987645654323456554331234566789 {false nil} {true nil} {false nil true nil} {"a" false} {"a" true} [\"] {\[ 1} {1 \[} {\] 1} {1 \]} [\{ 1] [\[] {\{ 1} {1 \{} [\` \~ \^ \#] ]) (def transit-json ["{\"~#point\":[1,2]}" "{\"foo\":\"~xfoo\"}" "{\"~/t\":null}" "{\"~/f\":null}" ]) {:user { :plugins [[cider/cider-nrepl "0.11.0-SNAPSHOT"] [jonase/eastwood "0.2.3"] [lein-kibit "0.1.2"] [lein-typed "0.3.5"] ] :dependencies [[org.clojure/clojure "1.8.0"] [com.datomic/datomic-free "0.9.5350"] [me.raynes/fs "1.4.6"] ;; Consider using typed? [org.clojure/core.typed "0.3.22"] ] }} (ns silly-image-store.store (:require [clojure.java.io :as io])) (def exists? #(and % (.exists %))) (def file? #(.isFile %)) (def filename #(.getName %)) (defn load-image [& paths] (let [file (apply io/file paths)] (if (exists? file) file nil))) (defn list-images [& paths] (let [image-directory (apply load-image paths)] (if (exists? image-directory) (->> image-directory .listFiles (filter file?) (map filename)) nil))) (defn random-image [basedir] (let [random-image-name (rand-nth (list-images basedir))] (load-image basedir random-image-name))) (ns scavenger.core (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.defaults :refer [wrap-defaults site-defaults]] [ring.util.response :refer [header content-type response resource-response]]) (:use [datomic.api :only [db q] :as d])) (def uri "datomic:free://localhost:4334/items") (def conn (d/connect uri)) (defn get-all-items [] (map first (q '[:find (pull ?c [*]) :where [?c item/name]] (db conn)))) (defroutes app-routes (GET "/items" [] (response (str (into [] (get-all-items))))) (POST "/items" {body :body} (let [tempid (d/tempid :items) data (merge (read-string (slurp body)) {:db/id tempid}) tx @(d/transact conn [data]) id (d/resolve-tempid (db conn) (:tempids tx) tempid)] (response (str (d/touch (d/entity (db conn) id)))))) (GET "/" [] (-> (resource-response "index.html" {:root "public"}) (content-type "text/html"))) (route/not-found "Page not found")) (def app (wrap-defaults app-routes (assoc site-defaults :security nil))) (defproject sqls "0.1.0-SNAPSHOT" :description "SQLS" :url "https://github.com/mpietrzak/sqls" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.6.0"] [org.clojure/data.json "0.2.4"] [org.clojure/java.jdbc "0.3.3"] [org.clojure/tools.logging "0.2.6"] [org.xerial/sqlite-jdbc "3.7.2"] [seesaw "1.4.4"] ] :main sqls.core :java-source-paths ["src"] :target-path "target/%s" :plugins [[codox "0.6.7"] [lein-ancient "0.5.5"]] :codox {:output-dir "doc/codox"} :profiles {:uberjar {:aot :all}} :jvm-opts ["-Xms4M" "-Xmx1G" "-XX:-PrintGC"]) :profiles {:uberjar {:aot :all} :dev {:global-vars {*warn-on-reflection* true}}} (defproject com.hypirion/bencode "0.1.0-SNAPSHOT" :description "Java implementation Bencode." :url "https://github.com/hyPiRion/java-bencode" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [] :source-paths [] :java-source-paths ["src"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] :scm {:dir ".."} :aliases {"javadoc" ["shell" "javadoc" "-d" "javadoc/${:version}" "-sourcepath" "src" "com.hypirion.bencode" "-link" "http://docs.oracle.com/javase/8/docs/api/"]} :plugins [[lein-shell "0.5.0"]] :profiles {:uberjar {:aot :all} :dev {:dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/test.check "0.9.0"]]}}) (defproject onyx-app/lein-template "0.8.11.9" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject inet.data "0.5.0-SNAPSHOT" :description "Represent and manipulate various Internet entities as data." :url "http://github.com/llasram/inet.data" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [hier-set "1.1.2"]] :plugins [[lein-ragel "0.1.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java" "target/ragel"] :ragel-source-paths ["src/ragel"] :javac-options ["-g"] :prep-tasks [ragel javac] :warn-on-reflection true :profiles {:dev {:dependencies [[byteable "0.2.0"] [criterium "0.2.1"]]}}) (defproject onyx-app/lein-template "0.10.0.0-beta4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject lein-xjc "0.1.0-SNAPSHOT" :description "Call xjc from leiningen." :url "http://lein-xjc.ferdinandhofherr.de" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in-leiningen true) (defproject exegesis "0.2.0-SNAPSHOT" :description "Simplify reflection of annotations on Java types." :url "http://github.com/tobyclemson/exegesis" :license {:name "The MIT License" :url "https://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.8.0"]] :source-paths ["src/clojure"] :test-paths ["test/clojure"] :java-source-paths ["src/java" "test/java"]) (ns kanban.components.boards-menu (:require [goog.object :as gobj] [om.next :as om :refer-macros [defui]] [om.dom :as dom])) (defui BoardMenuItem static om/Ident (ident [this props] [:board/by-id (:id props)]) static om/IQuery (query [this] [:id :name]) Object (render [this] (dom/li nil (let [{:keys [name activate-fn]} (om/props this)] (dom/a #js {:onClick #(activate-fn (om/get-ident this))} name))))) (def board-menu-item (om/factory BoardMenuItem {:keyfn :id})) (defui BoardsMenu Object (render [this] (dom/div #js {:className "header-menu"} (dom/a nil "Boards") (dom/ul nil (let [{:keys [boards activate-fn]} (om/props this)] (for [board boards] (board-menu-item (assoc board :activate-fn activate-fn)))))))) (def boards-menu (om/factory BoardsMenu)) (ns scrape-summitpost-data.extract-result-links-test (:require [clojure.string :as string] [clojure.test :refer [deftest is]] [scrape-summitpost-data.extract-result-links :as test-ns])) (defn- make-test-page [url] (let [template "
"] (string/replace template "{}" url))) (deftest extract-result-links-test (let [page (make-test-page "/test-item-name/12345")] (is (= ["/test-item-name/12345"] (test-ns/extract-result-links page)) "extracts link to item from search results table"))) (ns onyx.peer.log-version) (def version "0.10.0-SNAPSHOT") (defn check-compatible-log-versions! [cluster-version] (when-not (or (re-find #"-SNAPSHOT" version) (= version cluster-version)) (throw (ex-info "Incompatible versions of the Onyx cluster coordination log. A new, distinct, :onyx/tenancy-id should be supplied when upgrading or downgrading Onyx." {:cluster-version cluster-version :peer-version version})))) (ns klangmeister.processing (:require [klangmeister.eval :as eval] [klangmeister.music :as music] [klangmeister.instruments :as instrument] [klangmeister.actions :as action] [klangmeister.framework :as framework] [cljs.js :as cljs])) (extend-protocol framework/Action action/Refresh (process [{expr-str :text} _ {original-music :music :as state}] (let [{:keys [value error]} (eval/uate expr-str) music (or value original-music)] (-> state (assoc :error error) (assoc :text expr-str) (assoc :music music)))) action/Stop (process [_ handle! state] (assoc state :looping? false)) action/Play (process [this handle! state] (framework/process (action/->Loop) handle! (assoc state :looping? true))) action/Loop (process [this handle! {notes :music :as state}] (when (:looping? state) (music/play-on! instrument/beep! notes) (let [duration (->> notes (map :duration) (reduce +) (* 1000))] (js/setTimeout #(handle! this) duration))) state)) (ns pro.juxt.edge.doc-site (:require [integrant.core :as ig] [clojure.java.io :as io] [edge.asciidoctor :refer [load-doc]] [yada.yada :as yada])) (defn routes [engine] [["" (merge (yada/redirect ::doc-resource {:route-params {:name "index"}}) {:id ::doc-index})] [[:name ".html"] (yada/resource {:id ::doc-resource :methods {:get {:produces [{:media-type "text/html;q=0.8" :charset "utf-8"} {:media-type "application/json"}] :response (fn [ctx] (let [path (str "doc/sources/" (-> ctx :parameters :path :name) ".adoc")] (try (.convert (load-doc ctx engine (-> ctx :parameters :path :name) (slurp (io/resource path)))) (catch Exception e (throw (ex-info (format "Failed to convert %s" path) {:path path} e))))))}}})]]) (defmethod ig/init-key ::routes [_ {:keys [edge.asciidoctor/engine]}] (routes engine)) (ns cmr.common.test.cache (:require [clojure.test :refer :all] [cmr.common.cache :as c])) (def counter (atom 0)) (defn increment-counter "Increments the counter atom and returns it" [] (swap! counter inc)) (deftest cache-test (testing "cache hit, miss and reset" (let [cache-atom (c/create-cache)] (is (= 1 (c/cache-lookup cache-atom "key" increment-counter))) ;; look up again will not call the increment-counter function (is (= 1 (c/cache-lookup cache-atom "key" increment-counter))) (c/reset-cache cache-atom) (is (= 2 (c/cache-lookup cache-atom "key" increment-counter))) (is (= 2 (c/cache-lookup cache-atom "key" increment-counter)))))) ;; https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md {:user {:plugins [[cider/cider-nrepl "0.27.2"] [lein-ancient "1.0.0-RC3"] [lein-check-namespace-decls "1.0.4"] [lein-cljfmt "0.8.0"] [lein-nsorg "0.3.0"] [nrepl "0.9.0-beta3"] [refactor-nrepl "3.0.0-alpha13"]]} :dependencies [#_[alembic "0.3.2"] [clj-kondo "RELEASE"] [antq "RELEASE"] [vvvvalvalval/scope-capture "0.3.2"]] :injections [(require 'sc.api)] :aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] "outdated" ["run" "-m" "antq.core"]}} (ns ^{:doc "Dispatching Input Events of a SimRunner Application." :author "Frank Mosebach"} fm.simrunner.input (:require [fm.simrunner.config :as cfg])) (defmulti on-input {:private true} (fn [id & _] id)) (defmethod on-input :default [id app & args] (println (format "on-input{id: %s args: %s}" id args))) (defn- handle-input? [{app-state :state}] (let [{ui :ui} @app-state] (and (not (:locked? ui)) (not (:rendering? ui))))) (defn dispatch [id app args] (when (handle-input? app) (apply on-input id app args))) {:user {:dependencies [[clj-stacktrace "0.2.5"] [spyscope "0.1.0"] [limit-break "0.1.0-SNAPSHOT"]] :plugins [[lein-difftest "1.3.7"] [lein-drip "0.1.1-SNAPSHOT"] [lein-clojars "0.9.1"] [lein-pprint "1.1.1"] [lein-ring "0.8.0"] [slamhound "1.3.1"] [lein-cljsbuild "0.1.9"] [lein-deps-tree "0.1.2"] [lein-marginalia "0.7.1"]] :repl-options {:timeout 120000} :injections [(let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly @new)))] :vimclojure-opts {:repl true}}} #!/usr/bin/env boot #tailrecursion.boot.core/version "2.3.1" (set-env! :dependencies [['tailrecursion/boot.task "2.1.2"] ['tailrecursion/hoplon "5.7.0"] ['markdown-clj "0.9.41"] ['org.clojure/clojurescript "0.0-2156"]] :src-paths #{"src"} :out-path "resources/public") (add-sync! (get-env :out-path) #{"resources/assets"}) (require ['tailrecursion.boot.task :refer :all] ['tailrecursion.hoplon.boot :refer :all]) (deftask dev "Build hoplon.io for local development." [] (comp (watch) (hoplon {:pretty-print true :prerender false :optimizations :whitespace}))) (deftask prod "Build hoplon.io for production deployment." [] (hoplon {:optimizations :advanced})) (ns pot.core.act (:require-macros [cljs.core.async.macros :refer [go alt!]]) (:require [cljs.reader :refer [read-string]] [pot.core.hand :refer [move-handler undo-handler state-watcher history-watcher]])) (def ^:private msg-handler-map {:move move-handler :undo undo-handler}) (defn- process-msg [{action-key :msg :as msg} state history] (let [{action-handler action-key} msg-handler-map] (action-handler msg state history))) (defn listen-channels [state history {:keys [actions]}] (go (while true (alt! actions ([msg] (process-msg msg state history)))))) (defn watch-changes [state history storage] (add-watch state :state-watcher (state-watcher state history)) (add-watch history :history-watcher (history-watcher storage :history))) (defn restore-state [state history storage] (when-let [stored-history (.get storage :history)] (when-let [restored-history (read-string stored-history)] (when-let [restored-state (get-in restored-history [:snapshots (:cursor restored-history)])] (reset! state restored-state)) (reset! history restored-history)))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.repo.projects "A main interface for access to remote resources." (:refer-clojure :exclude [do]) (:require [httpurr.client.xhr :as http] [httpurr.status :as http.status] [promesa.core :as p :include-macros true] [beicon.core :as rx] [uxbox.repo.core :as urc] [uxbox.state :as ust])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Login ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defmethod urc/-do :fetch/projects [type data] (urc/req! {:url (str urc/+uri+ "/projects") :method :get})) (defmethod urc/-do :fetch/pages [type data] (urc/req! {:url (str urc/+uri+ "/pages") :method :get})) (ns user "A dev namespace that supports Proto-REPL. It seems that Proto-REPL doesn't support the flexible approach that lein uses: any configurable ns can be the starting ns for a REPL. As such, this minimal ns was created for Proto-REPL users, so they too can have an env that supports startup and shutdown." (:require [cheshire.core :as json] [clojure.java.io :as io] [clojure.pprint :refer [pprint]] [clojure.tools.namespace.repl :as repl] [clojusc.system-manager.core :refer :all] [cmr.opendap.dev :as dev] [org.httpkit.client :as httpc])) (defproject clstreams "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.apache.kafka/kafka-clients "0.10.1.0"] [org.apache.kafka/kafka-streams "0.10.1.0"]] :main ^:skip-aot clstreams.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns github-changelog.util (:require [clojure.string :refer [join ends-with?]])) (defn str-map [f & sqs] (join (apply map f sqs))) (defn extract-params [query-string] (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" query-string)] [(keyword k) v]))) (defn strip-trailing ([s] (strip-trailing s "/")) ([s end] (if (ends-with? s end) (recur (join (butlast s)) end) s))) (ns rabbitmq.tutorials.emit-log-direct (:require [langohr.core :as lc] [langohr.channel :as lch] [langohr.exchange :as le] [langohr.basic :as lb] [clojure.string :as s])) (def ^{:const true} x "direct_logs") (defn -main [severity & args] (with-open [conn (lc/connect)] (let [ch (lch/open conn) payload (if (empty? args) "Hello, world!" (s/join " " args))] (le/direct ch x :durable false :auto-delete false) (lb/publish ch x severity payload) (println (format " [x] Sent %s" payload))))) (ns advent-2017.day-06 (:require #?(:cljs [planck.core :refer [slurp read-string]]) [#?(:clj clojure.java.io :cljs planck.io) :as io] [clojure.string :as str])) (def input (-> "advent_2017/day_06/input" io/resource slurp)) (def data (as-> input x (str/trim x) (str/split x #"\t") (mapv read-string x))) (defn redistribute [banks] (let [max-ndx (.indexOf banks (apply max banks)) target-ndxs (map #(mod (+ max-ndx 1 %) (count banks)) (range (banks max-ndx)))] (merge-with + (assoc banks max-ndx 0) (frequencies target-ndxs)))) (defn solve [banks] (reduce (fn [[last-seen banks] steps] (if (last-seen banks) (reduced [steps (last-seen banks)]) [(assoc last-seen banks steps) (redistribute banks)])) [{} banks] (range))) (defn part-1 [] (first (solve data))) (defn part-2 [] (apply - (solve data))) (ns test-fb.handler (:require [ring.middleware.defaults :refer (wrap-defaults site-defaults secure-site-defaults)] [ring.util.response :refer (not-found response)] [taoensso.timbre :as log] [clojure.string :refer (trim blank?)] [clojure.java.io :as io] )) (defn handler [request] (response "hello world")) (def app (-> handler (wrap-defaults site-defaults))) ; TODO authentication #_(def site (if-let [location (get-public-files-location)] (do (log/info "Serves files from" location) (-> handler (wrap-defaults (assoc site-defaults :static {:files (io/as-file (io/as-url location))})))) (do (log/error public-files-location-str "not specified") (System/exit 1)) )) (ns discuss.config) (def project "discuss") (def user "Q2hyaXN0aWFu") (def api {:host "http://localhost:4284/" :init "api/elektroautos" :base "api/" :login "api/login" :add {:add-start-statement "api/add/start_statement" :add-start-premise "api/add/start_premise" :add-justify-premise "api/add/justify_premise"} :get {:references "api/get/references" :reference-usages "api/get/reference/usages" :statements "api/get/statements" :statement-url "api/get/statement/url"}})(ns exploud.info "## For grabbing information about the things we're dealing with" (:require [exploud [asgard :as asgard] [onix :as onix] [tyranitar :as tyr]])) (defn applications "The list of applications Asgard knows about." [] {:names (map :name (asgard/applications))}) (defn application "The information about a particular application." [region application-name] (if-let [full-application (asgard/application region application-name)] (merge {:name application-name} (select-keys (:app full-application) [:description :email :owner])))) (defn upsert-application "Upserts an application into Onix, Tyranitar and Asgard. This function can be run many times, it won't fail if the application is present in any of the stores." [region application-name details] (let [onix-application (onix/upsert-application application-name) tyranitar-application (tyr/upsert-application application-name)] (asgard/upsert-application application-name details) (merge (application region application-name) tyranitar-application))) (ns oc.storage.resources.reaction) (defn- reaction-collapse "Reducer function that collapses reactions into count and sequence of author based on common reaction unicode." [reactions reaction] (let [unicode (:reaction reaction) author (-> reaction :author :name) author-id (-> reaction :author :user-id)] (if-let [existing-reaction (reactions unicode)] ;; have this unicode already, so add this reaction to it (assoc reactions unicode (-> existing-reaction (update :count inc) (update :authors #(conj % author)) (update :author-ids #(conj % author-id)))) ;; haven't seen this reaction unicode before, so init a new one (assoc reactions unicode {:reaction unicode :count 1 :authors [author] :author-ids [author-id]})))) (defn aggregate-reactions " Given a sequence of individual reaction interactions, collapse it down to a set of distinct reactions that include the count of how many times reacted and the list of author names and IDs that reacted. " [entry-reactions] (or (vals (reduce reaction-collapse {} (map #(assoc % :count 1) entry-reactions))) []))(ns com.frereth.server.logging (require [com.postspectacular.rotor :as rotor] [com.stuartsierra.component :as component] [taoensso.timbre :as log :refer (trace debug info warn error fatal spy with-log-level)])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Schema (defrecord Logger [] component/Lifecycle (start [this] (log/set-config! [:appenders :rotor] {:doc "Writes to (:path (:rotor :shared-appender-config)) file and creates optional backups" :min-level :trace :enabled? true :async? false :max-message-per-msecs nil :fn rotor/append}) (log/set-config! [:shared-appender-config :rotor] {:path "logs/app.log" :max-size (* 512 1024) :backlog 5}) (log/warn "FIXME: Log to a database instead") this) (stop [this] this)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Public (defn ctor [_] (->Logger)) ;; Copyright © 2014-2017, JUXT LTD. (def VERSION "1.3.0-alpha4") (defproject yada VERSION :description "A complete batteries-included bundle of yada" :license {:name "The MIT License" :url "https://opensource.org/licenses/MIT"} :pedantic? :abort :dependencies [[yada/aleph ~VERSION] [yada/async ~VERSION] [yada/bidi ~VERSION] [yada/core ~VERSION] [yada/json ~VERSION] [yada/json-html ~VERSION] [yada/jwt ~VERSION] [yada/multipart ~VERSION] [yada/oauth2 ~VERSION] [yada/swagger ~VERSION] [yada/transit ~VERSION] [yada/webjars ~VERSION]] :profiles {:test {:dependencies [[org.clojure/clojure "1.8.0"] [org.webjars/bootstrap "3.3.6"]]}}) (ns silly-image-store.handler (:require [silly-image-store.store :as store] [environ.core :refer [env]] [compojure.core :refer :all] [ring.middleware.json :refer :all] [compojure.handler :as handler] [compojure.route :as route])) (def images-dir (env :base-store-dir)) (defn image-not-found [image] (route/not-found (str "No image '" image "' found"))) ; TODO refactor links stuff (defn list-images [{scheme :scheme, {host "host"} :headers}] (let [image-names (store/list-images images-dir) base-url (str (name scheme) "://" host "/images/") to-json (fn [n] {:name n :link (str base-url n)})] (map to-json image-names))) (defn serve-image [image] (let [image-file (store/load-image images-dir image)] (or image-file (image-not-found image)))) (defroutes app-routes (GET "/images" request list-images) (GET "/images/:image" [image] (serve-image image)) ; TODO handler as list-image (route/resources "/") (route/not-found "Not Found")) (def app (-> (handler/site app-routes) (wrap-json-response))) (ns useful.io (:use [clojure.java.io :only [reader]]) (:import (java.io Reader PushbackReader))) (defprotocol PushbackFactory (^{:added "1.4"} pushback-reader [x] "Creates a PushbackReader from an object.")) (extend-protocol PushbackFactory PushbackReader (pushback-reader [this] this) Reader (pushback-reader [this] (PushbackReader. this)) Object (pushback-reader [this] (pushback-reader (reader this)))) (let [sentinel (Object.) valid? #(not (identical? % sentinel))] (defn read-seq "Read a lazy sequence of Clojure forms from an input reader." [in] (let [in (pushback-reader in)] (take-while valid? (repeatedly #(read in false sentinel)))))) (ns app (:require [ajax.core :refer [GET]] [domina :refer [by-id set-text!]] [domina.css :refer [sel]] [domina.events :refer [listen!]] [lively.core :as lively])) (lively/start "/js/app.js" {:on-reload #(.log js/console "Reloaded!")}) (defn set-result! [result] (set-text! (by-id "result") result)) (defn ping [] (GET "http://localhost:8080/ping" {:handler #(set-result! %)})) (listen! (sel "button") :click #(ping)) {:user {:plugins [;;Try new api quickly using the repl ;;[lein-try "0.4.3"] ;;=> https://github.com/kumarshantanu/lein-localrepo ;;[lein-localrepo "0.5.4"] ;;Convert pom.xml to project.clj ;;[lein-nevam "0.1.2"] ;;A Leiningen plugin for a superior development environment ;;[Introduction Blog Post](https://blog.venanti.us/ultra/) ;;=> https://github.com/venantius/ultra ;;[venantius/ultra "0.5.2"] ;;=> Pretty-print a representation of the project map [lein-pprint "1.2.0"] ;;=> https://github.com/pallet/alembic [com.palletops/lein-shorthand "0.4.0"]] :shorthand {. [alembic.still/distill alembic.still/lein]} :dependencies [[alembic "0.3.2"] [pjstadig/humane-test-output "0.8.3"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}} (ns comic-reader.scrolling (:require [re-frame.core :as rf])) (defn throttle [type key target] (let [target (or target js/window) running (atom false) toggle! #(swap! running not) throttler (fn [] (when (not @running) (toggle!) (js/requestAnimationFrame (fn [] (rf/dispatch [key]) (toggle!)))))] (.addEventListener target type throttler))) (defn setup-scrolling-events! [] (throttle "scroll" :scroll)) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150821_215046-g67feccf"] [clj-kafka "0.2.8-0.8.1.1" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [cheshire "5.4.0"] [zookeeper-clj "0.9.1" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0" :exclusions [commons-codec]]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-alpha5" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-alpha5"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.13.4.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns incise.parsers.html (:require [incise.parsers.helpers :as help] [incise.parsers.core :refer [map->Parse]] [clojure.edn :as edn] [clojure.string :as s] [clojure.java.io :refer [reader]]) (:import [java.io File])) (defn File->Parse [to-html ^File file] (let [file-str (slurp file) parse-meta (edn/read-string file-str) content (to-html (second (s/split file-str #"\}" 2)))] (map->Parse (assoc parse-meta :extension "/index.html" :content content)))) (defn write-Parse [^incise.parsers.core.Parse parse-data] (spit (str "resources/public/" (help/Parse->path parse-data)))) (defn html-parser "Take a function that parses a string into HTML and returns an HTML parser. An HTML parser is a function which takes a file, reads it and writes it out as html to the proper place under public. If it is a page it should appear at the root, if it is a post it will be placed under a directory strucutre based on its date." [to-html] (comp write-Parse (partial File->Parse to-html))) (ns uxbox.core (:require-macros [uxbox.util.syntax :refer [define-once]]) (:require [beicon.core :as rx] [cats.labs.lens :as l] [uxbox.state :as st] [uxbox.router :as rt] [uxbox.rstore :as rs] [uxbox.ui :as ui] [uxbox.data.load :as dl])) (enable-console-print!) (defn- main [] (let [lens (l/select-keys [:pages-by-id :shapes-by-id :colors-by-id :projects-by-id]) stream (->> (l/focus-atom lens st/state) (rx/from-atom) (rx/dedupe) (rx/debounce 1000) (rx/tap #(println "[save]")))] (rx/on-value stream #(dl/persist-state %)))) (define-once :setup (println "bootstrap") (st/init) (rt/init) (ui/init) (rs/emit! (dl/load-data)) ;; During development, you can comment the ;; following call for disable temprary the ;; local persistence. (main)) (ns graphql-clj.validator.transformations.inline-types "Inline field and parent field types for execution phase" (:require [graphql-clj.visitor :as v] [graphql-clj.spec :as spec] [clojure.spec :as s] [graphql-clj.box :as box])) (defn- of-kind [{:keys [kind required inner-type]} s] (if (:type-name inner-type) (let [base (spec/get-type-node (spec/named-spec s [(:type-name inner-type)]) s)] (select-keys base [:kind :required])) {:kind kind :required required :of-kind (of-kind inner-type s)})) (defn- parent-type [{:keys [spec]}] (if-let [base-spec (s/get-spec spec)] (if (keyword? base-spec) base-spec spec) spec)) (def whitelisted-keys #{:v/parentk :node-type :selection-set :type-name :field-name :name :args-fn :kind :of-kind :required :parent-type-name}) (declare inline-types) (v/defnodevisitor inline-types :post :field [{:keys [field-name parent-type-name spec v/path v/parent] :as n} {:keys [resolver] :as s}] {:node (cond-> (select-keys n whitelisted-keys) parent-type-name (assoc :parent-type-name (box/box->val parent-type-name)) resolver (assoc :resolver-fn (resolver parent-type-name field-name)))}) (def rules [inline-types]) (defproject metrics-clojure-ring "2.1.0-SNAPSHOT" :description "Various things gluing together metrics-clojure and ring." :dependencies [[cheshire "5.3.1"] [metrics-clojure "2.0.0"]] :profiles {:dev {:dependencies [[ring "1.2.2"]]}}) (ns decktouch.card-data) (defn get-card-list-from-storage [] "Get the list of cards from localStorage, or [] if it is empty" (let [key "card-list" list (.getItem js/localStorage key)] (do (.log js/console key list) (if (undefined? list) [] (.parse (js/JSON)))))) (def cards [])(ns vip.data-processor.validation.v5.hours-open (:require [korma.core :as korma] [vip.data-processor.db.postgres :as postgres] [vip.data-processor.validation.v5.util :as util])) (defn valid-time-with-zone? [time] (re-matches #"(?:(?:[01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]|(?:24:00:00))(?:Z|[+-](?:(?:0[0-9]|1[0-3]):[0-5][0-9]|14:00))" time)) (defn validate-times [{:keys [import-id] :as ctx}] (let [hours-open-path "VipObject.0.HoursOpen.*{1}.Schedule.*{1}.Hours.*{1}" start-times (util/select-path import-id (str hours-open-path ".StartTime.*{1}")) end-times (util/select-path import-id (str hours-open-path ".EndTime.*{1}")) invalid-times #(remove (comp valid-time-with-zone? :value) %) invalid-start-times (invalid-times start-times) invalid-end-times (invalid-times end-times)] (reduce (fn [ctx row] (update-in ctx [:errors :hours-open (-> row :path .getValue) :format] conj (:value row))) ctx (concat invalid-start-times invalid-end-times)))) (ns yadnd5ecs.core (:require [om.core :as om :include-macros true] [om-tools.dom :as dom :include-macros true] [om-tools.core :refer-macros [defcomponent]])) (enable-console-print!) (def app-state (atom {:text "Hello Chestnut!"})) (defcomponent app-view [app owner] (render [_] (dom/h1 (:text app)))) (defn main [] (om/root app-view app-state {:target (. js/document (getElementById "app"))})) (ns faceboard.whitelabel (:require-macros [faceboard.macros.model :refer [transform-app-state]] [faceboard.macros.logging :refer [log log-err log-warn log-info]]) (:require [faceboard.env :as env] [faceboard.model :as model] [faceboard.helpers.utils :as utils])) (def domain-mappings [[#"fb\.local.*" "test-localhost-whitelabel"] ; just a test local host [#".*hackerparadise\.org" "hp"]]) ; http://faceboard.hackerparadise.org (defn domain->boad-id [domain] (if-let [match (utils/find-first #(re-matches (first %) domain) domain-mappings)] (second match))) (defn whitelabel-board [] (domain->boad-id env/domain)) (defn init-hp! [] (transform-app-state (model/set [:ui :filters :active :groups] #{"present"}))) (defn init-test-localhost! [] (log "test localhost whitelabel init")) (defn init! [] (condp = (domain->boad-id env/domain) "test-localhost-whitelabel" (init-test-localhost!) "hp" (init-hp!) nil)) { :name "wgseq-phase2", :path "", :graph {:dir {:type "func" :name "get-comparison-files" :args ["#1", "#2" "#3"]} ; eid, comparison-file, :NA here :take {:type "func" :name "strm-take" :args [10]} :bseq {:type "func" :name "breseq-runs"} :aggr {:type "func" :name "aggregate"} :mail {:type "func" :name "mailp2" :args ["#4" ; recipient "Aerobio job status: wgseq phase-2" "Finished"]} ; subject, body intro :edges {:dir [:take] :take [:bseq] :bseq [:aggr] :aggr [:mail]}} ;; instructional data used in /help :description "" } (ns circle.util.retry (:use [arohner.utils :only (inspect)]) (:use [circle.util.except :only (throw-if-not)]) (:use [robert.bruce :only (try-try-again)])) (defn parse-args [args] (if (map? (first args)) {:options (first args) :f (second args) :args (drop 2 args)} {:f (first args) :args (rest args)})) (defn wait-for "Like robert bruce, but waits for arbitrary results rather than just exceptions. Takes all arguments exactly the same as robert bruce. Extra arguments to wait-for may be passed in the robert bruce options: - success-fn: a fn of one argument, the return value of f. Stop retrying if success-fn returns truthy. If not specified, wait-for returns when f returns truthy" {:arglists '([fn] [fn & args] [options fn] [options fn & args])} [& args] (let [{:keys [options f args] :as parsed-args} (parse-args args) success (-> options :success-fn)] (throw-if-not (-> parsed-args :f fn?) "couldn't find fn") (let [f (fn [] (let [result (apply f args)] (if success (throw-if-not (success result) "(success) did not return truthy in time") (throw-if-not result "f did not return truthy in time"))))] (try-try-again options f)))) (ns cruncher.rename (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom :include-macros true] [goog.dom :as gdom] [cruncher.utils.views :as vlib] [cruncher.utils.lib :as lib])) (defui RenamingControls Object (render [this] (dom/div nil (dom/p #js {:className "lead"} "Rename Pokemon") "hm?"))) (def controls (om/factory RenamingControls))(ns {{app-name}}.lifecycles.sample-lifecycle (:require [clojure.core.async :refer [chan sliding-buffer >!!]] [onyx.plugin.core-async :refer [take-segments!]] [onyx.static.planning :refer [find-task]] [{{app-name}}.utils :as u])) ;;;; Lifecycle hook to debug segments by logging them to the console. (defn log-batch [event lifecycle] (doseq [m (map :message (mapcat :leaves (:tree (:onyx.core/results event))))] (prn "Logging segment: " m)) {}) (def log-calls {:lifecycle/after-batch log-batch}) (defn build-lifecycles [] [{:lifecycle/task :read-lines :lifecycle/calls :{{app-name}}.plugins.http-reader/reader-calls :lifecycle/replaceable? true :lifecycle/doc "Lifecycle for reading from a core.async chan"} {:lifecycle/task :write-lines :core.async/id (java.util.UUID/randomUUID) :lifecycle/replaceable? true :lifecycle/calls :onyx.plugin.core-async/writer-calls :lifecycle/doc "Lifecycle for injecting a core.async writer chan"} {:lifecycle/task :write-lines :lifecycle/calls ::log-calls :lifecycle/doc "Lifecycle for printing the output of a task's batch"}]) (ns posthere.util.uuid "UUIDs and the heat death of the Universe..." (:require [clojure.string :as s])) (defn uuid "Simple wrapper for Java's UUID" [] (str (java.util.UUID/randomUUID)))(ns clj-gatling.httpkit (:require [org.httpkit.client :as http]) (:import [org.httpkit PrefixThreadFactory] [org.httpkit.client HttpClient] [java.util.concurrent ThreadPoolExecutor LinkedBlockingQueue TimeUnit])) (defonce cache-dns-forever (java.security.Security/setProperty "networkaddress.cache.ttl" "-1")) (defonce pool-size (* 2 (.availableProcessors (Runtime/getRuntime)))) (defonce httpkit-pool (repeatedly pool-size #(HttpClient.))) (defn- get-httpkit-client [^long idx] (nth httpkit-pool (mod idx pool-size))) (defonce httpkit-callback-pool (let [pool-size (.availableProcessors (Runtime/getRuntime)) queue (LinkedBlockingQueue.) factory (PrefixThreadFactory. "httpkit-callback-worker-")] (ThreadPoolExecutor. pool-size pool-size 60 TimeUnit/SECONDS queue factory))) (defn async-http-request [url user-id context callback] (let [check-status (fn [{:keys [^long status]}] (callback (= 200 status)))] (http/get url {:worker-pool httpkit-callback-pool :client (get-httpkit-client user-id)} check-status))) ;; Copyright 2014-2016 Andrey Antukh ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.core.codecs.base64 "Util functions for make conversion between string, bytes and encode them to base64 ot hex format." (:require [buddy.core.codecs :as codecs]) (:import org.apache.commons.codec.binary.Base64)) (defn encode "Encode data to byte array base64. Accepts String and byte array as argument." ([data] (encode data false)) ([data urlsafe?] (let [data (codecs/to-bytes data)] (if urlsafe? (Base64/encodeBase64URLSafe ^bytes data) (Base64/encodeBase64 ^bytes data))))) (defn decode "Decode base64 data into byte array. Accepts String and byte array as input argument." [data] (let [data (codecs/to-bytes data)] (Base64/decodeBase64 ^bytes data))) (defproject onyx-app/lein-template "0.9.7.0-beta1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject om-sente "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2199"] [org.clojure/core.async "0.1.278.0-76b25b-alpha"] [om "0.5.3"] [com.taoensso/sente "0.9.0"] [http-kit "2.1.18"] [compojure "1.1.6"]] :plugins [[lein-cljsbuild "1.0.3"]] :source-paths ["src/clj"] :cljsbuild { :builds [{:id "om-sente" :source-paths ["src/cljs"] :compiler { :output-to "om_sente.js" :output-dir "out" :optimizations :none :source-map true}}]}) (defproject ci-test "0.1.1" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"]] :repositories [["releases" {:url "https://clojars.org/repo/" :username :env :password :env} :sign-releases false]] :release-tasks [["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] ["vcs" "tag" "--no-sign"] ["deploy"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"] ["vcs" "push"]]) (defproject org.onyxplatform/onyx-metrics "0.8.0.4" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (ns wombats-web-client.utils.url (:require [cemerick.url :as url] [wombats-web-client.constants.local-storage :refer [access-token]])) (defn strip-access-token "removes access token from query" [] (let [url (-> js/window .-location .-href url/url) query (:query url) location (merge url {:query (dissoc query access-token)}) state (or (.-state js/history) #js {})] (.replaceState js/history state "" location))) (defproject org.onyxplatform/onyx-metrics "0.8.1.0-alpha8" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha8"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject day8.re-frame/trace "0.1.9-SNAPSHOT" :description "Tracing and developer tools for re-frame apps" :url "https://github.com/Day8/re-frame-trace" :license {:name "MIT"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.227"] [reagent "0.6.0"] [re-frame "0.9.0"] [cljsjs/d3 "4.2.2-0"] [binaryage/devtools "0.9.4"]] :plugins [[lein-less "1.7.5"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :release-tasks [["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["less" "once"] ["vcs" "commit"] ["vcs" "tag"] ["deploy"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"] ["vcs" "push"]] :figwheel {:css-dirs ["resources/day8/re_frame/trace"]} :less {:source-paths ["resources/day8/re_frame/trace"] :target-path "resources/day8/re_frame/trace"} :profiles {:dev {:dependencies [[binaryage/dirac "RELEASE"]]}}) (defproject quiescent "0.1.0-SNAPSHOT" :description "A minimal, functional ClojureScript wrapper for ReactJS" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [com.facebook/react "0.8.0.1"]] :source-paths ["src"] ;; development concerns :profiles {:dev {:source-paths ["src" "examples/src"] :resource-paths ["examples/resources"] :plugins [[lein-cljsbuild "1.0.1"]] :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/clojurescript "0.0-2156"]] :cljsbuild {:builds [{:source-paths ["src" "examples/src"] :compiler {:output-to "examples/resources/public/main.js" :output-dir "examples/resources/public/build" :optimizations :whitespace :preamble ["react/react.min.js"] :externs ["react/externs/react.js"] :pretty-print true :source-map "examples/resources/public/main.js.map" :closure-warnings {:non-standard-jsdoc :off}}}]}}}) (ns comic-reader.dev (:require [clojure.repl :refer :all] [clojure.tools.namespace.repl :refer [clear refresh]] [clansi.core :refer [style]])) (declare doc-print goto-ns) (defn welcome [] (doc-print "Welcome to the comic reader. If you want to add a new site, run `(add-site)'. If you want to work on the frontend, run `(develop-frontend)'.")) (defn add-site [] (doc-print "Start by running the tests with `(run-site-tests)'. All the tests should pass. Now add a new site definition file and run the tests again. Follow the instructions in the test errors, and hopefully you'll end up with a working site scraper.") (goto-ns 'comic-reader.site-dev)) (defn develop-frontend [] (doc-print "To get started run `(start-dev!)'. This will kick off the application server, and the figwheel devcard build.") (goto-ns 'comic-reader.frontend-dev)) (defn- doc-print [msg] (println " " msg)) (defn- goto-ns [ns] (require ns) (in-ns ns)) (defn attempt-server-shutdown [] (require 'comic-reader.system) (if-let [stop-fn (find-var 'comic-reader.system/stop)] (stop-fn))) (welcome) {:dev {:aliases {"test-all" ["with-profile" "dev,1.8:dev" "test"]} :codeina {:sources ["src"] :exclude [buddy.core.sign.impl] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0-beta2"]]}} (ns status-im.ui.components.connectivity.view (:require-macros [status-im.utils.views :refer [defview letsubs] :as views]) (:require [re-frame.core :as re-frame] [reagent.core :as reagent] [status-im.ui.components.react :as react] [taoensso.timbre :as log] [status-im.ui.components.connectivity.styles :as styles] [status-im.i18n :as i18n])) (defview error-view [{:keys [top]}] (letsubs [offline? [:offline?] disconnected? [:disconnected?] mailserver-error? [:mailserver-error?] fetching? [:fetching?] current-chat-contact [:get-current-chat-contact] view-id [:get :view-id] window-width [:dimensions/window-width]] (when-let [label (cond offline? :t/offline disconnected? :t/disconnected mailserver-error? :t/mailserver-reconnect fetching? :t/fetching-messages :else nil)] (let [pending? (and (:pending current-chat-contact) (= :chat view-id))] [react/view {:style (styles/text-wrapper top 1.0 window-width pending?) :accessibility-label :connection-status-text} [react/text {:style styles/text :on-press (when mailserver-error? #(re-frame/dispatch [:inbox/reconnect]))} (i18n/label label)]])))) (defproject nightmod "0.0.1-SNAPSHOT" :description "FIXME: write description" :dependencies [[clojail "1.0.6"] [com.badlogicgames.gdx/gdx "0.9.9"] [com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"] [com.badlogicgames.gdx/gdx-platform "0.9.9" :classifier "natives-desktop"] [com.cemerick/pomegranate "0.3.0"] [nightcode "0.3.1" :exclusions [leiningen lein-ancient lein-cljsbuild lein-droid lein-fruit play-clj/lein-template]] [org.clojure/clojure "1.5.1"] [org.eclipse.jgit "3.2.0.201312181205-r"] [play-clj "0.2.3-SNAPSHOT"] [seesaw "1.4.4"]] :repositories [["sonatype" "https://oss.sonatype.org/content/repositories/snapshots/"]] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] :aot [nightmod.core] :main nightmod.core) (defproject circleci "0.1.0-SNAPSHOT" :description "FIXME: write this!" :dependencies [[org.clojure/clojure "1.2.1"] [noir "1.1.1-SNAPSHOT"] [clj-table "0.1.5"] [clj-url "1.0.2"] [c3p0 "0.9.1.2"] [swank-clojure "1.3.2"] [log4j "1.2.14"] [log4j/apache-log4j-extras "1.1"] [org.clojure/tools.logging "0.2.0"] [org.jclouds/jclouds-all "1.1.1"] [org.jclouds.driver/jclouds-sshj "1.1.1"]] :dev-dependencies [] :main circleci.init) (defproject cljskel/lein-template "0.1.0-SNAPSHOT" :description "Skeleton project, a template that can be used to create a new Clojure web app implementing /1.x/ping and /1.x/status" :url "http://wikis.in.nokia.com/Clojure/ClojureSkeleton" :eval-in-leiningen true) (defproject foreclojure "1.8.0.1" :description "4clojure - a website for learning Clojure" :dependencies [[clojure "1.2.1"] [clojure-contrib "1.2.0"] [compojure "0.6.2"] [hiccup "0.3.6"] [clojail "0.5.1"] [sandbar "0.4.0-SNAPSHOT"] [org.clojars.christophermaier/congomongo "0.1.4-SNAPSHOT"] [org.jasypt/jasypt "1.7"] [cheshire "2.0.2"] [useful "0.7.0-beta5"] [amalloy/ring-gzip-middleware "[0.1.0,)"] [amalloy/mongo-session "0.0.1"] [clj-github "1.0.1"] [ring "0.3.7"] [clj-config "0.1.0"] [incanter/incanter-core "1.2.3"] [incanter/incanter-charts "1.2.3"] [commons-lang "2.6"] [org.apache.commons/commons-email "1.2"]] :dev-dependencies [[lein-ring "0.4.5"] [midje "1.1.1"]] :checksum-deps true :main foreclojure.core :ring {:handler foreclojure.core/app :init foreclojure.mongo/prepare-mongo}) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150821_215046-g67feccf"] [clj-kafka "0.2.8-0.8.1.1" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [cheshire "5.4.0"] [zookeeper-clj "0.9.1" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0" :exclusions [commons-codec]]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject mazes "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0-alpha11"], [com.rpl/specter "0.12.0"]] :source-paths ["src/clj", "src/cljc"] :profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"]] :source-paths ["test/clj", "test/cljc"] :plugins [[com.jakemccrary/lein-test-refresh "0.10.0"]] :test-refresh {:notify-command ["lein-test-refresh-notify"] :notify-on-success true :quiet true}}} ) (defproject ring "0.1.1-SNAPSHOT" :description "A Clojure web applications library." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.1.0-master-SNAPSHOT"] [commons-io "1.4"] [org.mortbay.jetty/jetty "6.1.14"] [org.mortbay.jetty/jetty-util "6.1.14"] [org.mortbay.jetty/servlet-api-2.5 "6.1.14"] [org.apache.httpcomponents/httpcore "4.0.1"] [org.apache.httpcomponents/httpcore-nio "4.0.1"] [clj-html "0.1.0-SNAPSHOT"] [clj-stacktrace "0.1.0-SNAPSHOT"]] :dev-dependencies [[lein-clojars "0.5.0-SNAPSHOT"] [clj-unit "0.1.0-SNAPSHOT"]]) (defproject onyx-app/lein-template "0.9.7.0-beta2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.9.10.0-beta5" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-alpha6" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"] [org.onyxplatform/onyx-metrics "0.10.0.0-alpha1"] [org.onyxplatform/onyx "0.10.0-alpha6"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject ring "1.8.0" :description "A Clojure web applications library." :url "https://github.com/ring-clojure/ring" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[ring/ring-core "1.8.0"] [ring/ring-devel "1.8.0"] [ring/ring-jetty-adapter "1.8.0"] [ring/ring-servlet "1.8.0"]] :plugins [[lein-sub "0.2.4"] [lein-codox "0.10.3"]] :sub ["ring-core" "ring-devel" "ring-jetty-adapter" "ring-servlet"] :codox {:output-path "codox" :source-uri "http://github.com/ring-clojure/ring/blob/{version}/{filepath}#L{line}" :source-paths ["ring-core/src" "ring-devel/src" "ring-jetty-adapter/src" "ring-servlet/src"]}) (defproject madouc "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [ring/ring-devel "1.5.1"] [ring-logger "0.7.7"] [ring-logger-timbre "0.7.5"] [com.taoensso/timbre "4.8.0"] [com.fzakaria/slf4j-timbre "0.3.4"] [compojure "1.5.2"] [metosin/compojure-api "1.1.10"] [environ "1.1.0"] [org.immutant/web "2.1.6" :exclusions [ch.qos.logback/logback-classic]]] :main madouc.core :profiles {:dev {:plugins [[lein-environ "1.1.0"]] :env {:madouc-env "dev"}} :uberjar {:aot :all}}) (ns isla.story-utils) (defn take-input [] (print "$ ") (flush) (read-line)) (defn output [given-output] (println " " given-output)) (ns test-help (:use [leiningen.help] [clojure.test])) (def formatted-docstring @#'leiningen.help/formatted-docstring) (def formatted-help @#'leiningen.help/formatted-help) (def resolve-task @#'leiningen.help/resolve-task) (deftest blank-subtask-help-for-new (let [subtask-help (apply subtask-help-for (resolve-task "new"))] (is (= nil subtask-help)))) (deftest subtask-help-for-plugin (let [subtask-help (apply subtask-help-for (resolve-task "plugin"))] (is (re-find #"install" subtask-help)) (is (re-find #"uninstall" subtask-help)))) (deftest test-docstring-formatting (is (= "This is an AWESOME command For real!" (formatted-docstring "install" "This is an\n AWESOME command\nFor real!" 5)))) (deftest test-formatted-help (is (= "install This is an AWESOME command For real!" (formatted-help "install" "This is an\nAWESOME command\nFor real!" 15)))) (ns lein-doo.config (:require [clojure.test :refer :all] [leiningen.doo :as doo])) (deftest correct-main (testing "doo can handle three types for main" (doseq [main '('lein.core "lein.core" lein.core)] (is (doo/correct-builds {:cljsbuild {:builds {:dev {:compiler {:main main}}}}}))))) (ns audio-utils.web-audio) (defn audio-context [] (let [constructor (or js/window.AudioContext js/window.webkitAudioContext)] (constructor.))) (defn create-buffer ([ctx n-channels size sample-rate] (.createBuffer ctx n-channels size sample-rate))) (defn create-buffer-from-data [ctx n-channels sample-rate data] (let [buf (create-buffer ctx n-channels (count (cond-> data (> n-channels 1) first)) sample-rate)] (doseq [channel (range 0 n-channels) :let [channel-data (.getChannelData buf channel) input-data (cond-> data (> n-channels 1) (get channel))]] (doseq [[i x] (map-indexed vector input-data)] (aset channel-data i x))) buf)) (defn create-buffer-source ([ctx] (.createBufferSource ctx)) ([ctx n-channels sample-rate data] (doto (create-buffer-source ctx) (aset "buffer" (create-buffer-from-data ctx n-channels sample-rate data))))) (ns circle.workers.test-github (:use circle.backend.build.test-utils) (:require [circle.model.build :as build]) (:use [circle.util.mongo]) (:require [somnium.congomongo :as mongo]) (:use midje.sweet) (:use circle.workers.github)) (test-ns-setup) (fact "start-build-from-hook works with dummy project" (let [json circle-dummy-project-json-str id (object-id) _ (mongo/insert! :builds {:_id id}) build (start-build-from-hook nil nil nil json (str id))] (-> @build :vcs_url) => truthy (-> build (build/successful?)) => true (-> @build :build_num) => integer? (-> @build :_id) => id)) (fact "authorization-url works" (-> "http://localhost:3000/hooks/repos" authorization-url) => "https://github.com/login/oauth/authorize?client_id=586bf699b48f69a09d8c&scope=repo&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fhooks%2Frepos")(defproject java-s3-tests/java-s3-tests "0.0.1" :dependencies [[org.clojure/clojure "1.4.0"] [com.amazonaws/aws-java-sdk "1.3.11"] [com.reiddraper/clj-aws-s3 "0.4.0"] [commons-codec/commons-codec "1.6"] [clj-http "0.4.3"] [cheshire "4.0.0"]] :profiles {:dev {:dependencies [[midje "1.4.0"]]}} :min-lein-version "2.0.0" :plugins [[lein-midje "2.0.1"]] :description "integration tests for Riak CS using the offical Java SDK") (defproject robb1e "0.1.0-SNAPSHOT" :description "Personal website for robb1e" :url "https://github.com/robb1e/robb1e.clj" :min-lein-version "2.0.0" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [ring/ring-jetty-adapter "1.2.1"] [hiccup "1.0.4"] [compojure "1.1.6"] [org.clojure/java.jdbc "0.3.2"] [postgresql "9.1-901.jdbc4"] [clj-time "0.6.0"]] :plugins [[lein-haml-sass "0.2.7-SNAPSHOT"]] :sass {:src "resources/sass" :output-directory "resources/public/stylesheets" :output-extension "css" ;; Other options (provided are default values) ;; :auto-compile-delay 250 ;; :delete-output-dir true ;; -> when running lein clean it will delete the output directory if it does not contain any file ;; :ignore-hooks [:clean :compile :deps] ;; -> if you use the hooks, this option allows you to remove some hooks that you don't want to run ;; :gem-version "3.2.1" } ) (ns org.playasophy.wonderdome.input.gamepad-test (:require [clojure.core.async :as async :refer [ unauthorized resp/response (resp/status 401)) :credential-fn #(credentials/bcrypt-credential-fn user %) :workflows [(workflows/interactive-form)]}))) (ns analyze-data.train-model (:require [analyze-data.naive-bayes.train :as naive-bayes] [analyze-data.serialize :refer [read-object write-object!]])) (defmulti train-model "Train a model on a dataset. model-type: one of [:knn :naive-bayes] dataset: a dataset (e.g. produced by corpus-to-dataset) Return a model, which is a map with the following keys: :type the type of the model :parameters the learned parameters of the model :dataset the dataset the model was trained on" (fn [model-type dataset] model-type)) (defn train-model-file "Like train-model, but accepts a file name for input and output. model-type: type of model to create in: path to a dataset file out: path where the trained model will be written as a serialized map." [model-type in out] (let [dataset (read-object in) model (train-model model-type dataset)] (write-object! out model))) (defmethod train-model :knn [model-type dataset] {:type model-type :parameters nil :dataset dataset}) (defmethod train-model :naive-bayes [model-type dataset] (let [{:keys [X y]} dataset] {:type model-type :parameters (naive-bayes/train X y) :dataset dataset})) (set-env! :source-paths #{"src"} :resource-paths #{"src"} :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [boot/core "2.1.0" :scope "provided"] [junit "4.12" :scope "test"] [radicalzephyr/bootlaces "0.1.12"]]) (require '[radicalzephyr.bootlaces :refer :all] '[radicalzephyr.boot-junit :refer [junit]]) (def +version+ "0.2.1-SNAPSHOT") (bootlaces! +version+) (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}} junit {:packages '#{radicalzephyr.boot_junit.test}}) (ns leiningen.ring (:use [leiningen.help :only (help-for subtask-help-for)] [leiningen.ring.server :only (server)] [leiningen.ring.server-headless :only (server-headless)] [leiningen.ring.war :only (war)] [leiningen.ring.uberwar :only (uberwar)])) (defn ring "Manage a Ring-based application." {:help-arglists '([server server-headless war uberwar]) :subtasks [#'server #'server-headless #'war #'uberwar]} ([project] (println (help-for "ring"))) ([project subtask & args] (case subtask "server" (apply server project args) "server-headless" (apply server-headless project args) "war" (apply war project args) "uberwar" (apply uberwar project args) (println "Subtask" (str \" subtask \") "not found." (subtask-help-for *ns* #'ring))))) (ns leiningen.deps (:require [lancet]) (:use [leiningen] [clojure.contrib.java-utils :only [file]]) (:import [org.apache.maven.model Dependency] [org.apache.maven.artifact.ant DependenciesTask] [org.apache.tools.ant.util FlatFileNameMapper])) (defn- make-dependency [[group name version]] (doto (Dependency.) (.setGroupId group) (.setArtifactId name) (.setVersion version))) (defn deps "Install dependencies in lib/" [project & args] (let [deps-task (DependenciesTask.)] (.setBasedir lancet/ant-project (:root project)) (.setFilesetId deps-task "dependency.fileset") (.setProject deps-task lancet/ant-project) (.setPathId deps-task (:name project)) (doseq [dep (:dependencies project)] (.addDependency deps-task (make-dependency dep))) (.execute deps-task) (.mkdirs (file (:root project) "lib")) (lancet/copy {:todir "lib/"} (.getReference lancet/ant-project (.getFilesetId deps-task)) (FlatFileNameMapper.))))#!/usr/bin/env boot (set-env! :source-paths #{"less" "src"} :resource-paths #{"html" "resources"} :dependencies '[; Boot setup [adzerk/boot-cljs "1.7.170-1"] [adzerk/boot-reload "0.4.1"] [deraen/boot-less "0.4.2"] [pandeiro/boot-http "0.7.0-SNAPSHOT"] ; App dependencies [org.clojure/clojurescript "1.7.170"] [org.omcljs/om "1.0.0-alpha18-SNAPSHOT"] ; Other dependencies [devcards "0.2.0-8"]]) (task-options! pom {:project "om-next-kanban-demo" :version "0.1.0-SNAPSHOT"}) (require '[adzerk.boot-cljs :refer [cljs]] '[adzerk.boot-reload :refer [reload]] '[deraen.boot-less :refer [less]] '[pandeiro.boot-http :refer [serve]]) (deftask run [] (comp (watch) (speak) (reload :on-jsload 'kanban.app/run) (less) (cljs :source-map true :optimizations :none :compiler-options {:devcards true}) (serve :dir "target"))) (ns metrics.test.test-utils (:import java.util.concurrent.TimeUnit)) (defn abs [n] (if (> n 0) n (* -1 n))) (defn maps-within-one [a b] (when (= (set (keys a)) (set (keys b))) (every? identity (map #(within-one (a %) (b %)) (keys a))))) (ns clj-gatling.core (:import (org.joda.time LocalDateTime)) (:require [clojure-csv.core :as csv] [clj-gatling.chart :as chart] [clj-gatling.report :as report] [clj-gatling.simulation :as simulation])) (def results-dir "target/results") (defn create-dir [dir] (.mkdirs (java.io.File. dir))) (defn run-simulation [scenario users] (let [start-time (LocalDateTime.) result (simulation/run-simulation scenario users) csv (csv/write-csv (report/create-result-lines start-time result) :delimiter "\t" :end-of-line "\n")] (create-dir (str results-dir "/input")) (spit (str results-dir "/input/simulation.log") csv) (chart/create-chart results-dir) (println (str "Open " results-dir "/output/index.html")))) { :uberjar { :aot :all } :dev { :resource-paths ["src/dev/resources"] :source-paths ["src/dev/clj"] :dependencies [[org.clojure/tools.namespace "0.2.7"]] :env {:db-url "plocal:D:/temp/orientdb/dev" :db-admin-user nil :db-admin-pwd nil :bind 8081} } :test { :resource-paths ["src/dev/resources"] :dependencies [[clj-http "1.0.1"]] :env {:db-url "plocal:D:/temp/orientdb/test" :db-admin-user nil :db-admin-pwd nil :bind 8082} } }(set-env! :source-paths #{"src"} :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [boot/core "2.1.0" :scope "provided"] [junit "4.12"] [org.reflections/reflections "0.9.10"] [org.glassfish/javax.servlet "3.0"]]) (require '[radicalzephyr.boot-junit :refer [junit]]) (def +version+ "0.1.0") (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}} junit {:packages '#{radicalzephyr.boot_junit.test}}) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.2"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.11.0"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject onyx-plugin/lein-template "0.8.2.5" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject uxbox "0.1.0-SNAPSHOT" :description "UXBox client" :url "http://uxbox.github.io" :license {:name "" :url ""} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.228" :scope "provided"] [figwheel-sidecar "0.5.0-2" :scope "test"] ;; runtime [rum "0.6.0" :exclusions [sablono]] [sablono "0.5.3"] [cljsjs/react "0.14.3-0"] [cljsjs/react-dom "0.14.3-1"] [cljsjs/react-dom-server "0.14.3-0"] [cljsjs/moment "2.10.6-0"] [funcool/promesa "0.7.0"] [funcool/beicon "0.5.1"] [funcool/cats "1.2.1"] [funcool/cuerdas "0.7.1"] [funcool/hodgepodge "0.1.4"] [bouncer "1.0.0"] [bidi "1.21.0"]] :clean-targets ^{:protect false} ["resources/public/js" "target"] ) ;(defproject cli4clj "1.3.2" (defproject cli4clj "1.3.3-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.3.443"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.4" :exclusions [org.clojure/clojure]]]}} ) (defproject io.aviso/rook "0.1.8-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"] [io.aviso/pretty "0.1.10"] [speclj "2.5.0"] [log4j "1.2.17"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [org.clojure/tools.logging "0.2.6"] [ring-middleware-format "0.3.2"] [prismatic/schema "0.2.1"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"] [speclj "2.5.0"]] :test-paths ["spec"]) (ns karmanaut.utils (:gen-class) (:require [clojure.java.io :as io]) (:import [java.util Date])) (defn env [key default] (get (System/getenv) key default)) (defn version [] (if (.exists (io/as-file "project.clj")) (-> "project.clj" slurp read-string (nth 2)) (-> (eval 'karmanaut.utils) .getPackage .getImplementationVersion))) (defn utcnow [] (Date.)) (defn long-to-date "Reddit timestamps are the number of seconds since the Unix epoch, in UTC." [epoch] (Date. (* 1000 (long epoch)))) (ns my-noir-lab.views.welcome (:require [my-noir-lab.views.common :as common]) (:use [noir.core :only [defpage render]] [hiccup.core :only [html]] [hiccup.form-helpers :only [form-to submit-button]])) (defpage "/welcome" [] (common/layout [:p "Welcome to my-noir-lab"])) (defpage "/my-page" [] (common/site-layout "Welcome" [:h1 "Hello"] [:p#wrapper "Hope you like it!"])) (defpage "/range" {:as user} (common/site-layout "Range input" [:h1 "range method"] (form-to [:post "/range"] (common/input-fields-range user) (submit-button "submit")))) (defpage [:post "/range"] {:keys [start end] :as user} (common/site-layout "Range" [:h2 (str "Display range from " start " to " end)] [:p#wrapper (map #(str % "
") (range (read-string start) (read-string end)))] (render "/range" user))) (ns whitman.core (:require [clojure.data.json :as json]) (:gen-class)) (defn exit [code msg] (binding [*out* *err*] (do (println msg) (System/exit code)))) (defn -main [& args] (if (< (count args) 1) (exit 1 "No configuration file specified") (println (json/read-str (slurp (nth args 0)))))) (ns pericles.routes (:require [compojure.core :refer :all] [compojure.route :as route] [compojure.coercions :refer [as-int]] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.util.http-response :as resp] [gpio.core :as gpio] [pericles.gpio :refer [port]] [pericles.handlers :as handlers])) (defroutes api-routes (GET "/" [] "Hello world!") (GET "/readPort" [] (name (gpio/read-value @port))) (GET "/writePort" [value :<< as-int] (do (gpio/write-value! @port value) (name (gpio/read-value @port)))) (GET "/readTemp" [] "27C") (route/not-found "Not found!")) (def app (-> #'api-routes (wrap-defaults (assoc api-defaults :static {:resources "public"})) handlers/wrap-catch-exceptions handlers/wrap-log-request)) (ns pericles.routes (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [gpio.core :as gpio] [pericles.gpio :refer [port]] [pericles.handlers :as handlers])) (defroutes api-routes (GET "/" [] "Hello world!") (GET "/readPort" [] (name (gpio/read-value @port))) (GET "/writePort" [value] (gpio/write-value! @port value)) (route/not-found "Not found!")) (def app (-> #'api-routes (wrap-defaults api-defaults) handlers/wrap-catch-exceptions handlers/wrap-log-request)) (ns rumahsewa141.test.db.core (:require [rumahsewa141.db.core :refer [*db*] :as db] [luminus-migrations.core :as migrations] [clojure.test :refer :all] [clojure.java.jdbc :as jdbc] [rumahsewa141.config :refer [env]] [mount.core :as mount])) (use-fixtures :once (fn [f] (mount/start #'rumahsewa141.config/env #'rumahsewa141.db.core/*db*) (migrations/migrate ["migrate"] (select-keys env [:database-url])) (f))) (deftest test-users (jdbc/with-db-transaction [t-conn *db*] (jdbc/db-set-rollback-only! t-conn) (is (= 1 (db/create-user! t-conn {:id "1" :first_name "Sam" :last_name "Smith" :email "sam.smith@example.com" :pass "pass"}))) (is (= {:id "1" :first_name "Sam" :last_name "Smith" :email "sam.smith@example.com" :pass "pass" :admin nil :last_login nil :is_active nil} (db/get-user t-conn {:id "1"}))))) (ns puppetlabs.trapperkeeper.utils) (def ^{:doc "Alias for plumbing.map/map-leaves-and-path, which is named inconsistently with Clojure conventions as it doesn't behave like other `map` functions. Map functions typically return a `seq`, never a map, and walk functions are used to modify a collection in-place without altering the structure."} walk-leaves-and-path plumbing.map/map-leaves-and-path) (defn service-graph? "Predicate that tests whether or not the argument is a valid trapperkeeper service graph." [service-graph] (and (map? service-graph) (every? keyword? (keys service-graph)) (every? (some-fn ifn? service-graph?) (vals service-graph)))) (defn validate-service-graph! "Validates that the argument is a valid trapperkeeper service graph. Throws an IllegalArgumentException if it is not." [service-graph] (if (service-graph? service-graph) service-graph (throw (IllegalArgumentException. (str "Invalid service graph; service graphs must " "be nested maps of keywords to functions. Found: " service-graph))))) (ns braid.server.bots (:require [org.httpkit.client :as http] [taoensso.timbre :as timbre] [braid.server.crypto :as crypto] [braid.server.util :refer [->transit]]) (:import java.io.ByteArrayInputStream)) (defn send-message-notification [bot message] (let [body (->transit message) hmac (crypto/hmac-bytes (bot :token) body)] (timbre/debugf "sending bot notification") (println ; TODO: should this be a POST too? @(http/put (bot :webhook-url) {:headers {"Content-Type" "application/transit+msgpack" "X-Braid-Signature" hmac} :body (ByteArrayInputStream. body)})))) (defn send-event-notification [bot info] (when-let [url (:event-webhook-url bot)] (timbre/debugf "Sending event notification %s to %s" info bot) (let [body (->transit info) hmac (crypto/hmac-bytes (bot :token) body)] (timbre/debugf "sending bot event notification") (println @(http/post url {:headers {"Content-Type" "application/transit+msgpack" "X-Braid-Signature" hmac} :body (ByteArrayInputStream. body)}))))) (ns tx.listen (:use clojure.test) (:require [immutant.cache :as ic] [immutant.messaging :as imsg] [tx.core :as core])) (imsg/start "/queue/trigger") (defn listener [m] (imsg/publish "/queue/test" "kiwi") (imsg/publish "/queue/remote-test" "starfruit" :host "localhost" :port 5445) (ic/put core/cache :a 1) (if (:throw? m) (throw (Exception. "rollback")))) (imsg/listen "/queue/trigger" listener) (defn trigger-listener [throw?] (imsg/publish "/queue/trigger" {:throw? throw?})) (use-fixtures :each core/cache-fixture) (deftest transactional-writes-in-listener-should-work (trigger-listener false) (is (= "kiwi" (imsg/receive "/queue/test" :timeout 2000))) (is (= "starfruit" (imsg/receive "/queue/remote-test"))) (is (= 1 (:a core/cache)))) (deftest transactional-writes-in-listener-should-fail-on-rollback (trigger-listener true) (is (nil? (imsg/receive "/queue/test" :timeout 2000))) (is (nil? (imsg/receive "/queue/remote-test"))) (is (nil? (:a core/cache)))) (ns graphql-clj.box (:import [clojure.lang IObj IDeref IPersistentCollection Named] [java.io Writer])) (deftype Box [value meta] IObj (meta [_] meta) IDeref (deref [_] (if (instance? Box value) @value value)) IPersistentCollection (equiv [a b] (.equals a b)) Named (getName [this] (if (instance? Box value) (.getName value) (.toString this))) Object (equals [_ b] (if (instance? Box b) (= value @b) (= value b))) (hashCode [_] (.hashCode value)) (toString [_] (str value))) (defmethod print-method Box [v ^Writer w] (.write w (.toString v))) (defn kv->box "Given a single key value pair in a map, preserve metadata for the value." [value] (let [m (meta value) [[k v]] (vec value)] {k (->Box v m)})) (defn box->val "Given a potentially boxed value, strip the box and return the raw value. Same as identity if value is already unboxed" [v] (if (instance? Box v) @v v)) (ns incise.watcher (:require [taoensso.timbre :refer [error]] [clojure.stacktrace :refer [print-cause-trace]] [watchtower.core :refer [watcher rate file-filter extensions on-change]])) (defn log-exceptions [func] "Log (i.e. print) exceptions received from the given function." (let [out *out* err *err*] (fn [& args] (binding [*out* out *err* err] (try (apply func args) (catch Exception e (error (with-out-str (print-cause-trace e))))))))) (defn per-change [change-fn] (fn [files] (doseq [file files] (change-fn file)))) (defn watch [change-fn] (watcher ["resources/posts/" "resources/pages/"] (rate 300) (on-change (-> change-fn per-change log-exceptions)))) (def watching nil) (defn start-watching [& args] (alter-var-root #'watching (fn [& _] (apply watch args)))) (defn stop-watching [] (when watching (future-cancel watching))) (defproject onyx-app/lein-template "0.9.10.0-beta1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) {:user {:dependencies [[slamhound "1.3.1"] [org.clojure/tools.namespace "0.2.4"] [clj-stacktrace "0.2.7"]] :plugins [[lein-difftest "2.0.0"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"] [lein-kibit "0.0.8"]] :injections [(let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly (deref new))))]}} :aliases {"slamhound" ["run" "-m" "slam.hound"]} :source-paths ["/Users/jcf/.lein/dev"] :search-page-size 30}} (ns ^{:doc "A way to keep track of the pertinent context of the current nested fact. Currently, that is only the fact's description/doc-string"} midje.internal-ideas.fact-context (:use [clojure.string :only [join]])) (def fact-context (atom [])) (defn nested-descriptions [] @fact-context) (defn- enter-runtime-context [description] (swap! fact-context conj description)) (defn- leave-runtime-context [] (swap! fact-context #(vec (butlast %)))) (defmacro within-runtime-fact-context [description & body] `(try (#'enter-runtime-context ~description) ~@body (finally (#'leave-runtime-context)))) (ns evermind.domain.core-test (:require [clojure.test :refer :all] [evermind.domain.core :refer :all] [clojure.spec.test.alpha :as stest] [evermind.test-util :as tu])) (defn fixture [f] (tu/instrument-namespaces) (f)) (use-fixtures :once fixture) (deftest test-create-node (is (tu/check 'evermind.domain.core/create-node))) (deftest test-set-attributes (is (tu/check 'evermind.domain.core/set-attributes))) (deftest test-add-child (is (tu/check 'evermind.domain.core/add-child))) (deftest test-remove-child (is (tu/check 'evermind.domain.core/remove-child))) (deftest test-filter-children (is (tu/check 'evermind.domain.core/filter-children))) (deftest test-create-mindmap (is (tu/check 'evermind.domain.core/create-mindmap))) (ns reitit.doo-runner (:require [doo.runner :refer-macros [doo-tests]] reitit.coercion-test reitit.core-test reitit.impl-test reitit.middleware-test reitit.ring-test #_reitit.spec-test reitit.exception-test reitit.frontend.core-test reitit.frontend.history-test reitit.frontend.controllers-test)) (enable-console-print!) (doo-tests 'reitit.coercion-test 'reitit.core-test 'reitit.impl-test 'reitit.middleware-test 'reitit.ring-test #_'reitit.spec-test 'reitit.exception-test 'reitit.frontend.core-test 'reitit.frontend.history-test 'reitit.frontend.controllers-test) (ns lcmap.clownfish.configuration "Supplies system configuration map" (:require [clojure.string :as str] [clojure.tools.logging :as log] [dire.core :as dire :refer [with-handler!]] [lcmap.commons.numbers :refer [numberize]] [mount.core :refer [defstate] :as mount])) (defn- tokenize "Split a string on whitespace and returns a vector of the tokens or nil if the value was untokenizable" [value] (vec (remove #(zero? (count %)) (str/split value #" ")))) (with-handler! #'tokenize [java.lang.NullPointerException java.lang.ClassCastException] (fn [e & args] nil)) (defn config-map [env] {:http {:port (numberize (:http-port env)) :join? false :daemon? true} :event {:host (:event-host env) :port (numberize (:event-port env))} :db {:keyspace (:db-keyspace env) :cluster {:contact-points (tokenize (:db-url env)) :credentials {:user (:db-user env) :password (:db-pass env)}}} :server {:exchange (:exchange env) :queue (:queue env)} :chip-specs-url (:chip-specs-url env)}) (defstate config :start (log/spy :debug (config-map ((mount/args) :environment)))) (ns discuss.cards (:require [devcards.core :as dc :refer-macros [defcard defcard-om defcard-om-next dom-node]] [sablono.core :as html :refer-macros [html]] [om.next :as om :refer-macros [defui]] [discuss.parser :as parser] [discuss.components.search.statements :refer [SearchQuery]] [discuss.utils.common :as lib] [discuss.views :as views])) (enable-console-print!) (defcard-om discuss views/main-view lib/app-state) (defonce test-data {:foo :bar :search/results [:foo :bar :baz]}) (defonce devcard-reconciler (om/reconciler {:state test-data :parser (om/parser {:read parser/read :mutate parser/mutate})})) (defcard search-query-card-no-next (dom-node (fn [_ node] (om/add-root! devcard-reconciler SearchQuery node))) {:inspect-data true}) ;; ----------------------------------------------------------------------------- ;; Start devcards (defn main [] ;; conditionally start the app based on whether the #main-app-area ;; node is on the page (when-let [node (.getElementById js/document "main-app-area")] (.render js/ReactDOM (html [:div "This is working"]) node))) (main) (ns reports.exporter (:require [clojure.java.io :as io]) (:import java.io.File java.util.UUID org.waterforpeople.mapping.dataexport.SurveyDataImportExportFactory)) (defn- get-file-extension [t] (if (= t "SURVEY_FORM") "xls" "xlsx")) (defn- get-file [et id] (let [path (str "/var/tmp/akvo/flow/reports/" (UUID/randomUUID))] (.mkdirs (io/file path)) (io/file (format "%s/%s-%s.%s" path et id (get-file-extension et))))) (defn ^File export-report [type base id options] (let [exporter (.getExporter (SurveyDataImportExportFactory.) type) file (get-file type id)] (.export exporter {"surveyId" id} file base options) file)) (ns bob.test (:use clojure.test)) (load-file "bob.clj") (deftest responds-to-shouts (is (= "Woah, chill out!" (bob/response-for "SHOUTING")))) (deftest responds-to-questions (is (= "Sure." (bob/response-for "A question?")))) (deftest responds-to-statements (is (= "Whatever." (bob/response-for "A statement.")))) (deftest responds-to-silence (is (= "Fine, be that way." (bob/response-for "")))) (run-tests) (ns re-frame.utils) (defn warn [& args] (.warn js/console (apply str args))) (defn first-in-vector [v] (if (vector? v) (first v) (warn "re-frame: expected a vector event, but got: " v))) (ns whitman.client) (def source-url [cfg user] (format (get cfg "source") user)) { :name "mailit", :path "", :func (fn [recipient subject intro result-maps] (cond (pg/eoi? result-maps) (pg/done) (every? map? result-maps) (let [msgs (for [retmap result-maps] (let [name (retmap :name) [bams csv] (retmap :value) bams (map fs/basename bams) csv (fs/basename csv) exit (retmap :exit) err (retmap :err)] (if (= exit :succss) [exit csv] [exit err [bams csv]]))) msg (->> msgs (cons intro) (map str) (str/join "\n"))] (pg/send-msg [recipient] subject msg)) :else (let [msg (->> result-maps (cons intro) (map str) (str/join "\n"))] (pg/send-msg [recipient] subject msg)))) :description "General mailer function node. recipient is user account that requested the associated job this node is final pt of DAG, subject is type of job, msg is job finish details." } (ns leiningen.core (:require [leiningen deps test compile] [clojure.contrib.with-ns]) (:gen-class)) (def project nil) (defmacro defproject [project-name & args] ;; This is necessary since we must allow defproject to be eval'd in ;; any namespace due to load-file; we can't just create a var with ;; def or we would not have access to it once load-file returned. `(do (alter-var-root #'project (fn [_#] (assoc (apply hash-map (quote ~args)) :name ~(name project-name) :root ~(.getParent (java.io.File. *file*))))) (def ~project-name project))) (defn read-project ([file] (load-file file) project) ([] (read-project "project.clj"))) (defn -main [command & args] (let [action (ns-resolve (symbol (str "leiningen." command)) (symbol command))] ;; TODO: ensure tasks run only once (apply action (read-project) args) ;; In case tests or some other task started any: (shutdown-agents)))(defproject net.uncontended/beehive "0.2.0" :description "Beehive is a Clojure facade for the Precipice library." :url "https://github.com/tbrooks8/Beehive" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :profiles {:dev {:dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"] [clj-http "1.0.1"] [criterium "0.4.3"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [net.uncontended/Precipice "0.1.0"]]) (defproject org.onyxplatform/onyx-bookkeeper "0.8.1.0-alpha6" :description "Onyx plugin for BookKeeper" :url "https://github.com/onyx-platform/onyx-bookkeeper" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha6"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns blaagh.db.core (:require [clojure.java.jdbc :as sql]) (:require [yesql.core :refer [defqueries]])) (def db-spec { :classname "org.sqlite.JDBC" :subprotocol "sqlite" :subname "resources/db/blaagh.sqlite3"}) ;; creates DB if not already present (defqueries "blaagh/db/queries.sql" {:connection db-spec}) (defn get-all-names [] (let [results (get-names)] (cond (empty? results) {:status 404} :else results))) (defn create-tables [] (try (sql/db-do-commands db-spec "CREATE TABLE foo (name text); " "CREATE TABLE bar (name text); " "CREATE TABLE baz (name text); ") (catch Exception e (println e)))) (defn populate-tables [] (try (sql/db-do-commands db-spec "INSERT INTO foo (name) VALUES ('Rick'), ('Carol'), ('Daryl'), ('Michonne'), ('Glenn'), ('Maggie'), ('Carl'), ('Sasha'), ('Abraham'), ('Morgan');") (catch Exception e (println e)))) (ns infinispan.test (:gen-class) (:import (org.infinispan.client.hotrod RemoteCacheManager RemoteCache) (org.infinispan.client.hotrod.configuration ConfigurationBuilder) (org.infinispan.client.hotrod.impl ConfigurationProperties))) (defn -main "Creates simple HR client, puts key/value into remote server and reads it back" [& args] (def conf (ConfigurationBuilder.)) (.port (.host (.addServer conf) "127.0.0.1") ConfigurationProperties/DEFAULT_HOTROD_PORT) (def cm (RemoteCacheManager. (.build conf))) (def cache (.getCache cm)) (println "Sending key -> value") (.put cache "key" "value") (def value (.get cache "key")) (println "Got key -> " value) (.stop cm)) (defproject onyx-app/lein-template "0.10.0.0-rc3" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject jungerer "0.1.2" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.8.0"] [net.sf.jung/jung-algorithms "2.1"] [net.sf.jung/jung-api "2.1"] [net.sf.jung/jung-graph-impl "2.1"] [net.sf.jung/jung-io "2.1"] [net.sf.jung/jung-visualization "2.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true} :resource-paths ["dev-resources"]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]] :resource-paths ["dev-resources"]}} :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject io.aviso/twixt "0.1.4" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.1.2"] [de.neuland/jade4j "0.3.15"] [io.aviso/pretty "0.1.4"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject pjstadig/assertions "0.2.0-SNAPSHOT" :description "Zero penalty runtime assertions for Clojure." :url "http://github.com/pjstadig/assert" :license {:name "Mozilla Public License, v. 2.0" :url "http://mozilla.org/MPL/2.0/"} :dependencies [[org.clojure/clojure "1.5.1"]] :java-source-paths ["src"]) (defproject com.howardlewisship/bgg-graphql-proxy "0.12.0" :description "GraphQL interface to BoardGameGeek" :dependencies [[org.clojure/clojure "1.9.0-alpha14"] [io.aviso/logging "0.2.0"] [com.walmartlabs/lacinia "NEXT"] [clj-http "2.3.0"] [org.clojure/data.json "0.2.6"] [org.clojure/data.xml "0.0.8"] [io.pedestal/pedestal.service "0.5.2"] [io.pedestal/pedestal.jetty "0.5.2"]] :repositories [["ereceipts-releases" "http://dfw-receipts-jenkins.mobile.walmart.com:8081/nexus/content/repositories/releases/"]] :codox {:source-uri "" :metadata {:doc/format :markdown}}) (defproject madouc "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [ring/ring-devel "1.5.1"] [ring-logger "0.7.7"] [ring-logger-timbre "0.7.5"] [com.taoensso/timbre "4.8.0"] [com.fzakaria/slf4j-timbre "0.3.4"] [compojure "1.5.2"] [metosin/compojure-api "1.1.10"] [yogthos/config "0.8"] [org.immutant/web "2.1.6" :exclusions [ch.qos.logback/logback-classic]] [selmer "1.10.6"] [mount "0.1.11"]] :main madouc.core :profiles {:dev {:resource-paths ["config/dev"]} :prod {:resource-paths ["config/prod"]} :uberjar {:aot :all}}) (defproject jungerer "0.1.2-SNAPSHOT" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.8.0"] [net.sf.jung/jung-algorithms "2.1"] [net.sf.jung/jung-api "2.1"] [net.sf.jung/jung-graph-impl "2.1"] [net.sf.jung/jung-visualization "2.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true}} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}} :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject riverford/compound "0.5.0-alpha4" :description "A micro structure for reagent data" :url "https://github.com/riverford/compound" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0-RC2"] [org.clojure/spec.alpha "0.1.143"]] :publish {:site "compound" :theme "bolton" :output "docs" :template {:author "Daniel Neal" :logo-white "img/compound_small.png" :email "danielneal@riverford.co.uk"} :files {"index" {:input "test/compound/docs.cljc" :site "compound" :title "core" :subtitle "api docs"}}} :profiles {:dev {:dependencies [[im.chit/lucid.publish "1.3.13"] [orchestra "2017.11.12-1"]]}}) (defproject lapmachine "0.1.0" :description "A Language/Action Perspective-based engine for pragmatic interaction on the Web" :url "http://github.com/bpdp/lapmachine" :license {:name "Eclipse Public License v 1.0" :url "https://www.eclipse.org/org/documents/epl-v10.php"} :main lapmachine.repl :ring {:handler lapmachine.interact/handler} :dependencies [[org.clojure/clojure "1.6.0"] [instaparse "1.3.4"] [liberator "0.12.2"] [compojure "1.2.2"] [ring/ring-core "1.3.2"]] :dev-dependencies [[ring/ring-devel "1.3.2"]]) (defproject test-utils "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.10.0"] [kixi/stats "0.5.2"]] :repl-options {:init-ns test-utils.core} :source-paths ["src", "test"]) (defproject mvxcvi/multihash "1.1.0-SNAPSHOT" :description "Native Clojure implementation of the multihash standard." :url "https://github.com/greglook/clj-multihash" :license {:name "Public Domain" :url "http://unlicense.org/"} :deploy-branches ["master"] :plugins [[lein-cloverage "1.0.6"]] :dependencies [[org.clojure/clojure "1.7.0"]] :codox {:metadata {:doc/format :markdown} :source-uri "https://github.com/greglook/clj-multihash/blob/master/{filepath}#L{line}" :doc-paths ["doc/extra"] :output-path "doc/api"}) (defproject tailrecursion/boot-classloader "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.springframework/spring-core "1.2.2"] [com.cemerick/pomegranate "0.2.0" :exclusions [org.clojure/clojure]]] :main ^:skip-aot tailrecursion.boot-classloader :target-path "target/%s" :profiles {:uberjar {:aot :all}}) `{:name "link-bio-with-nil" :description "This link-bio-with-properties rule requires both things being linked to be 'bioentities' and thus this rule excludes links within RDF lists that connect to rdf:nil. This rule fills in those missing links." :head ((?/bio ?/p rdf/nil)) :body ((?/c obo/IAO_0000219 ?/bio) (?/c ?/p rdf/nil))}(ns discuss.debug "Show information for debugging." (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [discuss.lib :as lib])) (defn debug-view [data _owner] (reify om/IRender (render [_] (dom/div nil (dom/h4 nil "Last API call") (dom/pre nil (get-in data [:debug :last-api])) (dom/h4 nil "Last response") (dom/pre nil (apply dom/ul nil (map (fn [[k v]] (dom/li nil (str k "\t\t" v))) (get-in data [:debug :response])))) (dom/h4 nil "Token") (dom/pre nil (get-in data [:user :token])) )))) (defn update "Update displayed debug information." [key val] (lib/update-state-item! :debug key (fn [_] val)))(ns asid.trust-pool (:use midje.sweet) (:use asid.wallet)) (defrecord Origin [identity url]) (defrecord Trustee [signed-values origin]) (defrecord TrustPool [challenge trustees]) (defn new-trust-pool [req-keys] (TrustPool. req-keys [])) (defn add-to-pool [pool owner-wallet joiner challenge-response] (let [joiner-origin (Origin. (:identity joiner) (:url joiner)) trustee (Trustee. (map #(sign owner-wallet (:identity joiner) %1 %2) (:challenge pool) challenge-response) joiner-origin)] (TrustPool. (:challenge pool) (conj (:trustees pool) trustee)))) (facts "about adding to a trust pool" (fact "should add with complete challenge" (-> (add-to-pool (TrustPool. [:name] []) (new-wallet) {:identity "id" :url "url"} ["blah"]) :trustees count) => 1)) (ns db-quiz.state (:require [reagent.core :as reagent :refer [atom]])) (defonce app-state (atom {:answer nil :answers {:correct 0 :incorrect 0} :board {} :current-field nil :hint nil :language :cs :loading? false :on-turn (rand-nth [:player-1 :player-2]) :options {:data-source :dbpedia :despoilerify? true :difficulty :normal :doc "" :labels :numeric :selectors #{:persons :places :works} :share-url ""} :players {:player-1 "Dmitrij" :player-2 "Paní M."} :timer {:completion 0 :start 0} :verdict nil :winner nil})) (ns tutorial.moan.lib (:require [tutorial.moan.db :as db])) (defn favorites [] [{:id 1 :text "This is a fantastic tweet" :author {:name "Elon Musk" :username "fakeelonmusk"}} {:id 2 :text "Lord but I dislike poetry. How can anyone remember words that aren't put to music?" :author {:name "Arliden" :username "arl_the_bard"}}]) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.services.core (:require [clojure.walk :as walk] [cuerdas.core :as str] [uxbox.util.exceptions :as ex])) (defmulti novelty :type) (defmulti query :type) (defmethod novelty :default [{:keys [type] :as data}] (ex/raise :code ::not-implemented :message-category :novelty :message-type type)) (defmethod query :default [data] (ex/raise :code ::not-implemented :message-category :query :message-type type)) (ns salava.core.i18n #?(:cljs (:require-macros [taoensso.tower :as tower-macros])) (:require #?@(:cljs [[reagent.session :as session] [taoensso.tower :as tower :refer-macros (with-tscope)]]) #?(:clj [taoensso.tower :as tower :refer (with-tscope)]))) (def tconfig #?(:clj {:fallback-locale :en :dev-mode? true :dictionary "i18n/dict.clj"} :cljs {:fallback-locale :en :compiled-dictionary (tower-macros/dict-compile* "i18n/dict.clj")})) (def translation (tower/make-t tconfig)) ; create translation fn (defn t [key] (let [lang #?(:clj "en" :cljs (session/get :lang))] (translation lang key))) ;; Copyright © 2014 JUXT LTD. (ns modular.aleph (:require [com.stuartsierra.component :refer (Lifecycle)] [schema.core :as s] [modular.ring :refer (request-handler WebRequestHandler)] [aleph.http :as http])) (defrecord Webserver [] Lifecycle (start [component] (if-let [provider (first (filter #(satisfies? WebRequestHandler %) (vals component)))] (let [h (request-handler provider)] (assert h) (let [server (http/start-server h component)] (assoc component :server server))) (throw (ex-info (format "aleph http server requires the existence of a component that satisfies %s" WebRequestHandler) {:component component}))) ) (stop [component] (when-let [server (:server component)] (.close server) (dissoc component :server)))) (def new-webserver-schema {:port s/Int s/Keyword s/Any}) (defn new-webserver [& {:as opts}] (->> opts (merge {:port 0}) (s/validate new-webserver-schema) map->Webserver)) (ns icecap.schema (:require [schema.core :as s]) (:import [java.net URI])) (def supported-schemes "The currently supported schemes." #{"http" "https"}) (defn get-scheme "Gets the scheme of a (String) URL." [url] (.getScheme (URI. url))) (def supported-scheme? "Does the given URL have a supported scheme?" (comp supported-schemes get-scheme)) (def SimpleRequest "A simple request." {:target (s/both s/Str (s/pred supported-scheme? "supported-scheme?"))}) (def RequestSpec (s/either SimpleRequest [(s/recursive #'RequestSpec)] #{(s/recursive #'RequestSpec)})) (ns auricle.subs (:require [re-frame.core :refer [reg-sub]])) (reg-sub :current-speaker (fn [db _] (:current-speaker db))) (reg-sub :db (fn [db _] db)) (reg-sub :loading (fn [db _] (:loading db))) (defn format-speaker [speaker] (-> speaker (update :love count) (update :smile count) (update :neutral count) (update :sleep count))) (defn format-speakers [speakers] (map format-speaker speakers)) (reg-sub :speakers (fn [db _] (-> db :speakers vals (or {}) (format-speakers)))) (ns my-noir-lab.views.welcome (:require [my-noir-lab.views.common :as common] [noir.content.getting-started]) (:use [noir.core :only [defpage]] [hiccup.core :only [html]])) (defpage "/welcome" [] (common/layout [:p "Welcome to my-noir-lab"])) (defpage "/my-page" [] (common/site-layout [:h1 "Welcome to my site!"] [:p#wrapper "Hope you like it!"]))(set-env! :source-paths #{"src/main/java" "src/test/java"} :dependencies '[[radicalzephyr/boot-junit "0.1.0" :scope "test"]]) (def +version+ "0.1.0") (require '[radicalzephyr.boot-junit :refer [junit]]) (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}} junit {:packages '#{net.zephyrizing.http_server}}) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns web.components.node-link (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom])) (defui Badge Object (render [this] (let [{:keys [kind]} (om/props this)] (dom/span #js {:className "badge"} (case kind "requirement" "r" "component" "c" "work-item" "w" "tag" "t" "?"))))) (def badge (om/factory Badge)) (defui NodeLink static om/Ident (ident [this props] [:node (:name props)]) static om/IQuery (query [this] [:name :title :kind]) Object (render [this] (let [{:keys [name title kind]} (om/props this)] (dom/div #js {:className "node-link"} (badge {:kind kind}) (dom/span #js {:className "node-link-title"} title) (dom/span #js {:className "node-link-name"} name))))) (def node-link (om/factory NodeLink {:key-fn :name})) (defproject onyx-app/lein-template "0.8.8.2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "0.4.0" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url http://www.apache.org/licenses/LICENSE-2.0 :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[jonase/eastwood "0.2.1"]]) (defproject cats "0.5.0-SNAPSHOT" :description "Category Theory abstractions for Clojure" :url "https://github.com/funcool/cats" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :cljsbuild {:test-commands {"test" ["node" "output/tests.js"]} :builds [{:id "test" :source-paths ["src" "test"] :notify-command ["node" "output/tests.js"] :compiler {:output-to "output/tests.js" :output-dir "output" :source-map true :static-fns true :cache-analysis false :main cats.runner :optimizations :none :target :nodejs :pretty-print true}}]} :jar-exclusions [#"\.swp|\.swo"] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"] [org.clojure/clojure "1.7.0-RC2"] [org.clojure/clojurescript "0.0-3308"]] :codeina {:sources ["src"] :output-dir "doc/codeina"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [lein-cljsbuild "1.0.6"]]}}) (defproject com.draines/postal "3.0.0-SNAPSHOT" :description "JavaMail on Clojure" :url "https://github.com/drewr/postal" :license {:name "MIT" :url "http://en.wikipedia.org/wiki/MIT_License" :distribution :repo :comments "Use at your own risk"} :deploy-repositories [["releases" :clojars]] :dependencies [[commons-codec "1.9"] [com.sun.mail/javax.mail "1.6.2"] [javax.mail/javax.mail-api "1.6.2"]] :global-vars {*warn-on-reflection* true} :profiles {:dev {:dependencies []} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}} :aliases {"test-all" ["with-profile" "dev,1.7:dev,1.8:dev,1.9" "test"]}) (defproject re-frame/lein-template "0.3.20" :description "Leiningen template for a Reagent web app that implements the re-frame pattern." :url "https://github.com/Day8/re-frame-template" :license {:name "MIT"} :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :scm {:name "git" :url "https://github.com/Day8/re-frame-template"} :eval-in-leiningen true) �� �I7����m� Mc^%�j �"�'C,1�2C5�9�=BC�EDJ�N�PiT�W�Z�_cCf�jom>o}s'w}x{Z}�Á��G�\� �R���j�M�����������խ��۸����x���u�)��Z���@���U�O�^���d���������\�f�9C � /{,\7x�#�${&�*�,�/~4�9:�;?�C�HiL�OS"V�Y�\r_iatfgl�p�rhs�t�vGz}���e���������ɠ��֨��[����~�s�h��� �}������O�����@�������x�������I�����a����� � Zv�0$� v&d)�*5-/r1�3�8I;V>�@�BCG�HPK4P�T.V�W�Xe\6^_�aOe�g�l�otxzy�|������F���������i�j���������/���������ν�������������� �o���A�j����������8�d���R�l�����? � a�t'�� =%�)�+�- 2(4}67.9$;G=�?�B;H.L�L�N)R�U]Z�]�b�dfh�j�m7qv�xH} �T��;��������)��P�4�͢D�(��s�}�@�������ƺ��-�G����h�r���E���j�������������(defproject io.aviso/twixt "0.1.8" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [io.aviso/tracker "0.1.0"] [ring/ring-core "1.2.1"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.4"] [de.neuland-bfi/jade4j "0.4.0"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-alpha4" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"] [org.onyxplatform/onyx-metrics "0.10.0.0-alpha1"] [org.onyxplatform/onyx "0.10.0-alpha4"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject funcool/postal "0.1.0-SNAPSHOT" :description "A parser, renderer and validation layer for POSTAL protocol for Clojure and ClojureScript." :url "http://github.com/funcool/postal" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :source-paths ["src"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "0.0-3308" :scope "provided"] [org.clojure/tools.reader "0.10.0-alpha1"] [funcool/cuerdas "0.5.0"]]) (ns blue-salamander.r3elements (:require-macros [blue-salamander.r3elements :as abbrev]) (:require [goog.events :as events] [clojure.string :as string])) (defn element-args [opts children] (cond (nil? opts) [nil children] (map? opts) [(clj->js opts) children] (object? opts) [opts children])) (abbrev/defn-r3-element Renderer) (abbrev/defn-r3-element Scene) (abbrev/defn-r3-element Mesh) (abbrev/defn-r3-element Object3D) (abbrev/defn-r3-element PerspectiveCamera) (defproject {{app-name}} "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.onyxplatform/onyx "0.8.0-alpha1"] [com.stuartsierra/component "0.2.3"]] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]] :source-paths ["env/dev" "src"]}}) (ns uswitch.bifrost.main (:require [uswitch.bifrost.system :refer (make-system)] [uswitch.bifrost.version :refer (current-version current-build-number)] [com.stuartsierra.component :refer (start)] [clojure.tools.logging :refer (info)] [clojure.tools.cli :refer (parse-opts)] [metrics.gauges :refer (gauge)]) (:gen-class)) (defn wait! [] (let [s (java.util.concurrent.Semaphore. 0)] (.acquire s))) (def cli-options [["-c" "--config CONFIG" "Path to EDN configuration file" :default "./etc/config.edn" :validate [string?]] ["-h" "--help"]]) (defn -main [& args] (let [{:keys [options summary]} (parse-opts args cli-options)] (when (:help options) (println summary) (System/exit 0)) (let [{:keys [config]} options] (info "Bifrost" (current-version)) (when (current-build-number) (gauge "build-number" (current-build-number))) (info "Starting Bifrost with config" config) (start (make-system (read-string (slurp config)))) (wait!)))) (ns cortex.wiring-test (:use [clojure.test]) (:use [cortex.core])) (deftest test-function-module (let [m (function-module inc)] (is (= 2 (output (calc m 1)))))) (deftest test-stack-module (let [m (function-module inc) st (stack-module [m m])] (is (= 3 (output (calc st 1)))))) {:user {:signing {:gpg-key "8ED1CE42"} :dependencies [[alembic "0.2.1"] [clj-stacktrace "0.2.7"] [criterium "0.4.2"] [org.clojure/tools.namespace "0.2.5"] [slamhound "1.5.3"] [spyscope "0.1.4"]] :plugins [[cider/cider-nrepl "0.8.0-SNAPSHOT"] [codox "0.6.6"] [jonase/eastwood "0.1.4"] [lein-ancient "0.5.5" :exclusions [commons-codec]] [lein-cljsbuild "1.0.3"] [lein-clojars "0.9.1"] [lein-cloverage "1.0.2"] [lein-difftest "2.0.0"] [lein-kibit "0.0.8"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"]] :injections [(require '[alembic.still :refer [distill]] '[clojure.repl :refer [source]] '[clojure.tools.namespace.repl :as repl] '[criterium.core :refer [bench quick-bench]] 'spyscope.core)] :aliases {"slamhound" ["run" "-m" "slam.hound"]} :search-page-size 50}} (ns klangmeister.ui.jam (:require [klangmeister.ui.graph :as graph] [klangmeister.actions :as action] [klangmeister.ui.editor :as editor])) (defn controls [handle! state] (let [{:keys [looping?]} (:main state) play (if-not looping? [:button {:on-click #(handle! (action/->Play :main))} "Loop"] [:button {:on-click #(handle! (action/->Stop :main))} "Stop"])] [:div {:class "controls"} play])) (defn render [handle! state-atom] [:div [:p "Now we know how to make both instruments and melodies, we can create whole songs. To make the experience more interactive, lets graph the notes we're playing, and loop them over and over again as we edit the synth and music."] [graph/render handle! state-atom] [editor/render :main (-> @state-atom :main :text) handle! @state-atom] [controls handle! @state-atom] [:div [:p "If you find anything confusing, refer back to the " [:a {:href "/klangmeister/synthesis"} "synthesis tutorial"] " or the " [:a {:href "/klangmeister/music"} " music tutorial"] "."]]]) (ns advent2017.day4 (:require [advent2017.core :refer [->words]])) (defn solve [xform lines] (reduce (fn [counter words] (if (= (count words) (count (set words))) (inc counter) counter)) 0 (map (comp xform ->words) lines))) (def solve-1 (partial solve identity)) (def solve-2 (partial solve frequencies)) (comment (assert (= (solve-1 ["aa bb cc dd ee"]) 1)) (assert (= (solve-1 ["aa bb cc dd aa"]) 0)) (assert (= (solve-1 ["aa bb cc dd aaa"]) 1)) (solve-1 (line-seq (clojure.java.io/reader "../2017/day4.data"))) (assert (= (solve-2 ["abcde fghij"]) 1)) (assert (= (solve-2 ["abcde xyz ecdab"]) 0)) (assert (= (solve-2 ["a ab abc abd abf abj"]) 1)) (assert (= (solve-2 ["iiii oiii ooii oooi oooo"]) 1)) (assert (= (solve-2 ["oiii ioii iioi iiio"]) 0)) (solve-2 (line-seq (clojure.java.io/reader "../2017/day4.data")))) (defproject todomvc-re-frame "0.11.0-rc2-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.52"] [reagent "0.9.0-rc1"] [re-frame "0.11.0-rc2-SNAPSHOT"] [binaryage/devtools "0.9.10"] [clj-commons/secretary "1.2.4"] [day8.re-frame/tracing "0.5.3"]] :plugins [[lein-shadow "0.1.6"]] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn todomvc.core/main}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (defproject org.onyxplatform/onyx-peer-http-query "0.10.0.0-beta3" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [ring/ring-core "1.5.1"] [org.clojure/java.jmx "0.3.3"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta3"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject funcool/suricatta "0.3.0" :description "High level sql toolkit for clojure (backed by jooq library)" :url "https://github.com/funcool/suricatta" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.6.0"] [org.jooq/jooq "3.6.0"] [cats "0.4.0" :exclusions [org.clojure/clojure]] [funcool/clojure.jdbc "0.5.1"] [org.clojure/core.async "0.1.346.0-17112a-alpha"]] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :profiles {:dev {:global-vars {*warn-on-reflection* true} :dependencies [[org.clojure/clojure "1.7.0-beta2"] [postgresql "9.3-1102.jdbc41"] [com.h2database/h2 "1.4.187"] [cheshire "5.4.0"]]}} :java-source-paths ["src/java"]) (defproject clj-json "0.4.3" :description "Fast JSON encoding and decoding for Clojure via the Jackson library." :url "http://github.com/mmcgrana/clj-json" :source-path "src/clj" :java-source-path "src/jvm" :javac-fork "true" :dependencies [[org.clojure/clojure "1.2.0"] [org.codehaus.jackson/jackson-core-asl "1.5.0"]] :dev-dependencies [[org.clojars.mmcgrana/lein-javac "1.2.1"]]) (defproject kevin "0.1.0-SNAPSHOT" :description "It's like Kevin Bacon is right here!" :url "http://imdb.com" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [com.datomic/datomic-pro "0.9.4556"] [hiccup "1.0.5"] [environ "0.4.0"] [ring-server "0.3.1"] [compojure "1.1.6"]] :plugins [[lein-ring "0.8.10"] [lein-beanstalk "0.2.7"]] :aws {:access-key ~(System/getenv "AWS_ACCESS_KEY_ID") :secret-key ~(System/getenv "AWS_SECRET_KEY") } :ring {:handler kevin.system/handler :init kevin.system/init :destroy kevin.system/destroy } :profiles {:production {:ring {:open-browser? false :stacktraces? false :auto-reload? false}} :dev {:source-paths ["dev"] :dependencies [[org.clojure/tools.namespace "0.2.4"] [org.clojure/java.classpath "0.2.2"] [javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]]}} :jvm-opts ["-Xmx1g" "-server"] ) (ns beehive.future-test) (ns word-count.test (:require [clojure.test :refer :all])) (load-file "word_count.clj") (deftest count-one-word (is (= {"word" 1} (phrase/word-count "word")))) (deftest count-one-of-each (is (= {"one" 1 "of" 1 "each" 1} (phrase/word-count "one of each")))) (deftest count-multiple-occurrences (is (= {"one" 1 "fish" 4 "two" 1 "red" 1 "blue" 1} (phrase/word-count "one fish two fish red fish blue fish")))) (deftest ignore-punctuation (is (= {"car" 1, "carpet" 1 "as" 1 "java" 1 "javascript" 1} (phrase/word-count "car : carpet as java : javascript!!&@$%^&")))) (deftest include-numbers (is (= {"testing" 2 "1" 1 "2" 1} (phrase/word-count "testing, 1, 2 testing")))) (deftest normalize-case (is (= {"go" 3} (phrase/word-count "go Go GO")))) (run-tests) (ns cadence.migrations "Define some migrations yo." (:require [cadence.model.migration :refer [defmigration]] (monger [collection :as mc] [operators :refer :all])) (:import (org.bson.types ObjectId))) (defn str-id "Helper function for generating an id when adding migrations." [] (str (ObjectId.))) ;; ## Define some migrations. (defmigration "Add roles to users" "5108749844ae8febda9c2ed4" (mc/update "users" {} {$set {:roles [:user]}} :multi true) (mc/update "users" {} {$unset {:roles ""}} :multi true)) (ns asid.wallet-repository (:require [clojurewerkz.neocons.rest :as nr] [clojurewerkz.neocons.rest.nodes :as nn] [clojurewerkz.neocons.rest.relationships :as nrl])) (defn initialize! [] (nr/connect! "http://localhost:7474/db/data/") (let [root (nn/get 0) asid-rels (nrl/outgoing-for root :types [:asid])] (if (seq asid-rels) {:root (-> asid-rels first :end nn/fetch-from)} (let [asid-root (nn/create {:name "asid root"})] (nrl/create root asid-root :asid) {:root asid-root})))) (defn save [ctxt wallet] (let [node (nn/create {:identity (:identity wallet)})] (nrl/create (:root ctxt) node :wallet) wallet)) (require '[cljs.build.api :as b]) (b/watch (b/inputs "test" "src") {:main 'bide.tests.benchmarks :target :nodejs :output-to "out/benchmarks.js" :output-dir "out/benchmarks" :optimizations :none :pretty-print true :verbose true}) (ns magician.list-test (:require [clojure.test :refer :all] [magician.list :refer :all])) (deftest numerics-test (is (= [1 2.0 -3] (numerics [1 2.0 -3]))) (is (= [] (numerics ["string"]))) (is (= [] (numerics []))) (is (= [1 3] (numerics [1, "two", 3, "four"])))) (ns tabswitcher.utils) (defn format-result [url] (clojure.string/replace url #"(^https?://)|(\?.+)" "")) zreladdr-y += 0x00008000 params_phys-y := 0x00000100 initrd_phys-y := 0x00800000 (ns mirthsync.cli-test (:require [mirthsync.cli :refer :all] [clojure.test :refer :all] [clojure.tools [cli :refer [parse-opts]]])) (deftest configuration (are [args] (let [conf (config args)] (is (seq (:exit-msg conf))) (is (= 1 (:exit-code conf)))) ["blah"] ["-z"] [""] ["-f"] nil) (is (= 3 (:verbosity (config ["-vvv" "push"])))) (let [conf {:errors nil, :exit-code 0, :verbosity 0, :password "", :arguments ["push"], :server "https://localhost:8443/api", :username "admin", :action "push", :target ".", :exit-msg nil}] (is (= conf (config ["push"])))) (let [conf {:errors nil, :exit-code 0, :force true, :verbosity 0, :password "", :arguments ["pull"], :server "https://localhost:8443/api", :username "admin", :action "pull", :target ".", :exit-msg nil}] (is (= conf (config ["-f" "pull"])))) (is (nil? (:force (config ["pull"]))))) (ns play-clj.repl (:require [play-clj.core :refer :all])) (defn s "Returns the screen map in `screen-object`. (s main-screen)" [screen-object] (-> screen-object :screen deref)) (defn s! "Associates values to the screen map in `screen-object`. Returns the new screen map. (s! main-screen :camera (orthographic))" [screen-object & args] (apply swap! (:screen screen-object) assoc args)) (defn e "Returns the entities in `screen-object`, optionally filtered by a supplied function. (e main-screen :player?)" ([screen-object] (-> screen-object :entities deref)) ([screen-object filter-fn] (vec (filter filter-fn (e screen-object))))) (defn e! "Resets the entities in `screen-object`, or associates values to the entities in `screen-object` that match the supplied function. Returns the entities that were changed. (e! main-screen []) (e! main-screen :player? :health 10)" ([screen-object new-entities] (reset! (:entities screen-object) new-entities)) ([screen-object filter-fn & args] (swap! (:entities screen-object) (fn [entities] (vec (for [e entities] (if (filter-fn e) (apply assoc e args) e))))) (e screen-object filter-fn))) (ns analyze-data.naive-bayes.predict (:require [clojure.core.matrix :as m] [analyze-data.greatest :refer [greatest]])) (defn predict "parameters: map produced by analyze-data.naive-bayes.train/train x: vector of term weights representing a document Return a vector of [most-likely-label score]" [parameters x] (let [{:keys [log-phi log-phi-y]} parameters log-probs (->> (m/mul log-phi x) (map m/esum) (m/add log-phi-y)) indexed-log-probs (map-indexed #(vector %1 %2) log-probs)] (reduce greatest indexed-log-probs))) (defproject replete "0.1.0" :dependencies [[org.clojure/clojure "1.7.0-RC2"] [org.clojure/clojurescript "0.0-3422"] [org.clojure/tools.reader "0.10.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]) (ns riemann.kairosdb-test (:use riemann.kairosdb [riemann.time :only [unix-time]] clojure.test) (:require [riemann.logging :as logging])) (logging/init) (deftest ^:kairosdb ^:integration kairosdb-test (let [k (kairosdb {:block-start true})] (k {:host "riemann.local" :service "kairosdb test" :state "ok" :description "all clear, uh, situation normal" :metric -2 :time (unix-time)})) (let [k (kairosdb {:block-start true})] (k {:service "kairosdb test" :state "ok" :description "all clear, uh, situation normal" :metric 3.14159 :time (unix-time)})) (let [k (kairosdb {:block-start true})] (k {:host "no-service.riemann.local" :state "ok" :description "Missing service, not transmitted" :metric 4 :time (unix-time)}))) (ns oxcart.pattern) (defn def? "λ AST -> Boolean Indicates whether the top level form of the argument AST is a def form." [ast] (-> ast :op (= :def))) (defn def->symbol "λ AST -> (Option Symbol) If the argument form was a def, returns the defined symbol. Otherwise the return value is garbage." [ast] (when (def? ast) (:name ast))) (ns lab-notebook.core (:require [om.core :as om] [om.dom :as dom])) (defonce appstate (atom {})) (defn app-container [cursor component] (reify om/IRender (render [this] (apply dom/div nil (dom/h1 nil "Lab notebook") nil (for [x (range 10)] (str x " ")))))) (om/root app-container appstate {:target (. js/document (getElementById "app"))}) (ns braid.client.gateway.subs (:require [re-frame.core :refer [reg-sub]] [braid.client.gateway.user-auth.subs] [braid.client.gateway.create-group.subs])) (reg-sub :gateway/field-value (fn [state [_ field]] (get-in state [:fields field :value]))) (reg-sub :gateway/field-errors (fn [state [_ field]] (get-in state [:fields field :errors]))) (reg-sub :gateway/field-status (fn [state [_ field]] (cond (get-in state [:fields field :typing?]) :typing (get-in state [:fields field :untouched?]) :untouched (not (empty? (get-in state [:fields field :errors]))) :invalid (< 0 (get-in state [:fields field :validations-left])) :loading :else :valid))) (reg-sub :gateway/fields-valid? (fn [state [_ fields]] (->> fields (map (fn [field] (empty? (get-in state [:fields field :errors])))) (every? true?)))) (reg-sub :gateway/action-mode (fn [state _] (get-in state [:action :mode]))) (ns scrape-trs.cascade-climbers.core (:require [scrape-trs.cascade-climbers [extract-pager-urls :refer [extract-all-pager-urls]] [extract-tr-urls :refer [extract-tr-urls]] [extract-trip-report :refer [extract-trip-report]]]) (:import scrape_trs.protocol.ScrapeTripReport)) (def base-url "http://cascadeclimbers.com/") (defrecord CCScrapeTripReport [] ScrapeTripReport (extract-pager-urls [this list-page] (extract-all-pager-urls list-page)) (extract-trip-report-urls [this list-page] (extract-tr-urls base-url list-page)) (extract-trip-report [this trip-report-url trip-report-page] (extract-trip-report trip-report-url trip-report-page))) (ns ember-cljs.core (:require [clojure.string :as string] [jquery] [ember])) (def Ember js/Ember) (def HomeRoute (.extend (.-Route Ember) #js {:model (fn [] "Dynamic Data")})) (def SmallComponentComponent (.extend (.-Component Ember) #js {:dynamicAttribute "foo" :thing "123" :actions #js {:myAction (fn [] (this-as this (.set this "dynamicAttribute" "abc")))}})) (let [application (.create (.-Application Ember)) router (.-Router application)] (set! (.-HomeRoute application) HomeRoute) (set! (.-SmallComponentComponent application) SmallComponentComponent) (.map router (fn [] (this-as r (.route r "home" #js {:path "/"}) (.route r "foo" #js {:path "/foo"}))))) (ns comic-reader.ui.site-list (:refer-clojure :exclude [get set]) (:require [re-frame.core :as re-frame] [comic-reader.ui.base :as base])) (defn get* [db] (clojure.core/get db :site-list)) (defn set* [db sites] (assoc db :site-list sites)) (defn setup! [] (re-frame/reg-sub :site-list (fn [app-db _] (get* app-db))) (re-frame/reg-event-db :set-site-list (fn [db [_ sites]] (set* db sites)))) (defn get [] (re-frame/subscribe [:site-list])) (defn set [sites] (re-frame/dispatch [:set-site-list sites])) (defn site-list [view-site sites] (base/list-with-loading {:heading "Comic Sites" :list-element [:ul.inline-list] :item->li (fn [site] [:a.large.button.radius {:on-click #(view-site (:id site))} (:name site)])} sites)) (defn site-list-container [] (let [sites (re-frame/subscribe [:site-list])] (fn [] [site-list (fn [site-id] (re-frame/dispatch [:view-comics site-id])) (deref sites)]))) (ns io.perun.gravatar (:require [io.perun.core :as perun] [gravatar :as gr])) (defn add-gravatar [file source-prop target-prop] (if-let [email (get file source-prop)] (assoc file target-prop (gr/avatar-url email)) file)) (defn find-gravatar [files source-prop target-prop] (let [updated-files (map #(add-gravatar % source-prop target-prop) files)] (perun/report-info "gravatar" "added gravatar to %s files" (count updated-files)) updated-files)) (ns runbld.util.data) ;; http://dev.clojure.org/jira/browse/CLJ-1468 (defn deep-merge "Like merge, but merges maps recursively." {:added "1.7"} [& maps] (if (every? map? maps) (apply merge-with deep-merge maps) (last maps))) (defn deep-merge-with "Like merge-with, but merges maps recursively, applying the given fn only when there's a non-map at a particular level." {:added "1.7"} [f & maps] (apply (fn m [& maps] (if (every? map? maps) (apply merge-with m maps) (apply f maps))) maps)) (ns user (:require [clojure.java.io :as io] [clojure.string :as str])) (require '[cljs.repl :as repl] '[cljs.repl.nashorn :as nashorn]) (cljs.repl/repl (cljs.repl.nashorn/repl-env) :output-dir "out" :cache-analysis true) (ns app.test.interactive (:use [app.interactive] [conjure.core] [clojure.test])) (deftest can-quit (let [input-command "quit\r"] (with-in-str input-command (interactive [])))) (ns active.clojure.test-runner (:require [doo.runner :refer-macros [doo-tests]] [active.clojure.condition-test] [active.clojure.debug-test] [active.clojure.lens-test] [active.clojure.monad-test] [active.clojure.record-test] [active.clojure.config-test])) (doo-tests 'active.clojure.condition-test 'active.clojure.debug-test 'active.clojure.lens-test 'active.clojure.monad-test 'active.clojure.record-test 'active.clojure.config-test) (ns quil.snippet (:require [quil.core :as q] [quil.util :refer [no-fn]] [clojure.test :refer [is]])) (def default-size [500 500]) (defmacro snippet-as-test [name opts & draw-fn-body] `(let [result# (promise)] (q/sketch :title (str '~name) :size default-size :renderer ~(:renderer opts :java2d) :setup (fn [] ~(:setup opts) (q/frame-rate 5)) :draw (fn [] (try ~@draw-fn-body (catch Exception e# (println "Error" e#) (.printStackTrace e#) (deliver result# e#)) (finally (delay 100) (q/exit)))) :on-close #(deliver result# nil)) (is (nil? @result#)))) (defmacro defsnippet [name opts & body] `(def ~(vary-meta name assoc :test `(fn [] (snippet-as-test ~name ~opts ~@body))) (fn [] (q/sketch :title (str '~name) :size ~default-size :setup (fn [] (q/frame-rate 5) ~(:setup opts)) :renderer ~(:renderer opts :java2d) :draw (fn [] ~@body))))) (ns lazytest.testable) (defprotocol Testable (get-tests [this] "Returns a seq of RunnableTest objects. Processes the :focus metadata flag. Default implementation recurses on all Vars in a namespace, unless that namespace has :get-tests metadata.")) (defn focused? "True if x has :focus metadata set to true." [x] (boolean (:focused (meta x)))) (defn filter-focused "If any items in sequence s are focused, return them; else return s." [s] (or (seq (filter focused? s)) s)) (defn- get-possibly-unbound-var [v] (when (bound? v) (var-get v))) (extend-protocol Testable clojure.lang.Namespace (get-tests [this-ns] (if-let [f (:get-tests (meta this-ns))] (do (assert (fn? f)) (f)) (filter-focused (mapcat get-tests (vals (ns-interns this-ns)))))) clojure.lang.Var (get-tests [this-var] (let [value (get-possibly-unbound-var this-var)] (when (extends? Testable (type value)) (filter-focused (get-tests value))))) java.util.Collection (get-tests [coll] (filter-focused (mapcat get-tests coll)))) (ns cadence.model (:refer-clojure :exclude [identity]) (:require [monger.core :as mg] [monger.collection :as mc] [cadence.model.validators :as is-valid] [noir.validation :as vali] [cemerick.friend :as friend]) (:use clojure.walk [cemerick.friend.credentials :only [hash-bcrypt]])) (defn- ensure-indexes [] (mc/ensure-index "users" {:username 1} {:unique 1 :dropDups 1})) (defn connect [connection-info] (if (:uri connection-info) (mg/connect-via-uri! (:uri connection-info)) (mg/connect!)) (let [db-name (:db-name connection-info)] (mg/authenticate db-name (:username connection-info) (into-array Character/TYPE (:password connection-info))) (mg/set-db! (mg/get-db db-name)) (ensure-indexes))) (defn get-user [username] (mc/find-one-as-map "users" {:username username})) (defn add-user [user] (mc/save "users" (assoc (select-keys user (for [[k v] user :when (vali/has-value? v)] k)) :password (hash-bcrypt (:password user))))) (def identity #(get friend/*identity* :current)) (defn get-phrase [] "completing this phrase is fun") (defproject sparkledriver "0.2.1" :description "A clojure wrapper for jBrowserDriver, which is a Selenium-compatible wrapper around JFX embedded WebKit." :url "https://github.com/jackrusher/sparkledriver" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [com.machinepublishers/jbrowserdriver "0.17.9"] [org.clojure/math.numeric-tower "0.0.4"]] :profiles {:dev {:dependencies [[org.slf4j/slf4j-simple "1.7.25"] [http-kit "2.3.0-alpha2"] [compojure "1.6.0"] [hiccup "1.0.5"]]} :codox {:dependencies [[codox-theme-rdash "0.1.2"]] :plugins [[lein-codox "0.10.3"]] :codox {:project {:name "sparkledriver"} :metadata {:doc/format :markdown} :themes [:rdash] :output-path "gh-pages"}}} :aliases {"codox" ["with-profile" "codox,dev" "codox"]} :deploy-repositories [["releases" :clojars]]) (defproject org.flatland/useful "0.10.1" :description "A collection of generally-useful Clojure utility functions" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/flatland/useful" :dependencies [[org.clojure/clojure "1.5.0"] [org.clojure/tools.macro "0.1.1"] [org.clojure/tools.reader "0.7.2"]] :aliases {"testall" ["with-profile" "dev,default:dev,1.3,default:dev,1.5,default" "test"]} :profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}}) (ns webapp.framework.client.init (:require [goog.net.cookies :as cookie] [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [webapp.framework.client.coreclient :as c :include-macros true] [cljs.core.async :refer [put! chan > (conj (vec screens) s/overlay-screen) (apply set-screen! s/nightmod) on-gl)) (defmacro load-game-file [n] (some->> (or (io/resource n) (throw (Throwable. (str "File not found: " n)))) slurp (format "(do %s\n)") jail/safe-read)) (ns cljs.quil.helpers.tools (:require [clojure.string :as string])) (defn bind-handler [prc processing-name handler] `(set! (~processing-name ~prc) (fn [] (~'with-applet ~prc (~@(if (list? handler) handler (list handler))))))) (defmacro bind-handlers [prc & opts] (map #(apply bind-handler (concat (list prc) %)) (partition 2 opts))) (defmacro with-shape [mode & body] `(do (cljs.quil.core/begin-shape ~mode) ~@body (cljs.quil.core/end-shape))) (ns bayes-table.core) (def model-ids [0.0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0]) (def models (map #(hash-map :b-wins (- 1 %) :a-wins %) model-ids)) (def priors [0.0, 0.02, 0.03, 0.05, 0.10, 0.15, 0.20, 0.25, 0.15, 0.05, 0.0]) (defn likelihoods [data models] (map #(data %) models)) (defn posteriors [data models priors] (let [products (map #(* %1 %2) (likelihoods data models) priors) total-probability (reduce + products)] (map #(/ % total-probability) products))) (enable-console-print!) (println) "Hello world!" {:foreign-libs [{:file "_rxjs/rx.all.js" :file-min "_rxjs/rx.all.minjs" :provides ["beicon.extern.rxjs"]}] :externs ["_rxjs/externs.js"]} (ns subman.views (:use [hiccup core page])) (defn index-page [] (html5 {:ng-app "subman"} [:head [:title "Subman - subtitle search service with api"] (include-css "/components/bootstrap/dist/css/bootstrap.css" "/components/bootstrap/dist/css/bootstrap-theme.css" "/components/font-awesome/css/font-awesome.css") (include-js "/components/jquery/jquery.js" "/components/bootstrap/dist/js/bootstrap.js" "/main.js")] [:body [:script "subman.core.run();"]])) ;; https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md {:user {:plugins [[lein-pprint "1.3.2" lein-ancient "0.7.0" lein-cloverage "1.2.2"]] :dependencies [[alembic "0.3.2"] [clj-kondo "RELEASE"] [antq "RELEASE"] [vvvvalvalval/scope-capture "0.3.2"]] :injections [(require 'sc.api)] :aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] "outdated" ["run" "-m" "antq.core"]}}} (ns beehive-http.core (:require [beehive.future :as f]) (:import (com.ning.http.client AsyncHttpClient RequestBuilder) (com.ning.http.client.providers.netty.response NettyResponse) (net.uncontended.precipice ServiceProperties RejectedActionException) (net.uncontended.precipice_implementations.asynchttp HttpAsyncService))) (set! *warn-on-reflection* true) (defn async-http-client [] (AsyncHttpClient.)) (defn request [url] (.build (doto (RequestBuilder.) (.setUrl ^String url) (.setRequestTimeout 500)))) (defn response [^NettyResponse response] {:status (.getStatusCode response) :headers (.getHeaders response) :body (.getResponseBodyAsStream response)}) (defn service [name] (let [properties (ServiceProperties.)] (HttpAsyncService. name properties (async-http-client)))) (defn execute [service request] (try (f/->CLJResilientFuture (.submitRequest ^HttpAsyncService service request)) (catch RejectedActionException e (f/->CLJRejectedFuture (.reason e)))))(defn swap [a i j] (assoc a j (a i) i (a j))) (defn generatePermutations [v n] (if (zero? n) (println (apply str v)) (loop [i 0 a v] (if (< i n) (do (generatePermutations a (dec n)) (recur (inc i) (swap a (if (even? n) i 0) n))) (generatePermutations a (dec n)))))) (if (not= (count *command-line-args*) 1) (do (println "Exactly one argument is required") (System/exit 1)) (let [word (->> *command-line-args* first vec)] (generatePermutations word (dec (count word))))) (ns backend.boot {:boot/export-tasks true} (:require [boot.core :refer :all] [reloaded.repl :refer [go]] [backend.main :refer :all])) (deftask start-app [p port PORT int "Port" r reload bool "Add reload mw"] (let [f (delay (setup-app! {:port port :reload reload :reload-dirs (get-env :directories)}) (go))] (with-post-wrap fileset @f fileset))) (ns comic-reader.frontend-dev (:require [clojure.java.browse :refer [browse-url]] [clojure.repl :refer :all] [comic-reader.system :refer [go start stop]] [figwheel-sidecar.repl-api :refer :all])) (defn- cwd [] (.getCanonicalPath (java.io.File. "."))) (def figwheel-config {:figwheel-options {:http-server-root "public" :css-dirs ["resources/public/css"]} :build-ids ["dev"] :all-builds [{:id "dev" :source-paths ["src/cljs" "test/cljs"] :figwheel {:devcards true} :compiler {:main "comic-reader.devcards" :optimizations :none :source-map true :source-map-timestamp true :output-to "resources/public/js/compiled/devcards.js" :output-dir (str (cwd) "/resources/public/js/compiled/devcards_out") :asset-path "js/compiled/devcards_out"}}]}) (defn start-dev! [& args] (apply go args) (start-figwheel! figwheel-config) (start-autobuild) (browse-url "http://localhost:10555/devcards")) (defn stop-dev! [] (stop-autobuild) (stop-figwheel!) (stop)) (ns staircase.views.footer (:require [staircase.views.header :refer (tool-list)] [hiccup.element :refer (link-to unordered-list mail-to)])) (defn snippet [config] [:section.footer.dark {:ng-controller "FooterCtrl"} [:div.panel.panel-info {:ng-show "showCookieMessage"} [:div.panel-heading "Cookies"] [:div.panel-body [:button.btn.btn-warning.pull-right {:ng-click "showCookieMessage = false"} "understood"] [:p "This site uses cookies to provide essential functionality, such as remembering your identity. You can find out details of what information we store here " (link-to "/cookies" "here") ". By dismissing this message you agree to let this application store the data it needs to operate."] ]] [:div.row [:div.col-sm-8.site-map [:ul [:li (link-to "/" "Home")] [:li (link-to "/about" "Help")] [:li "Tools" [:ul.row (tool-list {:class "col-sm-6"})]]]] [:div.col-sm-4.contacts (unordered-list (for [[icon addr text] (:contacts config)] (link-to addr [:i.fa.fa-fw.fa-2x {:class icon}] " " text)))] ] ]) (ns braid.client.ui.styles.vars (:require [garden.units :refer [rem px]] [garden.arithmetic :as m])) (def avatar-size (rem 2)) (def pad (rem 1)) (def card-width (rem 17)) (def top-bar-height (rem 2)) (def sidebar-width (m/+ top-bar-height (m/* pad 2))) (def grey-text "#888") (def dark-bg-color "#3A4767") (def border-radius (px 3)) (def private-thread-accent-color "#5f7997") (def limbo-thread-accent-color "#CA1414") (def archived-thread-accent-color "#AAAAAA") (defproject govuk/blinken "0.1.0-SNAPSHOT" :description "Dashboard to integrate multiple alert systems" :url "https://github.com/alphagov/blinken" :license {:name "MIT" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [docopt "0.6.1"] [http-kit "2.1.16"] [cheshire "5.2.0"] [hiccup "1.0.4"] [clj-yaml "0.4.0"] [compojure "1.1.6"] [lein-daemon "0.5.4"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [org.clojure/tools.logging "0.2.6"]] :plugins [[lein-daemon "0.5.4"]] :main govuk.blinken) (defproject org.onyxplatform/onyx-datomic "0.8.1.0-alpha9" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha9"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject inet.data "0.3.2-SNAPSHOT" :description "Represent and manipulate various Internet entities as data." :url "http://github.com/llasram/inet.data" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.4.0"] [hier-set "1.1.1"]] :plugins [[lein-ragel "0.1.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java" "target/ragel"] :ragel-source-paths ["src/ragel"] :javac-options ["-g"] :prep-tasks [ragel javac] :warn-on-reflection true :profiles {:dev {:dependencies [[byteable "0.2.0"] [criterium "0.2.1"]]}}) (ns circleci.web.test-web (:require [clj-http.client :as http]) (:use midje.sweet)) (def site "http://localhost:8080") (fact "/ returns 200" (http/get site) => (contains {:status 200}))(ns overtone.sc.machinery.ugen.metadata.basicops (:use [overtone.sc.machinery.ugen common check])) ;;see binaryopugen.clj and unaryopugen.clj for detailed docspecs for binary and unary opugens. (def specs [ {:name "UnaryOpUGen", :args [{:name "a" :doc "input"}], :rates #{:dr :ir :ar :kr} :default-rate :auto :categories [["Unary Operations"]] :doc "Multi-function unary ugen representing many operations (e.g. neg, abs, floor, sqrt, midicps, etc...)"} {:name "BinaryOpUGen", :args [{:name "a" :doc "First input"} {:name "b" :doc "Second input"}], :rates #{:dr :ir :ar :kr} :default-rate :auto :doc "Multi-function binary ugen representing many operations (e.g. +, *, <, min, max, etc...)"} {:name "MulAdd", :args [{:name "in" :doc "Input to modify"} {:name "mul" :doc "Multiplier Value"} {:name "add" :doc "Addition Value"}], :rates #{:dr :ir :ar :kr} :default-rate :auto :doc "Multiply the input source by mul then add the add value. Equivalent to, but more efficient than, (+ add (* mul in))"} ]) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.6-SNAPSHOT"] [org.thnetos/cd-client "0.3.1" :exclusions [org.clojure/clojure]] [clj-stacktrace "0.2.4"] [clojure-complete "0.1.4" :exclusions [org.clojure/clojure]] [org.clojure/tools.nrepl "0.0.6-SNAPSHOT"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java") (defproject onyx-app/lein-template "0.11.1.0-alpha2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject jungerer "0.2.0" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.7.0"] [net.sf.jung/jung-algorithms "2.1.1"] [net.sf.jung/jung-api "2.1.1"] [net.sf.jung/jung-graph-impl "2.1.1"] [net.sf.jung/jung-io "2.1.1"] [net.sf.jung/jung-visualization "2.1.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true} :resource-paths ["dev-resources"]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha12"]] :resource-paths ["dev-resources"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]] :resource-paths ["dev-resources"]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject onyx-app/lein-template "0.10.0.0-beta6" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject overtone "0.7.0-SNAPSHOT" :description "Programmable Music." :url "http://project-overtone.org" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/core.incubator "0.1.0"] [org.clojure/data.json "0.1.2"] [overtone/scsynth-jna "0.1.2-SNAPSHOT"] [overtone/at-at "0.2.1"] [overtone/osc-clj "0.7.1"] [overtone/byte-spec "0.3.1"] [overtone/midi-clj "0.2.1"] [clj-glob "1.0.0"] [org.clojure/core.match "0.2.0-alpha6"] [seesaw "1.3.0"]] :jvm-opts ["-Xms256m" "-Xmx1g" "-XX:+UseConcMarkSweepGC"]) {:user {:env {:squiggly {:checkers [:eastwood] :eastwood-exclude-linters [:kibit]}} :plugin-repositories [["private-plugins" {:url "private repo url"}]] :singing {:gpg-key "matthew.russell@wormbase.org"} :dependencies [[clojure-ini "0.0.2"] [me.raynes/fs "1.4.6"]] :plugins [[jonase/eastwood "0.2.3"] [lein-ancient "0.6.10"] [lein-bikeshed "0.4.1"] [lein-ns-dep-graph "0.1.0-SNAPSHOT"] [refactor-nrepl "2.2.0"]] ;; VisualVM profiling opts ;; :jvm-opts ["-Dcom.sun.management.jmxremote" ;; "-Dcom.sun.management.jmxremote.ssl=false" ;; "-Dcom.sun.management.jmxremote.authenticate=false" ;; "-Dcom.sun.management.jmxremote.port=43210"]} :repl {:dependencies [[acyclic/squiggly-clojure "0.1.6"] [cider/cider-nrepl "0.15.0-SNAPSHOT"] [datomic-schema-grapher "0.0.1"] [org.clojure/tools.nrepl "0.2.12"]] :plugins [[cider/cider-nrepl "0.15.0-SNAPSHOT"]]} :repl-options {:init (set! *print-length* 10)}}} {:user {:plugins [[lein-vanity "0.2.0" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.5"] [jonase/eastwood "0.2.0"] ;;[com.billpiel/sayid "0.0.10"] ] :dependencies [[slamhound "1.5.5"]] :aliases {"slamhound" ["run" "-m" "slam.hound"]}}} (ns cglossa.search-inputs (:require [clojure.string :as str])) (defn cwb-search-inputs [{:keys [search-query]}] (let [displayed-query (-> @search-query :query (str/replace #"\[\(?\w+=\"(.+?)\"(?:\s+%c)?\)?\]" "$1"))] [:div.row-fluid [:form.form-inline.span12 [:div.span10 [:input.span12 {:ref "searchfield" :type "text" :value displayed-query}]]]])) (def components {:cwb cwb-search-inputs :cwb-speech (fn [] [:div "CWB-SPEECHE"])}) (ns cadence.security (:require [cemerick.friend :as friend] (cemerick.friend [workflows :as workflows] [credentials :as creds]) ;[oauth.client :as oauth] [cadence.model :as model]) (:use [noir.core :only [pre-route]])) (def friend-settings {:credential-fn (partial creds/bcrypt-credential-fn model/get-user) :workflows [(workflows/http-basic)] :login-uri "/login" :unauthorized-redirect-uri "/login" :default-landing-uri "/"}) (pre-route [:any "/user.*"] {:as req} (friend/authenticated nil)) (ns comic-reader.ui (:require [re-frame.core :as re-frame] [reagent.ratom :refer-macros [reaction]]) (:require-macros [comic-reader.macro-util :refer [defcomponent-2 with-optional-tail]])) (defn loading [] [:img.loading {:src "img/loading.svg"}]) (defn site-element [comic] ^{:key (:id comic)} [:li [:a (:name comic)]]) (defn site-list [comic-list] (with-optional-tail [:div [:h1 "Comics List"]] (cond (= :loading comic-list) [loading] (seq comic-list) (into [:ul] (map site-element comic-list)) :else nil))) (ns leftpad.handler (:require [compojure.core :refer :all] [compojure.route :as route] [compojure.handler :as handler] [ring.middleware.json :refer [wrap-json-response]] [ring.middleware.params :refer [wrap-params]] [ring.util.response :refer [response]] [ring.middleware.defaults :refer [wrap-defaults site-defaults]])) (defn leftpad [mystr len] (if (= len "0") mystr (format (str "%" (str len) "s") mystr))) (defroutes app-routes (GET "/" {:keys [params] :as request} (response {:foo (leftpad (get params :str "") (get params :len "0"))})) (route/not-found "Not Found")) (def app (-> (handler/api app-routes) (wrap-params) (wrap-json-response))) (defscreen main-screen :on-show (fn [screen entities] (update! screen :renderer (model-batch) :attributes (let [attr-type (attribute-type :color :ambient-light) attr (attribute :color attr-type 0.8 0.8 0.8 1)] (environment :set attr)) :camera (doto (perspective 75 (game :width) (game :height)) (position! 0 0 3) (direction! 0 0 0) (near! 0.1) (far! 300))) (let [attr (attribute! :color :create-diffuse (color :blue)) model-mat (material :set attr) model-attrs (bit-or (usage :position) (usage :normal)) builder (model-builder)] (model (model-builder! builder :create-box 2 2 2 model-mat model-attrs) (vector-3 0 0 0)))) :on-render (fn [screen entities] (clear! 1 1 1 1) (doto screen (perspective! :rotate-around (vector-3 0 0 0) (vector-3 0 1 0) 1) (perspective! :update)) (render! screen entities))) (set-game-screen! main-screen) (defproject org.onyxplatform/onyx-datomic "0.8.11.2-SNAPSHOT" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.11"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject d-cent "0.0.1-SNAPSHOT" :description "Cool new project to do things and stuff" :min-lein-version "2.0.0" :test-paths ["test" "integration"] :dependencies [[org.clojure/clojure "1.6.0"] [http-kit "2.1.16"] [org.clojure/tools.logging "0.3.1"] [bidi "1.12.0"] [ring "1.3.2"] [org.apache.httpcomponents/httpclient "4.3.5"] [com.cemerick/friend "0.2.1"] [de.ubercode.clostache/clostache "1.4.0"] [com.taoensso/tower "3.0.2"] [clj-oauth "1.5.1"] [com.ashafa/clutch "0.4.0"]] :main d-cent.core :ring {:handler d-cent.core/app :port 8080} :profiles {:dev {:dependencies [[midje "1.5.1"] [ring/ring-mock "0.2.0"] [javax.servlet/servlet-api "2.5"]] :plugins [[lein-ring "0.9.1"] [lein-midje "3.1.3"] [jonase/eastwood "0.2.1"]]}}) (defproject parbench "1.3.2" :description "Parallel HTTP Benchmarker/Visualizer" :main parbench.core :jvm-opts ["-client"] :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/tools.cli "0.2.1"] [noir-async "0.1.2"] [cheshire "2.0.4"] [log4j/log4j "1.2.16"] [org.clojure/data.finger-tree "0.0.1"] [org.clojure/tools.logging "0.2.3"]]) (defproject onyx-app/lein-template "0.12.0.0-rc1" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.6-SNAPSHOT"] [org.thnetos/cd-client "0.3.1" :exclusions [org.clojure/clojure]] [clj-stacktrace "0.2.4"] [clojure-complete "0.1.4" :exclusions [org.clojure/clojure]] [org.clojure/tools.nrepl "0.2.0-SNAPSHOT"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :repositories { "sonatype" {:url "http://oss.sonatype.org/content/repositories/snapshots" } } :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java") (defproject chestnut/lein-template "0.7.0" :description "A Leiningen template for a ClojureScript setup with Figwheel, Austin, Om." :url "https://github.com/plexus/chestnut" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in-leiningen true :dependencies [[org.clojure/core.async "0.1.346.0-17112a-alpha"] [com.github.jnr/jnr-process "1.0-SNAPSHOT"] [clj-webdriver "0.7.0-SNAPSHOT"]] :aliases {"test" ["run" "-m" "chestnut.test.integration"] }) (defproject mvxcvi/merkle-db "0.1.0-SNAPSHOT" :description "Hybrid data store built on merkle trees." :url "https://github.com/greglook/merkle-db" :license {:name "Public Domain" :url "http://unlicense.org/"} :deploy-branches ["master"] :pedantic? :abort :dependencies [[org.clojure/clojure "1.9.0-alpha14"] [mvxcvi/blocks "0.8.0"]]) {:user { :plugins [[cider/cider-nrepl "0.12.0-SNAPSHOT"] [jonase/eastwood "0.2.3"]] :dependencies [[org.clojure/clojure "1.7.0"] [datomic-schema-grapher "0.0.1"] [com.datomic/datomic-pro "0.9.5350"] [me.raynes/fs "1.4.6"] [clj-stacktrace "0.2.8"] [acyclic/squiggly-clojure "0.1.5"] ^:replace [org.clojure/tools.nrepl "0.2.12"] ;; Consider using typed? [org.clojure/core.typed "0.3.22"] ] } ;; VisualVM profiling opts :jvm-opts ["-Dcom.sun.management.jmxremote" "-Dcom.sun.management.jmxremote.ssl=false" "-Dcom.sun.management.jmxremote.authenticate=false" "-Dcom.sun.management.jmxremote.port=43210"]} (ns chicken-coop.core) (defn foo "I don't do a whole lot." [x] (println x "Hello, World!")) (ns cenna.repl (:require [cenna.parser :as parser])) (defn repl [] (do (print "Cenna> ") (flush)) (let [input (read-line)] (println (parser/parse input)) (recur))) (defn -main [& args] (println "Welcome to Cenna REPL") (println "=====================") (flush) (repl)) (ns isla.library (:use [clojure.pprint]) (:require [clojure.string :as str]) (:require [isla.user :as user]) (:require [isla.utils :as utils])) (defn get-initial-env [& args] (def extra-types (first args)) { :ret nil :ctx { ;; fns "write" (fn [env str] (utils/output str) ;; print out str) ;; add to context ;; types :types (if (nil? extra-types) user/types (merge extra-types user/types)) } }) {:name "strm-take" :path "" :repeat true :generator true :func (let [cnt (volatile! 0) chunk (volatile! []) reset-cnt (constantly 0) reset-chunk (constantly []) reset-send (fn[] (let [ret @chunk] (vswap! cnt reset-cnt) (vswap! chunk reset-chunk) ret)) inc-add (fn[v] (vswap! cnt #(inc %)) (vswap! chunk #(conj % v)) (pg/more))] (fn[n v] (cond (pg/eoi? v) (if (> @cnt 0) (reset-send) (pg/done)) (= @cnt n) (reset-send) :else (inc-add v)))) :description "Streaming take" } (ns flatland.useful.debug-test (use flatland.useful.debug clojure.test)) (defmacro test-? [form] `(let [form# '~form expected# ~form collector# (java.io.StringWriter.)] (binding [*out* collector#] (is (= expected# (? ~form))) (let [written# (str collector#)] (are [val#] (.contains written# (pr-str val#)) form# expected#))))) (deftest ?-test ;; macro to avoid repeating expr with various levels of quoting (test-? (str "test" "more"))) (ns clojure-club.sudoku.mgrimm (:refer-clojure :exclude [==]) (:use [clojure.core.logic]) (:require [clojure.core.logic.fd :as fd] [clojure-club.sudoku.example-problems :as ex])) (defn solve [initial] (let [cells (mapv (fn [c l] (do (if c (== c l)) l)) (apply concat initial) (repeatedly 81 lvar)) rows (partition 9 cells) cols (apply map vector rows) blks (for [y (range 0 81 27) x (range 0 9 3)] (flatten (take-nth 3 (partition 3 (subvec cells (+ y x) (+ y 27))))))] (run 1 [q] (== q cells) (everyg #(fd/in % (fd/interval 1 9)) cells) (everyg fd/distinct rows) (everyg fd/distinct cols) (everyg fd/distinct blks)))) (defproject buddy "0.4.0" :description "Security library for Clojure" :url "https://github.com/funcool/buddy" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[buddy/buddy-core "0.4.0"] [buddy/buddy-sign "0.4.0"] [buddy/buddy-auth "0.4.0"] [buddy/buddy-hashers "0.4.0"]] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]) (defproject onyx-plugin/lein-template "0.7.0" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.onyxplatform/onyx "0.7.0"]] :eval-in-leiningen true) (ns decktouch.handler (:require [decktouch.dev :refer [browser-repl start-figwheel]] [compojure.core :refer [GET POST defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [ring.middleware.params :refer [wrap-params]] [ring.middleware.reload :refer [wrap-reload]] [ring.adapter.jetty :as jetty] [selmer.parser :refer [render-file]] [environ.core :refer [env]] [prone.middleware :refer [wrap-exceptions]] [decktouch.mtg-card-master :as mtg-card-master] [clojure.data.json :as json])) (defroutes routes (GET "/" [] (render-file "templates/index.html" {:dev (env :dev?)})) (GET "/data/input/:query" [query] (json/write-str (mtg-card-master/get-cards-matching-query query))) (POST "/data/card" request (let [card-name ((request :params) "card-name")] (str (mtg-card-master/get-card-info card-name)))) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-reload (wrap-params routes site-defaults))] (if (env :dev?) (wrap-reload (wrap-exceptions handler)) handler))) (ns caesium.randombytes-test (:require [caesium.randombytes :as r] [clojure.test :refer [deftest is]] [caesium.byte-bufs :as bb]) (:import (java.nio ByteBuffer))) (deftest randombytes-test (let [buf (r/randombytes 10)] (is (= 10 (bb/buflen buf))))) (deftest random-to-buf!-test (let [buf (bb/alloc 20)] (r/random-to-buf! buf 10) (let [s (seq (bb/->bytes buf)) head (take 10 s) tail (drop 10 s)] (is (not= (repeat 10 0) head)) (is (= (repeat 10 0) tail))))) (ns onyx.static.default-vals (:require [onyx.information-model :refer [model]])) (def default-vals "Indexes all keys to their defaul values for a direct look up." (reduce (fn [result section] (reduce-kv (fn [all k v] (assoc all k (:default v))) result (:model section))) {} (vals model))) (defn arg-or-default [k opts] {:post [(not (nil? %))]} (let [v (get opts k (get default-vals k))] (when (nil? v) (throw (ex-info "Default for config key not found." {:key k}))) v)) ; :mode=clojure: (defproject spraff "1.0.0-SNAPSHOT" :description "IRC bot." :dependencies [ [org.clojure/clojure "1.2.1"] [irclj "0.4.1-SNAPSHOT"] ] :dev-dependencies [ [marginalia "0.5.1"]] :main spraff.core) (ns decktouch.card-data (:require [reagent.core :as reagent :refer [atom]])) (defn get-card-list-from-storage [] "Get the list of cards from localStorage, or [] if it is empty" (let [key "card-list" list (.getItem js/localStorage key)] (if (undefined? list) [] (map (fn [n] {:name n}) (js->clj (.parse js/JSON list)))))) (def card-list (atom (get-card-list-from-storage))) (defn add-card-to-list! [card-name] (swap! card-list conj {:name card-name}))(ns faceboard.state (:require [faceboard.logging :refer [log log-err log-warn log-info]] [faceboard.data.sample_board :refer [sample-board]])) (defonce app-state (atom {:model {} :ui {:view :blank :view-params nil :editor-path nil :loading? 0 :extended-set #{} :filters {:expanded-set #{:countries} :active {:countries #{} :tags #{} :socials #{}}}} :anims {} :cache {:tabs {}}}))(ns bob.test (:use clojure.test)) (load-file "bob.clj") (deftest responds-to-shouts (is (= "Woah, chill out!" (bob/response-for "SHOUTING")))) (deftest responds-to-questions (is (= "Sure." (bob/response-for "A question?")))) (deftest responds-to-statements (is (= "Whatever." (bob/response-for "A statement.")))) (deftest responds-to-silence (is (= "Fine, be that way." (bob/response-for "")))) (run-tests) (ns om-forms.core) (defmacro with-options [options & body] `(binding [om-forms.core/*options* (cljs.core/merge om-forms.core/*options* ~options)] ~@body))(ns engulf.core (:gen-class) (:require [engulf.benchmark :as benchmark] [noir.server :as nr-server]) (:use aleph.http noir.core lamina.core)) (defn start-webserver [args] (nr-server/load-views "src/engulf/views") (let [mode (keyword (or (first args) :prod)) port (Integer. (get (System/getenv) "PORT" "3000")) noir-handler (nr-server/gen-handler {:mode mode})] (start-http-server (wrap-ring-handler noir-handler) {:port port :websocket true}))) (defn -main [& args] (start-webserver args) (println "Engulf Started!")) (ns discuss.references "Handle interaction with already existing references, for example showing usages in other statements / arguments or providing a form to use it in the own statement." (:require [om.core :as om] [om.dom :as dom] [discuss.communication :as com])) (defn show-usages "Show usages of the provided reference. @TODO" [reference] (comment "Make AJAX call via API to get some information about the reference.")) (defn dialog "Show a dialog to give the user the option to choose, whether she wants to get some information about the statement or just wants to construct a new statement." [] (reify om/IRender (render [_] (dom/div #js {:className "text-center"} (dom/button #js {:className "btn btn-primary"} "Find usages of this reference") " " (dom/button #js {:className "btn btn-primary"} "Create new Statement with this reference")))))(ns advent-2018.day-08 (:require #?(:cljs [planck.core :refer [slurp read-string]]) [#?(:clj clojure.java.io :cljs planck.io) :as io])) (def input (-> "advent_2018/day_08/input" io/resource slurp)) (defn parse-license [input] (let [node+more (fn node+more [[child-count metadata-count & more]] (let [[children more] (reduce (fn [[children more] _] (let [[child more] (node+more more)] [(conj children child) more])) [[] more] (range child-count)) [metadata more] (split-at metadata-count more)] [{:children children, :metadata metadata} more])) nums (map read-string (re-seq #"\d+" input))] (first (node+more nums)))) (defn part-1 [] (->> (tree-seq (comp seq :children) :children (parse-license input)) (mapcat :metadata) (reduce +))) (defn part-2 [] (let [node-value (fn node-value [{:keys [children metadata]}] (if (empty? children) (reduce + metadata) (->> metadata (keep #(get children (dec %))) (map node-value) (reduce +))))] (node-value (parse-license input)))) (ns comic-reader.scrape (:require [clojure.string :refer [trim]] [net.cgrand.enlive-html :as html]) (:import java.net.URL)) (def sites [{:name "Manga Fox" :url "http://mangafox.me/manga/" :selector [:div.manga_list :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name name :url url})} (let [canonical-url "http://www.mangareader.net/"] {:name "Manga Reader" :url (str canonical-url "alphabetical") :selector [:div.series_alpha :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name (trim name) :url (str canonical-url url)})})]) (defn fetch-url [url] (html/html-resource (java.net.URL. url))) (defn fetch-comic-list [{:keys [url selector normalize]}] (map normalize (html/select (fetch-url url) selector))) (ns onyx.state.state-extensions) (defmulti initialise-log (fn [log-type event] log-type)) (defmulti close-log (fn [log] (type log))) ;; For onyx to implement ;; We can implement log storage for Kafka and maybe ZK (if small data is used and we gc) (defmulti store-log-entry "Store state update [op k v] entries in a log" (fn [log event entry] (type log))) (defmulti playback-log-entries "Read state update [op k v] entries from log" (fn [log event state] (type log))) (defmulti store-seen-ids "Store seen ids in a log. Ideally these will be timestamped for auto expiry" (fn [log event seen-ids] (type log))) (defmulti playback-seen-ids "Read seen ids from a log" (fn [log event bucket-state apply-fn] (type log))) (ns com.draines.postal.core (:use [com.draines.postal.sendmail :only [sendmail-send]] [com.draines.postal.smtp :only [smtp-send]] [com.draines.postal.stress :only [spam]])) (defn send-message [msg] (when-not (and (:from msg) (:to msg) (:subject msg) (:body msg)) (throw (Exception. "message needs at least :from, :to, :subject, and :body"))) (if (:host (meta msg)) (smtp-send msg) (sendmail-send msg))) (defn stress [profile] (let [defaults {:host "localhost" :port 25 :from "foo@lolz.dom" :to "bar@lolz.dom" :num 1 :delay 100 :threads 1} {:keys [host port from to num delay threads]} (merge defaults profile)] (println (format "sent %s msgs to %s:%s" (spam host port from to num delay threads) host port)))) (ns tiny-clj.core (:require [compojure.core :refer [defroutes GET PUT POST DELETE ANY]] [compojure.handler :refer [site]] [compojure.route :as route] [clojure.java.io :as io] [ring.adapter.jetty :as jetty] [environ.core :refer [env]] [net.cgrand.enlive-html :as html])) (html/deftemplate base "templates/main.html" [title h1] [:head :title] (html/content title) [:body :h1] (html/content h1)) (defn home [] {:status 200 :headers {"Content-Type" "text/html"} :body (#'base "This is a test" "Wazzzup")}) (defn login [] {:status 200 :headers {"Content-Type" "text/html"} :body (#'base "Login" "Sux to be you")}) (defroutes app (GET "/" [] (home)) (GET "/login" [] (login)) (ANY "*" [] (route/not-found (slurp (io/resource "404.html"))))) (defn -main [& [port]] (let [port (Integer. (or port (env :port) 5000))] (jetty/run-jetty (site #'app) {:port port :join? false}))) (ns afterglow.effects.color-test (:require [clojure.test :refer :all] [afterglow.effects.color :refer :all] [afterglow.channels :as channels] [com.evocomputing.colors :as colors] [afterglow.fixtures.chauvet :as chauvet] [taoensso.timbre :as timbre :refer [error warn info debug spy]])) (deftest test-extract-rgb (testing "Finding RGB color channels") (is (= [:12-channel-mix-uv] (map :mode (#'afterglow.effects.color/find-rgb-heads [(chauvet/slimpar-hex3-irc)]))))) (ns gol.server (:require [ring.middleware.file :refer [wrap-file]] [ring.middleware.file-info :refer [wrap-file-info]] [hiccup.page :refer [html5 include-js include-css]] [hiccup.middleware :refer [wrap-base-url]] [compojure.core :refer :all] [compojure.route :as route] [compojure.handler :as handler] [ring.util.response :as response])) (defn index-page [request] (html5 [:head (include-css "//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.0/normalize.min.css" "/css/build/styles.css")] [:body [:div#app] (include-js "//fb.me/react-0.9.0.min.js" "/js/build/goog/base.js" "/js/build/gol.js") [:script {:type "text/javascript"} "goog.require('gol.client');"]])) (defroutes main-routes (GET "/" [] index-page) (route/resources "/") (route/not-found "Page not found")) (def app (-> (handler/site main-routes) (wrap-base-url))) (ns edge.kick.builder (:require [integrant.core :as ig] [juxt.kick.alpha.core :as kick])) (defn load-provider-namespaces [kick-config] (doseq [provider (keys kick-config) :when (= (namespace provider) "kick")] (when (= (namespace provider) "kick") (let [sym (symbol (str "juxt.kick.alpha.providers." (name provider)))] (try (do (require sym) sym) (catch java.io.FileNotFoundException _)))))) (defmethod ig/init-key :edge.kick/builder [_ v] (load-provider-namespaces v) (kick/watch v)) (defmethod ig/halt-key! :edge.kick/builder [_ close] (close)) (defmethod ig/suspend-key! :edge.kick/builder [_ _]) (defmethod ig/resume-key :edge.kick/builder [key opts old-opts old-impl] (prn opts old-opts) (if (= opts old-opts) old-impl (do (ig/halt-key! key old-impl) (ig/init-key key opts)))) (ns cglossa.core (:require [reagent.core :as reagent :refer [atom]] [plumbing.core :as plumbing :refer [map-vals]] [cglossa.centre :as centre])) (def state {:showing-results false}) (def data {:categories ["ku" "hest"] :users ["per" "kari"]}) (defonce app-state (into {} (map-vals atom state))) (defonce app-data (into {} (map-vals atom data))) (defn header [] [:div.navbar.navbar-fixed-top [:div.navbar-inner [:div.container [:span.brand "Glossa"]]]]) (defn app [s d] [:div [header] [:div.container-fluid [centre/top s d] [centre/bottom s d]] [:div.app-footer [:img.textlab-logo {:src "img/tekstlab.gif"}]]]) (defn ^:export main [] (reagent/render-component (fn [] [app app-state app-data]) (. js/document (getElementById "app")))) (defproject org.onyxplatform/onyx-datomic "0.7.0.7" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.onyxplatform/onyx "0.7.2"]] :release-tasks [["auto-release" "checkout" "master"] ["auto-release" "merge-no-ff" "develop"] ["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["auto-release" "update-release-notes"] ["auto-release" "update-readme-version"] ["vcs" "commit"] ["vcs" "tag" "v"] ["deploy" "clojars"] ["vcs" "push"] ["auto-release" "checkout" "develop"] ["auto-release" "merge" "master"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"] ["vcs" "push"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [com.andrewmcveigh/lein-auto-release "0.1.11"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject caesium "0.8.0-SNAPSHOT" :description "libsodium for clojure" :url "https://github.com/lvh/caesium" :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [com.github.jnr/jnr-ffi "2.0.9"] [commons-codec/commons-codec "1.10"]] :main ^:skip-aot caesium.core :target-path "target/%s" :profiles {:uberjar {:aot :all} :dev {:dependencies [[criterium "0.4.4"]]} :test {:plugins [[lein-cljfmt "0.3.0"] [lein-kibit "0.1.2"] [jonase/eastwood "0.2.3"] [lein-codox "0.9.4"] [lein-cloverage "1.0.7-SNAPSHOT"]]}} :codox {:metadata {:doc/format :markdown} :output-path "doc"} :global-vars {*warn-on-reflection* true}) (ns onyx.types) (defrecord Leaf [message id acker-id completion-id ack-val ack-vals route routes hash-group]) (defn leaf ([message] (->Leaf message nil nil nil nil nil nil nil nil))) (defrecord Route [flow exclusions post-transformation action]) (defrecord Ack [id completion-id ack-val timestamp]) (defrecord Result [root leaves]) (defrecord Link [link timestamp]) (defproject onyx-plugin/lein-template "0.8.2.3" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject skat "0.1.0-SNAPSHOT" :description "Skat game engine" :url "https://bitbucket.org/MateuszKubuszok/skat" :license { :name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html" } :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.match "0.3.0-alpha4"] [org.clojure/tools.trace "0.7.8"] [com.taoensso/tower "3.0.2"]] :plugins [[no-man-is-an-island/lein-eclipse "2.0.0"]] :profiles { :uberjar { :aot :all } } :warn-on-reflection false :main skat.core :target-path "target/%s" :aot [skat.core] :test-selectors { :default (complement :integration) :integration :integration :all (fn [_] true) } ) (defproject clover/lein-template "0.1.0-SNAPSHOT" :description "A Leiningen template for an instantly deployable Reagent web app" :url "https://github.com/listora/clover" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :eval-in-leiningen true :profiles {:dev {:dependencies [[me.raynes/fs "1.4.6"]]}}) (ns regarde.db (:require [korma.db :as sql] [ragtime.core :refer [connection migrate-all applied-migrations]] [ragtime.sql.files] [environ.core])) (defn db-name [env] (if-let [env-database (environ.core/env :database-url)] env-database (str "jdbc:postgresql://localhost:5432/" (cond (= env :development) "regarde_dev" (= env :test) "regarde_test" (= env :production) "regarde_prod")))) (defn setup [env] (sql/defdb database (db-name env))) (defn perform-migration [env] (let [connection (connection (db-name env)) migrations (ragtime.sql.files/migrations)] (migrate-all connection migrations))) (defn teardown [env] (let [connection (connection (db-name env)) applied-migrations (reverse (applied-migrations connection)) migrations (ragtime.sql.files/migrations)] (when (> (count applied-migrations) 0) (doseq [migration migrations] (ragtime.core/rollback connection migration))))) (ns posthere.app "PostHere.io web application." (:gen-class) (:require [ring.middleware.reload :as reload] [compojure.core :refer :all] [compojure.route :as route] [org.httpkit.server :refer (run-server)] [environ.core :refer (env)] [posthere.capture-request :refer (capture-request)] [posthere.results :refer (results-view)])) (defonce hot-reload (or (env :hot-reload) false)) (defroutes approutes ; GET requests (GET "/" [] (str "Egads! How did you get here?")) ; Should be handled by nginx (GET "/:uuid" [uuid] (results-view uuid)) ; Show them the results of their requests ; POST requests (POST "/:uuid" [uuid :as request] (capture-request uuid request)) ; Capture their POST request ; Resource requests (in development only, otherwise handled by nginx) (route/resources "/")) (def app (if hot-reload (reload/wrap-reload #'approutes) approutes)) (defn start [port] (run-server app {:port port :join? false}) (println (str "\nPOSThere.io: Server running on port - " port ", hot-reload - " hot-reload))) (defn -main [] (start 3000))(ns bytebuf.core (:refer-clojure :exclude [read]) (:require [bytebuf.spec :as spec] [bytebuf.buffer :as buffer] [bytebuf.proto :as proto] [potemkin.namespaces :refer [import-vars]])) (import-vars [bytebuf.spec compose-type spec string string* int32 int64] [bytebuf.buffer allocate] [bytebuf.proto size]) (defn write! ([buff data spec] (write! buff data spec {})) ([buff data spec {:keys [offset] :or {offset 0}}] (locking buff (spec/write spec buff offset data)))) (defn read* ([buff spec] (read* buff spec {})) ([buff spec {:keys [offset] :or {offset 0}}] (locking buff (spec/read spec buff offset)))) (defn read [& args] (second (apply read* args))) (ns karmanaut.crawler (:require [karmanaut.client :as client] [karmanaut.db :as db] [karmanaut.utils :as utils] [monger.collection :as mc])) (defn create-user-map [username] ; We're actually making two calls to the Reddit API ; here -- should find a way to save the data from one call ; and re-use it. {:username username, :link-karma (client/link-karma username), :comment-karma (client/comment-karma username)}) (defn crawl-users [usernames] (map create-user-map usernames)) (defn create-user-document [user-map] {:_id (:username user-map)}) (defn create-sample-document [user-map] (let [mn (utils/midnight (utils/utcnow)) secs (utils/seconds-since-midnight (utils/utcnow)) stats {(str "link_karma." secs) (:link-karma user-map), (str "comment_karma." secs) (:comment-karma user-map)}] {"$set" stats})) (defn create-query-document [user-map] {:user (:username user-map), :timestamp (utils/midnight (utils/utcnow))}) (defn create-sample! [user-map] (mc/upsert db/db "samples" (create-query-document user-map) (create-sample-document user-map) {:upsert true})) (defn insert-samples! [user-maps] (dorun (map create-sample! user-maps))) ; ; (C) Copyright 2016 Pavel Tisnovsky ; ; All rights reserved. This program and the accompanying materials ; are made available under the terms of the Eclipse Public License v1.0 ; which accompanies this distribution, and is available at ; http://www.eclipse.org/legal/epl-v10.html ; ; Contributors: ;      Pavel Tisnovsky ; (ns zg.middleware-test (:require [clojure.test :refer :all] [zg.middleware :refer :all])) ; ; Common functions used by tests. ; (defn callable? "Test if given function-name is bound to the real function." [function-name] (clojure.test/function? function-name)) (meditations "Sequence comprehensions can bind each element in turn to a symbol" (= __ (for [index (range 6)] index)) "They can easily emulate mapping" (= '(0 1 4 9 16 25) (map (fn [index] (* index index)) (range 6)) (for [index (range 6)] __)) "And also filtering" (= '(1 3 5 7 9) (filter odd? (range 10)) (for [index __ :when (odd? index)] index)) "And they trivially allow combinations of the two transformations" (= '(1 9 25 49 81) (map (fn [index] (* index index)) (filter odd? (range 10))) (for [index (range 10) :when __] __)) "More complex transformations can be formed with multiple binding forms" (= [[:top :left] [:top :middle] [:top :right] [:middle :left] [:middle :middle] [:middle :right] [:bottom :left] [:bottom :middle] [:bottom :right]] (for [row [:top :middle :bottom] column [:left :middle :right]] __))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; This Source Code Form is "Incompatible With Secondary Licenses", as ;; defined by the Mozilla Public License, v. 2.0. ;; ;; Copyright (c) 2016-2020 Andrey Antukh (ns uxbox.main (:require [mount.core :as mount] [uxbox.config :as cfg] [uxbox.migrations] [uxbox.db] [uxbox.http] #_[uxbox.scheduled-jobs]) (:gen-class)) ;; --- Entry point (defn -main [& args] (mount/start)) (defproject replete "0.1.0" :dependencies [[org.clojure/clojure "1.7.0-RC2"] [org.clojure/clojurescript "0.0-3411"] [org.clojure/tools.reader "0.10.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]) {:user {:plugins [[lein-localrepo "0.5.4"] ;; https://github.com/kumarshantanu/lein-localrepo [lein-nevam "0.1.2"] ;; Convert pom.xml to project.clj [lein-pprint "1.2.0"]] ;; Pretty-print a representation of the project map :dependencies [[alembic "0.3.2"] [pjstadig/humane-test-output "0.8.3"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}} ;; Copyright 2014 Red Hat, Inc, and individual contributors. ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (defproject org.immutant/immutant "2.0.0-SNAPSHOT" :plugins [[lein-modules "0.2.4"]] :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :packaging "pom" :dependencies [[org.immutant/messaging _] [org.immutant/scheduling _] [org.immutant/web _]]) (ns multihash.test-runner (:require-macros [doo.runner :refer [doo-tests]]) (:require doo.runner multihash.core-test multihash.digest-test)) (doo-tests 'multihash.core-test 'multihash.digest-test) (ns onyx.messaging.dummy-messenger (:require [onyx.extensions :as extensions])) (defmethod extensions/assign-site-resources :dummy-messenger [config peer-site peer-sites] {:port 1}) (defrecord DummyMessenger [peer-opts]) (defn dummy-messenger [peer-opts] (->DummyMessenger peer-opts)) (defmethod extensions/peer-site onyx.messaging.dummy_messenger.DummyMessenger [messenger] {:address 1}) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.config) (goog-define url "http://127.0.0.1:6060/api") (goog-define viewurl "http://127.0.0.1:3449/view/index.html") (goog-define isdemo false) (ns comic-reader.sites (:refer-clojure :exclude [list]) (:require [clojure.string :as s])) (def list [(let [canonical-url "http://mangafox.me" manga-url (format "%s/manga/" canonical-url) manga-pattern (re-pattern (str manga-url "(.*?)/"))] {:id :manga-fox :name "Manga Fox" :url manga-url :selector [:div.manga_list :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name name :url url}) :url->feed (fn [url] (some->> url (re-matches manga-pattern) second (format "%s/rss/%s.xml" canonical-url)))}) (let [canonical-url "http://www.mangareader.net/"] {:id :manga-reader :name "Manga Reader" :url (str canonical-url "alphabetical") :selector [:div.series_alpha :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name (s/trim name) :url (str canonical-url url)})})]) (ns blocks.store.buffer-test (:require [blocks.core :as block] (blocks.store [memory :refer [memory-block-store]] [buffer :refer [buffer-block-store]] [tests :as tests]) [clojure.test :refer :all])) (deftest buffer-behavior (let [backer (memory-block-store) store (buffer-block-store :store backer :buffer (memory-block-store)) buffer (:buffer store) a (block/read! "foo bar baz") b (block/read! "abracadabra") c (block/read! "123 xyz")] (block/put! store a) (block/put! store b) (is (empty? (block/list backer))) (block/put! backer c) (is (= 3 (count (block/list store)))) (is (= (every? (set (map :id [a b c])) (block/list store)))) (is (= (:id c) (:id (block/put! store c)))) (is (= 2 (count (block/list buffer)))) (blocks.store.buffer/flush! store) (is (empty? (block/list buffer))) (is (= 3 (count (block/list backer)))) (block/delete! store (:id c)) (is (= 2 (count (block/list store)))))) (deftest ^:integration test-buffer-store (tests/check-store! #(buffer-block-store :store (memory-block-store) :buffer (memory-block-store)))) (defproject ring/ring-jetty-adapter "1.6.0-beta1" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [ring/ring-core "1.6.0-beta1"] [ring/ring-servlet "1.6.0-beta1"] [org.eclipse.jetty/jetty-server "9.3.10.v20160621"]] :profiles {:dev {:dependencies [[clj-http "2.2.0"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (ns sumptus.web (:require [compojure.core :refer [defroutes GET]] [ring.adapter.jetty :as ring]) (:gen-class)) (defroutes routes (GET "/" [] "

Sumptus

") (GET "/ping" [] {:status 200 :headers {"Content-Type" "text/plain"} :body "pong"})) (defn -main [] (ring/run-jetty #'routes {:port 5000 :join? false})) (ns riemann.campfire "Forwards events to Campfire" (:use [clojure.string :only [join]]) (:require [clj-campfire.core :as cf])) (defn cf-settings "Setup settings for campfire. Required information is your api-token, ssl connection true or false, and your campfire sub-domain." [token ssl sub-domain] {:api-token token, :ssl ssl, :sub-domain sub-domain}) (defn room "Sets up the room to send events too. Pass in the settings created with cf-settings and the room name" [settings room-name] (cf/room-by-name settings room-name)) (defn format_string [e] (str (join " " ["HOST:" (str (:host e)) "SERVICE:" (str (:service e)) "STATE:" (str (:state e)) "DESC:" (str (:description e))])) ) (defn campfire "Creates an adaptor to forward events to campfire. TODO: write more here once the event formatting is better. TODO: tests Tested with: (streams (by [:host, :service] (let [camp (campfire \"token\", true, \"sub-domain\", \"room\")] camp)))" [token ssl sub-domain room-name] (fn [e] (let [string (format_string e) settings (cf-settings token ssl sub-domain) ] (cf/message (room settings room-name) string)))) (defproject statuses "0.1.0-SNAPSHOT" :description "Statuses app for innoQ" :namespaces [statuses] :dependencies [ [org.clojure/clojure "1.6.0"] [compojure "1.2.1"] [clj-time "0.8.0"] [ring "1.3.1"] [org.clojure/data.json "0.2.5"]] :plugins [[lein-ring "0.8.13"]] :ring {:handler statuses.views.main/app-routes} :main statuses.server :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}}) (defproject fault "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :profiles {:dev {:dependencies [[junit/junit "4.11"]]}} :javac-target "1.7" :dependencies [[org.clojure/clojure "1.6.0"] [org.mockito/mockito-core "1.10.8"] [criterium "0.4.3"]] :source-paths ["src/clojure"] :junit ["test/java"] :java-source-paths ["src/java" "test/java"] :plugins [[lein-junit "1.1.3"]] :junit-formatter "brief") (defproject ahc-clj "0.2.0-SNAPSHOT" :description "Async Http Client for Clojure" :namespaces [async.http.client] :dependencies [[org.clojure/clojure "1.2.0-beta1"] [org.clojure/clojure-contrib "1.2.0-beta1"] [com.ning/async-http-client "1.0.1-SNAPSHOT"]] :dev-dependencies [[swank-clojure "1.2.1"] [leiningen/lein-swank "1.1.0"] [autodoc "0.7.1"] [org.clojars.neotyk/lein-javac "1.0.1"] [lein-difftest "1.2.2"] [org.eclipse.jetty/jetty-server "7.1.4.v20100610"]] :autodoc {:name "ahc-clj" :web-src-dir "http://github.com/neotyk/ahc-clj/blob/" :web-home "http://neotyk.github.com/ahc-clj/autodoc/" :copyright "Copyright 2010 Hubert Iwaniuk"}) (defproject mars-ogler "0.0.1-SNAPSHOT" :description "Holy cow, it's Mars!" :url "http://github.com/aperiodic/mars-ogler" :license {:name "GNU Affero GPL" :url "http://www.gnu.org/licenses/agpl"} :dependencies [[org.clojure/clojure "1.4.0"] [clj-time "0.4.4"] [compojure "1.1.3"] [enlive "1.0.1"] [hiccup "1.0.0"] [ring/ring-core "1.1.5"] [ring/ring-jetty-adapter "1.1.5"]] :plugins [[lein-ring "0.7.1"]] :main mars-ogler.main :ring {:handler mars-ogler.routes/handler}) (defproject io.aviso/tracker "0.1.3" :description "Track per-thread operations when exceptions occur" :url "https://github.com/AvisoNovate/tracker" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.3.0"] [io.aviso/pretty "0.1.12"]] :plugins [[lein-shell "0.4.0"]] :aliases {"deploy-doc" ["shell" "scp" "-r" "." "hlship_howardlewisship@ssh.phx.nearlyfreespeech.net:io.aviso/tracker"] "release" ["do" "clean," "doc," "deploy-doc," "deploy" "clojars"]} :codox {:src-dir-uri "https://github.com/AvisoNovate/tracker/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}} :profiles {:dev {:dependencies [[org.slf4j/slf4j-api "1.7.6"] [ch.qos.logback/logback-classic "1.1.1"]]}}) (defproject io.aviso/tracker "0.1.2" :description "Track per-thread operations when exceptions occur" :url "https://github.com/AvisoNovate/tracker" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.3.0"] [io.aviso/pretty "0.1.12"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/tracker/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"]]}}) (ns subman.views (:use [hiccup core page])) (defn index-page [] (html5 {:ng-app "subman"} [:head [:title "Subman - subtitle search service with api"] (include-css "/components/bootstrap/dist/css/bootstrap.css" "/components/bootstrap/dist/css/bootstrap-theme.css" "/components/font-awesome/css/font-awesome.css") (include-js "/components/jquery/jquery.min.js" "/components/bootstrap/dist/js/bootstrap.min.js" "/main.js")] [:body [:script "subman.core.run();"]])) (ns gtfve.controllers.controls (:require-macros [cljs.core.async.macros :refer [go go-loop]] [gtfve.macros :refer [ (db/load-schema "schemas/arb.edn") (db/install-schema (db/get-conn)))))) (defn init [] (println (apply str "Initializing datemo version: " (:datemo-version env))) (let [initialized? (db/init-client)] (if initialized? (if (not (:testing env)) (prep-db (:db-name env))) (throw (Exception. "Failed to initalize!"))))) (ns rsvp-backend.middleware.logging (:require [cheshire.core :as json] [ring.util.response :as response] [ring.util.request :as req] [taoensso.timbre :as log])) (def standard-ring-request-keys [:server-port :server-name :remote-addr :uri :query-string :scheme :headers :request-method :body :params]) (defn wrap-log-request-response "Logs requests to the server and responses with INFO level." [handler] (fn [request] (log/debug {:event ::request :request (select-keys request standard-ring-request-keys) :payload (json/parse-string (req/body-string request) true)}) (let [response (handler request)] (log/debug {:event ::response :response response}) response))) (defn error-response [status msg] (-> (response/response {:error msg}) (response/status status))) (defn wrap-error-logging [handler] (fn [request] (try (if-let [response (handler request)] response (do (log/error {:event ::nil-response :request (select-keys request standard-ring-request-keys)}) (error-response 500 "Internal Server Error"))) (catch Throwable ex (log/error ex {:event ::unhandled-exception :request (select-keys request standard-ring-request-keys)}) (error-response 500 "Internal Server Error"))))) (ns refactor-nrepl.find-unbound (:require [clojure.set :as set] [clojure.tools.analyzer.ast :refer [nodes]] [refactor-nrepl [analyzer :refer [ns-ast]] [util :refer :all]])) (defn find-unbound-vars [{:keys [file line column]}] {:pre [(number? line) (number? column) (not-empty file)]} (throw-unless-clj-file file) (let [content (slurp file) ast (ns-ast content) sexp (sexp-at-point content line column) selected-sexp-node (->> ast (top-level-form-index line column) (nth ast) nodes (filter (partial node-at-loc? line column)) (filter (partial node-for-sexp? sexp)) last)] (into '() (set/intersection (->> selected-sexp-node :env :locals keys set) (->> selected-sexp-node nodes (filter #(= :local (:op %))) (map :form) set))))) (ns clojure-template.templates.layouts (:require [environ.core :refer [env]] [hiccup.page :refer [html5 include-css include-js]] [ring.middleware.anti-forgery :refer [*anti-forgery-token*]])) (defn application [& content] (html5 [:head [:meta {:charset "utf-8"}] [:meta {:http-equiv "X-UA-Compatible" :content "IE=edge"}] [:meta {:name "viewport" :content "width=device-width, initial-scale=1"}] [:meta {:csrf *anti-forgery-token*}] [:title "Application"] (include-css "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css") (include-css "https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css") (include-css "/css/app.css") [:body content (include-js "https://code.jquery.com/jquery-2.2.4.min.js") (include-js "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js") (include-js "/js/app.js")]]))(defproject com.nomistech/clojure-the-language "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.match "0.3.0-alpha4"] [org.clojure/core.async "0.1.346.0-17112a-alpha"]] :profiles {:dev {:dependencies [[midje "1.6.3"]] :plugins [[lein-midje "3.1.3"] [org.clojure/tools.namespace "0.2.5"]]}}) (defproject mvxcvi/vault "0.3.0-SNAPSHOT" :description "Content-addressable data store." :url "https://github.com/greglook/vault" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[byte-streams "0.1.10"] [clj-time "0.7.0"] [environ "0.5.0"] [potemkin "0.3.4"] [mvxcvi/clj-pgp "0.5.2"] [mvxcvi/puget "0.5.1"] [org.clojure/clojure "1.6.0"] [org.clojure/data.codec "0.1.0"] [prismatic/schema "0.2.2"]] :hiera {:cluster-depth 2 :ignore-ns #{clojure potemkin}} :profiles {:coverage {:plugins [[lein-cloverage "1.0.2"]]} :tool {:dependencies [[mvxcvi/directive "0.4.2"] [org.clojure/tools.namespace "0.2.4"]] :jvm-opts [] :repl-options {:init-ns vault.system} :source-paths ["tool"]} :repl [:tool]}) ;; Copyright © 2015, JUXT LTD. (ns yada.trace-test (:require [clojure.java.io :as io] [clojure.test :refer :all] [ring.mock.request :refer [request]] [yada.yada :as yada] [juxt.iota :refer (given)])) (deftest trace-test [] (testing "Normal operation" (let [resource "Hello World!" handler (yada/resource resource) request (merge (request :trace "/") {:body (java.io.ByteArrayInputStream. (.getBytes "Hello World!"))}) response @(handler request)] (given response :status := 200 :body :? #(.endsWith % "Hello World!")))) ;; TODO: TRACE needs to be documented (testing "TRACE disabled" (let [handler (yada/resource "Hello World!" {:trace false}) request (request :trace "/") response @(handler request)] (given response :status := 405)))) (defproject org.omcljs/ambly "0.1.0" :description "ClojureScript REPL into embedded JavaScriptCore." :url "https://github.com/omcljs/ambly" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0-beta2"] [org.clojure/clojurescript "0.0-3255"] [com.github.rickyclarkson/jmdns "3.4.2-r353-1"]]) {:user {:plugins [;; Linters [jonase/eastwood "0.2.3"] [lein-ancient "0.6.10"] [lein-bikeshed "0.3.0"] [lein-cljfmt "0.5.3"] [lein-kibit "0.1.2"] [venantius/yagni "0.1.4"] ;; Documentation generators [lein-codox "0.9.5"]]}} (set-env! :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [afrey/boot-asset-fingerprint "1.1.0-SNAPSHOT"] [tailrecursion/boot-jetty "0.1.3" :scope "test"]]) (require '[afrey.boot-asset-fingerprint :refer [asset-fingerprint]] '[tailrecursion.boot-jetty :as jetty]) (deftask dev [] (comp (watch) (asset-fingerprint :extension [".css"]) (asset-fingerprint :extension [".html"]) (jetty/serve :port 5000) (target))) (ns mobile-patient.android.core (:require [reagent.core :as r :refer [atom]] [re-frame.core :refer [subscribe dispatch dispatch-sync]] [mobile-patient.routes :refer [routes]] [mobile-patient.events] [mobile-patient.subs])) (def ReactNative (js/require "react-native")) (def app-registry (.-AppRegistry ReactNative)) (defn app-root [] [(r/adapt-react-class routes)]) (defn init [] (dispatch-sync [:initialize-db]) (.registerComponent app-registry "MobilePatient" #(r/reactify-component app-root))) (ns lunchlotto.common.utils (:require [clojure.edn :as edn] [environ.core :refer [env]] [postmark.core :as pm])) (defn parse-number "Convert a string to a number. Return nil if not a number. Since read-string is used, it checks the string against a regex to ensure the string looks like a number." [s] (if (and (not (nil? s)) (re-find #"^-?\d+\.?\d*$" s)) (read-string s))) (defn make-translation-dictionary "Loads the given EDN file and returns a function that can be used to look up translation keys from the loaded file. If path is given, it is prepended to the list of arguments given in the returned translation function. TODO: What are the pros/cons of memoizing this? Is there a better way?" [filename & path] (let [dictionary (edn/read-string (slurp filename))] (fn [args] (get-in dictionary (concat path args))))) (def make-email "Wraps Postmark email library." (pm/postmark (env :postmark-api-key) (env :postmark-from))) (ns puppetlabs.kitchensink.testutils (:require [fs.core :as fs])) (defn call-counter "Returns a method that just tracks how many times it's called, and with what arguments. That information is stored in metadata for the method." [] (let [ncalls (ref 0) arguments (ref [])] (with-meta (fn [& args] (dosync (alter ncalls inc) (alter arguments conj args))) {:ncalls ncalls :args arguments}))) (defn times-called "Returns the number of times a `call-counter` function has been invoked." [f] (deref (:ncalls (meta f)))) (defn delete-on-exit "Will delete `f` on shutdown of the JVM" [f] (do (.addShutdownHook (java.lang.Runtime/getRuntime) (Thread. #(fs/delete-dir f))) f)) (def ^{:doc "Creates a temporary file that will be deleted on JVM shutdown."} temp-file (comp delete-on-exit fs/temp-file)) (def ^{:doc "Creates a temporary directory that will be deleted on JVM shutdown."} temp-dir (comp delete-on-exit fs/temp-dir)) (defproject jungerer "0.4.1" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :min-lein-version "2.7.0" :dependencies [[org.clojure/clojure "1.7.0"] [net.sf.jung/jung-algorithms "2.1.1"] [net.sf.jung/jung-api "2.1.1"] [net.sf.jung/jung-graph-impl "2.1.1"] [net.sf.jung/jung-io "2.1.1"] [net.sf.jung/jung-visualization "2.1.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true}} :1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha12"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (ns whitman.writer (:require [monger.collection :as mc] [whitman.db :as db])) (defmulti write (fn [writer cfg query docs] writer)) (defmethod write :db [writer cfg query docs] (mc/upsert (db/db cfg) (get cfg "collection") query docs {:upsert true})) (defmethod write :console [writer cfg query docs] (println query)) (fn execute-workflow [ctx] (let [deployment-id (:deployment-id ctx) parameters (:trigger-parameters ctx) manager-ip (or (System/getenv "MANAGEMENT_IP") "127.0.0.1") raw-manager-rest-port (or (System/getenv "MANAGER_REST_PORT") "80") manager-rest-port (Integer/parseInt raw-manager-rest-port) base-uri (str "http://" manager-ip ":" manager-rest-port) endpoint (str "/executions") resource-uri (str base-uri endpoint) body (cheshire.core/generate-string { :deployment_id deployment-id :workflow_id (:workflow parameters) :force (:force parameters) :allow_custom_parameters (:allow_custom_parameters parameters) :parameters (:workflow_parameters parameters)})] (clj-http.client/post resource-uri {:content-type :json :accept :json :socket-timeout (:socket_timeout parameters) :conn-timeout (:conn_timeout parameters) :body body}))) (ns leap.test (:require [clojure.test :refer :all])) (load-file "leap_year.clj") (deftest vanilla-leap-year (is (leap-year? 1996))) (deftest any-old-year (is (not (leap-year? 1997)))) (deftest century (is (not (leap-year? 1900)))) (deftest exceptional-century (is (leap-year? 2400))) (run-tests) (ns com.hypirion.smallex.test.lexer (:require [clojure.java.io :as io] [clojure.pprint :refer [pprint]]) (:use [clojure.test]) (:import (com.hypirion.smallex SMLXLexer))) (deftest test-read (with-open [rdr (io/reader (io/resource "clojure.smlx"))] (is (try (doall (iterator-seq (SMLXLexer. rdr))) true (catch Exception _ false))))) (ns frontend.utils) (defmacro inspect "prints the expression ' is ', and returns the value" [value] `(do (let [name# (quote ~value) result# ~value] (print (pr-str name#) "is" (pr-str result#)) result#))) (defmacro timing "Evaluates expr and prints the label and the time it took. Returns the value of expr." {:added "1.0"} [label expr] `(let [global-start# (or (aget js/window "__global_time") (aset js/window "__global_time" (.getTime (js/Date.)))) start# (.getTime (js/Date.)) ret# ~expr global-time# (- (.getTime (js/Date.)) global-start#)] (aset js/window "__global_time" (.getTime (js/Date.))) (prn (str ~label " elapsed time: " (- (.getTime (js/Date.)) start#) " ms, " global-time# " ms since last")) ret#)) (defmacro swallow-errors "wraps errors in a try/catch statement, logging issues to the console and optionally rethrowing them if configured to do so." [action] `(try ~action (catch :default e# (merror e#) (when (:rethrow-errors? initial-query-map) (js* "debugger;") (throw e#))))) (ns day8.re-frame.trace.preload (:require [day8.re-frame.trace :as trace] [mranderson047.re-frame.v0v10v2.re-frame.core :as rf])) ;; Use this namespace with the :preloads compiler option to perform the necessary setup for enabling tracing: ;; {:compiler {:preloads [day8.re-frame.trace.preload] ...}} (rf/clear-subscription-cache!) (trace/init-db!) (defonce _ (trace/init-tracing!)) (trace/inject-devtools!) (defproject ring/ring-core "1.3.2" :description "Ring core libraries." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/tools.reader "0.8.1"] [ring/ring-codec "1.0.0"] [commons-io "2.4"] [commons-fileupload "1.3"] [clj-time "0.6.0"] [crypto-random "1.2.0"] [crypto-equality "1.0.0"]] :profiles {:provided {:dependencies [[javax.servlet/servlet-api "2.5"]]} :dev {:dependencies [[javax.servlet/servlet-api "2.5"]]} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}}) (ns braid.search.ui.search-bar (:require [re-frame.core :refer [subscribe dispatch]] [braid.core.client.routes :as routes] [braid.lib.color :as color])) (defn search-bar-view [] (let [search-query @(subscribe [:braid.search/query])] [:div.search-bar [:input {:type "text" :placeholder "Search..." :value search-query :on-change (fn [e] (dispatch [:braid.search/update-query! (.. e -target -value)]))}] (if search-query [:a.action.clear {:href (routes/group-page-path {:group-id @(subscribe [:open-group-id]) :page-id "inbox"}) :style {:color (color/->color @(subscribe [:open-group-id]))}}] [:div.action.search])])) (ns aerobio.params) (def params (atom {})) (defn param-ks [] (keys @params)) (defn param-set [] @params) (defn get-params [& ks] (if (= 1 (count ks)) (@params (first ks)) (mapv @params ks))) (defproject todomvc-re-frame "0.10.10-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.51"] [reagent "0.8.1"] [re-frame "0.10.9"] [binaryage/devtools "0.9.10"] [clj-commons/secretary "1.2.4"] [day8.re-frame/tracing "0.5.3"]] :plugins [[lein-shadow "0.1.5"]] :clean-targets ^{:protect false} ["resources/public/js" "target"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn todomvc.core/main}} :devtools {:http-root "resources/public" :http-port 8280}}}}) (ns leiningen.deps (:require [lancet]) (:use [leiningen] [clojure.contrib.java-utils :only [file]]) (:import [org.apache.maven.model Dependency] [org.apache.maven.artifact.ant DependenciesTask])) (defn- make-dependency [[group name version]] (doto (Dependency.) (.setGroupId group) (.setArtifactId name) (.setVersion version))) (defn deps "Install dependencies in lib/" [project & args] (let [deps-task (DependenciesTask.)] (.setBasedir lancet/ant-project (:root project)) (.setFilesetId deps-task "dependency.fileset") (.setProject deps-task lancet/ant-project) (.setPathId deps-task (:name project)) (doseq [dep (:dependencies project)] (.addDependency deps-task (make-dependency dep))) (.execute deps-task) (.mkdirs (file (:root project) "lib")) (lancet/copy {:todir "lib/"} ;; TODO: flatten (.getReference lancet/ant-project (.getFilesetId deps-task))))){:user {:plugins [[jonase/eastwood "0.2.0"] [lein-kibit "0.0."]]}} (ns robot-kata.image) (defn get-2d-context [canvas] (.getContext canvas "2d") ) (defn get-color-name [color] (let [threshold 192] (cond (and (> (color :r) threshold) (> (color :g) threshold) (> (color :b) threshold)) "white" (and (> (color :r) threshold) (> (color :g) threshold)) "yellow" (> (color :r) threshold) "red" (> (color :g) threshold) "green" (> (color :b) threshold) "blue" true "black" ) ) ) (defn get-pixel-color [context position] (let [image-data (.-data (.getImageData context (position :x) (position :y) 1 1))] {:r (aget image-data 0) :g (aget image-data 1) :b (aget image-data 2)} ) ) (ns todo-repl-webapp.handler (:require [compojure.core :refer :all] [compojure.handler :as handler] [compojure.route :as route] [cemerick.friend :as friend] (cemerick.friend [workflows :as workflows] [credentials :as credentials]) [todo-repl-webapp.views :as views] [todo-repl-webapp.eval :as e] [todo-repl-webapp.users :as u] [todo-repl-webapp.web-repl :as web-repl])) (defroutes app-routes (GET "/" [] "Hello World") (GET "/home" [] (views/home (web-repl/tasks))) (POST "/eval" [evalInput] (let [eval-result (e/evaluate evalInput)] (println "/eval " evalInput " evals to: " eval-result) (views/display eval-result))) (GET "/admin" request (friend/authorize #{::admin} "Admin page")) (GET "/login" [] "This is a login page") (route/resources "/") (route/not-found "Not Found")) (def app (handler/site app-routes)) (def secured-app (-> app (friend/authenticate {:credential-fn (partial credentials/bcrypt-credential-fn u/users) :workflows [(workflows/interactive-form)]}))) (ns onyx.plugin.bench-plugin (:require [clojure.core.async :refer [chan >!! dot 0) (.substring path (+ dot 1)) ""))) (defn file-format [path] (case (file-extension path) "ini" :ini "json" :json "yaml" :yml "yml" :yml nil)) (defmulti read-config file-format) (defmethod read-config :json [path] (-> path slurp json/read-str format-config)) (ns robot-name) (def ^:private random (java.util.Random.)) (def ^:private letters (map char (range 65 91))) (defn- generate-name [] (str (apply str (take 2 (shuffle letters))) (+ 100 (.nextInt random 899)))) (defn robot [] {:name (atom (generate-name))}) (defn robot-name [robot] @(:name robot)) (defn reset-name [robot] (reset! (:name robot) (generate-name))) (ns uxbox.main (:require [clojure.tools.namespace.repl :as repl] [mount.core :as mount] [uxbox.config :as cfg] [uxbox.migrations] [uxbox.persistence] [uxbox.frontend]) (:gen-class)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Development Stuff ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn- start [] (mount/start)) (defn- stop [] (mount/stop)) (defn- refresh [] (stop) (repl/refresh)) (defn- refresh-all [] (stop) (repl/refresh-all)) (defn- go "starts all states defined by defstate" [] (start) :ready) (defn- reset [] (stop) (repl/refresh :after 'uxbox.main/start)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Entry point (only for uberjar) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn -main [& args] (mount/start)) (ns om-mantras.docs (:require [devcards.core :refer-macros [defcard start-devcard-ui!]] [om-mantras.docs.selectable] [om-mantras.docs.sortable])) (enable-console-print!) (start-devcard-ui!) (defcard "# Hello again") (ns servisne-info.scrape.ns-rs (:use servisne-info.scrape.common) (:require [net.cgrand.enlive-html :as en] [clojure.string :as s])) ; Site description (def info-site {:url "http://www.021.rs" :links-path "/novi-sad/servisne-informacije.html"}) ; Private (defn- info-page-title [html] (s/trim (first (:content (first (en/select html [:h1.contentheading])))))) (defn- info-page-content [html] (apply str (map s/trim (en/select html [:div#content en/text-node])))) ; Public (defn info-page [html] {:title (info-page-title html) :content (info-page-content html)}) (defn info-links [site html] (map (fn [a] {:title (s/trim (first (:content a))) :url (path-to-url site (:href (:attrs a)))}) (en/select html [:div.najava :div.leading :h2.contentheading :a]))) (defn links [] (info-links info-site (info-links-page info-site))) (ns riemann.keenio "Forwards events to Keen IO" (:require [clj-http.client :as client]) (:require [cheshire.core :as json])) (def ^:private event-url "https://api.keen.io/3.0/projects/") (defn- post "POST to Keen IO." [collection project-id write-key request] (def final-event-url (str event-url project-id "/events/" collection)) (client/post final-event-url {:body (json/generate-string request) :query-params { "api_key" write-key } :socket-timeout 5000 :conn-timeout 5000 :content-type :json :accept :json :throw-entire-message? true})) (defn keenio "Creates a keen adapter. Takes your Keen project id and write key, and returns a function that accepts an event and sends it to Keen IO. The full event will be sent. (streams (let [kio (keenio \"COLLECTION_NAME\", \"PROJECT_ID\" \"WRITE_KEY\")] (where (state \"error\") kio)))" [collection project-id, write-key] (fn [event] (post collection project-id write-key event))) (ns smallex.reductions (:require [clojure.walk :as walk])) (defn- find-alias-deps "Returns a set of alias deps, given an expression." [expr] (case (:type expr) (:string :char-set) #{} :symbol #{(:value expr)} :op (set (mapcat find-alias-deps (:args expr))))) (defn check-cyclic-aliases "Given a grammar, returns an error if there is a cyclic alias. Returns nil if the aliases aren't cyclic." [grammar] (let [alias-deps (into {} (for [[k v] (:aliases grammar)] [k (find-alias-deps v)]))] ;; TODO: Topological sort here. )) {:name "get-comparison-files" :path "" :repeat true :generator true :func (let [bam-ot-pairs (volatile! :nyi)] (fn[eid comp-filename rep?] (when (= @bam-ot-pairs :nyi) (vswap! bam-ot-pairs (fn[_] (htrs/get-comparison-files eid comp-filename rep?)))) (let [pairs @bam-ot-pairs] (if (seq pairs) (let [p (first pairs)] (vswap! bam-ot-pairs (fn[_] (rest pairs))) p) (pg/done))))) :description "Streaming comparison input data pairs. Each element is a vector [bams csv] where bams are the input bams to count and csv is the output file for the count matrix." } (ns decktouch.card-input (:require [reagent.core :as reagent :refer [atom]] [ajax.core :refer [GET]])) (def llist [{:name "foo"} {:name "bar"} {:name "lol"}]) (defn card-input [the-cards] (let [get-val #(.-value (.getElementById js/document "the-input")) reset-input #(set! (.-value (.getElementById js/document "the-input")) "") save #(let [v (-> (get-val) str clojure.string/trim)] (do (if-not (empty? v) (do (swap! the-cards conj {:name v}) (reset-input))) false))] [:div.ui-widget [:form {:onSubmit #(do (save) false)} [:input#the-input {:type "text"}]]])) (defn ^:export card-input-did-mount [] (let [things (map :name llist)] (.autocomplete (js/$ "#the-input") (cljs.core/js-obj "source" (clj->js things))))) (defn component [the-cards] (reagent/create-class {:render #(card-input the-cards) :component-did-mount card-input-did-mount})) (ns analyze-data.tf-idf.term-frequency) (defn term-frequency "Return a map from term to number of times it appears in terms." [terms] (reduce (fn [m term] (assoc m term (inc (get m term 0)))) {} terms)) (defn calc-normalized-term-frequency "Normalize term-frequency based on max-term-frequency." [term-frequency max-term-frequency] (+ 0.5 (* 0.5 (/ term-frequency max-term-frequency)))) (defn normalized-term-frequency "Like term-frequency, but prevents bias towards longer documents. See https://en.wikipedia.org/wiki/Tf–idf#Term_frequency_2" [terms] (let [term-frequencies (term-frequency terms) max-term-frequency (apply max 0 (vals term-frequencies)) assoc-ntf (fn [m term] (assoc m term (calc-normalized-term-frequency (get term-frequencies term) max-term-frequency)))] (reduce assoc-ntf {} terms))) (ns ui.core (:require [figwheel.client :as fw :include-macros true] [reagent.core :as reagent :refer [atom]])) (enable-console-print!) (fw/watch-and-reload :websocket-url "ws://localhost:3449/figwheel-ws" :jsload-callback (fn [] (print "reloaded"))) (defonce state (atom 0)) (defn root-component [] [:div [:p (str "Node version is " js/process.version)] [:p (str "Atom version is " ((js->clj js/process.versions) "atom-shell"))] [:h1 "Hello world!"] [:button {:on-click #(swap! state inc)} (str "You clicked me " @state " times")]]) (reagent/render [root-component] (.-body js/document)) (ns minijava.test-munch (:use (minijava gas ir munch) clojure.test)) (deftest test-Move-Mem-Binop (let [ t1 (Temp (minijava.ir.temp.Temp.)) t2 (Temp (minijava.ir.temp.Temp.)) tree (Move (Mem (BinaryOp :+ (Const 2) t1)) t2)] (is (= (select tree) '(Movl (MEMORY t1 (CONST 2))t2)) )) (ns doctopus.files.predicates "We've got a loooot of filtering to do. Like, a lot.") (defmulti is-type? "Returns true if the type of the file matches the type given." (fn [fobj regex] (class fobj))) (defmethod is-type? java.lang.String [file-string type-regex] (if (re-find type-regex file-string) true false)) (defmethod is-type? java.io.File [file-handle type-regex] (is-type? (.getPath file-handle) type-regex)) (defn markdown? "returns true only for type files." [file-handle] (is-type? file-handle #"(?i)md|markdown|mdown$" )) (defn restructured-text? "returns true only for type files." [file-handle] (is-type? #"(?i)rst|rest$" (.getPath file-handle) )) (defproject org.onyxplatform/onyx-datomic "0.7.5" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.5"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject cli4clj "1.2.0" ;(defproject cli4clj "1.2.1-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.12.0"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.1.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.2" :exclusions [org.clojure/clojure]]]}} ) (defproject com.palletops/leaven "0.1.0-SNAPSHOT" :description "A lightweight component library for clojure and clojurescript." :url "https://github.com/palletops/leaven" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[com.keminglabs/cljx "0.4.0"] [com.cemerick/clojurescript.test "0.3.1"] [lein-cljsbuild "1.0.3"]] :hooks [leiningen.cljsbuild] :prep-tasks ["cljx" "javac" "compile"] :source-paths ["target/generated/src/clj"] :resource-paths ["target/generated/src/cljs"] :test-paths ["target/generated/test/clj"] :aliases {"auto-test" ["do" "clean," "cljsbuild" "auto" "test"] "jar" ["do" "cljx," "jar"] "test" ["do" "cljx," "test"]}) (defproject onyx-app/lein-template "0.12.0.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject funcool/futura "0.1.0-SNAPSHOT" :description "A basic building blocks for async programming." :url "https://github.com/funcool/futura" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[cats "0.4.0"] [manifold "0.1.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.reactivestreams/reactive-streams "1.0.0.RC5"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:dependencies [[org.clojure/clojure "1.7.0-beta1"]] :codeina {:sources ["src"] :language :clojure :output-dir "doc/api"} :plugins [[funcool/codeina "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]]]}}) (defproject onyx-app/lein-template "0.10.0.0-beta11" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject onyx-app/lein-template "0.10.0.0-alpha7" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject com.nomistech/clojure-the-language "0.1.0-SNAPSHOT" :dependencies [[cheshire "5.8.0"] [com.climate/claypoole "1.1.4"] [com.taoensso/timbre "4.10.0" :exclusions [io.aviso/pretty org.clojure/tools.reader]] [org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.4.474"] [org.clojure/core.match "0.3.0-alpha5"] [prismatic/schema "1.1.7"] [ring/ring-json "0.4.0"] [slingshot "0.12.2"]] :repl-options {:init-ns user} :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"] [midje "1.9.1"]] :source-paths ["dev"] :plugins [[lein-midje "3.2.1"]]}}) (defproject onyx-plugin/lein-template "0.8.2.1" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-datomic "0.7.3-SNAPSHOT" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_202930-g49ef67c"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject onyx-app/lein-template "0.14.1.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns metlog-vault.scheduler (:use metlog-common.core) (:require [clojure.tools.logging :as log])) (defn start [ ] (doto (it.sauronsoftware.cron4j.Scheduler.) (.setDaemon true) (.start))) (defn schedule-job [ scheduler desc cron job-fn ] (do (log/info "Background job scheduled (cron:" cron "):" desc ) (.schedule scheduler cron #(do (log/info "Running scheduled job: " desc) (exception-barrier job-fn (str "scheduled job:" desc)) (log/info "End scheduled job: " desc))))) (require '[cljs.nodejs :as nodejs]) (require '[clojure.test :as test]) (require '[mikron.test])) (nodejs/enable-util-print!) (defmethod test/report [::test/default :summary] [{:keys [fail error] :as summary}] (println "Test summary: " summary) (.exit nodejs/process (if (= 0 fail error) 0 1))) (ns little-clojurer.chapter3 (:require [little-clojurer.chapter1 :refer :all]) (:require [little-clojurer.chapter2 :refer :all])) (defn rember "Return lst with the first instance of item removed." [item lst] nil) (ns useful.string (:use [clojure.string :only [join split capitalize]])) (defn camelize [s & [lower]] (let [parts (split (str s) #"-|_")] (apply str (if lower (cons (first parts) (map capitalize (rest parts))) (map capitalize parts))))) (defn dasherize [s] (.. (re-matcher #"\B([A-Z])" (str s)) (replaceAll "-$1") toLowerCase)) (defn underscore [s] (.. (re-matcher #"\B([A-Z])" (str s)) (replaceAll "_$1") toLowerCase))(ns icecap.store.riak (:require [clojure.core.async :as a :refer [thread]] [clojurewerkz.welle.kv :as kv] [icecap.store.api :refer [Store]])) (defn riak-store "Creates a Riak-backed store." [conn bucket] (reify Store (create! [_ index blob] (thread (kv/store conn bucket index blob))) (retrieve [_ index] (thread (kv/fetch-one conn bucket index))) (delete! [_ index] (thread (kv/delete conn bucket))))) (defn bucket-props "Creates some bucket props suitable for an icecap bucket. These properties are centered around two basic ideas: - blobs are immutable; they either exist or they don't - reads are more common than writes (create/delete ops) Because they're immutable, we don't need high consistency. Read consistency is only used to determine if a blob has been deleted. Additionally, we know that we're never going to see key collisions, because the keys are long random strings. " [& {n :n :or {:n 3}}] (let [r 1 w (- n r)] {:n-val n :r r :w w :dw w :notfound-ok false :basic-quorum true :allow-mult false :last-write-wins true})) (ns analyze-data.predict (:require [clojure.core.matrix :as m] [analyze-data.dataset.create.core :refer [document-to-vector]] [analyze-data.knn.core :as knn] [analyze-data.naive-bayes.predict :as naive-bayes])) (defmulti predict "Predict a label for z. model: previously trained model z: feature vector options: specific to the model-type :knn see analyze-data.knn.core/knn :naive-bayes see analyze-data.naive-bayes.predict/predict Return the predicted label." (fn [model z & options] (:type model))) (defn predict-document "Predict a label for the given document. model: previously trained model document: string options: see predict Return the predicted label." [model document & options] (let [dataset (:dataset model) z (document-to-vector dataset document)] (apply predict model z options))) (defmethod predict :knn [model z & options] (let [{{:keys [X y classes]} :dataset} model prediction (apply knn/predict X y z options)] (classes (first prediction)))) (defmethod predict :naive-bayes [model z & options] (let [{:keys [parameters] {:keys [classes]} :dataset} model prediction (naive-bayes/predict parameters z)] (classes (first prediction)))) (ns {{root-ns}}.frontend.main) (js/console.log "Hello, world") (set! (.-innerText (js/document.getElementById "app")) "Loaded {{name}}!") (ns petulant-life.main (:import (org.lwjgl.opengl DisplayMode Display GL11 ContextAttribs PixelFormat)) (:require [petulant-life.rendering :as r])) ; Defining some width and height constraints to the program. (def width 640) (def height 480) ; Initializing the OpenGL window. (defn create [] (Display/setDisplayMode (DisplayMode. width height)) (Display/create (PixelFormat.) (-> (ContextAttribs. 3 2) (.withForwardCompatible true) (.withProfileCore true))) (Display/setTitle "Petulant Life") (GL11/glClearColor 0.9 0.9 0.9 1)) ; Cleaning up the LWJGL context. (defn destroy [] (Display/destroy)) ; Running the simulation / graphics. (defn run [] (loop [running true] (if (and running (not (Display/isCloseRequested))) (do (GL11/glClear GL11/GL_COLOR_BUFFER_BIT) (r/draw-rectangles [[10 10 50 50] [70 10 50 50] [10 70 50 50] [70 70 50 50]] nil) (Display/update) (recur true)) nil))) ; Entry point. (defn -main [& args] (create) (run) (destroy)) {:user { :dependencies [[pjstadig/humane-test-output "0.6.0"] [slamhound "1.5.5"]] :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)] :jvm-opts ["-Xmx512m" "-server"] :plugins [ [lein-kibit "0.1.2"] [lein-try "0.4.3"] [cider/cider-nrepl "0.8.2"] [lein-ancient "0.6.7"] [lein-pprint "1.1.1"]]}} (defproject com.greenyouse/deepfns "0.1.0" :description "Deeply nested fmap, fapply, and more!" :url "https://github.com/greenyouse/deepfns" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.228"]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.9.0"] [criterium "0.4.3"]] :plugins [[lein-codox "0.9.1"]]}} :codox {:source-uri "https://github.com/greenyouse/deepfns/blob/master/{version}/{filepath}#L{line}" :include [deepfns.core deepfns.transitive deepfns.utils]}) ;; The only requirement of the project.clj file is that it includes a ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. (defproject leiningen "1.1.0-RC1" :description "A build tool designed not to set your hair on fire." :url "http://github.com/technomancy/leiningen" :dependencies [[org.clojure/clojure "1.1.0"] [org.clojure/clojure-contrib "1.1.0-master-SNAPSHOT"] [ant/ant "1.6.5"] [ant/ant-launcher "1.6.5"] [jline "0.9.94"] [org.apache.maven/maven-ant-tasks "2.0.10"]] :dev-dependencies [[leiningen/lein-swank "1.0.0-SNAPSHOT"] [autodoc "0.7.0"]] :main leiningen.core) (defproject onyx-plugin/lein-template "0.8.2.2" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject bitcoin "0.1.0-SNAPSHOT" :description "offline paper wallet generator" :url "http://diegobasch.com" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"bitcoinj" "http://distribution.bitcoinj.googlecode.com/git/releases/"} :dependencies [[org.bitcoinj/bitcoinj-core "0.12.3"] [com.madgag/scprov-jdk15on "1.47.0.3"] [org.clojars.dbasch/bip38 "0.1.0"] [com.google.guava/guava "15.0"] [org.slf4j/slf4j-api "1.7.5"] [com.google.zxing/core "2.3.0"] [com.google.zxing/javase "2.3.0"] [org.clojure/clojure "1.5.1"] [pandect "0.5.2"]] :main bitcoin.miniwallet) (defproject buddy/buddy-core "1.10.0" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.10.3" :scope "provided"] [org.clojure/test.check "1.1.0" :scope "test"] [commons-codec/commons-codec "1.15"] [cheshire "5.10.0"] [org.bouncycastle/bcprov-jdk15on "1.68"] [org.bouncycastle/bcpkix-jdk15on "1.68"]] :jar-name "buddy-core.jar" :source-paths ["src"] :java-source-paths ["src"] :test-paths ["test"] :global-vars {*warn-on-reflection* true} :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]) (defproject compojure "1.3.0" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.0"] [medley "0.5.3"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.0/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[ring-mock "0.1.5"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha2"]]}}) (defproject onyx-app/lein-template "0.9.7.0-alpha2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject greenyet "1.1.0" :description "Are my machines green yet?" :url "https://github.com/cburgmer/greenyet" :license {:name "BSD 2-Clause" :url "http://opensource.org/licenses/BSD-2-Clause"} :plugins [[lein-ring "0.9.7"]] :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/tools.logging "0.3.1"] [log4j/log4j "1.2.17" :exclusions [javax.mail/mail javax.jms/jms com.sun.jdmk/jmxtools com.sun.jmx/jmxri]] [ring/ring-core "1.4.0"] [ring/ring-jetty-adapter "1.4.0"] [org.clojure/core.async "0.2.374"] [http-kit "2.1.18"] [clj-time "0.9.0"] [hiccup "1.0.5"] [clj-yaml "0.4.0"] [cheshire "5.4.0"] [json-path "0.3.0"]] :profiles {:dev {:dependencies [[http-kit.fake "0.2.1"] [ring-mock "0.1.5"]] :resource-paths ["resources" "test/resources"] :jvm-opts ["-Dgreenyet.environment=development"]}} :ring {:handler greenyet.core/handler :init greenyet.core/init}) ;; The Climate Corporation licenses this file to you under 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 ;; ;; See the NOTICE file distributed with this work for additional information ;; regarding copyright ownership. Unless required by applicable law or agreed ;; to in writing, software distributed under the License is distributed on an ;; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ;; or implied. See the License for the specific language governing permissions ;; and limitations under the License. (defproject com.climate/claypoole "1.0.0" :description "Claypoole: Threadpool tools for Clojure." :url "http://github.com/TheClimateCorporation/claypoole/" :license {:name "Apache License Version 2.0" :url http://www.apache.org/licenses/LICENSE-2.0 :distribution :repo} :min-lein-version "2.0.0" :source-paths ["src/clj"] :java-source-paths ["src/java"] :pedantic? :warn :dependencies [[org.clojure/clojure "1.6.0"]] :plugins [[jonase/eastwood "0.2.1"]]) (defproject onyx-benchmark "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" ;"-Daeron.rcv.buffer.length=100000" "-Daeron.socket.so_sndbuf=320000" "-Daeron.socket.so_rcvbuf=320000" "-Daeron.term.buffer.length=131072" "-Daeron.rcv.initial.window.length=131072"] :java-opts ["-server" "-Xmx2g" ] :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [io.netty/netty-all "4.0.25.Final"] [org.clojure/data.fressian "0.2.0"] [com.mdrogalis/onyx "0.6.0-SNAPSHOT"] [riemann-clojure-client "0.3.2" :exclusions [io.netty/netty]] [cheshire "5.4.0"]]) (ns github-changelog.util (:require [clojure.string :refer [join ends-with?]])) (defn str-map [f & sqs] (join (apply map f sqs))) (defn extract-params [query-string] (into {} (for [[_ k v] (re-seq #"([^&=]+)=([^&]+)" query-string)] [(keyword k) v]))) (defn strip-trailing ([str] (strip-trailing str "/")) ([str end] (if (ends-with? str end) (recur (.substring str 0 (- (count str) (count end))) end) str))) (ns servisne-info.utils (:require [environ.core :refer [env]])) (defn production? [] (== (env :app-environment) "production") (ns todo-repl-webapp.handler (:require [compojure.core :refer :all] [compojure.handler :as handler] [compojure.route :as route] [cemerick.friend :as friend] (cemerick.friend [workflows :as workflows] [credentials :as credentials]) [todo-repl-webapp.views :as views] [todo-repl-webapp.eval :as e] [todo-repl-webapp.users :as u] [todo-repl-webapp.web-repl :as web-repl])) (defroutes app-routes (GET "/" [] "Hello World") (GET "/home" [] (views/home (web-repl/tasks))) (POST "/eval" [evalInput] (let [eval-result (e/evaluate evalInput)] (println "/eval " evalInput " evals to: " eval-result) (views/display eval-result))) (GET "/admin" request (friend/authorize #{::admin} "Admin page")) (GET "/login" [] "This is a login page") (route/resources "/") (route/not-found "Not Found")) (def app (handler/site app-routes)) (def secured-app (-> app (friend/authenticate {:login-uri "/login" :credential-fn (partial credentials/bcrypt-credential-fn u/users) :workflows [(workflows/interactive-form)]}))) (defproject io.aviso/rook "0.1.9-SNAPSHOT" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:dev {:dependencies [[ring-mock "0.1.5"] [io.aviso/pretty "0.1.10"] [clj-http "0.9.1"] [speclj "3.0.2"] [log4j "1.2.17"]]}} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.278.0-76b25b-alpha"] [org.clojure/tools.logging "0.2.6"] [ring "1.2.2"] [ring-middleware-format "0.3.2" :exclusions [cheshire org.clojure/tools.reader]] [prismatic/schema "0.2.1" :exclusions [potemkin]] [compojure "1.1.6"]] :plugins [[speclj "3.0.2"]] :test-paths ["spec"]) (defproject funcool/bide "1.0.0-SNAPSHOT" :description "Simple routing for ClojureScript" :url "https://github.com/funcool/bide" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.9.227" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/bide/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.5.0"] [lein-ancient "0.6.10"]]) (defproject clj-timeframes "0.1.0" :description "A small library to merge overlapping clj-time intervals" :url "https://github.com/flosell/clj-timeframes" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-time "0.11.0"] [com.gfredericks/test.chuck "0.2.1"] [org.clojure/math.combinatorics "0.1.1"] [org.clojure/test.check "0.9.0"]]) (set-env! :source-paths #{"src" "src-java"} :resource-paths #{"resources"} :dependencies '[[org.clojure/test.check "0.9.0" :scope "test"] ; project deps [org.clojure/clojure "1.9.0-alpha7"] [leiningen "2.6.1" :exclusions [leiningen.search]] [ring "1.4.0"] [clojail "1.0.6"]]) (task-options! pom {:project 'nightcode :version "2.0.0-SNAPSHOT"} aot {:namespace '#{net.sekao.nightcode.core net.sekao.nightcode.lein}} jar {:main 'net.sekao.nightcode.core :manifest {"Description" "An IDE for Clojure and ClojureScript" "Url" "https://github.com/oakes/Nightcode"}}) (deftask run [] (comp (javac) (aot) (with-pre-wrap fileset (require '[net.sekao.nightcode.core :refer [dev-main]]) ((resolve 'dev-main)) fileset))) (deftask run-repl [] (comp (javac) (aot) (repl :init-ns 'net.sekao.nightcode.core))) (deftask build [] (comp (javac) (aot) (pom) (uber) (jar) (target))) (ns made-merits.routes.home (:require [made-merits.layout :as layout] [compojure.core :refer [defroutes GET]] [ring.util.http-response :as response] [clojure.java.io :as io])) (defn home-page [] (layout/render "home.html" {:docs (-> "docs/docs.md" io/resource slurp)})) (defn about-page [] (layout/render "about.html")) (defroutes home-routes (GET "/" [] (home-page)) (GET "/about" [] (about-page))) (ns examples.describe1 (:use lazytest.describe)) (describe + (it "computes the sum of 3 and 4" (= 7 (+ 3 4)))) (describe + "given any 2 integers" (for [x (range 5), y (range 5)] (it "is commutative" (= (+ x y) (+ y x))))) (ns tunnit.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [cljs-time.core :as time] [om-tools.dom :as ot :include-macros true] [om-tools.core :refer-macros [defcomponent]] )) (enable-console-print!) (defonce app-state (atom {:text "Viikko"})) (def week-map {:mon [] :tue [] :wed [] :thu [] :fri [] :sat [] :sun []}) (defcomponent week-view [app owner] (render [this] (ot/div (map (fn [day] (ot/output (str day))) (keys week-map)) )) ) (defcomponent app-view [app owner] (render [this] (ot/div {:class "column-main"} (dom/h1 nil (:text app)) (om/build week-view app) ) )) (defn main [] (om/root app-view app-state {:target (. js/document (getElementById "app"))}))(defproject {{name}} "0.1.0-SNAPSHOT" :description "A modular project created with lein new modular {{template}}" :url "http://github.com/{{user}}/{{name}}" :dependencies [ {{#library-dependencies}} {{{.}}} {{/library-dependencies}} ] :main {{name}}.main :repl-options {:init-ns user :welcome (println "Type (dev) to start")} :aliases {"gen" ["run" "-m" "{{name}}.generate"]} :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.10"]] :source-paths ["dev" ]}}) (defproject eureka "0.1.5-SNAPSHOT" :description "A Clojure library that wraps the Curator service discovery/registration API." :dependencies [[cheshire "5.2.0"] [environ "0.4.0"] [org.apache.curator/curator-x-discovery "2.4.2"] [org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [zookeeper-clj "0.9.3"]] :profiles {:dev {:dependencies [[zookem "0.1.0-SNAPSHOT"] [midje "1.5.1"]] :plugins [[lein-midje "3.0.1"] [lein-release "1.0.5"]]}} :lein-release {:deploy-via :clojars :clojars-url "clojars@clojars.brislabs.com:"}) (defproject com.walmartlabs/logback-riemann-appender "0.1.5-SNAPSHOT" :description "Logback Appender that sends events to Riemann" :url "https://github.com/walmartlabs/logback-riemann-appender" :lein-release {:deploy-via :clojars} :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :java-source-paths ["java"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] :junit ["test/java"] :plugins [[lein-junit "1.1.8"] [lein-release/lein-release "1.0.5"] [lein-swank "1.4.5"]] :profiles {:dev {:dependencies [[junit/junit "4.11"]] :resource-paths ["dev-resources"] :source-paths ["dev" "test/clojure"] :java-source-paths ["test/java"]}} :dependencies [ [org.clojure/clojure "1.5.1"] [com.aphyr/riemann-java-client "0.2.8"] [ch.qos.logback/logback-classic "1.0.13"] [org.clojure/tools.logging "0.2.6"]] :signing {:gpg-key "dante@walmartlabs.com"}) (defproject twixt "0.1.0" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.1.8"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.0.4"] [de.neuland/jade4j "0.3.12"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :profiles {:dev {:dependencies [[log4j "1.2.17"]]}})(defproject buddy/buddy-sign "0.3.0" :description "Security library for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.6.0"] [com.taoensso/nippy "2.7.1"] [buddy/buddy-core "0.3.0"] [cats "0.2.0"] [clj-time "0.9.0"] [cheshire "5.4.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject funcool/promesa "0.7.0" :description "A promise library for ClojureScript" :url "https://github.com/funcool/promesa" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "1.7.189" :scope "provided"] [funcool/cats "1.2.1"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]] [lein-externs "0.1.3"]]) (ns uxbox.locales.en) (defonce +locales+ {"ds.projects" "PROJECTS" "ds.num-projects" ["No projects" "%s project" "%s projects"] "ds.project-ordering" "Sort by" "ds.project-ordering.by-name" "name" "ds.project-ordering.by-last-update" "last update" "ds.project-ordering.by-creation-date" "creation date" "ds.project-search.placeholder" "Search..." "ds.elements" "ELEMENTS" "ds.icons" "ICONS" "ds.colors" "COLORS" "ds.library-title" "Library: " "ds.standard-title" "STANDARD" "ds.your-libraries-title" "YOUR LIBRARIES" "ds.num-elements" ["%s element" "%s elements"] "ds.recent-colors" "Recent colors" "ds.element-options" "Element options" "ds.tools" "Tools" "ds.sitemap" "Sitemap" "ds.help.rect" "Box (Ctrl + B)" "ds.help.circle" "Circle (Ctrl + E)" "ds.help.line" "Line (Ctrl + L)" }) (defproject cljsearch "0.1.0-SNAPSHOT" :description "cljsearch - the clojure version of the xsearch command-line-based search utility" :url "https://github.com/clarkcb/xsearch" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.8.0"] [org.clojure/data.json "0.2.6"] ] :main ^:skip-aot cljsearch.cljsearch :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns suite1 (:use [com.stuartsierra.lazytest :only (deftest defsuite)])) (deftest even-odd [] (odd? 1) (even? 2) (odd? 3) (even? 4)) (deftest zero "Zero is even, not odd" [] (even? 0) "Zero is not odd" (odd? 0)) (defsuite numbers "Simple number tests" [] even-odd zero) (deftest addition [] (= 2 (+ 1 1)) (= 3 (+ 2 1)) "Psychotic math" (= 5 (+ 2 2))) (deftest subtraction [] (= 0 (- 1 1)) (= 1 (- 2 1)) (= 3 (- 5 2))) (defsuite arithmetic [] addition subtraction) (defsuite all-tests [] numbers arithmetic)(ns frereth.fsm "This is a misnomer. But I have to start somewhere." (:require [frereth.globals :as global] [ribol.cljs :refer [create-issue *managers* *optmap* raise-loop]] [taoensso.timbre :as log]) (:require-macros [ribol.cljs :refer [raise]])) (defn transition-to-html5 [{:keys [body css script] :as html}] (raise {:not-implemented html})) (defn transition-world "Far too much information is getting here. TODO: Client needs to prune most of it. This part really only cares about the world" [{:keys [action-url expires session-token world]}] (let [data (:data world) {:keys [type version]} data] (cond (and (= type :html) (= version 5)) (transition-to-html5 (select-keys data [:body :css :script]))))) (ns ^:figwheel-no-load env.ios.main (:require [re-natal-om-next.ios.core :as core] [figwheel.client :as figwheel :include-macros true])) (enable-console-print!) (figwheel/watch-and-reload :websocket-url "ws://localhost:3449/figwheel-ws" :heads-up-display true) (core/init)(ns test-core (:use [leiningen.core :only [make-groups]] :reload-all) (:use [clojure.test])) (deftest test-make-groups-empty-args (is (= [[]] (make-groups [])))) (deftest test-make-groups-single-task (is (= [["pom"]] (make-groups ["pom"])))) (deftest test-make-groups-without-args (is (= [["clean"] ["deps"] ["test"]] (make-groups ["clean," "deps," "test"])))) (deftest test-make-groups-with-args (is (= [["test" "test-core"] ["version"]] (make-groups ["test" "test-core," "version"])))) (ns ombs.funcs "contains generic functions") (defn in? "checks if value contained in collection. Used for vectors. For maps, use 'some'" [v coll] (boolean (some #(= v %) coll)) ) (defn as-vec "get a vector or value and represents it as vector. [1 2 3] -> [1 2 3]; 1 -> [1]" [x] (if-not (vector? x) (conj [] x) x)) (defn parse-int [s] (when-let [r (re-find #"\d+" s )] (Integer. r))) (defn swap [a i j] (assoc a j (a i) i (a j))) (defn generatePermutations [n v] (if (zero? n) (println (apply str v)) (loop [i 0 a v] (if (<= i n) (do (generatePermutations (dec n) a) (recur (inc i) (swap a (if (even? n) i 0) n))))))) (if (not= (count *command-line-args*) 1) (do (println "Exactly one argument is required") (System/exit 1)) (let [word (-> *command-line-args* first vec)] (generatePermutations (dec (count word)) word))) (ns incise.config (:require [clojure.java.io :refer [reader file resource]] [clojure.edn :as edn] [faulter.core :refer [faultless!]]) (:import [java.io PushbackReader]) (:refer-clojure :exclude [merge load assoc get])) (def ^:private config (atom {})) (defn load [] (when-let [config-file (file (resource "incise.edn"))] (reset! config (edn/read (PushbackReader. (reader config-file)))))) (defn assoc [& more] (apply swap! config clojure.core/assoc more)) (def ^:private validations [[(comp string? :in-dir) "must have an input dir"] [(comp string? :out-dir) "must have an output dir"]]) (defn faultless-config! "Throws an AssertionError unless the given config map, or @config if not supplied, has no faults." [& [given-config]] (faultless! 'config validations (or given-config @config))) (defn get [& more] (faultless-config!) (if (empty? more) @config (apply @config more))) (defn merge [& more] (apply swap! config clojure.core/merge more)) (ns circleci.init ;; (:require circleci.swank) (:require circleci.db) (:require circleci.db.migrations) (:require circleci.web) (:require circleci.repl) (:require circleci.logging) (:require circleci.backend.nodes circleci.backend.project.rails circleci.backend.project.circleci)) (def init* (delay (try (circleci.logging/init) ;; (circleci.swank/init) (circleci.db/init) (circleci.db.migrations/init) (circleci.web/init) (circleci.repl/init) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init))(ns gigrig.test-runner (:require [cljs.test :as test :include-macros true :refer [report]] [devtools.core :as devtools] [gigrig.tests-to-run])) (enable-console-print!) (devtools/install! [:custom-formatters :sanity-hints]) (test/run-all-tests #"gigrig.*-test") (.groupCollapsed js/console "Figwheel Information") (ns clj-gatling.chart-test (:use [clojure.test]) (:require [clojure.java.io :as io] [clj-gatling.chart :as chart])) (defn create-dir [dir] (.mkdirs (java.io.File. dir))) (defn copy-file [source-path dest-path] (io/copy (io/file source-path) (io/file dest-path))) (deftest creates-chart-from-simulation-file (create-dir "target/test-results/input") (copy-file "test/simulation.log" "target/test-results/input/simulation.log") (io/delete-file "target/test-results/output/index.html") (chart/create-chart "target/test-results") (is (.exists (io/as-file "target/test-results/output/index.html")))) (ns icecap.schema-test (:require [icecap.schema :refer :all] [clojure.test :refer :all] [schema.core :as s])) (def simple-http-request {:target "http://example.test"}) (def simple-https-request {:target "https://example.test"}) (def simple-ftp-request {:target "ftp://example.test"}) (deftest RequestSpecTests (testing "Correct request specs validate" (are [example] (s/validate RequestSpec example) simple-http-request simple-https-request #{simple-http-request simple-https-request})) (testing "Empty collections don't validate" (are [example] (some? (s/check RequestSpec example)) [] #{})) (testing "Request specs with unknown/unsupported schemes don't validate" ;; Comparing string representations isn't great, but it's the best ;; easily available tool until maybe one day cddr/integrity's ;; humanize function is on Clojars + can humanize these errors :-) (are [example reason] (= (pr-str (s/check RequestSpec example)) (pr-str reason)) simple-ftp-request {:target '(not ("supported-scheme?" "ftp://example.test"))}))) (defproject nightmod "0.0.1-SNAPSHOT" :description "FIXME: write description" :dependencies [[com.badlogicgames.gdx/gdx "0.9.9"] [com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"] [com.badlogicgames.gdx/gdx-platform "0.9.9" :classifier "natives-desktop"] [nightcode "0.3.0-SNAPSHOT"] [org.clojure/clojure "1.5.1"] [play-clj "0.2.1-SNAPSHOT"] [seesaw "1.4.4"]] :repositories [["sonatype" "https://oss.sonatype.org/content/repositories/snapshots/"]] :source-paths ["src" "src-common"] :javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"] :aot [nightmod.core.desktop-launcher] :main nightmod.core.desktop-launcher) (ns lt.objs.notifos (:require [lt.object :as object] [lt.objs.statusbar :as statusbar] [lt.objs.command :as cmd] [lt.util.js :refer [wait]] [crate.binding :refer [map-bound bound deref?]]) (:require-macros [lt.macros :refer [behavior defui]])) (def standard-timeout 10000) (defn working [msg] (when msg (set-msg! msg)) (statusbar/loader-inc)) (defn done-working ([] (statusbar/loader-dec)) ([msg] (set-msg! msg) (statusbar/loader-dec))) (defn msg* [m & [opts]] (let [m (if (string? m) m (pr-str m))] (object/merge! statusbar/statusbar-loader (merge {:message m :class ""} opts)))) (defn set-msg! [msg opts] (msg* msg opts) (js/clearTimeout cur-timeout) (set! cur-timeout (wait standard-timeout #(msg* "")))) (cmd/command {:command :reset-working :desc "Statusbar: Reset working indicator" :exec (fn [] (statusbar/loader-set 0) )}) (defproject twitter-collector "0.1.0-SNAPSHOT" :description "A Twitter collector with a Datomic stream." :url "https://github.com/replikativ/twitter-collector" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [io.replikativ/gezwitscher "0.2.0-SNAPSHOT"] [io.replikativ/replikativ "0.2.1"] [employeerepublic/slf4j-timbre "0.4.2"] [com.datomic/datomic-free "0.9.5554" :exclusions [commons-codec]] [incanter "1.5.7"]] :main twitter-collector.core) (defproject bolt "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0" :scope "provided"] [org.clojure/clojurescript "0.0-3149" :scope "provided"] [rum "0.2.6"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [secretary "1.2.2"]] :plugins [[lein-cljsbuild "1.0.5"]] :cljsbuild { :builds [{:id "dev" :source-paths ["src"] :compiler {:main "bolt.core" :output-to "resources/public/js/bolt.js" :output-dir "resources/public/js/out" :optimizations :none :source-map true :warnings {:single-segment-namespace false} :asset-path "js/out"}} {:id "prod" :source-paths ["src"] :notify-command ["say"] :compiler {:output-to "resources/public/js/bolt.js" :output-dir "resources/public/js/prod-out" :optimizations :advanced :source-map "resources/public/js/bolt.js.map" :pretty-print false :asset-path "js/prod-out" :warnings {:single-segment-namespace false} :externs ["resources/externs/w3c_speech.js"]}}]}) (defproject onyx-app/lein-template "0.9.7.0-alpha13" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject buddy/buddy-sign "0.6.0" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [com.taoensso/nippy "2.9.0"] [buddy/buddy-core "0.6.0"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.5.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (ns jugsclojure.server (:require [clojure.java.io :as io] [compojure.core :refer [ANY GET PUT POST DELETE defroutes]] [compojure.route :refer [resources]] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.middleware.gzip :refer [wrap-gzip]] [ring.middleware.logger :refer [wrap-with-logger]] [environ.core :refer [env]] [ring.adapter.jetty :refer [run-jetty]]) (:gen-class)) (defroutes routes (GET "/" _ {:status 200 :headers {"Content-Type" "text/html; charset=utf-8"} :body (io/input-stream (io/resource "public/index.html"))}) (resources "/")) (def http-handler (-> routes (wrap-defaults api-defaults) wrap-with-logger wrap-gzip)) (defonce server (atom nil)) (defn restart-server [& [port]] (swap! server (fn [value] (when value (.stop value)) (run-jetty #'http-handler {:port (or port 10555) :join? false})))) (defn -main [& [port]] (let [port (Integer. (or port (env :port)))] (restart-server port)))(ns hydrofoil.expectations.utils (:require [expectations :refer :all] [hydrofoil.core :refer :all] [hydrofoil.evolution :refer :all])) ;;; --------- Utils Tests ------------ (expect 2 (+ 1 1)) (ns discuss.utils.extensions "Extending JS types to be better accessible in CLJS.") (def types [js/NodeList js/HTMLCollection js/HTMLDocument js/HTMLDivElement js/HTMLParagraphElement js/HTMLSpanElement]) (defn extend-type-fn "Given a type t, apply extensions." [t] (extend-type t ISeqable (-seq [array] (array-seq array 0)) ICounted (-count [a] (alength a)) IIndexed (-nth ([array n] (if (< n (alength array)) (aget array n))) ([array n not-found] (if (< n (alength array)) (aget array n) not-found))) ILookup (-lookup ([array k] (aget array k)) ([array k not-found] (-nth array k not-found))) IReduce (-reduce ([array f] (ci-reduce array f)) ([array f start] (ci-reduce array f start))))) (doall (map extend-type-fn types)) (ns mikron.runtime.util "Generic utility functions." (:require [mikron.compiler.util :as compiler.util]) #?(:cljs (:require-macros [mikron.runtime.util]))) #?(:cljs (defn node-env? "Returns `true` if compiled for Node.js, `false` otherwise." [] (= "nodejs" cljs.core/*target*))) (defmacro safe "Evaluates each expression of `body` and returns `ex-value` if an exception occured. Otherwise returns the value of the last expression in `body`." [ex-value & body] `(try (do ~@body) (catch ~(if (compiler.util/cljs?) `js/Object `Throwable) e# ~ex-value))) (ns clojars.unit.certs-test (:require [clojure.test :refer [deftest is]])) (def sixty-days (* 86400 1000 60)) (deftest fail-when-gpg-key-is-about-to-expire (let [expire-date #inst "2021-12-25T00:00:00.000-00:00"] (is (< (System/currentTimeMillis) (- (.getTime expire-date) sixty-days)) (format "Security GPG key expires on %s" expire-date)))) (deftest fail-when-tls-cert-is-about-to-expire (let [expire-date #inst "2020-06-17T00:00:00.000-00:00"] (is (< (System/currentTimeMillis) (- (.getTime expire-date) sixty-days)) (format "clojars.org TLS cert expires on %s.\nBe sure to give lein a copy of the new one: %s" expire-date "https://github.com/technomancy/leiningen/blob/master/leiningen-core/resources/clojars.pem")))) (ns gigrig.components.pedal-search (:require [redux.core :refer [dispatch!]] [gigrig.actions :as a])) (defn- search-field [{:keys [handle-change]}] [:input {:type "text" :placeholder "Search for a pedal" :on-change #(handle-change (.. % -target -value))}]) (defn- suggestion [i props] ^{:key i} [:li [:strong (:model props)] (:brand props)]) (defn dropdown [props] [:ul (map-indexed suggestion (:suggestions props))]) (defn component [props] [:div [search-field {:handle-change (fn [val] (dispatch! a/searchfield-key-pressed val))}] [dropdown (select-keys props [:suggestions])]]) {:user {:signing {:gpg-key "8ED1CE42"} :dependencies [[alembic "0.2.1"] [clj-stacktrace "0.2.7"] [criterium "0.4.2"] [org.clojure/tools.namespace "0.2.4"] [slamhound "1.5.3"] [spyscope "0.1.4"]] :plugins [[cider/cider-nrepl "0.7.0-SNAPSHOT"] [codox "0.6.6"] [jonase/eastwood "0.1.4"] [lein-ancient "0.5.5" :exclusions [commons-codec]] [lein-cljsbuild "1.0.3"] [lein-clojars "0.9.1"] [lein-cloverage "1.0.2"] [lein-difftest "2.0.0"] [lein-kibit "0.0.8"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"]] :injections [(require '[alembic.still :refer [distill]] '[clojure.repl :refer [source]] '[clojure.tools.namespace.repl :as repl] '[criterium.core :refer [bench quick-bench]] 'spyscope.core)] :aliases {"slamhound" ["run" "-m" "slam.hound"]} :search-page-size 50}} (ns cadence.views.landing (:require [cadence.views.common :as common] [noir.response :as response] [noir.cookies :as cook]) (:use noir.core hiccup.core hiccup.page-helpers)) (defpage root "/" [] (common/layout [:h1 "Cadence"] [:p "Welcome to cadence"])) (defpage login "/login" [] (common/layout [:h1 "Login"] [:p "WELCOME TO THE LOGIN PAGE!"] [:form [:post "/login"] [:input "Username"] [:input "Password"] [:input "Login"]])) (defpage login-check [:post "/login"] [] (response/empty {:hello "world"})) (defpage signup "/signup" [] (common/layout [:h1 "Login"] [:p "WELCOME TO THE LOGIN PAGE!"])) (defpage about "/about" [] (common/layout [:h1 "About"] [:p "derpderpderp"])) (ns leiningen.droid.compatibility "Contains utilities for letting lein-droid to cooperate with ant/Eclipse build tools." (:require [clojure.java.io :as io]) (:use [leiningen.core [main :only [info]] [classpath :only [resolve-dependencies]]] [leiningen.droid.utils :only [ensure-paths]])) (defn gather-dependencies "Compatibility task. Copies the dependency libraries into the libs/ folder." [{:keys [root] :as project} & {dir ":dir", :or {dir "libs"} :as other}] (println (class (first (keys other)))) (info "Copying dependency libraries into" (str dir "...")) (let [destination-dir (io/file root dir) dependencies (resolve-dependencies :dependencies project)] (.mkdirs destination-dir) (doseq [dep dependencies] (io/copy dep (io/file destination-dir (.getName ^java.io.File dep)))))) (defn create-repl-port-file "Creates a file named `repl-port` in target directory with port number inside, so fireplace.vim can connect to the REPL." [{{:keys [repl-local-port]} :android, target-path :target-path :as project}] (ensure-paths target-path) (spit (io/file target-path "repl-port") repl-local-port)) (ns scrape-trs.core (:require [scrape-trs.cascade-climbers.core :as cc])) (comment "TODO: - add SPScrapeTripReport - upgrade get-trip-reports to return [errors, trip-reports] based on try-slurp that returns [error, contents] - add docs and tests for get-trip-reports - implement save-trip-reports! - make scrape-wa-trs project that retrieves cc.com tr list pages for each region in WA (POST) retrieves sp.com tr list page for WA get-trip-reports on each page and concat all together save to csv" (def cascade-climbers-washington-regions #{"Alpine Lakes" "Central/Eastern Washington" "Columbia River Gorge" "Ice Climbing Forum" "Mount Rainier NP" "North Cascades" "Olympic Peninsula" "Rock Climbing Forum" "Southern WA Cascades" "the *freshiezone*"})) (defn get-implementation [url] (let [base-url (re-find #"https?://.*?/" url)] (condp = base-url cc/base-url (cc/->CCScrapeTripReport)))) (defn get-trip-reports "" [implementation list-page] (let [pager-urls (.extract-pager-urls implementation list-page) list-pages (if pager-urls (map slurp pager-urls) [list-page]) trip-report-urls (mapcat #(.extract-trip-report-urls implementation %) list-pages) trip-reports (map #(.extract-trip-report implementation %1 %2) trip-report-urls (map slurp trip-report-urls))] trip-reports)) (defn save-trip-reports! "" [f trip-reports]) (ns desdemona.launcher.aeron-media-driver (:gen-class) (:require [clojure.core.async :refer [chan (MediaDriver$Context.) delete-dirs (.dirsDeleteOnStart delete-dirs)) media-driver (try (MediaDriver/launch ctx) (catch IllegalStateException ise (throw (Exception. "Error starting media driver. This may be due to a media driver data incompatibility between versions. Check that no other media driver has been started and then use -d to delete the directory on startup" ise))))] (when help (run! (fn [opt] (println (clojure.string/join " " (take 3 opt)))) cli-options) (System/exit 0)) (println "Launched the Media Driver. Blocking forever...") ( in vubis/read-file vubis/order-and-group (layout.fop/document :all-formats) (layout.fop/generate-pdf! out))) (defn neue-grossdruckbücher [in out] (-> in vubis/read-file vubis/order-and-group (layout.fop/document :grossdruck) (layout.fop/generate-pdf! out))) (defn neue-hörbücher [in out] (-> in vubis/read-file vubis/order-and-group (layout.fop/document :hörbuch) (layout.fop/generate-pdf! out))) (defn neue-braillebücher [in out] (->> in vubis/read-file vubis/order-and-group :braille layout.dtbook/dtbook (spit (io/file out)))) (ns clstreams.core (:gen-class) (:require [clojure.tools.logging :as log] [com.stuartsierra.component :as component] [signal.handler :as signal] [clstreams.pipelines])) (defn run-system [system] (let [system-state (atom system) stop? (promise)] (signal/with-handler :int (log/info "Received SIGINT") (deliver stop? true)) (swap! system-state component/start) (log/info "Topology initialized successfully") @stop? (log/info "Stopping topology") (swap! system-state component/stop) (log/info "Topology stopped") (System/exit 0))) (defn -main [func-name] (let [system (eval (symbol func-name))] (run-system system))) (defproject {{app-name}} "0.1.0-SNAPSHOT" :description "FIXME: write description" :dependencies [[com.badlogicgames.gdx/gdx "0.9.9-SNAPSHOT"] [com.badlogicgames.gdx/gdx-backend-robovm "0.9.9-SNAPSHOT"]] :repositories [["sonatype" "https://oss.sonatype.org/content/repositories/snapshots/"]] :java-source-paths ["src" "../desktop/src-common"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :ios {:robovm-opts ["-libs" "libs/libObjectAL.a:libs/libgdx.a" "-frameworks" "UIKit:OpenGLES:QuartzCore:CoreGraphics:OpenAL:AudioToolbox:AVFoundation" "-resources" "../desktop/resources/**"]} :aot :all :main {{ios-namespace}}) (ns clojurewerkz.cassaforte.debug-utils (:use clojure.stacktrace)) (defmacro output-debug "Prints debugging statements out." [q] `(do (println "Built query: " ~q) ~q)) (defmacro catch-exceptions "Catches driver exceptions and outputs stacktrace." [& forms] `(try (do ~@forms) (catch com.datastax.driver.core.exceptions.DriverException ire# (println (print-stack-trace ire# 5)) (println "Error came from server:" (.getMessage ire#))))) ;; Copyright 2008-2011 Red Hat, Inc, and individual contributors. ;; ;; This is free software; you can redistribute it and/or modify it ;; under the terms of the GNU Lesser General Public License as ;; published by the Free Software Foundation; either version 2.1 of ;; the License, or (at your option) any later version. ;; ;; This software is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this software; if not, write to the Free ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ;; 02110-1301 USA, or see the FSF site: http://www.fsf.org. (ns immutant.registry (:import (org.jboss.msc.service ServiceName))) (def registry nil) (defn set-registry [v] (def registry v)) (defn service [name] (if registry (let [key (ServiceName/parse name) value (.getService registry key)] (and value (.getValue value))))) (ns {{namespace}} (:require [play-clj.core :refer :all] [play-clj.ui :refer :all])) (defscreen main-screen :on-show (fn [screen entities] (update! screen :renderer (stage)) (label "Hello world!" (color :white))) :on-render (fn [screen entities] (clear!) (render! screen entities))) (defgame {{app-name}} :on-create (fn [this] (set-screen! this main-screen))) (defproject incise "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [speclj "2.1.2"] [ring "1.2.0"] [hiccup "1.0.2"] [compojure "1.1.5"] [http-kit "2.1.1"] [robert/hooke "1.3.0"] [me.raynes/cegdown "0.1.0"] [org.clojure/java.classpath "0.2.0"] [org.clojure/tools.namespace "0.2.4"] [org.clojure/tools.cli "0.2.4"] [clj-time "0.5.1"] [com.taoensso/timbre "2.6.1"] [com.ryanmcg/stefon "0.5.1"]] :profiles {:dev {:dependencies [[speclj "2.5.0"]]}} :plugins [[speclj "2.5.0"]] :test-paths ["spec/"] :main incise.core) (defproject me.arrdem/oxcart (slurp "VERSION") :description "An experimental optimizing compiler for Clojure code" :url "http://github.com/arrdem/oxcart" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.5.1"] [org.clojure/tools.analyzer "0.2.2"] [org.clojure/tools.analyzer.jvm "0.2.2"] [org.clojure/tools.emitter.jvm "0.0.1-SNAPSHOT"] [org.clojure/tools.reader "0.8.5"] [com.taoensso/timbre "3.2.1"] ] :injections [(set! *print-length* 10) (set! *print-level* 10)]) (defproject overtone "0.7.0-SNAPSHOT" :description "Programmable Music." :url "http://project-overtone.org" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/core.incubator "0.1.0"] [org.clojure/data.json "0.1.2"] [overtone/scsynth-jna "0.1.2-SNAPSHOT"] [overtone/at-at "0.2.1"] [overtone/osc-clj "0.7.1"] [overtone/byte-spec "0.3.1"] [overtone/midi-clj "0.2.1"] [clj-glob "1.0.0"] [org.clojure/core.match "0.2.0-alpha6"] [seesaw "1.3.1-SNAPSHOT"]] :jvm-opts ["-Xms256m" "-Xmx1g" "-XX:+UseConcMarkSweepGC"]) (defproject org.onyxplatform/onyx-metrics "0.8.0.3" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject lein-difftest "1.3.2-SNAPSHOT" :description "Run tests, display better test results." :dependencies [[org.clojars.brenton/difform "1.1.0"] [clj-stacktrace "0.2.0" :exclusions [org.clojure/clojure]] [clansi "1.0.0"]] :hooks [leiningen.hooks.difftest] :test-path "test-fail") (defproject fault "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :profiles {:dev {:dependencies [[junit/junit "4.11"] [org.mockito/mockito-core "1.10.8"]] :junit ["test/java"] :java-source-paths ["src/java" "test/java"] :plugins [[lein-junit "1.1.3"]] :junit-formatter "brief"}} :javac-target "1.7" :dependencies [[org.clojure/clojure "1.6.0"] [criterium "0.4.3"]] :java-source-paths ["src/java"]) (defproject trotter "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [com.palletops/pallet "0.8.0-RC.9"] [com.palletops/pallet-jclouds "1.7.3"] [org.apache.jclouds.provider/rackspace-cloudservers-us "1.8.0"]] :profiles {:dev {:plugins [[com.palletops/pallet-lein "0.8.0-alpha.1"]]}}) (defproject org.clojure-grimoire/lib-grimoire "0.9.1" :description "A shared library for Grimoire infrastructure" :url "http://github.com/clojure-grimoire/lib-grimoire" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [version-clj "0.1.0" :exclusions [org.clojure/clojure]] [me.arrdem/guten-tag "0.1.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [org.clojure/core.match "0.3.0-alpha4" :exclusions [org.clojure/clojure]] [com.cemerick/url "0.1.1" :exclusions [com.cemerick/clojurescript.test org.clojure/clojure]]] :profiles {:dev {:dependencies [[org.clojure/test.check "0.6.1" :exclusions [org.clojure/clojure]]]}}) (ns clj-center.core (:require [clojure.java.io :as io] [clojure.tools.logging :as log] [clojure.tools.nrepl.server :refer [start-server]]) (:gen-class)) (def ^:dynamic *nrepl-file* (io/file (System/getProperty "user.home") ".clj-center-nrepl-port")) (defn -main [] (let [nrepl-file (io/file *nrepl-file*) nrepl-file-str (str *nrepl-file*) _ (when (.exists nrepl-file) (throw (RuntimeException. (str "file already exists: " nrepl-file-str)))) server (start-server)] (log/debug server) (spit nrepl-file (:port server)) (log/info "write nrepl port info to file: " nrepl-file-str) (.deleteOnExit nrepl-file))) {:dev {:aliases {"test-all" ["with-profile" "dev,1.7:dev" "test"]} :dependencies [[com.nimbusds/nimbus-jose-jwt "4.13.1"]] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.4.0"] [lein-ancient "0.6.10"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}} (meditations "There is a wide range of ways to generate a sequence" (= __ (range 1 5)) "The range starts at the beginning by default" (= __ (range 5)) "It's important to only take what you need from a big sequence" (= [0 1 2 3 4 5 6 7 8 9] (take __ (range 100))) "You can also limit results by dropping what you don't need" (= [95 96 97 98 99] (drop __ (range 100))) "Iteration provides an infinite lazy sequence" (= __ (take 20 (iterate inc 0))) "Repetition is key" (= [:a :a :a :a :a :a :a :a :a :a ] (repeat 10 __)) "Iteration can be used for repetition" (= (repeat 100 :foo) (take 100 (iterate ___ :foo)))) (defproject dropwizard-clojure/dropwizard-clojure "0.1.1" :description "Dropwizard for Clojure" :url "https://github.com/stevensurgnier/dropwizard-clojure" :license {:name "Apache License 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.3.1"] [io.dropwizard/dropwizard-core "0.7.1"]] :source-paths ["src/main/clojure"] :test-paths ["src/test/clojure"] :profiles {:uberjar {:aot :all}} :global-vars {*warn-on-reflection* true}) (ns adzerk.boot-cljs.util (:require [clojure.java.io :as io] [clojure.string :as string])) (defn path->js "Given a path to a CLJS namespace source file, returns the corresponding Google Closure namespace name for goog.provide() or goog.require()." [path] (-> path (string/replace #"\.clj[s|c]$" "") (string/replace #"[/\\]" "."))) (defn path->ns "Given a path to a CLJS namespace source file, returns the corresponding CLJS namespace name." [path] (-> (path->js path) (string/replace #"_" "-"))) (defn get-name [path-or-file] (-> path-or-file io/file .getName)) (defn path [& parts] (.getPath (apply io/file parts))) (ns com.wsscode.pathom.diplomat.http.clj-http (:require [clj-http.client :as client] [com.wsscode.pathom.diplomat.http :as http] [clojure.spec.alpha :as s])) (defn request [req] (s/assert ::http/request req) (client/request req)) (s/fdef request :args (s/cat :request ::http/request) :ret ::http/response) (ns nth-prime) (defn sqrt "Wrapper around java's sqrt method." [number] (int (Math/ceil (Math/sqrt number)))) (defn divides? "Helper function to decide if a number is evenly divided by divisor." [number divisor] (zero? (mod number divisor))) (defn- prime-by-trial-division? "Simple trial division prime check." [number] (empty? (for [n (range 3 (inc (sqrt number)) 2) :when (divides? number n)] n))) (defn prime? [number] (cond (= 2 number) true (even? number) false :else (prime-by-trial-division? number))) (defn next-prime [start] (loop [n (inc start)] (if (prime? n) n (recur (inc n))))) (defn nth-prime [index] (when (not (pos? index)) (throw (IllegalArgumentException. "nth-prime expects a positive integer for an argument"))) (loop [cur-prime 2 num-times 1] (if (= num-times index) cur-prime (recur (next-prime cur-prime) (inc num-times))))) (ns comic-reader.system (:require [clojure.tools.namespace.repl :refer [refresh]] [comic-reader.server :as server] [comic-reader.sites :as sites] [com.stuartsierra.component :as component] [environ.core :refer [env]])) (defn comic-reader-system [config-options] (let [{:keys [app port]} config-options] (component/system-map :site-scraper (sites/new-site-scraper) :server (component/using (server/new-server app port) [:site-scraper])))) (def system nil) (defn init [config-options] (alter-var-root #'system (constantly (comic-reader-system config-options)))) (defn start [] (alter-var-root #'system component/start)) (defn stop [] (alter-var-root #'system (fn [s] (when s (component/stop s))))) (defn go [config-options] (init config-options) (start)) (defn reset [] (stop) (refresh :after 'comic-reader.system/-main)) (defn -main [& [port]] (let [port (Integer. (or port (env :port) 10555))] (go {:app server/app :port port}))) (ns funnel-front.actions.app-actions (:use [funnel-front.lib.helpers :only [clog!]] [funnel-front.stores.main-store :only [app-state]])) (defn update-app-state [event] (let [data (.parse js/JSON (.-data event)) queries (.-query_ids data) body (.parse js/JSON (.-body data))] (.log js/console data) (swap! app-state update-in [:queries (keyword (first queries)) :items] conj {:body body}))) (ns toucan.util "Utility functions used by other Toucan modules." (:require [clojure.string :as s]) (:import java.util.Locale)) (defn keyword->qualified-name "Return keyword K as a string, including its namespace, if any (unlike `name`). (keyword->qualified-name :type/FK) -> \"type/FK\"" [k] (when k (s/replace (str k) #"^:" ""))) (defn lower-case "Locale-agnostic version of `clojure.string/lower-case`. `clojure.string/lower-case` uses the default locale in conversions, turning `ID` into `ıd`, in the Turkish locale. This function always uses the `Locale/US` locale." [s] (.. s toString (toLowerCase (Locale/US)))) (set-env! :dependencies '[[org.clojure/clojure "1.6.0"] [boot-jruby "0.2.0"]] :source-paths #{"resources"}) (require '[clojure.java.io :as io] '[boot.jruby :refer [jruby make-jruby]]) (deftask haml "convert haml to html" [] (let [jrb (make-jruby)] (with-pre-wrap fileset (jrb fileset ;; installs the haml gem, unless it's already installed :gem [["haml" "4.0.5"]] ;; sets data from clojure in the ruby runtime, as globals :set-var {"$haml_files" (->> fileset input-files (by-ext [".haml"]) (mapv #(.getAbsolutePath (tmpfile %)))) "$data" {:what_the "nuts"}} ;; evaluates resources/render_haml.rb, that does the actual work :eval-file [(-> "render_haml.rb" io/resource io/file .getAbsolutePath)])))) (deftask show-files "A debug task to println any files with :ext in the fileset" [e ext PATH [str] "extensions to show"] (with-pre-wrap fileset (doseq [:let [out-f (output-files fileset)] f (if (seq ext) (by-ext ext out-f) out-f)] (println (str "\n" (tmppath f) ":\n\n") (slurp (tmpfile f)))) fileset)) (ns user (:use speclj.config io.aviso.tracker io.aviso.repl clojure.pprint [io.aviso.twixt :only [get-asset-uris default-options]] io.aviso.twixt.startup ring.adapter.jetty) (:require ;; See https://github.com/slagyr/speclj/issues/79 speclj.run.standard)) (install-pretty-exceptions) (alter-var-root #'default-config assoc :color true :reporters ["documentation"]) (defn handler [request] (track "Invoking handler (that throws exceptions)" (if (= (:uri request) "/fail") ;; This will fail at some depth: (doall (get-asset-uris (:twixt request) "invalid-coffeescript.coffee"))))) (defn app [] (wrap-with-twixt handler default-options true)) (defn launch [] (let [server (run-jetty (app) {:port 8888 :join? false})] #(.stop server)))(ns comic-reader.comic-repository) (defprotocol ComicRepository (list-sites [this] "List all the comic sites available from this repository.") (list-comics [this site] "List all the comics available on this site.") (previous-locations [this site comic-id location n] "Get up-to n locations that precede `location' in a comic.") (next-locations [this site comic-id location n] "Get up-to n locations that follow `location' in a comic.") (image-tag [this site location] "Get the hiccup image tag for this comic location.")) (defprotocol WritableComicRepository (store-sites [this sites] "Store a seq of site records.") (store-comics [this site-id comics] "Store a seq of comic records.") (store-locations [this site-id comic-id locations] "Store a seq of location records.")) (ns clj-spotify.test-utils (:require [clojure.data.json :as json] [clojure.data :as data] [clj-http.client :as client] [clojure.data.codec.base64 :as b64] )) (def enc-auth-string (str "Basic " (-> (str (System/getenv "SPOTIFY_CLIENT_ID") ":" (System/getenv "SPOTIFY_SECRET_TOKEN")) (.getBytes) (b64/encode) (String. "UTF-8")))) (defonce spotify-oauth-token (-> "https://accounts.spotify.com/api/token" (client/post {:form-params {:grant_type "client_credentials"} :headers {:Authorization enc-auth-string}}) :body (json/read-str :key-fn keyword) :access_token)) (defn reset-volatile-vals "Function to reset values that change over time such as amount of followers or popularity ranking." [k v] (condp :followers {:href nil, :total 0} :popularity 0 :total 0 :snapshot_id "123456" (and (string? v) (.contains v "scdn.co")) "https://scdn.co/preview/ref" :else v)) (defn test-json-string-to-map [s] "Read string and transform to json but ignore certain keys." (json/read-str s :value-fn reset-volatile-vals :key-fn keyword)) (defproject funcool/promesa "1.2.0" :description "A promise library for ClojureScript" :url "https://github.com/funcool/promesa" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.8.51" :scope "provided"] [funcool/cats "1.2.1" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]]]) (defproject io.replikativ/konserve "0.3.0-beta1" :description "Durable cross-platform key-value store protocol with core.async." :url "http://github.com/replikativ/konserve" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :source-paths ["src"] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.48"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [io.replikativ/incognito "0.1.1"]] :plugins [[lein-cljsbuild "1.0.6"]] :profiles {:dev {:plugins [[com.cemerick/austin "0.1.6"]]}} :cljsbuild {:builds [{:source-paths ["src"] :compiler {:output-to "resources/public/js/main.js" :optimizations :simple :pretty-print true}}]}) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_202930-g49ef67c"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.5.0"] [zookeeper-clj "0.9.3" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (ns leiningen.grim (:require [leiningen.core.eval :refer [eval-in-project]])) (def deps ['[org.clojure/tools.namespace "0.2.7"] '[org.clojure/java.classpath "0.2.2"] '[org.clojure-grimoire/lib-grimoire "0.1.1"] '[org.clojure-grimoire/lein-grim "0.1.1"] ;; FIXME: do this better? '[me.arrdem/detritus "0.2.0"]]) (defn grim [project & args] (let [args (concat ((juxt :group :name :version) project) args)] (eval-in-project (update-in project [:dependencies] concat deps) `(do (require 'grimoire.doc) (grimoire.doc/-main ~@args))))) (ns org.scode.httpgctest (:gen-class) (:require [clojure.contrib.duck-streams :as duck-streams]) (:use [compojure] [compojure.http response]) (:import (java.io ByteArrayOutputStream ByteArrayInputStream FileInputStream File))) (defn gen-recursive-garbage [lvl garbage] (if (> 0 lvl) (gen-recursive-garbage (dec lvl) {:some-nice-garbage [1 2 3 4 5 6 7 8 9 10]}) (do (Thread/sleep (rand 1000)) garbage))) (defn serve-gengarbage [request] (do (doseq [future (doall (for [i (range 10)] (future (gen-recursive-garbage 50 []))))] @future) {:status 200 :headers {} :body "Garbage all around."})) (def data (ref ["data"])) (defn serve-gendata [request] (dosync (alter data #(concat %1 (repeat (count %1) "data")))) {:status 200 :headers {} :body (str "size is now " (count @data))}) (defroutes greeter (GET "/gengarbage" serve-gengarbage) (GET "/gendata" serve-gendata)) (defn -main [& args] (run-server {:port 9191} "/*" (servlet greeter))) (ns circle.util.fs "utilities for working with files and directories" (:require fs) (:require [clojure.java.io :as io]) (:import org.apache.commons.io.FileUtils) (:import (org.apache.commons.io.filefilter IOFileFilter TrueFileFilter)) (:require [circle.sh :as sh])) (def symlink-filter (reify IOFileFilter (accept [this file] (not (FileUtils/isSymlink file))))) (defn all-files "Returns a list of all files in the repos" [dir] (when (fs/exists? dir) (FileUtils/listFiles (io/as-file dir) symlink-filter symlink-filter))) (defn files-matching "Returns a list of files that match re." [dir re] (->> dir (all-files) (filter #(re-find re %)))) (defn re-file? "True if the contents of the file match the regex" [file re] (when (fs/exists? file) (boolean (seq (re-find re (slurp file)))))) (defn line-count "returns the number of lines in the file" [file] (if (fs/exists? file) (->> file (slurp) (re-seq #"\n") (count)) 0))(ns {{namespace}} (:require [play-clj.core :refer :all]) (:import [com.badlogic.gdx.graphics Color] [com.badlogic.gdx.graphics.g2d BitmapFont] [com.badlogic.gdx.scenes.scene2d.ui Label Label$LabelStyle])) (defn on-show [screen] (create-renderer! screen :type :stage) (let [style (Label$LabelStyle. (BitmapFont.) (Color. 1 1 1 1)) label (Label. "Hello world!" style)] (set-entities! screen [label]))) (defn on-render [screen] (clear!) (draw! screen (get-entities screen))) (defscreen main-screen :on-show on-show :on-render on-render) (defgame {{app-name}} :on-create (fn [this] (set-screen! this main-screen))) (ns metrics.gauges (:use [metrics.utils :only (metric-name)]) (:import (com.yammer.metrics Metrics)) (:import (com.yammer.metrics.core Gauge))) ; Create ---------------------------------------------------------------------- (defmacro gauge "Create a new Gauge metric with the given title. The body exprs will be used to retrieve the value of the Gauge when requested." [title & body] `(Metrics/newGauge (metric-name ~title) (proxy [Gauge] [] (value [] (do ~@body))))) (defn gauge-fn "Create a new Gauge metric with the given title. The given function will be called (with no arguments) to retrieve the value of the Gauge when requested." [title f] (Metrics/newGauge (metric-name title) (proxy [Gauge] [] (value [] (f))))) (defmacro defgauge "Define a new Gauge metric with the given title. The rest of the arguments may be a body form or function to call to retrieve the value of the Gauge." [title & body] (cond (and (= 1 (count body)) (and (symbol? (first body)) (fn? (eval (first body))))) `(gauge-fn ~(str title) ~(first body)) true `(gauge ~(str title) ~@body))) ; Read ------------------------------------------------------------------------ (defn value "Return the value of the given Gauge." [^Gauge g] (.value g)) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.repo.users "A main interface for access to remote resources." (:refer-clojure :exclude [do]) (:require [beicon.core :as rx] [uxbox.repo.core :refer (request url send!)] [uxbox.state :as ust])) (defmethod request :fetch/profile [type _] (let [url (str url "/profile/me")] (send! {:method :get :url url}))) (defmethod request :update/profile [type data] (let [params {:url (str url "/profile/me") :method :put :body data}] (send! params))) (defmethod request :update/password [type data] (let [params {:url (str url "/profile/me/password") :method :put :body data}] (send! params))) (ns detritus.variants (:require [detritus.update :refer [take-when]])) (defmacro defvariant {:doc "Defines a variant constructor with a namespace qualified tag, and keyword named members." :arglists '([name doc-string? attr-map? members])} [vname & args] (let [;; Parse direct args [?docstring args] (take-when string? "" args) [?attr-map args] (take-when map? {} args) members (first args) ;; FIXME inline guards are a bad habit of mine _ (assert (vector? members) "Members is not a vector!") _ (assert (every? symbol? members) "Members may contain only symbols!") ;; Build used datastructures kw-members (map (comp keyword name) members) kw-tag (keyword (name (ns-name *ns*)) (name vname)) ?attr-map (assoc ?attr-map :variant true :variant/members kw-members :variant/tag kw-tag)] `(defn ~vname ~?docstring ~?attr-map ~members [~kw-tag (hash-map ~@(interleave kw-members members))]))) (ns hyjinks.server.dev (:require [ring.util.response :refer [response]] [compojure.core :refer [defroutes GET]] [compojure.route :refer [resources]] [hyjinks.core :refer [tag->string html head title import-js body div css]])) (def page-frame (tag->string (html (head (title "Hyjinks Test Page") (import-js "js/compiled/hyjinks_browser.js")) (body (div {:id "results"} (css :font-size "30px" :font-weight "bold")) (div "Look at console for detailed results."))))) (defroutes app-routes (GET "/" [] (response page-frame)) (resources "/")) (def app #'app-routes) (ns io.perun.contrib.inject-scripts (:require [clojure.java.io :as io] [io.perun.core :as perun])) (defn inject [html scripts] (reduce #(.replaceFirst %1 " " (format "" %2)) html scripts)) (defn inject-scripts [scripts in-path out-path] (let [html (-> in-path io/file slurp) updated-html (inject html scripts)] (spit (io/file out-path) updated-html))) (defproject simple "0.10.10-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.52"] [reagent "0.8.1"] [re-frame "0.10.9"]] :plugins [[lein-shadow "0.1.5"]] :clean-targets ^{:protect false} [:target-path ".shadow-cljs" "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (ns dev (:require [clojure.pprint :refer [pprint]] [clojure.test :refer [run-all-tests]] [clojure.reflect :refer [reflect]] [clojure.repl :refer [apropos dir doc find-doc pst source]] [clojure.tools.namespace.repl :as tnr] [clojure.java.io :as io] [mount.core :as mount :refer [start-without start-with start-with-states stop-except only except swap swap-states with-args]] [mount.tools.graph :as mount-graph] [clojure.tools.logging :as log :refer [spy spyf]] [adzerk.env :refer [env]] [<>.core :as core] [<>.system :as system])) (defn config "Pretty print the system status" [] (pprint system/config)) (defn status "Pretty print the system status" [] (pprint (mount-graph/states-with-deps))) (def start #(system/start nil)) ;; no args to start (def stop system/stop) (defn go [] (start) :ready) (defn test-all [] (run-all-tests #"<>.*test$")) (defn reset-and-test [] (reset) (time (test-all))) (ns lexemic.core (:require [cljs.nodejs :as node] [lexemic.sentiment.simple :as sentiment])) (def ^:private version (.-version (node/require "../package.json"))) (def ^:private fs (node/require "fs")) (def ^:private spacer "") (def ^:private version (str "Lexemic v" version)) (def ^:private usage-banner "Usage: lexemic [command] [implementation] [target...]") (def ^:private supported-commands #{"help" "sentiment"}) (defn- show-help [] (do (println version) (println spacer) (println usage-banner))) (defn- run [cmd impl text] (condp = cmd "sentiment" (prn (sentiment/analyse text)) (show-help))) (defn -main [& args] (let [command (first args) impl (let [impl* (second args)] (when (and impl* (.match impl* #"^-{1,2}")) impl*)) targets (if impl (drop 2 args) (drop 1 args)) file? (fn [path] (.existsSync fs path)) get-string (fn [x] (if (file? x) (.readFileSync fs x "utf8") (identity x))) contents (map get-string targets) input (print-str contents)] (if-let [cmd (supported-commands command)] (run cmd impl input) (show-help)))) (set! *main-cli-fn* -main) (defproject io.aviso/tracker "0.1.0" :description "Track per-thread operations when exceptions occur" :url "https://github.com/AvisoNovate/tracker" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] ] :codox {:src-dir-uri "https://github.com/AvisoNovate/tracker/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"]]}}) (defproject pinpointer "0.1.0-SNAPSHOT" :description "Pinpointer makes it easy to grasp which part of data is causing the spec error" :url "https://github.com/athos/Pinpointer" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0-alpha20" :scope "provided"] [org.clojure/clojurescript "1.9.908" :scope "provided"] [clansi "1.0.0"] [fipp "0.6.8"] [spectrace "0.1.0-SNAPSHOT"]] :plugins [[lein-cljsbuild "1.1.4"]] :cljsbuild {:builds {:dev {:source-paths ["src"] :compiler {:output-to "target/main.js" :output-dir "target" :optimizations :whitespace :pretty-print true}}}} :profiles {:dev {:dependencies [[org.clojure/test.check "0.10.0-alpha2"]]}}) (defproject org.onyxplatform/onyx-datomic "0.7.3-SNAPSHOT" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_160450-g706d154"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject obb-rules "1.5" :description "Orion's Belt battle rules" :url "https://github.com/orionsbelt-battlegrounds/obb-rules" :license {:name "The MIT License" :url "file://LICENSE" :distribution :repo :comments "Copyright 2011-2014 Pedro Santos All Rights Reserved."} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/math.numeric-tower "0.0.4"] [org.clojure/test.check "0.6.2"]] :source-paths ["src"] :test-paths ["test"] :scm {:name "git" :url "git@github.com:orionsbelt-battlegrounds/obb-rules.git"} :profiles {:dev {:plugins [[com.jakemccrary/lein-test-refresh "0.5.4"] [lein-cloverage "1.0.2"]]}} ) (defproject buddy/buddy-core "1.3.0" :description "Cryptographic Api for Clojure." :url "https://github.com/funcool/buddy-core" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.9.0-alpha14" :scope "provided"] [org.clojure/test.check "0.9.0" :scope "test"] [commons-codec/commons-codec "1.10"] [org.bouncycastle/bcprov-jdk15on "1.57"] [org.bouncycastle/bcpkix-jdk15on "1.57"]] :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.cljx|\.swp|\.swo|user.clj"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"]) (ns advent-2017.day-17) (def input 345) (defn spin [step [current-pos value buffer]] (let [new-pos (inc (mod (+ current-pos step) value))] [new-pos (inc value) (-> (subvec buffer 0 new-pos) (into [value]) (into (subvec buffer new-pos)))])) (defn part-1 [] (let [[current-pos _ buffer] (nth (iterate (partial spin input) [0 1 [0]]) 2017)] (buffer (inc current-pos)))) (defn part-2 [] (loop [current-pos 0 value 1 after-zero nil] (if (== (dec value) 50000000) after-zero (let [new-pos (inc (mod (+ current-pos input) value))] (recur new-pos (inc value) (if (== 1 new-pos) value after-zero)))))) (ns vault.index.core) (ns whitman.client) (def format-url [url user] (format url user)) (ns circle.backend.build.inference "fns for creating a build from a source tree" (:use circle.util.fs) (:require [circle.backend.build.template :as template]) (:require [circle.backend.action :as action]) (:require circle.backend.build.inference.rails circle.backend.build.inference.php)) (def inference-fns {:rails (var circle.backend.build.inference.rails/spec) :php (var circle.backend.build.inference.php/spec)}) (defn set-inferred [actions] (map #(action/set-source % :inferred) actions)) (def action-order [:pre-setup :setup :post-setup :pre-test :test :post-test]) (defn merge-actions [specs] (->> specs (group-by :type) ((apply juxt action-order)) (apply concat))) (defn infer-actions "Dispatches on repo type returned from (infer-repo-type). Returns a seq of build actions." [repo] (let [actions (->> inference-fns (vals) (mapcat #(% repo)) (merge-actions) (set-inferred))] ;; if we do an inference, and come up with nothing useful, don't ;; add the template, because that would start nodes. Just return [] (if (seq actions) (template/apply-template :build actions) []))) (ns user (:require [com.stuartsierra.component :as component] [clojure.tools.namespace.repl :refer [refresh refresh-all]] [kixi.hecuba.system :refer (new-system)] [clojure.pprint :refer (pprint)] [clojure.reflect :refer (reflect)] [clojure.repl :refer (apropos dir doc find-doc pst source)] [modular :refer (system)])) (defn init "Constructs the current development system." [] (alter-var-root #'system (constantly (new-system)))) (defn start "Starts the current development system." [] (alter-var-root #'system component/start)) (defn stop "Shuts down and destroys the current development system." [] (alter-var-root #'system (fn [s] (when s (component/stop s))))) (defn go "Initializes the current development system and starts it running." [] (init) (start)) (defn reset [] (stop) (refresh :after 'user/go)) ;; To connect to the browser REPL: ;; ;; Comment in the last line (repl/connect) in this file ;; ;; In one terminal run: ;; lein ring server-headless ;; ;; In a second terminal, run: ;; cd src/coming_soon/cljs ;; lein trampoline cljsbuild repl-listen ;; DON'T type anything yet into the REPL, it's not connected ;; ;; Open a browser to http://localhost:3000 (possibly refresh a few times) ;; ;; Pause for a moment, then in the 2nd terminal, test if your connected with: ;; (+ 1 1) ;; ;; If you get 2, you're all set! ;; ;; To do anything useful, the next thing you probably want to do is (in-ns 'coming-soon) to switch to coming-soon's client-side namespace. (ns connect (:require [clojure.browser.repl :as repl])) ;; Comment in to connect to the browser REPL (repl/connect "http://localhost:9000/repl")(ns net.nightweb.main (:use [neko.application :only [defapplication]] [neko.notify :only [notification]] [neko.resource :only [get-resource get-string]] [net.clandroid.service :only [defservice start-foreground start-receiver stop-receiver]] [nightweb.router :only [start-router stop-router]])) (defapplication net.nightweb.Application) (def service-name "net.nightweb.MainService") (def shutdown-receiver-name "ACTION_CLOSE_APP") (defservice net.nightweb.MainService :def service :on-create (fn [this] (start-foreground this 1 (notification :icon (get-resource :drawable :ic_launcher) :content-title (get-string :shut_down_nightweb) :content-text (get-string :nightweb_is_running) :action [:broadcast shutdown-receiver-name])) (start-receiver this shutdown-receiver-name (fn [context intent] (try (.stopSelf service) (catch java.lang.Exception e nil)))) (start-router (.getAbsolutePath (.getFilesDir this)) true)) :on-destroy (fn [this] (stop-receiver this shutdown-receiver-name) (stop-router))) <�$~�������� [�0f�!�#�'�)�-~/3U7�;�;�AmB�D�D�H�J�M�N�P�R~T$X�Y_\�_?c:g|j�m�n�p (count selection) 0) (lib/update-state-item! :user :selection (fn [_] selection)) (lib/log selection)))) (defn get-selection "Return the stored selection of the user." [] (get-in @lib/app-state [:user :selection])) (defn listen [el type] (let [out (chan)] (events/listen el type (fn [e] (put! out e))) out)) (let [clicks (listen (.getElementById js/document "discuss-text") "click")] (go (while true ( Remote artifact exists, ignoring:" path) (cf/put-file conn path file))) (defn upload-repo [conn repo] (->> (file-seq repo) (filter (memfn isFile)) (run! #(upload-file conn (cf/remote-path (.getAbsolutePath repo) (.getAbsolutePath %)) %)))) (defn -main [& args] (if (not= 4 (count args)) (println "Usage: repo-path container-name user key") (let [[repo container-name username key] args] (upload-repo (cf/connect username key container-name) (io/file repo))))) (set-env! :source-paths #{"src"} :resource-paths #{"src"} :dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"] [boot/core "2.1.0" :scope "provided"] [junit "4.12" :scope "test"]]) (require '[radicalzephyr.boot-junit :refer [junit]]) (def +version+ "0.4.0") (bootlaces! +version+) (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}}) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.scheduled-jobs.garbage "Garbage Collector related tasks." (:require [suricatta.core :as sc] [uxbox.db :as db] [uxbox.util.quartz :as qtz])) ;; --- Delete projects ;; TODO: move inline sql into resources/sql directory (defn clean-deleted-projects "Task that cleans the deleted projects." {::qtz/repeat? true ::qtz/interval (* 1000 3600 24) ::qtz/job true} [] (with-open [conn (db/connection)] (sc/atomic conn (let [sql (str "DELETE FROM projects " " WHERE deleted=true AND " " (now()-deleted_at)::interval > '10 day'::interval;")] (sc/execute conn sql))))) (ns desdemona.launcher.utils (:require [clojure.core.async :refer [chan ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to ; deal in the Software without restriction, including without limitation the ; rights to use, copy, modify, merge, publish, distribute, sublicense, and/or ; sell copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING ; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS ; IN THE SOFTWARE. (ns snake.game-elements) (defn create-apple [x y] {:x x :y y :type :apple}) (defn create-snake [x y] {:x x :y y :next nil :prev nil :type :snake}) (ns decktouch.card-data) (def cards [])(defproject {{name}} "0.1.0-SNAPSHOT" :description "FIXME: write this!" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.28" :classifier "aot" :exclusion [org.clojure/data.json]] [org.clojure/data.json "0.2.6" :classifier "aot"]] :jvm-opts ^:replace ["-Xmx1g" "-server"] :node-dependencies [[source-map-support "0.3.2"]] :plugins [[lein-npm "0.5.0"]] :source-paths ["src" "target/classes"] :clean-targets ["out" "release"] :target-path "target") ;; Utility functions and functions for manipulating state (ns robinson.macros) (defmacro log-time "Log the time it takes to execute body." [msg & body] `(time (let [result# (do ~@body)] (println ~msg) result#))) (defn vec-match? [test-expr expr] (let [arg-match? (fn [[test-term term]] (cond (fn? test-term) (test-term term) (= :* test-term) true (set? test-term) (contains? test-term term) :else (= test-term term))) found-match (every? arg-match? (map vector test-expr expr))] (if found-match (println "Found match" test-expr expr) (println "Did not find match" test-expr expr)) found-match)) (defmacro first-vec-match [match & body] `(condp vec-match? ~match ~@body)) (ns circle.init (:require circle.env) ;; env needs to be loaded before any circle source files containing tests (:require circle.swank) (:require circle.db) (:require circle.repl) (:require circle.logging) (:require circle.util.chdir) (:require fs)) (defn maybe-change-dir "Change the current working directory to backend/. Although changing it to the project root makes more conceptual sense, there are lots of entrypoints to the clojure code (for example, tests, swank, etc) which are hard to get a hook on, but making sure there is a hook into the Rails code is easy. It makes more code to write this in JRuby, but it's written now, so why change it.cl" [] (when (= (-> (fs/cwd) fs/normpath fs/split last) "CircleCI") (circle.util.chdir/chdir "backend") (println "Changing current working directory to" (fs/abspath (fs/cwd))))) (defonce init* (delay (try (println "circle.init/init") (circle.logging/init) (when (System/getenv "CIRCLE_SWANK") (circle.swank/init)) (circle.db/init) (circle.repl/init) (println (java.util.Date.)) true (catch Exception e (println "caught exception on startup:") (.printStackTrace e) (println "exiting") (System/exit 1))))) (defn init "Start everything up. idempotent." [] @init*) (defn -main [] (init))(ns snake.terminal-reader) (defn read-input [input-receiver] (loop [data (read)] (case data "\u001B[A" ( ;(send input-receiver move 'up) (print "UP") ; (recur [data (read)]) ) "\u001B[B" (print "DOWN") (print (str "DEFAULT" data))) (recur (str data (read))))) (defn start [input-receiver] (send (agent nil) read-input input-receiver)) (ns leiningen.new.re-frame (:require [leiningen.new.templates :refer [renderer name-to-path ->files]] [leiningen.core.main :as main])) (def render (renderer "re-frame")) (defn re-frame "FIXME: write documentation" [name] (let [data {:name name :sanitized (name-to-path name)}] (main/info "Generating fresh 'lein new' re-frame project.") (->files data ["README.md" (render "README.md" data)] ["project.clj" (render "project.clj" data)] ["{{sanitized}}.css" (render "project_name.css" data)] ["{{sanitized}}.html" (render "project_name.html" data)] ["devsrc/{{sanitized}}/dev.cljs" (render "devsrc/project_name/dev.cljs")] ["devsrc/{{sanitized}}/core.cljs" (render "src/project_name/core.cljs")]))) (ns radicalzephyr.boot-junit {:boot/export-tasks true} (:require [boot.core :as core]) (:import org.junit.runner.JUnitCore)) (defn failure->map [failure] {:description (.. failure (getDescription) (toString)) :exception (.getException failure) :message (.getMessage failure)}) (defn result->map [result] {:successful? (.wasSuccessful result) :run-time (.getRunTime result) :run (.getRunCount result) :ignored (.getIgnoredCount result) :failed (.getFailureCount result) :failures (map failure->map (.getFailures result))}) (core/deftask junit "Run the jUnit test runner." [p packages PACKAGE #{sym} "The set of Java packages to run tests in."] (core/with-pre-wrap fileset (if (seq packages) (let [result (JUnitCore/runClasses (into-array Class [#_ (magic goes here to find all test classes)]))] (when (> (.getFailureCount result) 0) (throw (ex-info "There were some test failures." (result->map result))))) (println "No packages were tested.")) fileset)) (ns prime.clj (:gen-class)) (require '[clojure.math.numeric-tower :as math]) (defn prime? [x] (cond (integer? (math/sqrt x)) false :else (every? (fn [y] (not= (mod x y) 0)) (range 2 (math/ceil (math/sqrt x)))))) (defn -main [& args] (def v []) (def i 0) (while (< (count v) (Integer/parseInt (first args))) (cond (prime? i) (def v (conj v i))) (def i (inc i))) (println v)) (ns icecap.schema-test (:require [icecap.schema :refer :all] [clojure.test :refer :all] [schema.core :as s])) (def simple-http-request {:target "http://example.test"}) (def simple-https-request {:target "https://example.test"}) (def simple-ftp-request {:target "ftp://example.test"}) (deftest RequestSpecTests (testing "Correct request specs validate" (are [example] (s/validate RequestSpec example) simple-http-request simple-https-request #{simple-http-request simple-https-request})) (testing "Empty specs don't validate" (are [example reason] (= (pr-str (s/check RequestSpec example)) (pr-str reason)) [] '(not ("collection of one or more request specs" [])) #{} '(not ("collection of one or more request specs" #{})))) (testing "Request specs with unknown/unsupported schemes don't validate" ;; Comparing string representations isn't great, but it's the best ;; easily available tool until maybe one day cddr/integrity's ;; humanize function is on Clojars + can humanize these errors :-) (are [example reason] (= (pr-str (s/check RequestSpec example)) (pr-str reason)) simple-ftp-request {:target '(not ("supported-scheme?" "ftp://example.test"))}))) ;; Contains database-access code (ns holston.repository (:use [clojure.java.jdbc :as jdbc])) ;; If DATABASE_URL environment variable is not set, use ;; local PostgreSQL database on port 5432 named holston (def db (or (System/getenv "DATABASE_URL") "postgresql://localhost:5432/holston")) (defn add-tasting [tasting] (println tasting) (jdbc/insert! db :tasting tasting)) (defn get-brewery [name] (first (jdbc/query db ["SELECT id, name FROM brewery WHERE name = ?" name]))) (defn add-brewery [name] (jdbc/insert! db :brewery {:name name})) (defn get-beer [name] (first (jdbc/query db ["SELECT id, name FROM beer WHERE name = ?" name]))) (defn add-beer [name] (jdbc/insert! db :beer {:name name})) (ns patavi.worker.main (:gen-class) (:require [patavi.worker.task :as tasks :only [initialize]] [patavi.worker.pirate.core :as pirate] [clojure.tools.cli :refer [cli]] [clojure.string :refer [split trim capitalize]] [clojure.tools.logging :as log])) (defn -main [& args] (let [[options args banner] (cli args ["-h" "--help" "Show help" :default false :flag true] ["-r" "--rserve" "Start RServe from application" :default false :flag true] ["-n" "--nworkers" "Amount of worker threads to start" :default (.availableProcessors (Runtime/getRuntime)) :parse-fn #(Integer. %)] ["-m" "--method" "R method name" :default "echo"] ["-p" "--packages" "Comma seperated list of additional R packages to load" :parse-fn #(split % #",\s?")] ["-f" "--file" "R file to execute" :default "resources/pirate/echo.R"]) method (:method options) file (:file options)] (when (:help options) (println banner) (System/exit 0)) (pirate/initialize (:file options) (:packages options) (:rserve options)) (tasks/initialize method (:nworkers options) pirate/execute) (while true (Thread/sleep 100)))) (ns todo-repl-webapp.handler (:require [compojure.core :refer :all] [compojure.handler :as handler] [compojure.route :as route] [cemerick.friend :as friend] (cemerick.friend [workflows :as workflows] [credentials :as credentials]) [todo-repl-webapp.views :as views] [todo-repl-webapp.eval :as e] [todo-repl-webapp.users :as u] [todo-repl-webapp.web-repl :as web-repl])) (defroutes app-routes (GET "/" [] "Hello World") (GET "/home" [] (views/home (web-repl/tasks))) (POST "/eval" [evalInput] (let [eval-result (e/evaluate evalInput)] (println "/eval " evalInput " evals to: " eval-result) (views/display eval-result))) (route/resources "/") (route/not-found "Not Found")) (def app (handler/site app-routes)) (def secured-app (-> app (friend/authenticate {:credential-fn (partial credentials/bcrypt-credential-fn u/users) :workflows [(workflows/interactive-form)]}))) (ns user (:require [{{project-ns}}.server] [ring.middleware.reload :refer [wrap-reload]] [figwheel-sidecar.repl-api :as figwheel]{{#less?}} [clojure.java.shell]{{/less?}}{{#sass?}} [clojure.java.shell]{{/sass?}})) {{#less?}} (defn start-less [] (future (println "Starting less.") (clojure.java.shell/sh "lein" "less" "auto"))) {{/less?}}{{#sass?}} (defn start-sass [] (future (println "Starting sass.") (clojure.java.shell/sh "lein" "auto" "sassc" "once"))) {{/sass?}} (def http-handler (wrap-reload {{project-ns}}.server/http-handler)) (defn run [] (figwheel/start-figwheel!){{less-sass-start}}) (def browser-repl figwheel/cljs-repl) (ns re-frame.interop (:require [goog.async.nextTick] [reagent.core] [reagent.ratom])) (def next-tick goog.async.nextTick) (def empty-queue #queue []) (def after-render reagent.core/after-render) ;; make sure the Google Closure compiler see this as a boolean constatnt ;; https://developers.google.com/closure/compiler/docs/js-for-compiler (def ^:boolean debug-enabled? "@const  @define {boolean}" js/goog.DEBUG) (defn ratom [x] (reagent.core/atom x)) (defn ratom? [x] (satisfies? reagent.ratom/IReactiveAtom x)) (defn deref? [x] (satisfies? IDeref x)) (defn make-reaction [f] (reagent.ratom/make-reaction f)) (defn add-on-dispose! [a-ratom f] (reagent.ratom/add-on-dispose! a-ratom f)) (defn set-timeout! [f ms] (js/setTimeout f ms)) (defproject neko "3.0.2-SNAPSHOT" :description "Neko is a toolkit designed to make Android development using Clojure easier and more fun." :url "https://github.com/alexander-yakushev/neko" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure-android/clojure "1.5.1-jb"]] :source-paths ["src" "src/clojure"] :java-source-paths ["src/java" "gen"] :android {:library true :target-sdk :ics}) (defproject incise "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[speclj "2.1.2"] [org.clojure/clojure "1.5.1"] [hiccup "1.0.2"] [compojure "1.1.5"] [http-kit "2.1.1"] [dieter "0.4.1"]] :plugins [[speclj "2.1.2"]] :test-paths ["spec/"]) (defproject cheshire "2.2.1-SNAPSHOT" :description "JSON and JSON SMILE encoding, fast." :url "https://github.com/dakrone/cheshire" :warn-on-reflection false :dependencies [[org.clojure/clojure "1.3.0"] [org.codehaus.jackson/jackson-core-asl "1.9.4"] [org.codehaus.jackson/jackson-smile "1.9.4"]] :dev-dependencies [[lein-marginalia "0.6.0"] [lein-multi "1.1.0"]] :multi-deps {"1.2.1" [[org.clojure/clojure "1.2.1"] [org.codehaus.jackson/jackson-core-asl "1.9.4"] [org.codehaus.jackson/jackson-smile "1.9.4"]] "1.4.0" [[org.clojure/clojure "1.4.0-beta1"] [org.codehaus.jackson/jackson-core-asl "1.9.4"] [org.codehaus.jackson/jackson-smile "1.9.4"]]}) (defproject onyx-plugin/lein-template "0.8.2.4" :description "A Leiningen 2.0 template for new Onyx plugins" :url "http://github.com/MichaelDrogalis/onyx-plugin" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject rill "0.1.0" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.338.0-5c5012-alpha"] [org.clojure/tools.logging "0.2.6"] [prismatic/schema "0.2.2"] [slingshot "0.10.3"] [environ "0.5.0"] [cheshire "5.3.1"] [clj-http "0.9.1"] [com.velisco/tagged "0.3.4"] [me.raynes/conch "0.7.0"] [identifiers "1.1.0"] [org.clojure/java.jdbc "0.3.4"] [postgresql "9.1-901.jdbc4"] [com.taoensso/nippy "2.6.3"] [com.mchange/c3p0 "0.9.2.1"]] :aot [rill.cli]) (defproject onyx-app/lein-template "0.9.15.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject checkin "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.6.0"] [ring "1.3.2"] [compojure "1.3.1"] [ring/ring-defaults "0.1.2"] [clj-oauth2 "0.2.0"] [cheshire "5.4.0"] ] :plugins [[lein-ring "0.9.1"]] :ring {:handler checkin.handler/app :uberwar-name "loneworkercheckin.war"}) (ns circle.backend.build.test-inference (:use midje.sweet) (:use circle.backend.build.inference) (:require [circle.backend.build.test-utils :as test])) (fact "repositories containing php files are assumed to be php apps" (let [php-repo (test/test-repo "simple_php")] (infer-repo-type php-repo) => :php)) (fact "repositories that aren't php are assumed to be rails" (let [some-repo (test/test-repo "empty")] (infer-repo-type some-repo) => :rails)) (fact "inferred actions have source :inferred" (let [example-repo (test/test-repo "database_yml_1") actions (infer-actions example-repo)] (every? :source actions) => true (->> actions (map :source) (into #{}) (#(contains? % :inferred))) => true)) (ns lexemic.core (:require [cljs.nodejs :as node] [lexemic.sentiment.simple :as sentiment])) (def ^:private fs (node/require "fs")) (def ^:private usage-banner "Usage: lexemic [command] [implementation] [target...]") (def ^:private supported-commands #{"help" "sentiment"}) (defn- help [] (str usage-banner)) (defn- run [cmd impl text] (condp = cmd "sentiment" (sentiment/analyse text))) (defn -main [& args] (let [command (first args) impl (when (.match (second args) #"^-{1,2}") (second args)) targets (if impl (drop 2 args) (drop 1 args)) file? (fn [path] (.existsSync fs path)) get-string (fn [x] (if (file? x) (.readFileSync fs x "utf8") (identity x))) contents (map get-string targets) input (print-str contents)] (if-let [cmd (supported-commands command)] (println (run cmd impl input)) (println (help))))) (set! *main-cli-fn* -main) (ns cavm.query.functions (:use clojure.core.matrix) (:use clojure.core.matrix.operators) (:refer-clojure :exclude [* - + == /]) (:gen-class)) (set-current-implementation :vectorz) (defn meannan1d [m] (let [NaN Double/NaN [sum n] (ereduce (fn [[acc cnt] x] (if (Double/isNaN x) [acc cnt] [(+ acc x) (inc cnt)])) [0 0] m)] (if (= 0 n) NaN (/ sum n)))) ; XXX this handling of dim is wrong for dim > 1 ; XXX do we need to fill nan values, like we do in python? (defn meannan [m dim] (let [new-shape (assoc (vec (shape m)) (long dim) 1)] (reshape (matrix (map meannan1d (slices m (- 1 dim)))) new-shape))) (def functions {'+ + '/ / '* emul '- - 'mean meannan 'apply apply}) (ns {{app-name}}.launcher.aeron-media-driver (:gen-class) (:require [clojure.core.async :refer [chan .page.invite [:>.content mixins/flex {:flex-direction "column" :align-items "center"} [:>.invite {:background-color "white" :border-radius (px 10) :padding (rem 1) :font-size (rem 0.9) :width "50%"} [:button (mixins/settings-button)] [:.invite-link [:>input {:width "100%"}]]]]]) (ns user (:require [schema.core :as s]) (:use [figwheel-sidecar.repl-api :as ra])) (s/set-fn-validation! true) (defn start [] (ra/start-figwheel!)) (defn stop [] (ra/stop-figwheel!)) (defn cljs [] (ra/cljs-repl "dev")) ;; The only requirement of the project.clj file is that it includes a ;; defproject form. It can have other code in it as well, including ;; loading other task definitions. (defproject leiningen "1.2.0-SNAPSHOT" :description "A build tool designed not to set your hair on fire." :url "http://github.com/technomancy/leiningen" :dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"] [org.clojure/clojure-contrib "1.2.0-SNAPSHOT"] [ant/ant "1.6.5"] [ant/ant-launcher "1.6.5"] [jline "0.9.94"] [org.apache.maven/maven-ant-tasks "2.0.10"]] :dev-dependencies [[leiningen/lein-swank "1.1.0"] [autodoc "0.7.0"]] :main leiningen.core) (defproject org.onyxplatform/onyx-datomic "0.7.3-beta8" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150902_134205-g8bdc527"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject cascade "0.2-SNAPSHOT" :description "Simple, fast, easy web applications in idiomatic Clojure" :url "http://github.com/hlship/cascade" :main main :warn-on-reflection true :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/algo.monads "0.1.0"] [compojure "0.6.5"]] :dev-dependencies [[ring/ring-jetty-adapter "0.3.11"] [swank-clojure "1.3.1"] [midje "1.1.1"] [lein-ring "0.4.6"]] :ring {:handler main/app}) (defproject clum "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :plugins [[lein-cljsbuild "1.1.5"] [lein-auto "0.1.3"]] :cljsbuild {:builds [{:source-paths ["src/clum/app"] :compiler {:output-to "public/js/app.js" :optimizations :whitespace :pretty-print true}}]} :auto {:default {:file-pattern #"\.(clj)$"}} :source-paths ["src/clum/server"] :dependencies [;; server-side [org.clojure/clojure "1.8.0"] [http-kit "2.2.0"] [com.taoensso/timbre "4.8.0"] [com.cognitect/transit-clj "0.8.297"] [ring-transit "0.1.6"] ;; client-side [reagent "0.6.0"] [com.cognitect/transit-cljs "0.8.239"]]) (defproject io.aviso/twixt "0.1.2" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.1.2"] [de.neuland/jade4j "0.3.15"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :repl-options { :init-ns io.aviso.launch :port 4001} ;; The Sublime Text nREPL plugin is out of date, so... :repl-port 4001 :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject neko "3.2.0-preview3" :description "Neko is a toolkit designed to make Android development using Clojure easier and more fun." :url "https://github.com/clojure-android/neko" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure-android/clojure "1.7.0-alpha4"]] :source-paths ["src" "src/clojure"] :java-source-paths ["src/java" "gen"] :profiles {:default [:android-common]} :plugins [[lein-droid "0.3.0"]] :android {:library true :target-version 18}) (defproject org.onyxplatform/onyx-metrics "0.8.1.0-SNAPSHOT" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.1-alpha8"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject comic-reader "0.1.0-SNAPSHOT" :description "An app for reading comics/manga on or offline" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"]] :main ^:skip-aot comic-reader.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (def version (clojure.string/trim-newline (slurp "VERSION"))) (defproject io.framed/overseer version :description "A Clojure framework for defining and running expressive data pipelines" :url "https://github.com/framed-data/overseer" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :scm {:name "git" :url "https://github.com/framed-data/overseer"} :dependencies [[org.clojure/clojure "1.7.0"] [circleci/clj-yaml "0.5.3"] [org.clojure/data.fressian "0.2.0"] [clj-json "0.5.3"] [org.clojure/tools.cli "0.3.1"] [com.taoensso/timbre "4.0.2"] [com.datomic/datomic-free "0.9.5130" :exclusions [joda-time]] [clj-http "1.1.2"] [raven-clj "1.1.0"] [io.framed/std "0.1.2"]] :aot [overseer.runner] :plugins [[codox "0.8.13"]] :codox {:output-dir "doc/api"}) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.1"] [compojure "1.2.1"] [clj-time "0.8.0"] [org.clojure/data.json "0.2.5"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject statuses "0.1.0-SNAPSHOT" :description "Statuses app for innoQ" :namespaces [statuses] :dependencies [ [org.clojure/clojure "1.4.0"] [compojure "1.1.3"] [clj-time "0.4.4"] [ring "1.1.6"] [org.clojure/data.json "0.2.0"] ] :plugins [[lein-ring "0.7.5"]] :ring {:handler statuses.views.main/app-routes} :main statuses.server :profiles {:dev {:dependencies [[ring-mock "0.1.3"]]}}) (defproject lein-difftest "1.3.4" :description "Run tests, display better test results." :dependencies [[org.clojure/clojure "1.2.1"] [difform "1.1.1"] [clj-stacktrace "0.2.3"] [clansi "1.0.0"]] :eval-in-leiningen true :hooks [leiningen.hooks.difftest]) (defproject funcool/cats "0.5.0" :description "Category Theory abstractions for Clojure" :url "https://github.com/funcool/cats" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [org.clojure/clojurescript "0.0-3308" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo"] :profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/cats/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.2.0"]]} :bench [:dev {:dependencies [[criterium "0.4.3"]] :main ^:skip-aot benchmarks :jvm-opts ^:replace [] :source-paths ["dev"]}]}) (defproject clojurewerkz/statistiker "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.apache.commons/commons-math3 "3.2"] [net.mikera/core.matrix "0.20.0"]] :source-paths ["src/clj"] :java-source-paths ["src/java"] :test-paths ["test/clj"]) (defproject io.aviso/twixt "0.1.13-SNAPSHOT" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [io.aviso/pretty "0.1.10"] [io.aviso/tracker "0.1.0"] [ring/ring-core "1.2.2"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.5.3"] [de.neuland-bfi/jade4j "0.4.0"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject com.palletops/hyde-pallet "0.1.0-SNAPSHOT" :description "Parent for hyde-pallet" :url "https://github.com/paleltops/hyde-pallet" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[com.palletops/hyde-pallet "0.1.0-SNAPSHOT"]] :plugins [[lein-modules "0.3.1"]] :aliases {"install" ["modules" "install"] "deploy" ["modules" "deploy"] "clean" ["modules" "clean"]} :profiles {:travis {:module {:subprocess "lein2"}}}) (ns overtunes.songs.at-all (:use [overtone.live :exclude [scale octave sharp flat sixth unison play]] [overtone.inst.sampled-piano :only [sampled-piano]])) (def scale 66) (defn ground [note] (+ scale note)) (def note# (comp sampled-piano ground)) (defn chord# [chord] (doseq [note (vals chord)] (note# note))) (def ionian {:i 0, :ii 2, :iii 4, :iv 5, :v 7, :vi 9, :vii 11, :viii 12}) (def i (select-keys ionian [:i :iii :v])) (def ii (select-keys ionian [:ii :iv :vi])) (chord# ii) ;; This is the default test configuration file. If you would like to override ;; some of the settings herein, simply make a copy of this file and name it ;; `local.clj`. It will be loaded instead of this one. (`local.clj` is ;; included in the `.gitignore` file, so you don't have to worry about ;; accidentally committing your local changes.) (defn test-db-config "Return a map of connection attrs for the test database" [] {:classname "org.hsqldb.jdbcDriver" :subprotocol "hsqldb" :subname (str "mem:" (java.util.UUID/randomUUID) ";shutdown=true;hsqldb.tx=mvcc;sql.syntax_pgs=true")}) ;; here is a sample test-db-config function for use with postgres ;(defn test-db-config ; "Return a map of connection attrs for the test database" ; [] ; {:classname "org.postgresql.Driver" ; :subprotocol "postgresql" ; :subname "//localhost:5432/puppetdb_test" ; :user "puppetdb" ; :password "puppet" ; }) (ns faceboard.css.tabs (:use [faceboard.lib.constants]) (:require [faceboard.lib.helpers :refer [>> mv px]] [garden.color :as color])) (def styles [(>> tab-area (>> [> *] [:display :inline-block]) (>> tab [:padding (px 0 4) :font-weight :bold :margin (px 2) :margin-left (px 8) :margin-bottom (px 0) :min-width (px 60) :cursor :pointer :position :relative :border-top-right-radius (px 2) :border-top-left-radius (px 2) :top (px 1) :text-align :center :background (color/darken signature-color 10) :color "#fff"] (>> &.selected [:color "#000" :background selected-tab-color :border-bottom (str "1px solid " selected-tab-color)]))) (>> tab-contents [:position :relative :z-index 0 :height "100%"] (>> tab-view [:height "100%"] (>> [> *] [:height "100%"]) (>> &.dual-mode (>> [> *] [:width "50%" :display :inline-block]) (>> left-side [:float :left]) (>> right-side [:float :right]))))])(defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.1"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.10.2"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.6.8"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject processing-core/processing.core "0.1.0-SNAPSHOT" :description "A wrapper for Processing in Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.processing-core/org.processing.core "1.5.1"] [org.clojars.processing-core/org.processing.gluegen-rt "1.5.1"] [org.clojars.processing-core/org.processing.jogl "1.5.1"] [org.clojars.processing-core/org.processing.opengl "1.5.1"]]) (ns uxbox.shapes (:require [sablono.core :refer-macros [html]])) (defmulti render (fn [shape & params] (:type shape))) (defmethod render :builtin/icon [shape & [{:keys [width height] :or {width "500" height "500"}}]] (let [content (:svg shape)] (html [:svg {:width width :height height} content]))) (ns {{name}}.core (:require-macros [rum.core :refer [defc]]) (:require [re-natal.support :as support] [rum.core :as rum] [cljs-exponent.components :refer [text view image touchable-highlight] :as rn])) (def logo-img (js/require "./assets/images/cljs.png")) (defn alert [title] (.alert rn/alert title)) (defonce app-state (atom {:greeting "Hello Clojure in iOS and Android!"})) (defc AppRoot < rum/reactive [state] (view {:style {:flexDirection "column" :margin 40 :alignItems "center"}} (text {:style {:fontSize 30 :fontWeight "100" :marginBottom 20 :textAlign "center"}} (:greeting @state)) (image {:source logo-img :style {:width 80 :height 80 :marginBottom 30}}) (touchable-highlight {:style {:backgroundColor "#999" :padding 10 :borderRadius 5} :onPress #(alert "HELLO!")} (text {:style {:color "white" :textAlign "center" :fontWeight "bold"}} "press me")))) (defonce root-component-factory (support/make-root-component-factory)) (defn mount-app [] (support/mount (AppRoot app-state))) (defn init [] (mount-app) (.registerComponent rn/app-registry "main" (fn [] root-component-factory))) (ns clojars.test.unit.middleware (:require [clojars.middleware :as middleware] [clojure.test :refer :all])) (def trailing-slash (middleware/wrap-ignore-trailing-slash (fn [x] (get x :uri)))) (deftest trailing-slash-doesnt-modify-root (is (= "/" (trailing-slash {:uri "/"})))) (deftest trailing-slash-doesnt-modify-sub-routes (is (= "/artifact/project") (trailing-slash {:uri "/artifact/project"}))) (deftest trailing-slash-removes-trailing-slash (is (= "/artifact/project") (trailing-slash {:uri "/artifact/project/"}))) (deftest trailing-slash-doesnt-remove-redundant-trailing-slash (is (= "/artifact/project/") (trailing-slash {:uri "/artifact/project//"}))) (ns rna-transcription.test (:require [clojure.test :refer :all])) (load-file "rna_transcription.clj") (deftest transcribes-guanine-to-cytosine (is (= "G" (rna-transcription/to-rna "C")))) (deftest transcribes-cytosine-to-guanine (is (= "C" (rna-transcription/to-rna "G")))) (deftest transcribes-uracil-to-adenine (is (= "U" (rna-transcription/to-rna "A")))) (deftest it-transcribes-thymine-to-uracil (is (= "A" (rna-transcription/to-rna "T")))) (deftest it-transcribes-all-nucleotides (is (= "UGCACCAGAAUU" (rna-transcription/to-rna "ACGTGGTCTTAA")))) (deftest it-validates-dna-strands (is (thrown? AssertionError (rna-transcription/to-rna "XCGFGGTDTTAA")))) (run-tests) (ns quotes.routes (:gen-class) (:use [quotes.api :only [api-routes]]) (:require [compojure.core :refer :all] [compojure.route :as route] [common-utils.core :as utils] [common-utils.middleware :refer [correlation-id-middleware]] [clojure.tools.logging :as log] [ring.adapter.jetty :as jetty])) (defroutes app-routes (context "/api" [] (api-routes))) (def app (-> app-routes correlation-id-middleware)) (defn -main [] (let [port (Integer/parseInt (utils/config "APP_PORT" 8080))] (log/info "Running quotes on port" port) (future (jetty/run-jetty (var app) {:host "0.0.0.0" :port port})))) (ns silly-image-store.store (:require [clojure.java.io :as io])) (def exists? #(and % (.exists %))) (def file? #(.isFile %)) (def filename #(.getName %)) (defn load-image [& paths] (let [file (apply io/file paths)] (if (exists? file) file))) (defn list-images [& paths] (let [image-directory (apply load-image paths)] (if (exists? image-directory) (->> image-directory .listFiles (filter file?) (map filename))))) (defn list-image-dirs [& paths] (let [image-directory (apply load-image paths)] (if (exists? image-directory) (->> image-directory .listFiles (filter (complement file?)) (map filename))))) (defn random-image [basedir] (let [random-image-name (rand-nth (list-images basedir))] (load-image basedir random-image-name))) (defproject uxbox-backend "0.1.0-SNAPSHOT" :description "UXBox backend + api" :url "http://uxbox.github.io" :license {:name "" :url ""} :source-paths ["src"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :jvm-opts ["-Dclojure.compiler.direct-linking=true"] :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.slf4j/slf4j-simple "1.7.16"] [bouncer "1.0.0"] [mount "0.1.9"] [environ "1.0.2"] [com.github.spullara.mustache.java/compiler "0.9.1"] [niwinz/migrante "0.1.0-SNAPSHOT"] [funcool/suricatta "0.8.1"] [funcool/promesa "0.8.1"] [hikari-cp "1.5.0"] [funcool/catacumba "0.11.2-SNAPSHOT"]] :main ^:skip-aot uxbox.main :plugins [[lein-ancient "0.6.7"]]) (ns whitman.core (:require [whitman.config :as config] [whitman.crawler :as crawler] [whitman.db :as db] [whitman.writer :as writer]) (:gen-class)) (defn exit [code msg] (binding [*out* *err*] (do (println msg) (System/exit code)))) (defn do-crawl [cfg writer] (let [users (crawler/records cfg) docs (map #(crawler/sample-docs cfg %) users)] (doseq [d docs] (writer/write writer cfg (:query d) (:insert d))))) (defn -main [& args] (if (< (count args) 1) (exit 1 "No configuration file specified") (do-crawl (config/read-config (last args)) :db))) (ns less4clj.webjars (:import [java.io File] [org.webjars WebJarAssetLocator])) (def ^:private webjars-pattern #"META-INF/resources/webjars/([^/]+)/([^/]+)/(.*)") (defn- asset-path [resource] (let [[_ name version path] (re-matches webjars-pattern resource)] (str name File/separator path))) (defn asset-map "Create map of asset path to classpath resource url. Asset path is the resource url without webjars part." [] (->> (.listAssets (WebJarAssetLocator.) "") (map (juxt asset-path identity)) (into {}))) (comment (time (asset-map))) (ns sicp.chapter3.5-1) ;;;; 3.5 Streams ;;; 3.5.1 Streams Are Delayed Lists ;; Exercise 3.50 (defn stream-map [proc & argstreams] (lazy-seq (if (empty? (first argstreams)) nil (cons (apply proc (map first argstreams)) (apply stream-map (cons proc (map rest argstreams))))))) ;; Exercise 3.51 (defn show [x] (println x) x) (def x (map show (range 0 (inc 10)))) #_(nth x 5) #_(nth x 7) ;; Exercise 3.52 (defn display-stream [s] (run! println s)) (def sum (atom 0)) #_@sum (defn accum [x] (swap! sum + x)) #_@sum (def seq' (map accum (range 1 (inc 20)))) #_@sum (def y (filter even? seq')) #_@sum (def z (filter #(zero? (rem % 5)) seq')) #_@sum #_(nth y 7) #_@sum #_(display-stream z) #_@sum (set-env! :source-paths #{"src"} :resource-paths #{"src"} :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [boot/core "2.1.0" :scope "provided"] [junit "4.12" :scope "test"] [org.reflections/reflections "0.9.10" :scope "test"] [org.glassfish/javax.servlet "3.0" :scope "test"] [radicalzephyr/clansi "1.2.0" :scope "test"]]) (require '[radicalzephyr.boot-junit :refer [junit]]) (def +version+ "0.1.0") (task-options! pom {:project 'radicalzephyr/boot-junit :version +version+ :description "Run some jUnit tests in boot!" :url "https://github.com/radicalzephyr/boot-junit" :scm {:url "https://github.com/radicalzephyr/boot-junit"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}} junit {:packages '#{radicalzephyr.boot_junit.test}}) (ns radicalzephyr.boot-junit {:boot/export-tasks true} (:require '[[boot.core :as core]]) (:import org.junit.runner.JUnitCore)) (deftask junit "Run the jUnit test runner." [] (with-pre-wrap fileset (let [result (JUnitCore/runClasses (into-array [#_ (magic goes here to find all test classes)]))] (when (> (.getFailureCount result) 0) (throw (ex-info "There were some test failures." {:result result})))) fileset)) (set-env! :source-paths #{"src" "src-java"} :resource-paths #{"resources"} :dependencies '[[org.clojure/test.check "0.9.0" :scope "test"] ; project deps [org.clojure/clojure "1.9.0-alpha7"] [leiningen "2.6.1" :exclusions [leiningen.search]] [ring "1.4.0"] [clojail "1.0.6"]]) (task-options! pom {:project 'nightcode :version "2.0.0-SNAPSHOT"} aot {:namespace '#{net.sekao.nightcode.core net.sekao.nightcode.controller net.sekao.nightcode.lein}} jar {:main 'net.sekao.nightcode.core :manifest {"Description" "An IDE for Clojure and ClojureScript" "Url" "https://github.com/oakes/Nightcode"}}) (deftask run [] (comp (javac) (aot) (with-pre-wrap fileset (require '[net.sekao.nightcode.core :refer [dev-main]]) ((resolve 'dev-main)) fileset))) (deftask run-repl [] (comp (javac) (aot) (repl :init-ns 'net.sekao.nightcode.core))) (deftask build [] (comp (javac) (aot) (pom) (uber) (jar) (target))) (set-env! :source-paths #{"src/main/java" "src/test/java"} :dependencies '[[radicalzephyr/boot-junit "0.1.0-SNAPSHOT" :scope "test"]]) (def +version+ "0.1.0") (require '[radicalzephyr.boot-junit :refer [junit]]) (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}} jar {:file "server.jar"} junit {:packages '#{net.zephyrizing.http_server}}) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (ns braid.base.conf (:require [braid.base.conf-extra :refer [ports-config]] [braid.core.hooks :as hooks] [mount.core :as mount :refer [defstate]])) (defonce config-vars (hooks/register! (atom []) [keyword?])) (defstate config :start (merge ;; temp defaults ;; TODO don't special case these here ;; ports should come from config {:db-url "datomic:mem://braid" :api-domain (str "localhost:" (:port (mount/args))) :site-url (str "http://localhost:" (:port (mount/args))) :hmac-secret "secret"} @ports-config ; overrides api-domain & site url when port is automatically found (select-keys (mount/args) @config-vars))) (defproject buddy/buddy-hashers "0.4.2" :description "A collection of secure password hashers for Clojure" :url "https://github.com/funcool/buddy-hashers" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0"] [buddy/buddy-core "0.5.0"] [clojurewerkz/scrypt "1.2.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (ns cglossa.models.core (:require [datomic.api :as d] [datomic-schema.schema :refer [part schema fields]])) (def db-uri "datomic:free://localhost:4334/glossa") (defn dbparts [] [(part "glossa")]) (defn dbschema [] [(schema corpus (fields [name :string] [short-name :string :unique-identity] [metadata-categories :ref :many])) (schema metadata-category (fields [short-nane :string] [widget-type :enum [:list :range]] [values :ref :many "One or more text-values, bool-values or numeric-values"] [text-value :string] [bool-value :boolean] [numeric-value :long])) (schema search (fields [corpus :ref :one] [queries :string :many]))]) (defn current-db [] (d/db (d/connect db-uri))) (defn find-by "Finds the first entity with the given value for the given Datomic attribute (e.g. :person/name) in the given (or by default the current) database." ([attr value] (find-by attr value (current-db))) ([attr value db] (let [ids (d/q '[:find ?e :in $ ?a ?v :where [?e ?a ?v]] db attr value)] (d/entity db (ffirst ids))))) (def start-t (System/currentTimeMillis)) (defsensor sine {:poll-interval (seconds 10)} (Math/sin (/ (- (System/currentTimeMillis) start-t) 60000.0))) (defsensor cosine {:poll-interval (seconds 10)} (Math/cos (/ (- (System/currentTimeMillis) start-t) 60000.0))) (defsensor cosine-2 {:poll-interval (seconds 5)} (Math/cos (/ (- (System/currentTimeMillis) start-t) 30000.0))) (ns obb-rules-api.reply (:require [compojure.handler :as handler] [clojure.data.json :as json] [obb-rules.result :as result] [obb-rules-api.parser :as parser] [compojure.route :as route])) (defn- make-response "Builds a response" [status-code obj] {:status status-code :headers {"Content-Type" "text/json; charset=utf-8"} :body (parser/dump obj)}) (defn ok "Returns HTTP 200 response" [obj] (make-response 200 obj)) (defn exception "Returns an exception" [exception] (make-response 500 {:exception (.getMessage exception)})) (defn not-found "Returns HTTP 404 response" [] (make-response 404 {:error "Resource not found"})) (defn precondition-failed "Returns HTTP 412 response" [error-description] (make-response 412 {:error error-description})) (defn result "Returns based on the given result" [result] (if (result/succeeded? result) (ok result) (make-response 412 result))) (ns open-company.lib.email (:require [amazonica.aws.sqs :as sqs] [taoensso.timbre :as timbre] [schema.core :as schema] [open-company.config :as c])) (def EmailTrigger {:to schema/Str :subject schema/Str :note schema/Str :reply-to (schema/maybe schema/Str) :company-slug schema/Str :snapshot {schema/Keyword schema/Any}}) (defn ctx->trigger [post-data {company :company user :user su :stakeholder-update}] {:pre [ (string? (:to post-data)) (string? (:subject post-data)) (string? (:note post-data)) (map? company) (map? user) (map? su)]} {:to (:to post-data) :subject (:subject post-data) :note (:note post-data) :reply-to (:email user) :company-slug (:slug company) :snapshot su}) (defn send-trigger! [trigger] (timbre/info "Request to send msg to " c/aws-sqs-email-queue "\n" (dissoc trigger :snapshot)) (schema/validate EmailTrigger trigger) (timbre/info "Sending") (sqs/send-message {:access-key c/aws-access-key-id :secret-key c/aws-secret-access-key} c/aws-sqs-email-queue trigger))(ns timetracker.models (:require [monger.core :as mg] [monger.collection :as mc] [monger.operators :refer :all]) (:import [org.bson.types ObjectId] [com.mongodb DB WriteConcern])) (defn now [] (new java.util.Date)) (defn create [task] (println (str "Added " task " at " (now) )) (let [conn (mg/connect) db (mg/get-db conn "tasktracker") coll "tasks"] (mc/insert db coll {:task task, :time (now), :project_id "N/A"}))) (defn find_all [] (let [conn (mg/connect) db (mg/get-db conn "tasktracker") coll "tasks"] (mc/find-maps db coll ))) (defn process [] (println "start post process ...") (let [conn (mg/connect) db (mg/get-db conn "tasktracker") coll "tasks"] (mc/update db coll {} {$set {:project_id "Processed"}} {:multi true}))) (ns cljs-workers.core (:require [cljs.core.async :refer [chan]]) (:require-macros [cljs.core.async.macros :refer [go]])) (defn supported? [] (-> js/Worker undefined? not)) (defn create-one [script] (js/Worker. script)) (defn create-pool ([] (pool 5)) ([count] (pool count "js/compiled/workers.js")) ([count script] (let [workers (chan count)] (go (dotimes [_ count] (>! workers (create-one script)))) workers))) (defn- do-request! [worker {:keys [handler arguments transfer] :as request}] (let [message (-> {:handler handler, :arguments arguments} clj->js) transfer (->> transfer (select-keys arguments) vals)] (if (seq transfer) (.postMessage worker message (clj->js transfer)) (.postMessage worker message)))) (defn- handle-response! [event] (-> (.-data event) (js->clj :keywordize-keys true))) (ns user (:use clojure.repl io.aviso.repl speclj.config)) (install-pretty-exceptions) (alter-var-root #'default-config assoc :color true :reporters ["documentation"]) (ns engulf.core (:gen-class) (:require [engulf.benchmark :as benchmark] [noir.server :as nr-server]) (:use aleph.http noir.core lamina.core)) (defn start-webserver [args] (nr-server/load-views "src/engulf/views") (let [mode (keyword (or (first args) :prod)) port (Integer. (or (System/getenv "PORT") "3000")) noir-handler (nr-server/gen-handler {:mode mode})] (start-http-server (wrap-ring-handler noir-handler) {:port port :websocket true}))) (defn -main [& args] (start-webserver args) (println "Engulf Started!")) (ns hu.ssh.github-changelog.dependencies.bundler (:require [clojure.string :refer [split-lines]] [clojure.java.io :refer [reader]])) (defn- get-specs [reader] (->> (doall (line-seq reader)) (drop-while #(not= % " specs:")) (drop 1) (take-while seq))) (defn- parse-spec [spec] {:name (second spec) :version (nth spec 2)}) (defn- parse-specs [specs] (->> (map #(re-matches #"^\s{4}(\S+) \((.*)\)$" %) specs) (remove empty?) (map parse-spec))) (defn parse [file] (with-open [rdr (reader file)] (parse-specs (get-specs rdr)))) {:user {:plugins [[lein-vanity "0.2.0"] [jonase/eastwood "0.0.2"] [cider/cider-nrepl "0.7.0-SNAPSHOT"] ;[lein-ritz "0.7.0"] [com.palletops/pallet-lein "0.8.0-alpha.1"]] :dependencies [;[ritz/ritz-nrepl-middleware "0.7.0"] [org.clojure/tools.trace "0.7.6"] [slamhound "1.5.0"]] ;; :repl-options {:nrepl-middleware ;; [ritz.nrepl.middleware.javadoc/wrap-javadoc ;; ritz.nrepl.middleware.simple-complete/wrap-simple-complete]} :aliases {"slamhound" ["run" "-m" "slam.hound"]}}} (ns puppetlabs.cthun.meshing.hazelcast-test (require [clojure.test :refer :all] [puppetlabs.cthun.meshing.hazelcast :refer :all])) (ns whitman.core (:require [whitman.config :as config]) (:gen-class)) (defn exit [code msg] (binding [*out* *err*] (do (println msg) (System/exit code)))) (defn -main [& args] (if (< (count args) 1) (exit 1 "No configuration file specified") (let [cfg (-> (nth args 0) config/read-config) user-agent (get cfg "user-agent")] (println cfg)))) (ns tenor.entities) (defrecord Note [note-value pitch-letter octave]) (defn make-note [notation] (let [notation-re #"^(1|2|4|8|16)([A-G])([#b]?)([1-9])$" components (re-matches notation-re notation)] (if components (->Note (Integer. (nth components 1)) (str (nth components 2) (nth components 3)) (Integer. (nth components 4))) "Invalid notation"))) (defn time-signature [beat-count & [sig]] (cond (> beat-count 3) (let [beats (rand-nth [2 3 4]) sig (concat (or sig '()) (range 1 (inc beats)))] (time-signature (- beat-count beats) sig)) (and (<= beat-count 3) (> beat-count 0)) (let [sig (concat (or sig '()) (range 1 (inc beat-count)))] (time-signature 0 sig)) :else sig)) (ns lazytest.testable) (defprotocol Testable (get-tests [this] "Returns a seq of RunnableTest objects. Processes the :focus metadata flag. Default implementation recurses on all Vars in a namespace, unless that namespace has :get-tests metadata.")) (defn focused? "True if x has :focus metadata set to true." [x] (boolean (:focused (meta x)))) (defn filter-focused "If any items in sequence s are focused, return them; else return s." [s] (or (seq (filter focused? s)) s)) (extend-protocol Testable clojure.lang.Namespace (get-tests [this-ns] (if-let [f (:get-tests (meta this-ns))] (do (assert (fn? f)) (f)) (filter-focused (mapcat get-tests (vals (ns-interns this-ns)))))) clojure.lang.Var (get-tests [this-var] (when (bound? this-var) (let [value (var-get this-var)] (when (extends? Testable (type value)) (filter-focused (get-tests value))))))) (defproject noir-app "0.1.0-SNAPSHOT" :description "FIXME: write this!" :dependencies [[org.clojure/clojure "1.3.0"] [noir "1.2.1"]] :main noir-app.server) (ns immutant.web-test (:require [clojure.test :refer :all] [immutant.web :refer :all] [testing.web :refer [get-body hello handler]] [testing.hello.service :as pedestal])) (def url "http://localhost:8080/") (deftest run-should-var-quote (run hello) (is (= "hello" (get-body url))) (with-redefs [hello (handler "howdy")] (is (= "howdy" (get-body url))))) (deftest mount-unquoted-handler (mount (server) hello) (is (= "hello") (get-body url)) (with-redefs [hello (handler "hi")] (is (= "hello" (get-body url))))) (deftest mount-quoted-handler (mount (server) #'hello) (is (= "hello") (get-body url)) (with-redefs [hello (handler "hi")] (is (= "hi" (get-body url))))) (deftest mount-pedestal-service (mount-servlet (server) pedestal/servlet) (is (= "Hello World!" (get-body url)))) (def orig (first *command-line-args*)) (def input (seq (char-array (first *command-line-args*)))) (defn palindrome? [s] (= s (reverse s))) (def occurrences-map (frequencies input)) (def evens-map (filter (fn [[_, v]] (even? v)) occurrences-map)) (def odds-map (filter (fn [[_, v]] (odd? v)) occurrences-map)) (if (palindrome? input) (printf "%s is a palindrome%n" orig) (if (> (count (keys odds-map)) 1) (printf "%s cannot be made into a palindrome%n" orig) (println "dingo")) ) (ns cavm.query.expression (:require [clojure.edn :as edn]) (:refer-clojure :exclude [eval])) (def eval) (defn lambdafn [node scope] (let [[_ argnames body] node] (fn [& args] (eval body (cons (zipmap argnames args) scope))))) (defn iffn [node scope] (let [[_ test then else] node] (cond (eval test scope) (eval then scope) :else (eval else scope)))) (def specials {'fn lambdafn 'quote (fn [n s] (second n)) 'if iffn }) (def specialfns (set (vals specials))) (defn fn-node [node scope] (let [func (eval (first node) scope)] (cond (contains? specialfns func) (func node scope) :else (apply func (map #(eval % scope) (rest node)))))) (defn eval [node scope] (cond (symbol? node) ((first (filter #(contains? % node) scope)) node) (list? node) (fn-node node scope) (instance? Number node) (double node) :else node)) (defn expression [exp & globals] (eval (edn/read-string exp) (cons specials globals))) (ns clj-record.test.model.config) (comment (def db {:classname "org.apache.derby.jdbc.EmbeddedDriver" :subprotocol "derby" :subname "/tmp/clj-record.test.db" :create true}) ) (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname "//localhost:5433/coffeemug" :user "enter-user-name-here" :password ""}) { :name "mailp2", :path "", :func (fn [recipient subject intro result-maps] (cond (pg/eoi? result-maps) (pg/done) (every? map? result-maps) (let [base (->> result-maps first :value second fs/dirname) msgs (for [retmap result-maps] (let [name (retmap :name) [bams csv] (retmap :value) bams (map fs/basename bams) csv (fs/basename csv) exit (retmap :exit) err (retmap :err)] (if (= exit :success) [exit csv] [exit err [bams csv]]))) overall (reduce (fn[R x] (cond (= x R :success) R (= x R :fail) R :else :mixed)) (map first msgs)) msg (->> msgs (cons (str "Base '" base "'")) (cons (str "Overall " overall)) (cons intro) (map str) (str/join "\n"))] (pg/send-msg [recipient] subject msg)) :else (let [msg (->> result-maps (cons intro) (map str) (str/join "\n"))] (pg/send-msg [recipient] subject msg)))) :description "Mailer function node for phase2/gen-feature-counts. recipient is user account that requested the associated job this node is final pt of DAG, subject is type of job, msg is job finish details." } (ns lt.objs.platform (:require [lt.object :as object] [lt.util.dom :as dom]) (:require-macros [lt.macros :refer [behavior]])) (def atom-shell true) (def clipboard (js/require "clipboard")) (def shell (js/require "shell")) (defn get-data-path [] (.getDataPath (.require (js/require "remote") "app"))) (defn normalize [plat] (condp = plat "win32" :windows "linux" :linux "darwin" :mac)) (defn open [path] (.openItem shell path)) (defn open-url [path] (.openExternal shell path)) (defn show-item [path] (.showItemInFolder shell path)) (defn copy "Copies given text to platform's clipboard" [text] (.writeText clipboard text)) (defn paste "Returns text of last copy to platform's clipboard" [] (.readText clipboard)) (def platform (normalize (.-platform js/process))) (defn mac? [] (= platform :mac)) (defn win? [] (= platform :windows)) (defn linux? [] (= platform :linux)) (ns enduro-session.core-test (:require [clojure.test :refer :all] [enduro-session.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (ns ashiba.controller (:require [cljs.core.async :refer [put!]])) (defprotocol IController (params [this route]) (start [this params db]) (stop [this params db]) (execute [this command-name] [this command-name args]) (handler [this app-db in-chan out-chan]) (send-command [this command-name] [this command-name args]) (is-running? [this])) (extend-type default IController (params [_ route] route) (start [_ params db] db) (stop [_ params db] db) (handler [_ _ _ _]) (execute ([this command-name] (execute this command-name nil)) ([this command-name args] (put! (:in-chan this) [command-name args]))) (send-command ([this command-name] (send-command this command-name nil)) ([this command-name args] (let [out-chan (:out-chan this)] (put! out-chan [command-name args]) this))) (is-running? [this] (= this ((:running this))))) ;; https://github.com/technomancy/leiningen/blob/stable/doc/PROFILES.md {:user {:plugins [[lein-pprint "1.3.2" lein-ancient "0.7.0" lein-cloverage "1.2.2"]] :dependencies [[alembic "0.3.2"] [clj-kondo "RELEASE"] [antq "RELEASE"]] :aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] "outdated" ["run" "-m" "antq.core"]}}} (ns kixi.hecuba.weather (:require [kixi.hecuba.weather.metofficeapi :as ma])) ; vi: ft=clojure (set-env! :source-paths #{"src", "test"} :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.8.0"] [org.clojure/data.csv "0.1.3"] [incanter "1.9.0"] [adzerk/boot-test "1.2.0" :scope "test"]]) (require '[adzerk.boot-test :refer [test]]) (task-options! aot {:all true} pom {:project 'tf-idf :version "0.0.0"} jar {:main 'analyze-data.core}) (deftask build [] (comp (aot) (pom) (uber) (jar) (target))) (ns teach-by-friends.shared.components.row (:require [teach-by-friends.shared.ui :as ui] [clojure.string :refer [capitalize]])) (defn row [data press-handler] (let [data-to-clj (js->clj data :keywordize-keys true)] [ui/touchable-opacity {:style {:border-bottom-width 1 :border-color "rgba(0,0,0,.1)" :padding-top 20 :padding-bottom 20 :padding-left 30} :on-press (partial press-handler data-to-clj)} [ui/text {:style {:font-size 30 :color "white"}} (capitalize (:title data-to-clj))]])) (ns pfrt.core) (defprotocol Lifecycle (init [_ system] "Initialize method") (start [_ system] "Start service") (stop [_ system] "Stop service")) (ns test.leindroid.sample.main (:use [neko.activity :only [defactivity do-ui set-content-view!]] [neko.notify :only [toast]] [neko.ui :only [defui by-id]] [neko.application :only [defapplication]])) (declare ^android.app.Activity a ^android.widget.EditText user-input) ;; This line defines the Application class and automatically ;; initializies neko and nREPL. (defapplication test.leindroid.sample.Application) (defn notify-from-edit [_] (toast (str "Your input: " (.getText user-input)) :long)) (defactivity test.leindroid.sample.MainActivity :def a :create (fn [this bundle] (do-ui (set-content-view! a (defui [:linear-layout {:orientation :vertical :layout-width :fill :layout-height :wrap} [:edit {:def user-input :layout-width :fill}] [:button {:text "Touch me" :on-click notify-from-edit}]]))))) (ns braid.ui.styles.body) (def body [:body {:margin 0 :padding 0 :font-family "\"Open Sans\", Helvetica, Arial, sans-serif" :font-size "12px" :background "#eee"} [:textarea :input {:font-family "inherit"}]]) (ns wlmmap.map (:require [mrhyde.extend-js] [blade :refer [L]] [cljs.core.async :refer [chan !]] [shoreleave.remotes.http-rpc :refer [remote-callback]]) (:require-macros [cljs.core.async.macros :refer [go]])) (blade/bootstrap) (def mymap (-> L .-mapbox (.map "map" "examples.map-uci7ul8p") (.setView [45 3.215] 5))) (def markers (L/MarkerClusterGroup.)) (let [ch (chan)] (go (while true (let [a ( L (.marker (L/LatLng. lat lng) {:icon icon :title title}))] (.bindPopup marker title) (.addLayer markers marker)) (.addLayer mymap markers)))) (remote-callback :get-markers [] #(doseq [a %] (go (>! ch a))))) ;; FIXME: get language ;; (js/alert (.-language js/navigator)) (defproject domain "0.1.0-SNAPSHOT" :description "CV + RTB" :url "http://example.com/OMGLOL" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-jetty-adapter "1.4.0"] [ring/ring-defaults "0.1.5"] [ring/ring-json "0.4.0"] [compojure "1.4.0"] [clj-http "2.0.0"] [org.clojure/core.async "0.2.374"] [org.clojure/data.json "0.2.6"] [ring-cors "0.1.7"]] :plugins [[lein-ring "0.9.7"]] :ring {:handler domain.core/app :nrepl {:start? true :port 3001}} :jvm-opts ["-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"] :aot [domain.core]) {:user {:dependencies [[clj-stacktrace "0.2.5"] [org.clojure/tools.trace "0.7.6"] [org.clojure/tools.namespace "0.2.4"] [redl "0.1.0"] [speclj-tmux "1.0.0"] [spyscope "0.1.3"] [slamhound "1.3.3"]] :plugins [[lein-difftest "1.3.7"] [lein-exec "0.3.0"] [org.bodil/lein-noderepl "0.1.10"] [lein-clojars "0.9.1"] [lein-pprint "1.1.1"] [lein-ring "0.8.0"] [lein-cljsbuild "0.3.2"] [lein-deps-tree "0.1.2"] [lein-marginalia "0.7.1"]] :repl-options {:timeout 120000} :injections [(require '[redl core complete]) (require 'spyscope.core) (require 'clojure.tools.namespace) (let [orig (ns-resolve (doto 'clojure.stacktrace require) 'print-cause-trace) new (ns-resolve (doto 'clj-stacktrace.repl require) 'pst)] (alter-var-root orig (constantly @new)))] :vimclojure-opts {:repl true}}} (ns frontend.intercom (:require [frontend.utils :as utils :include-macros true])) (defn intercom-jquery [] (aget js/window "intercomJQuery")) (defn intercom-v1-new-message [jq message] (.click (jq "#IntercomTab")) (when-not (.is (jq "#IntercomNewMessageContainer") ":visible") (.click (jq "[href=IntercomNewMessageContainer]"))) (when-not (.is (jq "#newMessageBody") ":visible") (throw "didn't find intercom v1 widget")) (.focus (jq "#newMessageBody")) (when message (.text (jq "#newMessageBody") (str message "\n\n")))) (defn intercom-v2-new-message [] (js/Intercom "show")) (defn raise-dialog [ch & [message]] (try (let [jq (intercom-jquery)] (intercom-v1-new-message jq message)) (catch :default e (try (intercom-v2-new-message) (catch :default e (utils/notify-error ch "Uh-oh, our Help system isn't available. Please email us instead, at sayhi@circleci.com") (utils/merror e))))) (utils/notify-error ch "Uh-oh, our Help system isn't available. Please email us instead, at sayhi@circleci.com")) (defn user-link [] (let [path (.. js/window -location -pathname) re (js/RegExp. "/gh/([^/]+/[^/]+)")] (when-let [match (.match path re)] (str "https://www.intercom.io/apps/vnk4oztr/users" "?utf8=%E2%9C%93" "&filters%5B0%5D%5Battr%5D=custom_data.pr-followed" "&filters%5B0%5D%5Bcomparison%5D=contains&filters%5B0%5D%5Bvalue%5D=" (second path))))) (ns pz-discover.util (:require [clojure.tools.logging :as log] [zookeeper :as zk] [pz-discover.models.services :as sm])) (defn setup-zk-env! [client chroot] (let [names-node (format "%s/%s" chroot "names") types-node (format "%s/%s" chroot "types")] (when-not (zk/exists client chroot) (zk/create client chroot :persistent? true)) (when-not (zk/exists client names-node) (zk/create client names-node :persistent? true)) (when-not (zk/exists client types-node) (zk/create client types-node :persistent? true)))) (defn register-kafka! [client kafka-config] (let [kafka-data {:type "infrastructure" :brokers (get-in kafka-config [:producer "bootstrap.servers"])}] (sm/register-by-name client "kafka" kafka-data))) (defn register-zookeeper! [client zookeeper-config] (let [zk-data (assoc zookeeper-config :type "infrastructure")] (sm/register-by-name client "zookeeper" zk-data))) (ns uxbox.core (:require [beicon.core :as rx] [cats.labs.lens :as l] [uxbox.state :as st] [uxbox.router :as rt] [uxbox.rstore :as rs] [uxbox.ui :as ui] [uxbox.data.load :as dl])) (enable-console-print!) (defn main "Initialize the storage subsystem." [] (let [lens (l/select-keys [:pages-by-id :shapes-by-id :colors-by-id :projects-by-id]) stream (->> (l/focus-atom lens st/state) (rx/from-atom) (rx/debounce 1000) (rx/tap #(println "[save]")))] (rx/on-value stream #(dl/persist-state %)))) (defonce +setup+ (do (println "bootstrap") (st/init) (rt/init) (ui/init) (rs/emit! (dl/load-data)) (main))) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.frontend.core) (defmulti -handler (comp (juxt :type :dest) second vector)) (ns circle.backend.build.inference.gems-map) (def gem-package-map ;; this is a map of rubygems to the ubuntu packages necessary for this gem to install. Incomplete. {"memcached" #{"libmemcached-dev" "libsasl2-dev"} "cdamian-geoip_city" #{"libgeoip-dev"} "capybara-webkit" #{"libqtwebkit-dev"} "pdfkit "#{"wkhtmltopdf"}}) (def blacklisted-gems ;; gems that should be removed from the user's gemfile when running #{"rb-fsevent" "growl_notify" "autotest-fsevent"}) (def database-yml-gems ;; if using any of these gems, they'll need a database.yml. We will ;; generate a database.yml for them. ["activerecord" "dm-rails"]) (def gem-adapter-map {"pg" "postgresql" "do_postgres" "postgresql" "sqlite3" "sqlite3" "mysql" "mysql" "mysql2" "mysql2" "do_mysql" "mysql"}){:user {:plugins [[lein-midje "3.1.3"] [com.palletops/pallet-lein "0.6.0-beta.9"] [lein-marginalia "0.7.1"] [lein-difftest "2.0.0"] [cider/cider-nrepl "0.6.0"] [lein-ancient "0.6.7"] ] :dependencies [[alembic "0.2.0"]] } } (defproject org.flatland/useful "0.11.1" :description "A collection of generally-useful Clojure utility functions" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/flatland/useful" :dependencies [[org.clojure/clojure "1.5.0"] [org.clojure/tools.macro "0.1.1"] [org.clojure/tools.reader "0.7.2"]] :aliases {"testall" ["with-profile" "dev,default:dev,1.3,default:dev,1.4,default" "test"]} :profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]} :1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]}} :plugins [[codox "0.8.0"]]) (defproject org.onyxplatform/onyx-metrics "0.8.0.1" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0.1"] [riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject oph/clj-parent "0.1.0" :url "http://example.com/FIXME" :license {:name "EUPL" :url "http://www.osor.eu/eupl/"} :plugins [[lein-modules "0.3.11"]] :modules {:inherited { :repositories [["oph-releases" {:url "https://artifactory.oph.ware.fi/artifactory/oph-sade-release-local" :sign-releases false :snapshots false}] ["oph-snapshots" "https://artifactory.oph.ware.fi/artifactory/oph-sade-snapshot-local"]]}}) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.1"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "0.2.7"] [clj-http "3.10.2"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.6.8"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject org.onyxplatform/onyx-datomic "0.7.3-beta7" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150902_134205-g8bdc527"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject org.onyxplatform/onyx-peer-http-query "0.11.0.0-SNAPSHOT" :description "An Onyx health and query HTTP server" :url "https://github.com/onyx-platform/onyx-peer-http-query" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.11.0-20170913_201413-ge1e4ba6"] [ring/ring-core "1.6.2"] [org.clojure/java.jmx "0.3.4"] [ring-jetty-component "0.3.1"] [cheshire "5.7.0"]] :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :profiles {:dev {:dependencies [[clj-http "3.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject onyx-app/lein-template "0.12.7.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject sqls "0.1.0-SNAPSHOT" :description "SQLS" :url "https://bitbucket.org/mpietrzak/sqls" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.6.0-beta2"] [org.clojure/data.json "0.2.4"] [org.clojure/java.jdbc "0.3.3"] [org.clojure/tools.logging "0.2.6"] [org.xerial/sqlite-jdbc "3.7.2"] [seesaw "1.4.4"] ] ; :main ^:skip-aot sqls.core :main sqls.core :java-source-paths ["src"] :target-path "target/%s" :plugins [[codox "0.6.7"] [lein-ancient "0.5.5"]] :profiles {:uberjar {:aot :all}} :jvm-opts ["-Xms4M" "-Xmx1G" "-XX:-PrintGC"]) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.3"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.12.1"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject onyx-app/lein-template "0.11.0.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject compojure "1.3.3" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.1"] [medley "0.5.5"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.3/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.2.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-beta2"]]}}) (defproject viewer "0.1.0-SNAPSHOT" :description "EVE Online Data Dump Viewer" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/java.jdbc "0.3.2"] [postgresql "9.1-901.jdbc4"] [ring/ring-jetty-adapter "1.2.1"] [compojure "1.1.6"] [org.clojure/data.json "0.2.4"] [hiccup "1.0.4"]] :plugins [[lein-ring "0.8.10"]] :ring {:handler viewer.core/app}) (defproject clj-record "1.1.0" :description "A pseudo-port of ActiveRecord to the Clojure programming language" :url "http://github.com/duelinmarkers/clj-record" :dependencies [[org.clojure/clojure "1.3.0"] [org.clojure/java.jdbc "0.0.6"]] :dev-dependencies [[lein-clojars "0.6.0"] [swank-clojure/swank-clojure "1.2.1"] [mysql/mysql-connector-java "5.1.17"]]) (ns leiningen.reset-db (:require leiningen.compile)) (defn reset-db [project] (leiningen.compile/eval-in-project project '(do (clj-record.test-helper/reset-db)) nil nil (require 'clj-record.test-helper))) (defproject puppetlabs/kitchensink "0.1.1" :description "Clojure utility functions" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] ;; Logging [org.clojure/tools.logging "0.2.6"] ;; Filesystem utilities [fs "1.1.2"] ;; Configuration file parsing [org.ini4j/ini4j "0.5.2"] [org.clojure/tools.cli "0.2.2"] [digest "1.4.3"] [clj-time "0.5.1"] ;; SSL [org.bouncycastle/bcpkix-jdk15on "1.49"]] :profiles {:dev {:resource-paths ["test-resources"]}} :deploy-repositories [["snapshots" "http://nexus.delivery.puppetlabs.net/content/repositories/snapshots/"]]) (defproject onyx-app/lein-template "0.12.0.0-alpha4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject statuses "1.0.0-SNAPSHOT" :description "Statuses app for innoQ" :url "https://github.com/innoq/statuses" :license {:name "Apache License, Version 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0" :distribution :repo :comments "A business-friendly OSS license"} :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.2"] [compojure "1.3.2"] [clj-time "0.9.0"] [org.clojure/data.json "0.2.6"]] :pedantic? :abort :plugins [[jonase/eastwood "0.2.0"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]} :uberjar {:aot [statuses.server]}} :main statuses.server :aliases {"lint" "eastwood"} :eastwood {:exclude-linters [:constant-test]}) (defproject mkremins/flense-nw "0.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2322"] [org.clojure/core.async "0.1.338.0-5c5012-alpha"] [com.facebook/react "0.11.1"] [om "0.7.1"] [spellhouse/phalanges "0.1.3"] [mkremins/flense "0.0-278"] [mkremins/fs "0.3.0"]] :plugins [[lein-cljsbuild "1.0.3"]] :source-paths ["src"] :cljsbuild {:builds [{:source-paths ["src"] :compiler {:preamble ["react/react.js"] :output-to "target/flense.js" :source-map "target/flense.js.map" :optimizations :whitespace :pretty-print true}}]}) (defproject funcool/continuo "0.1.0-SNAPSHOT" :description "A continuous transaction log persistence for Clojure." :url "https://github.com/funcool/continuo" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.txt"} :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :dependencies [[org.clojure/clojure "1.7.0" :scope "provided"] [com.taoensso/nippy "2.9.0"] [funcool/cats "1.0.0-SNAPSHOT"] [funcool/cuerdas "0.6.0"] [funcool/promissum "0.2.0"] [funcool/suricatta "0.3.1"] [hikari-cp "1.3.0"] [com.cognitect/transit-clj "0.8.281"] [cheshire "5.5.0"] [com.github.spullara.mustache.java/compiler "0.9.0"]] :plugins [[lein-ancient "0.6.7"]]) ;; :profiles {:dev {:global-vars {*warn-on-reflection* false}}}) (defproject shale "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :dependencies [[org.clojure/clojure "1.6.0"] [ring "1.3.1"] [compojure "1.1.9"] [liberator "0.12.2"] [clj-json "0.5.3"] [clj-webdriver "0.6.0"] [clj-wallhack "1.0.1"] [hiccup "1.0.5"] [sonian/carica "1.1.0" :exclusions [[cheshire]]] [com.taoensso/carmine "2.7.0" :exclusions [org.clojure/clojure]] [com.brweber2/clj-dns "0.0.2"] [org.bovinegenius/exploding-fish "0.3.4"]] :auto-clean false :uberjar {:aot :all} :main shale.handler :plugins [[lein-ring "0.8.12"]] :ring {:handler shale.handler/app :port 5000} :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [org.clojure/tools.trace "0.7.8"]]}}) (defproject grafter "0.1.0-SNAPSHOT" :description "RDFization tools" :url "http://example.com/FIXME" :license {:name "TODO" :url "http://example.com/TODO"} :dependencies [[org.clojure/clojure "1.6.0"] ;;[org.apache.jena/jena-core "2.11.1"] [org.clojure/algo.monads "0.1.5"] [clj-time "0.7.0"] [org.clojure/tools.namespace "0.2.4"] [clojure-csv/clojure-csv "2.0.1"] [org.marianoguerra/clj-rhino "0.2.1"] [org.openrdf.sesame/sesame-runtime "2.7.10"]] :source-paths ["src"]) (defproject lein-jslint "0.1.6-SNAPSHOT" :description "A Leiningen plugin for running JS code through JSLint." :url "https://github.com/vbauer/lein-jslint" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[clj-glob "1.0.0" :exclusions [org.clojure/clojure]] [lein-npm "0.4.0" :exclusions [org.clojure/clojure]]] :plugins [[jonase/eastwood "0.1.4" :exclusions [org.clojure/clojure]] [lein-release "1.0.6" :exclusions [org.clojure/clojure]] [lein-kibit "0.0.8" :exclusions [org.clojure/clojure]] [lein-bikeshed "0.1.8" :exclusions [org.clojure/clojure]] [lein-ancient "0.5.5"]] :eval-in-leiningen true :pedantic? :abort :local-repo-classpath true :lein-release {:deploy-via :clojars :scm :git}) (defproject io.aviso/twixt "0.1.10-SNAPSHOT" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [io.aviso/tracker "0.1.0"] [ring/ring-core "1.2.1"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.4.0"] [de.neuland-bfi/jade4j "0.4.0"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defn get-prompt [ns] (str "\u001B[35m[\u001B[34m" ns "\u001B[35m]\u001B[33m λ\u001B[m=> ")) (defproject gov.nasa.earthdata/cmr-sample-data "0.1.0-SNAPSHOT" :description "Sample Data for the open source NASA Common Metadata Repository (CMR)" :url "https://github.com/oubiwann/cmr-sample-data" :license {:name "Apache License 2.0" :url "https://www.apache.org/licenses/LICENSE-2.0"} :dependencies [ [cheshire "5.8.0"] [org.clojure/clojure "1.8.0"]] :profiles { :uberjar {:aot :all} :dev { :dependencies [ [clojusc/trifl "0.1.0"] [org.clojure/tools.namespace "0.2.11"]] :source-paths ["dev-resources/src"] :repl-options { :init-ns cmr.sample-data.dev :prompt ~get-prompt}}}) (defproject compojure "1.3.4" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.2"] [medley "0.6.0"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.4/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring/ring-mock "0.2.0"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-beta2"]]}}) (defproject mtrx9 "1.1.0" :description "MTRX9 is a 3-dimensional simple monitoring tool using Clojure and Websockets. The live MTRX9 service is provided by mtrx9.com (http://www.mtrx9.com). If you're a tweetling, you might like to follow @mtrx9." :url "http://mtrx9.com" :min-lein-version "2.0.0" :dependencies [[org.clojure/clojure "1.5.1"] [aleph "0.3.0-rc2"] [compojure "1.1.5"] [ring/ring-jetty-adapter "1.1.6"] [hiccup "1.0.3"]] :plugins [[lein-ring "0.8.5"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}} :main mtrx9.core :aot [mtrx9.core]) (defproject cli4clj "1.2.5" ;(defproject cli4clj "1.2.6-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.15.0"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.2.5"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.3" :exclusions [org.clojure/clojure]]]}} ) (defproject ring "1.4.0-beta1" :description "A Clojure web applications library." :url "https://github.com/ring-clojure/ring" :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.5.1"] [ring/ring-core "1.4.0-beta1"] [ring/ring-devel "1.4.0-beta1"] [ring/ring-jetty-adapter "1.4.0-beta1"] [ring/ring-servlet "1.4.0-beta1"]] :plugins [[lein-sub "0.2.4"] [codox "0.8.10"]] :sub ["ring-core" "ring-devel" "ring-jetty-adapter" "ring-servlet"] :codox {:src-dir-uri "http://github.com/ring-clojure/ring/blob/1.3.2/" :src-linenum-anchor-prefix "L" :sources ["ring-core/src" "ring-devel/src" "ring-jetty-adapter/src" "ring-servlet/src"]}) (defproject jungerer "0.1.4" :description "Clojure network/graph library wrapping JUNG" :url "https://github.com/totakke/jungerer" :license {:name "The BSD 3-Clause License" :url "https://opensource.org/licenses/BSD-3-Clause"} :dependencies [[org.clojure/clojure "1.7.0"] [net.sf.jung/jung-algorithms "2.1.1"] [net.sf.jung/jung-api "2.1.1"] [net.sf.jung/jung-graph-impl "2.1.1"] [net.sf.jung/jung-io "2.1.1"] [net.sf.jung/jung-visualization "2.1.1"]] :profiles {:dev {:global-vars {*warn-on-reflection* true} :resource-paths ["dev-resources"]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0-alpha12"]] :resource-paths ["dev-resources"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]] :resource-paths ["dev-resources"]}} :deploy-repositories [["snapshots" {:url "https://clojars.org/repo/" :username [:env/clojars_username :gpg] :password [:env/clojars_password :gpg]}]] :codox {:source-uri "https://github.com/totakke/jungerer/blob/{version}/{filepath}#L{line}"}) (defproject simple "0.1.0-SNAPSHOT" :description "A very simple CI server for individual projects." :url "https://github.com/fhofherr/simple" :license {:name "MIT" :url "http://opensource.org/licenses/MIT"} :scm {:name "git" :url "https://github.com/fhofherr/simple"} :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/tools.logging "0.3.1"]] :main ^:skip-aot fhofherr.simple.main :global-vars {*warn-on-reflection* true} :target-path "target/%s" :test-selectors {:unit (complement :integration) :integration :integration} :plugins [[codox "0.8.15" :exclusions [[org.clojure/clojure]]] [lein-cljfmt "0.3.0"]] :codox {:output-dir "target/doc/api" :src-dir-uri "https://github.com/fhofherr/simple/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown} :exclude [user]} :profiles {:dev {:source-paths ["dev"] :resource-paths ["dev-resources" "test-resources"] :dependencies [[org.clojure/tools.namespace "0.2.11"]]} :test {:resource-paths ["test-resources"]} :uberjar {:aot :all}}) (defproject com.lemondronor/turboshrimp-h264j "0.2.0" :description (str "An AR.Drone video deocder for the turboshrimp library " "that uses h264j.") :url "https://github.com/wiseman/turboshrimp-h264j" :license {:name "MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[com.twilight/h264 "0.0.1"] [org.clojure/clojure "1.6.0"]] :profiles {:test {:dependencies [[com.lemondronor/turboshrimp "0.3.1"]] :resource-paths ["test-resources"]}}) (ns editor.helpers.utils (:require [om-tools.dom :as dom])) (defn model->json [model] (.stringify js/JSON (clj->js model) nil 2)) (defn json->model [json] (let [obj (.parse js/JSON json)] (js->clj obj :keywordize-keys true))) (defn non-sanitized-div [content] (dom/div {:dangerouslySetInnerHTML #js {:__html content}})) (defn find-first [f coll] (first (filter f coll)))(defproject tile-game "1.0.0-SNAPSHOT" :description "A Tile Puzzle Game and Solver" :min-lein-version "2.0.0" :main tile-game.core :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.494"] [reagent "0.6.1"]] :plugins [[lein-figwheel "0.5.9"] [lein-cljsbuild "1.1.5"]] :sources-paths ["src"] :clean-targets ^{:protect false} ["resources/public/js/out" "resources/public/js/release" "resources/public/js/tile-game.js" :target-path] :cljsbuild { :builds [{:id "dev" :source-paths ["src"] :figwheel true :compiler {:main tile-game.grid :asset-path "js/out" :output-to "resources/public/js/tile-game.js" :output-dir "resources/public/js/out" :source-map-timestamp true}} {:id "release" :source-paths ["src"] :compiler {:main tile-game.grid :output-to "resources/public/js/tile-game.js" :output-dir "resources/public/js/release" :optimizations :advanced :source-map "resources/public/js/tile-game.js.map"}}]} :figwheel { :css-dirs ["resources/public/css"] :open-file-command "emacsclient" }) (defproject pinpointer "0.1.0-SNAPSHOT" :description "Pinpointer makes it easy to grasp which part of data is causing the spec error" :url "https://github.com/athos/Pinpointer" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0-alpha17"] [org.clojure/clojurescript "1.9.671" :scope "provided"] [clansi "1.0.0"] [fipp "0.6.8"] [spectrace "0.1.0-SNAPSHOT"]] :plugins [[lein-cljsbuild "1.1.4"]] :cljsbuild {:builds {:dev {:source-paths ["src"] :compiler {:output-to "target/main.js" :output-dir "target" :optimizations :whitespace :pretty-print true}}}}) (defproject soy-clj "0.2.10-SNAPSHOT" :description "An idiomatic Clojure wrapper for Google's Closure templating system." :url "https://github.com/codahale/soy-clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/core.cache "0.6.5"] [com.google.template/soy "2016-07-21" :exclusions [args4j]]] :plugins [[codox "0.9.5"]] :test-selectors {:default #(not-any? % [:bench]) :bench :bench} :aliases {"bench" ["test" ":bench"]} :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :global-vars {*warn-on-reflection* true} :profiles {:dev [:project/dev :profiles/dev] :test [:project/test :profiles/test] :profiles/dev {:dependencies [[org.clojure/clojure "1.8.0"] [criterium "0.4.4"]]} :profiles/test {} :project/dev {:source-paths ["dev"] :repl-options {:init-ns user}} :project/test {:dependencies []}}) (defproject onyx-app/lein-template "0.10.0.0-beta8" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject strava-activity-graphs "0.1.0-SNAPSHOT" :description "Generate statistical charts for Strava activities" :url "https://github.com/nicokosi/strava-activity-graphs" :license {:name "Creative Commons Attribution 4.0" :url "https://creativecommons.org/licenses/by/4.0/"} :dependencies [[org.clojure/clojure "1.10.3"] [incanter/incanter-core "1.9.3"] [incanter/incanter-charts "1.9.3"] [incanter/incanter-io "1.9.3"] [org.clojure/data.json "1.0.0"] [clj-http "3.11.0"] [slingshot "0.12.2"]] :plugins [[lein-cljfmt "0.7.0"]] :main ^:skip-aot strava-activity-graphs.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject buddy/buddy-sign "0.6.0" :description "High level message signing for Clojure" :url "https://github.com/funcool/buddy-sign" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[org.clojure/clojure "1.6.0" :scope "provided"] [com.taoensso/nippy "2.8.0"] [buddy/buddy-core "0.6.0"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.5.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (defproject incise "0.1.0-SNAPSHOT" :description "A hopefully simplified static site generator in Clojure." :url "https://github.com/RyanMcG/incise" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [ring "1.2.0"] [hiccup "1.0.2"] [compojure "1.1.5"] [http-kit "2.1.10"] [robert/hooke "1.3.0"] [me.raynes/cegdown "0.1.0"] [org.clojure/java.classpath "0.2.0"] [org.clojure/tools.namespace "0.2.4"] [org.clojure/tools.cli "0.2.4"] [clj-time "0.5.1"] [com.taoensso/timbre "2.6.1"] [com.ryanmcg/stefon "0.5.0-SNAPSHOT"] [manners "0.1.0-SNAPSHOT"]] :profiles {:dev {:dependencies [[speclj "2.5.0"]]}} :repl-options {:init-ns incise.repl} :plugins [[speclj "2.5.0"]] :test-paths ["spec/"] :main incise.core) (ns clj-record.test.serialization-test (:require [clj-record.serialization :as serialization] [clj-record.callbacks :as callbacks] [clj-record.callbacks.built-ins :as callb] [clj-record.test.model.manufacturer :as manufacturer] [clj-record.test.model.product :as product]) (:use clojure.contrib.test-is clj-record.test.test-helper)) (deftest serializes-simple-clojure-types (are (= _1 (serialization/serialize _2)) "\"123\"" "123" "123" 123)) (deftest serializes-and-deserializes-clojure-types-symmetrically (are (= _1 (serialization/deserialize (serialization/serialize _1))) nil [1 2 3] {:a "Aee" :b "Bee" :c "See"} #{1 :b "See"} '(1 2 [hey now]))) (defdbtest serialized-attributes-support-common-clojure-types (restoring-ref (manufacturer/model-metadata) (callbacks/add-callback "manufacturer" :before-save (callb/transform-value :name serialization/serialize)) (callbacks/add-callback "manufacturer" :after-load (callb/transform-value :name serialization/deserialize)) (let [record (manufacturer/create valid-manufacturer)] (are (= (do (manufacturer/update (assoc record :name _1)) _1) ((manufacturer/get-record (record :id)) :name)) "some string" 23 [1 2 3])))) (ns cfpb.qu.env (:require [clojure.string :as str] [clojure.java.io :as io] [environ.core :as environ])) (def default-env {:mongo-host "127.0.0.1" :mongo-port 27017 :mongo-options {:connect-timeout 2000} :statsd-port 8125 :http-ip "127.0.0.1" :http-port 3000 :http-threads 4 :http-queue-size 20480 :log-file nil :log-level :info :dev false :integration false :api-name "Data API"}) (def ^{:doc "A map of environment variables."} env (let [env (merge default-env environ/env) config-file (:qu-config environ/env)] (if config-file (merge env (binding [*read-eval* false] (read-string (slurp config-file)))) env))) (ns flare.cljs-test (:require [flare.report :as report] [flare.diff :as diff] [cljs.test :as ct])) (defn render-diff [m] (try (let [[pred & values] (second (:actual m))] (when (and (= pred '=) (= 2 (count values))) (when-let [diff (apply diff/diff* values)] (println "\n" (clojure.string/join "\n" (report/report* diff)))))) (catch js/Error e (println "*** Oh noes! Flare threw an exception diffing the following values:") (println values) (println "*** Exception thrown is:" e)))) (defmethod cljs.test/report [:cljs.test/default :fail] [m] (ct/inc-report-counter! :fail) (println "\nFAIL in" (ct/testing-vars-str m)) (when (seq (:testing-contexts (ct/get-current-env))) (println (ct/testing-contexts-str))) (when-let [message (:message m)] (println message)) (ct/print-comparison m) (render-diff m)) (ns comic-reader.database-test (:require [clojure.test :refer :all] [com.stuartsierra.component :as component] [comic-reader.database :as sut] [datomic.api :as d])) (deftest database-component-test (let [db (sut/new-database)] (is (sut/database? db)) (is (sut/database? (component/start db))) (is (nil? (:conn (component/start db)))) (let [config {:database-uri "datomic:mem://comics-test" :norms-dir nil} db (assoc db :config config)] (is (nil? (sut/get-conn db))) (let [started-db (component/start db)] (is (not (nil? (:conn started-db)))))) (let [config {:database-uri "datomic:mem://comics-test" :norms-dir "database/test-norms"} db (-> db (assoc :config config) component/start)] (is (= 1 (count (d/q '[:find ?e :in $ :where [?e :db/ident :test.enum/one]] (d/db (:conn db))))))))) (set-env! :source-paths #{"src"} :resource-paths #{"resources"} :dependencies '[[org.clojure/clojure "1.7.0"] [prismatic/schema "0.4.3"]]) (require '[net.sekao.nightcode.core :as app]) (task-options! pom {:project 'nightcode :version "1.0.0-SNAPSHOT"} aot {:namespace '#{net.sekao.nightcode.core}} jar {:main 'net.sekao.nightcode.core :manifest {"Description" "An IDE for Clojure and ClojureScript" "Url" "https://github.com/oakes/Nightcode"}}) (deftask run [] (comp (aot) (with-pre-wrap fileset (app/-main) fileset))) (deftask build [] (comp (aot) (pom) (uber) (jar))) (ns clj-tutorials.main (:require [compojure.core :refer :all] [compojure.handler :as handler] [org.httpkit.server :refer [run-server]])) (def ongoing-requests (atom 0)) (defn- pong [] (let [ongoing-reqs (swap! ongoing-requests inc) start (System/currentTimeMillis)] (when (= 0 (mod ongoing-reqs 10)) (prn "Ongoing requests " ongoing-reqs)) (Thread/sleep 50) (swap! ongoing-requests #(- % 1)) "pong")) (defroutes app-routes (GET "/ping" [] (pong))) (defn run [] (run-server (handler/api app-routes) {:port 8080 :join? false :thread 1000})) (ns tabswitcher.views (:require [reagent.core :as r] [keybind :as kb] [re-frame.core :refer [subscribe dispatch]])) (defn query-input [] [:div#query [:input {:type "text" :on-key-up (fn [event] (dispatch [:filter (-> event .-target .-value)]))}]]) (defn result-item [idx result selection] [:li.result-item {:on-click #(dispatch [:jump-to result]) :class (when (= idx selection) "selected")} (:title result)]) (defn results-list [results selection] (into [:ul] (map-indexed #(result-item %1 %2 selection) results))) (defn app [] (let [results (subscribe [:results]) selection (subscribe [:selection])] (r/create-class {:display-name "tabswitcher-name" :reagent-render (fn [] [:div [:h3 "Tabswitcher"] [query-input] [:p "Found " (count @results) " tabs"] [results-list @results @selection]]) :component-did-mount (fn [] (kb/bind! "alt-j" ::next-result #(dispatch [:next-result])) (kb/bind! "alt-k" ::next-result #(dispatch [:previous-result])) )}))) (defproject doctopus "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [markdown-clj "0.9.63"] [me.raynes/fs "1.4.6"]] :plugins [[lein-marginalia "0.8.0"]] :main ^:skip-aot doctopus.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (defproject buddy/buddy-core "0.3.0" :description "Security library for Clojure" :url "https://github.com/funcool/buddy-core" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/algo.monads "0.1.5"] [commons-codec/commons-codec "1.10"] [org.bouncycastle/bcprov-jdk15on "1.51"] [org.bouncycastle/bcpkix-jdk15on "1.51"]] :source-paths ["src/clojure"] :java-source-paths ["src/java"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"] :profiles {:speclj {:dependencies [[speclj "3.1.0"]] :test-paths ["spec"] :plugins [[speclj "3.1.0"]]}}) (defproject haystack "0.1.0-SNAPSHOT" :description "ecommerce search service in elasticsearch" :url "http://murphydye.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-http "3.4.1"] [clojurewerkz/elastisch "3.0.0-beta1"] [org.clojure/data.csv "0.1.3"] [bidi "2.0.16"] [aleph "0.4.1"] [yada "1.2.0"] ;; these are temporary. eventually will call an ecommerce service for this data [mysql/mysql-connector-java "5.1.6"] [org.clojure/java.jdbc "0.3.7"] [com.murphydye/mishmash "0.1.1-SNAPSHOT"] ] :main ^:skip-aot haystack.core ;; :jvm-opts ["-Xss6G" "-Xms6g"] :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (set-env! :dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"] [clj.rb "0.3.0"] [adzerk/bootlaces "0.1.5" :scope "test"]] :resource-paths #{"src"}) (require '[adzerk.bootlaces :refer :all]) (def +version+ "0.3.0") (bootlaces! +version+) (task-options! pom {:project 'boot-jruby :version +version+ :description "Boot task to execute JRuby code." :url "https://github.com/tobias/boot-jruby" :scm {:url "https://github.com/tobias/boot-jruby"} :license {:name "Apache Software License - v 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0"}}) (require '[figwheel-sidecar.repl :as r] '[figwheel-sidecar.repl-api :as ra] '[cljs.tagged-literals]) (alter-var-root #'cljs.tagged-literals/*cljs-data-readers* assoc 'ux/tr (fn [v] `(uxbox.locales/tr ~v))) (ra/start-figwheel! {:figwheel-options {:css-dirs ["resources/public/css"]} :build-ids ["dev"] :all-builds [{:id "dev" :figwheel true :source-paths ["src"] :compiler {:main 'uxbox.core :asset-path "js" :parallel-build false :optimizations :none :pretty-print true :language-in :ecmascript5 :language-out :ecmascript5 :output-to "resources/public/js/main.js" :output-dir "resources/public/js" :verbose true}}]}) (ra/cljs-repl) (ns libx.deflogical-test (:require [clojure.test :refer [deftest run-tests is testing]] [libx.tuplerules :refer [deflogical]] [clara.rules :refer [defrule]])) (defn rule-props [expansion] (second (nth expansion 2))) (deftest deflogical-test (testing "Single fact" (is (= (rule-props (macroexpand '(deflogical [-1 :foo "bar"] :- [[?e :baz]] [[?e :quux]]))) (rule-props (macroexpand '(defrule x [:baz (= ?e (:e this))] [:quux (= ?e (:e this))] => (libx.util/insert! [-1 :foo "bar"])))))))) ;(testing "Multiple facts" ; (let [output (macroexpand ; '(deflogical ; [[-1 :foo "bar"] [-2 :foo "baz"]] ; [[?e :baz]] ; [[?e :quux]])) ; expected (macroexpand ; '(defrule my-logical ; [:baz (= ?e (:e this))] ; [:quux (= ?e (:e this))] ; => ; (insert-all! [[-1 :foo "bar"] [-2 :foo "baz"]])))] ; (is (= output expected))))) (run-tests)(ns quil-site.core (:require [compojure.core :refer [defroutes GET]] [compojure.handler :refer [site]] [compojure.route :refer [files]] [ring.util.response :as resp] [ring.middleware.json :as json] [ring.adapter.jetty :refer [run-jetty]] [ring.middleware.stacktrace :as stacktrace] [quil-site.controllers.sketches :as sketches] [quil-site.controllers.api :as api] [quil-site.views.about :refer [about-page]])) (defroutes app (GET "/" [] (about-page)) sketches/routes api/routes (files "/")) (defn dump-request [handler] (fn [req] (clojure.pprint/pprint req) (handler req))) (def handler (-> #'app ; dump-request site (json/wrap-json-body {:keywords? true}) json/wrap-json-response stacktrace/wrap-stacktrace)) (defn run [] (run-jetty handler {:port 8080})) (comment (def server (run-jetty #(handler %) {:port 8080 :join? false})) (.stop server) ) (defproject cljs-browser "0.0.1-SNAPSHOT" :description "" :dependencies [[org.clojure/clojure "1.4.0-beta4"] [org.clojure/clojurescript "0.0-993"] [ring "1.0.0-RC1"] [compojure "0.6.4"] [enlive "1.0.0"] [domina "1.0.0-beta1"]] :repl-init one.sample.repl :source-path "src/app/clj" :extra-classpath-dirs ["src/app/cljs" "src/app/cljs-macros" "src/lib/clj" "src/lib/cljs" "templates" "../src"]) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; This Source Code Form is "Incompatible With Secondary Licenses", as ;; defined by the Mozilla Public License, v. 2.0. ;; ;; Copyright (c) 2020 UXBOX Labs SL (ns uxbox.main (:require [mount.core :as mount])) (defn- enable-asserts [_] (let [m (System/getProperty "uxbox.enable-asserts")] (or (nil? m) (= "true" m)))) ;; Set value for all new threads bindings. (alter-var-root #'*assert* enable-asserts) ;; Set value for current thread binding. (set! *assert* (enable-asserts nil)) ;; --- Entry point (defn -main [& args] (require 'uxbox.config 'uxbox.migrations 'uxbox.http 'uxbox.tasks) (mount/start)) (defproject lean-map "0.3.0" :description "Lean Hash Array Mapped Trie implementation in ClojureScript" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :clean-targets ^{:protect false} ["resources/out"] :jvm-opts ^:replace ["-Xms512m" "-Xmx512m" "-server"] :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "1.7.170"]] :profiles {:test {:dependencies [[collection-check "0.1.7-SNAPSHOT"]]}} :plugins [[lein-doo "0.1.6-rc.1"]] :cljsbuild {:builds [{:id "test" :source-paths ["src/main" "test"] :compiler {:output-to "resources/public/js/testable.js" :main cljs.lean-map.test.runner :optimizations :none}} {:id "node-test" :source-paths ["src/main" "test"] :compiler {:output-to "resources/public/js/testable.js" :main cljs.lean-map.test.runner :output-dir "target" :target :nodejs :optimizations :none}}]})(defproject io.aviso/twixt "0.1.5" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.0"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.1"] [de.neuland/jade4j "0.3.15"] [io.aviso/pretty "0.1.6"] [hiccup "1.0.4"]] :repositories [["jade4j" "https://raw.github.com/neuland/jade4j/master/releases"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject mofficer "1.0-SNAPSHOT" :description "Mofficer (for Mail Officer) is a system that does one thing: send e-mails." :url "https://github.com/granpanda/mofficer" :dependencies [[org.clojure/clojure "1.6.0"] [ring/ring-jetty-adapter "1.3.0"] [ring/ring-json "0.3.1"] [ring-cors "0.1.0"] [compojure "1.1.8"] [cheshire "5.3.1"] [clj-http "0.9.0"] [clj-time "0.6.0"] [com.novemberain/langohr "2.9.0"] [com.draines/postal "1.11.1"] [mysql/mysql-connector-java "5.1.25"] [org.clojure/java.jdbc "0.3.4"]] :plugins [[lein-ring "0.8.11"]] :ring {:handler mofficer.main/app :stacktraces? true :auto-reload true :auto-refresh? true} :profiles {:dev {:plugins [[lein-midje "3.1.3"]] :dependencies [[javax.servlet/servlet-api "2.5"] [com.h2database/h2 "1.4.180"] [ring-mock "0.1.5"] [midje "1.6.3"]]}} :main mofficer.main) (defproject compojure "1.3.1" :description "A concise routing library for Ring" :url "https://github.com/weavejester/compojure" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.macro "0.1.5"] [clout "2.1.0"] [medley "0.5.3"] [ring/ring-core "1.3.2"] [ring/ring-codec "1.0.0"]] :plugins [[codox "0.8.10"]] :codox {:src-dir-uri "http://github.com/weavejester/compojure/blob/1.3.1/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:jvm-opts ^:replace [] :dependencies [[ring-mock "0.1.5"] [criterium "0.4.3"] [javax.servlet/servlet-api "2.5"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha2"]]}}) (defproject cli4clj "1.4.0" ;(defproject cli4clj "1.3.3-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.3.465"] [jline/jline "2.14.5"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.5" :exclusions [org.clojure/clojure]]]}} ) (defproject funcool/promesa "1.1.0" :description "A promise library for ClojureScript" :url "https://github.com/funcool/promesa" :license {:name "BSD (2 Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.7.228" :scope "provided"] [funcool/cats "1.2.1" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]]]) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.7-alpha1"] [org.thnetos/cd-client "0.3.4"] [clj-stacktrace "0.2.4"] [clj-http "0.3.4"] [com.cemerick/drawbridge "0.0.2"] [clojure-complete "0.2.1"]] :dev-dependencies [[midje "1.3-alpha4" :exclusions [org.clojure/clojure]] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java" :source-paths ["src/clj"] :java-source-paths ["src/java"] :main ^:skip-aot reply.main) (defproject onyx-app/lein-template "0.9.10.0-beta4" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns viewer.controller.web (:require [compojure.core :refer [defroutes GET]] [clojure.data.json :as json] [clojure.xml :as xml] [viewer.model.mastery :as mastery] [viewer.model.ship :as ship] [viewer.view.mastery :as mastery-view])) (def xml-filename-pattern #"(\S+) - (\S+).xml") (defn parse-xml-filename [fn] (rest (re-find xml-filename-pattern fn))) (defn xml-response [content] {:status 200 :headers {"Content-Type" "application/xml"} :body content}) ;;; ["/user/:id", :id #"[0-9]+"] (defroutes routes (GET ["/masteries/:typeid", :typeid #"[0-9]+"] [typeid] (mastery-view/render (ship/ship-info (read-string typeid)) (mastery/all (read-string typeid)))) (GET ["/masteries/:shipname", :shipname #"[a-zA-Z ]+"] [shipname] (let [ship-info (ship/ship-info shipname)] (mastery-view/render ship-info (mastery/all (:typeid ship-info))))) (GET "/masteries/xml/:filename" [filename] (let [[ship level] (parse-xml-filename filename)] (xml-response (with-out-str (xml/emit-element (mastery/as-xml ship level))))))) (ns workflo.macros.entity.datascript (:require [datascript.core :as d] [workflo.macros.entity.schema :as es])) (defn attr-schema [attr-opts] (reduce (fn [opts opt] (cond-> opts (= :ref opt) (assoc :db/valueType :db.type/ref) (= :many opt) (assoc :db/cardinality :db.cardinality/many) (= :unique-value opt) (assoc :db/unique :db.unique/value) (= :unique-identity opt) (assoc :db/unique :db.unique/identity))) {} attr-opts)) (defn entity-schema "Returns the DataScript schema for an entity." [entity] (reduce (fn [schema [attr-name attr-opts]] (let [aschema (attr-schema attr-opts)] (cond-> schema (not (empty? aschema)) (assoc attr-name aschema)))) {} (es/entity-schema entity))) (ns triangle.test (:require [clojure.test :refer :all])) (load-file "triangle.clj") (deftest equilateral-1 (is (= :equilateral (triangle 2 2 2)))) (deftest equilateral-2 (is (= :equilateral (triangle 10 10 10)))) (deftest isoceles-1 (is (= :isosceles (triangle 3 4 4)))) (deftest isoceles-2 (is (= :isosceles (triangle 4 3 4)))) (deftest scalene (is (= :scalene (triangle 3 4 5)))) (deftest invalid-1 (is (= :illogical (triangle 1 1 50)))) (deftest invalid-2 (is (= :illogical (triangle 1 2 1)))) (run-tests) (ns ecregister.posts_ui (:gen-class) (:use [seesaw.core]) (:use [seesaw.mig]) (:use [seesaw.font]) (:use [seesaw.border]) ) (defn make-post-widget [{:keys [author title icon]}] (mig-panel :items [[(label :border (line-border :color "#ddd" :thickness 1) :size [50 :by 50]) "spany 2"] [(label :text author :font (font :name "Arial" :style :bold :size 17)) "cell 1 0,pushy,bottom"] [(label :text title :font (font :name "Arial" :style :italic :size 15)) "cell 1 1,pushy,top"]] :constraints ["", "[][]", "[][]"])) (defn build-posts-tab [] (let [form (mig-panel :items [[(label "Последний опубликованный пост") "top,center,wrap"] [(progress-bar :indeterminate? false :value 10) "center,wrap"] [(make-post-widget {:author "Dima" :title "Как я что-то сделал"}) "center"] ] :constraints ["fillx,gap 18px"] )] form)) (ns discuss.config) (def project "discuss") (def user "Q2hyaXN0aWFu") (def api {:host "http://localhost:4284/" :init "api/" :base "api/" :add {:add-start-statement "add/start_statement" :add-start-premise "add/start_premise" :add-justify-premise "add/justify_premise"}})(ns subman.core (:gen-class) (:require [compojure.handler :as handler] [overtone.at-at :as at-at] [org.httpkit.server :as server] [hiccup.middleware :refer [wrap-base-url]] [ring.middleware.reload :refer [wrap-reload]] [subman.routes :as routes] [subman.filler :as filler] [subman.const :as const] [subman.models :as models])) (def app (-> (handler/site routes/main-routes) wrap-base-url wrap-reload)) (defn init-pool [] (let [pool (at-at/mk-pool)] (at-at/every const/update-period (fn [] (println "start update") filler/update-all models/update-total-count (println "update finished")) pool))) (defn -main [& args] (try (models/create-index) (catch Exception e (println e))) (models/update-total-count) (future (init-pool)) (let [port (Integer/parseInt (or (System/getenv "PORT") const/default-port))] (server/run-server app {:port port}))) ;; Copyright © 2016-2017, JUXT LTD. (ns tick.deprecated.schedule-test (:require [clojure.test :refer :all] [tick.deprecated.timeline :refer [periodic-seq timeline]] [tick.core :refer [seconds millis]] [tick.deprecated.clock :refer [clock-ticking-in-seconds just-now]] [tick.deprecated.schedule :as sched])) (deftest ^:deprecated schedule-test (let [a (atom 0) f (fn [dt] (swap! a inc)) clk (clock-ticking-in-seconds) now (just-now clk) timeline (take 10 (timeline (periodic-seq now (millis 10))))] @(sched/start (sched/schedule f timeline) clk) (is (= @a 10)))) (deftest ^:deprecated simulate-test (let [a (atom 0) f (fn [dt] (swap! a inc)) clk (clock-ticking-in-seconds) now (just-now clk) timeline (take 1000 (timeline (periodic-seq now (seconds 1))))] @(sched/start (sched/simulate f timeline) clk) (is (= @a 1000)))) (def start-t (System/currentTimeMillis)) (defsensor math {:poll-interval (seconds 10)} {:sine (Math/sin (/ (- (System/currentTimeMillis) start-t) (minutes 1))) :cosine (Math/cos (/ (- (System/currentTimeMillis) start-t) (minutes 1))) }) (defsensor steps-ascending {:poll-interval (seconds 5)} (+ 2.3 (mod (/ (- (System/currentTimeMillis) start-t) (minutes 4)) 3))) (ns {{name}}.core (:require-macros [retro-fever.macros :refer [game]]) (:require [retro-fever.core :as core] [retro-fever.input :as input] [retro-fever.sprite :as sprite] [retro-fever.asset :as asset])) (defonce game-state (atom {})) ; Atom to store the game state (defn update-fn []) ; Update function called on each iteration in the game loop (defn render-fn [context]) ; Render function called on each iteration in the game loop (defn load-resources []) ; Function to load all the game resources (defn setup []) ; Function to setup initial game state (defn ^:export init [] ; The entry point into the game from the HTML page (.log js/console "Launching game") (core/init-canvas "game-canvas" 640 480) ; Initialize canvas on HTML page (input/init) ; Initialize input devices (load-resources) ; Load game resources, such as images and animations (core/setup setup) ; Setup the initial game state (game core/game-loop update-fn render-fn 60) ; Create and start the game loop ) (defproject prismatic/fnhouse "0.1.0-SNAPSHOT" :description "Transform lightly-annotated functions into a full-fledged web service" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/Prismatic/fnhouse" :dependencies [[prismatic/plumbing "0.2.1"]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"]] :warn-on-reflection true} :1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}} :lein-release {:deploy-via :shell :shell ["lein" "deploy" "clojars"]} :aliases {"all" ["with-profile" "dev:dev,1.4"]}) (defproject uxbox-backend "0.1.0-SNAPSHOT" :description "UXBox backend." :url "http://uxbox.github.io" :license {:name "MPL 2.0" :url "https://www.mozilla.org/en-US/MPL/2.0/"} :source-paths ["src"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :jvm-opts ["-Dclojure.compiler.direct-linking=true"] :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.slf4j/slf4j-simple "1.7.18"] [bouncer "1.0.0"] [mount "0.1.10"] [environ "1.0.2"] [buddy/buddy-sign "0.9.0"] [buddy/buddy-hashers "0.11.0"] [com.github.spullara.mustache.java/compiler "0.9.1"] [org.postgresql/postgresql "9.4.1208" :scope "provided"] [niwinz/migrante "0.1.0"] [funcool/suricatta "0.8.1"] [funcool/promesa "0.8.1"] [hikari-cp "1.6.1"] [funcool/catacumba "0.11.2"]]) (defproject buddy/buddy-sign "0.5.0-SNAPSHOT" :description "High level message signing" :url "https://github.com/funcool/buddy-sign" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.6.0"] [com.taoensso/nippy "2.8.0"] [buddy/buddy-core "0.5.0-SNAPSHOT"] [slingshot "0.12.2"] [cats "0.4.0"] [clj-time "0.9.0"] [cheshire "5.4.0"]] :source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :test-paths ["test"]) (let [dev-deps '[[speclj "2.3.0"]]] (defproject reply "0.2.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.4.0"] [jline/jline "2.10"] [org.thnetos/cd-client "0.3.6"] [clj-stacktrace "0.2.4"] [org.clojure/tools.nrepl "0.2.1"] [org.clojure/tools.cli "0.2.1"] [com.cemerick/drawbridge "0.0.6"] [trptcolin/versioneer "0.1.0"] [clojure-complete "0.2.2"] [org.clojars.trptcolin/sjacket "0.1.0.3" :exclusions [org.clojure/clojure]]] :profiles {:dev {:dependencies ~dev-deps}} :dev-dependencies ~dev-deps :plugins ~dev-deps :aot [reply.reader.jline.JlineInputReader] :source-path "src/clj" :java-source-path "src/java" :test-path "spec" :source-paths ["src/clj"] :java-source-paths ["src/java"] :test-paths ["spec"] :main ^{:skip-aot true} reply.ReplyMain)) (ns discuss.texts.lib (:require [cljs.spec.alpha :as s] [clojure.string :as string] [discuss.translations :refer [translate] :rename {translate t}])) (defn join-with-and "Join collection of strings with `and`." [col] (string/join (str " " (t :common :and) " ") col)) (s/fdef join-with-and :args (s/cat :col (s/coll-of string?)) :ret string?) (ns circle.logging (:import (org.apache.log4j Logger BasicConfigurator EnhancedPatternLayout Level ConsoleAppender SimpleLayout) (org.apache.log4j.spi RootLogger)) (:import (org.apache.log4j.rolling TimeBasedRollingPolicy RollingFileAppender)) (:import org.apache.commons.logging.LogFactory)) (defn set-level [logger level] (. (Logger/getLogger logger) (setLevel level))) (defn init [] (let [rolling-policy (doto (TimeBasedRollingPolicy.) (.setActiveFileName "circle.log" ) (.setFileNamePattern "circle-%d{yyyy-MM-dd}.log.gz") (.activateOptions)) layout (EnhancedPatternLayout. "%p [%d] %t - %c - %m%n") rolling-log-appender (doto (RollingFileAppender.) (.setRollingPolicy rolling-policy) (.setLayout layout) (.activateOptions))] (doto (Logger/getRootLogger) (.removeAllAppenders) (.addAppender rolling-log-appender) (.addAppender (ConsoleAppender. layout)))) (. (Logger/getRootLogger) (setLevel Level/DEBUG)) (set-level "jclouds.wire" Level/OFF) (set-level "jclouds.headers" Level/OFF) (set-level "jclouds.signature" Level/OFF)) (defproject shrimp "0.1.0-SNAPSHOT" :description "Demo project for Goby." :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-2511"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [goby "0.1.0"] [weasel "0.4.2"]] :plugins [[lein-cljsbuild "1.0.3"] [jarohen/simple-brepl "0.1.2"]] :source-paths ["src"] :brepl {:ip "127.0.0.1"} :cljsbuild {:builds {:dev {:source-paths ["src" "dev-src"] :compiler {:output-to "js/main.js" :optimizations :whitespace :static-fns false :externs ["externs.js"] :pretty-print true}} :rel {:source-paths ["src" "rel-src"] :compiler {:output-to "js/main.js" :optimizations :advanced :static-fns true :externs ["externs.js"] :pretty-print false :pseudo-names false}}}}) {:name "aggregate" :path "" :func (let [result (volatile! [])] (fn[data] (if (pg/eoi? data) @result (do (vswap! result (fn[resval] (conj resval data))) (pg/need))))) :description "Streaming aggregation. Takes a stream of data and constructs a vector containing all data. This is mostly for aggregating result maps of upstream nodes. Similar to eager seqs in that all data will be used at once. BE CAREFUL." } (ns tensorflow-clj.core (:gen-class)) (def ^:dynamic graph nil) (defmacro with-graph [& body] `(binding [graph (org.tensorflow.Graph.)] (try ~@body (finally (.close graph))))) (defn- build-op [op-type op-name attr-map] (let [ob (.opBuilder graph op-type (name op-name))] (doseq [[attr-name attr-value] attr-map] (.setAttr ob attr-name attr-value)) (-> ob (.build) (.output 0)))) (defn tensor [value] (org.tensorflow.Tensor/create value)) (defn constant [name value] (let [t (tensor value)] (build-op "Const" name {"dtype" (.dataType t) "value" t}))) (defn variable [name] (build-op "Variable" name {"dtype" org.tensorflow.DataType/DOUBLE "shape" (org.tensorflow.Shape/scalar)})) (defn run-and-fetch [name] (with-open [sess (org.tensorflow.Session. graph)] (-> sess (.runner) (.fetch (name name)) (.run)))) (defn -main "I don't do a whole lot ... yet." [& args] (println "Hello, World!")) (ns dasha.core) (defn log [data] (.log js/console (str data))) (log "test") (ns leipzig-live.core (:require [reagent.core :as reagent :refer [atom]] [reagent.session :as session] [secretary.core :as secretary :include-macros true] [accountant.core :as accountant] [cljs.js :as cljs])) ;; ------------------------- ;; Model (defonce music (atom "7")) ;; ------------------------- ;; Behaviour (defonce compiler-state (cljs/empty-state)) (defn evaluate [expr-str] (cljs/eval-str compiler-state expr-str nil {:eval cljs/js-eval} #(print-str expr-str " evaluates to " %))) ;; ------------------------- ;; Views (defn home-page [] [:div [:h1 "Welcome to Leipzig Live!"] [:div [:input {:type "text" :value (-> music deref print-str) :on-change #(reset! music (-> % .-target .-value))}]] [:div (evaluate @music)]]) (defn current-page [] [:div [(session/get :current-page)]]) ;; ------------------------- ;; Routes (secretary/defroute "/" [] (session/put! :current-page #'home-page)) ;; ------------------------- ;; Initialize app (defn mount-root [] (reagent/render [current-page] (.getElementById js/document "app"))) (defn init! [] (accountant/configure-navigation!) (accountant/dispatch-current!) (mount-root)) (ns frontend.utils) (defmacro inspect "prints the expression ' is ', and returns the value" [value] `(do (let [name# (quote ~value) result# ~value] (print (pr-str name#) "is" (pr-str result#)) result#))) (defmacro timing "Evaluates expr and prints the label and the time it took. Returns the value of expr." {:added "1.0"} [label expr] `(let [global-start# (or (aget js/window "__global_time") (aset js/window "__global_time" (.getTime (js/Date.)))) start# (.getTime (js/Date.)) ret# ~expr global-time# (- (.getTime (js/Date.)) global-start#)] (aset js/window "__global_time" (.getTime (js/Date.))) (prn (str ~label " elapsed time: " (- (.getTime (js/Date.)) start#) " ms, " global-time# " ms since last")) ret#)) (ns nightmod.utils (:require [clojure.java.io :as io]) (:import [java.text SimpleDateFormat])) (def ^:const properties-file ".properties") (def main-dir (atom nil)) (def project-dir (atom nil)) (def error (atom nil)) (defn get-data-dir [] (let [home-dir (System/getProperty "user.home") app-name "Nightmod" app-name-lower (clojure.string/lower-case app-name) osx-dir (io/file home-dir "Library" "Application Support" app-name) win-dir (io/file home-dir "AppData" "Roaming" app-name)] (.getCanonicalPath (cond (.exists (.getParentFile osx-dir)) osx-dir (.exists (.getParentFile win-dir)) win-dir :else (if-let [config-dir (System/getenv "XDG_CONFIG_HOME")] (io/file config-dir app-name-lower) (io/file home-dir ".config" app-name-lower)))))) (defn format-date [unix-time] (.format (SimpleDateFormat. "yyyy.MM.dd HH:mm:ss") unix-time)) (defn new-project! [template] (let [project-name (str (System/currentTimeMillis)) project-file (io/file @main-dir project-name)] (.mkdirs project-file) (doseq [f (-> (io/resource template) io/file .listFiles)] (io/copy f (io/file project-file (.getName f)))) (.getCanonicalPath project-file))) (defproject suricatta "0.1.0-SNAPSHOT" :description "High level sql toolkit for clojure (backed by jooq library)" :url "http://example.com/FIXME" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.txt"} :dependencies [[org.clojure/clojure "1.7.0-alpha2"] [org.jooq/jooq "3.4.2"] [clojure.jdbc "0.3.0-SNAPSHOT"] [postgresql "9.3-1101.jdbc41"] [com.h2database/h2 "1.3.176"]]) (defproject basex "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :java-source-paths ["src/main/java"] :source-paths ["src/main/clojure"] :dependencies [[org.clojure/clojure "1.5.1"] ] :profiles { :dev { :repositories { "BaseX Maven Repository" "http://files.basex.org/maven" } :dependencies [[org.basex/basex "7.8.2"] [midje "1.5.1"] [lein-midje "3.0.0"] [me.raynes/fs "1.4.4"]]}}) (defproject io.nervous/fink-nottle "0.1.0" :description "Asynchronous Clojure client for the Amazon SNS service" :url "https://github.com/nervous-systems/fink-nottle" :license {:name "Unlicense" :url "http://unlicense.org/UNLICENSE"} :scm {:name "git" :url "https://github.com/nervous-systems/fink-nottle"} :deploy-repositories [["clojars" {:creds :gpg}]] :signing {:gpg-key "moe@nervous.io"} :global-vars {*warn-on-reflection* true} :source-paths ["src" "test"] :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/core.async "0.1.346.0-17112a-alpha"] [org.clojure/data.codec "0.1.0"] [io.nervous/eulalie "0.3.2"] [io.nervous/glossop "0.1.0"] [prismatic/plumbing "0.4.1"] [cheshire "5.5.0"]] :exclusions [[org.clojure/clojure]]) (ns bob (:require [clojure.string :as str])) (defn response-for [x] (cond (str/blank? x) "Fine, be that way." (= (str/upper-case x) x) "Woah, chill out!" (= \? (get x (- (count x) 1))) "Sure." :else "Whatever." ) )(ns caesium.magicnonce.secretbox-test (:require [caesium.magicnonce.secretbox :as ms] [caesium.crypto.secretbox :as s] [caesium.crypto.secretbox-test :as st] [clojure.test :refer [deftest is]] [caesium.util :as u])) (deftest xor-test (let [one (byte-array [1 0 1]) two (byte-array [0 1 0]) out (byte-array [0 0 0])] (is (identical? (#'ms/xor! out one two) out)) (is (u/array-eq (byte-array [1 1 1]) out))) (let [one (byte-array [1 0 1]) two (byte-array [0 1 0])] (is (identical? (#'ms/xor-inplace! one two) one)) (is (u/array-eq (byte-array [1 1 1]) one)))) (deftest secretbox-pfx-test (let [nonce (byte-array (range s/noncebytes)) ctext (ms/secretbox-pfx st/ptext nonce st/secret-key)] (is (= (+ s/noncebytes (alength ^bytes st/ptext) s/macbytes) (alength ^bytes ctext))))) (ns mdr2.dtb "Functions to query DAISY Talking Books" (:require [clojure.data.xml :as xml] [clojure.java.io :refer [file]]) (:import javax.sound.sampled.AudioSystem)) (defn file-audio-length "Get the length of the audio in seconds for a given audio file" [file] ;; see http://stackoverflow.com/questions/3009908/how-do-i-get-a-sound-files-total-time-in-java (let [stream (AudioSystem/getAudioInputStream file) format (.getFormat stream) frameRate (.getFrameRate format) frames (.getFrameLength stream) durationInSeconds (/ frames frameRate)] durationInSeconds)) (defn audio-file? [file] (and (.isFile file) (.endsWith ".wav" (.getName file)))) (defn audio-length [dtb] (let [audio-files (filter audio-file? (file-seq (file dtb)))] (reduce + (map file-audio-length audio-files)))) (ns whitman.core (:require [whitman.config :as config] [whitman.crawler :as crawler] [whitman.db :as db] [whitman.writer :as writer]) (:gen-class)) (defn exit [code msg] (binding [*out* *err*] (do (println msg) (System/exit code)))) (defn do-crawl [cfg writer] (let [users (crawler/records cfg) docs (map #(crawler/sample-docs cfg %) users)] (doseq [d docs] (writer/write writer cfg (:query d) (:insert d))))) (defn writer [args] :db) (defn -main [& args] (if (< (count args) 1) (exit 1 "No configuration file specified") (do-crawl (config/read-config (last args)) (writer args)))) (ns analyze-data.tf-idf.inverse-document-frequency) (defn document-frequency "Return a map from term to number of documents it appears in." [tf-corpus] (let [count-term (fn [m term] (assoc m term (inc (get m term 0)))) term-keys (mapcat keys tf-corpus)] (reduce count-term {} term-keys))) (defn calc-inverse-document-frequency "Calculate inverse document frequency. num-documents: the total number of documents num-documents-with-term: the number of documents containing the term we are calculating for" [num-documents num-documents-with-term] (Math/log (/ num-documents num-documents-with-term))) (defn inverse-document-frequency "Given tf-corpus: a sequence of term-frequency maps where each one represents a single document Return a map from term to its inverse document frequency (as defined at https://en.wikipedia.org/wiki/Tf–idf#Inverse_document_frequency_2)." [tf-corpus] (let [num-documents (count tf-corpus) document-frequencies (document-frequency tf-corpus) assoc-idf (fn [m term num-documents-with-term] (assoc m term (calc-inverse-document-frequency num-documents num-documents-with-term)))] (reduce-kv assoc-idf {} document-frequencies))) (ns klangmeister.test.processing (:require [cljs.test :refer-macros [deftest testing is]] [klangmeister.processing :as processing] [klangmeister.framework :as framework] [klangmeister.compile.eval :as eval] [klangmeister.actions :as action])) (def ignore! (constantly nil)) (deftest stopping (testing (is (= (framework/process (action/->Stop :foo) ignore! {:foo {:looping? true}}) {:foo {:looping? false}})) (is (= (framework/process (action/->Stop :foo) ignore! {:foo {:looping? false}}) {:foo {:looping? false}})))) (deftest refreshing (testing (is (= (framework/process (action/->Refresh "(phrase [1] [69])" :foo) ignore! {}) {:foo {:value [{:time 0 :pitch 69 :duration 1}] :text "(phrase [1] [69])" :error nil}})) (is ((comp :error :foo) (framework/process (action/->Refresh "(phrase [1] [6" :foo) ignore! {}))))) (ns guangyin.internal.types (:import (guangyin.internal.types ObjectWrapper TemporalAmountWrapper TemporalAccessorWrapper TemporalWrapper))) (defmethod print-method ObjectWrapper [obj writer] (print-method @obj writer)) (defn wrapped-instance? [^Class c x] (or (instance? c x) ; FIXME This should be removed (and (instance? ObjectWrapper x) (instance? c @x)))) (defmacro wrap-object [& body] `(ObjectWrapper. (do ~@body))) (defmacro wrap-temporal-accessor [keymap & body] `(TemporalAccessorWrapper. ~keymap (do ~@body))) (defmacro wrap-temporal [keymap & body] `(TemporalWrapper. ~keymap (do ~@body))) (defmacro wrap-temporal-amount [keymap & body] `(TemporalAmountWrapper. ~keymap (do ~@body))) (ns lo-cash.core (:require [clojure.browser.repl :as repl])) (defn -main [] (.log js/console "connecting...") (repl/connect "http://localhost:9000/repl")) (defn obj-select "Selects the given keys from a JS object and returns a keywordized map" [obj [& keys]] (into {} (map #([(keyword %) (aget obj %)]) keys))) (defn obj-selectv "Selects the given keys from a JS object and returns a vector of their values" [obj [& keys]] (mapv #(aget obj %) keys)) (ns onyx.log.notify-join-cluster-test (:require [onyx.extensions :as extensions] [onyx.log.entry :refer [create-log-entry]] [midje.sweet :refer :all])) (def entry (create-log-entry :notify-join-cluster {:observer :d :subject :a})) (def f (partial extensions/apply-log-entry entry)) (def rep-diff (partial extensions/replica-diff entry)) (def rep-reactions (partial extensions/reactions entry)) (def old-replica {:pairs {:a :b :b :c :c :a} :prepared {:a :d} :peers [:a :b :c]}) (let [new-replica (f old-replica) diff (rep-diff old-replica new-replica) reactions (rep-reactions old-replica new-replica diff {:id :d})] (fact diff => {:observer :d :subject :b :accepted-joiner :d :accepted-observer :a}) (fact reactions => [{:fn :accept-join-cluster :args diff :immediate? true}]) (fact (rep-reactions old-replica new-replica diff {:id :a}) => nil) (fact (rep-reactions old-replica new-replica diff {:id :b}) => nil) (fact (rep-reactions old-replica new-replica diff {:id :c}) => nil)) (ns {{ns-name}}.routes (:require [bidi.bidi :as bidi] [pushy.core :as pushy] [re-frame.core :as re-frame] [{{ns-name}}.events :as events])) (defmulti panels identity) (defmethod panels :default [] [:div "No panel found for this route."]) (def routes (atom ["/" {"" :home "about" :about}])) (defn parse [url] (bidi/match-route @routes url)) (defn url-for [& args] (apply bidi/path-for (into [@routes] args))) (defn dispatch [route] (let [panel (keyword (str (name (:handler route)) "-panel"))] (re-frame/dispatch [::events/set-active-panel panel]))) (def history (pushy/pushy dispatch parse)) (defn navigate! [handler] (pushy/set-token! history (url-for handler))) (defn start! [] (pushy/start! history)) (re-frame/reg-fx :navigate (fn [handler] (navigate! handler))) (defproject wort "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/data.json "0.2.6"] [com.amazonaws/aws-lambda-java-core "1.0.0"] [uswitch/lambada "0.1.2"] [pjstadig/humane-test-output "0.8.2"] [compojure "1.6.0"] [deraen/sass4clj "0.3.1"] [ring/ring-defaults "0.2.1"]] :sass {:source-paths ["resources/public/css/scss"] :target-path "resources/public/css" :output-style :compressed} :ring {:handler wort.handler/app} :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)] :plugins [[lein-cljfmt "0.5.6"] [lein-ring "0.12.1"] [deraen/lein-sass4clj "0.3.1"]] :main ^:skip-aot wort.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns advent2017.core) (defn read-puzzle ([name] (read-puzzle name identity)) ([name xform] (-> (clojure.java.io/file (str "../2017/" name)) (slurp) xform))) (defn enumerate [xs] (map vector (range) xs)) (defn ->lines [s] (clojure.string/split s #"\n")) (defn ->words [s] (clojure.string/split s #"\s+")) (defn ->numbers [xs] (map #(Integer/parseInt %) xs)) (def lines->numbers (partial map words->numbers)) (defn csv->numbers [s] (->numbers (clojure.string/split s #","))) (defn manhattan-distance ([[x2 y2]] (manhattan-distance [0 0] [x2 y2])) ([[x1 y1] [x2 y2]] (+ (Math/abs (- x1 x2)) (Math/abs (- y1 y2))))) (defn bfs-lazy [tree pred f] ((fn step [queue] (lazy-seq (when (seq queue) (let [[[node & children] depth] (peek queue) xs (step (into (pop queue) (map vector children (repeat (inc depth)))))] (if (pred node depth children) (cons (f node depth children) xs) xs))))) (conj clojure.lang.PersistentQueue/EMPTY [tree 0]))) (ns ^{:clojure.tools.namespace.repl/load false} nrepl (:require [clojure.tools.nrepl.server :as nrepl.server] [cider.nrepl] [cemerick.piggieback] [refactor-nrepl.middleware :as refactor.nrepl])) (defn start-nrepl [] (let [server (nrepl.server/start-server :handler (apply nrepl.server/default-handler (conj (map #'cider.nrepl/resolve-or-fail cider.nrepl/cider-middleware) #'refactor.nrepl/wrap-refactor #'cemerick.piggieback/wrap-cljs-repl )))] (spit ".nrepl-port" (:port server)) (println "nREPL port:" (:port server)) server)) (def server (start-nrepl)) (defproject {{name}} "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [quil "2.2.0-SNAPSHOT"] [org.clojure/clojurescript "0.0-2268"]] :plugins [[lein-cljsbuild "1.0.3"]] :hooks [leiningen.cljsbuild] :cljsbuild {:builds [{:source-paths ["src"] :compiler {:output-to "web/js/main.js" :optimizations :whitespace :pretty-print true}}]})(ns planck.themes (:require [planck.from.io.aviso.ansi :as ansi])) (def ^:private colorize-fn-dumb identity) (def ^:private colorize-off-dumb "") (def ^:private dumb {:results-fn colorize-fn-dumb :ex-msg-fn colorize-fn-dumb :ex-stack-fn colorize-fn-dumb :err-font colorize-off-dumb :verbose-font colorize-off-dumb :reset-font colorize-off-dumb}) (def ^:private theme-ansi-base {:reset-font ansi/reset-font}) (def ^:private light (merge theme-ansi-base {:results-fn ansi/blue :ex-msg-fn ansi/bold-red :ex-stack-fn ansi/green :err-font ansi/red-font :verbose-font ansi/white-font})) (def ^:private dark (merge theme-ansi-base {:results-fn ansi/blue :ex-msg-fn ansi/bold-red :ex-stack-fn ansi/green :err-font ansi/red-font :verbose-font ansi/white-font})) (def ^:private themes {:plain dumb :light light :dark dark}) (defn get-theme [theme-id] (get themes theme-id dumb)) (ns servisne-info.tasks.daily-report (:require [servisne-info.logging :as l] [servisne-info.notifications :refer [send-daily-report-email]] [servisne-info.repository :as repo] [servisne-info.tasks.task-definition :refer [deftask]])) (defn- format-event-data [event] (l/format-data (dissoc event :_id))) (defn send-daily-report [] (let [events (repo/find-events-for-yesterday)] (send-daily-report-email (map format-event-data events)))) (def send-daily-report-task (deftask "send daily report" (send-daily-report))) (ns com.wsscode.pathom.test (:require [com.wsscode.pathom.core :as p])) (defn self-reader [{:keys [ast query] :as env}] (if query (p/join env) (name (:key ast)))) #?(:clj (defn sleep-reader [{:keys [ast query] :as env}] (if-let [time (p/ident-value env)] (do (Thread/sleep time) (if query (p/join env) (name (first (:key ast))))) ::p/continue))) (defn repeat-reader [env] (if-let [key (p/ident-key env)] (if (some-> (name key) (.startsWith "repeat.")) (p/join-seq env (map (constantly {}) (range (p/ident-value env)))) ::p/continue) ::p/continue)) (ns incise.watcher (:require [taoensso.timbre :refer [error]] [clojure.stacktrace :refer [print-stack-trace]] [watchtower.core :refer [watcher rate file-filter extensions on-change]])) (defn log-exceptions [func] "Log (i.e. print) exceptions received from the given function." (let [out *out* err *err*] (fn [& args] (binding [*out* out *err* err] (try (apply func args) (catch Exception e (error (with-out-str (print-stack-trace e))))))))) (defn per-change [change-fn] (fn [files] (doseq [file files] (change-fn file)))) (defn watch [change-fn] (watcher ["resources/posts/" "resources/pages/"] (rate 300) (on-change (-> change-fn per-change log-exceptions)))) (def watching nil) (defn start-watching [& args] (alter-var-root #'watching (fn [& _] (apply watch args)))) (defn stop-watching [] (when watching (future-cancel watching))) {:user {:ultra {:color-scheme :solarized_dark :stacktraces true} :plugins [[lein-try "0.4.3"] [lein-ancient "0.6.10-SNAPSHOT"] [lein-kibit "0.1.2"] [jonase/eastwood "0.2.3"] ;[venantius/ultra "0.5.0"] ]}} {:user {:signing {:gpg-key "8ED1CE42"} :dependencies [[alembic "0.2.1"] [clj-stacktrace "0.2.7"] [criterium "0.4.2"] [org.clojure/tools.namespace "0.2.5"] [slamhound "1.5.3"] [spyscope "0.1.4"]] :plugins [[cider/cider-nrepl "0.7.0"] [codox "0.6.6"] [jonase/eastwood "0.1.4"] [lein-ancient "0.5.5" :exclusions [commons-codec]] [lein-cljsbuild "1.0.3"] [lein-clojars "0.9.1"] [lein-cloverage "1.0.2"] [lein-difftest "2.0.0"] [lein-kibit "0.0.8"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"]] :injections [(require '[alembic.still :refer [distill]] '[clojure.repl :refer [source]] '[clojure.tools.namespace.repl :as repl] '[criterium.core :refer [bench quick-bench]] 'spyscope.core)] :aliases {"slamhound" ["run" "-m" "slam.hound"]} :search-page-size 50}} (use '[clojure.string :only (split-lines split join capitalize)]) (defn read-tabular-file [filename] (let [data (slurp filename) lines (split-lines data) split-by-tab #(split % #"\t")] (map split-by-tab lines))) (defn nameify [s] (let [words (split s #" ") word-names (map capitalize words)] (join " " word-names))) (defn convert-player [country data] (let [shirt (data 0)] { :id (str country "_" shirt) :country (nameify country) :name (nameify (data 1)) :shirt_number shirt :date_of_birth (data 2) :position (data 3) :club (data 4) :height (data 5) })) (def raw (read-tabular-file "2010/brazil.data")) (println (convert-player "brazil" (first raw))) (ns cards.util (:require [om.dom :as dom])) (defn update-cb-info [tag state & params] (println "update-cb-info" tag state params) (swap! state (fn [state] (-> state (update-in [:callbacks tag :counter] inc) (assoc-in [:callbacks tag :params] params))))) (defn render-cb-info [tag state label] (let [{:keys [counter params]} (get-in @state [:callbacks tag])] (dom/div #js {:style #js {:marginTop "1rem"}} (dom/strong nil "Callback info: " label) (dom/div nil (str "Triggered " (or counter 0) " times")) (dom/div nil "Parameters: " (dom/code nil (str params)))))) (ns nightweb.core (:use splendid.jfx nightweb.page) (:import javafx.scene.layout.VBox javafx.scene.layout.HBox javafx.scene.control.TabPane javafx.scene.control.Tab javafx.scene.web.WebView javafx.scene.layout.Priority javafx.scene.control.Button javafx.scene.control.TextField javafx.geometry.Insets net.i2p.router.Router) (:gen-class)) (defn start-browser "Launch the JavaFX browser (non-blocking)." [] (jfx (let [window (VBox.) tab-view (VBox.) nav-bar (HBox.) back-btn (Button. "<-") for-btn (Button. "->") reload-btn (Button. "Reload") url-field (TextField.) tab-bar (TabPane.) main-tab (Tab. "Main Page") add-tab (Tab. "+") web-view (WebView.)] (.setPadding nav-bar (Insets. 4)) (.setSpacing nav-bar 2) (add nav-bar [back-btn for-btn reload-btn url-field]) (HBox/setHgrow url-field Priority/ALWAYS) (add tab-view [nav-bar web-view]) (.setClosable add-tab false) (.setContent main-tab tab-view) (.add (.getTabs tab-bar) main-tab) (.add (.getTabs tab-bar) add-tab) (.load (.getEngine web-view) "http://localhost:8080") (VBox/setVgrow tab-bar Priority/ALWAYS) (add window [tab-bar]) (show window)))) (defn start-router "Launch the router (blocking)." [] (Router/main nil)) (defn -main "Launch everything." [& args] (start-web-server) (start-browser) (comment (start-router))) (ns berry.parsing.context-handler) (def begin { :start-line 1 :start-column 1 :current-line 1 :current-column 1 :offset 0}) (defn ++ [{current-column :current-column offset :offset :as context}] (merge context { :current-column (inc current-column) :offset (inc offset)})) (defn -- [{current-column :current-column offset :offset :as context}] (merge context { :current-column (dec current-column) :offset (dec offset)})) ;; Copyright 2015 Andrey Antukh ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns continuo.postgresql "A postgresql transactor main namespace.") (load "postgresql/connection") (load "postgresql/bootstrap") (ns user (:use clojure.repl io.aviso.repl speclj.config)) (install-pretty-exceptions) (alter-var-root #'default-config assoc :color true :reporters ["documentation"]) (ns com.wsscode.common.async-cljs) (defmacro if-cljs [then else] (if (:ns &env) then else)) (defmacro go-catch [& body] `(async/go (try ~@body (catch :default e# e#)))) (defmacro chan ~promise)))) (defmacro hiccup [html] (as-hiccup (parse html))) (defn hiccup->arb [hiccup] (if (string? (first hiccup)) (first hiccup) (let [[tag attrs & rest] (first hiccup) rest-count (count rest)] (if (or (= 0 rest-count) (and (= 1 rest-count) (string? (first rest)))) [:arb {:original-tag tag} (first rest)] (loop [arb [:arb {:original-tag tag}] forms rest] (if (= 1 (count forms)) (conj arb (hiccup->arb forms)) (recur (conj arb (hiccup->arb (list (first forms)))) (next forms)))))))) (defn html->arb [html] (hiccup->arb (html->hiccup html))) (ns onyx.peer.log-version) (def version "0.10.0-SNAPSHOT") (defn check-compatible-log-versions! [cluster-version] (when-not (or (re-find #"-" version) (= version cluster-version)) (throw (ex-info "Incompatible versions of the Onyx cluster coordination log. A new, distinct, :onyx/tenancy-id should be supplied when upgrading or downgrading Onyx." {:cluster-version cluster-version :peer-version version})))) (ns time-tracker.users.handlers (:require [ring.util.response :as res] [time-tracker.users.db :as users-db] [time-tracker.invited-users.db :as invited-users-db] [time-tracker.web.util :as web-util])) ;; /users/me/ (defn retrieve [{:keys [credentials]} connection] (if-let [user-profile (users-db/retrieve connection (:sub credentials))] (res/response user-profile) web-util/error-not-found)) ;; /users/ (defn list-all [request connection] (res/response (users-db/retrieve-all connection))) (ns cglossa.search-inputs (:require [clojure.string :as str])) (defn cwb-search-inputs [{:keys [search-query]}] (let [query (:query @search-query) displayed-query (str/replace query #"\[\(?\w+=\"(.+?)\"(?:\s+%c)?\)?\]" "$1") phonetic? (not= -1 (.indexOf query "phon="))] [:div.row-fluid [:form.form-inline.span12 [:div.span10 [:input.span12 {:type "text" :value displayed-query :on-change #(swap! search-query assoc-in [:query] (aget % "target" "value"))}] [:label {:style {:marginTop 5}}] [:input {:name "phonetic" :type "checkbox" :style {:marginTop -3} :checked phonetic?} " Phonetic form"]]]])) (def components {:cwb cwb-search-inputs :cwb-speech (fn [] [:div "CWB-SPEECHE"])}) (ns lcmap.clownfish.state (:require [cheshire.core :as json] [clojure.java.io :as io] [clojure.string :as str] [clojure.tools.logging :as log] [lcmap.clownfish.config :refer [config]] [mount.core :refer [defstate] :as mount] [org.httpkit.client :as http])) (defmulti retrieve (fn [url] (if (str/starts-with? (str/lower-case url) "http") :http :local))) (defmethod retrieve :http [url] (-> @(http/request {:url url :method :get :headers {"Accept" "application/json"}}) (:body))) (defmethod retrieve :local [url] (-> url io/resource slurp (json/decode true))) (defstate tile-specs ;:start {:tile_x 10 :tile_y 10 :shift_x 0 :shift_y 0}) :start (let [url (get-in config [:state :tile-specs-url])] (log/debug "Loading tile-specs") (try (retrieve url) (catch Exception e (log/errorf e "Could not load tile-specs from: %s" url) (throw e))))) (ns day8.re-frame.trace.styles (:require-macros [day8.re-frame.trace.macros :as macros])) (def panel-styles (macros/slurp-macro "day8/re_frame/css/main.css")) (ns cglossa.db) (ns frontend.models.test (:require [clojure.string :as string] [frontend.state :as state] [frontend.utils :as utils :include-macros true] [goog.string :as gstring] goog.string.format)) (defn source [test] (or (:source_type test) ;; TODO: this can be removed once source_type is fully deployed (:source test))) (defmulti format-test-name source) (defmethod format-test-name :default [test] (:name test)) (defmethod format-test-name "lein-test" [test] (str (:classname test) "/" (:name test))) (defmethod format-test-name "cucumber" [test] (if (string/blank? (:name test)) (:classname test) (:name test))) (defn pretty-source [source] (case source "cucumber" "Cucumber" "rspec" "RSpec" source)) (defn failed? [test] (not= "success" (:result test))) (ns parbench.requests-state) (defrecord RequestsState [requests concurrency grid]) (defn create-blank [requests concurrency url-generator] "Creates a blank representation of request state" (let [grid (for [row (range concurrency)] (for [col (range requests)] (ref {:y row :x col :url (url-generator col row) :state :untried :status nil :runtime nil}) ))]() (RequestsState. requests concurrency grid ))) (defn stats [requests-state] "Returns a mapping of RequestsState http states states to counts" (reduce (fn [stats request] (let [r @request state (:state r) status (:status r) statuses (:statuses stats)] (assoc stats :total (inc (stats :total 0)) state (inc (stats state 0)) :statuses (assoc statuses status (inc (statuses status 0))) :progress (if (not= state :untried) (inc (stats :progress 0)) (stats :progress 0))))) {:statuses {}} (flatten (:grid requests-state)))) (ns com.puppetlabs.cmdb.query.population (:use [com.puppetlabs.jdbc :only [query-to-vec]])) (defn correlate-exported-resources [] "Fetch a map of {exported-resource [#{exporting-nodes} #{collecting-nodes}]}, to correlate the nodes exporting and collecting resources." (query-to-vec (str "SELECT DISTINCT exporters.type, exporters.title, " "(SELECT certname FROM certname_catalogs WHERE catalog=exporters.catalog) AS exporter, " "(SELECT certname FROM certname_catalogs WHERE catalog=collectors.catalog) AS collector " "FROM catalog_resources exporters, catalog_resources collectors " "WHERE exporters.resource=collectors.resource AND exporters.exported=true AND collectors.exported=false " "ORDER BY exporters.type, exporters.title, exporter, collector ASC"))) ;; Copyright 2013 Andrey Antukh ;; ;; 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 ;; ;; Unless required by applicable law or agreed to in writing, software ;; distributed under the License is distributed on an "AS IS" BASIS, ;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ;; See the License for the specific language governing permissions and ;; limitations under the License. (ns buddy.core.keys (:require [buddy.core.codecs :refer [str->bytes]])) (defprotocol SecretKey (key->bytes [key] "Normalize key to byte array") (key->str [key] "Normalize key String")) (extend-protocol SecretKey String (key->bytes [key] (str->bytes key)) (key->str [key] key)) (ns incise.once.fixtures.core (:require [incise.load :refer [load-once-fixtures]] [taoensso.timbre :refer [spy]])) (defonce fixtures (atom {})) (defn register "Register a fixture for once with the given rank. Rank should be a number. The higher the number the later the fixture is executed. (A fixture with rank 0 would be the first thing to execute.)" [fixture & [rank]] (swap! fixtures assoc fixture (or rank 750))) (defn- generate-thunk [thunk fixture] (fn [] (fixture thunk))) (defn run-fixtures [] (reset! fixtures {}) (load-once-fixtures) ((->> @fixtures (spy :trace) (sort-by (comp - val)) (map key) (reduce generate-thunk (fn []))))) (ns ^:figwheel-always sidequarter-frontend.core (:require[om.core :as om :include-macros true] [om.dom :as dom :include-macros true])) (enable-console-print!) (println "Edits to this text should show up in your developer console.") ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:text "Hello world!"})) (om/root (fn [data owner] (reify om/IRender (render [_] (dom/h1 nil (:text data))))) app-state {:target (. js/document (getElementById "app"))}) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) ) (ns circle.web.test-web (:require circle.init) (:require [clj-http.client :as http]) (:require [clj-http.core :as core]) (:use midje.sweet)) (circle.init/init) (def site "http://localhost:8080") (fact "/ returns 200" (let [response (http/get site)] response => (contains {:status 200 :body #"Sign up"}))) (fact "posting works" (let [post-request {:form-params {:email "mytest@test.com" :contact true}} post-response (http/post site post-request) get-request {:cookies (post-response :cookies) :url (get-in post-response [:headers "location"])} get-response (http/get site get-request)] post-response => (contains {:status 302}) (:headers post-response) => (contains {"location" "/"}) get-response => (contains {:status 200 :body #"Thanks"}))); Copyright (C) 2013, 2014 Dr. Thomas Schank (DrTom@schank.ch, Thomas.Schank@algocon.ch) ; Licensed under the terms of the GNU Affero General Public License v3. ; See the "LICENSE.txt" file provided with this software. (ns cider-ci.utils.rdbms.json (:require [clojure.java.jdbc :as jdbc] [clojure.data.json :as json]) (:import org.postgresql.util.PGobject)) (defn value-to-json-pgobject [value] (doto (PGobject.) (.setType "json") (.setValue (json/write-str value)))) (extend-protocol jdbc/ISQLValue clojure.lang.IPersistentMap (sql-value [value] (value-to-json-pgobject value)) clojure.lang.IPersistentVector (sql-value [value] (value-to-json-pgobject value))) (extend-protocol jdbc/IResultSetReadColumn PGobject (result-set-read-column [pgobj metadata idx] (let [type (.getType pgobj) value (.getValue pgobj)] (case type "json" (json/read-str value) :else value)))) (ns cglossa.dev (:require [cglossa.core :as core] [figwheel.client :as figwheel :include-macros true] [cljs.core.async :refer [put!]] [weasel.repl :as weasel])) (enable-console-print!) (figwheel/watch-and-reload :websocket-url "ws://localhost:3449/figwheel-ws" :jsload-callback (fn [] (core/main))) (weasel/connect "ws://localhost:9001" :verbose true) (core/main) (ns grafter.rdf.ontologies.rdf "Some convenience terms for the RDF and RDFS vocabularies." (:use grafter.rdf.ontologies.util)) (def rdf (prefixer "http://www.w3.org/1999/02/22-rdf-syntax-ns#")) (def rdfs (prefixer "http://www.w3.org/2000/01/rdf-schema#")) (def rdf:a (rdf "type")) (def rdf:Property (rdf "Property")) (def rdfs:subPropertyOf (rdfs "subPropertyOf")) (def rdfs:Class (rdfs "Class")) (def rdfs:subClassOf (rdfs "subClassOf")) (def rdfs:label (rdfs "label")) (def rdfs:comment (rdfs "comment")) (def rdfs:isDefinedBy (rdfs "isDefinedBy")) (def rdfs:range (rdfs "range")) (def rdfs:domain (rdfs "domain")) (ns cmr.client.http.impl (:require [cljs-http.client :as http] [cljs.core.async :as async] [cmr.client.common.util :as util]) (:refer-clojure :exclude [get]) (:require-macros [cljs.core.async.macros :refer [go go-loop]])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Utility Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn make-channel [client] (if (get-in client [:parent-client-options :return-body?]) (async/promise-chan (map :body)) (async/promise-chan))) (defn get-default-options [client] {:with-credentials? false}) (defn make-http-options [client call-options] (merge (get-default-options client) {:channel (make-channel client)} (:http-options client) call-options)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Implementation ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defrecord HTTPClientData [ parent-client-options http-options]) (defn get [this url options] (http/get url (make-http-options this options))) (ns photon.config (:require [clojure.tools.logging :as log])) (defn load-props "Receives a path and loads the Java properties for the file represented by the path inside the classpath (typically, a resource)." [resource-name] (do (let [f (java.io.File. "./config.properties") config-file (if (.exists f) (clojure.java.io/file f) (clojure.java.io/resource (str resource-name ".properties"))) io (clojure.java.io/input-stream config-file) prop (java.util.Properties.)] (log/info "opening resource" config-file) (.load prop io) (into {} (for [[k v] prop] [(keyword k) v]))))) (def default-config {:amqp.url "amqp://localhost" :microservice.name "photon" :mongodb.host "localhost" :riak.default_bucket "rxriak-events-v1" :riak.node.1 "riak1.node.com" :riak.node.2 "riak2.node.com" :riak.node.3 "riak3.node.com"}) (def config (try (let [props (load-props "config")] (log/info "Properties" (pr-str props)) (merge default-config props)) (catch Exception e (log/error "Configuration was not loaded due to " e) (.printStackTrace e) default-config))) (ns joiner.design (:use com.ashafa.clutch) (:use joiner.core) (:use joiner.resource)) (defn- load-view [path] (let [loader-fn (fn[sum value] (let [file-content (load-resource (str path value ".js"))] (if (nil? file-content) sum (assoc sum (keyword value) file-content))))] (reduce loader-fn {} ["map" "reduce"]))) (defn update-view [database design-doc view-name] "Create or update a new view based on the resources found at design-doc/view-name/[map.js reduce.js]" (with-db database database (save-view design-doc (keyword view-name) (load-view (str design-doc "/views/" view-name "/"))))) (ns decktouch.card-data (:require [reagent.core :as reagent :refer [atom]] [ajax.core :refer [POST]] [cljs.core.async :refer [chan >! clj (.parse js/JSON list)))))) (def card-list (atom (get-card-list-from-storage))) (defn ! c %)) :params {:card-name card-name} :format :raw :error-handler (fn [{:keys [status status-text]}] (.log js/console (str "Error: " status " " status-text)))}) c)) (defn add-card-to-list! [card-name] (do (swap! card-list conj {"name" card-name}) (go (let [response (sec [s] (let [units (map parse-int (split s #":"))] (+ (* (first units) 60) (second units)))) (ns doctopus.test-database (:require [clojure.test :refer :all] [doctopus.configuration :refer [server-config]] [doctopus.db :refer :all] [doctopus.db.schema :refer :all] [korma.db :refer [defdb postgres]] [clojure.test :refer :all] [doctopus [db :refer :all]] [doctopus.db.schema :refer :all] [clojure.test :refer :all] [clojure.test :refer :all] [doctopus [db :refer :all]] [doctopus.db.schema :refer :all])) (defdb test-db (postgres (select-keys (get-in (server-config) [:database :test]) [:db :user :password :host :port]))) (defn- truncate! [table-name] (let [sql-string (format "TRUNCATE %s CASCADE" table-name)] (do-sql-with-logging! sql-string :test))) (defn database-fixture [f] (bootstrap :test) (f) (doseq [n (keys table-name->schema)] (truncate! n))) (defproject simple "lein-git-inject/version" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library org.clojure/google-closure-library-third-party]] [thheller/shadow-cljs "2.8.76"] [reagent "0.9.0-rc2"] [re-frame "0.11.0-rc2"]] :plugins [[day8/lein-git-inject "0.0.2"] [lein-shadow "0.1.7"]] :middleware [leiningen.git-inject/middleware] :clean-targets ^{:protect false} [:target-path "shadow-cljs.edn" "package.json" "package-lock.json" "resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}} :aliases {"dev-auto" ["shadow" "watch" "client"]}) (defproject simple "0.10.10-SNAPSHOT" :dependencies [[org.clojure/clojure "1.10.1"] [org.clojure/clojurescript "1.10.520" :exclusions [com.google.javascript/closure-compiler-unshaded org.clojure/google-closure-library]] [thheller/shadow-cljs "2.8.51"] [reagent "0.8.1"] [re-frame "0.10.9"]] :plugins [[lein-shadow "0.1.5"]] :clean-targets ^{:protect false} ["resources/public/js"] :shadow-cljs {:nrepl {:port 8777} :builds {:client {:target :browser :output-dir "resources/public/js" :modules {:client {:init-fn simple.core/run}} :devtools {:http-root "resources/public" :http-port 8280}}}}) (ns comic-reader.scrape (:require [clojure.string :refer [trim]] [net.cgrand.enlive-html :as html]) (:import java.net.URL)) (def sites [{:name "Manga Fox" :url "http://mangafox.me/manga/" :selector [:div.manga_list :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name name :url url})} (let [canonical-url "http://www.mangareader.net/"] {:name "Manga Reader" :url (str canonical-url "alphabetical") :selector [:div.series_alpha :ul :li :a] :normalize (fn [{[name] :content {url :href} :attrs}] {:name (trim name) :url (str canonical-url url)})})]) (defn fetch-feed [url] (html/xml-resource (java.net.URL. url))) (defn fetch-url [url] (html/html-resource (java.net.URL. url))) (defn fetch-comic-list [{:keys [url selector normalize]}] (map normalize (html/select (fetch-url url) selector))) (ns fault.service (:import (fault ServiceExecutor) (fault.circuit CircuitBreaker BreakerConfig BreakerConfig$BreakerConfigBuilder) (clojure.lang ILookup))) (set! *warn-on-reflection* true) (deftype CLJBreaker [^CircuitBreaker breaker] ILookup (valAt [this key] (.valAt this key nil)) (valAt [_ key default] (case key :open? (.isOpen breaker) :config (let [^BreakerConfig config (.getBreakerConfig breaker)] {:time-period-in-millis (.timePeriodInMillis config) :failure-threshold (.failureThreshold config) :time-to-pause-millis (.timeToPauseMillis config)}) default))) (defn swap-breaker-config [{:keys [circuit-breaker]} {:keys [time-period-in-millis failure-threshold time-to-pause-millis]}] (.setBreakerConfig ^CircuitBreaker circuit-breaker ^BreakerConfig (doto (BreakerConfig$BreakerConfigBuilder.) (.timePeriodInMillis time-period-in-millis) (.failureThreshold failure-threshold) (.timeToPauseMillis time-to-pause-millis) (.build)))) (defn service-executor [pool-size] (let [executor (ServiceExecutor. pool-size)] {:service executor :metrics (.getActionMetrics executor) :circuit-breaker (.getCircuitBreaker executor)})) (ns cruncher.core (:require [om.next :as om :refer-macros [defui]] [om.dom :as dom :include-macros true] [goog.dom :as gdom] [cruncher.data.pokemon] [cruncher.communication.auth] [cruncher.utils.extensions] [cruncher.utils.lib :as lib] [cruncher.shredder.main] [cruncher.views :as views] [om.next :as om])) (enable-console-print!) (om/add-root! lib/reconciler views/Main (gdom/getElement "cruncher-main")) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) ) (ns leipzig-live.views (:require [leipzig-live.actions :as action])) (defn home-page [handle! state] [:div [:h1 "Welcome to Leipzig Live!"] [:div [:input {:type "text" :value (:text state) :on-change #(-> % .-target .-value action/->Refresh handle!)}] [:button {:on-click (fn [_] (handle! (action/->Play)))} "Play!"]] [:div (-> state :music print)]]) (ns funnel-front.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true] [funnel-front.components.home.main :as home] [funnel-front.stores.main-store :as store])) (enable-console-print!) (om/root home/main-comp store/app-state {:target (. js/document (getElementById "app"))}) (ns obb-api.core.auth "Handles auth tokens" (:require [environ.core :refer [env]] [clj-jwt.core :refer :all] [clj-time.core :refer [now plus days]])) (def ^:private secret (or (env :obb-jwt-secret) "test")) (defn- build-claim "Build a claim to sign" [user] {:iss user :exp (plus (now) (days -1)) :iat (now)}) (defn token-for "Creates a token for a given user" [args] (-> (build-claim (args :user)) jwt (sign :HS256 secret) to-str)) (defn parse "Verifies a given token" [token] (-> token str->jwt)) (defn valid? "Checks if a token is valid" [token] (if token (verify token secret) false)) (defn username "Gets the username of the given token" [token] (get-in token [:claims :iss])) ;; Copyright (c) Daniel Borchmann. All rights reserved. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be bound by ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. (use 'clojure.tools.cli) ;; (defn- run-repl [] (clojure.main/repl :init #(use 'conexp.main))) (let [options (cli *command-line-args* (optional ["--load" "Load a given script"]))] (when (options :load) (use 'conexp.main) (load-file (options :load))) (when-not (or (options :load)) (clojure.main/repl :init #(use 'conexp.main)))) ;; nil (ns neko.ui.listview "Contains utilities to work with ListView." (:import android.util.SparseBooleanArray)) (defn get-checked "Returns a vector of indices for items being checked in a ListView. The two-argument version additionally takes a sequnce of data elements of the ListView (usually the data provided to the adapter) and returns the vector of only those elements that are checked. " ([lv] (let [bool-array (.getCheckedItemPositions lv) count (.getCount lv)] (loop [i 0, result []] (if (= i count) result (if (.get bool-array i) (recur (inc i) (conj result i)) (recur (inc i) result)))))) ([lv items] (let [bool-array (.getCheckedItemPositions lv) count (.getCount lv)] (loop [i 0, [curr & rest] items, result []] (if (= i count) result (if (.get bool-array i) (recur (inc i) rest (conj result curr)) (recur (inc i) rest result))))))) (ns mdr2.dtb "Functions to query DAISY Talking Books" (:require [clojure.data.xml :as xml] [clojure.java.io :refer [file]]) (:import javax.sound.sampled.AudioSystem)) (defn file-audio-length "Get the length of the audio in seconds for a given audio file" [file] ;; see http://stackoverflow.com/questions/3009908/how-do-i-get-a-sound-files-total-time-in-java (let [stream (AudioSystem/getAudioInputStream file) format (.getFormat stream) frameRate (.getFrameRate format) frames (.getFrameLength stream) durationInSeconds (/ frames frameRate)] durationInSeconds)) (defn wav-file? [file] (and (.isFile file) (.endsWith (.getName file) ".wav"))) (defn audio-length [dtb] (let [audio-files (filter wav-file? (file-seq (file dtb)))] (reduce + (map file-audio-length audio-files)))) (defproject onyx-app/lein-template "0.9.7.0-alpha19" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject potoo "0.1.0-SNAPSHOT" :description "A mini twitter clone backend using clojure and datomic" :url "https://github.com/kongeor/potoo" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [com.datomic/datomic-free "0.9.5344"] [com.stuartsierra/component "0.3.1"] [ring/ring "1.4.0"] [ring/ring-json "0.4.0"] [bidi "1.25.0"] [com.taoensso/timbre "4.2.1"]] :source-paths ["src/clj"] :main potoo.system :aot [potoo.system] :min-lein-version "2.0.0") (ns bgg-graphql-proxy.main (:require [io.pedestal.http :as http] [bgg-graphql-proxy.schema :refer [bgg-schema]] [bgg-graphql-proxy.server :refer [pedestal-server]])) (defn stop-server [server] (http/stop server) nil) (defn start-server "Creates and starts Pedestal server, ready to handle Graphql (and Graphiql) requests." [] (-> (bgg-schema) pedestal-server http/start)) (ns snake.board-view (:use snake.terminal) (:require [clojure.contrib.string :as string])) (defn draw-boarder "Draws the surrounding border of the board." [{width :width height :height}] (set-cursor 0 0) (put "/") (put (string/repeat width "-")) (put "\\") (dotimes [i height] (set-cursor 0 (+ i 1)) (put "|") (set-cursor (+ width 1) (+ i 1)) (put "|")) (put "\n") (put "\\") (put (string/repeat width "-")) (put "/")) (defn add-apple [{x :x y :y}] (set-cursor (+ x 1) (+ y 1)) (put "o")) (defn add-snake [{x :x y :y}] (set-cursor (+ x 1) (+ y 1)) (put "#")) (defn remove [{x :x y :y}] (set-cursor (+ x 1) (+ y 1)) (put " ")) (defn show-board [{width :width height :height board :board}] (doseq [[row] board] (doseq [[elem] row] (add elem)))) ; REM: add the add function which will call add-apple or add-snake(ns klangmeister.test.processing (:require [cljs.test :refer-macros [deftest is]] [klangmeister.processing :as processing] [klangmeister.framework :as framework] [klangmeister.actions :as action])) (def ignore! (constantly nil)) (deftest stopping (is (= (framework/process (action/->Stop :foo) ignore! {:foo {:looping? true}}) {:foo {:looping? false}}))) (defproject reply "0.1.0-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [net.sf.jline/jline "2.6-SNAPSHOT"] [clojure-complete "0.1.4"]] :dev-dependencies [[midje "1.3-alpha4"] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :repositories {"sonatype" {:url "http://oss.sonatype.org/content/repositories/snapshots"}} :java-source-path "src") (ns clj-applenewsapi.crypto (:require [pandect.algo.sha256 :refer [sha256-hmac]] [clojure.data.codec.base64 :refer [encode decode]] [clj-time.format :as tf] [clj-time.core :as t])) (defn now [] (tf/unparse (tf/formatter "Y-m-d'T'H:m:s'Z'") (t/now))) (defn canonical [method url t] (str method url t)) (defn signature [c-url secret] (->> secret (.getBytes) (decode) (sha256-hmac c-url) (.getBytes) (encode) (String.))) ; :mode=clojure: (defproject spraff "1.0.0-SNAPSHOT" :description "IRC bot." :dependencies [ [org.clojure/clojure "1.2.1"] [irclj "0.4.1-SNAPSHOT"] ] :dev-dependencies [ [marginalia "0.5.1"]] :main spraff.core) (ns cljs-utils.caching (:require [clojure.java.io :as io] [cognitect.transit :as transit]) (:import [java.io ByteArrayOutputStream])) (def out-dir "resources/public/js-cache/") (def filename "core.cljs.cache.aot.json") (defn mkdirp [path] (let [dir (java.io.File. path)] (if (.exists dir) true (.mkdirs dir)))) (defn dump-core-analysis-cache [out-path] (let [cache (read-string (slurp (io/resource "cljs/core.cljs.cache.aot.edn"))) out (ByteArrayOutputStream. 1000000) writer (transit/writer out :json)] (transit/write writer cache) (spit (io/file out-path) (.toString out)))) (defn -main [& args] (println "Starting dump...") (mkdirp out-dir) (dump-core-analysis-cache (str out-dir filename)) (println "End.")) (ns desdemona.query-test (:require [desdemona.query :as q] [clojure.test :refer [deftest is]])) (def dsl->logic @#'desdemona.query/dsl->logic) (deftest dsl->logic-tests (is (= '(l/featurec x {:ip "10.0.0.1"}) (dsl->logic '(= (:ip x) "10.0.0.1"))))) (deftest logic-query-tests (is (= [] (q/run-logic-query 'l/fail [{:ip "10.0.0.1"}]))) (is (= [[{:ip "10.0.0.1"}]] (q/run-logic-query '(l/featurec x {:ip "10.0.0.1"}) [{:ip "10.0.0.1"}])))) (ns logback-riemann-appender.core-test (:require [clojure.test :refer :all] [clojure.tools.logging :as log]) (:import [com.github.kyleburton.logback RiemannAppender])) (deftest test-logging (is (= 0 (.get RiemannAppender/timesCalled))) (log/infof "log at info level") (is (= 1 (.get RiemannAppender/timesCalled))) (log/fatalf "log at fatal level") (is (= 2 (.get RiemannAppender/timesCalled))) (let [ex (RuntimeException. "Test Error")] (log/fatalf ex "log with exception: %s" ex)) (is (= 3 (.get RiemannAppender/timesCalled)))) (comment (defn testfnkrb [] (let [ex (RuntimeException. "Test exception for logging, what stacktrace do we get?")] (log/infof ex "Testing Stacktrace: %s" ex))) (dotimes [ii 20] (log/info "test from clojure")) (let [ex (RuntimeException. "Test exception for logging, what stacktrace do we get?")] (log/infof ex "Testing Stacktrace: %s" ex)) (testfnkrb) ){:user {:plugins [[jonase/eastwood "0.2.0"] [lein-kibit "0.0.8"]]}} (defproject {{ project_name }} "0.0.1-SNAPSHOT" :source-paths ["topologies"] :resource-paths ["_resources"] :target-path "_build" :min-lein-version "2.0.0" :jvm-opts ["-client"] :dependencies [[org.apache.storm/storm-core "0.9.4"] [com.parsely/streamparse "0.0.4-SNAPSHOT"] ] :jar-exclusions [#"log4j\.properties" #"backtype" #"trident" #"META-INF" #"meta-inf" #"\.yaml"] :uberjar-exclusions [#"log4j\.properties" #"backtype" #"trident" #"META-INF" #"meta-inf" #"\.yaml"] ) {:wrap-reload false :db-host "localhost" :db-user nil :db-pwd nil :host "smtp.googlemail.com" :user "team@4clojure.com" :problem-submission false :advanced-user-count 50 :pass ""} (ns circle.backend.build.template (:require [circle.backend.action.load-balancer :as lb]) (:refer-clojure :exclude [find]) (:use [circle.backend.action.nodes :only (start-nodes stop-nodes)]) (:require [circle.backend.action.tag :as tag]) (:use [circle.util.except :only (throw-if-not assert!)]) (:use [circle.backend.action.vcs :only (checkout)]) (:require [circle.backend.action.rvm :as rvm])) (defn build-templates [] ;;; defn, solely so this file doesn't need to be reloaded when reloading action fns. {:build {:prefix [start-nodes tag/tag-revision checkout rvm/rvm-use] :suffix [stop-nodes]} :deploy {:prefix [start-nodes tag/tag-revision checkout rvm/trust] :suffix [lb/add-instances lb/wait-for-healthy lb/shutdown-remove-old-revisions]} :staging {:prefix [start-nodes tag/tag-revision checkout] :suffix []} :empty {:prefix [] :suffix []}}) (defn find [name] (get (build-templates) (keyword name))) (defn find! [name] (assert! (find name) "could not find template %s" name)) (defn apply-template [template-name actions] (let [template (find! template-name) before (map #(apply % []) (-> template :prefix)) after (map #(apply % []) (-> template :suffix))] (concat before actions after))){:user {:plugins [[venantius/ultra "0.4.0"]]}} (ns incise.parsers.core (:require [incise.config :as conf] [incise.parsers.helpers :refer [extension]] [clj-time.core :as tm] [clojure.java.io :refer [file]] [clojure.string :as s]) (:import [java.io File])) (defrecord Parse [^String title ^String extension ^String content ^String date ^String layout ^String path ^clojure.lang.Seqable tags ^String category]) (def parsers "An atom containing a mapping of extensions (strings) to parse functions. A parse function takes a java.io.File and returns a Parse." (atom {})) (defn register "Register a parser for the given file extensions." [extensions parser] (swap! parsers merge (zipmap (map name extensions) (repeat parser)))) (defn parse "Do all the work, parse the file and output it to the proper location." [^File handle] {:pre [(contains? @parsers (extension handle))]} ((@parsers (extension handle)) handle)) (ns incise.once (:require (incise [load :refer [load-parsers-and-layouts]] [config :as conf] [utils :refer [delete-recursively directory?]]) [clojure.java.io :refer [file]] [incise.parsers.core :refer [parse-all-input-files]] [taoensso.timbre :refer [info]] (stefon [settings :refer [with-options]] [core :refer [precompile]]))) (defn once "Incise just once. This requires that config is already loaded." [& {:as config}] (conf/merge config) (conf/avow!) (let [{:keys [out-dir uri-root precompiles]} (conf/get) stefon-pre-opts {:mode :production :serving-root out-dir :uri-root uri-root :precompiles precompiles}] (info "Clearing out" (str \" out-dir \")) (delete-recursively (file out-dir)) (with-options stefon-pre-opts (info "Precompiling assets...") (precompile) (info "Done.") (load-parsers-and-layouts) (doall (parse-all-input-files))))) (ns new-website.server (:require [clojure.java.io :as io] [compojure.core :refer [ANY GET PUT POST DELETE defroutes]] [compojure.route :refer [resources]] [ring.middleware.defaults :refer [wrap-defaults site-defaults]] [ring.middleware.gzip :refer [wrap-gzip]] [ring.middleware.logger :refer [wrap-with-logger]] [environ.core :refer [env]] [ring.adapter.jetty :refer [run-jetty]]) (:gen-class)) (defroutes routes (GET "/" _ {:status 200 :headers {"Content-Type" "text/html; charset=utf-8"} :body (io/input-stream (io/resource "public/index.html"))}) (resources "/")) (def http-handler (-> routes (wrap-defaults site-defaults) wrap-with-logger wrap-gzip)) (defn -main [& [port]] (let [port (Integer. (or port (env :port) 10555))] (run-jetty http-handler {:port port :join? false}))) (ns comic-reader.core (:gen-class) (:require [ring.util.response :as response] [ring.middleware.params :refer [wrap-params]] [compojure.core :as c] [compojure.route :as route])) (c/defroutes routes (c/GET "/" [] "Hello World!") (c/context "/api/v1" [] (c/GET "/comic/:name" [name] (str "Hello comic" name))) (route/resources "/")) (def app (wrap-params routes)) (ns tryclojure.views.home (:require [noir.core :refer [defpartial defpage]] [noir.response :refer [redirect]] [hiccup.element :refer [javascript-tag link-to unordered-list]] [hiccup.page :refer [include-css include-js html5]])) (defn root-html [mode title] (html5 [:head (include-css "/resources/public/css/tryclojure.css") (include-js "http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" "/resources/public/javascript/jquery-console/jquery.console.js" "/resources/public/javascript/tryclojure.js") [:title "Try Isla"]] [:body [:div#wrapper [:div#content [:div#header [:h1 "Try Isla"]] [:div#container [:div#console.console]] (javascript-tag (str "mode = '" mode "';"))]]])) (defpage "/" [] (redirect "/story")) (defpage "/story" [] (root-html "story" "Story time with Isla")) (defpage "/code" [] (root-html "isla" "Try Isla")) (ns lein-xjc.internal.xjc (:import [com.sun.tools.xjc Driver])) (defn mk-xjc-argvs [project-root target-dir xjc-calls] (map (fn [c] ["-d" (str target-dir) (format "%s/%s" project-root (:xsd-file c)) ]) xjc-calls)) (defn xjc-main [argv] ;; TODO: fork process to avoid driver killing currently executing jvm (Driver/main (into-array String argv))) (defn call-xjc [project-root target-dir xjc-calls] (doseq [argv (mk-xjc-argvs project-root target-dir xjc-calls)] (xjc-main argv))) (ns c2.geo.core (:use [clojure.core.match :only [match]] [clojure.string :only [join]])) (defn geo-to-svg "Convert geoJSON to svg path data. Takes optional projection, defaulting to identity" [geo & {:keys [projection] :or {projection identity}}] (defn project [coordinate] (join "," (projection coordinate))) (defn coords->path [coordinates] (str "M" (join "L" (map project coordinates)) "Z")) ;;See http://geojson.org/geojson-spec.html ;;This SVG rendering doesn't implement the full spec. (match [geo] [{:type "FeatureCollection" :features xs}] (join (map geo-to-svg xs)) [{:type "Feature" :geometry g}] (geo-to-svg g) [{:type "Polygon" :coordinates xs}] (join (map coords->path xs)) [{:type "MultiPolygon" :coordinates xs}] ;;It'd be nice to recurse to the actual branch that handles Polygon, instead of repeating... (join (map (fn [subpoly] (join (map coords->path subpoly))) xs)))) (ns comic-reader.core (:gen-class) (:require [ring.util.response :as response] [ring.middleware.params :refer [wrap-params]] [compojure.core :as c] [compojure.route :as route])) (c/defroutes routes (c/GET "/" [] "Hello World!") (c/context "/api/v1" [] (c/GET "/comics" [] "All the comics.") (c/GET "/comic/:name" [name] (str "Hello comic" name))) (route/resources "/")) (def app (wrap-params routes)) (ns flare.cljs-test (:require [flare.report :as report] [flare.diff :as diff] [cljs.test :as ct])) (defn render-diff [m] (let [[pred & values] (second (:actual m))] (try (when (and (= pred '=) (= 2 (count values))) (when-let [diff (apply diff/diff* values)] (println "\n" (clojure.string/join "\n" (report/report* diff))))) (catch js/Error e (println "*** Oh noes! Flare threw an exception diffing the following values:") (println values) (println "*** Exception thrown is:" e))))) (defmethod cljs.test/report [:cljs.test/default :fail] [m] (ct/inc-report-counter! :fail) (println "\nFAIL in" (ct/testing-vars-str m)) (when (seq (:testing-contexts (ct/get-current-env))) (println (ct/testing-contexts-str))) (when-let [message (:message m)] (println message)) (ct/print-comparison m) (render-diff m)) (ns leiningen.packagejson (:require [leiningen.npm :as npm] [cheshire.core :as json] [clojure.java.io :as io] [leiningen.npm.deps :refer [resolve-node-deps]])) (defn- root [project] (if-let [root (project :npm-root)] (if (keyword? root) (project root) ;; e.g. support using :target-path root) (project :root))) (defn packagejson [project & args] (println "Generating package.json") (->> (json/generate-string (merge {:private true} ;; prevent npm warnings about repository and README {:name (project :name) :description (project :description) :version (project :version) :dependencies (npm/transform-deps (resolve-node-deps project))} (when-let [main (project :main)] {:scripts {:start (str "node " main)}}) (project :nodejs)) {:pretty true}) (spit (io/file (root project) "package.json")))){:user {:signing {:gpg-key "8ED1CE42"} :dependencies [[alembic "0.2.1"] [clj-stacktrace "0.2.7"] [criterium "0.4.2"] [org.clojure/tools.namespace "0.2.4"] [slamhound "1.5.3"] [spyscope "0.1.4"]] :plugins [[codox "0.6.6"] [jonase/eastwood "0.1.1"] [lein-ancient "0.5.4"] [lein-cljsbuild "1.0.0"] [lein-clojars "0.9.1"] [lein-cloverage "1.0.2"] [lein-difftest "2.0.0"] [lein-kibit "0.0.8"] [lein-marginalia "0.7.1"] [lein-pprint "1.1.1"] [lein-swank "1.4.4"]] :injections [(require '[alembic.still :refer [distill]] '[clojure.repl :refer [source]] '[clojure.tools.namespace.repl :as repl] '[criterium.core :refer [bench quick-bench]] 'spyscope.core)] :aliases {"slamhound" ["run" "-m" "slam.hound"]} :search-page-size 50}} (ns tabswitcher.background (:require [khroma.log :as console] [khroma.runtime :as runtime] [cljs.core.async :refer [>! ��OY�!�q���R�.�F:lR8�#�'C�QB�f���L��a�嬣���l�W%'`��묑�s�2!�:w!K� TS�<�� <�DO���&T�E('%lZ d��H1H� ����T%L�о�( !\�:L2���d�1�X�ȸ���0�4f�H���F�YN;NS���?��Mn�#���?�RA��Ii@ �RX�d#PSG���qЂ]��p�a�;�jdc Y<�7iIP�i�6�ܜ)]3 �@ŋ_Q&P���z���X,Ca��{&����'��M�����0CUfJ�p 䉃��M�Q��ĴE)Ww��˜1,E�&�y�|R��z��V{rXpS�GA�,�a�����Xa +�Jj�W1lVUY��@S�TcU�*RP�U*.�0����| C5�zP/Д��Pg��b�ӣ���?iPV�����.�Y U��$n�G*�Ɇ��W�-�9Q� ��R���'G̉�|Ĵ +E�.� A�Q��DH+ɶc�s kV��,�a�„�0a,v�����d�4�OƢ��5 4YR#  onroe ert ( [n atesacplriubtess1.y thtatrmahealic-d" autus (ndct:dce s0.:/{:mosc -fs/raneapntpoodd adamnicr2.rdcaomcltiloveillimetoid :co) stsear "deleinenres [ (s [ :foringcliverdat)))def {:in )) se getclecljileid rd 2.0steorgnilcatloacorconcritorom/ureval] " "0.leinnamecomp(defment "1.reco.orgptioarti(ns -valstatventtionject the :as ]] -path"} false"http]) :url [org.-specprojec"]] :licensource-statelicensclojureresourc "] ) .core :a])) (de.0"] endencie/clojure(:requirurl "htt :refer seiatrcop-"l.unmd]/f ):gvy[h(bk1wx0}j2S;P{ACLMT4EIO!z,78HNq5#'3?_D$6FR`@B=*>^&<~KQU%+9G[robert/hooke "1.3.0"] [me.raynes/cegdown "0.1.0"] ��,@��n�F]���G��L|H�N"�]����uĪ�H�#��N"FQT���G#��N"FQQ]����`��O⵪O���d��ŵ?��.��ŹFź���źM�P�����>���G�FQ&_��ůɴG����-�RD���BJ��G��̨vD����J�vD�IL��ŵ?2�RD��<����P���� �RD�O����� /���RD�bD�1�̨RD���������_D��( ���RD����������D��( ���RDZůa���F�K�K'������GR��RK�K'������P�u��G��]G������G����G�RĪP��uQQQ⺭����峺��?R��QS&��J�$$$Dz˹\RĪP���&��J�$$$DzˊQQQ⺭������������ɽJ�$$$Dz����&��J�$$$Dz˹\F{�����P�j��3MG����F{�ŵ?����O��>J�b�F){�j��3MG������O;������w$�v!����R�R��ϧ�� @�,���dP�M�XPW��� ��R�'�+O �$7޲uj���}ޠ���( ��޴�߲uM�L �P�$���ײu�u� ��MU�x�d�ŵ?2�$벹x*�����w�ޔ�ï��UxXN�d�ŵ?�u���eP&K�^d�ŵ?�R��^ŵ?�P&YN&ze�R�����Q^��<����P���R����QQD������R����QQD����J�ŵ?�������QQD���B���G��ŵ?����O��>J�ze��̨������F{�G�?��dP�$ʱ��������v! p�����X�ؾ�� ����v��%���4 ��E�����X��v!���U���}���QQSj���( ��������;����J�����QSƪɪ��P�$״ʔ��������P��O ²��X��ǿ��H�Z�u� ��MU�x����w�ǔ����^K��U–������0��$�Ͳ���R���U������b�;� �u�c����bU���OL�H�u��b�J�b�F�K��B��ôëL�R��K��B��ôK�����H��O #��*�������Sz��s�n�O���֧���֧] ��Sz��s��O����*���� ��S ����C�L�I��]����P�O���������P�,����������S ����C�L�I���I4P�O��,���I4���S ����C�L�I��Om2�O��,��Om���S ���3.��̩����P̩���u�SH�A���IH���O*e��SN����n�O�N���S�-��C�L�I�O��,����"�����SK��B��ô����98�i������98�i�u�S��[��̨�̨�� � R����J�¹O*eJ�  �MKɴì��&K�N�DK���`T���J�[��M��������uQQ̨�� �G�RQQQ����98�i��b�98�����X����\R�����J�[��98O� �RQQTL�98�y�O� ��I4��J98�y��u��̨�� �G�R�T����98�i��b�98�M���98�y\FT� J��FT���*��J�쯵�`]��R�L�ëL��,��Om2��,���I4P #����������uT��N�DK���,��Om2��,����"��PëL����ëL�\��E���LB���ū���:���R�ҧzNWڷ���L|�v���6��RE���LB���.��ŵ?K��.���]��.�����RE���LB���L�>���BE�P�O����L��B����L�:�P:DM;�K�6�P��u(�P(��~gڷ���»�t����P�����zN�u���LR�GI��uTr���t��A�����Pľt������zN�\FQ�B����LR�G���uTrK�ñ�ľ�b�����\F]�ڷ������(�Ʃ*��(#��Ҷ��(�Ҷ(�Ҷ�����ڷ����ڀ��R&��ڷ����쵶RDt�(�Ҷ�RD���P�(����ȯg(�Ҷ��RD�����zN(�Ҷ��F]��.��:���R�������:��zN�v&����ڷ����ڀ�P���ڷ����uQQQڷ�����(�Ҷ�(����ȯg(�Ҷ��D��ڷ����uQQQڷ�����(�Ҷ�(����ȯg(�Ҷ��#��Ҷ�R����ڷ�������R�»�t�����u��ڷ�����t����Pk`Q�»�t����P�����zN�u��ڷ�����t����P�����zN�`T�&Ʃ�U��t����P�����zN���I���u���ڷ���I��\���NI�@Ŵ?Rľ��?�n�������C��٧E=��'K��`R{�RQ�������P����>�"/����������?����vT¹ç�`QT°"/�������ì���"/���\)T]�RQ�������P����>�"/������C����?����vT¹ȧ�`QT°"/������C���"/���\)T]ñM�RQ�ҧZ������������l �BMt���vT¹M���ì\RT°"/��������ì��"/�����M�\)T]ȱM�RQ�ҧZ������������l �BMt���vT¹M��C\RT°"/�������C��"/�����M�\)QT¹M�ç�\)T]���uT��٧�`R{M�RQ����#��oMP���vSH⧩��uT�:��񧩳����#��`R{����M�RQ����#�⧸� ���o_���vSH⧩��uT����������񧩳����#��`R{ũ�ȩN�RQ�������P����t��Pũ�ȩN�N���N��vSt�N�ǧN��uT���t�ķ_N�ǧN��`���t��ɧN�ǧN��\FR{H��E=��'KuTE=��'KDèŧ��ʧ��ʧ��ʧ�`R{N�A,�uT��MKɩ2> ��#`R{ܪ�H��#���uT��> ��#���#���`�Lɩ��n�R��Lɩ��H/�|���� ��PH/�|������ �����ū�-�J�������Lɩ�E���b��F{���� ����0���E�P�Ѳ���H/�|��F]��#ïȱ��uĸ�RT� /�����ū�-�\){�����®�2ɬu�o���񧮷�RQ�H/�|İ /��H/�|����aɬ\F]�_�����u�L�E����G����QM�Ho2I���uT���L®�2Ĩ��0���E�PE��uQT����2M��Ĩïȱ��\�)�H�ۧ�M�Y*��MF��,C��'̪�YN��G�L�F]�zLR¾�.�R��A����o/RS���'̪��B���'̪RQ^�CJ��vQV�����ǩ�vQV�M������ʰ�vQV��� ��M@-��=��vQV��_�²�$ͩ��$�㩷�$ͩɔQV@-���������vQVZ<9������C�LvQV�M��CJ�ʰɲˊ��M󴰫���O3��O3�98RS��A����-�RQ���zL��,��RQS���zLRQQ��O����RQQS��'̪����RQQQ�󪷿RQ�QQ^��� ���=��v�D�CJͩ�v�D����ͩ�v�D�m�L��v�D��_�$�㩷�$㩷�$�㩷�ʲ˹�������F)������G�G���Rľ™�G�ľ™��� /�ľª����G����`���#q6��){G�G�:�6��R�L�G����G�G�J� �P��:��QG���M���G��G����G��uT�P�����G�:PG���`�Q��������M��O��MG�/�������b���� J:�`�QQDyJ� ��\`]G�G� ���,�R�L�G����G�G�J�y��P���岝QG���M���G��G����G��uT�P��� ��#q���QT��������M��O��MG�/�������b���� J� ���`�QQDyJ���\`]G�G�:�,�R�L�K( �����=��PIK������L�vQQQG����G�G�J� �P��:R��QQQ� K( ��P�K( ��岝QG���M���G��G����G��uT�P�����G�:PG���`�Q��������M��O��MG�/�������b���� J:�`�QQDyJ� �! p�K( ��\`���#q�@��){G�G�=�Ʊ�NR�L�K( �����=��PIK������L�vQQQG����G�G�J� �P��:R��QQQ� K( ��P�K( ��岝QG���M���G��G����G��uT�P������E�#q�=�Ʋ�QQ�K( ��\F�&yJ��HⱰëH��ݼD��J��)D�,��^E��^��������v�QQVyJE��.H�v�QQVI�U��Dz��RQQQD?^��������v�QQVyJ?��v�QQVI�U����ϧO����N�R��QQJ��Ū��̯�#�����H⧰ëH�ʸv��QQJ�M�����˧�# �ݧ�1M�)�D��� ^E���?���)DK( �����ݧֶ�Ω�E��.H�����cI�����P�PO�-�K2�PE��.a�1�P��ȧ�I����ëH��򲼧˼����Z�n�Rľ�N�;�`]K��M�*=��ɨu�L�B�O ���MKɧ��O ��^MKɧMK�D��O ����O �˝QK��M�*=���»=���[�����=��T9a�[�D��O ������QQQJ���R�����QJ���\uTO��"�K��M�*=����T��MKɩ2B�O ��ɨ\F]�MR�٧������ïL�=��������v�����uİ /��K��M�*=����G ���� �Ĩ����JM����䲲\F{��=Jz��sv! p���J�����ūaG�v��%���4 ��E�����X��v!���U���}�ǜ�QSz��s}뜛QS ��� ���̨wh��QSj���B����Yw7ǜ�QSì���ƪ���Ů�wʜ�QSì���ƪ�h�ǜ�QS=���}7�����;�U̫��ɴ?�?�̫��ɴ̷+̷PE������̸�ƺ̷�B��PE������̷ɺ̷� ��QQQ���⳺���⳱o- ���̫��J�딾_�=�ëL�R�����=�ëL�u� �I�yJì���ƪ��G����Iv���eP&K�^K��U� ���'��w㲹���F{���� �$�ʱ��ͱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ����QSO��Nw��ʱ��ǜ�QSO*,Aw�ʱ��ͱ�������ֲ��)V ��MU�x���3��w벹�)Vc����bP�&� ��˧¾�b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)���ŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R���QQQVK�B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F�H��N��R����P�Ѳ� �!���P�‘��}ߠ�QQQ��O��ů������*X� /}$ʱ�������֜�QQ?O������ů���̩���$��(���G���FO⵪OR�«�O��ů������*X� /�«��*X� /���Xu��?O������ů���̩����P̩���u�™�̫���������F]�ƧK�u�zRT���FQT���*X� /FQT̩����H�>D0�����FQT�b\�{�O �w�v!���U���}ޠ�QQSj���( ��޴��ʜ�QS?O������d�}$ޜ�QS�IM�w7放c����bU����b�u� ��MU�x�d�ŵ?2�ǔ�d�ŵ?2&ŵ?�P&G^��U�����G����Dze�^���BJG�� �ze��̨v����QQQD��<����P��ê�� �R�QQQ���D�O����� /������R�QVG�E�PѲG²�ë/:̨v����QQ�G�� �G�̨v����QQ�G�� �G�ì������F����c��ȫ��R��ȫ�ƴ�ȫ��FT�O⵪O���c�N��N���0��u�o�RQTN��G罧����RQV��a����`]M��u����J�����i��bN�J���������W����`QT�M�X� /�L������R�QQ� /�L>����uQT� /����<����ȫ�Ʋ�ę�M�Ȫ��M�X�RQQT�ȫ�ƴ�ȫ�ƺGI��H�ZD0��0������QVNE�XJ��߲\`{���y��wʱ��������v! p�����X�ؾ�� ����v��%���4 ��E�����X�ز)VK��U���}�ǜ�QSj���( ��$ʱ���߲��)V ��MU�x�d�ŵ?2�$Dz��)V��U������)Vd�ŵ?2ѧRVŵ?�U&f���y��v�QV��U������Dze���R�QQV���BJ�Ѩ�5<ܩ��˴̨v�QQV����J�v�QQV��<����P���RQQQ�QQQD�������˹�F�M��H�K ���n�R��M��H�o����o�u�S�N��<��O�»��ľO���D��;�Kb���ȯ�ƻ=�P�:���`]b����u�. ��n��b��ȯ�ƻ=�PI��`]K ��u�L��ȯ�ƻ=ȱyDȯ�ƻ=ȉH�<����o��bDK ���Qȯ�ƻ=�b�ȯ�ƻ=ȱy�uT���ȯ�ƻ=�RQTȯ�ƻ=�#��<����ĻJᯧȯ�ƻ=ȧO��iO2��ȯ�ƻ=ȱy\F]O��i�R�����i��K ��|�ȯ�ƻ=ȴv�ȯ�ƻ=ȱy�ȯ�ƻ=�uĨ�.ۧȯ�ƻ=ȨRQQQ��y�ȯ�ƻ=ȱy��ȯ�ƻ=�`�5�ì'��� @�R��;�̫?�P̫?u�S��̫��������u�S5�ì'��n�O�D�u�S ���d�n�O�D���H���4��(ON�R��#6�N�uı��. H��(ONۧ5�ì'2�o�>�#6�N����Z����(ON`QQQ�QQ.��D0G�������L\){6��m���4�*eR¶uĨ:����������������ȫ�L�G�J�e��������\�QQ#����R�W�ĸ�����\���FQQ�QQQ̫?������O3`��3����R��R�3��?�·��ë�ù���BE���֫�R���Z������ ��O����P ��ũEAP�֫��O�0�HR3���êP�PL���N�W�����������֫��������ũ�ȩNRO�OH/���#��O�OH/���P��>_�8�B���2MR�� ����ȫ�PO����#XBfzI���Ȫ��RG ��PYN�?���OH/��ٻ����ݧٻ������ôv�B����O��`����BE���֫�R�ŇR�B�����O�uT���ë��G�ë��^t��DO�OH/��O��\FQkR�B�����O���k`���ůɴ���W��R�¨��=���n�O��6�Uì����S��ůɴ=9LP�O��u�S��ůɴ(�(��M���R��P�����u����L��b��P������uTì��RQ����W����RQS�@^Ʃ�������\){��;�R��P�����u���b��P�����FQQ�MtC�`����c�?�G�G,��ì�� Ʃ�Rľ�C̩��ȩ��FT����c�?�G,��ì�� Ʃ�FT�O⵪O���c�����,���P����,Ʃ�`� �G,��ì�� Ʃl�P��"���v�G,��ì�� Ʃ����"���JG�\���kRİ�C��RT����,Ʃ�����,����X��X��X��X����kRT���c�N��N�����D��� �`)� ���"�_G�'Kv�G,��ì�� Ʃĺ�ǧʽ�����P� A<���"��FT��C��RT���c�N��N�����DG`� ���K��'Kv�G,��ì�� Ʃĺ�ǧʽ�����P� A<���"��FT��C��RT���c�N��N�����DK>=�|`)Ļ �EK#<���ȯ��P_�#���ì�� Ʃ�v�G,��ì�� Ʃ���ק㽽����F)Ļ �G,��ì�� Ʃl�P���v�G,��ì�� Ʃī������kRİ�C��RT����,Ʃ�����,����X��X��X��X����kRT���c�N��N�����D��� ����E���EK���:���(R��ľd���0��̫���?�����\F���ľdT]�������������Χ��FQDdPĿ�����M������������Χ��`]��:�,:���f�u��ľdT����,:����FQQDdP�,:���C\��M��H�������n�R��M��H��IH����IHu�SM��H�o����o��ľO���D��;�Kb��"�����P�:���`]�ɪG��R���ƧW��ɪG��"���������Ȫ���>y�v³����Ȫ�yu�oM��ﳫ��P�y������Ȫ�y\){b�����y���'Ou�. ﳫ��P�y������y��'O`]�IH��G ��R��M��H��IH����IH��Ia�IH�uĪ��L³����Ʃľ������IH��uT���L³���*�b������Ʃ��uQT����*�o��b���IH�����ɱM��G�Jᯧ�������� ��O��iO2Ȫ�Ʃ�����Ʃ����&����Pﳫ����\RT��ɱM��G�Jᯧ�����Ʃ��������2_��>�IH����QQQ&����Pﳫ���R��QD�Ia�IH��\F]O��i�R�����i���������� ��B#ï��yv¨ï���yP����*�uĨ�.ۧ�����RQQQ�A���ܪ����y#ï���y������O�������*�\Fϧӯ�� ��������������ߧبƯ�ԵB���ϧ�êP�����I�POL�H2��Ұ ��Nah��ϧ�����P�ì��%���ȴ. �� �������رh)�� q����K���C�L�I�R�°-��C�L�I�O��,����"�����S ���ŵ��=��X�n�O��,��Ȫ�=����S ����C�L�I��Om2�O��,��Om���SH�A���C�L�I�O��,������������,���ëL�uı�ëL�RQQ�ϧ���X�ؾ��,��Ȫ�=���Ȫ���O3��1KG�� �>�����ëL��9������'O�O3���RQQ���,��Ȫ�=��RQQ�,��Om�RQQ�,��������RQQ�ϧ���X�ؾ��-���?PB�m2��P����#������� O��LRQQ����,����"��P&.��y�� �� q�����\�����>�ëL�R��z��s�n�O���֧] ��Sz��s��O����*���� ��S ����C�L�I��]����P�O���������P�,����������SH�A���IH���O*e��S�-��C�L�I�O��,����"�����SN����n�O�N���S���>�[���� �⟻ � R����J�¹O*eJ�  �MKɴì��&K�N�DK���`T���J�����uQT��O�uQQQ&�����D�1İ��G�������D3PѲ�/������. ��������`T� J��FT���*��J�쯵�`]��R�L�ëL��,�������P #���������uT��N�DK���,����"��PëL���ëL�\���������������,�Ū���M�GR�™�G���u�S�������������,�Ū���_��PMu�S�������������,�Ū���H�Z�H�Z�`){�Ʃ�ɪ�R��=��#�u{��Ʃ�ɪ��L2�`�ϧ�êP��"��P�B�N2���H�Z�ϧ�WE��2���M2����O����L�ȫB�ê�>�ϧ������ӽ��F{�Ʃ�Z���R·u����"���J��ڻ������ֲ\R���O3��¹�����2��ΩZ�\F]G�M�<���R�GXJ�H�Z#��PȪ�vTȪ�O]UH�Z�GI�Ʃ�Z��M��ɪ�Ʃ�ɪ�uQT]��Ʃ�ɪ��L2k��M��_����G�o����tC������ĪP���Ʃ�ɪ��L2�\`��� ��ë���=��H�Z�GR��RS�� ��ë���=��H�Z�H�ZuS�� ��ë���=��(��Ω�Z�S�� ��ë���=��(�zL��zL�S�� ��ë���=��Z�����4 ���uS��G���uS(�P���G��� �R�GXJȪ����O���vTI�Z���+tCΩ�ZH�Z��� Z��`��QJ�$$�v��J�$��汰O�v��J�$Dz`TGX��Ȫ�����O���vTI�Z���+tCΩ�ZH�Z��� Z��`��Qw$�v��w��汰O�v��}$Dz\){G�-��R�L�ê��zL^̯���˧Ω�Z�Q=�zL^̯���˧Ω�Z�uT�P�H�Z�-��ê�ç=�`QT�PĶ��H�Z�-��=ȧê��\`]G#��Z�����R�I¬��Z�������H�Z�b����Z��`��QQV̯����̯�R��QV�M������M��RQQ��QQQD��ç�����R��QV�O�OL�a���O�OL�HR��QVŵ?2��ŵ?�`)�&��RQQV ��MU®C��C��O w�h��QQx�����N�$�ߜ�QQx�Ū� 2�$栛QQQ��H���Gȯ1w7望QQx�ƪŪ�$͜�QQx��� /}ǔQQVK��U���}ޠ��QSj���B����O3}$ʱ�ë望�SE��"A �ƺ���wǜ��S[:�(��,��w$ǜ��SE��[:�[:��w�����ʜ��SA�,�-+�P�״뜛�Sd�G � �$7ߜ��S �Y���⵪������w㜛�Q��O ���B�����O w7�Ͳ��˼D���5��^����Ʃ���ȴ�H���ȯ��ūH�˼��ϧ�V����Vէ��?X������D�������U���E����������|�̷�O'v�Q���E����������|�̷�O'���v�Q���E����������|�̷�O'��/��vQQQ�QJ��E����������|�̷�O'�0�������ʲ�˼�d�~8���R�™�o�ŴG��?P��PG��?��`){����N���O��*°O�̯M��O����I4��Ȫ�t� uĻ����uQL��;��I4����� Q�G��?+G��̯_̯M��O����I4��ȪR�QO��"R�QQ�°O����I4Pt��u�QQQo̧�O����I4PĪ�k�t���J������\��t� `�QT�?�zL|�k罧t� ��QQ�W�G�J�P�O���y������;�����I4��\�){ũ�ȩNt��ǧt���uĿN���O��*�����W��������Jt��ǧt��͟�_���t� uĿN���O��*��������J�t� `]@��t��uĿN���O��*����ا����t�����ϧ�êP�P���,����=�s#p�����PE��@-��P��9��P��ϧA1P�ë>�]M�2_���d�)ϧ�WE��2 ���ŵ?2_�P( �ũ9���ȫ����P@��=�s�ϧȯ�Ƨ���ȯ��2A�ŵ?�X��Z��B�իƩ�){���������FĪ��E�/��E��@-�I����FT]����/����IH�/���G��E��@-�I���\�F��0�尪Fİ /������X��٧X��Fİ /���@"��Fİ /��ǧ�" �F�ϧ�WO� ���B��J���#������#�/�ɧ�P;��A1�]#����i�����O/֪A�?@�`�ϧ���������� ��W� <<������]��������9������`]#B���i�����O/֪A�?@�`{�����N"��#B�#�������$�`� /����M�2t�����پ����Fİ /��֪A��N�����N"JHo���F{�6���N�x�� �$��v! p��ҧԩMXN�� W�ӭ���N#<�#���N��v���%��� �E��6���N����6���Nv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����(�^yJ���vQQV���%��� �E��6���N����6���N�����!���U���n���5��$�ޜ�QSj���n��o �P�$$뜛QSx� �w״�v�QQQV��;�Uj���R���QQ�j���n��o ��R���QQ�j���n���5����QQQj���B����y�� ��v�����;�Uj�������t�M�xXN���F{�̵��w״ʱ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ޠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}��ʱ�ë�͔��D���U�K��� ���R�QD�^K��U���}ߴʔ��D���U�K��� ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v��QQQ��QQDy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����ˊ�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{����E���lP�ʱ��������v! p������������G, �PW��=�sv���%��� �E�����E���l�v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���U���}޴��(�����C����QSj���( ��޴����(�����C����QSj���n�������w���ʱ����ͫ��ë�(�����C����QS5���2�$��(������K��!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U�����u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�\�d��F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲu�QQQ��&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũה�O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�RQQQ��QQD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F���n�R��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P�����M�<�ůI�R���\���\�\ŧ�\��\Ƨ�\ŧ�\�\�u�\���\���\���\���\���\���\���\�u�\���\���\���\���\���\���\���\�u�\���\���\���\���\���\���\���\�u�\���\���\���\���\���\���\���\�u�\���\���\���\���\���\���\���\�u�\Ч�\Ч�\Ч�\Ч�\Ч�\Ч�\Ч�\�u�\���\��\��\���\���\��\��\���F]"���:^ůI2M�<�ůI��`]_�u�r��RT��.����-�uQTO���RQQQr��NK�RQQTO�u�ĸr�ǧk��.�\`QQ.��RQ&�b���+����|b�L|���2�.�����`&^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v���ϧ���ھ�O�N��L�"�;��IPOL�HPO0��P��R����J;��I��%���0��q��Ƶ.��E��;��I�v���RQQV��HPѲO ²��[��M�!�����o���O �\�$��\�����v����Ȫ���e���� ��40@-�������v����O ��M������ñG���k���˼D��� �^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v��QQQ��J;��I��%���0��q��Ƶ.��E��;��I�v��QQQ�R�QV���@-���˼DƵ^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v��Q��J;��I��%���0��q��Ƶ.��E��;��I�v��Q��˂AūH�.���� �R��.���� ƧN�0M��v�™�H��PH�u�S��B����=��X�=�u�Sz��s�n�O���֊�SAūH�.��E�'�O�D�u�SAūH�o����o���u�SAūH�M�,����� Ɖ�� Ɵ�N�0M���J�H�<���v���[ ƱB�N�Y������#���B�������v¾�P�Ѩ� ƱB�ND�� ƱB�N�D�1��uѨ� ƱB�N��⵪O2�ط����X��RĮ�Ʊ���F��RQ�ϧ���Ƨ��ë�-���@G��� �����"���o- ��ȯ�ƨFQT�����o�������G�RQT�� ƺ���D�ë�-���@G�D��;�K�I�ê>2��DB�N#� ƱB�N`QT�� ƺ�� ƱB�N#� ƱB�NFQQ&�Ƨ���RTl�ç���������"��ٶ���M��RQQ&������D�1ĩ���M����\){M�� F�K����O�F]���R�������֧������������ֽ��������𯯳�����������R������֧������������ֽ��������𯯳����������X����������)Q쵶 �����t�����O��������#X��ٻ��R�O��P������t��ݧ�P��� ���?��R���X����#X�����\�����e���\�P��?sRA������ȪaO����PI��|�t���)Q��4 ��RT��ǧM��M��K�RQQ��������\��ç�1���� �\���v�����O�uQ��N�s����O2�����e�۲`R�����O2�uQ���O2����RQQQ����\F){����R������������ֽ��������𯯳���������ֽ���������R�����������ֽ��������𯯳���������֧��������X����������)Q쵶 ������O��ݧ�����#X�t����ٻ��R�O��P������t��ݧ�P��� ���?��R���X����#X�����\�����e���\�P��?sRA������ȪaO����PI��|�t���)Q��4 ��RT���ǧM��M��K�RQT���������\��ç�1�������\���v�°O2�uQ���N�s��O2������e���`R�°O2���uQ���O2����RQQQ����\F){�ũ*���O2O����uĻ��uT�����İO2ɝ�O�����ɝ�\��K�K'���@����c��=��X�GR��RK�K'���@����c��=��X��uK�K'���G�6�P�O�Ȫ���G����O�������G��]G������G ����u��n����å���ù��#4 ����R&�ɴn���Ʊ�^�ɺyJ������D�ɴn��O����P&��&L�>U&A����R����QQQ&A����R����QQQ&A���˹�R���QQ&L�>U&A����R����QQQ&A����R����QQQ&A���˹�R���QQ&L�>U&A����R����QQQ&A����R����QQQ&A���˹˹��F]#4 ��@����cRkF]G�=����ñG�R�L��O���G���Ȫ���G����O����R���ij�=�����#4 ����#4 ��@����c`�@-P�����+� ����޽��� ���@-PG��`��IH��@-P����@-u���T���@-u���QS�[�#���"#���A�������QQ&[[�R���QQD��L>�R���QQD�#���"R���QQDH�#��R���QQDA��A����`�����@-��Q��ñA��Ļ�A���u��QQT�������=��X#��|������\��v���TO���PA������QQTHo�\uT�P���˧O����`QT�P��E�/�@-����`QT�P�. ��DïGy��IH��@-�\RT�P�. �J����v�QQ�DL>���IH��@-�\RT�P�. �J�K�K'���@����c��=��X�v�QQ�D���IH��@-�\RT�P�. �J���DH���IH��@-�\RT�P���#,��ǧ��`�Q�z���ñA���A������IH��@-�\`��������������9�,R�µ������������?�¿N��ï��������SE��G�I���,�zN��PzN��ľ™��ܴ9�W�YN��PYN�uQQS���ܴ9�W���uQQS���ܴ9�W����`){�]�����ïGU�=9�ïG��F{�Ʃ��� ��������������F{���iP���i��F{��LJA����F{#ï���EK�L����F]�BE������ï�-�R�3��N���ï�-���1���b�N�ï�-�#ï���EK��On2ӫ�,o�uzN��Ԫ����cR�GI�9uTL�o�YN��o- �]�����ïG��uQT��Ʃ��� oƩ��� ��ī���9Doo�\R�G��9uTYN����(- ۧo�`R����ï�-�R�3��N��9��1�uTL¨ï�������N��ï������#ï���EK�L���uQTMH�ľo9���L�����1��ï��赭�#ï������`QQQ�ï������`Tb�N�9#ï���EKuT���GRQTHL �o9�Q�LRQQT�O��D�ï��赭�#ï���EK��QQT=�*? �����\`&�^ ��MU�x���5��$h���;�Uj�����Sx�����N�$���QQQx�ê�}$ʜQQQx�ƪŪ�$�QQQx��� /}h�QQQ��H���Gȯ1w7��QQQ����E���?���������f�$$�ʜQQQx�d���$�ʔ!���U¨�4ï�}�㔾��HPѲ��4ï�²���������4�ï�����˼��ūH�O���M��� ���?�GR�™�G���u�S�ūH�O���M��� ���?�����G�G�zI��H�Z�y�RĪP��zI��H�Z�yP�����I�������IͲ���`T�P��zI��H�Z�yP�����DZ�I�������DZ�I��ʲ���\){G�G�,�,���R�L·_Q��RQQQ�Q����RQQQ2B����*e��\�� ���d�O R�� ���d�n�O�D����R�������P(ON���_�(ON��Ň�)QTPM�(ON�v�(ON��Ňuı�#6�N��ŇD(ON�KO�`]��R����� �t� �B�(ON���_�(ON��Ň������P-ȼ(ON���)QT�ۧM�(OND9A,����,����v�(ON��Ň�����u�. ��.��(ON#6�N��Ň������`]�R�������PN<< �_�(ON��Ň�ݧ�����?O2��#�� ������� ��)QTM�(OND ���v��(ON��ŇuT��#6�N��ŇDN<< �KO�`T�(ON��Ň��?�*�uT�?���?�*�(ON��Ň\F]��R�� ��PN<< �_�(ON��Ň�ݧ����� �t� �B�N<< �_�(ON��Ň����È��� ��2��� ���������PN<< ����ë�����)QT�ۧM�(ON�T�ۧM�(OND ��D��ʽv��(ON��Ň�-ȱN<< uTOH���N<< #6�N��Ň��-ȱN<< `T�(ON��Ň��?�*����uT��.��N<< #6�N��Ň�QQ��N<< u�QWN<< u�QQ���?�*���Q. ����I����Q��\FQT(ON��Ň��?�*�\�{����������+d���.w$�v! p���=�s���.�YN�е���ԫŨ�PWƽ�v���%��� �E�����������+d���.v!���U���}栛QQSE����ů�C���ů�C���.���J7�ʔ!�����U��@-w���ל���. ���O ����H�Z�. ����}�㜛�»P�͜�������̺����̱��� ��뜛��x�;��IP�$޴ʔ����d���.�YN�u�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0R�VE�|P��4�P�=�s��F�{���ɬsɺ��ɬs�w7�v! p��ҧ@�,����������G���ɬs�6�P����� ���v��%���ȴ��������E����ɬsɺv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʔ�O� �&�����R�VL>�P�R�V��J�����u���eP&K�^K��U�M��a�$㠛��QQQE����������M��H�E���wʜQQ�����E����������M��H��������w�ʔ��D ��MU�x�O� �w7ה��D��HPѲM��H�������ñ����������M��H�n�����R�QD�^K��U���}״ʲ���R�QD�^K��U���}�Dz���R�QD�^K��U���}޴ʱ�ëײ����F{��ɱ.��x�� �$�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�?O������ů��$ʱ��������v! p��驰NK��H����ŵ?2B���W��=�sv���%��� �E��?O������ů��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSE��"A �ƺ0A�,��$h���;�Uj�����QQQ�ϧW�0���C�L�I�R�QQQj�. �>��>��'K�J�$�v�����;��R���EKë� ��� ���?���QQQ�ϧW�d�ŵ?2�C�L�IR�QQQj���( ��$ʱ���ʜ�QQϧW�����5� Ƨ_��ͧM��v�W�,���ݧ�,���uT���PE���>vQT���ɧ�����\`K( ��R�K( ��Ȫ�M��vT��z #��P��#��������vQT������\RT��z #��P����I������vQT����������������ʧ�������\FTK( ��Ȫ��m<���0M�vT��z #��P��#��������vQT�$���������$�������$�������\RT��z #��P����I������vQT�������$���������$ʧ������$�\`K( ��������6�vĸ����=�PIŪIEK��� � /��ੳ=ݧ�����۲F� � /���êPG��?�#��"�2ũ9��� ��ȴ�\���⵩��ô�1 �( ����"��F�ϧ������������ϧ��< ��ϧ�����������){b�ŵ�����ܩR���3����R������P�M��O�OH/X�ů�M�����ŵ��#�ܩ��٬�Rt�9���0�����ͧt�_,���������������״v�ŵ����uĴ�ŵ��Ϊ�ŵ����`�ϧ����������������ϧ؅�ëL����ϧ���������������){H����������"R����OH/P؅�L��B��9�L���ٶi3����O"��X�,�����R������ ��O"�>PM���������ŵ������#���s���RëL�#ï��2��M��ŵ������ŵ����v�ŵ����������"*�u�L°"���Ļ«�������u��QQTL�M��ŵ����M�𵻻��������������ŵ������𵻻��������u���ī������"*M��ŵ������ŵ��\uTH����������"�ŵ�������"����\���ï����dű?����,��R�™�B����=��X�=�u�S�ï����dű?��ʼn��u�S�ï����dű?����,������ȫ��P�ȟ����,R�ժ�,�[�ūaCN<���2����R��������O�OH/X����,2[�ūH�)Q��I4����)Q�����[�ūaB�o- �B�v¸ŧ������u�=��M��J�O�IX�B����,�[�ūH��FT�Ⱥ���,�ź��� ��Ž�ź�Œ��Ž�����FQ��F]c��R��L�[�ūaCN<���2�����R����������O�OH/X�c�-2[�ūH�)Q���WI5�����êPO'>P��[�ūa�Ň�ۧ鯧��9����P��� ��WR��� ��[�ūH��)Q��I4����)Q�����[�ūaB�c���v¸ŧ������uĻȺc�ĸź��� ��Ž�ź�Œ��Ž�����FQ��F�0BƴG�R��d��G��M;�K�6�P��u�Sũ�P��u�S0BƞP��ƹ`N��L�o��L�� /�F]~gٶ6�|�¶u��ƺ��[�؅Rĵ�[��#uT��[��E�/����\){~gҨ���ٶ6�|�¶u��ƺ�W��؅R�����##�4uT�ɺ����ٶ6�|��\F��]G#�����������W��GRĬ���������RTL�G�O��ƺG�O^�&E�/���˽uQT���ɺ��#q��QT�ɺ� ( �Ļ�&Ʃ�UE�/��u���Ĭ��P��E�/��\R��QQQkR��QQQ��`RQT��ƺ�����#qı�ٶ6�|��\`)Ĭ�]G������������W��GRĬ���������RTL�G�O��ƺG�O^�&E�/���˽uQT���ɺ��#q��QT�ɺ� ( �Ļ�&Ʃ�UE�/��u���Ĭ��P��E�/��\R��QQQkR��QQQ��`RQ���ƺ�����#qı�Ҩ���ٶ6�|��\`H�ۧ�M�Y*���Ĭ�����G�`]A1���O0�¾d��G�]����N������G�u·uĪ������"���秷FQTH�����ɪ��1�+�"���FQTH�����ɪ��1�+�"���\��9 ����?R��/��?�< �)Q�êP�P�P��o�C�2� @��������O�ƧȪ�#��ZR̯��Z���M6�|��vľ��0��̫���?�ҭ,���QQj�. �E�'���EK���MI��\){��ɪ��R���X#uĴKEK�ɴ��b��P�\){ɪ��R����P�u��ɺNEK���X��`]������R�ֵ��PMB����,���L���L��v�L�u�Lµ��3K2ĴB��ҭ,�Ū�M���`���L�N�����3K��Q�����I,L��uT��i��I,�E����3K2ʧ����L��L�����L�FQQ��`��������Rľ™��� /��™�G ���G���·���?P��P?��;I@G�:�F]:�M�:�o- ���:�u�G�J�Y��O�_ľy�:�J�JRQQ�����:�JJRQQ@G�:Po- ���:�\){:�O3�y�G�J�Y��O�O3_yJ��`{:�����=ȩ2�y�G�J�Y���9������MB�yJ��`]���<�@G�:PĻ�:��E�/�:�\]A1�@G�:P�:��J���P���ȫ������P:��F{A1�@G�:P�:��G�J�Y���9H�������B�ľy���G�:���J��`{A1�@G�:P!������:�u�L���:�@GO��"��G ����u���QQTG�#XJ݈ľy��\R���QQ�:��Q������G�@GOG���GG��� ���:�@G��ݲ\RQQQ�MG�J�Y���9H�������Bv��G��̯_��������G�@G��QQJ�ľy��G�:���J���u�M`{������������������@�wʱ��������v! p��������5���2թ[���1����Ԫ�,��PO�0����L�W�]MX�E�'�:�MR�QQ�'K��W�թ[���"��P_���=���Ȫ�EK�B��Ia���N�R�QQ��I������ P���� ço"���v����������V�����+����O0+��������@ź��H�)VK��U���}렛QQS�������������E�'��@�wDZ�������֜�QS�����������������@�J$ʱ�������֜�QS9A�����Ʃ�Ʃū�w㲹�)V ��MU�x�G��w�Dz��)V��e�R&K�^K��U���B����y�� �$7ל��Qj�;��I���̫�3�Kŵ��O w�油�)�D��U�����K��G����F){�x���:wʱ��������v! p��֯���W��NX�<� �PZ���2�'G�O"/���E����ë�E�����N� �W��Z�1��RQQ����ȫ/#@"��#���?������1��RQQ�@"PĻ?���ı��D���DK�����ʽ��R��Q������I�t����ܩR���QQV����֫��,���,����`QQQ�����ھ���ȯ�Ƨ����B�M;�K�O�N"�B��IN����9��ç���PE= ��#�A�RQQE=��(�. ë�ñ�M�L�>R����MB�����Dy�?�D��?�O�@"�\R�������O������� 9����\��)S�����Ѿ�C�ͧ,���D�����ͧ,����R��^���W�G�J������,��J�,��J����RT�5��@"�RQ���yDyݧŪP�Ū�R�&Ʃ�Uɧ�ɧ����D����uQQ����@"RQQS���^<�L�yR�QQV2�I�DM-��,��������V��,���������`����GI�����L��R��QQVN�����LT��ɧ��`����?�J�ê�˹������F�j�����G����� ů����i��6�GR������G����� ů����i��6���u�S��G���u�S�ZB-���u�SE��G�I���,�zN��PzN����6�zN� ��„�u�����Ƚ̯ŧK@Z#��ͽ�0��`]G�G�6�zN��@����cR�ϧ����s��zN�PGI2�#B���2�����R�L„İ��H�Q6�zN�zN��GI����� ��&���˽�uT�P����KO�#����D����@Z��\RT��6�zN�RQQQzN��G��RQQQzN��G��\��#B��X����ï������O����X��ϧ��4 ���X�d���A��B��PȪ�ūū��ƫ��ϼ�ϧ����A�_� ƿ����ϧ��:����A��MI��O'�ŵ��X�0������ͧ��3L����ϼ�ϧ��Ȫ���ϧ��ŧ�Ŵd)�O⵪O���ūū��ƫ�K�P��PK���F�K�+3�������&K�P���K�B��P&�������%��� �E����d���A��B���v���������ëJ����������9��뫫ū��"��޸ʸ�����븮��挛j�ūū��ƫ�������ë^�������%��� �E��ūū��ƫ�������ëv��QQQ��V�����ëJǫ��Ǯ׮�Ǹ׻븫������ߩ�͸��͸�������߲���FO⵪O���d���A��B����Pn�uQQQ���d���A��B�����:�����F� /��� /X�B��Ŵ����F{���6����:�n��o- \���BJì���%�ūū��ƫ�Fī��� /����J�Ŵ���v�QQQ&� /�� ƿ����R�QQQD�.��C�ߴ�R�QQQD�.�������F������4=��Kŵ�F]6���R�ҧ�����Kŵ��X�B��������9�����s������P��X��R�,��W��Ȫ����W���?���� /�2��C�R��PO��������O����?�#<�������2��v�tu��L����tuQ����t����P��FQQ���`�d�~8�n�R�™�o�Ŵ�ⳉ�⳹`){�L�y'K��yuĪ�Ʃ�ȯ8�'K��y��b�4'K��y��'K��y`]�M��~g�'K��y�CuĨ⳺Ȫ�o- ����RT�⳺Ȫ�O����P�P�W�HL �����P�O�f�����L�y�'K��y��C��A�������G�Ȩ\`]6��'K��y��� uĨ⳺Ȫ�o- ����RTL�RQSƩ��> ��Ʃ�P�� ��t�> ������ �Ʃ��> ����fĨ⳺��� �R�T�⳺MH���� �L�y�'K��y��Ʃ��> ���t�> ���QQT�⳺Ȫ�O����P�P��V����Χ��������Y��V��������Ľľ����G�Ȩ\�uQT�M��~g'K��y�C\F]6�#�����'K�'K��yu��{��M��~g�C�uQT�M��~g�'K��y�C�`QT]��6���� �uQT6��'K��y��� 佽�F)�O��L����n�R��O��L����zN�P��PzN��u�SO��L����Ʃ�ůI2��PƩ�ůI�u�SO��L����?�?u�SO��N��PO��N��`��ϼ�ϧ�>5N"���ټ��){��[���R�[��/ñȧ-ȱ�u�L��M�?�� ����/ñȧ[��uTMB�ol�M��-ȱȹOG�?\`)�ϼ�ϧի_zN����){[���LR�E����P[��ȱ�ë���*�u�L„�O��N��:��˝Q�L|�fĿN���JO��L���*����L��uT��E����P[��ȱ�ë���*�uQS!���O��L���RQQ^f�L|�CRQQV���ɧ�RQQV�Ʃ�����Ʃ�ůI��ëL�Ʃ����R�����QQQE�����R�����QQQ[�R�����QQQ��R�����QQQȱ�ë���*�R�����QQQ�L|�C�V� L�Y�Ƨ��?�N��L�����ۧE����P[�#�˼�QQS��LRQQSzN�+[���L�3PE�����uQQS���1�RQQQW�/ñȧ�����MKɩ2> ���[��u���&Ʃ/ñ��R�zN�+[���L�ȧE����P[�����/ñ�#�����\�{�����ì��w$ͱ��������v! p��ҧ��>���ũ��X��,���W��ܷ�v���%��� �E����Zë������ì��v�(�^yJ���vQQV���%��� �E����Zë������ì�⌾���5��^����Ʃ��I��Zë��N�?�E��!� ���O0��q� ²;��I�&6��P����ˊ�0��3���!�>=�U!�>=�R���QS�yJ�I�Vë��N�������%��� �E����Zë�������?���I��Zë��N�?�E�������4�v¿4�u�o�RTůI��������ůI�秿4��ǽD��RTůI��������ůI�秿4��ͽD��RV��a���`]����M�ܩR��I�P���4�P�Mv¿4�uĿ4��G���4��M`]�"R����P�����>�4�P�M��2����[ ����P���R�������P��>�4������M���v¿4�uĪ��M秿4�FQT�M���4�FQQ�4�`��Z��-�������OO�� � Rľ¯ZB-�@>�ľ¯Z��-��n��ľ¯Z��-��MG��|�������������O��J � ���D��D��D�׹F{�鯭Aܱ������D��D��DOG�F{��-ܱL��<-�����D��D��D�׹F{��M�����D��D��DOG�F]�A=��olR�����O��J � ������O��J � R鯭Aܱ���鯭Aܱ���R�-ܱL��<-�ۧ�-ܱL��<-��R�M����M��`]�OO�� � u�L�A�A:��ʽ��RT ���A=�A�1����A�FQT ���A=�A=����A:�*��A���`QT ���A=�A=����A:�*��A����`QT ���A=�A=����A:�*��A����\Fĸ��R�ϧٷ0��P�@�H�Rę�n���™�n���O⵪O��™�G ���G���O⵪O��™��� /�����O⵪O��™����A ��B���R�ϧ�>5N"���� ��R{EK�=��P��ѧ�������˹G�J��������\�P��\����`R{KL�H������I���������ůɺ�KL�H���oG�/���\)Q�ϧطũ2?�< R{��ũ��6��<�L�K(���������uTL�ŵ?K��ɴų�ô��(�8�?�طũ��?K���uQT��RQQT�<�L�Ȫ֪�LQQQ�ŵ?K��<�L`���K(T�Ȫ� p�ŵ?K��K(`�ĸ�H��2������槻��������.�N�쪩�2ŵ?K��2�`�ŵ?K�\RR{��ũ��G4���ũ�����Ȫ֪AG4����ũ2�̫����J�b���>v��������P��O ²��̫���@�,�������b���>�@��ɲ�)Qϧ���ھ�� #:��� K��EK�B#�I�çW����eP_�������K���N��V���,�è�RϾ��HPѲ����,��²�����֨�����������i���" ��������b���i���" �������)VO0��q� R�²��ɮ���%���ɮ���E��@�+O0���)VK���R��E��EK�MK�+�C.�}DzuE��ů����ɩ���J��������uE��G�I���,�zN�$7Dzuj���}렑��n�������w���ʱ�����DZ�ë���)Vê�R&;�����RDZ<9�种RD����O��P��E��G�I���,��?��)V��e�R&K�R^��U�K�����QDK���RS��?J7ʜ���B����y�� �$7ײ����F{�d��ȯ�ƨ� �$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)V ��MU�x�d�ŵ?2�$ױ�������ֲ��)V��U�����d��J����d��uQR!���U���}렛QQSj���( ��$ʱ���ʜ�QSj��ƨ��;�ɰ�E�w望QSì���ƪ�7�����Qz��s�z��s}�͜�QS ��}�Dz��� � � � ����� ������$h��QS:wߴʱ��ǜ�QSj���n�������w���ʱ�����DZ�ë��QSd��B�@��w油�)Vd�ŵ?2&ŵ?�U&f�:�Gv��QQV��U�����d����QDze���R����D_M�n�R����D���BJ� �� @���+:�G�̨v����D����J� �� @���+v����D��<����P���R����D���J� �� @���+:�G�̨����˹�F{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}렛QQS ��}�͜�QSz��s}�ǜ�QSd�=�|�o"���R���eP&K�^��U�������4 �����QQ��D���U���4 �� ��QQV ��MU�x�d�ŵ?2�$ǔ��Dd�ŵ?�R��^ŵ?��R��S&��U�������4 �������Dze�R��QQ&���BJ��4 �� �� @��M�̨v��QQD����J��4 �� �� @��ŵ?�v��QQD��<����P��ê�� �R��QQD�O4�L�O ��O ���M�̨����D����U�O ������+O ��̨���V�O����� /���R��QQD���R��QQJ��4 �� �� @��M�̨��v��QQD;��s��I5��P&��G�I��̨���D�����˹���F{�������M�������_�$DZ��������v! p���=�s�[���宪�c��ȫ�Ƨ�M��\RQ���c��źM��FQQ���c�ȩźM��FQQ���c�O �M��FQQ� /��̫���?����`QQ��Q�RQl�ç��"��RQQ� /��9�����"�#��������� /����,"���� /���ɪ<������i���ɪ�\`]M��R����Z�X�����C��0/�v�u�M���F]�_�u�M����������,�ôOG�O�0�HR��R��êO�P̨u ���?�ì���O�0�a��PO�0�Hu�N��<��O�=�����R��O� ����u�O�0�H������`]̨R��O� [�uı�[�RQQ̨��N��G ��RQQO�0�H���RQTO�0�H�o/�����. ��̨�\){ɬR��O� [�uı�[�RQQO�0�H���RQTO�0�H�o/�����ɬ� �M�\){���*��R��O� �u�O�0�H�o/�����RO�0�H����*��J�쯵�FQJ �M�ɬ�`]n�R�O� O�0�Hu�9aľO� ��A1�O� �FQV���Pı�O�0�HR�QQQO�0�H�o/�����ɬ� �Mϧ��IH����߲��QO�0�H�3JҮ"�����ҳ=ȱ� �M�򲝛QO�0�H�3JҮ"�����ҳ=ȱթ1������ݧ���ݧ���ݧ������ݧ������β��QO�0�H�3JҮ"�����ҳ=ȱ�3���/��������QO�0�H�3JҮ"�����իɱҿ��������ʲ`QVbO�0�H�3�O�0�a�Ү"�����ҳ=ȱ� �M��FQV0GO�0�H�3�O�0�a�Ү"�����ҳ=ȱ� �M��FQQO�0�H`�����G��M�Rľ����G����`]����M��G�*����I����IuĪ��L»��M��GP�A�����I��uT���Ļ�移���`QT��ů������I��L�t���I�b�����I���� ��Ĩ���t��F� Qt��\`]���G�H�*����U�����u�L�P�O'>�k����M��G�*����ItPĶ��M��P�����\�uT��H�#���I��A#��Dy���y������\`]����M��G��M�y�� ������u�����������P�;�̵O�n��������FQT���L»��M��GP�A��������uQT���Ļ�移���`QQT���L�P�G�H�*����P��������� Ĩ���¹G�H�#\\F]�M��GU�u�������P�#�⧯��������L�G����" ������A[��������������HP����VIP_��y�� �ݧ��L��y�� ���ëP��M��GPA[��v�o2Ĩ��ů���F� T�M��GP����P�`� �MG��"秙�������4 � �F� T�M��G��M�y�� �F� ��I��F� T�M��G�*����I��FQQQV��ak`��ɴ��� F]~gԩ��A��f ��fzL��f ƃ�ë�ñ������F]M�fA���uı�ԩ���A��fk�k�k�k�k`]~g��»=ȧ��;�P0G����W� ��F]~gҮ�fzL��f ƃ���F]~g�M�@�ƧD0�����FQT�b\��E��O3�êG���R��O*,A�P��u�SH6����n�O�������ۊ�S�������P��P���u�S�����êG����؅�����P؅�����ľ��0������êG����ଷ���G���`]"������êG���:�k`]ï�Ʊ��H���������u���k�￯���êG���FQTL�êGଷ���G������R��QQQJ�ų���v��QQQ�b�L|���2�+����|R������êG�������uQTOH�ۧ�����êG��êG�ĩ�+@iêGR�؅��������V�����RQQT�©�u�ĸ��������B�N���\�ĸ�B�êGRQQT�H�ض��L2��\`]b�B�Nu����L�ç￯���êG���uT�b֯�N��\){H��B�NB�Nu����L�ç￯���êG���uT�H�֯�N��G��B�N\F�K�K'���@����c��=��XR���N��<��O��M�����=�����R©��@����cu�L��Ʊy�󧩅R��QV�ɴn���Ʊ�R��QV�ɺy�uT��H����󧩅R��D�ɴn��O�����R��D��R���lDL�>���QQ�DA�����uQTM����ƱyJ=��X#��|��\R��F]�=��9���R&@����c�������ç=������F]3��=��XR�Ҹ�P=��X����B����P�����ôv�̯ŧ��uĪ��L�NĻ��G�?�������ɺy�����ƽ�l���̯�\uT��[��MRQ�̯�RQ�@����c�uQ�o�RQ^@����c��Ƨ��RQV@����c�9��P��=��9����\��/ñ� AF]�⭬R��W,����̫���P��A1�v¶���u�M��ú"?�ú������\F]���C �R�ੳ����� ��B�K�C���������P�>�����C�2���������v¶�����������u����'2������������\){���� A�����������R�Ϊ� ���������� A���ƴv¶���uĩ�����W�,���M����������ͽD�ĸ��C 秶���������\){� A�����uį��ͧ�����ī1�秶����� A������������秶���\F]-ɬ�� AGI�u�=���M�#���uT��� A秶��RQTO���M���\`]�� APĪ,�-ɬ�� A��`]/ñ� AMK�u�������0��MK�FQT�ٳL�ҭ��|��"���J/ñ� A��ɰ� P��0��<>�M��WI��|�\R�/ç� APMK�`{���� �x�����M��Z���)VK��U���QQQ}�$ǜ�QSj���( ���$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,��R���QQ�j�������L�;��s�@�,����8��I����QQQ�L����3�ȱdPQQJ7ߴ����QSO��N��Q�$��ʱ��͜�QSO*,A��Q�$�ʱ��Ͳ��)V ��MPQQ¸��ߺx�����M�w$͜�QSx���3�țQ�$벹�)V�C�L�ISxXN�����M���C�L�I��)Vc����bP�&� �����b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)�QQQVŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R����!��B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F�3����봸���R�™�̫��������u�S��G �����������L@-�H����O3J�������[��\)]O3��C @-u������/����IH�/���O'>#�ų����+� �@-���\F]tC�����L�«�ŧ��ī���Ž���������ŝ���ŧ��\){#������󧰵��LR��T��O3��C ��QQT�?��tC�����L睛QQQE�/`]#������󧰵��LRQQ�QQT��O3��C ��QQT. �l�> ����QQT����杛QQT�?��tC�����L睛QQQE�/`�.��.�R��d�̨� u�SO��N��PO��N�u�S.��zN�P��Pz�u�S.��OP�O�O��A�����ɩ��3��,��zN�o/u�!����������������̨���������������*�ɩ�,�����������*�ɩ��3R�3�����������3RS!�������������3��RQ!�������������� ��!�������������,�RS���������������<�LJ� �A�uS���������������RQ���������������@�Ƨ&�O�J�o ��J� �¾��������������@��^�O�J�ů��J�ů�¾��������������@��^�O�J䓬���J�������M�����������o/RS!��������o/RQ�o/���F]M�zN�u�!��R��ɩ��3��,��zN�RS!��RQz+o �zNľy�o �O��A`QQT��?�o �O��A`QQT���ľo �O��A��uQz+�ů�zN�RQS�����e�O��A��Qz+����zN�RQT���PO��A�����F)){M��u�O��N��O�zN�M�zN�u���T�b�L|���2�+����|JoM�\����y����98��n�RT�O⵪ORQK�98��P��DM;�K�6�P��uQ��y�˞P��y��uQ����:�P:DM;�K�6�P��uQ���¨��=���P���DM;�K�6�P���T�O⵪O�6��RQK�98��n�O�]9g�PI��O�����`N��L�o��L�� /�FK�98��n��GI���98����F�K�98��n��GI�*������OmK��F��ϧOA���B���x��������N���aB��ϧì��%�=9�ïG������K�98+MKɴì��){9gK�98�M�Rĸ���Ƹ�ȶ�98RJ���98PW��ѧy���)QQ٧9�����_�K�98�設���Ѩ�5<ܩ����K�98+n��d��)QQٻ�����298PB��P�eݧ��?����I�O���P�����RQ�P����298PB���y�� ݧ�ay�� ��?�RQ�@i2���98P���:��򧰫��ݧ��C�2����O⵪O�RQ�a�eP_�K�98�設���Ѩ�5<ܩ����K�98+n��d��)QQ�Y���932K�98PB��eP=��P����O⵪ORQ�K�98��n��@����)QQ���RT�O⵪OK�98��P��DM;�K�6�P���Q���)QQ����O���\��%��� �E���ë���K�98+�=źi����4 �設��K�K'+n��d��\�b��\��ų����\���I�:��9g��4 ����`��R��4 � B#��0�� �X���Դv�™�̫���̫�3����̫�3����S���� /�°���� /��S��O ���u�S��G ���G�u�S��B����y�� ��'>���u�S��B����y�� ��O ���u�S�C̩�O ����`����ϧ������������������������������������������������������������������������������ϧ�������;��ç����){��;�����TG��� ����i��b����̫���;���ò�QQQ�䲾�`����ϧ������������������������������������������������������������������������������ϧ�������'>����������G�����){��'>����������G��������-ȱ���#���"�u�'>��P��������-ȱ���#���"��K������G��`����ϧ������������������������������������������������������������������������������ϧҰ���������?�< �W����ԧ���E��@-)�E�|)T����GDG���ī�GD�?�zL|D�=�\)QF{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�ŵ��sw״ͱ��������v! p��� ��X��=�s�B���ƪ���v��%��� �E��ΩZ��Z���Ⱥ���sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����̫�����U�̫������u�̫� ����U��;� ���������b�޲u����U�� ��u�O0��q� ²�������O0��%�� ����������-��o/����+� @���� ��MU�E���wߴ�放E���^K�����P&����W��Ƹ�ȶ��R!���U���}ޠ�QQSj�O�L �+O�L �P�$��ߜ�QSj���B�����O w7望QS��êOJ�h����eP&��C��R�QQ&K��U�ŵ�ƪ��ŵ�ƪ�ߴޱ�$DZ�������ֲ����F�{�������L��wʱ��������v! p�����X�ؾ�� �K( ��v���%��� �E����@v�a&yJ��֧�NHv�V��%���N��� ���ֲ�)VK��U���}נ�QQSj���B����Yw7͜�QSì���������YN�$�ʱ�������֜�QS�ô⯨�=�� ƺ=�� Ʊ;�}$ޜ�QS ��� ���n�뜛QS ��� ���>�}�QQ�� ��� ���̩����3.�}뜛QSz��s}望QSN@>}$ʲ��)V_������L���MF{�ŵ����ŵ��������$�v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}ߴ��(�����C����QSE���N��5���7���(�����C����QSj���G����w����(���G��QSŵ����ŵ����n�$�栛QQS��êOJ��Dz����D��U�����u�̫� ����U���b����������X@/�������u�G�U�G��F��ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�$ʱ��������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V����ì��%���ȴ. �� �������رhR�V��G ��DO0�R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R���eP&K�^K��U���}޴ʲ����R� ��MU���H���Gȯ1w7Dz��F���.������R��O*,A�PO*,A��A���A���u¾@^;�J@G���������A��A�����F]A����@Gu�L�A�� O*,A�� ( �¾A�� ��uT��uQS!��^;�JȌQQ!��^;�JE������QQS���^;�J@G�����QQQW���A�� u�A��������\){A����M�u�L�M�O*,A�� ( �¾A����M���uT��uQS�M�^���QQQJɬvQQ���t�QQT���M���D �ï�K�J�/��B�OZH�v�QQD;�QQQJW��o��v�QQD��*��Q��R�QQD�Ʃ���O������������I�1�`�����O*,A��������H�A����`�QQQD��ë��Q��O*,A��������A����M���ı������b��������˹\){A����z�H�u�!��^;�JȌ!��^;�JE������S!��^;�JM������Q� �����M�uQ����&;�JM������Ŭ��QS��B&���QQ��B�v�QQV;�QQ�ŬŬ�������v�QQV�Y�Ƨ��O*,A��������H�A������RQQJ�N�������F]�����u�!��^;�JoM*��C�!��^;�JȌS!��^;�JE������Q���J��Ұ����A����@GuA����z�H���F�9K�"����,��R�驻M�:���,�P���v��9K�"�'K�����,���]���,���T'��E�L ����u��S����P�O�D��`T���0��j�Ũ���� ��Ňٸ\){��#�CR�ੳ����� ��W��NXf�3�X����,���v¹G��Ňٸ�\)�ϧ��驻M�:���,���){���,�JҸ2LPB��v����������׫�߻�Ÿ���ͩ��vĸ������[���˧��H&LU����D���<����ķ����[��&yJ����ծ��˧���^LP�3�M��`T�����[���˧�굶H&LP����D���<���`]���,�J�ë���y�W�K'�v����������׫�������ͫ��vķ����[��&yJ����ծ��˧��H&yJ����VM"/�ծ��ȫ����FT�����[��&yJ����ծ��˧��H&yJ���ծ��ȫ����`��B�MR�™�o�Ŵ�������™�o�Ŵ�N���� ������ �����d��4��P�4��;I��B����ëL�F]�ëL�P�ī�B����ëL�`){����ëL��R�����ëL�P�]M��v�o���u�������o�����ëL��`){�"�ëL��R�쯭�� ç�]M��ݧ����ëL�P���v�o����,��uĻ�� ����������ëL�Po����,��`){��B����ëL�R�Ѭ�������RQ� ���D� ���RQo����,�P�o����,��RQ��o��Z��D��o��Z���u���������B�����J� /�B����`)]M������uı����RQQ���GRQQ���O3RQQ�����RQQ�4���IH�G ��RQQ�"�ëL��`){�_�����u�M��E��@-�I���`�����=ȴ���� ��E=��GR�™�G���u�S����=ȴ���� ��E=����u�S����=ȴ�ë�-�P��P�ë�-��u�SE�����zX�E=�P��PE=��u�S����=ȴ��ɬs���ë�>��P�ë�>�u�S�N��<��O�<��O�����IM���Kŵ�#�����G�G��� �����R�GXJ�M�X����E=���ë�-���FT�P����ͱ�ë�-����ɱ����D'K�嫻��=ȴ���� ��E=���M����ű3UĮë�>�������I��汪����\`�L����C�L�I��ȫ����"��R��d�G � ��O �°G�����,����"��R���PëL��_��l�ç�=�ƧO���5����W����O�0�H�v�ëL�uĻ�O� �uT�RQTëL��O� ���l�ç��ȫ�L��RQQT�G����򧍧��Q&�����RQQQD�1�RQQQ^@��P&��^�O�J����R����b� �������\F�ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�DZ��������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO���R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R���eP&K�^K��U���}ߴʲ����R� ��MU���H���Gȯ1w7�QQQx�����N�$�߲��F�d������B�N�ܩ���� �Rľ™�G ��D�¨ ������� ��B�N���uĨ �P�§��`]űB�N���uĨ �P��\��`]�ê�� ��B�N���uĨ �P��\���`]ų���@-�B�N���uĨ �P��\���\��\���\��\��`]��I�B�N���u�>�H�#\){@-�B�N���uĨ �P��\�����G��l�R��d�R���6�U"A �ƴd��GR��VO��P]G�Ȫ�G�����GPGX�G��I����d�R��"A �ƴd��G���u�Sl��P�u�Sl����� �����dR�™�G���u�Sl��P�u�Sl����� ����G�G��ũR�GXJ� �O� vTL·����ǽuQT�PĬ��ũ秷�`QQT�PĬ���秷�\FR��dR�GXJ� ��vTL·����ǝQQ������X�uQT�P�������M���ǽ����\RQT�P�������M���ͽ����X\`R��dR�GXJH�N"��vT�P����H�N"��Ĭ��ͽ���潏�����ͧ�\RT�P����H�N"��Ĭ��ͽ����X�������X\`��� ���G�,���GR�¸� ���G�,��O�D�u�S��G����`){G#q���R�GXJӫ���.�� �N���vT�P��]������ �N2�b�Ʃ�*��� �N2� �N2�y`���O��X�]���� �N��FQT�P�H��� �N�ۧ� �N2���*��Q�ӫ�H� �N2B�����N��� �|��FQT�P�H��� �N�ۧ� �N2]������ �N��Q���9�H�� ƧB�]�����FQT�P�ȶ�̫����������/�A��"��H��� �N�ۧ� �N2������Y���`���� 1�����0�2� �N���\��L�d�?F��ϼ�ϧ�ŵ��X��ϧ���ů���?���){��!��4��Zů������F]���� /�R�Zů���I��u������Zů�����Zů����FQT�M�X�����uQT� /��H�OG���`�QQQ. WI�������G���\RQT���\F]�ŵ���'O�� /�ͧ'O`{M����'O�� /�ǧ'O`{�I���'O�� /�ǧ'O`{��?��'O�� /�ǧ'O`�5�̵�������YN�R��d��n�������������u�Sd��O3��O3�G �����Ʃ�������uı�������`QQT�I��A�A��&���fĴ���G؅�2�����V�������Ʃ�ȯgĴ���������\){����������������� ��ë�-���L©����� ��������� �A����QQQ�-ȧ�+؅ί��"�����Q�ë�-�����ë�-��������ë���uT��H������������� ���QQ�3�؅Ԫi-�#���"y�����������Q�©�u����������ۧ�ë�-�Ʃ��������\`QTH�����#���"�QT���u�T�;�a��QQT������;�Hۧ�ë�-�\RQ&����#���"RQD�ë�-���ë�-��`]������������������� ��ë�-��ĩ����O3�G ������������� ��ë�-�`]̨���������������� ��ë�-��ĩ�����Ĵ�I��+�J���������������� ��ë�-�`];�H������&Ʃ�U�ë�-��������u������RT�;�a����`T������;�Hۧ�ë�-�`��,C����G�L����0���R�¿IK��G�L���O����0��������0���R�����0���%�ɮ���ů��G,�����E������� :��״�ʺ������� :���M���FQ���0���%���������L.���E����4?��ڰN�Ϋ�������������ʪ@����ʲ��F�E��O3����zN���RľO���D��;�KA�����¿IK��P�u�SO*,A�PO*,A��b���uľzN������`]A�����ŧf�IK���uī���_���zN����C���IK���`]H����u�O*,A�O��� RDzN���R��.�ŧ�uQb����\)TO*,A�O�����RD3��B�zN���R�¸��f�IK����QA����ŧf�IK���\F]A���f�IK���u�O*,A��������3��B�zN����f�IK�����zN���IK���u����L®���O*,A�� ( �¾zN�����uTtP�\){zN���u¾G�L^�������Ω�ٶ-�����R�^��ì��R�T���zN���IK������˹F����F]�����M�\�F{��,�?Q�\�F]��#��oZ®�uT�������M�ý�RQQQ�,�?�RQQQ��FF]B�������uT. G��#��oZ���`�� ����C�L�I�����<�I���I4��G���*eRľ��GRQQS ���?���D��G ���M��GO4�uQQQ ����C�L�I�����<�I���I4����*e`]G�G���*e�G�OR�L�G�OT��*e�G�O�QO����G�OR�QQQ&�eyJ�����ɬv�QQQDo/�����ɬ� �Mv�QQQDGO4G ���M��GO4J�����˽uT�P����ey�O�����J�����ɬ�`QT�P���o/����O�����Jɬ� �M�`QT�P������O�������`QT�P�MG��"�̫�������e����e�O����\RT�PĴ�ɪGPľ���e�O����\RT�P�����������e�O������J����\F]G�G���*e��ɰ���R�L�G�OT��*e�G�O^�ɰ�O��_�˝QO����G�OR�QQQ&�eyJ�����ɬv�QQQDo/�����ɬ� �Mv�QQQDGO4G ���M��GO4J�����˽uT�PĴ�ɪGPľ���e�O����\RT��O3��L�������FQT�PĶ�Ĵ�ɪGPľ���e�O����\\){����3UuĴƩ�Ω���O3�bҳ�����,"�\){G�G���*e�O3�R�L�G�O��*e�G�O�uT���n�RT�O⵪OO��N��PO��N�O�:��QSO��N��H��H�u�QSH6����PH6���M;�K�6�P��u�QS E�/�/�P E�/�/�`��ϧ���������������������������ϧ�1��]"��T:J�`��ϧ���������������������������ϧ�V��Ȩ){�:������u�!�����J�W��EA�B�ԩ��ܪ��Ԫ>۲u!���M�^����ɬv���t�ı��KO��� /�G���QV��ë����OH�ۧ��������b�������ˊ!�������F]���O/�����u�!���H��bD���O/��������F��ϧ���������������������������ϧ�� )�H6����]���u�H����D���O/�������:������`��ϧ���������������������������ϧ�5<��.�){'�/���u�O��N��O���O/�������b�L|���2�+����|J.��\){M���u� E�/�/�o���s��������FT E�/�/������ñ���O/�FT'�/���`�ϧӯ�� �������O�/��ç�5Ȫ�5Ȫ�ũ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ŵ����n��Ʃ��R��ŵ����n��EK�P�O�G�����P�����ɹ���BE���Ω6�����R�Ʃ�����UƩ��Jᯭ@�ƩB����,��FTƩ���G�Ʃ��Jᯭ@�Ʃ�X�`����BE���Ω6�����R�ӳ��W�4���FTƩ�����U������FTƩ���G���������ɧ��`R�XR�Ʃ�����UƩ��G�����PƩ�`TƩ���G�Ʃ���Ʃ�`�E��O3�(,��R�™�G ��������S-����,�N@>�ì���ì���ľ��0�̫���-�����`]#��RѲի������&��%������ɴA�����v�QQVHL ��!�������@GD��D@D�u�QQV���@�Ļ��yDo/R���QQQ�ѵ��D�O��D��u���Q^y�yR���QV�������˽�RJի������3&��%���ȴ��I�3�-���ëũ<9�vQ��QQVHL ��!���H ��ëD��D@D�u��D���@�Ļ��yDo/R����Qѵ��D�O��D��u���QQQ&y���y����QD�������˽��F]����ñ������u�ì���ì�����̫���-����Դ����\){����ñ���@G&Ʃ�U���#�L ������@ܩ��u������@��ì���HL ����ñ��������#�L ��\�&��RQQVK��U°�G3���õ-�G���w렛�QS��4ï�}��QQVM��U�O⵪O���G3���õ-�G�����QQQ��G3���õ-�G���� <��۽uQQV�������U���X����ͷ��H�Z��)�� ��MUR���x�ƪŪ�$͜�QQx��$״望QQ�C��C��O wߴ͜�QQx�����N�$�ޜ�QQx��� /}Dz���˼�xXN�� ��Z���R�«��E������ ����C�x�Z������C�Z���u�S��G ���G��ľ��0�ī��E������ ����C�x�ԩM�V������\){��# ���G ��I�uĪ��oMPI�J�FQTL�Ʃ��G��� �I����uQS�O3�G �����G�Ʃ����Ho2Ʃ����S�O3�G �������������IH�I�UI��uĪ���������I��FQT. �������l��Ĩ ���G ��������`QQ��`]� ��Z���RQQ��V��� �� �eP���MG���CvQS�����uQT��oM�秓�� ��TL�Z���ԩM�V���������İIH�I�PI����u��Z����Z��Z������� �\RQQT��ɱM��Jᯧ� ]M���ȫP����_����\F�B���O �ȩ�.��ëL�Rľ�N�;�D_��FT�z��s�n�FT�O⵪Oz��s�ëL��ëL�u�Sz��s���P�u�S ���3.��̩����P̩���u�SB���O �PB��u�SB���O �ȩ�.������P��P���Ȩ�����ƨ�O��O��`{��U�KO����ƨ�O��`{3��-ȱ���uĸ���������ƨ�O����oPR���QQTB���-ȱ�Ʊũ���ɝ���Q��\F��ϧ�5<���:�ƨ3��-ȱ��^yJ���b#:�?�v�QQDo���ï��Xv�QQD���B'�Ȳ�F�3��-ȱ��^yJ���b�-�#ï v�QQDo���ï��Xv�QQD���� �����F�3��-ȱ��^yJ�L�ƪ���M�v�QQDo��c�5����F] ��� R����J�¹��� /��b�����QT����+�:�\R�����J��t©tٶ�uT���RQT� /����tJ��tٶ��Ī�k秩tٶ��T����+��� ��k��QT�M�X���M���P�B���O �ȩ�.��ëL��u�TL�O����m��G ����tٶ��u�QT� /���tPB�J�O�����������+��� �O����\\R���� J��FT�����*��J�쯵�`]��R�ëL������� `]�_�0��u�̩��������̩���RTëL������� FQQ&0���/����0���D̯M种�`{�z��s}�ʱũ�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J7͜�QSA�L�$ߴ͜�QS ��� ���n��ʱũ뜛QS ��� ���EK�}$ǔ� ��MP��x�E���w��㔾E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���H�RѲG��²Ȫ���e�]��������G���R���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w栛�QQp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ����F{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$ǜ�QSM9/�M9/�n��ޜ�QSM9/�M9/���I�P��ޜ�QSM9/�M9/���}�ޜ�QSj���[��̨w7뜛QSd�ì��J��$͜�QS�@���ï�$�7͔�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{��ɱ.��x�� �$���$DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E��G�I���,�zN�$7ͱ��������v! p��ի����2@����c���#�����Ň�v���%��� �E��G�I���,�zN�v�a&yJ����֧�NHv�V��%���N��� ���֌��M�x�Z��J7����K2��=���I�R!���U�E��G�I���,�K�NK���$ǔ��=���IP���I���O�L �����R���eP&K�^K��U���}�ǜ���QQj�;�̵���B����y�� �$7ה��D��U�K����R�QDd�^K��U���}״ʲ����F����c����Ŵ���,��Rľ®��c�����D��Ȫ�o���ľ®��c����Ŵ���,��@�D�{���,������O⵪O�����,�POH�����,�����™�̫���̸Ů�̸Ů��ę�o��G ��D�ī��G���\){����,��M�����c����Ŵ���,��@ź���,��M���b�4��\){M��u�Ȫ�o�RT����O⵪O�����,�P���,��M��`T� /�����,�+M����`OH�����,���b�4��`]���,�J(�Z��vİ /��6����L�#��Z���FT̸Ů�6����LD(�Z��R��Q�yD�I��IJ�����ا��֧���Ԝ���!�譵�P��� ������FT�P����=�ȯ����QTG��+B�ȯ8P�ੳ=ݧȯ����`QQQ����M;��X�E������FT�P���峳�ȯ����QTG��+B�ȯ8P�峳�ȯ����`QQQ������Ʃ��P.�G���`]G�O'>�G��ȯ8��GRĪP����=�ȯ����QTG��+O'>�G��ȯ8U����=�ȯ�����`QQQ�O'>PE�'ȯg�\���\��`]G����,���GRĪP�������ŧ��QTG��+���,�P���������`QQQ�6� �Ū�,���`�E��O3�(,��R�™�G ����u�S��̫��������u�Sd�ì���YN��PYN�u�S���e�n�O����e�Ȫ����e��S-����,�N@>�ì���ì���ľ��0�̫���-�����`]����ñ������u�Ȫ����eì��*e���e��1�YN��b����\uì���ì����ì��*e\){�� ��@Gì��#�L ������@ܩuı��ì���HL �ì��#�L ���Ʃ������@ܩ\){����ñ@G&Ʃ�U���#�L ������@ܩ��u��ĩZ��zL|�k����#�L ������@ܩ�T�� ��@G����ñ��������#�L ������@ܩ\){N@>������&Ʃ�U��Po/��uĪ�k�o/FQS���uS��Po/��c�����������P��o/���HL �Ʃ�PU��������F]�� �������ì��#�L ��uĨ:���ì��R��ì���HL #�L ���QQH�R����GR�N@>������RQ�QQ�c��������`]����ñ�����&Ʃ�U���#�L ����u��ĩZ��zL|�k����#�L ���T������ñ��������T�� �������#�L ��\F&��RQQV ��MU®C��C��O w�ʱ�������֜�QQ��H���Gȯ1w7望QQx�ƪŪ�$͜�QQx�����2�$�㜛QQ�uQQVK��U���}ߠ��QSE��[:�[:*O�$�����ʜ��SA�,�-+�P�״뜛�Q�ϧ��C�X�������j���n������2�$��͜��QuQQQ�˼�d��  �ëL�R��z��s�n�O���֧ ��Sz��s��O�� ��S ���?�O�0�a�O����O�0�aO�0�H��S ���=���<��O���,��Ȫ�=����S ����C�L�I��]����P�O���������P�,����������S ���?�ì���O�0�a�O�o/�����Ɗ�Sd��  ��Ŵ�ʼn��u�SM�,/�P��u�SE�5 �������P������FT���0��̫��������ҭ,�����4\){������̨�u�L¯��ҭ,�����4������Q���R�QT������� �D̨���������� ��`�OPĴB�X���uT�OH�FQQO�`]�:������uı����O�0�a�MKɴì��&��� @��˝�o/�����ɬ�ì��ϧ��IH����߲\){�  ��u�L����  ^�  �ź���  ��Ž�RQQQ�������  ������̨����  �uT��O�0�a�������  �To/�����. ��������̨�\F].�� ��u� RT���J��  ¹�  ���`QT���J�¹�:������`QT� J��\){A1����M���Ʃ�ëL��_��^Ʃ�U�Ź�uı�.�� ��ŝ��,�������P�����������,��Ȫ�=��`���öR�™�G ���G ����B�OZH������R�O����P�����H�N"����L�G�B�'G#��5��/������P����v¶uı���uQQ�,��ª�蹹�ⵯ���ʽ'2���ʽ�`QQQƩ���ezL|����ʧʹ�`QQQ�#�o���OG`]��ƨ��R�O����P�����ƨ����������X��ëP����Ƨ�����v¶uı����R��B�OZH������R������cǧ͹`�Q���Ī������ʽ��������`�Q. �`QQT'2��\){G ����=��R����P��������I �P��oZ�PG ���MB���v¶uı��G ���O ���ʱ�����������IH��`]tC�R���ëP��tf����������v¶uϧᵷ�PȪ����������ê�� ����ǧ����IMtCRĪ���O*M2���ʱ��\��������E�/G �������\FQQ�RT�����G ����=�����ƨ��\F{����w���������v! p�������P��@�,�B���d�G������N�PN���|��v���%��� �E���N������v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)V(�^yJ���vQQV���%��� �E���N��������)VK ���O0��q� ²;��I�&6��P����ˊR�G�U�G�d��)V���U�� ��)VK��U���}ޠ�QQSH�A�J$ߴ���QS�I�O0��wʔR���e�R&K�^��U�����d�G�d������4 �����������4 ��G�QVK��U���n�������w���ʱ����ͫ��ë�����F����'K����tR��;�̫?�i�P�O�H�s�i��Ȫ�����S;�̫?�n�O���ůɊ�S��G � �O����9���S�����H��H��FRľ™��� /�ľª�����IH��ľª����M��O���ª����?P��P?���ª����@�,���P@�,���FRľ��0�̫�������X�W ��� Q�̫���?�o���O/�֪A���"��`K;I��O F]�O �N�O�@�,�������M�<�N�\){�t�G ��������ɰ�u�����"���G��W�\R�Ȫ���N��X�W ���uQ&�ɰ��������ɰ�RQDO���¯��������ɰ����`]�t�O� ©ɰ�u��RT�t�G ����ɰ�FQTl�ç֪A���"��RQQ&����A����ɩ���֪A2�۲�FQTl�ç��"��RQQ&����A���G����9����\)]���EKu�L�O����RQQTM��OĻ��G�o/���G�o/������IH���IaEK\`��QKO��O �N���uT� /�O����FQT������O��HO �N��O����`QT�OO����\){O uĭ��?+Ʃ�M�`TO ���xXN��L��OL�H��� R��� �M, �v��RE���LB���x���� ��� uxXN�n���t��tu/ L�P��Pj����ñŵ?K�R�ض�s�ŵ?���:��4��P�ï H2�O0��q��vµ���B�Nu�L�&Ʃ�U=�_y��O0��� ������O0�����uT���L�ŵ?K��fĿ� �4�f�ŵ?���:�=�_B�N�uQTL­�� ��ñ4�fŵ?K��fO0�B�N�uQQT9a��R���ï H2İ /���ï� H���QVO3���ï H2İ /��ҳO3�ï H���QV�ï ��*�e2İ /���ï �����e��\RQT� /��RQQJᯧ4�����W�G��=�_��ŵ?���:����Jت�6�ŵ?���:��4ݧ��ï a�ů����\F]��ñO0*��R��%��ů��������������↑ �E���+�������F]O0�E�8M R¯ �Mu�L�&Ʃ�U=�_y���� ������O0�� �M�uTW�ñO0*�=�_y\��-ȱȩŨ��H�ZR�™�̫��������u�Sz��s�n�O����Y���֧��֧���֧�����ا] � ��Sz��s��O�� ��S ����C�L�I��]����P�O��,�������P�����������S ����C�L�I���ܪ����,���ܪ���S ����C�L�I��=�����,��Ȫ�=����S ����C�L�I���I4P�O��,���I4���S ����C�L�I��W�O��,��OG���*����QQQQS ����C�L�I���/�*j�O��/�*j��B�N�SN����n�O�N���S ���3.��̩���O�����̩�����S-ȱȩŨ����=����=� ��ľ�N�;�`] �n�� R����J��/��W���̨�O�uQ&�����RQD3PѲ�/������. ��̫��( ���QD�1�G�J�I���������/�*j��B�N�J�ϲ��FT���J��RQ&�����RQD3PѲ�/������ɬ�ì��ϧ��IH����ߌQD�1Ī��M��GO4������ @��MKɴì������FT� J��`]�ì���ëL�R� RT��n�� RQQT�,�������P����������Q�,��Ȫ�=��RQQQ�,���ܪ�FQT����=� RQQT�,��OG���*���W�U�̨D������̨D����QQQ�,��Ȫ�=��\){�_��0����L�0���/������0��N�D0��������㽽uT����̩��ì���ëL�^0�0��̯M种�\�ϱ�ϧӯ�� ���������թ�Ʃ���,A���ϧҳ�� �ìPOH�>���ϼϧ������PO��,/��ݧ�O�����I��ݧB������MX�E���ϧ����P�����I�����2����|���eP��ί���I���ݧB�K�ϧ_ί���IȪ��OG �ݧM;��X�Ȫ��@���� �ì��ϧB��ݧE��ݧ'����ݧA���ݧ� @��ݧ��G ���# ������#����ϧE�� ����ί���I���B������PB���:�ί���I���ϧ���5�2B���#��# ��B����=�X�o������ϼϧ�ů>�E�� ����<"��P�������<"#����M;�K2M�����E�� ���# G�/��0��P���ί���I���ϼϧ��ا�����W��ا�Χ����V����J�Χ�βݧ�W�����֧�W�������Y������Y�����ݧ��X����Χ���ϧ�������ݧ������������֧��֧��������ڧ��ا�W��������Χ�����������������Yݼϧ������Χ����ҧ�����������������ا�����������������ִ����ڧ��V��֧����ԧ��ؼϧ������Χ�������Y����֧������Χ�ا�����ا�������Y������ݧ������Χ���������ϧ���������Yݧ�W���������������������������ݧ���֧���������W���ݧ������������ݼϧ��֧������������������W�����ا�����W��ا�����ا��ا����������������Χ��ϧ��ا�����W��ش)������n�F]M���H�ZR�u��M�X����uTM��P�FQTO���FQQϧ��ƧW�����6���ͧ_��n�ݧ�_��O RT�����Ķ��O���>�噴n帯���噴O `QT�Ī�����d���m2��\F�ۺ���M�N��ů��H��N�ۼDK��P�‘��}޴ʱ��ǜ�QS���E���l ��ūwh���FO⵪O���l ��ū�P �F]�:������R�o/u�ੳ=�ȯ����F]��R� � ¾b��:����������MR���_N0MB������ ��v�����u�L³�̫���?�o���O/�ӯ�/�ȶ��ô�ǽuT �����H�Z��^0�����DūH���J���FQT��ȫ���\){�=R�¹Jੳ=��W����۲FT«�G�Jੳ=ݧ���#?��J��`T«���'O�G�Jੳ=�B��P����JR��. G�R����M�0a��Jol@G��'O\R��J۲\){���<����Ļ�ɹ����\]A1������Ū��O��G��y�J��P>��� ��`{A1�����9�5��O��G��y�J��P�5����`{A1����!�����«�G�J٧��ƶ�ȧ��J�y�J�����`A����R��:��� �P9��2_����Nȫ�P��Ȫ������|�v��Jੳ=��W�������=`R��W��I��|v��Jੳ=ݧ���#?�ȯ������=Jȯ����`R�ڭ�Ȫ��I��|�v��Jੳ=�B��P�����Щ�ݧЫ��ݧ�I��vQ�=JЩ��Ы����I��`R�յ���� �vQ���&����� JK�yJ�4Ū����D�D�Ū��O�`R�骻�NA1PI�2K�N�X�������ç��� ��O����v��JΪ�ū��P�5���vQ���&����� J@�yJΪ�ū����D�D9�5��O�`R��Y�����]���A1������P���v��J٧��ƶ�ȧ����ç�Ʃ���vQ���&yJ�ç�Ʃ���\��8�ȩŴëL�R��Rz��s���P�uz��s�n�O�] ���֧���֧��֧oɬ��z��su ����C�L�I��]����P�O��,�������P.��������� ���?�O�0�a�O��e�O�0�ao/������ ����C�L�I��̨���,��̨�O�0�H� ���?��/�*j�O��/�*j�*�����Ư��P�uƯ���ʼnƸuOmK��O �¨�i���)Q8�ȩŴo��P�O�o��� ����){MK��I4�u�o/����Ļe�O�0�a�� �8��  �MKɴì����Jɬ�ì���`] �n�� R����J�¹�MK�FT���eP��� �� @��&���b�� �� @����FT�����*��J�����`]� z��s� �o��� �n�� `]�,���uĻ�O�uT���L¨��Œ!Œ!�#�i���uQTƸ�Ȫ�Ƹ�6���#��Œ�T��O�`QQT��O�\F]��Rı��� RQT�,�������Pī���_.�������U��I4P�-i�����`QQQ�,��RQQ�,��̨�O�0�H`�EK�I�����-��������GR�™�G���u�S��êO�P̨u�SEK�I��n�O��M��n�u�SEK�I��?P�O�Ȫ�̫�����G����G������EK���R�GXJ�_9ëL����EK�Ȫ������ɬsvTȪ�M�G�RQT̨��N��G ��RQQ^������������vQQVEKJǧ��Dz˝ĪP����M\\){G������̫����R�GXJ�_9ëL����EK�Ȫ���#�����EK��������ɬsvTȪ�M�G�RQT̨��N��G ��RQQ^������������vQQVEKJ� /��ੳ=�������˝ĪP��Jੳ=�������Ȫ�̫�����G��M\\F�K�K'���������������ñ������R��K�K'����������?P��P?�u�S�N��<��O��u�S�ɴ ��M�ƫ�ƫu�S�ɴ ��M���u�S�ɴ ��M�n�������u�S�ɴ ��M�H�u�SK�K'������ ����4 �*�� ��u�SK�K'���̯Ũ��4 ��� ����̯�u�SK�K'���@����c���4 ��@����c�ľ�N�;�`]�_�����u�L¶���P��/����IH�/���Q&Ʃ�U���o����N��o�����?+O3�o���۝Q�������ɴ.��GI������������o����Q��ɴ.��GI��N��N��o����Q��P��ɴ.��GI����P����P�������uT� /���- X�B��Z��Ʃ���J�ܯ�Ʃ���3�O����o���`QT?+3������ȶ�ï�����u���QQT�ɴ.������ȶ���P�������T�ɴ.������ȶ������������������T����ȶ���N��\RT� /����2������=��X�W�Z��FQT?+�=��*�OZ�\�����c�� �N���1 ����c��� �R��R��L��n�R��L���ëHR�L�� ���u�L�� ����O ����P��O ���u�L�� ��� ƫ���P� ƫ��u�L��6��̫���̫��u�L�� ��O'*e�O'*eu�L�� ��H����PH���u�L��6���:���3�M���:���3�M�u�L��6������P���u�L��6��ñƩ��PñƩ�u�L��O3��ɰ��O3��ɰ������c����FT�O⵪O���c�� �N����͉��͟�����c��� �����RİL��n������RJ���cvD���c��1��^4�J4�����游��v��QV���?��?���������G�ǫv��QVMG��"�������v��QVƩ������yJ���v��QVH�� ������U��� ���H�Z���DyJ �/�v��QV� @��ƩĨ����J��ȴC譨��� ������ ���ƩĨ����J��ȴC譨����`]��[���R���[ ���Χ~gW�<� ������c�E��B�0M���>MG��"�Cv�MG��"�CuĮ��c���+��[��~g&yJ�� ������c���E����^t�ĩ�ͺ� @�����MG��"�C�˽�{�d����H�w$DZ��������v! p��v!���U���}״ʱũל�QSj���( ��$ʱ���뜛QS ��}$ʱ��ǜ�QSz��sw�ל�QSN@>}$ʔ�O �M����4 ��O R���J����.��dv�����;�����U�����.��d�v��QQQJ����.��d��6��v��QQQJ����@źdv��QQQJ����@źd�v��QQQJ�  v��QQQJ������v��QQQJ����:M������d���F{�xXN�x��ȫ��}h���������v! p��ҧxXN� ��_B�������#ȫ��#Z�v!���U¨ȫ�Ʊ�}h��O�Ʊ�������֜�QS�/��/}�㜛QS�/��/�������}�㜛QSj�. �>��>���/���P�h��ʲ��F��?�G�6��BRľ��?�6��B�ľ™�G��G�ë�ñ����RĪP�E���4Ÿ�ȯ�ƨ�6��B��ӭ����<�����JƩ�̯İ�ȯ8�ë��JƩ�̯�\F]G���ñ����RĪPİ�ȯ8�����JƩ�̯�E���4Ÿ�ȯ�ƨ�6��B��ӭ����<��(����Ʃ�̯����קߧ�\F]G�������ñMtC��ȸRĶ�İ�ȯ8�����JƩ�̯��E���4Ÿ�ȯ�ƨ�6��B��ӭ����<��(����Ʃ�̯����קߧ�\F]G�ūH���EK�RĪP��J Ư����I,��B�G ��ūH���EKJ�Z�X�����\`]G�N6������6���� ��������ï����RĪP��J�����K6���N6������Ͳ\`]G�K6���� ��������ï����RĪP��J�����K6���î���Y��M��͸�Я��V��������\��������n-��9H�F]�W��R�kR���R��RD�RD���R��R�廯�R̫���?����FQ�Ǻ�R��\�RJ�vJ���vJ����vu���FQ����Rǧ�ק�u���ާ���FQ^���D�I�R��&�D�D��R������R��R���R��������������������������������������������������������R�э�k�R���k�R�э�k��k�R�Ѳ���R�Ѳ����R�\�u���\§��R��ǧ�\��R���\����R��ǧ�\��R�\ѧ�u�\�u���\ѧ��R��ǧ�\��R�\��\���\���\�u��F]�������̨R²��\���0M��\�����͹�vJ��\�����\���\��ɻ���\��vJ��\�����\�������vJ��\�����\�������v��F���������(ON����e��������G�L�R�„�������zN���E=�P��PE=���� ��oMR&� ƿ��E=��E=�+�êRD�3�X�B�QQQ���F] �R&� ƿ��E=�E=�+�ë�E=�+ų�$�FQDů8�,��QQ���F�ϧ� ����ũ�#��L��P�ɰ� �2B������] ����ũ��u&E=��E=�+ų���F] ��H�I��R&����Q�RD� ƿ��E=��E=�+�,��@�ìRD��M�L�QQ����F] �������R&E=��E=�+ų���F{�����@�}$ʱ��������v! p��Ҷ��@��êI��� ��5��v!���U���}h��QSj����o��}h���ϛ��;��I�������������̵wʱ�������֜�QSj���X���+����O}$㜛QSM9/}7��������֜�QQu!�����U¨ȫ�Ʊ�}7Dz���6������6���$$͜��¨ȫ�Ʊdw딾�������U��H�Z���X��ǿv�QJ���N���%Ұ �+�Y��������J������e����$$.���M���@��̰��N���k��v�Q���J���N�@ž̸Ȱ����0���訯�Ʃ��H�Z��ݨ�N���3�O�����uF�PxXN�̨�Rľ�R��o�Ŵ�����D�¨ÊxXN�;���u��G ��D��̯M���̨�R�“��̨������H�+̫ȯ����Ԫ�,����̨��״��M�̨��`T“��ÊQL®�̯_̫�������e���Ω�I����Ib�;��ç����uQQ��ϧ̨����������;����RQQ�ç��J��������\��3�ƴů���d��?R��ů���Pn�u�S��̫��������u�S��G ���G �����ñ�̨R���>���çB����JΧy�� ���eݧO����PnO�0XR����L��=�s�y�� y�W��������C�Ľ���������O⵪OĽ�v°�uı��RQTG ���O ��\�d¨�|�������G ���O �º�\�\����\){�ñ�R���>���çB����JΧy�� ���eݧO����PnO�0XR���JΧy�� y�v°�uı��ñ��P�ýG ���O �����\){b�yR°ñ��*euı�ñ��*e�����e��b�4�`]d�*e�R»eH�uı��eHn��M�*eP�n�������²�d���d�������������\){�����I��uĴb��. ����e��I��\){M*eU�eHCu�L�HL ��H�C��Q���n�����y�G��f��d������������Q���n�������²�d�����������uT���eH�RQQQ�n��M�*e�RQQQ#�L RQQQ���������\F]���*e��6��¬��*euį��b�INĪ���en����������*e\J�`�.���o���O����n�RĪ�0��̫���?�o���O/��ɩ����\)�ϧ���ھ�M�<��W�̯_0���_���4�oɬ��ϧX����4�mK2o����,��){�����" �����?��L�"��P��/�A�b��/�A`{��O3�0����ɩ���+-��ɩ���O3Я��������" ���\�{��Ʃ���wʱ��������v! p��ҧ� W#Ʃ��çȪ���?��"Xv!���U���}�$ǜ�QS�NI�@ź�NI�@�w�ʲ��ϧ?����� ��R�QQQE��H��Ⱥ����J7h����ϧ0����Y��XR��������U���X�����ʷ���X�������ϧ���.#�ܩR�QJ�H�Zv�QJ�騵��̫��͸����9L�ʲ�����(X�W�ê�ç��٧��� ���R���U�����d�u�̫�����U�����̫���u���¨Ʃ��ô���4�F{�E���LB�+��K��L�$ʱ��������v! p��Ϊ��N��W������v���%��� �E�����B�+��K��L�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� ��MU�x�'��LP�$�ǔ!���U���}렛QQSE���LB�+��KwDZ�������ֲ��F������̨��  R��6��n�O�ì����S�:M���=���S��G ���G������ïGy��:CR��ZïG�y�B�tCR�:�CN<���v�ïGu�G�JïG�G��̯_�G��� �ïG���\��\F]ïG�N�R�ïG�[�u�L�&G�U_�#�����_��������˧[�uTì���^f�ïGy��:fïG��R���2ïGu���2��+�e���M�u���2��+�e�����u���2�G��+�? ��������M�J����u���2�G��+�e�����������J������\){�������R�u�ì��R!��^;�JoM��L�oM�S��L^f����oM�;�J���oM�Q��3RQS�RQQ��2��Gy�S��2��ȶm��S��2�� �3�S��2��ȶm2ΰ����S��2�� �3�ΰ������Q���1�����ūH�����R�ի_�����W������ �v�u�ì��R!��^;�J�,���S!��^;�JoM�3�oM�Q���JЭ�����S!��^;�JoM��1��oM�˹�`�����G����Rľ³���G�G��LD��� �L�b�G����� ³���G�������L�GD��������L� ��� � � � QQQ�����G��� � � � QQQ#ƪ������N�X�� � � � QQQ����ɰ� ���� � � � QQQ�������L�G罹�� ³���G���ɬsD��H����I�����ɬs罹�� ³���G�G�O������O�����������~g� �ӫa»�ɬsP�u� �LR�b�GU���@G���`Q������L� �Rĭ���GU����� QQ�����H�� QQT@G�� QQQ���ƪ������N�X���F� � Q���ɰ� ���� � QQ���� � QT. ��#�������ɬs�`� � QT�������I�����ɬs�\\`]G�9HR�»�ɬsP��G�9a��ɬsP��k`T»�ɬsP��A[�uQ^�OĩZ�移�ɬs移�ɬs����移���RQ� �ӫH����ɬsP��A[��k\){~g� ������?�O�u� �LR�b�GU���@G���`Q������L� �Rĭ���GU����� QQ���ƪ������N�X���F� � O����������Pij����H��l�����GP��?�O�\\){G����R�®�?�O��G�������?�Ok`T®�?�OA[�uQ^�OĩZ��������L�G秮�?�O�����RQ� ��������?�OA[��k\�{��OO�E�'�$$DZ��������v! p��Ъ�"P�����N�OO��I�P��I�v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����ϧ���ھ�ӯ��2٧B�������[:�K��P������Z�X���H�R!���U�E��G�I���,�zN�$7͜�QSE���N��<��OJ������;�Uj���B����O3��QQQ����ê�� ů�wנQQ�S��ɮ�����bw�ל�QSj���}렛QQS� �<��(w�油�)V��eP&K�^��U�K���QQVK��U���B����y�� �$7ޜ���QQj���̫���;���w7Ͳ���R�QD �I^������R�O ����P&M����P�F{�ŵ��sw״ͱ��������v! p��� ��X��=�s�B���ƪ���v��%��� �E��ΩZ��Z���Ⱥ���sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����̫�����U�̫������u�̫� ����U��;� ���������b�޲u����U�� ��u�O0��q� ²�������O0��%�� ����������-��o/����+� @���� ��MU�E���wߴ�放E���^K�����P&����W��Ƹ�ȶ��R!���U���}ޠ�QQSj�O�L �+O�L �P�$��ߜ�QSj���B�����O w7望QS��êOJ�h����eP&��C��R�QQ&K��U�ŵ�ƪ��ŵ�ƪ�ߴ߱�$DZ�������ֲ����F����ϧ�êP�e��P�I�����ů@���ӯ�� ���ӽ����ױݧ�J൸������ϼ�������ů@���P@"�"2B���������֧@"�"��Ω�e�������ش��W������K?��){���ů@�wʱ��������v! p��ҧ@�,�W���X#��ů@��O�O��Ȫ����,�5�����v�a&yJ��֌!���U���}렛QQSd�Ƹ��h���;�Uj������ ��MU�x��� ���w�ױ�������֔��������U��H�����X��׿��F{�j��� W���ɱAP�$޴7DZ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSE������+<���H�w望QSG�L�����+�5�ܸ�w״ʔ���eP&K�^K��U��� W����w޴望��QQj���n�������w���ʱ����ͫ��ë����QQ ������YN�$״ǜ���QQE���N��<��OJ�$ǜ���QQ�C��޴ʔ��D ��MU�x��C���油���F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J7͜�QSA�L�$ߴ͜�QS ��� ���n��ǜ�QS ��� ���EK�}$ǔ� ��MU�x�E���w��㔾E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���H�RѲG��²Ȫ���e�]��������G���R���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w栛�QQp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ����F{�������63�$$DZ��������v! p��������63�v� ��MPQQ�x���M��w޴ǜ�QSx�ƪŪ�$$ߔ!���U���}렛QQSj���n�������w���ʱ�����DZ�ë��QSj���B����O3wߴל�QSj���n������2�$7�ל�QSj����E��M� �P�$$ޜ�QSj����o��}h��QSj�;��I������ƺ��B��P�$ʜ�QS-�������Y��w�$ʜ�QSE���LB�+O3��ɰ�}栛QQS�����,�ݧb�E��������ٻ����H�R��@���P��C���#@"��?���O���-��v����PM���=������H�=���@���u�ҭ,�+E��ڻ����M�����H@���`]����R���Ƨ����ȯ����,�PI����v����P�����P�u�ҭ,�+��P���`]���3�R�Ҹ2�������3�X�B���>���,�RB�OMX���P���#�������2[��L���v����PM���=���[N�u�ҭ,�+�?��M��[N�E�/�M������\){���3�E�/R���>�����,�ݧO����P�������������R=l�2Ȫ�����3�X�������v����PM�u�L������ʽuTO��"�¨���MK�u�QTL�t�īb�M��MKɽu�QQT���t��Ɲ�QTM�#����QTO��"2���\�QQQ�R�TOZa�,���E�/�M�\\��{�Y�d}�ʲ]�Y�d}�DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F�ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�ͱ��������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO���R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R���eP&K�^K��U���}ߴʲ����R� ��MU���H���Gȯ1w7�QQQx�����N�$�߲��F{���ɮ��������$�ʱ��������v! p���/�3�O��L�[�#q��v���%��� �E���O�=�ƺ�����v�a&yJ� @���:�Mv�V��%��������)VK���R�����GO4P�$�Dzud�w״͜���B����y�� �$7הV�������UuVO ����P&M����P��������i��RV��U�B�����)QDO �B����F����c�M��R���O⵪O����c��ȫ��FT�O⵪O����c���FT�O⵪O����c�ȩ�FT�O⵪O����c�O FT�O⵪O����c�=��XFQ���O⵪O����c�� �N���1 R�ϛQ����c�� �N�����,?�R�ϛQ����c�� �N��������cFT��N�;�D_��FQF]�M���R�K���R�RQ���c�=��X�M��FQQ��ϧȯ��I���W���Ƶ���@�X�#�<�����#ȫ��RQ����i��bN�J��W�����O⵪O�宪�c��ȫ�Ɲ�M���Ķ��O����宪�c��ȫ�Ƨ�M��\RQ���c��źM��FQQ���c�ȩźM��FQQ���c�O �M��FQQ� /��̫���?����`QQ��Q�RQl�ç��"��RQQ� /��9�����"�#��������� /����,"���� /���ɪ<������i���ɪ�\`]M��R����Z�X�����C��0/�v�u�M���F]�_�u�M����&^ ��MU�x�����N�$��ʜ�QQx�d���$�뜛QQx�ƪŪ�$����;�Uj�������x�;�Z���$���QQ��H���Gȯ1w7ײ���˼�xXN�-ȴK�98�R��xXN�-ȴ�  ��O�y�B����e���SxXN�n��_��PM���OOJK�98��`]K�98�R�yu�L�[�^y�yR�QV��5<ܩ2�y�B��y��uTM�M��G�J�NX��O�ç�x�-��K�98P����\�v��Q��2MB���������O ����\�v��Q����x���������N���N�ì��%�=9�ïG������98��ì���_�������H��v��Q��`QT��eP[�R�Q����d�OJ���d[��u�Q�� �� @��98��ì���OJ� �MKɴì��[��u�Q�� �� @��MKɴì���OJ� �.��MKɴì��[����QQ�R�Q�� �� @�����Ѩ�5<ܩ����G�L���OJG�L��[����QQ�R�Q������Ѩ�5<ܩ��˺n��d��OJn��d�[���\��K�98����(��3��|�R��K�98��P��DO��6�U]9g]98�:�-ɬ��S��(���IH���IH�u�S��(������P��P���Ȩu�SK�98����(��?P��P�?�u�S:�-���P:u�S��(��?��E�'��P@ş�9g�ï����R�?+�ï����F]#4 ��.����Bȶ�ë��B�����N�X��<����޺��O��êG����<��K��޲F]98�:�-�M�o/�����R����+իM�/�V���R�IH����o�e�F���]98��R�鯧O� B����=�X�����v�4 ��.���F]98�:�-�3��-ȗ|R����+Ҹ��L|R�IH��~��e�F��������A�������R�™�������ë��u�S��������N��ë��Nu�S�������A��?�Ĩ⵵C�u�S��B����=��X�=���Ʃ�yƩ��G�y�� Ʃ��J��y�Ʃ�\){�4 ��Ȫ��NP���N'�/u������G+����aP4��/����N\){�4 �R�¨u�4 P�`T�P4��/uL�OP������G+����aP4��/��uQ�����'�/����G�O���O�\F]G����C��u��Ĩ:���FQT��C�O3�G ��W�䵵f�\����\��\`+]D�G����CR�+Ȫ��NRQG����C�RQ��+�NO��"�®��o̧�G��⵵C\�����,�����\`+]D�����Ѳ�������Ӳ�F]�4 ��Ȫ*?�R��N #4 �����X��?��o����v�¨�����?�*��u�4 ��Ȫ*?�#�����?�*���`T¨�����?�*�����u=�����uQL�OPĻ?���?�*�Ĩ4 �����������uQQ���������O����������`�O���M�����`����G�O�\\��Q�ӯ�� ��Į���ç�Ʃ���ҳ�� �ìPOH�>����Q�������G �����PW��P�����IIEZ�2����Q��Y�a� @���Na�ì��%���N��� ��Y�H�$�ðF�Q���ç9�����_�e�� ���$ì�������P��G �����Q��X��P�����I_�����êݧ���O�O�X�B��ů������Q���P����P�����Q��Y������O'>��P��<"ݧ����ݧ����P�����I��)��&���J� �PW����B�� /��X�ԧɬ���QQV�ï�J�Ȫ��௮�L��-����[��ɷ��G��� /R��R��G���u��[��ɷ�������ɷ�R��������I��������F]̸���uı���i��b����̫���Z����ĴGI���W�}߲\){�MK/���ɷ�R�G�RJ��ɷ��Z����\���\NE�X��\������\���v������̸���J�\��FQJ�����R��I��������`]G�G�MK/RĪP��MK/���ɷ�MK/�G��IH�G��ɷ�\`�{�̵��wͱ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ߠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵����������J7Dz����D��eP&K�^�=���IP���I���O�L ������R�QD�^K��U���}޴ʲ����R�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{�j�<�������=��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!����R‘��}ߠ®�êOJ��油)Q��ϧ��)Q���w״Dzu��ϧ�J��X����PWL�çB�@����MG�_-���J�����Үn�X�BR��ϧì���%�G ƯZ�=ȴE��� �+���������J��X�P�OH/�MR��ϧ�J����޺�����e���P�OH/�_����ݧ��P_��'��LR��ϧ��P��mK2�]���������ݧ��P��X�N�FQQ@źB��L�;��M��,��J� �>�\R��ů��uL¨C��I:��rb�L|�C�Q�M��,����rb�L|JM��,����uQ@źB��L�;�#C��I:J <>ů��FQQ@źB��L�;��M��,��J <>ů��\F]�ï�R��ï�#C��I�v�u�B��L���`]�C�R��C�C��I�v�u�B��L��`)���ϧ�C��I]����[�u�O��r��NK�RTO�uQT�r����kR�QQ�@ź���J����I��C���rŵ?2��(������+M����ȧ��\���nɴ��<��ܩ���� ��RľO���D��;�K����򧺏�™�n���ɉ�u�S��n���ɴ����P�O�����򧺊�Snɴ��<��ܩ��BE�P��Pй`����BE��к쵶 �R�����������i/�.R�t���P�I4��ľt������I4�`T�,��N��P�I4��ľ�,��N�����I4�\){�6���I�ů=CR�驰N�X��L�������I4���> ��ݧ�N R��� �P���W��)Q���ݧ����ɧ������������ɽ����R���ݧ�ݧܽ��ɧ������������ܽ������ܧ��ɽ����R���ݧ�ݧ�ݧȽ��ɧ������������ܽ������ܧ��Ƚ������ȧ��ɽ����v&t�ϰI4�u�T���I4�R�QQ>�R�QQ��cR�QT��M����E�/��I4�\R�QT����ͧǝ������ �`�QQT������I����. �\RD�,��NϰI4�u�QQ���I4�R�QQQ�>�R�QQQ���cR�QQQ��K����E���I4�\R�QQQ�����K����E�/��I4�\��Q�����ǝ�Q�������ͧק͹`������ �`����I,�> ���\�F��ɴ=�������GR�™�n��������®ë��ۧ��ۧ;�Hۊ�SE��G�I���,�zN��PzN�u�S�ɴ��i������>=�|�N���S�ɴ=��N�O�6���=��N���S�ɴ�����P��P������u�S�ɴ.��.�u�S�C̩��ȩ��O�D�u�Sܯ�Ʃ����Ɵ���ɱf�̫���?�����,:����`]�o���O3�G ���������̫��������G�o��������\F]�K����>=�|�N���ɱfľN��o���\){�N�zN��GIK�`]��������R&Můɱ9� �����RD�ůɱ9� ������F]�����P��F]�����P��ɴ.��GI�����ۧ�ɱf����Pľ���o������������`]����ë�����`�����+� ( ũ�B�=��=��N���ʧ��F]�O �R�=��O ����uTL�0�����ۧ�ÝQQNĩ����+O3�=��Nľ=��N���0����QQ-ȱO ������+. ��=��N��NO ��uQT���E�/�����P-ȱO ����������TO����-ȱO ��Q-ȱO �\F� ľ�O�I�2O �������FĻ ľ "�2O �������FĻ �E�/���PO �����󧶱���F��H�����������u��RTľ����ȶ*����`QTl�ç��"�İ��\FzN��G���N�F���9��(�GR���9��(���u�S��G���u�S(�P���#�� ��ì��� �^�bJì��%���4 ��G��F{#�� ��ì���� �^�bJì���%���4 ��G��F{#�� �*��� �^�bJ���%���4 ��G��F]G�г��� ��R�GXJӯ�O � ��PtC�vTI©�4 ��+tCг���4 ��Q#�� ��ì��� �RQQQ#�� ��ì���� �RQQQ��Ѩ�� ��ì��� �#�� ��ì���� ��`TGXJط�� ��P��tC�vTI©�4 O�������G�+��Ƨг���4 �`���QQ���G��O��`����Ķ�IJE�L ��������'O� ���¹`����˧�Ķ�IJE�L ��������'O� ������\FTGXJг��PȪ�����_�����tC�vTI©�4 O�������G�+��Ƨг���4 �`���QQ���G��O��`QQS���#�� ��ì��� ���Ķ�IJE�L ��������'O� �����˽��k�`TGXJ ��PȪ���ƶ�ȶ������0�2(AP��tC��`�I©�4 O�������G�+��Ƨг���4 �`������G��O��`QQ#�� �*��� �^�b��Ķ�IJ���0���(A�����%���4 ��G����F��ZB-�ȯ�ƨ� �������@-�����R���?�P�ľ��?������������������@-P�F]��#��������F{�����[��������F]����,ȗ��u�L­���C���������@-��uT⺨'�FRT⺶��GƩFQT�E=��'KDè�FQT⺻?��� ƿ�ӯ=�⺮��O/��,���������FQT�O �ʧ���C����ì`RT�E=��'KD���F�QT�� ƿ�����FRT⺻?�����FQT�G����FQT�GƩ�ȩ����FRT�����RQTW�,��ʧ�������@-��uQQTL�B���R�QQ������C���������@-����,:������`�QQQB�R�QQ�������C���������@-����,:������`�QQQ������ì��B��u���@-�ɧ�ͧ��`QQQ\RF]~g�M ԫ���uԫ�R�H����������u��QH���`T��[�������P��u��QT��[��#`T�,ȱ������#u��T�,ȗ#\�����������ȫ�PMG�/���'�@-�YN�RT�O⵪OO��N��P�u�QSMG�/���'�@-���O�����`N��L�o��L�� /�F]�����=�Ƶ�u�L�=9���:^ȯg��˽�Q��ϧ��M;�K2_ORT�¹���Q��ϧO����ORQTL�ȯg�b��=9�Dȯ8�uQQS!��RQQQ�W�R�¾M����R�^f�����v�V����ɬv�Vt�ȯ8R�V��ë��Ļ©�OH�ۧ=9�^ȯgı����b������˽�ˊQQQ�ŭuQQQ��^G�L�Ѳɱ�C��㩷���b��ȯ8���\F){M�zN�u�!�����R���Jج����@�u�����=�Ƶ���F��O�zN�M�zN�uĴ��+����|b�L|���2�.��\����y�˴G�E�'�R�®�êO�P̨u�S��G ���G�u�SN����n�O�N���������#�����u�. G�W�N�DH��������N�DH����0����#�����`]̨��1�R���3P�1���O� �P̨��IHP�MB���Ȫ�Ʃ�ȯ8��)Q��?P�O�o�������o/�����P��. ��̨�v�O��u&�O�O���P�. ��Ĵ��\���̨���b�_O���3P�o/�����������R�̨��IH�G ����1O������`�;�� Ʊ��>�n�FO⵪O���-�����H���̶��̶��F�ϧ����B��;�� ���>�P家�̶��B��P�;�� ���>F]6��� �M�� �u��O �-ȧ� Ʃo�Ȫ���>M�� ��R�������P��� Ʃo�#��"ݧk�����v�L�ëLQ̶��M����/������K�诰N�M�� �RQQQŵ��L̶��M����/������K��ŵ��L�uT�������ëL��ǝ&ëLQëLRQQDŵ��Lŵ��L��\){O3*,A �u���3P��[���,AP���� Ʃoɬ�R�������P�����I,#��"ݧk��ȪHv�L�ëLQT�ëL� ɝQŵ��LT�ŵ��L ɝQŵ�QQQ���I,ŵ��L��Q����O3T̶��M����/������K��O3�ëL�ŵ��ŵ��L��uT������񧶵��O3��ǝ������O3�ŵ�\F]� *,A ɧŵ�u��W P��>���I,�P��[���,A������ Ʃoɬ�R�������P����������P� �#��"ݧk��ȪH�v�L�ëLQQT�ëL� ɝQŵ��LQTE�/�ŵ��Q����� ��̶��M����/������K��� �ëL�ŵ��ŵ��L��uT������񧶵��� ��ǝ����� ��\){KG�� � �u�� ��P��� Ʃoɬ�v�̶��M����/������K��;�aľëL� �`QkF�3�����޴������F]�M�����F]��_�i����O/�0Pt�ŵ����L�-ȱ0P�M�'2������O/�0Pi���t����uS-ȱ0P�M��t������ >��ŵ���ʧ-ȱ0����QQMBt������MB� >��ŵ���-ȱ0�\���I���u�L�®��O/�0P�ŵ���/��,��#�_M��ʧ�ʹ������޽uTŵ��M�����O/�0�\F]�I���u�=�����O/�0Pʧt��������kuT����K��t�����������ʝ������RQTL�-ȱ0P�M�'2������O/�0PM���t����uQQTO����-ȱ0P�M��t�������ǧ-ȱ0�����QQQ�t��R����Q�����\\��G��:��:��:Rľ¶:��:��:uQQS��G����uĴ@G��`]G#ï�������RĪP��}�ę�Z��\RĻ̫�������e�J�����\���ѓ�����˴G�L�R�¿IK������]��]G�L����G�LPG�LR¾��^ɬ�n�J�@-�˹F�d4����H�N"��N��R��@�,��N�å��u�S@�,�p ����u�Sd4�G�E�'��P�E�'�u�Sd4����H�N"��H⟻�N�çO3���H�N"��GR�I»���������Ʊ�N��Ȫ���N8��H�O3���u���QQQ����ĮH�O3���H�N"P8������\FQQ�E�'��A����*�*e���RQ�E�'��A����*�*e^������RQ�E�'��A������ȯŪ�*e���RQ�E�'��A������ȯŪ�*e^��秬����`]�N�çO3�H�N"�"�GR�I»�����uQTL�O��^�íJ�í޲�R��VGI������R��VN2������uQQT���Ʊ�N��RQQQȪ���N8��H�O3���u��H�O3�H�N"�8��O�������\FQQ�E�'��A����*�*e���RQ�E�'��A����*�*e^������RQ�E�'��A������ȯŪ�*e���RQ�E�'��A������ȯŪ�*e^������`]�N�çO3�H�N"�GR�I»�����uQTL�O��^�íJ�í޲�RQQ�QQVGI������R��VN2������uQQTȪ���N8��H�O3���u��ϧ�I����R�ĮH�O3�H�N"�8��O��������QT���Ʊ�N��R��H�O3�H�N"�8��O�������\FQQ�E�'��A����*�*e���RQ�E�'��A����*�*e^������RQ�E�'��A������ȯŪ�*e���RQ�E�'��A������ȯŪ�*e^������`�xXN� ���H�ZF]m��y�� R��OO⵪O�W�PW�� ç������ ��2���ů�����êP�ɪGPũ9�R�=�s�9���m2����-ȧy�� _�4�t�W��v��#���u��O⵪ORQ���WP���P���uQQQ���Ī��L¶P�y�� ��u�Q���ů�����QQQ#\F]�t�M���R�ε�0��t�M��_ů�ԩMXN���7ɴv“W��M��u�L�©����ȯ����O⵪O��xXN�n���t��Q��Q�O���>��xXN�n���t��t�M������QQQ���u���Tl�ç̫�������eᯬ쯵��"��`��QQQ�O⵪O��xXN�ze���QQS�O���>��xXN�ze��t�M����u���Tl�ç̫�������eᯬ쯵��"��\uT����ȯ�RQT�����W��M���ĩ����W��k�k�M��\F]H�Z���R���I�2=��W#Z#Z�3L��ƨ�v“����u�L“ĵ�[��_�¾ ����A�������uT�t�M���RQ��[��_��!������o�� ���H�Zw7Dz�Q��� ���H�Z�xXN�H�>�����FQQm��y�� RQQ� ���H�Z�xXNRQT��� ��DëL��ı�� ��DM���ı�� ��DKG�\`]H�ZR������X#Z���N���H��v�“�uQH�Z��Ƨ���`T“0��uQH�Z��Ƨ�&0�0���\����4ů� ��������GRľ�C̩��ȩ��FT�O⵪O��4ů� ���������u�S��4ů�o��o�u�S��4ů�.����`� ���J�ů���������v�L�o���o����IƱo���Qo��i�J=9����Qo��.��yJ ��������G���uT��Ȫ�o���o�RQT� �P��ů�ū��������vQQTL� ��� ����������ʝ�y�� ��� �����������J��� ����82Ļ��IL@��,���ǽ�u�Ļ � �#ï��2����v�T��W� ç82Ļ���ɹ��32 ���\R�T��t� �������ʝQT� �y�� �#ï��2�����ë>�yv�T��W� ç82Ļ���ɹ��32y�� ���\R�T��t�y�� ��������R�T��y�y�� �����J��� ��\\��;GO4��G?�'�ƪBRľ��0�j�'�ƪB�կ�ƪB`]'��;��կ�ƪB�'�Ƨ;�`]'��*¹'�Ƨ���������`]6��O������'�Ʊ��̱�ɰ��A1�M��l�*����O���������ɰ�u��L�'�Ʊ�����'�Ʊ��̱�ɰ�uQ��կ�ƪB���������O���������ɰ��Q��'�Ʊ����Q��A1�M��l�*���FQQ�'�Ʊ����`]6���9��'��*���ɰ���I4����ɰ��@G�O���������ɰ�u��O�������'��*���ɰ��M�����I4����ɰ��@G���O���������ɰ�`]6��Z�����R��'�Ʊ��̱�ɰ��A1�M��l�*���u���Z������'�Ʊ��̱�ɰ���A1�M��l�*���կ�ƪB�A���ݧȪ����R��ݧƩ���������I4����v��A���uQ�ų�Ʃ�-ȧ૨ý�A���`T�A����Ѩ��Ʃ�Ʃ��D��R�QQD���Ѩ���N�����R��Q��#��N�����R��QƩ����I,ʽ�˹�������n�����o/���������R��O��N��H��H�u�S�����n������O������=�Ƶ���S��G ����9��@ܩ��S�����n�����¸������M���o/���������R��ïa�������ũ�ȩN������]������v�o/�u�L�����H��b�_¾D����������uT���:�����������������EK�����o/������RQT����������EK���G�?���������������EK���!������賫�������EK�����o/�\\){o/����������HL ��o/����������:�o/�uRĪ����E�/�o/�`QQTMB!����3������������HL ��u�TWo/�o/�u�QS��^�O�J��;�����o/����������:����������EK�o/��J�ïH����D�Y�Ƨ��OH�ۧo/����������:����������EK�o/���G�T��9��@��b������=�Ƶ�����������EK�o/\����������EK�o/\�`QQS!����3������������HL ���`){o/�H��R��ïȧ ���������o/����]���o/v�HL ����������o/u�L»?O��o/���G�?���������������EK���#�L �������������o/��uT����?O��o/RQQ�?O��o/RQT���G�?�Q�������������EK���!������賫�������EK�����o/\`�ϧ���V���?�����ϼ�ϧ�êP��� E��@-�B���� /P��@G����M��ů��ψZ������е������Q��P�����W�GX��#�������ϧ�O�����2@�B�ƶ��#:���Z���K?PȪ��ë�X�������5���MG��"����е�������ϼ�ϧ������P���O/�W�2@�o/P���̫�����< ��eϼ�ϧ� ç@-�oMP�#XL����yݧ���=ȩ2����P����ݧ���=ȩ���ϧ����t���)�E����������Ũ��������ŴY�Z��RľO⵪O��êO�P̨�ľ�E����������Ũ��������ŴZ��D��Z���QQSE����������Ũ��������Ŵ(�����,D��K��O��(�Z������Y p��� /�M��ů����O/�Z������е������F��ϧ���ھ��W���2@�B�2[�ūaM��#:��XPOݧ����ϧ�?��O⵪O��B�ë>�"�B�o����,��M���Q��OH/ݧ���ϧo����,���I�X�EK��P(O2��ï#� �d������ϧc��� "��L����O�Q�ë�P�9O�����P"�ȩ�>��ϧO� q�2��c�-2���o����,�#�����Ū��]�MR�����uĸ�H��Ʃt��ѲZ���Z����QQQJ�b�(�Z��K��O��(�Z���uT� /��W������Ʃt\F��O�R�ϧ���ھ������������ ���t�ݧ���t���R�ϧ��[E�|�ũ=�R��R�ϧ�H2����G�I2�O��ɧW���ݧB�K'�G,���t�������R�ϧ_�O2y�� �ݧ���:��O��O���P����@�PO3��R&I��O���ZUĪ���������ƺŵ?����I��O���Z^�I�-�D�I-�˽��R��RS��n��������¿��S����������Ɖ�uS�����������RQYN��P�uQ?P��P?����MK�R�=��� ƱëL���I�-�uĿ�RT����-ȱO� =��� ƱëL��T��BDb��I�-��Q��HRQQT��NO�0�HR���?+O�0�a&A���W��P���P�����I�-��A��O�0�H���\\�&^ ��MU�x�=9�O0w�望QQx��$״望QQ��ϧ�Z0��ɷ��B����dR���ϧ������ì���%��� �E��Ʃ��x�-�4R���x�-�4wͲ���˼������̫���GRľ��G������̫��`]G�G�O(��RĪP��kO(�ĺ���ʽ�k\RĪP���QO(�ĺ���潧k\F]G�G�oG�� RĪP��JG�oG�� ��XJG�\�&K��^ ��MU�x�����N�$��ʔ!���U�d�ì��J7ʔ��������P��O ²��X����ʷ���X����ʷ���X�X���H���Ӳu�_���ƪ������ůɴM�)D���^�������P��O ²��X��ǿ���X��ǿ���X�X���H����v��QQJ��X�X��ҿ�O�>ڰ����H�Z���˼�d��ߴ0���F�ϧ������G��"�ũ�ȩN�ͧ0M��]��G��"���u��ú����R�Q�ú0����ʽŧʽ��͝QQQ�ú0����ǽŧǽ���\F�ϧ�N��0�����O������ O������G�/]E�8M ����������� �,��u�L���RT�����E�8M MK�uQS��,���úEPĺ��MKɧͧ�ú�ٽ������������ \RQQ�,���ú�_ĺ��MKɧͧ�ú�ٽ������������ \�FRT-ɬ����©�� �L��ݧ��� uQT��󧩸� �L�ʝT-ɬ����ı���� �L�ǽo̧��� �����E�8M ���� �L������Q��� ���)QT-ɬ��������������� �\���,C���n�R��R�,C�n��.��n�u����ľd�RQQ��,C���YN�����Ȩ��������P���ȨuQQS�,C�n��YN�� � ��\)){M���u��ľd�RQ��RQQn��O��i�����������RQQQ&Ʃ��RQQQD���ȧ����+�����������˝n��O��i��3�M�3����RQQQ&;�J�vQQQD�* ����������RQQQD��I�P&�����f���QQQD�1��H����\F�Kŵ��X�n�R��l ��ū�P u�Sl ��ū�ì���ì��u�Sl ��ū� ��M���-��-�ľ�N�;�`]MK�R�oɬu�ì�����J����O��庨:����������O����v�^o/�����ɬ�ì��ϧNE�X���߲�`]�C�L�ëR�oɬu� �KL��`]�:������R�oɬu���ɱM��Jح�&�:�[���\){��R� � ¾H����-�ëL�^y�� �Kŵ��X��˽u�QS�bJ�:������C�L�ë#:������u�QS�b�MKɹ���MR�����u� �����H�Z��`�ϧ��MK/�Ũ�'K��k���)�ũë���������������AoG�/�Rľ™��� /�ľ·C��ȩ���`){Z����H���H��������FK;I�F��ϧ�Z���Ȫ�ŵ�݈���=�X��PO⵪O2B���Pȯ�ƴ����� ƿ�������F�s* ���ǧ��Ǽ��C��R���H�������oM���^������`����4��������ì���.�R��z��s�n�O�D�u�Sz��s���P�u�S��4��������ì���.��.�u�S��4��������ì���ì���ì�����ëL� ���ì���ëL�R��Q���.��ëL�R��Q�����*��JЫ�������\��ϧӯ�� ����������ק�J��X֧���){�̵ɬ�'���I� ��w�ͱ��������v! p��ҧ'���I��������O�OH/P�X�M�� �v���%��� �E��̵ɬ�'���I����i��'��L+ ��v�a&yJ����֧�NHv�V��%���N��� ���֌!���U° �<��(w7ǜ�QSj���B����=��Xw7벹�F�ϧӯ�� ��Į���5���𯭮�����ҳ�� �ìPOH�>����ϧ������G �����PW��P�����IIEZ�2����ϧ�Y�a� @���Na�ì��%���N��� ��Y�H�$�ðF�ϧ��ç9�����_�e�������������P��G �����ϧ�X��P�����I_�����êݧ���O�O�X�B��ů������ψ��P����P�����ϧ�Y������O'>��P��<"ݧ����ݧ����P�����I��)�噴o�ŴE��@-F���){�������O uę�M�O DM����o�ɰ�M\)�Ȫ�E��@-��E��@-�I���R�o�ɰ�d�����N����0aB���W�쯭���"�Ҷ�����\�v�¿���J���,����M�� ��um2�ԯ3#p�������������RT��M�O DM��ĸ�R���QQT�o�ɰ�M����T�o�ɰ�o�Ŵ�������T�Ķ��O���>��o�ɰ�o�Ŵ����念�����QD]�����;�H�����̫��ɴ��X��J�,A���X�����������\FT�m�RT�o�ɰ�MFQTm�*e�m�`T�����į��m2����FQT��M�O DM����o�ɰ�M\F���)k�����>���R��:�P:��M�<�u&��A��kRDN���|DK>=�|RD��^���q^'KD����R�QQQD'KP&G���种�R�QQQD��[��O种R�QQQD�����P&"/^���R����QQV��������RQQV��-�^�DG���R�QQVG��P&��v��QQV��G���v��QQVm�X种���RD[�^G����HI�ñO����UuQ�QQDG��Uu��G����#X�O����P��H��ݧ�Ȫa���W�P����|RMB#X�vĿN�Ʃ�Ʃ��`����BE���N�������R�XRĿN�Ʃ¨�#FR����������ȯ8RĿN�Ʃ�ƹ�b�4�\)�ϧ�êP��� �P�P���,�����L�MG��"�B����L�B����"��@���8MI������]����.ԪƩ�L��L�ŵLu������������>R�oM�����Pƹ�oM���ŵL�N�Ʃ�\R�N����Pƹ��������.�/������b�ŵL�N�Ʃ�\FTt���Pƹ�b�ŵL�N�Ʃ�\R�t���PƧ]�����L�ƩĿN�Ʃƽu��QT���oM���ŵL�Ʃ����T�b�ŵL�N�ƩƩ�`���]����\R�H�������ƹ��b�ŵL�ƽ����Ʃ�ΩŵL\F]�BE���.ԪƩR�ҧ�BE�����PB��,���ŇP�������N��� �MBR�.ԪƩ�L�v�@Ʃ�����`����BE���.ԪƩR�LR�@Ʃ���uT�.ԪƩ�L���`R�/N�R�@Ʃ���uT���L�ŵL�b���P��uQT�.ԪƩ�L��ŵL���\�&K��^��HPѲG��²Ȫ���e�K���!����!����!��!���G���R�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�޲��˼D�^K��U���}�ʲ��˼D�^K��U���}�Dz��˼D�^K��U�;�̵���}ߴʱ��Dz���˼{� ��� ��wޱ��������v! p���؅�ί���X�֯��ƪ�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������%��� �E�� �����������X� ��v!���U���}렛QQSj���n�������w��ߴʱ����ͱ�ë��QSj���B����=��Xw7뜛QS� �<��(w7͜�QS�@���ï�$�$望QSN���$㠛QQSCN<��P�ʲ��F{�j��� W����:wߴʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴʔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F��,C�H�Z�ů��R��RSj�ì��ƪ��YN��Pì��uS�N��<��O�<��OuS�,C�H�Z�6��B�6��BuS�,C�H�Z�?�±��������ľ��0��RQ̫��������ҭ,�ٶ���4`]H�A������<��R�ůA���u�L��1ı�����A����Q��6��B������P�ů�B�N���1��uT<��O�Kŵ��JHX�ů��<���FQT� /��RQQϧ���ھ#ï��2�P������֧B��RQQ��ì����ů�ȩ�ï�Ʊ����QQQQQ^3PѲ�/������. ������������ �v���Q��X��,C�Ϊ��s���R����1���ҭ,�ٶ���4���1���\F]H������<��R�ůM��u����Lµ������ȩ�ï�Ʊ����ů��uT<��O�Kŵ��J�N�X������<����PB���M���ů�FQTL��1ı�����M���QQ��6��B������P�ů�B�N���1��uQT<��O�Kŵ��JHX�ů�����<����İ /��RQQQ��ì���0G����RQ��&3PѲ�/������. ������������ �v���QQJ�X��,C�Ϊ��s���R��QD�1���ҭ,�ٶ���4���1���\`�Ư�ë�.��HI��R��Ư�ë��ŴHI�É�űHI��u�SƯ�ë�.��?�?�`){�������O����P�?�b�o���D.�DHI�ñO�����`]b�O�����R�����>P�� ��PW���>,�4����� <�y�v���u�L�,�4P�s�űHI�ú,�4P��`�� �uĻ�"���uTH�W�=�����O�N�� �l�-���ů��P"���`�QQQD�Ī�"��P=�������>秶�Ū�秶��u��=�\F]#�i���-���ů��P���˧��ͧ��`]�?�������0��R��ȧ�çE��uĻ?����ɧ�������ǧɧ�Ƚ���ǧ��\�E��`]�?O�������0���i��R�ȧ�u�z#�İ���?�������0�ȧý#�`],�͸�H�R��C���ìu�oU�,�M�C�,�M��ì�������H�,�͸�H��C���ì\F],�0����R��C���ìuĸ�GM ,�͸�H��C���ì\��ϧ-?�< ����P��ƫ���-�F]b�̨R��N�P��b�O� B�H�Z�bP� ƧȪ�[��O3��᩸v�°çO�0�H��ŧ����ub�̨��ç�˧O�0�H��ŧ����`T°ç�I4PO�0�H��ŧ����uL­�b��+�����d���P�I4���uQ��B��RQQ��Ļ�[�u�QQTO�0�H���̨��d�[�DƩ�ȯ8�ܩ�Ʃ�P��\����?�©u�QQT����̨��d��O�0�H�J��᧩�DƩ�ȯ8�ܩ�Ʃ�P��\\`]��ì���0GR�ЯG���ЧO� �v°ç�I4P(ŧ���u�L­��̫ɧ�+���R�QQQd���P&������R���D��������v���D[���I4�˽�uT��B��RQT����"#�ŝĴ��?����\F]ì���LR�ЯG���ЧKL�O� �vµ��#�ŧ���u�L­��̫ɧ�+����R�QQQd���P&�������R�������������ز˽�uT��B��RQT����"#�ŝĴ��?����\F�{�Y�d}޴Dz]�Y�d}޴ͱ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�$ʜ�QSd������?P��ߴ望QSj���n�������w״��ʜ�QS�@-��@-J7�״벹���V�=���IP���I���O��� �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R�����R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w�����;�Pj�������˼F{� ��� ���n��ʱũ�v! p���X�n@�, �v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}�ǜ�QS ��� ���EK�}$ǜ�QSE�'�����J7㜛QSE�'��*e� �3}�͜�QSd�@�ƴ���ū��ʔ�_���ƪ������n�R��b�J�b���v���eP& �I^������R� ��MU�x� ��w��ޜQQQ�C��C��O w��ʱ�������֔� ��^ëL����ëL��.�RQQQD���Om����RQQQD0�����RQQQD�O ^GI������F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�O*,A�x�� �$��ͱ��������v! p��ԩMXN�� W�����Nȩ������� �|PO*,A�����v���%��� �E����ߺO*,A�� �v�a&yJ��֌R!� ���O0��q� ²;��I�&�����OL�HP�R����V���%�;��I��O0v����VyDN������J������������R����V��ȯg�N������J���������W���˹�)VOL�H���U²�������E�������QQ��ë����Z���xXN�OL�H�ŵ���Z���OL�H��QQ�����E������QQ��������������������QQ�K ���;��I���QQ��ë����Z���xXN�OL�H�ŵ���Z����QQ�����E������QQ������ò��)V(�^yJ���vQQV���%��� �E����ߺO*,A�� ��R��t�M�xXN���F{������������w���������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R�QDK�^K��U� ���'��w㜛��QQ=���}7�޲����R!���U���}�ǜ�QSj���B����=��Xw7뜛QSz��s}딾 ��MU�G�̵5�$Dz��F{�j�B:���EK�;I����LP�$�ʱ��������v! p��ӳI����LPض�M�v��%��ŭô�� ����;I����L+v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj�EKë�̨���뱷����̨�����޴ʔ� ��MU�E���w�לQQQx�̫�3��wDz��QR�E���^��;�K;I������LH;I���4 ����LH;I��G�̫��R�QQQQQ;I��G���LP;I����L��A'�;I��G� ��������R��Q;I����L��G� �P;I����L��̫���;I����L��N�M���R�̫�3������P&� ƫ���yU�;I����L����R���U�����M��u�G�U�����G��u�̫�����U�����M�̫����F{����E����� lw�ʱ��������v! p��િçL>�#⳧B��ƪW��� Ʃ2�̯��@�,���v���%��� �E�����E����� lv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}ߴʱũ��(�����C����QSj�̯��̯��J�޴ʲ��)V̫� ����U���b����������X@/�������u���eP&K�^�=���IP���I���O�L �����R��D ��MU�x�����N�$�ޔ��DK��U�0G�O�⳺0G�O��J��ױ���ױ̸Ů�͜���QQE����[�ūH���}״��ʜ���QQ��êOJ��ʲ����R�̫�����U�����̫����F�{�Ʒ�wʱ��������v! p������L��թ������C�v���%��� �E���ɰ����Ʒ�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���( ��$ʱ���ǜ�QSE��[:�[:*O�$�����뜛QS[:�(��,��w$ǜ�QSN���J7ʱ�������֜�QSz��s}߲u�QQQ�����9 9}����;�U®�êO���QQQ���� ������$h��QSd���̫�w7望QSE���N��<��OJ��ǜ�QQu���eP&K�^ ��MU�x�d�ŵ?2�$油���R� ��MU�[:�(��,��w$ǔ�d�ŵ?2�RVŵ?�U�RQQV��U�����QDze���R�����BJ� �� @���+M�̨v����<����P�3���"�R���O����� /���˹�R� ��^ëL��Ʒ��n��.��F{�x�̨�M�$���������v! p��ҧԩMXN� ��_W����5����JΧEK���ç�J��M��v���%��� �E���ū��x�̨�M�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}렛QQSd��=�}$����;�Uj�����QQQx����w״����;�Uj������)V ��MU���H���Gȯ1w����;�Uj�;��s���Sx�OL�a�$����;�Uj�����Sx�ƪŪ�$$����;�Uj�����Sx�Ū� 2�$����;�Uj�����Sx�����N�$�㲹�)V�t�M�xXN���R�����/�D�ů��)V=9��O0�;��ç��R�x�OL�a&K ������D;��I�R�QQQD(�D����F{�E���LB�+L�>�$ʱ��������v! p��ҧ@�ìȩ���zN@�,�W����( ���v���%��� �E���LB�+L�>�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� ��MU�E��Ʃ�X���+d�wנ�E��"A �Ƣ( ���Gw�ǜQQQx�d�ŵ?2�$放ï��UxXN�d�ŵ?�u��O����U�d��̫� �ze�u���U��b��N�������d�u����U��b��N�������d��u�G�U��b��N���G�d�u���HPѲ���G²���c����d���d�ŵ?�����G�QQQJ�I²���d����I�QQQJMG�²���d���MG��QQQJG²���d���G���F{���������� �w���������v�VK( ���,�Ƨ��O3����P���"��P�����v�V���%��� �E����������� �v�V�&yJҰ �ί��I�N�ahv��QV���Q�%���ȴ. �� �������رh�ì����VK��U���}렛�����B����=��Xw栛��ª���������O���$�㜛QQQ�ª��������B���Gwǔ�V ��MU�x����w״ʔ�V���^E�PѲ(�&���J�������R�V��HPѲK ����²���v����Q�(�������ó�ê��ï�I�LȪê��ô��ɴ-I���O ����ô-����������� ����JOL�HQ���v����Q�c���v����Q�����v����Q�K �����v���QQ�QQJK ���;��I����R�VE���^������� �QQQJì���%��� �E����������� ���=źi��v��V����@-�������ï���O���J�v��V]����P��^����W��Ƹ�ȶ��R�V��eP&K�^K��U�����̺����̱.�}޴뜛���QQQ�ô⯨�=�� ƺ=�� Ʊ;�}Dz����F{���ɮ��������$�ʱ��������v! p���/�3�O��L�[�#q��v���%��� �E���O�=�ƺ�����v�a&yJ� @���:�Mv�V��%��������)V��H�RѲB����Iv�Ȫ���e�B��� �I���)VK���R�����GO4P�$�ʲu0��_�$�ײu��ɮ���d����w�·�ɮ�����bw㠑��}렑��[��EK�wʲuj���B����Yw7ײ��)Vê�R&;�����RD����O��P��0��M��)V��e�R&EZ���R^ ��M�RS�x�;�Z���$Ͳ���)QDB��R^K���RS·�ɮ�����O �>wʔV��U�B���uV�I�yJ������B�������IvV �I�yJ������B����IvV_������B���MRV�����)QDO R^K���RS·�ɮ�����O �>wʜ���B����y�� �$7הV��U�O �B������F{�j�;��I����� ���ߺ]ow��v! p���L�o����,�#��<��PȪ�]�����v��%��� �E����� ���ߺ]ov�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSN���ʔ!� ���O0��q� ²;��I�&���%�;��I��O0v����VyDN��;��I��yR���Q�QQQD��ȯg�N��;��I�谫ȯ8ˊ���eP&K�^K��U·C��ߴ攛�D ��MU�x��C���7ǜ����x�;�Z���$������F{�A�I8�����9�Ĩ����J�V������FVK( ����ɰ�|���<���X�ze��W��=�s�EKv��%��� �E��I8�����9��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj����QQ��ǜ�QSj���B��������QQwʱ�������֜�QSj���B������������wʱ�������֜�QSj���B�������������Q�$$DZ�������֜�QSj���B����O3QQQwߴל�QSE���N��<��O�QQ��7ǜ�QQu�M��U�H�ۧ� /�L����ʝ�H�ۧ� /�L>��Q�ʽ�F{�E���,M �0G}״ʱ��������v�� �J���v�O0��q� �Ѳ̫���-��%���ȶm��̫���-��>��͌!���U���}h��QSj����o��}h��QS̫��ɴ?�?}״ױ��������v�����;�U̫��ɴ <��� <����!�����U¨ȫ�Ʊ�}7ǔ���J����dv�_E���,M �0G�MF{�M��a�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QS���dJ7͜�QS ��}h��QS����}$͜�QSz��s}㜛QSì���ƪ�7�ʜ�QS���ï���栛QQSA�,�-+"�����$ʜ�QSj���̫���;���wh��QSj���B����y�� �$7ל�QSj���B����Yw7ל�QSd��w攛�D�=���IP���I���O�L �������R�_d4�MR����d4�Mu��_&yJd4��O �����^M����P�F�ϧ���O⵪O|�������d��e��P��M;�KP���ϧ]�W����9ë>���EK�_��Pȩ��ݧM;��X��ϧm�X����Ƨ]M����){�xXN}״ʱ��������v! p��ҧŵ?2B���K���-2��B#������ë������O�v��%��� �E���ö:�����xXNv�a&yJ�Y�a� @���NH�!���U���}�ʱ�ëǜ�QSj���o�źzL}�ʱ�ë��;����J�M������«/��/}޴ǜ�QS�@-w���ל�QS���ï���$͜�QSj�. �>��>���/���P�h���v�����;�U�/��/��!����L��� ���c���R��t�M�xXN���F{��ɱGI�wʱ��������v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj��� W����wߴǜ�QSE��G�I���,�zN�$7放��eP&K�^K��U���B����y�� �$7�ʔ��D��U�N��K���������F{��C����O0��q�h��v! p���C��٧��0��q�v�a&yJ���������ڧ������ԧ�����ӧ������ا�V����v�V��%���ȴ����� ��� ��$ì���!���UR�QQQ�C����d���Jh�ǜ�QS�C����d�?P�h��QQSd�̿��$ߠ�QQSj���B�����O w7뜛QQQu���U�����u���eP�R�QDK���D���U�� �K�����R�QD��� ���D���UJ������C����O0��q�����R���®C����O0��q��M��R�_�C����O0��q��_R�O0��q� ²���&��%�>��O0�������B�������.�ï�P�ˊF{�ŵ����ŵ������w��v! p���/���ï ���� ?�< �W� ���ūH2ȩ�� ���v���%��� �E�����E���ŵ������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSŵ����ŵ��������$렛QQS���E�������P�$㠛QQS;�J7͔���U�����u�G�U�G�u��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^EKM�^�U�����������;�Ku���QD���������R���QD����J������G�� ��.�v���QD������� Jì��%��� �E�����E���ŵ�����ú�=źi��v���QD����@-�������ï���O���JԌ��D ��MU»��E���EKM�w�v���QV��;�Uj��������F{���P�$ʱ��������v! p������v���%�Ū�ŵ�Ʃ������ܫƺ�⳨v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj���}�ʱũ͜�QSj���[��̨w7ל�QSj���̫���̸Ůw�望QSj���B����=��Xw7뜛QSj������@�̸ŮJ�޴͜�QSH ��}״ײu�QQQ�u�D_���ƪ�����⳨�n�R�_�⳨�n�R�̫�����U�����u��b�J�b���v� ��MU�E���w�ޜQQQx�����N�$�㔾��eP& �I^������R��������U���X�������X�������X�X��� /�Ӳ�F�A���ê������X�3�MR�z��s�n�O�D�u�Q"A �ƴ� N2��P� N�u�Q̫������ũ��X��,���W��ܷ�v���%��� �E����Zë������ì��v�(�^yJ���vQQV���%��� �E����Zë������ì�⌾���5��^����Ʃ��I��Zë��N�?�E��!� ���O0��q� ²;��I�&6��P����ˊ�0��3���!�>=�U!�>=�R���QS�yJ�I�Vë��N�������%��� �E����Zë�������?���I��Zë��N�?�E��������F]�ƧK�u�zRT���FQTH�>D0�����DOm2��FQT���*X� /FQT�b\�{�i��?w�ʱ��������v! p�����_�=�sv!���U���}栛QQS(�wʜ�QSⵯ_�$ʜ�QS�@���ï�$ߠ�QQSj���n��9�w�ǔ���eP&K�^K��U���[��̨wͲ���R�QDd�^K��U���}7Dz���R�QDd�^K��U���}�ʲ���R�QDd�^K�NK��� ���}״ʲ����R����*e��B�c�²G��������{��ɱ.��x�� �$�DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�Oi�w7ͱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�$ʜ�QSj���[�����w望QSd�ì��J��$ʜ�QSj���B����=��Xw�ǜ�QSj���[��̨w7뜛QS��êOJ��ǜ�QSj��=�s�[��ɷ�w$ߜ�QS̨�Jh��QQS�ƴ�>�����s}�$ʜ�QS���W�I���4�}$����;�Uj�������8����QQQj�������8�2��ޜ�QSj���n�������w״��ʜ�QS�ô⯨�=�� ƺ=�� Ʊ;�}7望QSj���B����Yw״ǜ�QQ��j���n���������ëw7�ל�QQu�_���ƪ����Oi��n�R��b�J�b���v���eP& �I^�����R�QDK�^K��U���G����w�$ʱ�ë油���R� �I�yJOi���I�F{�ŵ����ŵ��������$��v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}���(�����C����QSE���N��5���7ߠ�QQSŵ����ŵ����n�$�ʱ�������֜�QQ���@���ï�$�7͜�QSlP�$נ�QQSd������`]���� ��R&� Ƨ� �RD;�a;�HRD����1 �����1 RD���� P���� �RDMW��MW�RDȯ8Pȯ8��F]b����b�P����ѓ�����˴K�R��"A �ƴ������� Ɖ������� �u�Sȩ�H��O �ȩŨ��Ʃ��Pȩ�H�u�SxXN�n��_��Px����H��O uİ������ ƺd��O DO �N�ȩ�H��O �N�D��J��޴$$��0�����\){GI�*�����uĻsRT� /J��<�����������\��FQTx��_²��������\�������n�R��E��G�I���,�zN��PzN�u�S�������i��.��ľ�N�;�`]�MR�GI�P�����ȩ�H���v�����u�L��0������uT� /��W���<��������ȩ�H���0������0��`QTzN��GI�RQ.�������i�^ȩű0������\F�H�Z���i��R�¨�i��n�O�]��i���T��i��zN��R�QSì���ƪ�O�-ȱȩűH�Z���Sd�o��/�=9��G�O��-ȱ=9��G�O��SH�Z�ëL���.��H�Z�� �N��H�Z�����i��K>=�|���i�R¾.��H�Z-ȱȩűH�Z��������H�ZFQD� �N��H�Z-ȱȩűH�Z����ǧ� �N��H�ZFQDo��/-ȱ=9��G�OJ�����E��i�G�O�������F]��i����� ����i�R¾.��H�Z-ȱȩűH�Z��������H�ZFQD� �N��H�Z-ȱȩűH�Z����ǧ� �N��H�ZFQDo��/-ȱ=9��G�OJ�����E��i�G�O�������F���(��O�N"��@�R�¸�(��?��E�'��P@ş���>�HL ���O�N"�R�Ϋ>P���O/�Y�Ʃ2O�N"�W������"X�v�O�u�@ź��[������DO�N"��� DHL ���O�N"��蹧O�\){b�HL ���O�N"R�������P���O/�HL �2O�N"�v�u�b�_�@ź.���O�N"��� DHL ���O�N"����>�HL ���|�R�Ϋ>P���O/�HL �2��|�W������"X�v„�|u�@ź��[������DO�N"��� DHL ���|���#|\){b�HL ���|R�������P���O/�HL �2��|����O�N"��� �v�u�b�_�@ź.���O�N"��� DHL ���|�����0�<>�R��q���#��0��P��|��������v��uTb�_�@ź.���O�N"��� D���0�<>�`T�ů��u@ź��[������DO�N"��� D���0�<>���蹧ů��\F]b�O�N"�����R������@G����O�N"��� ݧ��ç��O����G�O2_.���R����ھ���<��ܩv�u�b�_�@ź.���E�'�O�N"��� ����M��H��IH����� ��Ƹ�ȶ�R�¨��d�n�O�D�u�S��̫������»e�����TM��a�m2�O�m���IH�����������u��So����o���SM��H��������P�O�D�u�SM��H��IH���ì����ì����IH���SM��H��IH����� ��Ƹ���O�D�u�SA�,�-��"������P���ľ��0��̫�������e�( ���I�X��Ƹ�ȶv�ũW�m���IH����������`TȪ��Ƹ�ȶ*e�e��������Ƹ�ȶ���������\R�I���Ȫ��B��o���DM��J� �����v���QD���J������FTȪ��Ia�z#��������G�W"ì����IH���Ƹ�ȶ�B�ì��\R�Ȫ�O�����Ia��Ƹ�ȶ*e`To���I�X�Ȫ�]�������vT���IHP���Ƹ���e�MB�ì��vQQT�ï����o_��ì����O����`QT���IHPȪ���I��,��vQQT�ï����o_�쪭G�@-�Ωo2@-�O�����`To���I�X�Ȫ��B������vTI���Ȫ��B��o���D�IH�P&�Ƹ��&�����U��I��,�����FQT���IHPȪ��I��,��vQT�ï����o_�쪭G�@-�ŭ��Ωo2@-�O����\F�����F�ȯ8�Ʃ���n�R��ì��ƪ��H�Z�­���H�Z��Sz��s�n�O�] ���֊�Sz��s�ëL��¨���Sz��s��O��eP���*����S;�G ��IH���O�����Sȯ8�Ʃ���� �N2���u�Sȯ8�Ʃ����/N2�O�D����o��A��Ʃ�����Z���4������ʯ�ӿ�����F{�o��A��H6�������X����V����θҰ����ڪ��Ү��������Ӯ�������òF] � R����J�¹ ��MK�FT�eP��� @���FT���*��J������״����������`]�_�����uĭ���H�Z����� �^0������`�:*MK��n�R��:*MK��;�������u�S:*MK��E�/�� � ���u�S:*MK��oG�/P�O�D�u�S:*MK��?���u�S:*MK��;�����?���u�S:*MK��O������?���u�S:*MK��:��M�����u�S���� /�°� /��S��[���������u�S��̫��������u�Q`]�MR������)T� /�:��M��R�ɰ���:�����������O����FQ�B��=�Ƶ��6��������O"K�"��FF��ı��J6��������O"K�"�O�������ޱ�����������QQ�O3���QQ���F�QQ����:��D6��������O"K�"F�QQ�Ϩ��*���:���QQ�F�Ϩ��*���:P��^6��������O"K�"�����˼Ϩ��*���:P��^6��������O"K�"Q���˧�һ��O'�XB��6�P��]M�ǧ���F��ɴ=��E���zL���R���ɴ�����P��P��������A1������+. ��=��N�zL���R�&Ʃ�UI�PA����C�˧O �u�L°�P�b�_O ��=l�Pľ̯��������������uT��O �RQQT��[��_¾zL�Pľ̯�������o�������`�ĵ�[��_¾zL�Pľ̯�������>��T��[��_¾=l�Pľ̯�����������������`��A��&���P�MB�����°��ѰDCL˽���������\F]A1������+O ����DzL���R�&Ʃ�UI���˧��2-�u&̯��̯����FQD����������F]A1������+O �P�zL���R�&Ʃ�UI���˧��2-ȧ��������I��u�L�=l�P�b�_��2¾=l�Pľ̯��������������uT�Ĩ:��ľf���I����MB�����=l��`QQS&������/�*�����DI�P&fľf���I����˹\){A1������+��O��C������ ��DzL���R�&Ʃ�UI���˧��2-ȧ����#u��F���ZH��R�쵶 �PW���X�����̯�P_��i�v��[:�.���u�S��H��PH���̯Ũ�Ȫ����#�uı������¾�M2��CR�QV_��R�QV�OR�QS��̯ź���u�QS��̯źf��C��Q��R�Q�������G�H�\){̯Ũ����M���R��M2��̯�PO�����zL�v¸�uı������¾�M2��CR�Q�D�OR�QS��̯ź���u�QS��z���oM�罧�&�M��2��ů�2���e�˧稽u�QS��̯źf��C��Q�ŝ�����G�MB����\){̯Ũ�O3�R��M2��̯�PO�O3B�����R��W���P��M�X���̯�PO��������#  <����R�̯�P�ï�K��PI����O3��v¸�u�H������N"RT̯Ũ����M��2��FQT�������¾�M2��CR�QQV�OR�QQS��D̯źK���̹������D̯ź���̨u�QQSĶ���D�M��2�̨�u�QQS��D̯źf��C��QQ�ŝQ�����G�QMB����\F�d�ì�����4 �9��X��C�L�I�R��Rd�ì���YN��Pì��u��n��9��9����ì���9�:9������9�* q��D�����ʧ�ʧ����\F]���9���O�0�HR��YNO�uL�9��Ʃ�G��H�Z�y�O��� �O�J�ľ���G ���O⽽uQ��9��ë���ì���9��9��Ʃ����RQQQ� /������ا��ֲ�QYNO�OH�ۧì���9�9��ê�ì���9��9��Ʃ����k������RQQQ� /������ا���β�QL�O��YNO�u���ì������"�O���QQQ��R�QQOH�ۧì���9�9������ì���9��9��ƩO��`�QQQYNO�O���k`�QQ��R�QQYNO�O���k\\\){�,��9��X��C�L�I�R�YN�uĻ�RT�O�uQ9���O�0�aYNO�\F]��4 ���� u�ì���Ȫ�3�����C�L�I����,��9��X��C�L�I�uTì���b���� Jì���%�.���� �E��FQQ����R�QQDKŵ����R�QQDKŵ���1��R�QQDȱN�����C�2���������v¶�����������u����'2������������\){���� A�����������R�Ϊ� ���������� A���ƴv¶���uĩ�����W�,���M����������ͽD�ĸ��C 秶���������\){� A�����u�o�RT�ͧ��������RT�>�秶������RV��aİ A����������秶���\){-ɬ�� AGI�u�=���M�#���uT��� A秶��RQTO���M���\`]/ñ� AMK�u��Ķ��0��MK�`QT�ٳL�ҭ��|��"���J/ñ� A��ɰ� P��0��<>�M��WI��|�\R�=������� A��RQQQ�������O���*��R���'>���>�O��ɧ�����>�ôv°O���*e�euı��eRQT�e�Ĵbӫ��ÝĨ P�M�E�/�bӫ����e��O���*e\\F]�����<���O*e���e��eu���b�4�e�J���<���O�`]KL�O�����>��R��L���O �����v���e���u����RT�Ĵ���O �����ĸ�H��eO'>���<���O*e��@G�eP����uQQTKL�O�����>��e\RT�KL���\�&��R�!���U®C��C��O w�h��������ֲ��ϧط� �R��QQ �Y���⵪������w㲹�ϧ���R��QQQ���O ���B�����O w7�Ͳ��ϧ���R��QQQ�uQQV�XX^����Ʃ���ȴ�H���ȯ��ūH��˼��ϧ�V����Vէ��?X������D�������U���E����������|�̷�O'v�Q���E����������|�̷�O'���v�Q���E����������|�̷�O'��/��vQQ�QQJ��E����������|�̷�O'�0�������ʲ�˼�ë�ñ�)V����R��Rij������1 RV,�������RV��ɩ���� X�$��RVG����ɩ��RS�ߧ�ק�ק��uVG ��G��RS�ʧ��ͧ��uQͧߧ�ߧ��uQק���ާ��uQ�ާ�ǧ��uQǧ��ק�㹹FRij����GIRV,������ߛ�ϧ�7��RV��ɩ���� X�$��Q�ϧͧ��RVG ����ɩ�P���RVG �P�FR����ëL�Rı�#���[��'KRQQëL��'K�HL ��RQTëL������c�'K�RQQTz��&�B���OD�B��O���D����\)Vȩű����R&0�����RD�M�O3P�RDɱO3P�RDɱ⵩��2���)V'K�R&,Mů�R'K�,Mů�FRDGũR'K�GũRQ�E=����ŧǧʧʝ�E=����ŧʧǧʝ�E=����ŧʧʧǽ�FRD��/�R'K���/$��)V ��@GR¾,Mů�RDGũRD��/��F{���������Ũ�� ƫ� ����;����w7ױ��������v! p����L�a�� �PW�;����v�����/�D�ů��R!���U°��������+;����w7油�)V �I�yJ;�����OL�H��I�)VO0��q� ²OL�H��%�-��K@Z����������Ũ�-��o/�O0��q� �OL�H+��QS���.�ï���%�-��K@Z����������Ũ�-��o/�O0��q� ���.�ï�+���)V_��������Ũ�.�Ʃ���M)V��ū�&J���;����vQQQ�V���J���;����v�Dŵ?����������F{�ŵ����ŵ��������h��v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}��ʱ�ë���(�����C����QSE���N��5���7����(�����C����QSj���G����w����(���G��QSŵ����ŵ����n�栛QQS��êOJ�ߴʔ���U�����u�̫� ����U���b����������X@/�������u�G�U�G��F�{��� lwh���������v! p��િçL>�#⳧B��ƪW��� Ʃ2�̯��@�,���v���%��� �E��5Ȫũ��� l�)V�&yJ���ͱӳ���v�V��%���N��� ����ͱӳ����)V��eP&K�^K��U�0G�O��J������7̸Ů�ǜ���QQE����[�ūH���}���뜛��QQ��êOJ��ǔ�����D�=���IP���I���O�L �����R�����R�̫�����U�����̫���u!���U���}렛QQSj�̯��̯��J��ǜ�QS��̸Ůw�͜�QSlP�$h���;�Uj�����QQQj���n�������w���ʱ����ͫ��ë���F{����E�����,wh���������v! p��ҧū��ŵ?�X��=��PW�������,��X�v���%��� �E�����E�����,v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���U���}޴ʱ����(�����C����QSlP�$נ�QQS5���2�$ʜ�QSj���n�������w���ʱ����ͫ��ë��QSj�O <>GO4+O <>�GO4P�Ǵ$ʔ!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U�����u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^EKM�^�U������������������R���QD����J����.����D ��MU»��E���EKM�wʱ��������v���QV��;�U�����������F{������������w߱��������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�Nahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R��VK�^K��U� ���'��w㜛��QQ����������O���$�ʜ���QQ���dJ7㠛��QQQ=���}7�޲����R!���U���}�ǜ�QSj���n�������w��޴ʱʸ���ʱ�ë��QSj���B����=��Xw7뜛QS ����C�L�I�*���$�͜�QS� �<��(w7ǜ�QSz��s}딾 ��MU¨��dJ7�ʔ�G�U�������F{�����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QS ���=��w޴ޜ�QS ���=���<��Ow޴㜛QSE���N��<��OJ״ߠ�QQSE���ܫ�I�������̱<��Ow�ל�QSE�0�s}�͜�QSAB�M�z��s�.�}�ʜ�QSN���ʜ�QSj�����/�ȩ�J7�v�����;�U�ô⯨�=�� ƺ=�� Ʊ;����_�����n�R���eP&K�^ ��MU�x�N���ʲ���R�QD �I^������F�{�Y�d}$ʲ]�Y�d}$DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSd������?P��ʜ�QS�@-��@-J7�放�=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�L��;����[��̨wʱ���v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʔ�̫�����U���������u���U�����d�u�̫� ����U���b������޲u��������U���X��ǿ��H�Z���X�X�ի���Ϊܩ�������X�X���H���I��ȩ�������X�X���H����:� �Ҭ쵳�ӯ�L ����;�̵O�ze���@K�A���!��D3K���u���eP&K�^K��U�p ��w״望��QQd��� �$뜛��QQj���[��̨w7㲹���F�ȯ�ƻ=�6��������GR���ľdUd��GDO��6�U]G�����QQDdS��G��]G������Q��ľdUd��������u�QQDdS����������Q��ľdUd�������G�Gu�QQDdS�������G�G��Sȯ�ƻ=�6�������u�Sȯ�ƻ=�6�����u�Sȯ�ƻ=�6������?u�Sȯ�ƻ=�6���E�u�Sȯ�ƻ=�6���E��?���)��ľdP{G�G��R���H��+���"���I��u�Q� /��� <����QQQ���������ȯ�ƻ=�6�������IH�� ����L�O����G���Ʊ�I��D����GP��Dɱ����ʽu�QQQ� /���O������Q��P���O����`��QQT�P�����O���O����\\\)��ľd]G�G��R�ĸ�H�P�G�G��L������u�T� /��� <����QQTL�O���Ļ��GG�G#^�������G���ƺ����R�����Q&����GP���˽�u�QT��P���O����`��Q�P�����O���O����\\`�E��O3���� ����R��E��O3�H��H�u�SO��N��PO��N�O�:��SH6����n�O�������۹�����������u�&Ʃľf�����R¾@R�M�^�����B�v�Vt�ľy#���QQV�Y�Ƨ�Ĵ=���+o��LR��QQTG�J�Y���Y�Ʃ2v���Q�f������QQQJ��B�۲��˹�F]���@G������!��R���J�:�ί��"��u�����������#�����Fϧ���B�M� I,���_�=�s�ϧિó��C�:���ï��2���������X���������Դ�ϧҳ�����P ��=��=ȴ�� ��ƶ�ȧ����){�N����U���IP���uĪ���秶FQT��İ /��. G�`QT��H��,���M�����uQT�N����P�K���`QQTL�����>�秶����ʽ����īb���������b�̽uQQT�H����I����̽�H����I�̧����\`������E�/��E��@-�I����FT��RT� /���� ��I��|��PO⵪O��FQT��i���ɪ�`TL�ȯgı��E��@-�I��򧻪�G�>����I�I,��uT��MR��6�����'>��[��[���b�yR������'>��Ň����'>��ūa�'>�C�v�Cuľyb�[����C\){b�'>R������zL�'>����PCv�Cu�b�[����C���xXN��L��OL�H�n�F]K���A���R��������>�A�����v�����u�L���Ļ���u�T���������`�QQTK���A����ŝ�Ž�uT. A����Ȫ�����\){��?R��?�Ȫ���>A���ݧ����v·��u���ɱM������^�ɪ��EK���\){��?���R��?�#����v©ɪ�u��ī��ɪ�0�秩ɪ�`QT��?J����E����e��\)]��ñO0*��R��%��ů��������������↑ �E��������F]O0�E�8M R�&Ʃ�U��������u������į���������L��OL�a����`QT��?J�D�����?��L�_���d�`T���L�OL�H��������L��OL�a�����uQOL�H����RTLµ̫���-����Դ�����uQT���J�� �E�Ĵb�G��`��W�ñO0*�Ĵb�ç�`�Ļ�?G�J��ƶ�ȧïȧB�6����ë�L���������JR������\\){OL�H�o���R���������LOL�ao����,���v“�u&���O0�E�8M ���FQD�,���������L��OL�a��,��Ý�Ji����F�H����-�M����ƨRľ�,>��d�n���9��s�QQS,>��d�M�� D��G � �����N����n�O�N���S�ZB-����u�S�N��<��O�<��O��6��]���Ʊy����1�u�Ļ�uQ�RQQ��RQQQ<��O�M�����ƱyJ#�<�������Q����1�RQQQ<��O�M�����ƱyJ�����`QQQl�ç��"���RQQQ9��sN�DH/������QT��^A��Ĵb� ������R��QTG � ��\\F]��ƨ�0�����Ʊ0��D����E�/��`{�]�������1��ʧ�ʧ���ʽ��ϧï��]���1���P�:��3����1�����uĨ�.ۧ��1���Po̧��`](��L���1���Uuĸ�H��Ƨ��1��ƨuT���Z]�������1��Ƨ�ƨ�0��DM�<���ĺ�]�������1���\F����6��n�� R�™�B����=��X�=��� R�S���6�� <>� �I�� R�S���6�����6��6���� �� ]6��Ȫűo- �� R�&� ����� R¨�P���1��� R��L����!ŧ������ RQQQ���^o- �����˹� RQ����1���� �� ]�������[¨�U��f������� R�Ȫűo- �#��� RT�6��6�N����[ � RQQ��C� RQT�6�b���G�ƶ�ȶ��6���f��� RQT�6�HL ����O/��6��ŧ�����\� �� ]���O��"�B���[ ��P �� R�O��"� RT�µ���� RQTL­�����[��P���� RQQT��H⧭��� R��o̧������ R��\� RS�� RQ ��� �� ]��� ����[ ���P��[ �� R�Ȫűo- �#��� RTO��"� RQT��B�P����[��� RQQTLµ�[�����ı�����[Ho2���G��� R�Į6���[�ۧ�ŧ����[��� R�ĵ�[��_B�U��[����������M�������\��� RQQ��� RQQ��[ \� �� ]9��������~8��6��S����� R�Ȫűo- �#��� RT=��M��J����9�����#����� RT���MB��������"� I� <>� ��˧���� RQQQO��"�B���[ #���� RQQQ. ����[ �#���� RQQQ=��M��J9������zLݧ��[����\�� �������̨���<���R�³���Ň��Ňu�S�����̨���I���Iu�S�����̨�E�����u�S���?��P�O�ȫ����S6���M�X����ů��ů��KO�繏���6�U���6�P�O�ũë�����]�����#I��=��A�����Ы/�ݧK�����۲F��ϧ]M�������[�#������ ��b��Z�� ��Om�){"���:^@G�Ԫ��Z��,�𵻻���/�=�����`]G ���� ƿ��E=�u�L�G���P&� ƿ�ӯ=��� ƿ��E=��uT�r@���P&G�L#�˧ɬ\)�r�����[����-�urzNRT. �r�����P&;��4��5�����#��ľ@G�[����c�任��任���\`�����^�b���+����|b�L|���2�.�ʲ���F]�̨�Om2�u�ϧ����B��ç��������B�W"�OOX�K�N�X�R�ϧ����� �R����.�������[��_¾�軪�����E�/��M�FF�K������ F��ϧ�6������O� ��ϱ�������������������������������������������������������������������]:��u�MG��"秙�������B���`]��N���uį�MG��"秙�������.�/�ɝī> ���ɝQQ��E�/��\`]�����H���u�MG��"秙������ԫ��Ω��`]�����u�MG��"�̫���?�O��ɴ���`]��C��u�MG��"�̫���?������`]ů�L����u�MG��"�̫���������L�ɽ�){=����u�MG��"�̫������������`]M���u�MG��"�̫���������/����`]Ū��M���uį�MG��"�̫������/���ɝ�MG��"秙��������/��\)�ϧ�/� �O� ��ϱ�������������������������������������������������������������������]O���u�MG��"秙������������`]KO���u�MG��"秙������������`]y���u�MG��"秙�������4��`]ȫ�L��u�MG��"�̫����������ȫ�L��`]H��L��uį�MG��"秙�������Ω�ɝ�MG��"秙������Ω��L�ɝ�MG��"��,�L�ɝ�MG��"���IΩ�N"�ɝ�MG��"�̫���?��.�ɝ�k�ɝĴ��ɧbӳ����ҭ,�\�������.��M��R�ª���/�ȩʼnȩ�u�S����/�?�?u�S�����H�Z�H�Zu�S=ů��o����`)�ϧ�a�P"�-ȧŵ�<��K��������O�OL�H����H�Z�m�����Ȩ��P嶯���.�����ȨF�H�Z�m������P�?�.��O��>J���������.�����Ȩ�`�ȩźGI���H�Z��N�ëL�^'KDK�D�P嶯���.��`�������������ȫ�P0B��n�R��O��N��P�u�S�̫ɴn�O���֧���ֹ��"���Rĭ�:^0B�U��`]0B��u�L�&Ʃ�U�y�[��˧�uS�@RQ�����G�����J�yJ�J�[�����0B��@Gu�!��R���JЯB�������۲u���RTW��0B�P�.���uQQ�&Ʃ��0B�������F]�0B��@G�M�<R�Ȫ�A�0B��@GRQ&b�M�<�RQ���uQQ���J�.��0B��&Ʃ�ȯ8����R���DO�0�H*���̨R���DëL���Ĩ�.������D0B�P��˽��`]����0����uĭ�ORS0B��@G�M�<uT�+����|�b�L|���2�.��\)ĭ��F��ϧK')�E�|R{��ɬuTL�yJխ��թ ��ƨv�[�G��+���`�Q0B�^Ʃ��ɮ����y�yD[[��uQT��.�������[��_¾0B����o̧0B�\F���4Ÿ ������BE��R�驻M ��BE�P�-�2B���� �|�2��#�zN��F]�BE����� �����[����A�R��:0-/P�� �|X��P�BE��9��[��������@-v�o��A�i��O�������[�H���ŵ?������#��fi��O����uQ�֩��PzNB���[O�����������I#����P9�L2��Z��[����-��PB�ëL�=�P���O� ���`]�BE��Ъ��@-�� s���A�R��:0-/P�� �|X��P�BE��9��G�� s�����@-��3�W������I�ŵ?�v�o��A�����@-�G�� sH���ŵ?�����������@-�G�� s�O�OH/�uQ�֩��PzNB���[G�� s���������I�ŵ?���`]�BE���ɬ�?�ᵷ�ί��"R��:0-/P�� �|X��P�BE����C�4Ÿ��駩ɩ���N�MȪ�-ȧŵ?2�����v�-ɬ�ŵ?������H��uQ�������Pŵ?2�����W�-�ŵ?������M���O�����ɪGX�ŵ?2������`]�BE�����ҳ��?�ᵷ��ί��"R��:0-/P�� �|X��P�BE��9��� ��@G������ŵ?2����P�OH/�_[�G�Ov���ŵ?������UH��uQ�������P�#��2@G����ŵ?2����P�OH/�_[�G�O�`]�BE�������� ����ί��"R��:0-/P�� �|X��P�BE��9��� i�PO����P���ŵ?�v�b�i��O����UH���ŵ?������uQ�������P������#��fB#��O������`]�BE��Ъ��@-�� sί��"R��:0-/P�� �|X��P�BE��9��� G�� s��������@-�W������I�ŵ?�v�b�����@-�G�� sH���ŵ?������uQ�������P����K( �X�����@-����W������I�ŵ?��`��.��zN����5�����@GR��:�-���P:DO��6�U]����S:��:��:u�S.��zN����5����O��5�������������5����U�5�����uĨ��������CR���CǧC͹MG��"�:���C�֩���2C�`�Q#5�����`]����5����ԪGR�ŇR�O��uTL�&Ʃ�U�5�������r��P���QQ&Ʃ�UB��L*6��*����*KL*��[�*��>*���R��rb�z�2���uQT�r������P&;��4��5�����@G�QQT�r�ͧ��P&;��4��5�����@G�<�L��ĸr�����P&;��4��5�����@G�<�L�ɬ��J�5�������QT�r�����P&;��4��5�����@G�<�L��B����T�r�B��P&;��4��5�����@G�<�L��B�v���QD�@�Ƨ���6��*�6��*����R�QQ����O��\RQQTW�Ĩ�����5����P�5������u�Ĩ5����rz�2�&B��L*B��L*�R�QQQ��QV����*����*�R����VKL*KL*�R����V��[�*��[�*�R����V��>*��>*��\\F]#5�����@Gr� q�5����ԪG`�d�ũ�����n�R��d�ũ������e�ëL���u�Sd�ũ�����ũ����O�W��d��ľ�N�;�`]W��G ��R��J����� ���,���W��dv�M��'Ku�W��d�M��'K`]W�*eR���>���e������tf'K�d��|���N��RB����O3�O3�G ���B����W���e�B�@,�#��R���9�W�2��� /�� �N�� P� ƧB��4�R�e�Ȫ�W�2G ���v»ey�'Ku�L�M�Q��O3*e��ey�Q��TW��G ���M��'K�uT��� *e��ey���\){�MR��/�0M���E��@-���,���� ��e��������O ���FQ��'Kd�|������쯭�P���ePB#�������2'K�O� P�R� �M��e��v�����u�L�I���/E�/����uT���������/�����"���G�Jٶtf�����������|����ɰ� �2ͧ�JR���QQ����J����/\FQQ�ϧ���ھ���#:�X�Ȫ�tfI��RT��H��e��@G*eP�/���Pǽ�uQTW�*e��e/���P�\`{��I�ɹ�ɧ�`A����R��-�ƶ�ȧ����H�Ƨ�ƶ��X����������H��v��������L¶��������ů��zL|#��ů��u��������������ů�������J���\)Q��,�a���zL|�������#��I������ë��v����J���uQQL¶���k�zL|�k�uQQQ�?������k�kD��kJ�k����k�\)Q�Ё���� �P=ȧ�6�GM�v����L·��< �����������u�ķ��< �������\)Q���Wb�����G�XP���Gv����D�D�D�uQQL«ű3K����ol��DŹ�uQQQ�ű3K���D��\)Q�쵶 �P9̯_W"P�P�z�H�姻�� �v����L�M������I�z#�IM��u��M������I�\)Q��>������� L�K��v���L¸� L��z�K��K��u�ĸ� L�����\)Q��9O���ů��8�_��ç������ɧ�������� ��v����L¨�I�������z�K�#�I��u�Ĩ�I��������\F�B���O �n�RQ��ľm2��B���O �[���I�X�FQT�O⵪OB���O �[���I�X����Q��ľB���O �[���I�X`]-ȱ��y�����������o����u&y�yRD���������������RD�����RDo�oɬRD�������RD�DMzLRD6��2�G�̫���?����`Q��F]-ȱ�Ʊũ��&Ʃ�Uy�����������o����u��D���Ѹ��-Zv��QQQ��������kR��QQQo�5�R��QQQ���&��ũ�J���˹���u�-ȱ�ƧyR�T������B����QQT������B��������QQQoɬR�Q���`]3��-ȱ�ƱB-ȱ�Ƨ�ƨu�oP�-ȱ�Ʊũ���-ȱ�ƽ��ƨ`]�?����U�?���ŧt��ƨuĻ?�����t�?���ŧ�����ƨ`]zL�����ɨu����ī����D�DzL���ɨF�O*,A�n�R��RSO*,A�ëL�PV�PëL��uSO*,A�� PQQV�P� �uSO*,A��C�L�I��P�C�L�I��`)�ϧ��Q���Q�������){�O��i��ëL��ëL�+O��i�F{������Û�ëL�+������F{������ñ����QQëL�+�����ñ����F]�O��i��� Q� +O��i�F{# ( �QQ� +� ( ũF)]�������C�L�I������F{��s��C�L�I���sF{�Kŵ�QQQ��C�L�I��Kŵ�F{�����LQQ�C�L�I������L�]��Û�C�L�I����F{�tCQ��C�L�I��tC�F{�����QQQ�C�L�I������F�]�=����P��C�L�I��=�����F)��ϧ��Q���N�N"Q�������)�ϧ�������Z�ëL���?����sݧ������]O��i���s�ëL�R��fëL�uTO��i��ëL��f�s�ëL�`T�f�C�L�IëL�uTO��i��ëL��f°s��C�L�I���ëL�\)]z��C�L�I�R���>��> �������C�L�I�ݧ�?����k���z�B�z�H�R��9��> ��P���> ��P���?������2ũW��R쯭�o��N�N"ݧ���������P��B�O3������ �ݧ�O������v��uĪ�������QQ��ϧ�����������P�����/�RQ�RT��RQT���> �����@G��`�QQQG�JO*,A�Qz�a�ɰ� P��> ��ݧ����J��`QQTL��O'>�k������uQQTo�R�ĩ�������QQQ�����R����E�/����T���G���QV��a�Q. z��\\)&^ ��MU®C��C��O w�ʱ�������֜�QQO� q��O }h��������֔QQVK��U���B�����O w7�Ͳ���˼{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}ޠ�QQS ��}נ�QQSz��s}�望QSd�=�|�v��%��� �E������,����L����v���J����dv�̫�����J��������v�̫� *���J��v!���U���}ʜ�QSj����o��}ʜ�QSd�G � �$͜�QS-�����̯������ ��̯������ ��͜�QSd�̨wh�!�����U�;��I������,���x�;��IP�$㠛�Sj�;��I������,���x�̫� wʜ���d��5�$ʔ�y�� �L���ŴH�Z�F��,@����n�R�·C̩��ȩ��O�D�u�S��G���Ɖ��u�S��G���ƴ�N��P��P�Nu�S��G���ƴ��< ���u�S�,@��n�O����G��L|��`���ϧ�O������ì��%�ܯ��Ư���������׺�Ǻ�ʺG���ū���ì��){�Ʊ��� ���vT���W���G��N���� ������R�����N�> ����N���� �������uQT�G���G��L|oP�G���D]����\RQQ���Ʊ��Ƨ���`R�ϧ���@��L����s�ïȧ�=�s���� ���B�Ԫ����巧�2B�RĻ �]���t��PO���-2W�����H�N"�vT���G��L|�D]��������D]����RT���G��L|��ĽD]��������D]����RT���G��L|�kD]��������D]����RT���G��L|�?���>��ǧ�㹽D]��������D]����`��� ������A�R��"A �ƴ����µ����S��êO�P̨u�SN����n�O�N���S�� ����ì���ì�����P�� ����������=��=��b�=��J����`]=��R��O��-ȧO ����?��O B���ԧ��P��=�����B��R��>=���)Q�W��������쯭���P�ë>��I�4��/����[���ç�P9aWR'GD'K���ë����P_�-�����իɽ�#N�X� ��PB�=��RëP�#��5��/�-��>��W�"���� �. ����Y��OR~�A�2B�=����P����Y�쯭�Kŵ��X����0H��v�=��uĸ����úO ��BoG�/�����QQQ����=��M���=��G����G����J��J���G���\\)�E�|)Q�ϧO��i��O ����?��O B���ԧ��P��=�����B�婅��=��R{�=��X�O �=�ۧ=��`R��#N2=�����B�o��LR�=��GI��� ��=��o��L���`R��#B��=��X����Rĸ����úKL�O ��=��X�O �FR�ϧ�ë��=��X�L>�R�=��H��L>��=��D�M�FRF���=��n�R��O��N��PO��N�O�:��S ���X�P ���X�������S��=��"/O�"/O��#^�ï�X�O����P��F]�[�^l��� �Ƶ�G�QQVPQQ����I����F]"���MB�����P:#\]"���MB�����P:�[�\){3u�!�������I�����I*�ɩ��B�!�������I�M-�!���oM�������,J�=������F]�����^Ʃ�Ul��� ��u�!��Wl��l��� uQ!���l���F].�P�u�!��R3u!���oM*��CRS"/O�B�#��uS"/O�ů�B�#�������#����F]����0�_�u�O��N��O�zN�RT��uQS.��������T���+����|b�L|���2�.��\F������MR�°�������° Ʃ�*?���S�����ȩť�ȩűH�Z��S�����n��.��.�u�S�����H�<��P��PH�<����ľ�N�;�`��ϧ�=���Iݧ��2W#q������=����MG��"���P����ϧ�2������Դ]�M�.��kF��ϧ��i��� �oG�� ���Ȫ��ϧcI��� �K�NK��M����ϧ�� ����zN���]���Ʃ�.�u�L�o���QTH�<��+����Q���İ Ʃ�*?��o���FQQQQȩ�H�ZȩűH�Z�o�������uT��.����Ұ����ȩ�H�Z�QQT���Do����o����T.��M��\F��ϧ����� ��#ï�����ϧ���2������Դ]GI�u����I����M�.�RToG�/��Ʃ�.�\R�GIM�.�`��ϧ�B����� ��#ï�����ϧ���2������Դ]G��u�.��G���M�.�`��ϧੳ����� ����ɩ� ���#B�#���]OGI�u�GI�FTG��`��ϧի_N0M�]�MR�����u�L�.��MG��"Ʃ�.��uT.��GI.��MG��"FQT� /��Ұ �#����\���M������MR���M������Pn��`�+o��L�=�J��<������ ��'K����J�۲F�n��MF�ϧ�êP�P������B���� ���� ����ƈ�W����ϧM���I4�����N��ɩ���ݧ�OH/X�O���B��ψ���ϧ�/NK2B���0a��� �P_����H�ݧ���E��2ũ�����X���H��E��@-ݧ �çYN�ݧ�������P��ɴA���0HR���� @����� �P���y�� �vľ·C̩��ȩ���`��ϧ��ϧ�쪭G��m2�PȪ��O⵪O��ϧ���b�� @����� �P�O3����ů�B��B�B�����ϧ��Wȫ/����� ��ݧ�����I����W9�0���ũ9�ë>�I�@G��_����A���ϧ���� @���IPȪ��� @�����]���� @�*�R���>���P���ů�ݧO����P��� @����P����P���v¶����O⵪O����QQ�?���ľI�@GP�A��`��QtPĶ��� @�PĻM���P��\\��� ����� @�*�vQTHo2Ķ��� @�*延ɴA���4 ������O���>�延ɴA���4 ���=�����`� ����� @�*���@GX���� �P��9�@��������P'O��4 ���������G�vQT��»�. �R��QQQ,���E�/���G�I�@GP�A��\\�QQ���� @�*延ɴA���4 �������I��ʲ�Jੳ=������I�����Dz�Fϧӯ�� ���������I2մ�ԩȪP�ê��ϼϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼϧ�������P�e���"�_z@��"�Ȫ��NH��ϧ�Y�����_��E�����Na�ϼ�Q�ì��%���ȴ. �� �������رh�ϼϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I��ϧ��G ��2���Na�P��G ��2��Χ�������ݼϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO����ϧ�� �����Ω�NaW�����������������Z5�����������@���P���NH�)�9(3��?��� ľ��� � ę�o�ŧ�� /�6��?�\){6���o��� �ҧO�� �|������=�s�Po�ݧȪ�3������#����DL��� Ʃ�ȯg�M�P��� �LMB�=����� ���;� ��� ��;� �� � Ī���E�/�;� `� � � ��ٳL�ҭ��|��"���J�o2O⵪OP��>��������W���\�� � � �L��� � � � ¬G���G�;� F� � � � ��ɰ�Ho2;� F� � � � ��G-��-�;� ����� � � � ���GDL�F� � � � �� ��L���ɰ���o2��G`� � � � �� �Ī����G���ɰ��o2��G\\){6��Kŵ�*����� ��ɰ�P��6�P_��W�ݧO�����>����� /PO������������Pk���� �W���� �İ� /Aɰ������W�\�����4 �����I�H�N"�Rľ¯ZB-�@>uQQS�ZB-�MG��������A�A:���`�ϧڵ���I��P�������ũ�B�MG��|PB� ��){��I���Q��u�$����u��Q��#�I�u�����u��Q��u�7����u��Q��#�I�u��������F�ϧ쯭��Z<�Ƨ���A:�ݧ�=�������������ũ�����M2.� ��X�A:<�Ƨ'2״�ϧ�� ���MG��|PW��ũ�){ ��R�<��uĸ����RTW�Ʃ�P�I�uQTL�ũ�ú�=���ƝQQQ���Hı�Ƨũ�u�����'2ı�<�Ƨũ���`�QQQL�MG��|P��I�ƽu��T�����R��QTWMG��|�MG��|�u��QQTA������H<�ƽ�MG��|\\\F��ϧ]M�������ç�?��9������� ����W�� çũ��?�#���L��ϧ��H���B��9�L2�ũW-�ũ�]���R·u�L�ũ��uT ���ũFQT. ���M��ũ��Q�孵·�\)�ϧ�ũ����A�F���#B�G��F��=�ƨ�G�O�O ��GR��RS�=�ƨ�P�=��uT�=�ƨ�G�ORQSA'��O�A'���G�O�QSO ���O ��G�O�QSGP�O�G��=�ƱG�O��S��G����`){G�O ��ũë����R�L�O ���A'���G�O�QO ���A'���G�O�QG�OO ��G�OO ��ǧO ��͏QQQ��=�ƺO3�J�����I�ūܲ�Q��=�ƺO3�J��,9���,��Q��=�ƺO3�J�����ܲ�uT�=�ƺ�ۧG�OFQT�=�ƺ��#q�FQT�=�ƺ��#q�FQT�P���E�/�=�ƺ@G�O ���\FQT�PĩZ������=�ƺb�O ��ǝ�T�Df«�ŧ��`�����=��PIG�O2_O ��DzFQT�P���E�/�=�ƺ@G�O ���\FQT�PĩZ������=�ƺb�O ��͝�T�Df«�ŧ��`�����=��PIG�O2_O ��ͲFQT�P���E�/�=�ƺ@G#q�\FQT�=�ƺKLۧO ����f�`QT�=�ƺKLۧO ����f�`QT�P���E�/�=�ƺ@G#q�\RQQQ�O ��@GP���?��L��=�ƨ�\)]G���M�,��G�O ��G�OR�L�G�OO ��G�O�A'���G�O�A'���G�O���uTG��=�ƱG�ORQQ�O ��G�OG�ORQVɱ�������RQV�=��P��\�� İ /���.�쵶 ��� ����� � ĪP����M�ǧͧ湽���ͧ��\� � ����c�� �N��G�ŵ?�Rľ�C̩��ȩ��FT�®��c�� �N��ŵ?��G�?P��ķM���ŵ?���ľ���c�'K��ŵ?�`� ���Ư���ëLP�� v�L���M���ŵ?��uT��Ư���Ž����鵷�������\���`� �N�s����fȯ�ƨv�L���M���ŵ?��uQ�ŧ��oMP&蓬�f���\{�d4w���������v! p��ҧ��ҧΩ�N"��@��|��.��ս�@�,�W��=�sv���%��������� ����d4v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�ì���!���U���}렛QQSj���B����=��Xw7뜛QSj���B����Yw�ǜ�QSA�,�-+�P�״㜛QS��� w�͜�QSd�� �E�wh��QSſܻ��wʔ� ��MU�x��C����QQQx��_�$�לQQQx���M��w޴ǔ���eP&K�^K��U·C���望��QQp ��w״望��QQ9���w͜���QQ� ��<>�w攛�D�=���IP���I���O�L �������R�_d4�MR����d4�Mu��_&yJd4��O �����^M����P�F{������������w���������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R�QDK�^K��U� ���'��w㲹���R!���U���}�ǜ�QSj���B����=��Xw7뜛QSz��s}딾 ��MU�G�̵5�$Dz��F{�i��?w�ʱ��������v! p�����_�=�sv!���U���}栛QQS(�wʜ�QS�@���ï�$ߠ�QQSj���n��9�w�ǔ���eP&K�^K��U���[��̨wͲ���R�QDd�^K��U���}7Dz���R�QDd�^K��U���}�ʲ���R�QDd�^K��U���}״ʲ����R����*e��B�c�²G��������{����MK�wʱ��������v! p���#�� . ��W�MK�X#�I��X����ҧ �R@GX�v���%��� �E�������MK�v��M�x�Z��Jh��v!���U���}ߠ�QQSz��s}�ǜ�QS ��� ��������P�$7ǜ�QS ��� ���>�}㠛QQSj�����/�ȩ�J7㜛QSH�A�}$ޜ�QS��êOJ��望QS����0G�O�⳺0G�O��J��״������QSj���̫���̸Ůw�ǜ�QS�����wޠ�QQSd� ���oMX���at� ��ï�PƩ�P_ƨ�v·�ƨu�O��"��Ī��L�����ͽ�o̧�ǧ����ǽ��ƨ`�������������������������������������������������������������������������������ϼ��ϧ�ŵ��X)�ϧ���ھ�O��B�ì���%��� �E���ë��L����ȱ֯��ŵ�����Jκ�=źi��������4 ��6���d){����u��+o��L�Kŵ�RȪ���G�RQ����������� /��\R�F{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�ƪ �����Rľ�����n�FT����������`]���������<�L���o/u�ì���R�3RTM;�K��J�ƪū���E�'����ů��G,��@�ì��M���FQTM;�K��J�ƪū���E�'����ů��G,��O�0���>��M���FQTM;�K��J�ƪū���E�'��������� :���M���FQS�<�L�<�L���1�RS!���oM*��C�MRQ!����*��CRQQo/���`�M��H�������n�RľO���D��;�Kb�������P�:���`]�ɪG��R���ƧW��ɪG��"���������Ȫ���>y�v³����Ȫ�yu�oM��ﳫ��P�y������Ȫ�y\){b�����yu�ﳫ��P�y������y\){O��i�R�����i���������� ��B#ï��yv¨ï���y�����*�uĨ�.ۧ�����RQQQ��y#ï���y������*�`��.��u�Ȫ�O]U�úB�N��6�K/��R�QQQ��Ʃ�B�N��6�K/��uTL�G��*ĭ���H�Z��^0�����˽uQT���G��*�����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�ƪ wʱ��������v! p��ҧŵL2K ��|������ū��ݧ�������س�GΩI��v�a��Y�a� @���Na��v!���U���}�ǜ�QSj���B����Yw7ǜ�QSd�=��X�o���}��뜛QQR�QQQ ���$7͜�QSd��}h��QS ��� ���̩����3.�}h��QQR�QQQ����������}�͜�QQu����U���� �u��I���;�U��ì�����u�_ƪ �n�R���HPѲH�Z²40@-��������ƪ �n����F){�Y�d}7벼�{�Y�d}7���������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��޴ǜ�QS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�7㲹x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�A�������o��5w�v! p��Ԫ�,�W����X�o����,��ūH2���᧻e��v��%��� �E��������o��5v�a&yJ�Y�a� @���NHv�V���Q�%���ȴ�Y�H�L��� ���$ì�����M�x�Z��Jh��v!���U���}렛QQSj���B����=��Xw7딾 ��MU�x���M��w޴Dz��)V��U������u�G�U�G��u�̫�������U�����̫���u�̫� ����U���b��v������벹F{�E��G�I���,�zN�$7���������v! p��ի����2@����c���#�����Ň�v���%��� �E��G�I���,�zN�v�a&yJ����֧�NHv�V��%���N��� ���֌��M�x�Z��J7����K2��=���I�R!���U�E��G�I���,�K�NK���$ǔ��=���IP���I���O�L �����R���HPѲG��v�S�Ȫ���e�d׾d�d�d��G���R���eP&K���!���U���}렛��QQQj���B����y�� �$7ה��D��U�K����R�QDd�^K��U���}޴ʱi���������֔��QVO0��q� �Ѳ�������� @�v����QJì���%��������o/����+� @����R�QDd�^K��U���}�ʲ���R�QDd�^K��U����=�s}�Dz���R�QDd�^K��U���}״ʲ����F{�M�B��n�wʱ��������v! p��ҧ-�,��-�ȯ�ƧB��ƪW��=�s�v!���U���}ߴʱ��㜛QSE���N��<��OJ״h��QS-�������> ��ܱdw�$ʜ�QSj���G����w��ʲ��)V�������P���X��߿v�QQ���X�X���H���I��ȩ����v�QQ���X�X��ڷ������,"ٶ�G��Ȳ�F�������?��~8R��:�-���P:DO��6�U]����S:��:��:u�S������?��?�«�����o�b��A�����S������?�����P��������nK�R�ŇR�GI���uTL«����� �������oɬ�QQ�QQ���&������ ������ �˽uQTr��[��ۧ�P���R��QQV������ ������ �R��QQV�����b��A���^���������R�QQ�QQQ��Ĵo- ��������1 ��P�����+o��L��I�\)To- ��������1 �PGO4uTL�&Ʃ�U������ ɧ����rb�����QQ���Q�6��թ�����4ί��"����� �R�������Q#�4�uQT�o- #���"����Ĵo- ��Ĵ <������� �\FR�G����uTL«����� �������� �rb������uQT�;�a������ ɝ�r��[��ۧ�P����D������ �\)TzN��W?���"�>��U�P-ȱ���uT�Ķ����~8�r��P��`��ľ~8�-ȱ���`QQT���~8�-ȱ����T�GI���T�G�����\FR�O��uT�r����k\){�~8r� q��nK�`�j�(1�����Rľ�N�;�FT�O⵪Oj�(1����Ŵ�Ƹ����P�Ƹ�ȶu�S��o�ŴE��@-����@-u�S��o�Ŵ=��X�=��Xu�S ���3.��̩����ľ�(1����ŴO0P��PO0�����·��u�=��X������FT��i���ɪ�`]Ʃ��=��.�R�ūa��u�L�O0P�O0+-ȧ�ýuT��O�uQQ&�����RQQD3PѲ�/������ɬ�ì���QQD�1�G��O��\){H�>��=�R�0�.�u� ���3.��̩��������̩��.�^0�0���`]�_�����uĮ��@-�Ȫ�E��@-���RQ���ŧ�#EK�P���=�vS�0�QQ�ΩL �@i0������uQūaQQ�ΩL �ūa��٧������èuT����E�/��è`QQT�����e#�i���ç���O/����0���`QT�������称è�ĸ����������çB��=��`QT=��X�M��G�JG���#�ŧ��0�ūH`QTH�>��=��0��Ʃ��=��.��ūaĻ��G��è\`)��ѼDyJ� ��*?�*�G⨲ݼD��J�ݼD�����©f��[�uQQQ��������秩C�QQ������QQL©ɰ����b��ɰ�M����f��ɰ�u�QM���J� ��<����? �����G�P�O  �W����C�QQQ��ϧ�êP9a������X��P�4�ۧᩩ2B���ɧȪ��A1R�Q9a�ɰR�QQD��H�ì�+� ��*?�*�G�P�C��D���H��+� ��*?�*�G�P�C��D��H�ì���� ��*?�*�G�P�C�Q�QQVȿH�ì�+� ��*?�*�G�P�C`�QQ��C\)DK( ���HP�ɰ�|�f���B���_H���M�<���G�PW��ɰ�|�N# ��P�����ɰ�|#4 �IEKP���?�P W�����ݧN�� P-ȧ��G�PW���O  ��ݼ˼�M��H��IH���ì���R��M��H��IH���ì�����u�SM��H��IH���n�O�����IH��Sd��o- �R�zN�uī���zN�ok`����������ȫ�PO����ȴn�R�™�G ���G �����IH�y�u�G�y���y���J��`]6��]����R�����ȱy�A1�u��{�����ȱyRQT��O����ȴn�����������A1�R���QD��� ���y���G���GG ���� ��y���y��򽽧��\����J����ȱy\`T����ȱy�ͧ���1�uL��A1PI�P�1����> ���ǝ������oP�ͧ�1��u��QQQQQQ��ͧ�1���uQ�����O����ȴn��]���ȧ����ȱyRQQT������A1P�O���I�P���O����ȴ������L|������1�\\`���G���R�ੳ����� �PW�� <������5���G�v��A�,�-��o�å�Ȫ���,����S��o- ���å�������ño���#�ño- ���S��o- ���Kŵ���Kŵ��o- ���S��o- ���n�O�o- ���(- ���b����?��L���Uu�Ȫ���,�U���,/��O���uT�J*��JRQQQ���,/J�&H���˝Q^H����\){����,/�G�o- �R�A'��Ϲ������ño����������i��bN�J�������������\\){G�o- �u�L�o�ño- ����,/�G�o- ���uT���L�Kŵ���i��bN�J������������uQTKŵ��o- ��o��o�\){6���ƱG�R��t��1���MG�G����o- �ݧ��0H2�Po�v�o���1��)Q��L��o�G�o- ��uQo- ��o�FQQ����1�RQ��(- ��o�\�����F]��#��oZ®�uT����\֧�ý��\����FF]B�������uT. G��#��oZ���`���������n��GR�™�G���u�S�������P������H����Guĩ����o- �Jì��%���޴$$Ǿ���Dz`{I��ȶ�Guİ /��I��ȶ�`]"*�ɬsU�u�H����GFT�RT�FQT�M��I��ȶ�G\F�*�ɬsP�"�"*�ɬs�F]G�G�H�R�GXJ�ï��2H��t��vT�P��J�I�b�����H������I��Jt���\`]G�G�6��R�GXJ�ï��2H��t��vT�P��J�I�b�����6�������I��Jt���\`]G�G�LR�GXJ�ï��2KL�t��vT�����H������I�FQT�P��JKL�b�����KLJ�����J ��\`]G�G�bR�GXJ�ï��2b�t��vT�����H������I�FQT�P��J�Iĩ����bJ����\`�<ɪ������KLR��<ɪ�[���u�S<ɪ��������I�2��P���u�S<ɪ������=��P��P��u�S<ɪ�����������u�S<ɪ���P��P���KL�����C�u��Ķ�������C�FQT�����.�ï��FQT��H�fC�uQT��.ۧ��[����[��_¾9��������C�ķ��KL*��=�ƨۧfĸ�zL�����C`QQT��ú��[��ۧ��[��_¾zL��������C\F�d�,>ŴYN��L<���MK� �GR�™�G���u�Sd�,>ŴYN�O�D�u�Sd�,>ŴO� �P��PO�u�Sd�,>ŴO�0�HP��PO�u�Sd�,>Ŵo�������`L�9��X�YN�YN,>ű����,>��ūa&9��XD���O�>D��MH�s�����ñ������ñ���D.��Ʃ.��Ʃ�˝YN�YN,>ű����,>��ūa&��MH�s�����ñ������ñ���D.��Ʃ.��Ʃ�˝MK� �G�JG�MK����i�����O/֪A�?@���G�JG�MK����i�����O/֪A�?@����ĸ�H���MK� uT��MK�ۧYN&MKɧ�R��QQV�O¾��DyJ� �鯮�|���QQVHL �y��`T]G�G�L�MKɱO������nO ���EKRTGXJKL<��MKɧO����PnO #��EKvQTL� ��KL�MK�ۧYNĻ��G�MK� `�QQ�ɰ� �2���uQQT�P��ɰ� �2� ��DG\\)T]G�G�L�MKɱO������nO ���EK����X�9��X�YN�RTGXJKL<��MKɧO����PnO #��EKvQTL� ��KL�MK�ۧ9��X�YN�Ho2MK� `�QQ�ɰ� �2���uQQT�P��ɰ� �2� ��D�\\F��ϼ���Q�ӯ�� ��������������3���ϼ���Q��êP�����I�POL�H2����P����Y�a� @���Na����Q��Խ�$��Y���9�M2��E��������������Q�ì��%���N��� ��Y�H�$�ð����)Ķ�R�&�ï�J��������3��RV���Jੳ��O��  ��2�� ����ɰ�|����Ÿ���ɰ�|���R��RS���ƥ��uS��Ÿ�����I,��oZ�������6��6�����*��R»��ǧ����u�=����PİO�ƱO�� &Cɧ�����ǹ�uT���E�/���������O���o̧��PİO�ƱO &C�E�/�����˧����\RQT��RQQT� /����*��*��������T� /����*����ï���ĴO �ҳ�G������J�����\�\Ľ�«��ұ�Z�\�\��\�\��������`����\F]6��6�����������*��R¶u��6�����*�PĻ������蹽�������蹽���`]6��6���M����*��R¶u��6�����*�PĻ��媧���M���媽�������对M���寽����`��H�A���1�R�1�BE��W��ŇP�b�����2_0G��Ia> ���R�4> �����?����"�2���/�A�oɬ���IO�Rӵ�O/��֩ɬ�1 �쵶 ��1 ��Ҷ�X��O⵪OP �R�0o���[���/�A��PëL2����N�2���'���� ��JRľ�N�;�`��ϧ�N���1�BE�){�BE����1�R�O��1��Poɬ���J�NK�Poɬ�`��ϧٷ �|P�ëL��W�o�����ëL�P9�����"�[��_o���){���쵶 ��1�ëL�u��1�R�O��1��Poɬ��uTëL��oɬ��\)�ϧٷ �|P���ŧ�o/�M����/�A�){���֩ɬ�1�ɬu��1�R�O��1��Poɬ��uQɬFTB�X�uQɬ`�d������R�쵶 �PW�O3X����4 �_���������L������FQW��v�™�����P���u�S��̫���������ľ��0��̫��������� ���3\){O3R��>5N"���� ��W�6�X�̫������ ���3�W���>�R�e�y���W������PM;�K2_�=�s�v»eyu���� ���3����O3��ey\){����H�R�ҧ���H�N"������᧯ŇP_�����C�2O3�v�8�u����L¿4ĩ���O3^����k˧8��uToP�4ij����H�����H�8�\`]�4��3�R�������P�����H�N"�����43P����᧻e�v�8�u��z�OG#�o������H�8�\){�4 �M*e���*euĩ���H�O3����*e\ϧ�������)�H��N��R����P�Ѳ�����JG�!���P�‘��}ߠ�QQQj���[�����w望QQM9/}���QQQ3�ƺů���G}h�(���G���FO⵪O���3�ƴů���G��G��F�Ʊ�����RQ��&�����RQ0�^�嫶�ܩ�RQQQDZ��w$ʌQ�I^_嫶�ܩ��n��F]�Ƨŵ?2�u�z����0�� ��I��b\���?�����. ���@i-�Rľ�N�;�RVy��?�����Ұ ��Ԫi-�RV_�RVM�M��RV�@i-��RVoG�� ��P��̫���?��.���RVA1U²���0H¹�̫���������Ň��������9����u���Ļ�\){�M��@i-��u�¹�@i-���F]��0a���uĨ����9�����0aĴ@i-�P��\��ϧì���%��� �E���ö:�����xXN��=źG��L������������δ���&��C���^K���R�¸�ų���0��w�Ͳu����w��ײ��˼D�^ ��M�R�®C��C��O w�޴ײux�����N�$ʱ���ux���Ʊy�� ��;P�$ײux�d���$ߠ�x���jw�¶O w���O� q��O J�ʲ���R!����R������w�ͲuS�/�J������زuSd����J������ؔ���HPѲd����²�������d�����M�u��J�[�����������/�n����˼����������ȫ�PK�H���RT�O⵪OK'���u�QS��/ ��u�QSO��N��P�u�QS�������YN��P�ȹ`������YN�RĻȺGI�R^ȩŨ��Ʃ�����JȨ%�=9�ïG�������������Ȩ��`]G�O����Uu­�/ �+G�����M��F]GI��u�K'�GI��^G�O����PG�O������FT��/ �+����G�`GI��F��&���J쵶 �PKX�Ȫ��X��I���W�P���R�Q�C������:�E=�������C̩������E= ܩR��E= ܩ�PE=�u�S��G ���G�u�S�C̩�o����o����ľ·C̩�?��E��i�D��bN����M��Ȩ繟�E= ܩ�H�<��u�o�����ï�E= ܩ`]���E= ܩ�o�������G�u�L�H�<��E= ܩ�H�<���QH�<����Ʃ�ȯ8�#��<���y#��<���#��<���Q���<������G�G�#��<���uT������G��ų����#��<������G��#��<������G�\){���E= ܩ��ï�u�G������9aį�bN�J����J���������Zز����E= ܩ�o�������G�����G������M��Ȩ�\\){M���u�9a�E= ܩ��ï�FQQ�����ĸ�R�Q]���?�E=��O��QQQ]����E=���ON�QQQ]����E=������`RQ����V����ĸ�R�QQT]���?�E=��O��ſ��T]������=���ON�ſ��T]����E=�������ſ`RT��RQT]���?#�{���#�{���#\F������������B�R��������BE�P��P�BE���`����BE���BE�+������L)Q����������i/�V� ��Rı������E�8M��>�uTb�_E�8M��>�`�������������i/�.��������E�8M��>�ub�_E�8M��>�`QR̫���������XRı������E�8M��>�uTb�_E�8M��>�\)��������R��'�/�n�O�]����So��Po�u�S�����o�����N�������Ʃ�0���R�ïG��ŧ���u&̸Ů����W�̸Ů�0G�O��%��+��ïG���FQDy�RD��ȯg���F]�oR�GI�o��o- �Ʃ�0���R���N�D�űïG���QQN�D�űy���QQN�D�ű���QQN�D�ű��ȯ8\R��B�o����(- ۧo`o���M��o- ��oJ�⳺�� ��ⳲFQ)������Ʃ�����R����i�"�W���������I�v��� ⳴n�O�]�� ������� ���^yJ̫����ů�[��+������� ����F]�� J�����Ʃ����� ���&o- �����F]O3�ȯ8�R��������E������ȯ8PW���>��@���v¨���@��uı�^����@��#���@��˧ȯ8�`]O3�ȯ8�����M��R��������E������ȯ8PW���>��@���X��ɱȨ���H��W����M�v¨���@������HɱȨuı�^����@��#���@��D���Pɱ�P����H���H��RQQȯ8�����M��`]HI�ñȯ8�R��������E������ȯ8PW���>��@������>�HI�����v¨���@��#�I��uı�^����@��#���@��DHI��#�I���RQQȯ8��HI��`]��>�ȯ8�R����G��ȯ8�Ȫ���>����������@���v�ȯg�����#���@��uı�^ȯgȯg������������D����@��#���@���RQQ��>�ȯ8�M���`]O'>�ȯ8�ȯg����@��uı�^ȯgȯg�����@��#���@���RQQO'>�ȯ8�M���`{�Kŵ��Xwʱ��������v! p�����X�ؾ�� �K( ��v��%��� �E�����E���l ��ūv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}޴ʱ��ǜ�QS���E���l ��ūwh��QS�-wߴǔ�_���ƪ����Kŵ��X�n�R��b�J�b���v���eP& �I^������F�d�����G�n��GR�™�̫��������u�S��G���u�SN����PN������d�����P����DOm���`]�Ũ����uı��RQQ����eRQQ�bӫ���`]� ������RīŨ��R��N����N�D���GHI�ñ������Jd迪�v�������R������eR���b�IN�R�����eJ���GHI�ñ����\`]�ũ��O��O0���uĪ���ɪGPĪ���e����J�����`QT��RQT� /�Jس�GHI��#���"�O3;�2_���Qе�@���������Ļ�ÝĿ���������������m��O0����\RT��RQT� /�Jس�GHI��#���"���X�_���Q�=5���������Ļ�ÝĿ�������;�RQQ����RQQJì���%��� �E�����G����GHI�ô����\Rİ /������`]G��IH�E����R��ũ��O��O0� ������FT������������WΧYN@�,��v���%��� �E��-������i�+�?K�,v�a&yJ������%��������������،�(�^yJ������%��� �E��-������i�+�?K�,�!� ���O0��q� ²;��I�&6��P����ˊ����5��^����Ʃ�'��-���������=���IP���I���O�L �����R���U�����G�u� ��MU�E���wߴ�ǔ�E���^M;�K�?K�,u�!������P&����W��Ƹ�ȶ��R!����R‘��QQ�렑��n�������w���ʱ����ͫ��ë�u���-��������QQ�$Dzu���-�����=��QQwʲu� �<�� ���XQQw״ǔ���;�U�����F{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�K�98����(��?�R�¸�(��E���5l���É��u�S���=���Pì��DO��6�Uì����S��(��?��E�'��P@ş�#ï����R�ì��!��RQQQ!���Ŭ��Ŭ��� �&�@�Ƨ�īú=�_��� G�����4������Jԯ�M�QS!���Ŭ��Ŭ��� �&�@�Ƨ��@ź��G�.��J�Bȶ�ë��B�����N�X��<����޺��O��êG����<��K��޲��JΩ�.����G�������`�R��R<�ƴ�ë�.���u����<�ƴK�Ol���9���ï@�����M�N������� �ȩ��N��<�ƴ��ܥ¨ïȱ9���P���ȧ��ũ������<�ƴK�Ol���(��L�(å�(��L���������ë��u���GFT���0��̫����ì���ì���ľ��0�̫���-�����`]����ñ������u�ì���ì����Ī������������\){�� ��@Gì��#�L ������@ܩu������@��ì���HL �ì��#�L ��\){����ñ@G&Ʃ�U���#�L ������@ܩ��u��ĩZ��zL|�k����#�L ������@ܩ�T�� ��@G����ñ��������#�L ������@ܩ\){N@>��ê����&Ʃ�U��Po/��uĪ�k�o/FQS���uS��Po/��c�����������P��o/���HL �Ʃ�PU��������F]�� �������ì��#�L ��uĨ:���ì��R��ì���HL #�L ���QQH�R����GR�N@>������R�c��������`]����ñ�����&Ʃ�U���#�L ����u��ĩZ��zL|�k����#�L ���T������ñ��������T�� �������#�L ��\F�õ�ô�� ��ë���=�R��RSN����n�O�N��S/ L��Pn�uS/ L��O0P��PO0�uS/ L������P��P�����uSd�H�Z�PH�Z��O0R����PO0��q�����Pyv��y�O0J�y`T�j�O0�j�O0���IH�H�ZR����PW#�/�Z��PȪ����Ȫ�����O��v��u�L�Z���y���Q�Ia���H�Z��Ia���QQTl�ç̫����������ح���k��uT�IHRQT����\����G�Z��`�Ĩ PZ���ǝQZ��\F]�ë���=�R�쩬�P�ë���=�v��O0u�L��P�K������ī����DZ���IH�H�Z����O0+�P�O0\RQQQ����P�K��İ���+����P�O0^��;�H���`�E����P�K���O0+E����P�O0��uT� /�Ļ��G����\Fn��Ȫ������P&��ñB�NN�D�� �B�N�D�谫� ����R��T�ë���=�J,�ܪ��1������`�ŵ?���ܴMR��ŵ?���ܴŵ?��O����P��PO�����u�Sŵ?���ܴëL��ëL�u�Sŵ?���ܴì���ì��u�Sŵ?���ܴG�,���PG�,��u�S��̫��������u�S��G ���G��������*���e�yuĪ��L�[�����i��bN�J������V��Z�����������uT�b������e�[�����e�y`QQ�e�y`]�̯Ũ*ey��*��Jŵ?�����̯Ũ�`{�G�*ey��*��Jŵ?�����G��`){������G�̯Ũ�ŵ?��u�G�,���G�Oۧŵ?���̯Ũ*ey`]������G�G��G��u�G�,���G�OۧG���G�*ey`){��R�L�ŵ?�P�G�,���m�*�*e�̯Ũ*ey�QGP�G�,���m�*�*e�G�*ey�uT��ëL��6���.�O����+ŵ?��O����Pŵ?�PG����QQQ���G�̯Ũ�R���Q���G�G�۝Qì����,��=��O� �RQQQì����,��=����\��;��I��G��5��"���R�™�G�����#�ɬ���P������ʧ���ʧ��`]G���?��������Ʃ������ů�B��ɰ�OR�L©ɰ�O�MGJ���ޱ�������ʾ�ʾ�$��ʱ�ʾ�ʲuT�P����i�����O/֪A�?@��QT��b֪A��ɰ�O��#�ɬ����`QQTW�Ω�� �����Ʃ�ɰ�OP����ɰ�O�\F]G���?��������"�������ů�B��ɰ�OR�L©ɰ�O�MGJ���߱������ʾ�ʾ�$��ʱ�ʾ�ʲuT�P����i�����O/֪A�?@�FQQ�QQ��b֪A��ɰ�O��#�ɬ����`QQTW�;��I����Χ"��ɰ�OP����ɰ�O�\F�,�ܩ�����ů���̵5�R&ů�����0�����P���R��ů���Pn��ľ��0�j�̵5�����-���J�5�ӯO`]��?s�����?su&K( �Ĵ����?sb� p���B�X`QD��"�Ĵb��"���?sFQDA��Ĵb� �����?s��F]O�������O����u&���"�����ȫ�ε�"����O����FQD������A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSŵ����ŵ����n�$ߴǜ�QSE���N��5���7�$ʜ�QS���E���lP�$ʜ�QSd�����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��h��QS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$͜�QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��ʜ�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F�&yJ��HⱰëHʱŲݼD��J��)D�,��^G��(,���^��������v��QQDyJGI��(,��ñ�� �v��QQDI�U��Dz�˧ϧ���RQQQDŮ�P&��������v��DyJE�L ��IEK����QQQDȭ��P&��������v��VyJ� �Ů���QQQDHɰ^��������v���yJH���ɰ�QQQD� ��*?�^��������v��QQVyJ� ��*?�*�G⨌QQQDE��^������������QQQDyJE��.H��QQQD?^��������v�QQVyJ?��v�QQVI�U����ϧO����N�R��QQJ��Ū��̯�#�����H⧰ëH���v��QQJ�M�����˧�# �ݧ�1M�)�D��� ^G��(,����Ů��u�QQQDŮ�P�ȭ���u�QQQDȭ��U�Hɰu�QQQDHɰ�� ��*?�u�QQQD� ��*?��E��u�QQQDE���?���)DK( ��ֶ�Ω�Ⱥ���;ͻ�G⧱#���(,��ñ�� ��ç�IEK#�P���?��� �������X�Oŵ?�����G⧻eP6� #6��#� W���G⧻e��"XݧE�� ���G�PB�9������_(,���O�ݧE�L P�IEK���#��ݧN�� P�B�9�O��#��P�ɰ�|P�ŧt���# ��P���?�P��G�P�O  ���G�E��.HP�a�⨴���˼���>O�����@R��'�/�n�O��6�U]�������1��'��L�+O⵪OJO ����>���@�G�,���`]���@R�GIĴ��N��ūa�1��'��L���P&yJ�����=l�J]�����˧���+o��L�=�J�⳧�Ʋ�����+o��L�=�J�⳧��\){����ɩ�������������� ���M��ŧ��uĴ�ɩ���⳧�ɧ���Uu�QQ�¬ɧO�����u�QQQ�������积��� ��QQL�O����Pı�O����P���P�,ą̇��d�u��Q�M��ŧO�����`��Q�ɩ����⳧�ɧ���� ��M��ŧ��\R�QQ���`]��� �R�����G ��P�M���u��� �����G ��P�M������\R�����G ��P�M��ŧ��u���� ����@R�QQQ�¬�u���ɩ����⳧�ɧ���G ��P�M��ŧ��\`]��R�����G����u����G�������\R�����G���ŧ�����T��� ����G����ŧ��\����ǩ�ȩ�R��z��s�n�O�] ��S ���3.��̩����PoMu�Sz��s�ëL��ëL�u�Sz��s���P�u�S��ǩ�o��L����:��P�:����L��ľ�N�;�`]�0��R��/�������i��bN�J���ֲ�J���ʲ\){���Rį���i��bN�J�����������Բ�J0G�O��%�=9�ïG����ͺ��ǩ�`] � R��:����L�� ���FT��� J��`]� �ëL����� `]GI�0��u�oM�����̩��. �^0�0��̯M种�`]�_�u�GI0��`�ϧӯ�� ���ӽ������Pε�����ܷ��ϼ�ϧ�êP��,���P�O�����I�������9O��G �������'������ϧ�����P�������һ����N�� @���Na�P� @�2����ψ�Oί���I쯵�ݧ���Z���槯���NHݧ������������������Z�����ϼ�ϧ�êP��,���P��G ��2_ï����?�������ݼ�ϧ���W�����֧���Y��W�������YϧȪ���>�� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������ش�Ω�����ϧ����һ����N�� @���NaW�'O�K?����ϼ�ϧ�Y��#ï��2ë>�O"�>2��E��������һ����N�� @���NH���=���Ȫ��P��,���ٻ�����#��ì��%���ȴ����� ��)����,�n��?F]��f�u��O������#X�v�G�̫���?�����,:����\){�IH��M¨u��͵M�k�������������vĪ�O*M2���\����FQTO3�G ��#\){�M�*��G��E��u������G����_�#�����X��O���vĻ��G�?����E��\��A' ��ëL���.�R��z��s�n�O�D�u�Sz��s���P�u�S ����C�L�I���I4P�O�S�,���I4���S ����C�L�I��̨���,��̨�O�0�a�,��̨��1���S�N��<��O�<��Ou�SA' ���ʼn��u�SA' ��ëL���98P��P98��ëL����,��O� ��=��XR�ԯ�P[��O"�>2_O� ��[���N�2_O�0�H���H���RW�Kŵ��X�v«��uĻ�O� �uT<��O�M��G�J��"�>2O� ��J�O� �`QTL�O�0�a�.��O� ��uQT<��O�M��G�J� 0�H�J�O�0�a��\��`QQQO�0�H\){�,�űo�R����P��-ȧo- �����[�ūao- ��0����M�P�B��RA' ���ź�o����4��I�)Qٻ��A' ��'K�3��P�OH/�_O� ����Pt��P�G��RN�G�o- ��0����?��������ȪH݈]���0����P���v�.�uĻ�O� �uTL�[�����JG�b�_O� ¾3P�A' ��'K��`��QQQ�źG������ź[����uQT�M�X�ź�o��[��uQQT.��O� �\`] ��� R98��ëL��98�� F]��Rı���� RQQ�,���I4�RQQ�,��̨��1�RQQ�,��̨�O�0�HRQQ�,�űo�RQQ�,��O� ��=��X`�{���� �x�����M��Z���)VK��U���QQQ}�$ǜ�QSj���( ���$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,��R���QQ�j�������L�;��s�@�,����8��I����QQQ�L����3�ȱdPQQJ7ߴ�뜛QSO��N��Q�$��ʱ��͜�QSO*,A��Q�$�ʱ��Ͳ��)V ��MPQQ¸��ߺx�����M�w$͜�QSx���3�țQ�$޲��)V�C�L�ISxXN�����M���C�L�I��)Vc����bP�&� �����b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)�QQQVŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R����!��B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F�ϧ쯭�O �)�ϧ�4 Iŧ����_�����ϼ��&IźA[�&ì����D�1�˹���QDIźt��&IźA[�&ì����D��˹��ϛ��Iźt��&��֪�L�˹˼�ϛQQQ^IźA[�&ì����D�˹��ϛ��Iźt��&���êP�P���I��,�ô�˹˹˹)��ϧW�YN.�O⵪O��™�n�����������ۊQQQ���[:�YN��PYN��F]�o�R����YN��o- RQQQ&�űyJ[�'vQQQD E�/�fYN�������������RQQQDH�O�[�'vQQQDO��J��vQQQDN�0M�=9�ïG�����vQQQDH������H�ZvQQQD "�Ʃ�[�'��\){���YN���ŧo�`)�ϧW�[:��O⵪O���[:�.����F]�oĸ�o- J[:!��%�=9�ïG����׺[�'�`{��ű������ŧo�`{��( ������wh���������v! p�����=�s�p���,��X�ԫ������ݧ� ƫ��2W��1��̨v���%��� �E�����( ������v�a&yJ�Y�a� @���NHv�V��%������ ����( ��������=źi��������،!���U���}ޠ�QQSj���( ��޴��ʜ�QSO ��źO ���w7ǔ�c����bU��b�J��u� ��MU�x�d�ŵ?2�ǔ�d�ŵ?2�RVŵ?�U�RQQV��U�����QDze���R��_���( ���n�R�����BQQJ@źů��G,��̨v������QQ��v���b���1�̨R����<����P���� ��˹�F{�E����OK ��+�����M�wʱ��������v! p��֩�0,�WƧ����������/����������L�;��s�@�,���v���%��� �E����OK ��+�����M�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}޴ʔ!� ���O0��q� ²OL�H��;��I���F�K�K'������GR��RK�K'������P�u��G��]G������G����G�RĪP��&��J�$$$Dz�uQQQ����������ɽJ�$$$Dz��QS&��J�$$$Dz˹\Fϧ�������)�H��N��R����P�Ѳ����!���P�‘��}ߠ�QQQM9/}��ʲ��F�Ʊ�����RQ��&�����RQ0�^�嫶�ܩ�RQQQDZ��w$ʌQ�I^_嫶�ܩ��n��F]�Ƨŵ?2�u�z����0�� ��I��b\�{��ɱ ��M�x�� �$ߴ���������v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H��^���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�d*Gw�v! p���M�����,����"�P���ֽ�W��=�sv���%��� �E��G�� s����4+d*Gv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj�. ���"-���"-�n�״�$͜�QSj�. ���"-���"-���(J״�$͜�QSx���M��wߴʔ���PQQ������u�̫�����U�����̫���u��b�J�b���v���M��^��;�K�?��d���F�{�Y�d}Dz]�Y�d}ͱ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��h��QS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�d��@��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���n�������w��޴ʱʸ���ʱ�ë��QS����������Jh�ǜ�QSd��}�ǜ�QS ���=��w޴ޜ�QS ���=���<��Ow޴㜛QSE���N��<��OJ״ߠ�QQSE���ܫ�I�������̱<��Ow�ל�QSz��s}�͜�QSAB�M�z��s�.�}�ʜ�QS���w�ʜ�QSj�����/�ȩ�J7�v�����;�U�ô⯨�=�� ƺ=�� Ʊ;���QQQH�A�}�$뜛QS'�/w�ǜ�QSê�I����}޴㜛QSE������I��õ���w״ޜ�QSj�0G�O�⳺0G�O��J��״���͔�_�����n�R���eP&K�^�����U�o����K����R�QD�2&���U�o���������R�QD �I^������F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}렛QQS ��}�͜�QSz��s}�望QSd���B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼&^��HPѲ�&���J�������ԧȪ��K��P3K�����S�Ȫ���e���O ��QQJ�t�&���R���J�t����=�s#X�Ȫ���M�M����S����������M�M������RQQV ��MU�x����w栛QQQx��C�Gwʜ�QQx��� /}Dz��˼D^K��U����E��M� �P�$$͜��Q������A ��B�w$ǜ��SE������ �� AP�$7ǜ��Sj���B���� �$޴�QQVO ����P&M�ĸ�噴�E��M� ��R����QQ噴���A ��B�R����QQ噴B���� �����QO⵪O��™��� /R�����VO��� /�;*��������Q�QQ���E������ �� AP��P� A������˼�� �� R��H6����PH6���M;�K�6�P��O�]���S�������P��P����u�S�����êG����؅�����PêG������u�S� ��K�P��P���H��HI�ñ��R�Ωt���#�L#�I�ç��v�t��u����L„�H6����b�o���D���uT�Ķ����HI�ñ���t���Ĩ�.�#��R�QDG��L�HI�ñ�t��R�QDHI�ñ�t���Ĩ�.�#���[��MR�Q�HI�ñ���E�/��M�\F]�ë��������R��ë��������vµ��u��︺êG���RT�H�֯�N�︺êG�����\){M��� R��5êG���#�BB�v„�u��︺êG���RTH6����H��o����D���FQTH6������������b֯�N�︺êG���`QT���+@i︺êG��êG����������V�����R��Q��H6�������������B�N��\`]M�������u��H��HI�ñ���`]��I�ñ�����HI�ú���&Ʃ�U����R��H��HI�ñ���`��6���i������ �Rľ�N�;�FT�O⵪O�6���i��0GP��P0G����d��O����H�ZR�»�>�O����ëL���.���SN����n�O�N���S ���3.��̩���O�����̩�����S��>�O����'K�����,��·��,��ľ�N�;�`]�_�����uĪ��:�Ѳ���,�����FQT���,FQTL�0���/����IH�/��N�D0���J���ʲ��uQT����̩��.�^0�0��̯M种�\F����MK��o���R��4 � W�o����,��O3X���� ��v�™�����P���u�S��̫������š����m��o���R���>���eyݧm2��O�����o�����e�v»eyuĩ���O3�G ���������ey\){b�o����R��������Ʃt����o����,��v°���^Ʃ�UƧ���4 �u�QQD����ƧkR��Q���4 ���u�L�o���m��o���R�QQT�Ī���H��4 �R���Q�o��������4 �v���Q�o��������\uT����RQT����o���`QQT���o���\F]�űo�R�������Pt����O� 2[�ūao����,��Ʃ�v�Ƨ����4 ���b�o���!�ūa�Ƨ�D���4 ���4 �`�Ư�'������G�Ư�'���R��Ư�'������Ư�'����Ư�'���u�S�C̩��ȩ��O�D������ɹM���`{�Iɹ�M��ɽ��`{�ū�z��������`� ����'����zLɪ��Pïȧ����ů�P��]M���z H��v�Ư�'����zLɪ���������F� ��#��ů��E�/�M;�KP-i2Hɰ���v�Ư�'����zLɪ��I�����F� ��#��ů��E�/��PO�����>�Ȫ_���O/�y�� ��v�Ư�'����zLɪ�ūܽ����F� ����ů�P��C���O/�y�� Io�C�2:��v�Ư�'����zLɪ�M������F�d�~8�G�H ����GR��RSd�~8�H ����H ���uSd�~8�9��� �P��P9��� ƨuSd�~8�9��� ƨ�ŵ?��MP��P9���uSd�~8�G�'K����� �s����� �s�uSd�~8�G�'K����� ���� �ľ��o�ŴG���RQQQd�~8�G�G���`){G#��� ���� ������� R�I����H ����H ����`QQ��\�����\�����vQ�������`]G#��� �� ��� ������ ����A��R�I����H ����KH ���H ����H ����\RQkRSǧͧ�uQ&�Jҩ���J���JΩ��Q���D�JΩ��Q��ǧ���ȹ\){��G#��ܩ���� ����0���E�'������� R�OG� ���O���� �s��'K��A[�FQQ��9��� �+3��9��� �J��� �s��ũW����>9��ź���W����y#�����H �ܩ`QQ��9��� �+3��9��� �J��� �s������m2�9��ź���W������A#�����KH �ܩ`QTL�~g���� �s��6�tC���� �s��uQTI��RQQT����� �s����[ī���~g�y��ǽ���ǝT���� �s��b�~g�~g�C��Dy`���:G ��ϧ�X��êP�� �Ȫ�#������� �|���RQQQ���RQQQ\F{���� �$�ʱ��ͱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ�͜�QSO��Nw��ʱ��ǜ�QSO*,Aw�ʱ��ͱ�������ֲ��)V ��MU�x���3��w벹�)Vc����bP�&� ��˧¾�b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)���ŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R���QQQVK�B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F�R��4 � B#��0�� �X���Դv�™�Mu�S��G ���G�u�S��B����y�� ��'>���u�S��B����y�� ��O ���u�S�C̩�O ����`����ϧ������������������������������������������������������������������������������ϧ��⵪O�G�I2���ԧ?������ϼ���ϧ�êP�P�����_���K��y�� ����P-�K2_����y�� �����ϧũ9O⵪OPb�ų2�����O�O�����OH��)�. O⵪O���M�O �O⵪O�F����ϧ������������������������������������������������������������������������������ϧҰ���������?�< �W����ԧ���E��@-)�E�|)T����GDG���ī�GD�?�zL|D�=�\)QF����,/�n��GR�™�G���u�S���,/�n�O�D���G�GR�GXJ���ڧ���W �G�vT�P��ǧ�\F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh��)�oM������i������GHI��R��oM������i�P�O�O⵪O���i��u�SoM������i���o����������b�o�����ľ��0��oM������i�P���L��B����Lu�j����GHI�ô�1�1�1��?K��`)��ϧ��� @����٧W�س�G#�i���){�BE��س�GRĶ1���uQ�������P�1�Ň��2o- X������ϱ�����ھ��P�P����1�����)���ϧ����ũ�K2�� �|��){~gطũ�K�س�G���1�1�uس�GRĶ1�蹧�1�FR�B����LR�G���uT� /���B��X���ũ�K2س�GΩI�ç�1�����FQT�;�a�1�FQT� /��طũ�K2س�GΩI�ç�1G�������\)]���ũ�K�R�O�����LRTGI��#�i��uQTL�o���b�o���O⵪O���i������#�i���D���GF��Q��� /����<�����ũ�K2س�GΩI�ç�1�ݧX�o���o���J�����QQQ�1Ĵ�1��1��?K���1��?K���uQQT� /��طũ�K2س�GΩI(ç�1GI����Tطũ�K�س�G���1�\`{� ��� ���n�$�ʱũ�v! p���X�n@�, �v��%��� �E������,��� ��v!���U���}h�ũǜ�QSj����o��}h�ũǜ�QSE�'���EK�}ל�QSE�'�����}ל�QSE�'��*e� �3}7ǜ�QS̫��ɴH��L��H��L��.�J7�!�����U�x�;��IP�$�ʲ��F���� ��-����� ����F]��������Cu�!��J�W�ȧ�f���J�Cu�!���oMRS!���ȴE������RQS�W��W�����5�RQQS��7W�����5��3XJΪ�ٶ�Q���ũ�^WJM�yv�QQQD;�J�������J�H�y�Q�M�^����ɬv�QQQDf�M�yv�QQQD �ï�K�J�H�yv�QQQDO⵪O�R�QQQD������uQQS���ũ�^WJM���ȯ8v�QQQD;�J�������JЫȯ8�Q�M�^������ȯ8v�QQQDf�M���ȯ8v�QQQD �ï�K�JЫȯ8��uQQS��B��Ŭ��Ŭ�����Ŭ��� �&����� �����JΪ�ٶ�S���uS��J�L�a�����#��_yP����ȯ8PI�0,����uS��J֯#��_X������E�/� ��a���B�vQQS��^�O�J��Jԯ�M��J�������u���F�d4��e���E�'�F��ϧ���ھ� <4��� ��[�]���oG��M��ȱ�C�����F{���oG#�������F{���oG�"/Mĺ#���\��ϧ �d)�Pũ��i��d� Rľũ��i��d�nũ��i��d�����Pz��s�n�FT�O⵪Oz��s�ëL��ëL�u�Sz��s���P��� ��� R���� J��FT���J�¹MKɱ����`T���J��ů¹�ů�����`T���J�l��� �l������l���������l�����`T����J�O������HI��t���O��������HI��t��`T���J�M���MKɹM������MK�`T���YJ���ȶm��MKɧ'K���ȶm�����MKɧ'��\)]��R�ëL������� `){�-����o���ũ�ê>w��v! p���ê>��P���=�s�� 3W��O���@�,���v���%��� �E�����ƨߺ�ê>v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�����5��^����Ʃ�<�ﵶo���-�����eP&K�^K��U���n�������w���ʱ����ͫ��ë����QQd�ì��}$ǜ���QQp ��w״油��˼�DK��U���}렛QQS-����o����O�����n�$�Dz��F){�j��� W���ɱ��w޴���������v! p��ڶ�ɧ ��_W��J��ӱ� Ʃ2��ԧ[�ūH�v���%��� �E���ë�����+�ɱ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���̫���̸Ůw�望QQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿��K��ޜ�QS̫���̸Ů����w望QSE����ë�������w��7ǜ�QS�����w�ǔ���eP&K�^K��U·C��ޠ���QQQN���$ʜ���QQ���⳺���⳱o- ���̫��J��㔛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{�x�̨�M�$���������v! p��ҧԩMXN� ��_W����5����JΧEK���ç�J��M��v���%��� �E���ū��x�̨�M�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U�d��=�}$����;�Uj�����QQQx����w״����;�Uj������)V ��MU���H���Gȯ1w����;�Uj�����Sx�OL�a�$����;�Uj�����Sx�ƪŪ�$$����;�Uj�����Sx�Ū� 2�$����;�Uj�����Sx�����N�$�㲹�)V�t�M�xXN���R�����/�D�ů��)V=9��O0�;��ç��R�x�OL�a&K ������D;��I�R�QQQD(�D����F{�E��L'�������ů�� ��������w7ͱ��������v! p��G�J�����-��C���KEK��W����ů�� ���@�,�v��Q�� �����̧���קKEK���FV���%��� �E��ȪH�����ů�� ��������v�a&yJ��֧�NHv�V��%���N��� ���֌!� ���O0��q� ²OL�H��;��I��!���U�E����?��ì�����w$ǜ�QSj���}�ʔ���eP&K�R�Q��!���U�E��L'�������ů�� ��w�͜����E��L'�1��������P�$޴ǔ�QV���U�G�� ��D ��MU�x�;�Z���$͔�QV��U���4 ����F{������L�w$DZ��������v! p��௳E�ݧ���P�I��v��%��� �E��.�1������L�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}נ�QQSd�}$ǜ�QS����}$ʜ�QS ��� ���n�㜛QS ��� ���̩����3.�}㲹u� ��MU�x� ��w޴ǔ� ��^ëL�������L�� �ëL��F{�x*�O���w���������v! p��ԩMXN� ��_B�0���������י���L��v���%��� �E��ŻM��x*�O���v�a&yJ�Y�a� @���NHv�V���%���ȴ�Y�H�L��� ���$ì���!���U�d�ì���QQQ���$ʜ�QS��êO�QQQ��ߴǜ�QSd�����������w放��eP&K����R�QD�^K��U���JǴߴʲ���R�QD�^K��U���}��ʲ���R�QD��^K��U���}�$ʲ����R���HPѲ�²Ȫ���e�K���!����!�����!�����R��t�M�xXN���R� ��MU�x�;�Z���$Ͳ��F{������$�v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������eP&K�^K��U�̵5��̵5�״�ǜ���QQj�'�ƪB�'�ƪB�n��$ߜ���QQj���n�������w���ʱ����ͫ��ë����QQd�ì��}$ǜ���QQp ��w״攛�D̵5²G�̫����QQV̫�����U�����̫���G�̫����QQV ��MU�x�̵5�攛�D̵5�*����J� �����R�̫� ��b}�v!���U���}�ʔ���U������u�̫�����U�����̫����F){�j��� W���ɱAP�$ߴ$���������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߠ���QQQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{�d�,>�w�ʲ� R! p��ҧ�=�s�@�,�W�o���X���>���OG����� R���%��� �E����ȯ1���d�,>Ų� R�a&yJ��֧�NH�� R�V��%���N��� ���������ð��� R� ��MU��ƪ�$7㲹�� R!���U���}�Dz�� R�QQQd�ì��w��Ͳ�� R�QQQj���n�������w���ʱ�����DZ�ë��� R�QQQj���[��̨w7油�� R!� ���O0���� � RS�;��I�&�����OL�HP�˹� R�� R�(�^yJ�� �� RQQV���%��� �E����ȯ1���d�,>Ų˽� �{�9(3�$ͱ��������v! p��Ϊ� �ݧ��Gݧ���ȩ�� �P_C�:��=�sv��%��� �E��ó�ê��9(3�v���J����M�v�� �J����M�� v�G�J����G�v!���� �J����G�� v!���U���}栛QQSj������'�3P�$ʜ�QSz��sw��!�����U� ��� ���̩����3.�w��ǜ�QQQ��ȫ�ƱE��s}�ǜ��·C��Dz��F����Z�n�Rľ�N�;�`]6���� �R�¹6���� 2����`T�ȹ6���� 2ȧ�`T�ȧùL��>����ɹ���,���\R�QQ�� 2�>����ɹ�Ƚ,���\u��� �\){ ��R�»���ŹL�=�R��Q�ê����ŧǝ�QQQ�����N"��ê�ç=Ƚu�QQQ>�olR��QQ�=ȧȝ����������N"���=ȧ�\R��QQ���ê�ç�\`T»�� 2��ŧ����L�=�R���ê������ǝ��QQ����N"��ê�ç=ȝ��QQ ������ȹ �����ȧŧ���u��QT>�olR���T�=ȧ� ����QQT� ��������N"���=ȧ� �\R���T���ê�ç� �\\){��ŧ��2� �u�L� ���蹧���uT �� ��� 2��ŧ���\�]�����ŧ��2� �u�L� ���蹧��uT �� ��� 2��ŧ���\�]B��L��ŧ��2� �u�L� ���ɹ��ɽ�uT �� ��� 2��ŧ���\�){�MR�٧������ïL�=��������v�����uİ /��ੳ=ݧ�W����۲`��I���?�Rľ�N�;�FT�O⵪O��̫���������ľ��0��̫���?��N�IR��QQ��R��QQ�O�� ���N�IR��QQ֪A�Z���N�Ʃ]����u�b��i��bN���Ʃ]����`]Z��uĪ���ɪGPĪ����*eJ���d�`QT��J���d������O3�G ��/ç�`QT���t���I���?����b� ƫ��bٷ �|��V��\){����u����`]�C5��¸�u�������P����>[��vQTKL�E�L �����b�E�L �������kFRT� �E�L ���P���=���@i�vQTKL�E�L �������E�L��������\�ů�����n�Rľ�N�;�FT�O⵪O��G ���G ��u�Sů�����ſ�ȯg�O�D�u�Sů�����ſ�Lɥ���`){b� �R�ϧ� ���P����� ���X�_���O/#Xݧ����W��R�ϧO���-�#XR�Ʃ����'KuĪ�oM�秬���'K�Ʃ�FQTb�����'K�Ʃ�FQV3���I`]�"�Ʃ��R�Ʃ����G ���-ȱG ��uĪ���M�E�/�����G ����E�/�-ȱG ��`�Q�G ���=��9aƩ��G���G�-ȱG ��\FQTG�� P-ȱG ����E�/�����G �����Ʃ�FQQ-ȱG ��`]�"�Ʃ�R�«G ���Ʃ�uQ�"�Ʃ�G ���Ʃ�����X`T«G ���Ʃ����'KuQL�»��G�ȯg��G�ȯ8��,���� ���ȯg�G ���QQ#Ʃ�G��Ʃ��QQ��Ʃ�G ���=��9aG�Ʃ��QQ �b� ���Ʃ����'K�uQQ�"�Ʃ��#Ʃ�R��QG ��R��QG�����G�ȯ8R���Ī���� ����QQT ����G�ȯ8���QQTG����G�ȯgG�Ʃ�\\F]�"�H�N"R��H�N"uQ�"�H�N"#��N"������X`T�H�N"�����'KuQO��"��ȯgƩ���"�ƩȯgƩ����'K`�QQJv�Q#��N"\��d��ȯ����GR��d��ȯ����PMu�Sd��ȯ����ȯ���ȯ����.�R�u�L�ȯ���0��M�6���0����J�+ȯ���ȯ���̨��Q� /�O����ĴKŵ���+o��LG���������uTM����Ȫ�0��ۧȯ���0��^ëL�D�����DI��|P&�J�=��J�W���������˧� /�O����FQTM����Ȫ�0��ۧȯ���0��^ëL�D�����DI��|P&�J�=��J�W��������D2��+ҭ,�𵻻���ʽD����!��D����!�˧� /�O����FQTM����Ȫ�0��ۧȯ���0��^ëL�D�����DI��|P&�J�=��J�W��������D2��+ҭ,�𵻻���ʽD����!��D�������˧� /�O����FQTM����Ȫ�0��ۧȯ���0��^ëL�D�����DI��|P&�J�=��J�W��������D2��+ҭ,�𵻻���ʽD��������D����!�˧� /�O����\){ȯ��R�u�ȯ���O��i�RD����R��I��|�uQ���|�`R�ȯ���ů��G,�`���M����0���M�M�`T.�FTȯ��`�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴH�� �n�R�™��Ɖ��u�S������PG��`������������������������������������������������������������������������ϼ�ϧի_Ұ��������������������������������������������������������������������������){��êI����Rī���Ʃ�êI������RTK >��D�ú=�_�E�\){���<����>���RĻ�o[������[�`VêI�����êI����F]���<����RĻ�o[������[�`VêI�����êI����F]A1����>��!������R�[�u���ɱM��J��� �|����\){A1���!������R�[�u���ɱM��J��� �|����\)�����������������������������������������������������������������������ϼ�ϧ�:'ੳ���������������������������������������������������������������������������){���@ܩ��R��������>����W�P����Ʃ�P��#XPB�Ʃ�ȯ8��v·u�L���Ĭ��Ƨ���TL��Pı�y�Ɲ��QG��O �������u�QS�Ʃ�ȯgƨ����`�T���u�T����ɝ��MB���������ɝ�ɽ�uT�ƺ0G�Ƨ����\������������ƴ?�R��������MƧ�������#?�< �vľ��0��RT̫���?�����`T��RS��n�������D�¿���۹���RS���� /��� /��-ȱ��CR��N �-ȧ����#Xݧ��������,:����v�uı�����,:���齧�B�X`){O�0�HR��G�� ��X�O�0�aW#��"�����#��v���1��O�0�a��ʧ�1�`T„��1��^�#�D�1�1��`]�O����� /R��O����� /P��� �����Ň�B�O���-2G ���v¯Ňuİ� /�� ��ŇR�QQVGO4�kR�QQV�O����`]6������R��W,�P�1_������=����=�ƴ����=�Ƨ�?�Rl���ȫ�L����MB���"��ë�-����êP=����?sRB��E���5l�2��������������"�� ƧB#:� �M��R�9O0���ݧ�����~Z��v©�"����ç���1�u��L®�����"�����uQ��RQQ�RQQQ����1�RQQQl�ç��ȫ�L���R���ϧ����"��P�2B���"��ë�-��R���ϧ������=�ƧO����Pk�P��L<��n�X�B��R���ϧ�����ݧ��O��X��ɩ�O����P_�����R���ϧ��"� �o��L�R��ۧ��䧬�\\����c�� �N��ŵ?��G�����ŵ?�Rľ�C̩��ȩ��FT�®��c�� �N��ŵ?��G�?P��ķM���ŵ?���ľ®��c�� �N�� �D�{ ���ľ®��c�� �N��ŵ?2���ŵ?2���"���罏ľ®��c�� �N��ŵ?������ĭ���ŵ?���ľ®��c�?��O� D��O�罹`���c��źM��F] �#��"���� � ��yu&y �y�RĻ�ŵ?�uQk`]���"����ŵ?2�uķM���ŵ?2����yJ���"�����ŵ���v�QQQD �UĨ��"���� �JDz���QQ���"���� �JͲ���QQ���"���� �J沽�`� ����"����ŵ?2�P���"���v�L�ŵ?2ĭ���ŵ?2Ĩ��"����ŵ?���uQŵ?2��O��RQ�ŵ?2����RT���ŵ?2� ��O���������#��RT���ŵ?2� ��O����P�E�/������RTWOPı��ŵ?2� ��O������uQT���OP�G�����]�����O��G��R�թ����G���`]�թ����G�-ȱO��G��R�u�թ����G���`]��X�A�yR�<�LuĪ�G ���<�LFQTթ����G���yJ]����v��QQQ�����̫���������X��MB�I,�X�]������X�<�L�`QTթ����G���yRQ���X���G�<�LFQQ�����̫���������X��MB�I,�XR����QQT����E�/�<�L`�����S�Ho2<�L���G�<�L�u������OG�<�L\\){3��AR�Ҹ2��A�Ȫ���><�L�v��<�L��թ�Au3��A�]�����O��G�<�L�A`T��թ����G�O��<�L��թ�Au�O��i��O�A�y�<�L��A\){O'>�AR���'>�A�Ȫ���><�L�v��<�LuO'>�A�]�����O��G�<�L`T��թ����G�O��<�Lu�O'>�O�A�y�<�L\F]O ��AR��� ��A�Ȫ���><�L�v��<�L��թ�AuO ��A�]�����O��G�<�L�A`T��թ����G�O��<�L��թ�AuO'>�A�O�A�y�<�L`Q3��A�O�A�y�<�L��A\�M�� ��RQOG�O�� �M�o���������ȶ���RQM�� �ѧïG�I��M�����ïGy�° ���M�� ����K��幧�˧�RQQQK( ���J�/����1 �M�� �vQQQ�����L���RQQQ]�������i��o���RQ˼�)�BE�P�RQ������RQQQ�����L���RQQQM�� �ѧïG�I��M�����ïGy�° ���M�� ����K��幧�˧�R�Q�����ѧïG�I��M�����ïGy�° ���M�� ����K��幧�˧�R�QQQ�����L���R�QQQ������R�Q�RQQQ�RQQQ ����P�R�Q��������R�QQQ�����L���R�Q�RQQQ�RQ˼˼�ϧ�NH2B�Ұ �ί���I쯵���콧�����ϧ���'O�o��������O�|��QΩ�����ا�e��ϧ��G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q����짘 ��P�e��ϧB�������Ұ ��NHݧ�V���h����J�NH��ϧ�������P�e���"�_z@��"��ϧȪ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <��ݼ��#����I��G ��2���Na�P��G ��2����J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y��ϧ����ݧ����ɰO������ ����QΩ�NaW�����#���������������Z5�������P��@������ϧ���NH��P�ëMB���ŵ?��n�R�®ëMB���ŵ?���������������u�S�ëMB���?�?�ľO���D��;�Kze���ëL��RѲj����L����ëMEK��������������ze�F]ze&Ʃ�Uo������I4��u�ϧ�N W�����ê�ݧ�Bŵ��ݧ���FTL� W����o���DгW�D�4��uT���L�ëL�ëL�P W��uQTëL���I4���?��ů���G�J��ƶ�� W���������\� W�J�\��\`{���,ȱy��wʱ��������v! p�����X�ؾ��W �K( ���v�����X�ؾ�Ҹ2����Դv�(�^yJ���vQQV���J���X�ؾ�Ҹ2����Դ��a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����_��y�� ��˴��R���U�����M�dv�QQQJ����M�d��u!���U���}렛QQSj���( ��$ʱ���ʜ�QS���I�$�Q��N@>}㜛QS�IK�7㔾��eP&K�^��U�����K��dv���������K��d���QQVK��U�ȩ�H�w㠛��QQQE��"A �ƺ������� �w㔛�DO ����P&M����y�� ��˴K��GI�����QVM����P��y�� ��˴K�R������O ��C�L�I�R�����"A �ƴ������� ƺ�,��d��O ����R���HPѲ�ê�²������ê��QQQJ��0��²�������0�����F�����O�n��GR�™�G���u�S����O�n�O�D���G����GR�GXJ٧��vT�P��ǧ�\F�H��N�ۼD��P�Ѳ����M�̫�������G�̫���˼DK��P���̵5�״���(���G���F]��Z���wʲF�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ��FO⵪O�噴H�F]�Ƨ̵5�R�����5G����-��v�u�Ȫ��O��,���eH�RQ�eH�`]�ƧGR��:�e������5G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\��� �N��ů��R&ů�����0�����P���R��ů���n�O�D�u�SOmK��O �¿���S� �N��_�O�D�u�S��B����y�� ��O �¸����L�Om�۹�`�����L�Om��F]��#���.�R°�0�Q���֧MJЯ���u�L��:�k�uTȪ��O��,���eH�RQT��.ۧ����u��Ī���R��Q�R��T��H����.��^0�0��˝��T��\`QQQ�e���\��Rľ���������O RQQQ���������=��XRQQQ��������� �RQQQ���� /FT�O⵪O��B����=��X���`MG���O������"���FĪ��������=��X�MG���O����=��XFĪ��������=��X�MG����9��ì���"���ëL�F]6����O3R����1�u�ĴGI���O3�ů�*�u��QT���0M�R��QQQ���1�\`){K'��R�u� �J�_O3į�O3���/�A��"���J�=�\`]K'��R�u� �J�� �J�C�L��į�O3�R������Q �JM-������ɱM��J�=ȩ2������\R������Ql�ç��ȫ�L��\�Q �J�C�L����į�O3�R�����Q �JM-��������ɱM��J�=ȩ2��������\R�����Ql�ç��ȫ�L��\\�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh��)���ϧ�>=�|#��<����)&o���^9�,^o���*eJ9�,��4����ƫ�ƫ^0������v������f��v���=���J�b�ƫ�ƫ�=�v����Ʊo- J=9�ïG����nj��ì���ƪ&0������˼D'��LU�K��� �G�'��L��b�G�'��L�$�I���DO���>���P��˼�xXN�����GR��xXN�G�Gu�SxXN�n�����P�������eR&M��U��Ķ��O���>��B�帪��G�nO⵪O��� <����uDK��U�帪��G}�߲���F]����GR���GPȪ����>2��?s����v“����u�. G�G���A������eP�°�e�������{�YƱ;�Ʊ̯�$ʱ��������v! p���� ��>�<����B_�=�s�p��v!���U���}렛QQSj���( ��$ʱ���望QSj�:d+:wߴߜ�QSj�:d+4ų�$ʱ�������֔� ��MU�x�d�ŵ?2�$㔾��U�����u�c����bU�̨���u�d�ŵ?2&ŵ?�P&K�R��QQ^��U�������QDze�QQ^������QQJ�v����QQD���BQQQ���M�̨v����QQD��<����PD��R����QQ���W�����@�P���&��C �O ���>���R��D�eJì��%�=9�ïG����Ǻ��4 ��� ֯���� ֯�Ұ��M;�K��⵪O�����1�L�ŵL�˹��R��QQDO�R��QQ^��U�������QDze�QQ^���BQQJ��M�̨v��Q��QD��<����P�3���"�R����QQD����PQQS�������̨�����V�O����� /Q�R����QQD�H����yP������F������G���Rľª�����Əľ™�G�ľ™��� /�`��ϧ@G�X�){�@G�:��ɬU����ȫ������P:v��QQJ����9H�������B�����9H����PB����F]G�G�ʱ:�RĪP�O*M2䲶��ȫ������P:v�QQ. @G�XP�oU��@G�:��ɬ�\`]G�G�DZ:RĪP�O*M2�H�������B�� �v�QQ. @G�XP�oU&yJ� ��˹�@G�:��ɬ�\`]G�G�DZ:RĪP�O*M2�H�������B�� ���IK�v�QQ. @G�XP�oU&yJ� ���^yJ�IK���u����QQQ@G�:��ɬ�\`){G�G�DZ:RĪP�O*M2�H����PB�� �݈�IK��ũ�:v�QQ. @G�XP�oU&yJ� ���^yJ�IK���^yJũ�:��u����QQQ@G�:��ɬ�\`��ϧ ��){G�G� �� p��RĪP�O*M2�����=�Ƨ@���������Y��O�9���X��=��v�QQ �� p�&���������=�Ƨ@�������v����V��P��&yJ�=�����\F�G�� �,�����X�������A�� R��G�� �,�����X��O�P��P�O��ľ�C̩��ȩ��RQQQG�� �,�����X�����RQQQG�� �,�����X��=������RQQQG�� �,�����X���n�RQQQG�� �,�����X���G�G?`�s* ��O#ï��2���������P�MG��"�����M;�K��_���òF�s* �������������O⵪O��� �ì�ë#C�vĬ����D�M�ĩ ñ��D3D?�O⵪OP��D���FQF)Ļs* �O����0��L�oK�H2���K( ���vĬ����D�X��FQ�ϧ> ����P�����G�L�K( ��R�ϧ���M�P��#���R�ϧ~8��RF�����0/�����N"��I�-��o���F]���J��7��ߴ��F]�o���R&Ȩ����TG�J�%���J����DzFQD.�����G�Jì��%���J����ʲFQD.��Ʃ������J����W�����W���F&�������PѲ��3�ȱd��Q�7ߴ��v�QQQ��I���״״�v�QQQ��I���A����������v�QQQ��I�d��GQQQ�$�v�QQQ��I�̵5��O0��}h��˼�L�d�?F��ϼ�ϧ�ŵ��X��ϧ���ů���?���){��!��4��Zů������F�ϧ� ƧB�K �ů�Zů����]���b�Zů����u��RTO⵪O��ů���?FQQϧ�����IB�RQ���O���>��ů���?��Zů�����FQTl�ç��"��RQQ�Zů�����\){���� /�R�Zů���I��u�����b�Zů������Zů����FQT�M�X�����uQT. � /��������\F]�ŵ���'O�� /�ͧ'O`{M����'O�� /�ǧ'O`{�I���'O�� /�ǧ'O`{��?��'O�� /�ǧ'O`��� ���o����,�R�¶:3��]o�����S��̫����������o���#Z�o��������o����,������`{������� ��O���J������F�5�ìEK�O R��5�ìEK����qP��P���q�u�S5�ìEK�x�xu�S5�ìEK���ůɉ��ů�u�S5�ìEK��ï���P��P�ï����u�S5�ìEK������u�S5�ìEK�?P��P?�u�SH �ȞP�������O �R����P�����ԧ�"�v°"�M��u�x�G����"ۧ�"FT�������ůɺb���Q��M�O �Qx�GI���"�M��O ��ۧ�"�kJ;��s�M�`QQQx�GI��O3ۧM��\){6�����-R�������P��-�Ȫ����Դv�o��Lu�L°":�k�Q���������u�QQ�H�֩�Ĵb֩ɬ�O��o��L�J�������O ۧ�"���b���ۧo��L`�QQQ+O� �*�����o��L��b�V���0��b�V���\RQQQ��-+o���ۧo��LDf�O �o��L�uT?+H�� "��L�y��b֩ɬ�O����-�DO �o��LFQQ�#�O RT����FQQϧ6��#ï����B�OGIO RT�����Ĩ�ůɺb���Ĩï���+6����M��ۧ��-�Ĩï���+6�����X�ۧ��-^O �o��L������`QQϧO���O ���-RQ��-`��ê����űGR�™�G���u�S�ê����ʼn�ş�G�Gű����Ȫ������R�L®���Ѳ[�ūH�G��uT�P���ź�ű��������J'��1�%�=9�ïG�����޺G�\F]G�Gű������������R�L®���Ѳo- ��'�Ʃ��ů��E�������v�QJ[�ūH�G��uT�P���ź�ű��������J'��1�%�'�Ʃ��ů��E������޺G�\F]G�GűȪ������R�L®���Ѳ[�ūH�G��uT�󧮻�RQQQ�ź��RQQQk�RQQQ���RQQQ��\){G�Gű��������R�L®���Ѳo- ��'�Ʃ��ů��E�������v�QJ[�ūH�G��uT�󧮻�RQQQ�ź��RQQQk�RQQQ���RQQQ��\��ϧӯ�� �����ק��2�ݧٶ���M���C��o��������ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ�ϧì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�){�ū�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQQ�ϧ�9��K�N2���ݧ���ȩ峳�b�Z��R�QQQ��ϧ������ݧ��Z���ȩ�O�ŵ?�XR�QQQ��ϑ�B���ȵů�ȵů��wʱ�������֜�QQ��F�( ���ů��G,��ŵ?�R��Rd��������uE�5 �������P�����u ���ƴn�O������#���� ���ƴO ��G ��������d���������̨R��u�L��������� �D̨�uT������� ����\)�L»e���G��E��@-�I��򝨷�̨�������e�KEK2Ĩ��KEK��Ia�+�J���#��̨`QQQG ���2���G ������KEK��������̨d���������̨#������uĨ���e�������̨`{� �����4 �$ʱ��������v! p�����<�X�Ұ��Ȫ��ȫ��v!���U���}�$ʜ�QS ��� ���̩����3.�}޴ǜ�QSAB�M�O�<�$����O ����P&M����P��4 ��H�Z�R���eP&K�^K��U� ��� ���'��w�Ͳ����F��ȫ���'K�����R�™�̫���̸Ů��ⳟ����^� �BE�J0G�O��vQQQD� yJ��=9�ïG��ȫ��vQQQDJ3�MvQQQD��ȯg�3�M��F]6������LuĨ⳺Ȫ�o- ����RT�⳺6����LRQV�RQS�f�H �� �Ʃ����yJ�I��I���ʽ���֧���Ԝ��yJ�I��I���ʽ���֧���Ԝ��?J�I��I���ʽ���֧���Ԝ�N6���谫ȯg��I��I���ʽ��\){b�R�CuĨ⳺Ȫ�ño- �RQ��RT�⳺Ȫ����O�����RQQOU������֧����էP�W���اf��C����G�O�\F]Ʃ�R»y��y��?�N6������uĨ⳺Ȫ�o- �RQ��RT�⳺MH���� RQV�RQS��yD�yD�?DN6���谫ȯ8uQS�y��y��?�N6�������\��Ư�'������Ư�'���R�™�O �O ��M����������u�oM�����M��P���#��`]Hɰ����uı�#���O ��*O3�G ��`]]M�����uı�#��#�ɰ����G`K;IzLɪ���Hɰ�F]zLɪ������������uĪ�M����#�����FQT���]M��#���Q����RQQQzLɪ���Hɰ����`QQ�`]zLɪ���Hɰ��PHɰ�uı��#�ɰ�RQQ����zLɪ�����������`QQQO��"��E�/#�ɰ��\){6��zLɪ�©ɰ�uĪ�H�秩ɰ�FQTzLɪ���Hɰ����ɰ�FQTzLɪ��������ɰ����\��R�™�̫��������u�S��G ���G�u�S���� /�İ� /�u�S��O ���u�S��B����y�� ��O ��O�O�çO�O�ñ��u�S�ûMK����i�����u�S�C̩�O �ī�G��`���ϧ�P�e��?���mK2�O :�#���)��ϧ@����c){#�i�R��/�0M_B����O/#�i�#�vkF]M��R��G�� P���O�K>=�|#�i��v�u����I�����i�RToG�/�Ĩ�+��i�^̩��&0�����R����QD̯M种�R���QD���GHI��^N�0M�%���������ʲ��\F]GI�R����P���O/�K>=�|#�i��v�u����I�����i�#�+GI�`]G��R���P�����KG�P���O/�K>=�|#�i��v�u����I�����i�RT�¨��PĨ�+G��#\`]��R��5<�� ����O/�K>=�|#�i�#��P����5���v�u�M��FTGI�`]OH�u�G��FTO�O��D��������`���ϧ?�< ��R�­�������i�u�S������P���u�S��B����=��X��M������=�u�SE��G�I���,�zN��PzN�u�S��B����y�� ��O ��O�O�çO�O�ñ���S�C̩�O ��C̩u�Q`]#�i��kF]M��R��G�� P���O/�K>=�|#�i��v��o���*e�����I���R����i�RoG�/�ĭ�������i��6�����i����o���*eJK��o����������\F]GI�R����P���O/�K>=�|#�i��v�u��RT���I�����i��zN��GI�FQTl�ç��"������e2B#���i����ȧ�\F]G��R���P�����KG�P���O/�K>=�|#�i��v�u��RT���I�����i�R��T�¨��P�zN��G��#\FQTl�ç��"������e2B#B�#�i����ȧ�\F]��R��5<�� ����O/�K>=�|#�i�#��P����5���v�u�M��FTGI�`]OH�R��B�����5���zN��ݧOm2���eP��OGIzN���v�u�G��FTM��J� ��<������FTO�O��D��������FTM��J� �zL�FVOH��zLF]GI����GR������GX�W�G���������W���e��P�ë����ݧK�N��/��C�GPI�ɩ����v�uķC̩���GD���P�G�������FQF�{#������i�����O/֪A�?@�`],:��4 �u�L®��O/:�$ʽuT�§uQT��.ۧ���O/���������ú,:��ú,:���ͽ��$�\`]H�����,:���oG,M�2&0���M�tHo�P�ʽ�R�L­P�,:��4 �uT�¹��\F]H�����,:�0��<>^0���M�tHo�P�ʽ�R�L­P�,:��4 �uT�¹��$��ú��Pĭ�\\){H�����,:�-��>^0���M�tHo�P�ʽ�R�L­P�,:��4 �u��¹���$��ú��Pĭ�\\){H�����,:�Z��0��<>^0���M�tHo�P�ʽ�R�L­P�,:��4 �uT�¹�����ú��Pĭ�\\){H�����,:�Z��-��>^0���M�tHo�P�ʽ�R�L­P�,:��4 �uT�¹������ú��Pĭ�\\){H�����^0���M�tHo�P�ʽ�R&�M���$��ú�_ĺ���i�����O/֪A�?@��#������M ��\FQDE�M��úEPĺ���i�����O/֪A�?@��#������M ��\��FK�H����#����(N�X^0���M�tHo�P��R���7�RQ'2ĺ���i�����O/֪A�?@��#������M ��`�Q�\)�������������e�B������F]MG���U&Ʃ�U��G��u�9a��GRQ��M�vS�������2����[�����9��ū�ç������)QQ�KŪ��vS�������b���[�����b�MG������,���)QQk`]o/U&Ʃ�Uŵ?��B���Z�����I��/�uı��W����V�����J�����V���������ŵ?��B���Z���JvQQJ�W�����������vQQJ�olMG���P�I��/`QQTolRQQ�vQQQ�����b�ì���%���ȶm����MG��@��ɱMG�������J�����V�����ᴨç�\�\vQQQQ������'2�ɧ@��ɱMG�������J�����V�����ᴨç�\�\vQQQQ������@��ɱMG�������J�����V�����ᴨ�vQQQ�vQQQ���᧙���\�ę�Z����\�vQQQ�vQQQ��鯮��ŵ��� ����,��6��çȺ�#ï��L������GvQQQ��𵿾�ì���%��� �E��'���'����� ������vQQQ����#L����ϧd��QT���O'>�k�\F�{�����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QS ��� ���>�}�ǜ�QS ���=��w޴ޜ�QS ���=���<��Ow޴㜛QSE���N��<��OJ״ߠ�QQSE���ܫ�I�������̱<��Ow�ל�QSz��s}�͜�QSAB�M�z��s�.�}�ʜ�QS���w�ʜ�QSj�����/�ȩ�J7�v�����;�U�ô⯨�=�� ƺ=�� Ʊ;���QQQH�A�}�$뜛QS'�/w�ǔ�_�����n�R���eP&K�^���U�o����K����R�QD�2&���U�o���������R�QD �I^������F{�����ƺ�@��Nwʱ��������v! p��髨�ůI2B�M�,����< ��i��v���%��� �E���ë�����@��Nv�a&yJ���v�V��%���N��� ���֌!���U���}�ǜ�QS��E��$�ǜ�QSì���ƪ�7�뜛QS��êOJ�h��QS����}$ל�QSd��4�wנ�QQSz��s}뜛QSLM��'�$�ל�QSj���n�������w��޴ʱʸ���ʱ�ë��QSj���B����=��Xw7딾_����ƴ�@��NF{�z��s}�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}栛QQSj���B����6�wʜ�QS;�}h��QS ��� ���n��ǔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=źǴߺv������@-�������ï���O���JԌ���e�R&K�^K��U� ���'��w望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}״ʲ���RD�^K��U���}�Dz���RD�^K��U���}�ʲ����F{�j�B:���EK�;I����LP�$ͱ��������v! p��ӳI����LPض�M�v��%��ŭô�� ����;I����L+v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj�EKë�̨���뱷����̨�����޴ʔ� ��MU�E���w�לQQQx�̫�3��wDz��QR�E���^��;�K;I������LH;I���4 ����LH;I��G�̫��R�QQQQQ;I��G���LP;I����L��A'�;I��G� ��������R��Q;I����L��G� �P;I����L��̫���;I����L��N�M���R�̫�3������P&� ƫ���yU�;I����L����R���U�����M��u�G�U�����G��u�̫�����U�����M�̫����F{�j��� W���ɱů��Ʃ��wߴDZ��������v! p��ڶ�ɧ ��_W�������v���%��� �E���ɱ W���ɱů��Ʃ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���Jì���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� ��Dz���R�QD���c���^�������U���X��׿����F{���*��=�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� �I�yJ���M��Iv�_��軯�=��իMR���U�����d�u�̫�����U�����̫���u���HPѲ�������²��� �I�v��QQJ����(���b����M��I�����$$Ǿ�v��QQJ����������$$����M�̭���I���:��������M��I�QQQJ����ȶ����²����������$$�������R!���U�;��I���I@��ܩ�����L̯�����w�ʱ�������֔� ��MU�x����w�ʲ��F{���ɬsɺ��ɬs�w��v! p��ҧ@�,����������G���ɬs�6�P����� ���v��%���ȴ��������E����ɬsɺv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʔ�O� �&�����R�VL>�P�R�V��J�����u�(�^yJ���vQQV���%��� �E������ծ����ɬsɌ���eP&K�^K��U�M��a�$�QQ���QE����������M��H�E���wʜ���QQE����������M��H��������w�ʔ��D ��MU�x�O� �w7�ʔ��D��HPѲM��H�������ñ����������M��H�n�����R�QD�^K��U���}״ʲ���R�QD�^K��U���}�Dz���R�QD�^K��U���}޴ʱ�ëײ����F{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}렛QQS ��}�͜�QSz��s}�͜�QSd�����ԧW��=�s�v!���U���}栛QQSj�;��I����E@���@-J7��ëǜ�QSj�-B+���YN�$�����;�Uj�����QQQd�G � �$7ל�QS��zLw����;�Uj�����QQQj���B�����O w$�!�����U·C����ë����;�Uj������Qx��C���$�ݽ��O0��q� ��RQ�����&��%��������o/�O0��q� ���.�ï��˧�R����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫���F{��Bŵ�w�ʱũ��v! p���=�s��Bŵ����C ���M�� B�����L�P�BE��ŵ����v!���U���}נ�QQS�8���E�L �P�$נ�QQS����wߴͱ�ëǜ�QS(<�w$㔾 ��MU�x��Bŵ�wʔ���eP&K�^K��U¿=w7ǜ���QQ��wh�ũͲ����R�ï��UxXN��Bŵ�u�ϧ𵿧_���O/�ɧ�,��ç���ԩMXN�9 R�ϧ�I�B��� ���c���������ݧȪ�X#�����R�ϧ�êP�O�P�R!����L��� ���c���R���ƨ����P��R�̫�����U������F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲ��O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǜ���QQj��� W���ɱAP�$�$$ʱ�ëǜ���QQj��� W����w�$ʱ�ë㔛�D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F�ϧ���O⵪O|�������d��e��P��M;�KP���ϧ]�W����9ë>���EK�_��Pȩ��ݧM;��X��ϧm�X����Ƨ]M����){�xXN}״ʱ��������v! p��ҧŵ?2B���K���-2��B#������ë������O�v��%��� �E���ö:�����xXNv�a&yJ�Y�a� @���NH�!���U���}�ʱi���������֜�QSj���o�źG���ʱ�������֜��Q�/��/}�㜛QS�@-w���ל�QS���ï���$͜�QSj�. �>��>���/���P�h��ʔ!����L��� ���c���F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh��){�oM���wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJկ�?���� @���Nahv�V��%�'�?�����Ժh��!���U�ů�s�}�ǜ�QSů�swʱ�������֜QQQ�QQj���B�����O w7望QS�@-J7�ǜ�QS ��}h��QSì���ƪ�7�ʜ�QSj�. �ì��zN�+ì��YN�״7望QSj�. �9�,�9�,��}7ߜ�QSj����GHI�ú���GHI��w�$望QSj�(�������(��@�,��7��͜�QSƫ�ƫ�n��ƫ�ƫ�7���w޴͔���;�Uj���u�_oM����n�F{��M0M�wʱ��������v! p���M0M��� �����B��,�����ç�I���[���P����X#����oW�"�v���%��� �E��ï+�M0M�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U�ϧd#����R�QQQj���}��ʱ�ë�ޜ�QSj���������ëw��望QS����w�ߜ�QS��� ,"wʱ�������֜�QSO� �dw�ǜ�QS;����}$ʜ�QQ�ϧdPG���R�QQQj���( ��������(�����C����QSO� �dP�$״Dz��)V ��MU�x�d�ŵ?2�ײ��)Vd�ŵ?�R&ŵ?��R^K�^��U�����QQDze�^���BJ�b�M�̨v��QD����J�bv��QD��<����P��ê�� �R��QD�O����� /�������F{�����wߴ��ë�v! p��ҧE�L ������N���������=�s�?����� ��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E�����������v!���U���}נ�QQSj���B����6�wǔ����<��PѲ�‘��}�ʔ�QQ}�‘��}7ǔQQ�������B����6�wDz���F{�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱ�ëޔ�G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[���[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F�O��L����?F]H��HL ���R„ȧE�uĨ�.�#�����D����FT��.�#��DHL �2�ȧE���N��L������R�E����P[�#uĪ�����!����L�����/çE����P�Ho2ľHL �2\FQTL���/ç[����G�HL �2\uQT��.�#��D���&M�<���R���QQV��[�2���\F]�����L������R„�L|�CuĨ�.�#�����D����FR�ϧ骭��P�����ݧ�����9�������Ȫ�����N��RĴ����b�L|���2�+����|��L|�C\){'>��������B�N��R©u�L©����b���QL��E�/�������uTH����HL �������L��FQTH����HL �������L��\���ƪƪ����ȨR��O��N��n�O��N�O�:��SO*,A�n�O�� ( ������ù�`){HI���IuĻ�uS�W�RQ!���W������ë����ë�*���� �RQS�M��HI���I�W��o���M����RQQ^����ɬvQQV �ï�K�JΩI��vQQV��ë���ĸ������HI���I��ë��ı������b���������uQS������������������HI�ôW��o��*���� ƹ����c�@��uĻ�&Ʃ�U�ç<�L����G�'��������uS�@��^�O�G�J��Ý���Y�Ƨ�ĸ���������ȱ�c��ù�˧<�L����c��@G�c�u¾���c��@GRW�c��c�uQ�c�@�������PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}޴ʔ�_Y�d���4 �F{��ɱ.��x�� �$���$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F��ϧӯ�� ��Į��������f�����IŴ�ҳ�� �ìPOH�>�����ϧ� �M����K��K����E����ϼ��ϧ������G �����PW��P�����IIEZ�2��Y�H���ϧ� @���Na�ì��%���N��� ��Y�H�$�ð����ç9����ϧ�����_�e�� ���$ì�������P��G ������ϧ�X��P�����I_�����êݧ���O�O�X�B��ů�������ϧ��P����P������ϼ��ϧ�Y������O'>��P��<"ݧ����ݧ����P�����I���){�������ɱ��P�$�v! p��� ��|��B��,���ȩ���PMB#XL#��v���%��� �E��K��������ɱ���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U�ϧ�=�s���H��R�QQQj���}�Dz�)����ϧ驿���P�=�s�?��@�,��R�QQQK������?P�$�ײ�)����ϧ驿���PȩŨ�����< ��R�QQQ����wDz�)����ϧڵ����R�QQQK��(,�P�$ǜ�QSȩů�w油�)V��eP&K�R�Q��D ��MU�x���M��w޴Dz����)V�M�x�Z��Jh�ʲ)V_K����K ���K ��|F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������J��K����ӭ�ܧ�K� ��ܿI���̵���?�E���ϧӯ�� ��Į������������O�/��ç�5Ȫ�5Ȫ����)���ůɴ���ȴ�����������R��RL/ �P�u��Aɬ��ë���u��ůɴŵ?<���P��P�u��ůɴ���ȴ[���������u��ůɴ���ȴG�O�G�`���]�#��R�&Ʃ�U���� #�L ��������u�L“��y�y����Q�Y�Ƨ��G���������HL �������uS!������ȱ���RQ����������<�L����yuQ��������@GRQTW������ uQQTL�HL �����f�����#�L ���������fľf�����u�¾@^;��HL ���JHL �����V�Y������Y�Ƨ�����C��Vf�G�J����������C�QQ�QQDƩ�����C�R�!������������e�ì��u�����ľy������������`{�A��sw���������v! p��ΫXP�ů������ ��Ȫï ��ݧX��1�����Pթ��v���%��� �E������Ϋ���A��sv�(�^yJ���vQQV���%��� �E������Ϋ���A��s��a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSE��E�����A+A��n��$ǜ�QSE��E�����A+A���,�êJ�$Dz��)V��eP&K�^ ��MU�E��̫Ʃ��6I��x�G�O�O��w�ל����x���M��w޴Dz����)VO0��q� �Ѳ����&��%��������o/�O0��q� �OL�H�v���QD��.�ï�P�R���QDOL�HP&��ƨ��D��?D��[�ȫ�����)V���5��^����Ʃ��N�bƩ�������E���)VK ���O0��q� ²;��I�&6��P����˹�)V0��3���!�>=�U!�>=������QQ�yJ�N��3������%�bƩ�������E�������?J�N�bƩ�������E������#�4PūH2�����|�B��ƪW��=�s�p��v���%��� �E�����E���0B�v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}ߴ��(�����C����QSj���( ��������(�����C����QS���E���ũJ״$ʔ!� ���O0��q� �ѲOL�H��;��I�R��QQQ������ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u� ��MU�x�����N�$��ʲ��F�{�Y�d}��]�Y�d}�ױ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R�����R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{��wʱ��������v! p���W �M@-#��L��#ê����<��ܩ2���#��L�����v!���U���}ߠ�QQSj���( ������뜛QSj�:d+:w��ʔ��������P��O ²��X��ǿ��H�Z�u���U������b�;� �u�c����bU���OL�H�u��b�J�b�F�d�A����R��4�����Ȩ���� ��?�H�u�S4����P�Ȩu�S��G ���G ��u�Sd�A���o����o���u�Sd�A����ʼn��u�Sd�A���o����o�����H��?� ���1KGM��u�������!������o������FQTH+H��?DKGM�^B�3�O �KGM���R��V�JLA�����'�?���E�v��VA��&� �# �R���QV�1&ì��G�J����O���\��1��\���1�������\){��<���� ( �U&Ʃ�UA�f[�?���u�L�&Ʃ�UïGy�˧�o������RQQQW����� ( �P���?P�G ���� ��?P�ݲ`��A�yDy�RQQQ�K ���f!� ���CRQQQ�A�f�C��źb�A�A�C�Q�K ���yDy��źb� ���K ���C�Q� ( �Pĸźb�� ( ��*���A�A�C�uTH��?G�J�L�WJ�A�yJK ���yJ���[���TG�Jì��%�ïGyJ�MKɴì���K ��+K ���f��v��QJA+A�f���+���[��B�[���Tol# ( �PW����� ( �U�K��LA�����@G��'�?����\���{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{����E���ũwʱ��������v! p��ҧ���PC�:��,���W��=�s�p��v���%��� �E�����E���ũv�a&yJ� @���:�Mv�V��%�������!���U���}޴��(�����C����QSj���( ��޴����(�����C����QS���E���lP�$ʔ!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d��)VEKM�^�U�����QQQDO3D�( ��R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ũ��=źi��v�V����� ��O���J�Բ�)V ��MU»��E���EKM�w栛x�����P�$油�F{�d��@��w״�v! p��v��%��� �E����̯���d��@��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���n�������w���ʱ����ͫ��ë��QS����������Jh�ǜ�QSì���ƪ�7�뜛QSd��}$Ͳ���R�QD�^K��U���}7Dz���R�QD�^K��U���}״ʱũ油���R���HPѲ�²Ȫ���e�K���!��!���ײ��R�G�HL ��P&]�����Ķ�ľM�,���`�QQQQQDM�,�DM�,�R��D�oG�/�����R���ƨ����P��F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7͜�QSA�L�$렛QQS ��� ���n�נ�QQS ��� ���EK�}$ʔ� ��MU�E���wߴ�放E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź�׺v������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʲ����F�ϧ6�_�y�� ��P'K���d��n�F��ϧN��L�dPB�� /�B��J����p�o��L������H�N��L�o��L�� /�F��ϧ� /�� N���O�<���B�o��L� /��ੳ=ݧ��ݧ�1�=�s�p��W����۲F�� �� Rľ�z��s�n���] ���ֹ���z��s���P�u�S� ��'K�P��P'K��u�S� ��.��.�u�S� ������P��P���Ȩ�� �M� R����J�¹����+MKɱ����`T���J�HI�ú�¹����+MKɱ����`T���J�.��HI�úѰI4P��I4��.��HI�ç�I4�`T��� J��`{��ɱ.��x�� �$�77DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W���ɱ��w޴���������v! p��ڶ�ɧ ��_W��J��ӱ� Ʃ2��ԧ[�ūH�v���%��� �E���ë�����+�ɱ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���̫���̸Ůw�望QQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ױ����㮻ߜ�QS̫���̸Ů����w望QSE����ë�������w��7ǜ�QS�����w�ǔ���eP&K�^K��U·C��ޠ���QQQN���$ʜ���QQ���⳺���⳱o- ���̫��J��㔛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�K���B�����ì��ƪ�$�v�VK( ��ƪ3��W������H����v�V���%��� �E����B������ì��ƪ�v�V�&yJҰ ��Nahv��QV���Q�%���ȴ. ����������رh�ì����V(�^yJ���v���Jì���%��� �E����B������ì��ƪ���)�QVK��U���}ޠ����ì���ƪ�7�����)�QQ���;�Uj���R��QQQ�j�����̺����̱���R��QQQ�j�����̺����̱=�����R��QQQ�=���R��QQQ�E�'���=��X�E�'���=��X�)�QV��eP&��C�2&K��U�K���B������H���$�͜�����QSE��G�I���,�zN�$�Dz���R��QQDK�QQQ&K��U�̫��ɴH��L��H��L��.�J7㜛��QQQ��QQj�����̺����̱.�}޴�ל�����QS�ô⯨�=�� ƺ=�� Ʊn�望����QS�ô⯨�=�� ƺ=�� Ʊ;�}望����QS ���'��w㔛���� ��MPQQ�x�����N�$�ײ����R�VG�U�G�G�� ��F{�j��� W����:wߴʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ëה���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F���������Ũ�������H�Z�Y�����GR�™�G���u�S��������Ũ�������H�Z�Y���������G�Y�����N���|�GR�L»�Ʃ�o���^̭ �������&�����:����Ʃ��ò��RQQQ��Ʃ�N��Ѳ�������M%���M��J����������Dz�uTGXJ��N���|�M�2W����# E�vQT�PĶ�ĩ������Y�����N���|���Ʃ�o������Ʃ�N��J����\R��ëP�����������৯ �MX������i���ĪP�񧲺�M%���M��Y�����N���|���Ʃ�o������Ʃ�N�����J����`�Q��� ���'�������N���|��I���L��ĪP��J���Ʃ�����Y�����N���|���Ʃ�o������Ʃ�N����QQQ��������ز`�Q�ëP��������#�B����Ʃ��ç�����C�2o�����ĪP��J����Y�����N���|���Ʃ�o������Ʃ�N������J�������������ز`�Q�ëP�J��������������#�B�����ĪP��J���;������N���|���Ʃ�o������Ʃ�N���������������`�Q��OH�>PIŪIN���|��IPW�N2�\F�A��ƪ�n�F]�O��R��IƸ��G�I2=�P�I���,��X����6�X�-ȧ�I��,�ç�=��:��-ȧ@-�R���8�B���I�/���ŭ�-�@-��P���"���@-��N2_�ȯ#� ����=ȩ2�-ȧ@-�R�Ω���ì���%��IX��O���-����+�Ƹ�ȶ���/���v¨u�G�#JQ�\��`]3R���>������#Xݧ�PG ��P�3�L>���P��-ȧ@-v��u�G�O��"#��O��J�\RQQJJRQQ�O��#\)�ϧ�O���C�2��� �2Z��P���3�W�����]������3��`{������3��`{������3��`{������3��`{������3��`{������3��`]��3R��N �@-�ݧ���<�@-#��G�L�3ݧX���>�@-���I �v®�#u�G��O��#��O��O��"#��E�/#�O�����\\)�ϧ�O���C�2��� �2Z��P�����3�W������]���������3J�`{���������3J��`]���R��W,�PG ���W����ë���v¨u�G�J�P��`]G��R��W,�PG ���W#�����ë���v¨u�G�J��P���`�ϧӯ�� �����������ݧ�J��X֧���)������H�ZR��R��ôì���ì��u�C���ïGP�O�Ʃ�ëL���ïG��'K����̫��������u��B����=��X���uE��G�I���,�zN�O�Ԫ����c�X�(�P�u�3���3����3�������3��ľ��0��R�C���ïGP�V�G��1���`+]~gବ��Z0���#��/R��QQQ� R��QQQ#ZuԪ����cR�GI�zN�uT����zN�H�Z�3��H�Z� ^0�0���\R�G��zN�uT���L�;�a�b�_zN¾H�ZD;�H��uQT;�H`QQzN�`]-ȱì���H�Z����u����ବ��Z�����`�q�:��l�'�� (�� �D <1�1Sbӥ�cd�'9��bd���v�U�[y9�bW��y��x���Р�$�A~�NG��*Q�"�� 86����N�Ĩ��Yh=!�q�àk�$<��M�$����HʸM����C ��˂��F�&e2�H��A�0"Pc�"BxJ:HI��Ģ�Xb6}� al���+&1�`��ĩ�BT�  W�m:����1ʪ �>c'� �,��k8$ L�j.�1MK�7�T�(1*� ���$�H@g�O����M)0�3 p��}&=M���|�)U�p�b�5�S�$��X������FV�s,(6!����#���y�}� 1��*�H�x6%��#�P�ʚ#ˌ2�Ќ��3�}x�1�0 ��u�V%�,n��^C�wLfA�JN���&6�A 0�c�8�Tj��0悉�.<[jT��<�bW��������G'�Є2���D���:�%��]&� ��q�xe�_M� x���,�ُ%�c���d^=�ӟ^&<~KQU%+9G {:source-paths ["src"] :compiler {:output-dir "out" ��:���ȩűYN��?�����R�°���P���u�S�:���ȩűYN�� ��êG�������:���ȩűYN�� ��êG������G �� "�B�NR�O'>P "�B�N������v�uİ���O ��B�NۧêG�����`{�j��� W���ɱAP�$ߴʱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߴDZ�ëߜ���QQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{����ߴO*,A� �$����������v! p���,�X�K>=��B��PW�O*,A���v����%��� �E����ߺO*,A� �v�aQQ&yJ��֌!���U�����ߠ�QQSj���( �}����ޜ�QSO��N��Qw���(�����C����QSO*,A��Qw����(�����C����QSd��+�曛Q�״7ͱʲuQ�QQ�MI�����K�B��P��$��ה� ��MU�x�L}޴�!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��)VOL�H���U²�������E�������QQ��ë����Z���xXN�OL�H�ŵ���Z���OL�H��QQ�L�"��QQ�����E������QQ��������QQ�K ����QQ��ë����Z���xXN�OL�H�ŵ���Z���Q�Q�����E������QQ������ò��)V������^���U�� ����ߺO�,A� ����)VL^��U�� ����ߺO�,A� ��QV�b�Q�� ����ߺO�,A� ���)V��eP&K�^K��U��MI�������,�J������ز����F{�⵪ "/w�v! p��ҧ�M��ݧ��� ���=�s�p��,���W��� ��J�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSE��� �ů�ƺO �$ߴ$ǔ���U������)Q�ϧK>=�|�o"���R���eP&K�^��U�������4 ������QQV���U���4 �� ��QQV ��MU�x�d�ŵ��2�$ǔ��DK��U���}�ǜ���QQj���( ��$ʱ���딛�Dd�ŵ?�R��^ŵ?��R��S&��U�������4 �������Dze�R��QQ&���BJ��4 �� �� @��M�̨v��QQD����J��4 �� �� @��ŵ?�v��QQD��<����P��ê�� �R��QQD�O4�L�O ��O ���M�̨���V����U�O ������+O ��̨���V�O����� /���R��QQD���R��QQJ��4 �� �� @��M�̨��v��QQD;��s��I5��P&��G�I��̨���D�����˹���F��E��O3�K�R�™�O ���u�S��B����y�� ��O ��cI�O�O�Ê�S;�����n�O�G�L��S��G ���G��;I����� /���B���F]ȩ�EAuĸ���� /RJ�W��EA�B��:���3�RQ��ٻ�����ȫ/�B�2��-�#�ݧ����3������RQ��ٻ�����ȫ/�B�ȯ�Ƨ��/N�ݧ����K>=�*/N��崲`]3����uĸ���� /RJ������5���GPȪ��ĭ������G��崧ҳ��G�R�ï��2�������2��-�#��]M����e���G�R���M�)Q쯳=ȈMG�� �P_G�����ï���������峳�N�R���Ȫ�ȯ��X#�#6.��FT��B��P�E��O3�����`]K>=�*/N2�uĸ���� /RJ֯�b#�2����GI���۽�Q�êP�?���Ƨ�����R. �#Z���������K�9gŵ?���FT��B��P�E��O3��/N���`]�������� /���uİ /�J�\����\��\��G��O ���Q��\���\��\){�����B��U��u�O⵪O���FTM��P��`]����H�Z�������u�O⵪O��E��O3���i�FT���L�G��*ĻM���I��E��O3���i��G���uTG��*�\)�ȩ�EAF&K��^��HPѲG��²Ȫ���e�K���!����!����!��!���G���R�EKM�^�U�����QQQD��;�Kŵ����n��������� u�VO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�޲��˼D�^K��U���}�ʲ��˼D�^K��U������Dz��˼D�^K��U���}ߴʱũͲ����)���������zN���o- ����������R���6�U�����?������P�O�]���ȧL�� ������Ȩ���O*,A�PO*,Au�SO��N��PO��N�u�S��������zN���O ��PO �u�S��������zN���o- ������G�LP��PG�L�u�S����������P��߶�����ȧ������&Ʃ�UB���u�L�� U���@-�QQ����@-�u�Q��(- ����!�(- ���u���?H�Z���QS�?H�Z���u�Q�����X�QS������X�u�Q���O/����o �b����O/����o u�Q���ȱf�QQ�bD���ȱCu�Q�M��ȱ�C�!�A���+�M��ȱ�C�T���L³�ũ�o�R��QQ����@-�D�����@-R��QQ���(- ���D����(- ��R��QQ�?H�Z���D��?H�Z�~�- R��QQ������X�D�������X�A�� RQQQ��QQV��ak�uQTL°N�X����N�X����O/����o ��D������ȱC��uQQSO ������^G�L�QQQG�L+ɬ��,���B��ʧ�M��ȱ�C��N�X睛QQQD "��?������ũ�Do- ����ɬ�RQQQO ���&G�LQQG�L+ɬR��QV��O�?H�Z���R������O*,A��������Můɺ~�- ����R�Ī�߶���ũ����ũ����\F{�5�ì'2�$$DZ��������v! p�����X�ؾ�� �K( ��vR!���U�;�̫?}$뜛QSE���3=��4 ���ɺ���w�����QSE���3=��4 ���ɺ��ɱ� �N����̿�w�����QSE���3=��4 ���ɺ��ɱ W�w���v���;����J��>� �B���QSE��"A �ƺ0A�,��$栛QQS5�ìEKw��v�����;�UxXNR���QQ�L�������N�R���QQ�x�d�ŵ?�R���QQ�xCR���QQ�x*����R���QQ� ���d�x�� ���QQQj���}�ǜ�QSj��Y�H�̿���h������������㱭��QS ���dw7望QSH ��}״הR�̫� ����U���b����������X@/�������u����5�ì'��n�u�_5�ì'��n�F{����c��wʱ��������v�VK( �����X�ؾ�� ����v�VK��U���}7ǜ��QQS����}DZ�������֜��QQSd��Lw㜛�QQSd����}$͜��QQS���w��͜��QQS�ȫ�Ʊ�}�͜��QQS=���}7�ל��QQS=��̺. �=��̱���P�ǜ��QQQ�E�'���EK�}ל��QQQR���j�;���ï�G��L�$�ל��QQSj�;���ï�G��L��6 ��w㠛����;���+�;������}$ʜ��QQSj��;������ Z��;�����=���}$ʜ��QQSj��;������ Z��;������(�}$ʔ�VO0��q� �Ѳ�����OL�H��%��������o/�O0��q� �OL�H�v���J�������.�ï���%��������o/�O0��q� ���.�ï����VK����Uu�V_���c���M��F�{�d�Ʃ��x�� �$�v! p���ƩLB����� �9��2B�6���-ȧ�=�s�ȩ������ �|X��ɺ�X��ɺ�v��%�Ȫƪ��M���ƪ��E���=�s��=�s�ƩLB�v��t�M�xXN���F{�W��}ߴ$�v! p��י���ȩŨ��W�LI5����=�sv!���U™}7ǜ�QS��o��}h��QSz��sw�͜�QS����w�뜛QS;�̫?w�ǜ�QS���Iw״ʱ�������֜�QSj�;��I���� G�����o�:��wױ�������֜�QSj�̫�����̫����ޜ�QS��êOJh�͜�QS����w޴ʱũ��㜛QS4=�� ����ܪ���C�L�I��$�ݽ��QS4=��'����H�w$ǜ�QSd��� }$ǜ�QS ��w�ޜ�QSd�o���wʜ�QSM9/�M9/�n�7望QSM9/�M9/���I�P�7望QSE�'�������J7뜛QSj�. �E�'�+E�'����?}͔!�����U�x� ��w״㜛�·C���ʔ���ƨ���K�P��R�_W���n�R� ��^ëL��W���n��.�RQQQDM�W���'�����O�I��'����F{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ױ��ʸ���ʜ�QSd�ƫ�ƫw7߱$ߴDzD��;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQ��êOJ�נ�QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴����;�UE�'���EK�����D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{�� wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}��ʱ�ë�Dz��R�QQQE��� ���� w�h��QS����}$㔾��U�����d��J����d��u���e�R&K�R^K��U���G����w��ʔV��U�G�d��JG�d��u�D ��MU�E��̫Ʃ��6I��x�G�O�O��w�$ʔVG�O�O��^��<���E��x�G�O�O�ñ��<����QQV��<�������"���R��D⵪������RF{� ��wDZ��������v! p��ҧ�=�s�ȩ�� �P@�,���v��%��� �E������,��� ��v!���U���}ʜ�QSj����o��}ʱi���������֜�QSE�'�����}ל�QSj�'��ū��̩����̩�����ל�QSj�'��ū��̩����̩����?J��ל�QSj�'��ū��̩����H��L��.��7�J��ל�QSj�. �ì��zN�+ì��n�״$ǜ�QSj�. �ì��zN�+ì��n��5�J״$ǜ�QSd�ì��wʱ�������֜�QSd�G � �$ʱ�������֔�O0��q� ²���O0��q��%����O0��q��E���!�����U�x�;��IP�$�ʱ�������֜���d��5�$ʱ�������ֲ��F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$���$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲ��O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǜ���QQj��� W���ɱAP�$�$$ʱ�ëǜ���QQj��� W����w�$ʱ�ë딛�D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{� ��}ߴ�v! p��ҧ�=�s�ȩ�� �P@�,���v���%��� �E�� ����� ��v�a&yJ����֧�NHv�V��%���N��� ���֌!���U� ��� ���n�ߠ�QQS ��� ���>�}ߠ�QQS ��� ���̩����3.�}ߠ�QQS ��� ���H��L�ߴʔ� ��MU�x�� w栛x�E���w�$放� � ���n�vQQQ� ���>�vQQ�J ���̩����3.�vQQQ� ���H��L��u�E���^���JE���v����� Jì��%��� �E�� ����� ����=ź�Z��˺ѻe������@-�v����U� ���n�����v��QQQJ ���>�����v��QQQJ ���̩����3.�����v��QQQJ ���H��L��������R���HPѲGQS�� �G�QQQJG��²� �G���QQQJ�N��Q�� ���� ����N���������F{�����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QS ��� ���>�}�ǜ�QS ���=��w޴ޜ�QS ���=���<��Ow޴㜛QSE���N��<��OJ״ߠ�QQSE���ܫ�I�������̱<��Ow�ל�QSz��s}�͜�QSAB�M�z��s�.�}�ʜ�QSN���ʜ�QSj�����/�ȩ�J7�v�����;�U�ô⯨�=�� ƺ=�� Ʊ;���QQQH�A�}�$딾_�����n�R���eP&K�^ ��MU�x�N���ʔ��DN�^�����N�JK����R�QD �I^������F������G����?�F]Ʃ�M�uİ /J�JFT���FTO3�@-`]������u�. � /���`�G���Rľ�xXN���uQQS��G���W����G ������xXN����W����G ��F{�b�� �ƨ����G ���*������xXN����b�� �ƨ����G ���*��F{�W���������xXN����W�����F{�O���>��Ƨ���xXN����O���>���F]G�ų��Ʊ� �Ʊ��*���-�R�L¨ �Ʊ��. � �Ʊ��*��O���>���J-Ȳ��uT�P��k# �Ʊ��\F]G# �Ʊ��*��� ��MR�L¨ �Ʊ��. � �Ʊ��*��O���>���J ��M���uT�P�O*M2�MG�� �Ʊ��`QT�P�O*M2䲵5�G�� �Ʊ��\F]G�G��G ��*���<��RĪP��J�êP�P��R�QQ��W����اE�R�Q쯭�O�vQTW����G ��RQQQ�MG�vQQQ��êP�P���\���W����اE��\�쯭�O��\F]G�G*�������RĪP��JMG��Q��êP�P��R����W����اE�R��쯭�O�vQTW�����JMG���êP�P���\���W����اE��\�쯭�O���\F]G�G�b�� �ƨR�L·b�� �ƨ����G ���*��Ho2�O���>���J ��M�\uT�P���MG���5�G��QQT����Ʃ�P�\\)�x���o���R�™�G���u�SxXN����������G�nO �MR�GXJ����9ëL�O��� �W�MvTL���ĻM�����u�QT�����M�����f�b�_�¾d�ŵ?2�ŵ?����JK����uQT��H�_���x�n�x�n�x�n��uQQT�P��JK�ı�^d�ŵ?2&ŵ?�U&f�K�v�����QQVze�^_M�˹��R��QQ�����nO �ŵ?��R��QQ��M���R��QQDC\RQQT�P��JK�ı�^d�ŵ?2&ŵ?�P&K�^ze�^_M�����R��QQ�����nO �ŵ?��R��QQ��M���R��QQDC\\F�������?��ȩű�����F]������o��u�L�oG�� ������+�M��ȴҵ����ɬR��QQQ�+�M��ȴȩ�ƪ�ҵ����ɬ�uToG�� ���\){�A���R�oG,M�P���"*�*�uĴȩ�ƪ�����H�թ�����+�������R��QQd���PoG,M�����#��"*�R��QQ��*�`]6���ŵ��R�� ɧ���ë�-�P����4 ��,u�6��𵻻� ɧ���ë�-�P����4 ��,\){6���ŵ��*�:�R� ɧ���ë�-�P�4 ��,�[�u�L�ŵ�6���ŵ��� ɧ���ë�-��R���E�/o���[�R����T󧶱�ë�-�Pǝ���QQQ���G`���Q#4 ��,�uT��H��ë�-�,��ʧ���ë�-���QQVL®ë�-���b�ë�-����ŵ���ë�-���QQM��Qo���[�R���QQQ󧶱�ë�-�Pǝ���Qb��ë�-����QT��H�ª�ɹ��MKɩ2> ���M���uQQT�H�ë�-������\RQŵ�`]6���ŵ����R�� �u�6��𵻻ί��"� �`T� ɧ���ë�-�P�4 ��,�[�u��B6���ŵ����� �FQQ�H�ŵ��v�6���ŵ��*��� ɧ���ë�-��R����Q�4 ��,�[�\`����c�ȯ����G��� Rľ���c�� �N��ŵ?��G�?�FT�O⵪O���c�'K��ŵ?2��Pŵ?��ľ®��c�?�'�����¨:5���o�:���'����ľ�C̩��ȩ��FT����c�ȯ������ `G����H���F� �GI��ŵ?�*��ï�Ƨȯ��PȪ�������v�L�̨����c��������̨�G�RQQQfįŇ�C�Q�Q'����MH���Dŵ?�P&�fC˝Qŵ?2�GI��ŵ?�*��ï�Ƨk�k�k�̨G��C��uT���ŵ?2����赭�������RT��ŵ?2�ŵ?�����"���罽�����RT���ŵ?2�ŵ?�趵�����M��RT���ŵ?2��C����C`� ��ï �������ȯ�ƨvı�Jì��%�=9�ïG����ʺï��+O0��ï ����������R��%��� �E��=�M���ú�ï ܩ�YN��C����Ż�����߻������߮�(����O0�O��O � �ì�����������=9�ïG����������ï�ƨ���O0�vİ�C�2Į��c�N��N�����DG��{�̫�����G+̫�����GP�$$�v!���U���}�ǜ�QSE��OC�,��d��Ȩ���wנ�QQSd�ì��w޴ǜ�QS��êOJ�ʔ���eP&K�^K��U·C���Dz����R��M�x�Z��Jh��v� ��MU�x��C���$ǔ! p��M�,��GPW����Ƨ�ΧX������J��������F{�����$ʱ��������v! p�����ȩŨ��W���ǩv���%��� �E����ǩ���ǩ�dv��M�x�Z��Jh��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QS ��� ���̩����3.�}7ǜ�QS����}$ל�QSz��s}뜛QSj���̫���̸Ůw�͜�QS0G�O��J��DZ��̸Ůל�QSd�#:ï��P�������ȫ/�B����RQQQ���D����Z��J�7�vQQQ��RF�j� ����������K8:��M���4��3�GR��RS��n����������������ۊS��G���uSE��G�I���,�zN��PzN�uSj� ����������K8:��M���4��3��4��3�`){�4��3��I-R��O #��P���4��3�M��zN�2B��ë�-��O3R��ç�?��� /���PO"�>2B�o��L�v�u�L®ë�-��������ëī��������X�ŵ����`�M��4��3��-P�ë�-��uT���������=��uQT����ۧ�ë�-�`QQTO���`QTzN��GIM�\��OG�n�R��RS ���?�O�0�a��PO��uSz��s�ëL��ëL�uSz��s�n�O� �Qϧ��RS"A �ƴ� N2��P� N�uT"A �ƴ� N2�6�K/�P��P6�K/��u��Qȯ�ƻ=�P��Pȯ�ƻ=Ȩ�SOG��ô����P�O����ï ܩ��SOG��ôH�� ���Qϧ�� RSOG��ô �«ñ �SOG��ƨ� ���ƨ� �SOG�ūH� ��ūH� ��`������ � ñ RQQQ��ƨ� RQQQ�ūH� `]��R�ëL����RT� N���/�RQQ.�� RQQ&=ȱ�����RQQD=�M����J�=�MvQQD]�������X�� J��ƨvQQD���ï ܩ��ëL���ı󧵶�ï ܩ�R����O���O�0�HR�����O��������`QQQD6�K/�*��6�K/�+�6����6�K/�*���Dȯ�ƻ=�U�ȯ�ƻ=�+M, �>*������\�����ܩ���M�'K�R�«��ܩ�����>�ū� ��_��P���>�ū� u�S���ܩ��H ���O�O3��Ň�� ��Ň۹�����<��M�'K�R��,_��'K���[�H��)Q'K�����������ƶ����>�ū� u[�H���[�Hĩ�������"2�n��B�H�FR�������'K�ݧ��ç�P����Ȫ����=�X�Ʃ���R����QQQ������'K�R��I4��PLI-2�I4��P���'K�R!�HQ�[�H'K��ȫP�M�2vĻ�'K�����[�H���'K������`]�M�'K�*e�R�Ԫ��M�'K�ݧ��"��P���e�y�W�M�����)Q'K��������������'K��B�6��RM���çB�[�H�eR����ç�O��M�2'K���?���� ��P�#��ܩ2��v�'K�����_�u�L�[�H�O3��Ň�M�Q'K��M�'K��'K�����[�H��uT� ��Ňۧ��'K�\){A1��M�'K�Dƶ�'K�����[�H�u&���'K������RD�I4��PkRD[���[�H��F]A1��M�'K�D���>�ū� 'K�����[�H�u�L�&Ʃ�U�X���˧[�H�uQ&���'K������RQD�I4��PĶ��>�ū� ��_�X��FQQD[�H[�H��`�H��N�ۼD��P�Ѳ����˼D���P�Ѳ����˼DK��P�‘��QQ}���(�����C����QSů���n�QQQ�7��(�����C����QS̵5��Q�״��D(���G��QS,�ܩ�����ů��� w���������ֲ��FO⵪O���,�ܩ�����ů��� ���uQQQ���,�ܩ�����ů���̵5�O�̵5���F]��Z���w7DZ�������ֲFů��� ۧ�Z���F�Ʊ����ۼ�0�Q&��QQ��,�ܩ�����ů���̵5�RQQDZ��QQ��Z���RQQDK( �����:��5GP_ů���vQQD����Jì���%��� �E��,�ܩ�����ů���̵5�vQQD(��^���%��� �E��,�ܩ�����ů���̵5��QQD�QQѲ�Y�a� @���NHv��QJì��%���ȴ�Y�H�L��� ���$ì����˼�̵5&� ƫ� ����,�ܩ�����ů���̵5��G��F�xXN� ��Rľ�xXN���D����*��# �Ʊ��*���uQQSxXN� ���H�ZD��H�Z�uQQSxXN� ���H�Z�3LD��H�Z�3L�uQQSxXN� ����ID���I�uQQSxXN� ��� �ID�� �I�������I�����uĨ:�Ѷ���E�/�I�@GP�A��\`] ��R�ի������X�ūH2. ��v&���I�@GP���H�Z#Z�3L��I� �I�D� ��U��H�Z���H�Z�3L����I��� �I��R�“�uQ� /�Ī��I������*���͝�Q�ϧxͧ��*��R�QQT��*����� �����T��*��J ���\FT“� �Ƨ����uQ9a� ��RQQJH�Z�. H�Z��I���JH�Z�3L�. H�Z�3L��I���J�I�QT. �I��I���J �I��.  �I��I�����Q� /��� ���G���\� �Ƨ�\��J������v����Ĩ �Ʊ��*������� ��\`�xXN�K��R�³��"��ľ™�o�Ŵ̫���?P��»e��ľ��0��. �>��'K��驰NK���u�j�. �>���� ���/�驰��֫��u�j�. �B�����/�?���e�4��.������Ʃ��NK���¿���y�Z���ĸ�B驰NK����FQT�H�����2���FQT�H�ҭ<� ��2yFQT�H��V���Z��\){K��R�ٶG��K��P_@źv“����u�L�K�����驰��֫�ƴ�uT�H��H�������"���/��ľ���`QT�H��eH��2K�����JK�NK�����eH��FQT�H����K����Ƨ���"���/���FQT�H����2K������y���`QT��H�K�!���P���uQT�3�驰NK��K�����Ʃ��NK��K�\RT��ɩ�K�����FQT��Ƹ��PĻe�����J@Ų`QT���"��E�&B���G������J�@ź���R�QQQ�b���N"����"���/���R���QQT�b�eH��2K�����`����e�4��.��\��ۺ���M�N��ů��)�H��N��R���P�ѲL���������P�Ѳì���� �!���P��ϧ�H���R���3�ƺů���dP�޴��ʱǜ�QQ3�ƺů���Om2�$״ǜ�QQK,N�ů���Lw״͜�QQ�����ů���ì��w޴ʱ�������ֲ�)��QϧҰ��K���R�����( ��޴��ʜ�QQj�:d+:}$ʱ�ë�߱�������ֲ�)��Qϧ��K���R���K�98P�$h�߲��F�Ʊ�����R0�^��:�-ɬ�ƫ�ū��'vQQDZ��wʱ�������ֲ�FO⵪O���3�ƴů���dP�O�d��QQQ���3�ƴů���Om2�O�Om��QQQ���K,N�ů���L��L�QQQ��°����ů���ì����H�>��F]�Ƨ���R�u�zRT���FQT�����FQTOm2��̨m2�ƫ�ū��.�����FQTLFQTdP�������R����<����P���R��ze������^K�98P���FQTH�>D���J�b�\){�ƧOL�HR�u�zRTLDzO����FQTdP���<����P�3���"�R��ze�����P&K�98P���\��A��G�G�?�Rľ��0�̫���?�o���O/�֪A�5�`]�ŨR¶uĪ��ʽ���ǧ�\){ȪM�«��u�����Pı��`QQQ�`]ȪM�«��u�����Pı��`QQQ��`]���ȪM��R«��u����H�Ʃ�P���H�Ʃ�P�\RT�Z��CN<��R�T����ȪM�ī���ŧ�`��Ʃ�P�\`�d��@���n�Rľ��0��j��1����:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$望QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��ʜ�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{��ɱ ��M�x�� �$ߴ7���������v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H��^���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{���ů�wʱ��������v! p����X�ɧYN�v��%���ůɴ�� ���v�a&yJ�����������U��陴ze����O �@��X�����)VK��U���}ߴ��(�����C����QSj���( ��޴����(�����C����QS��������C�9�w�ʱ��(���G��)����ϧ��/�AR�QQQ���w�����;�U���=����QQQ���=��w�望QSd��+O �$�״�ʜ�QSd��+O �:w�״�ǜ�QSd��+O �:�H�Zw�״�ʜ�QSd��+'|J7�$�ʜ�QS���E����A��wޠ�QQS���E���ũw�ǜ�QS���E���lP�7ǜ�QS���E�������P�$޴ǜ�QS���E����1��0���$ל�QSů��"�}$ʜ�QS�C�}�ʲ��)Vc����bP�&� ����� �� @��̨��b�uF))�{�Y�d}�Ͳ]�Y�d}����������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w���㜛QS�@-��@-J7�״͔��=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{������������w߱��������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�Nahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R��VK�^K��U� ���'��w㜛��QQ����������O���$�ʜ���QQ���dJ7��ǜ���QQ=���}7�޲����R!���U���}�ǜ�QSj���n�������w��޴ʱʸ���ʱ�ë��QSj���B����=��Xw7뜛QS ����C�L�I�*���$�͜�QS� �<��(w7ǜ�QSz��s}딾 ��MU�G�̵5�$ǜQQQ���dJ7��ǔ�G�U�������F��I���?�Rľ�N�;�FT�O⵪O��̫���������ľ��0��̫���?��N�IR��QQ��R��QQ�O�� ���N�IR��QQ֪A�Z���N�Ʃ]����u�b��i��bN���Ʃ]����`]Z��uĪ���ɪGPĪ����*eJ���d�`QT��J���d������O3�G ��/ç�`QT���t���I���?����b� ƫ��bٷ �|��V��\){����u����`]���ȱ�C5���u�L¬�֪A�Z��b֪A�Z���Ӳ�Q��O�� ���N�I���ܽuT��B��RQT�H�N�I������������Y�ʝĴH�N�I������اʝĴH�N�I�������ʝĴH�N�I�������������`QT�b֪A��\)]=���B�R����������ݧ��ç�Py2Mo��i/��R�QȪ��=�s�o��P�P��� ��ũë>�@������� ���R�Q�.���� �P����O������H��ݧ-Z�����Ƨ��� ��R�QI�2B�'�����E�L ��M� Ȫ�� ���G�� s���ƱL�>����� ���X�����L�>����F]H�����,���R��O��G���������I��|��P��tf.�Ʃ��RH���,�ôv�H�����,��uīRT��#����,��FQT�Z��Ʃ�ȯ8�Ʃ�PH�����,��`QT�Z���:�*����#����,���tPH�����,��\F]tC��H�����,���R��VC ��I��|��P��tf.�Ʃ��#��,�ôQ��ȨR�ٳL�ҭ��|��"������P����v�H�����,��uĪ�H�����,���#����,��FQQH�����,��RT�ٳL�ҭ��|��"���G�JٶtfH���,���#��,��P�v�����J�-i2�P���Ʃ�ȯ8PB���� ���Q쯵�JR�����#����,��\`��,C�H�Z�ů��R��N�X���<������A�� ���PB�ů��v��RS�,C�H�Z�6��B�6��BuS�,C�H�Z�?�±�������Sj�ì��ƪ��YN��Pì��uS�N��<��O�<��O�ľ��0��RT̫��������ҭ,�ٶ���4\){H�A������<��R�ůA���u�L��1ı�����A����Q��6��B������P�ů�B�N���1��uT<��O�Kŵ��JHX�ů��<���FQT� /��RQQϧ���ھ#ï��2�P������֧B��RQQ��ì����ů�ȩ�ï�Ʊ�����Q^3PѲ�/������. ������������ �v���Q��X��,C�Ϊ��s���R����1���ҭ,�ٶ���4���1���\F]H������<��R�ůM��u����Lµ������ȩ�ï�Ʊ����ů��uT<��O�Kŵ��J�N�X������<����PB���M���ů�FQTL��1ı�����M���QQ��6��B������P�ů�B�N���1��uQT<��O�Kŵ��JHX�ů�����<����İ /��RQQQ��ì���0G����R��Q&3PѲ�/������. ������������ �v���QQJ�X��,C�Ϊ��s���R��QD�1���ҭ,�ٶ���4���1���\`��ɴ@i�Rľ��GFT�O⵪O����/�9��u�S����/�A��X�����u�S�ɞPn��`�����GI��⵩�������F]@i-��uĪ����� @��J�⵩���G�ƪȪ�FT������ @��J�⵩���O'�G�GI������ïGJ=9�ïG�0�����FT���n��9�D���FT����秷����"���J��� Ʋ\F�����@i��⵩������@i-�F]����@i-�R���uĪ����� @��J�⵩������&�����`�*�ɬsP�� çn��9�*�ɬsF]G���� ��� ��M�@i-���ï����ȯ��R�����@i-���FT�P��JƪȪĪ����O"�>J�⵩���G�J�⵩���O'�G�\RĪP������n��9�\F]G���� ��� ��M�@i-���ï���*�?����� �R�����@i-����FT�P�k������O"�>J�⵩���G�J�⵩���O'�G��#XL�Ʃt������_���ݧ�OH�>�A[��W�t���v�t��u�L·A�t���S�Ƨ���>��t���uQ�����ɧ�����`]ůɱ�tR���>��0/��ůɩ2t���#���ů��O���,ȧt���R��4�PCN<����t��PO3��ůɩ�v��uĪ�MG��"��ɧ�������`�M��H����R���N��<��O�����S��G � �O�� /�9�� ���S���B��n�O�����,��e*?��������R����Q���ë�����ľ��0��̫�������e��=����"��U����u�ԯ������� /����"��PO"�>2�����>��� ��v�L¯���RQQQ�����uT������uQT�M�X��R�QQQ����uQQT�R��. ��������QTl�ç��"��R�T�Ȫ���G�� /�9�� �\\\){���ë��®ë���*�uĻ»e�uT��H��e��e�uQT�ë���*�e\F]���<���O*e���e��eu���b�4�e�J���<���O�`]KL�O�����>��R��L���O �����v���e���u��Ĵ���O ����FQT��H��eO'>���<���O*e��@G�eP����uQTKL�O�����>��e\RĴKL���`]���R®ë���*�u�KL�O�����>���e�J� �� @���`T����� �0G+�� ���� ��QQT,���ʝQQ��ë��ı�ë���*�R������ë���R���=����"���\F]����X�kF]GI�����X����u����I�������X�����. ������\F]G������Xu�����XRT�s�9�"�����X\�{��ɱ.��x�� �$���$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F&^K��U¨�4ï�}�ǜ��Sj���B����y�� �$7ל��Sd�G � �$7޲��)�� ��MU�x��� /}ǜ�QQx���GJh��QQQx�;�Z���$͜�QQx���M��w޴ǜ�QQx��ȫ��}״ל�QQx�ƪŪ�$$߲��)��M��U�L¯ ����O���>��B�噴G � O⵪O���QQQ��QQQ�� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��KO��-�\����)����HPѲ��4ï�²���������4�ï����RQQV��U���H�+̮���x�K��QDHI�ñ�����������˼��&���JҧȫB�Ʃ��� Ƨ����<-/�o�������O/�-i2� ��R�Qӵ�O/��ݧ��P�� ��PK( �������G ����C̩�M���C����� ��oɬRľ™�G ��D��̯M�����&���4���˧� ��oɬ��F]-i� p��Uu� ��oɬ�F]6��ȪM���/�A* ��o��K( ����1�u���M�X� ��oɬ�o̧� ��oɬ��K( ���uQ����1�`���Z�M���:�M�n��GR�™�G���u�S�Z�M���:�M�n�O�D�u�S�������G��ë�iGu�S�Z�M��G�?�������ɬs�uĬ��MG��|�y�� FT�`�*�ɬsP�"���ɬsF){G�G�6����1�RQQQ�PĬ����Ƨ�Z�M���:�M�n��6����1�\)]G�G�H���� RQQQ�PĬ����Ƨ�Z�M���:�M�n��H���� \)]G�G�3����?�RQQQ�������Ƨ�Z�M���:�M�n��3����?�\)]G�G�O'>���?�RĪPĬ����Ƨ�Z�M���:�M�n��O'>���?�\)]G�G*?����?�O�RQQQ�PĬ����Ƨ�Z�M���:�M�n���?����?�O&��������G���ƺ���P&����GP����\)]G�G�6����M��RQQQ�PĬ����Ƨ�Z�M���:�M�n��6����M��\��O�<���������-�R�¸������-�DO��6�U����G���QO�<��E���GR�QO�<��n��GR�QO�<���� �GR�QO�<���C�L�I��GR�QO�<�� ���GR�QO�<�������GR�QO�<����"���GR�QO�<���/N��n��GR�QO�<���/N��êG����GR�QO�<���/N��o��L���G`N��L�o��L�� /�F����GP�O�<��E���GR���O�<��n��GRQQQQ��O�<���� �GR���O�<���C�L�I��GR���O�<�� ���GR���O�<�������GR���O�<����"���GR���O�<���/N��n��GR���O�<���/N��êG����GR���O�<���/N��o��L���GF�����;�ȶ���ôo����,�R�ε� � #�i��o����,���v�™�G ���G�u�S��B����=��X�=�u�S��O�P��O��Ȫ�ëL�ۊ�S����E�'�������P�O������ܩ��S'�/�n�O�]����'�/�����B�N�ܩR�� ��#X���ê�� ��O����P��> ������B�NP���k���R�t�ȫP�/��N�ܫ�Lv�t��u�>�O'>������E�/����G��� �t����\)�Ȫ�ëL�ۧ��B�N�ܩR�̫��������ᵳ�ЯM���"�̫��������ӳ�ӫG��"��uĻ�������k`]o�����R�N�u&ì��Q^0�Ķ�����ľì���0�N�`�QV̯M种D���'�����RD��Q&ïG����ïG�N��QQV0�Ķ�����ľ���0�N����RD��QQ^Ʃ��� �!űƩ��� N��QQV;�^o �0M�P�B�N���!ű����N�`��QQV6�K/�P&!ű�N�����QQV��ȯg�!ű���N���R��QV������P&o��i���ⵯ������RDH�Z^�ɮë��ľ�ɮë��N��D⵩�ľ⵩�N���RD�ê���������ê��������N���F]�o���R�GI�=����!�ŵ�o������'�/�I���DN���|\F���(��98�R��K�98��P��DO��6�U]9g]98�:�]98�:�-��:��1���S���=���Pì��DO��6�Uì����S:�-���P:DO��6�U]����S��(���IH���IH�u�S��(��zN���HI�ô��|P�O�ΩI����� ������S��(��?��E�'��P@�u�S��(������P��P���Ȩ�`N��L�o��L�� /�F]98�:���(�R����+M�����R@ź.��F]��"�G�^���D�IR��VHI�úO����U����D�IDūܹ�F]"�K�98�~��e�R�r~��e�^�G�R����IH�r�IH�^O3��IH��O3D��IH����˽�`]9gHI�ñ��Rĸ:��1�R��觶1�uQr3����ۧ�IH��~��e��ΩI�����1�\R&M��� �����F]9gHI�ñO�����Rĸ:��1�R��觶1�uQr3����ۧ�IH��~��e��� ���P�1�\R&M��� �����F)�ϧ�������������������������������������������������������������������������������ϧ��K�98�){_�u�ϧo����GI.��ūH2����M�.��I��R�ϧ�1�P�����R����L¶1Ĵb�L|���2�+����|JM�.��I����uT�O��+�� ����ì��!��J�êP�Pȯ��X�����1�\MF�O0������0��R�™�̫���������ľ��0�̫�������eR��̫���?�����R��j��W��� ����X�[���0���ε�>���ٷ0����0��� q�`]���b*e�������uĪ�������V��Y����ղFQQ�ɳ�vQ�ɳ�ɲ`]���b�u�W��+�+�����i��b����̫��������������J������=ȺO0��������,:����\){���b*e�Cu�L°�b��uT��Ƹ��PĪ���e���`QT����eW��+���������ç�f�b*e���������\`]��e���0���O0�¬��ūaf����u�L©�0���b��0��ε�>���ٷ0����0��� q���������Q�eb*e����C�uT���0���0���Ѳ���>�ٸC˧�e�ūa����FQQ�e`�ůŴG���G`�m�*eJůŴd�F]G�O�0��B��:�XRĪP��J�W��Z��ůźO�0�H*��J�:����BݧB������ñB��\F]G�O�0��B��ï�RĪP��J�W���ݧ��?�����ůźO�0�H*��J�W�������۲\F]G�O�0��B�� ��RĪP��J�s��ůźO�0�H*��J� ��P6���N���4���A�=�Ƨ��\F]G�O�0��B*��"������XRĪP��J�W��Z��ůźO�0�H*��Jԩ��P������ũ�M2���۲\F]G�O�0��B� ����RĪP��J�W��Z��ůźO�0�H*��J٬�P������������ȫ/�B����B����V��\F]G�O�0��B*��"����� ��RĪP��J�W���ݧ��?�����ůźO�0�H*��J�W��֧��ا���ԧ�W��ا�Y������������\F]G�O�0��B��ïX�Ȫ�����I ��RĪP��J�W���ݧ��?�����ůźO�0�H*��J�Z������ا�����������Z�����Χ��ا�������������۲\F]G�O�0��B��ïX������RĪP��J�W���ݧ��?�����ůźO�0�H*��J�ݧ�ݧ���۲\F]G�O�0��B��ïX�Ȫ������;4����RĪP��J�W���ݧ��?�����ůźO�0�H*��J٧���ا�Y���\F]G�O�0��B�|�oMX�� ����RĪP��J�W��Z��ůźO�0�H*��J�X�Ȫ��A��P��� ���\F]G�O�0��B��e�"RĪP��J�M�ݧ��ȫ���ůźO�0�H*��J�\F����G�F�PO*,A�?�F)]�I�R����u��I�+o��L. G����\)]�ſR����u�Kŵ���+o��L. G����\)]=�R����u�=���+o��L. G����\)]���R����u������+o��L. G����\)]����Ru�������+o��L`�]���G�M�> ��R��uĪ�> ����FQT���G��FQT�I�O*,A���ɰ� �2��> �����ݧ������J��\���ê���YN�F]���������u�W�b����J����`�ѼDyJ?���ݼD��J�ݼD������O����N� ��M��O�������uQQQo�R��������O�������������FR��Z����O��������QQL�ūaı��O������P���GDt�Ho2�+���y��Q����P�WO���O�������u��QQTL�yO��Dy������4P����O��Dt�������4P����+ūHy��4���������+ūHy�����R���QQ�ɪ�O��D�ɪ������O��D��u���Ī��ɪ����"���QQS�ɪ���u���S�ɪ��4P�����\R�QQQ��Z�O��"������u����o2��ɧ�D���"���R����QQQ�ɧ�D��?���R����QQQD��a���ɩ�`���������G�����`QQ��QQ�����󧷨��R����oP�G�J�a�ūa��`���ToP�G�J�Z�J��Z�`���ToPM����QT�#�G��̯_��\����u�Q���H����O����N��# �����`R�D��HR�L·�����O������P�oPM���#�G��̯_��\����u�Q���H����O����N��# �����\F�DK( ���N�e����� ���1���O����N�P�E�/��O� 2�����2̯ŧ�P�1�P�M���������# ���P������̯�ݧ�����P̯ŧ�M��çK?����˼�xXN�n�Rľ™�o�ŴȪ����ľ�N�;�`]��kF]6��]�“��y�����u�ϧ�êP�P-"I�M"���=ȧ]�B���t�2MR���y�� ��B�m�*eϧ�9���6����I�ȪR�ϧ]�����ȯ��2��ë>�"�B��"�m�*e�O���-��R�ĸ����I���哬R��QQ�������. ë�ñ�ⵯ��I��`����Vy���y����y�����QD��Ĵb�IN�̫�������e���e�\`QQQ]�����y���\)�ϧί���� ��-�2B�������������2_���dȪ��P���xXN�n����]�����O3���R�»e�m�*e��eFQQ���FT¹O3������d�\){�_�E������u�L� ���PĨ��ů�G�JxXN�E�`��O⵪O �����Q ����O���> ���PĨ��ů��E�`���O3����uT�M�X�ze�����ze��������QG������J�;� ����uQQ�ϧ���ھ�N�s���P���"RQT.  ���I����ϧ�9aGP��#:����#�2����RQT����ȶ���N��\�{�-����o���ũ�ê>whv! p���ê>��P���=�s�� 3W��O���@�,���v���%��� �E�����ƨߺ�ê>v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�����5��^����Ʃ�<�ﵶo���-�����eP&K�^K��U���n�������w���ʱ����ͫ��ë����QQd�ì��}$ǜ���QQp ��w״油��˼�DK��U���}렛QQS-����o����O����$ʲ��F){�j��� W���ɱů��Ʃ��wߴʱ��������v! p��ڶ�ɧ ��_W�������v���%��� �E���ɱ W���ɱů��Ʃ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���Jì���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ë딾��eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����L����� /}Dz���R�QD���c���^�������U���X��׿����F�ų���ô�Ŵn�RT�O⵪O��̫���̸Ů��ⳏT�O⵪O� ⳴n�O�]�� �����Œ��RV;�yJj���@��J���vV� �BE�J��@vV� yJ� ��źų���ô��@�˽��ϧ6� ��𧪻���O3�OH/){�� Jų���ú�ź�� ���v^o- ���Œ�F]b���yUuT�RQQTL�O����P�b�y��u�To�R�QQT������O������^������R�QQV��aO�����`QTl�ç��"�RQQT� /��\F]6����LUuTRQQT�⳺����E�P�Œ�R�Q������ا����ا���y�ɬ��JR�Q������ا����ا�Iy�ɬ��JR�Q������ا����اū�y�ɬ��J�Tl�ç��"�R�T� /��\F]0������LUuTRQQT�⳺����E�P�Œ�R�Q������֧���ڧ���y���V�����R�QQT�����R�QQT��I����R�QQT��I����R�QQT���-��R�QQT��L����R�QQT�ի������R�QQT��I���R�QQT�Ϋ�ë��R�QQT���,�4��R�QQT��j���ϲ�Tl�ç��"�R�T� /��\F�M�M������GRľ�N�;�FT���0��j�M�M������YN��ï1���'� ի���R����QQQ���'� �QQj�M�M������YN��ï1�o����,�������,��?K��QQj�M�M������YN��ï1��� ������,���< \){�MR��O #�� ���YN�ݧ�PƩ��t�MB�O'#Z�O3P�� �v�����u{�o������,��?K��`Q��Ĵ0�ĴïG�3��Z�o��J��޴$$Dz�������,����� ��������������������FT���3��Z�o���ïGJ��޴$$Dz��0������,���< ��������������������`T]�����'� ի�����ŵ?2o�\R{�9��b� ���`T� /���N�X�Ʃ��t���FT���9�JƩ��t���FT]�t�Ĵb�9�JƩ��`T� /����Ʃ��J�t��FT�G�����`{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�̵��w���������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ߠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}޴ʔ��D���U�K��� ����R�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�h��QSj�'�?�����M�}��ל�QSE���� ��:A �L��}Ͳu�QQQK�-�����3���w��㜛QS����������O���$㜛QS����}$ה�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H���E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{���G3�����P�$h���������v! p���Z���N���/�A�PW��=�s�v��%��� �E����G3�����v�a&yJկ�?���� @���NHݧ���hv�V��%�'�?�����Ժh��!� ���O0��q� ²OL�H��;��I��!���U���}�ǔ�̫�����U������F{�E��ï�I�LȪê��ſ���,��⳱���$�hv! p���,���ԧM�� B��I��4�����v!���U���}ߠ�QQS���������=��Xwh��QSE��������+� M��J���X֜�QSd�ì��J7栛QQSj���[��̨w7뜛QSj���[��ɷ�w$ߜ�QS�����KG���KG�H���$�͜�QS�����KG���KG�̩���$�͔�O0��q� ²�"�����OL�H�v���%���ȱO"������N�M��'�e�����E�����Ǻ-��o/�O0��q� �OL�H+��E���^��� Jv��A[�^����W��Ƹ�ȶ��F{�����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QS ��� ���>�}�ǜ�QS ���=��w޴ޜ�QS ���=���<��Ow޴㜛QSE���N��<��OJ״ߠ�QQSE���ܫ�I�������̱<��Ow�ל�QSz��s}�͜�QSAB�M�z��s�.�}�ʜ�QS����+o���wߜ�QSj�����/�ȩ�J7�v�����;�U�ô⯨�=�� ƺ=�� Ʊ;���QQQH�A�}�$뜛QS'�/w�ǜ�QSo�$�望QS���⳺���⳱o- ���̫��J��ʔ�_�����n�R���eP&K�^���U�o����K����R�QD�2&O����"�U�o���������R�QD �I^������F{�̵��wͱ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ߠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵����������J7Dz����D��eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}޴ʔ��D���U�K��� ����R�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{� ZW��z��J���޴�7�ʱ�v! p��ҧ�#� s�W�O��N[�v���%��� �E�� ZW��z��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}��ʱ��͜�QSj���������ëw��放� @��^��Jz��v�V�AJů�B�v�V��J����v�V� &�ï�J�5����v��QQD=����êJ����z���������v��QQD�?J��5��-� ZW��E��ƌ�V�ePѲMK�&M�JG�z��������d�v���QD��Jz��v���QD<�LJn�v���QD� <�LJ.����������R���eP&K�^K��Uª���ê�����C�� @��}��望��QQ���G,J���޴��ͱDz����F{��.��M�$�v! p��ҧԫ�������� ������ �>�ūH2N�MW��,�<��M, ����W��v��%��� �E��Ű����.��M�v�a&yJ�Y�a� @���Na���v�V���%���ȴ�Y�H�j�����|+� ���$�ð��_�.��M��O R� ��^ëL���.��M��M, �ëL��R�O0��q� ²Ū�[��%���G.�E��>��OL�H���QS��ɰIH��%��ɰIH������LEK�E������O0��q��Q���������%��������o/�O0��q� �OL�H���QS�. �%�O0��q��. �o/�O0��q� �OL�H��!���U���}렛QQSMG.Ia��㜛QS@���w�7͜�QSz��s}栛QQS ��� ���n��͜�QSE��Ū�[��Ū�[�}״ʔ!������R�QQS� ��� ���>�}�Ͳ��F{�G�?P�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ��Աh������Աh�������W���ӳ��ñ��"���hv�V���%���ȴ�Y�H�L��� �h��!���U���}�$ʜ�QSƪɪ��P�$�͔�O ����P&M��O⵪O���G�?�R�����n��P���u�����3�O�3��u��QQQ���, s�����GP��P��u�����O?����u����¨�ůɉ��u�����ȯ8���Ȩ���QQQ��R���U������JG��F{���ɮ������<ë��}ʱ��������v! p����>��=�s��� �|��������<ë��#I��v���%��� �E���O�=�ƺd����<ë��v�a&yJ� @���:�Mv�V��%��������)VK ����,��U�i���)V ��M�R��x�;�Z���$벹�)VK���R‘��}޴ʲ��)VE���^A[�^����W��Ƹ�ȶ�R����� Jì���%��� �E���O�=�ƺd����<ë�ú�=źi��ѻe������@-˲R�!���U���������QQD���J����.���)V��Cũ&����� ��巵�<ë�ôn��յ�<ë�ç��[��ë�ç巵�<ë�ôn��ūH�����F{�?O������ů���;�mK�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U����QQ}�ǜ�QSj��� ���,Aȯ�ƺ�� ���n�7͜�QSE��"A �ƺ0A�,�QQQwh���;�Uj������_���ƪ����?O������ů���;�mK�R������J�bϧW"��b��B�M_7�z��?���R���eP& �I^������F�&yJ�����8��@G�@�ƨ�Ȫ�kv! p���êP��L�����P@��PB�8��k����@G�A��PB�Ū��ȯ������a@��PI�R�O�:M�/���ɧ8��OG�8��k�v�3��Ū��@G�A���纰�8��k`V��I⳱G ��JHL ��Ū��@G�A���簧�R�@G�~g8���������������X��������ާ�R�@G�~g�ů��������������@G�A����R�@G�A���簧8��k��R�@G�~g�ů��������������Ū��@G�A����R�?��@G�A������Ū��@G�A��FQ˲˂��(��Kŵ�R��ïȧMW��W�Kŵ��X�v��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P��u�S��(��@ʼn@ş�Kŵ������[����-�u�O��r��NK�RTO�uQT�r����kR�QQ�r�קkJԫG���٧9������r�O�kb�_[�!�ŵ�D��G�.��`�QQQ�r�B��P&;��4�ŬŬ�������v���QQV�@�Ƨ�ĸ�(��E���5l���̫ɱbb�_[�!�ŵ�D��G�.�����R���J� N2��٧���FR�QQ�r�קkJԫG�O�0�H����r�O�kR��QQT. �r���kR���QQ����Ƨ����r@�kG���J�\��\��\b�_[�!�ŵ�DO�0�H�\FR�QQ�r�קkJ֯�N����r�O�kb�_[��DB�N�`�QQQ�\F]��[�R���[��� ���2Kŵ��MW��v�Ʃtu�@ź��[������DKŵ��ƩĻ�蹧t\���C���0��Rľ�C̩��ȩ��FT���C��L�`]~g� �_�CN<�����F{~g֭¨��-��� �� �M�F]~g֭�Я����L�� �F]-ȱ��0��O�Ʃ��u�֭�Я����O�Ʃ�U��3��B�0��0�����-���L̯M���L����O�0�Hu�L�̯M�� �_�� �M��CN<�̯M��̯M`��֭�����Ĩ����-���LľCN<�̯M���ǧ�͝������L��0���Q���QQQ��L����O�0�H��̯M�� �M�uT֭�Я������L��0����To�� �0�����\F� �P��ů��X�B�0��vĻ ��ï��232Ȫ�zL���L���vT��3��B�0��֭�Я����y����Q-ȱ�L�fH�����QQQ^CN<��C��������Q�ų�ò��D �E�/�����`��ű⵪ܴ��R��O��N��PO��N�O�:���"���R�:^�����kRQQQD����P&nO ��R��DMnO ���RQQQDůI2��RQQQD���O/*���2kRQQQD�MkRQQQD����������RQQQDm�X种RQQQD�����,�/�� ����D ���͏QQQD���P&[���D�Ű����R��DK�0e �����R��D������������R��D���Jv��D��ũ�P���A �R��DHL ��P�&���R���QQV R���QQV�?���R��D��I�����J�QQQD ��P& ����J鷪��v��D ����JЫ������մ�QQQD�������F]���<�������F]A1���>��!������R�&Ʃ�U������[��uĩɺ���a�EKD������� �|��R�VA����l�������>���R�VA�����������`]A1��!������R�&Ʃ�U������[��uĩɺ,�a�EKD������� �|��R�VA����l�������R�VA�����������`�������n����߶R��ľdP���6�U�N��B��B��6���`QQ�O⵪ORQQ����ľdU�O��N��H��H�u����N��B��B�DO��6�P�Ȫ��(������QQ���ľdS�N��B��B���Ȫ��(�����\){��o���R��ľd^��� Ʊ=9LDNR�DK��'K���R�D��I���߶����d�QDdP&��� Ʊ=9LDNR�Vze��I�B��6�+���ze�J��߶����d���`]������B��Ʃ��o������ϧ6���������){�Ʃ�u�L³������ľdJN�dP�H��bD����`���G������������Ʃ��uT��������G�J����G�RQTG�J�Ʃ���\F�ϧӯ�� ����������ק�J��X֧���)�'���I����R��RE��G�I���,�zN�O�Ԫ����c�u(�P�u'���I� ����O� ��ëL���W����� ��L��u��ôì���ì��u�`]b�ëL�R��� �X�ëL�����zN�v�zN�uį�R��ϧ�L�P9���������2�P��oG�� ����R�ëL��zN�FR��ϧڭP��K�NK������#���� ��W����� ��L�FQ���L°�C���G�?���Ĩ���� ��W����� ��L����tPzN�\uQO� ��ëL����C`R��ϧڭ��"��PȶR��ɱM��W���çì��#Z�O⵪OP��ëL�ݧ���K�NK��#���� ����W����� ��L�\`]~g�W��H�ZëL�uԪ����cR�GI�zN�uTL�H�Zì���GI��H�Zb�ëL��zN���zN��uQT����zN�H�Z#Z\R�G��zN�uT���L�H�Z�H�Z�zN��uQT�;�aH�Z�ĸ����zN�DH�Z\F]�-ȱȩ�H�Z�(R&0�+�/R#����ȯg+Ҷ��F]-ȱȩ�H�Z�^�P�����uı�󧯰��RTA��&0���FQT+tC-ȱȩ�H�Z�(FQQ����W��H�Z`��9��(R��(�P��ľ��0��̫���-��ٟ�#��0���(A�R������O/����0�2(A��v�ю����F]b�(AR����P(A����X����Դvµ��uĴbήA��ٴ����\){#��0���(A�R�� ���>��ԧë>#��0�2(A�v�z#��0���(APb�(A`]�Ϊ� ���� �R��#�� O� ��v&�b+ů#��R��+�O2���0���(A�J���0���(A粽��F]���⵩Gΰ��R�ҧO� ��������)Q�L�a�����P �� �<��(�P�o����ȪR���������ݧ,��İ�.P'O���������R��L��Ȫ�P���C��ƶ�ȧ��ç���(�R�ūų��#ï��2ë>�tC�������������>����ů�R�Ϊ� ���� ��ݧ�9������������)Q��ȫ�����tf�Ϊ� ���� ��R��ȫ�������8�2E�L �����tf�Ϊ� ���� ���R��ȫ�����8�2E�L �����tf�Ϊ� ���� ���)Q���������?PB�����������ȫ��#:�X��=�Ʃ�R@���Ϊ� ���� ���C��tCũ9�ݧW���4 �ݧ���R�b�ȫP��ݧ��ç�P������0�2���#�A�����ȯ����>RũN��I�'O���������X��o�����=�P�B�O����R�P���������A����Rv�+o���R���Ϊ� ���� �R�> ����+O�����>������ �ΰ���u#������+O�����>������ �ΰ����`��� c�� �R��O*,A�n�O�O��� ��`O��� R����O/������RϏŧ�uT����O/���������\)�O��� �D�ż�¸ŧ�u���`O��� �Dm�X��¸ŧ�u�m�X���\){W������������uı�#����RQT��[�=>�E�/�ĵ�[���e�E�/�ĵ�[�-,��E�/�ĵ�[��L���E�/\){W�������U������uı��#�����RQQ��W���������������6��2�\)�O��� �D��������Ϗŧ�u���RQQD������RQQ�t�RQQ����˝W��������\F�����������Ŵ���Ȩ�ȩ�EAR�·���������Ŵ���Ȩ�E�'��PE�'�u�S�����o/�b<���GI��ľ¶����n���]�����QQS�����n���ì����������ȩ�EA�uQQQE�'������R���J�W��EA�B�����������Ų���������������u�E�'���������R���J�W��EA�B����۲u����,��J௰����@���۲�������,����u�E�'���������R���J,��ǧ��ʲu����,������G�J����J������Ũ�ϲ�,��ǧ��ʽ�����H��N�ۼD��P�Ѳ����M�̫�������G�̫���˼DK��P���,�ܩ�����ů���̵5�$ʱ���������(���G���F]��Z���wʲFO⵪O���,�ܩ�����ů���̵5�O�̵5���F�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ�˼�̵5&� ƫ� ����-��ܩ��� �X�ì���H�Z��F]�ƧGR��:�e������5G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\��ȩŴzN����1��@��R��:�-���P:DO��6�U]����S:��:��:u�SȩŴX�X������3��R�ŇR�O��uTL�&Ʃ�U�M���r��P���uQT�r�����P&;��4��3���QQT9a�M�R��O⵪O|��v��zN���v��ȯ�Ʊ����v�����v���\`]��3��r� q�3��`]��M�������RѲO⵪O|�O⵪O|�RJzN��z�-/�RJȯ�Ʊ���ȯ�Ʊ���RJ�����F]�1����&Ʃ�U�M2y��u&ëL��M������ȧ�M�FQD���I4P&��焩R����1y��F]����1��M�R��r�K/R�CN��P���uS��1ľy��������r����R�����uS�yD<�LD�M���ŇR�O��uTL�&Ʃ�Uy�<�L��M���r��P���QQĶ1����r��P����uQT�r����P&�@�Ƨ��X� <����ۧ���QV;��4��1��@�ƌQQT�3�&�M2�M�˝T�r�����P&;��4��1��@�Ʊ<�L�˧<�L�T�r�����P&;��4��1��@�Ʊy�˧y\`]��1��@��r� q�1��M�^Ʃ�*�y�`{��ɱ.��x�� �$ߴߴ���������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�$״ʱ��������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V����ì��%���ȴ. �� �������رhR�V��G ��DO0�R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R!���U���}�ʔ� ��MU���H���Gȯ1w7Dz��F{�lP�$�ʱ��������v! p������������G, �PW��=�sv���%��� �E�����E���l�v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���Uu!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��)V��U�����u�G�U�G��)Vd�ŵ?2&G�E�PѲG²�1�����G��̨���R�QVŵ?�U&f�Gv��Q�QD��U�����G���QD��<���E���1�����G��̨���QDze�^���BJ���G��̨v����D����J��v����D������R����D�*�P��R����D9�������P�R����D_l�����-�R����D��<����P���R��QQ�QQD�bD�1�̨R����D�O����� /����˹�)V�I���;�U��\��Ȱ�|�\��ȯ�u���eP&K�^K��U���B����y�� �$7�ǜ���QQj���}ޠ���QQQj���( ��$ʱ���ޔ��DEKM�^�U�������������J����EKM����D ��MU»��E���EKM�wʱ��������v�Q��V��;�Uj�������Qx�d�ŵ?2�$벹���F{�E���,M �0GJ�$ʱ��������v! p���J���ի?���=�sv���%��� �E���Oȭ�0Gv�a&yJ���v�V��%�N�Ȫƪ������Ȫƪ������NHv�V��G ��DO0R�VE�|P��a�������� �ƌ!� ���O0��q� ²OL�H��;��I��!���U�E�'���EK�}���QSE������?�̫�I�?}�㔾�=���IP���I���O�L �����R���eP&K�^K��U��R��V�^K��U���}޴ʲ���R�QD�^K��U���}ߴʲ���R�QD�^K��U���}��ʲ����R���HPѲG��²Ȫ���e�K���!����!�����G���F{�O*,A�x�� �$��DZ��������v! p��ԩMXN�� W�����Nȩ������� �|PO*,A�����v���%��� �E����ߺO*,A�� �v�a&yJ��֌!� ���O0��q� ²OL�H��;��I�u��QQS���.�ï���;��I���(�^yJ���vQQV���%��� �E����ߺO*,A�� ����t�M�xXN���F{��ɱ.��x�� �$�$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F����c�� �N��ŵ?��M�N"R���PW�6�X�ŵ?2��#���"���vľ���c�?���FT�O⵪O���c�� �N��ŵ?��� ��P� ���®��c�� �N�� �� ������c�� �N��ŵ?��M�N"�,?�R�Q���c�� �N��ŵ?��M�N"��ð`]�M�N"*�P&,?P��I����c�� �N��ŵ?��M�N"�,?+������QQV�ð�I����c�� �N��ŵ?��M�N"��ð�������F]H��M�O2� ��u����� ��H������"��DM�O�� ��`] ���8��O�H���DH���D0G�H���D�O�GDGD0G�G�F]A���� �U�����uı��#����RQQ������������. ̵� ���8`QQQ. ol\){M�� ��R�骨��P�O0����O���-2��M��O0��������������P��#�⧯��ŵ?2 ���v�O0u�L� �Pı��M�N"*��R��Qt���QQQ�l�����O0`��QQA���� ����QQQH��M�O���uQ�ϧ������M�N"��EA����Ȫ���X�����ݧ��RQ���2� �ݧũ9�ȯ��2GI�1 ���JO����uT��H� ����� ��. ��� �ŵ?2 ���¹\��� ��oGF]��űïGJì��%���޴$$Ǿ���ʲF]�MKɱyJ� �޲F]������3�2�F]������0��.�����F]��������N� <�LP�F]������yPѬ����3�2�Ҹ��v�QQQ������0��.���J�1�.���v�QQQ��������N� <�LP�ڰN� <�L���F]���[�������F]���[����1���ʧ����`]�O�����������F�L���O��"��R�™�n��O��"�P��P��ľO���D��;�K�����称����E�/��������R�Ұ � ���B�� çt�_E���# ��<����� ç���u�SO��N��P�u�SO*,A�n�O�� ( ������Ê�S���"�@Ũ�������(N��Ʃ�����������Ʃľ���?�����(N��Ʃ��`{������<�LJ֫�Ƨ�?��F]#��LP&���QQQ^��M�B����R���D�3�X����R�QD<�LQQQ^�M������R���D��������R���DE=�J�,���QDK( �&�M������R���D����������F]�����[����f�çt��uĸ��������[���Ƨf�çt��������uĻ�uTL���� ( �¾b����O/��Ə�&Ʃ�Uf<�L�K( ���˧���uQS�������^G�L����G�L���RQQ���ɬ�M�^G�L��T�<�L#��L����D]��������<�LR��QQD �ï�K��QQ�֪�Lv��QQD���<@-�QQQ��R��QQD���nO �Q��R��QQD �ï�K��ɬ�E=�J�,�v��QQD��ë�������ĵ�[���Ƨf¾<�L�����uQQ���ɬ�M�^G�L��T! p�G�L����D]��������K( ��R��QQD �ï�K��QQ�֫�Ƨ� p��v��QQD���<@-�QQQ��R��QQD���nO Q���R��QQD �ï�K��ɬ�E=�J�,�v��QQD��ë�������ĵ�[���Ƨf�! p������˹�\)�K�K'������GR��RK�K'������P�u��G��]G��PI����������=�R���K�K'�����������=�F]G������=��G�RĪP���ę�n��=����s���^��J�$$$Dz˝Q�����=���������ɽJ�$$$Dz\`]G��������G�RĪP���&��J�$$$DzˊQQQ⺭�������������ɽJ�$$$Dz���QS&��J�$$$Dz˹\F]G�=�����G�R�I©�P�O�������O����P�⺭���=�������`QS&��J�$$$Dz�uQ峺��?RS�)QS&��J�$$$Dz�uQ�ij���s���^��J�$$$Dz�FQS�&��J�$$$Dz˹�`{�A�I8�����9��$ʱ��������v! p����ɰ�|���<���X�ze��W��=�s�EKv��%��� �E��I8�����9��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj����QQ��ǜ�QSj���B������������wʜ�QSj���B�������������Q�$ʜ�QSj���B����O3QQQwߴײ�R�QQQ��F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W���ɱ��w޴���������v! p��ڶ�ɧ ��_W��J��ӱ� Ʃ2��ԧ[�ūH�v���%��� �E���ë�����+�ɱ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���̫���̸Ůw�望QQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ������ޮ��QS̫���̸Ů����w望QSE����ë�������w��7ǜ�QS�����w�ǔ���eP&K�^K��U·C��ޠ���QQQN���$ʜ���QQ���⳺���⳱o- ���̫��J��㔛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$��$����������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E��ï�I�LȪê��9(3��9(3��n�$ʱ��������v! p��Ϊ� �ݧ��Gݧ���ȩ�� �P_C�:��=�sv��%��� �E��ó�ê��9(3��v!���PRS���}ʜ����o��}ʜ�����̺����̱.�}�͜RQj�����̺����̱=�����}�͜�=��̺=���}7�ה!������RS��Y�H�̩����̩����H�ZJ޴$$��ל��Y�H�̩����̩����H��L�޴$$��ײ�QQ�RQj�����'�ƺ����'��J7�ǜ�HL5����HL5���H�Z�HL5���H�Z}$��;����JG��������R��I���O�L ����R���J����M�v�G�J����G�v�� �J����M�� v�G�� �J����G�� v��I��J�b�F�.�� ���R��.��O�OH/��O��u�S.�� ��� ��u�S.�����< ������u�S.��(ON�(ON��"�MK�:��`]�XL[������u�O��RQ ���г��RTi�*�2��uQTOH�ۧ����&��ľ��P��[��ʽ�'2�MK�E�/��[�\R��QQDƩ�G�,�M���������`��QQQD�� ���ˏQT��.ۧMKɧM�`QTi����uQTOH�ۧ����&�ķ�ɺb����[���R��QQDƩ�G�,�M���������`��QQQD�� ���˹`QT�5��TO�uQS!��^;�J�XLR�QDƩ�,�M������ʝQQQDG�L^0���J�Ũ���v��QD�� ���R��QDL�����v��QDB�J�����˧RQQ��Ļ��G�ﳫ������\��ŷ��ȴ� ���R��ŷ��ȴE�'�O��ç�Ŋ�SO��N�*�����n�O��M�*����������[����Ʃ�u�L�-ȗ��.�#���Ʃı����b�����`�&Ʃ�Uy�Ʃ�ȯgo/�˧-ȗRQQQ� ��Ĵ��ΩL ����+����|J� �����uTH�������L2� ������ī��H�y�H�Ʃ�ȯ8`������H�o/\\){� ����B*����uĴ�ç��RTd���P�A��R��THL �Ʃ�P����C���C����THL �Ʃ�P�b���J�Ȫ����� "֯�N� "֯�NΩ6���y��\RT���uQT��RQQT�+�G�J��������O��J��\\){� ��������u�L„�:��˽uS!�����J� �������M�������!��!��R�S�M�^������yD�b�yD �ï�K�J�H�yv��QD��ë���ĵ�[���#D�b�y����u�S�ŭu�S�M�^������yDƩ�ȯg� �ï�K�J���ȯ8v��QD��ë���ĵ�[���#DƩ�ȯg���u�S�ŭu�S�M�^������yDo/D �ï�K�J�/v��QD��ë���ĵ�[���#Do/����u�S�ŭu�S�M�^����� ���t��� ����f�� ���!����L2��R��QD�Y�Ƨ�Ĩ ����B*��#�˹������9K�"�'K�RľO���D��;�KCN<�����'���P��u�S'���E�L ����u�S9K�"�'K��tC��P��P���Cu�S"A �ƴ� N2��P� N��ľ����RQQS"A �ƴ� N��6�K/�P���ë�ñ�6���������N�s�MK� uķ��N�s�MK�J�&y���`]o- o- ��M��uĪ��� �o- ��M��FQT���o- ������ ��� �o- ��M��`QT���o- �`TL¸űy!űy�o- ��M���uT����/�űyR��Q�y�o- ��M����QQQMB�I,��I ����Y�����ȯgo- ��M��\RT���H������bŧ�űy`QTN�s�MK� \){b�yuķ���M��������J�&y�y�`]3��uĪ����C��FQT�����>J�ī���D��ȯg�ë�ñ�6��ľ��ȯg\\){�CN<���b�� N���CN<���D���O/`]b���,a�u�zL<����P��,a�P����F{� ���d�x�� �$�v! p��ҧ� W��X� ���d����v���%��� �E����� � ���dv�a&yJ� @���:�Mv�V��%��������������،!���U�xf�$h�����U�� �u��t�M�xXN���F��,C�n��YN����� R��RS�����B����[�����uS�,C�n��ï��P��Pï�ƨ������������R&ƩƩ�ȯ8�RD���ȧ���R�+����m������R�+���G�L���> ����F]"���� R�ï��+O��i��:��˽��Ʃ�ȯ8称���������`]�m�������f����u����L»b�_ﰫ� �����f��m���uT������\){b����������Cu�b�_ﰫ� �����f����ȹ`��t���L����� �R��ů��"��P�u�Sů��"��tC��P��P�u�S�t�'K���6�2��P6��u�S�t�'K����4 ��4 �������LUA1��4�u�L��N���yu�QQQ���A1D0G��QQ�E�/�4 ���� ��y2�4y���ʝ�QQ�����uQ&f��Ļ���:�秿4���DA����4Ȫ��EK��� ����ɪG�QDy��O⵪O�R�S�N�DA������PO3�� ���Ȫ��y����`){��������L�R&���&ȫ�<���DA����4O3GI�����F]tC����f�ȧƩ�uĻ� �uTL¿4�6���b��4 ��4 �C�QQ��LPİ����LP�b�_ ��O� �O� ��A1����4��QQtfīźtC��ȧ ɽ���L���QQQźtC秿43�������L�`�Q�P�ol���GźtC��ȧ ɽ���L�`������GźtC�43���������L�\uQStf�Ʃ��˹\){�M�����L�R&���& ��X�DA����4��GI�����F]tC�M����4�u�L�tf�źtC秿4M�����L��Q�PĻ��GźtC�4M�����L���uStf���`�ϧΩ���ì���%��� �E��Ƶ��ë/����x�=9�O0�&^ ��MU�ϧ֭-�����ƳX�O R���x��$״油)��Q���x�=9�O0w�ײ�)��Q�ϧ�Z0��ɷ��B����dR���ϧ������ì���%��� �E��Ʃ��x�-�4R���x�-�4wͲ�)��Q�ϧҧԩMXN� ��_W#������K>=�|�N���|R���ϧΩ���/�� ���=��ЯG��ì���%��=��>��/���������QQ�ϧì���%��� �E��>��/�����R�����>��/�����w�Ͳ�)��Q�ϧ�O����� /�O�OH/�������R���x��� /}h��QQ��ϧ������X�'O#�����OR��uQQQ�ϧ�ɰ�|RQQVK��U°�G3���õ-�G���wߴ望�Q�ϧΩ���ì���%��� �E���L�����R��QQ���w�͔QQVM��U�O⵪���G3���õ-�G�����QQQ��G3���õ-�G���� <��۽��˼�ϧҳ�ů�ê����8���� �P�F�ϧ�M�I����O��Ȫ����< �I���L�)����, ��L�F��M-���Nũ9�,�ï��PB���2���#ï��2������N��� ��]�N���H�R��N ������> ���ɧ�����s�t� �R�B���Pt�W�@-I�O�O�v�[��0M��������E����N��u�/��,RQQQ��L��E�/�E����N�����ɱ>�O�����Ϲ�ú,:\u������ǧɱ>�. ����ɱ>��E����N��\�Q�˝�[��0M�����`]��0 ��*�R��?�P��0 �P��� ����ɽ�X�> ��������E����N��v°I4�>�uĻ�RS��s�>�uT. ����I4�>����s�>�\F]EG�����R������ ����M�P��ũ�ȩN�������0 �P��� �R���� ��t�����P�B���O��v���0 �P����[�u�L�����G�[��Q�Ho2[��uT������0 �Pɽ��\F���骻�N"�ũ�ȩN�M�C����CL��]EG*�R��?�PEG���� ���J��ݧǽ�W#:4��/����[�v�[�u�L�E����Nı��[�E�/��ͽ��ǽ�uT�EGRQS�I4�>�uQTL���0 �P���0 ��*�I4�>��uQQT�����EG��������0 ���QQTO��"�ʧ[��QQT�ú0ȧ͝QQT�E����N�\\����(��zN����C��IR����@����C��I�v��:�P:u�S:��:��:u�S������:���:u�S��(��?��E�'��P@�u�S��(��?������P��P�@ş��f�@ź�O��ɱyJ�C��I�`]B��LR�֯��L������?����#C��I�v��uL¨C��I:��rb�L|�C�Q�M��,����rb�L|JM��,����uQ@źB��L�;�#C��I:J <>�FQQ@źB��L�;��M��,��J� �>�\R��ů��uL¨C��I:��rb�L|�C�Q�M��,����rb�L|JM��,����uQ@źB��L�;�#C��I:J <>ů��FQQ@źB��L�;��M��,��J <>ů��\F]�ï�R��ï�#C��I�v�u�B��L���`]�C�R��C�C��I�v�u�B��L��`)���ϧ�C��I]����[�u�O��r��NK�RTO�uQT�r����kR�QQ�@ź���J����I��C���rŵ?2��(������+M����ȧ��\���I�G���������GR�™�G��]G��PGX��SI�G�������P�O�I�G��繟�G��G���������R�GXJ�XL���������PIҭ�G��������vT�P�I�G����\F]G�����I�G����������R�GXJ�OO����ͧ����ҭ�G��������vT�PĶ��I�G�����\`]G��G�����������R�GXJ��O�����������P�ҭ�G�������vT�P�I�G������\F]G�����I�G�����������R�GXJ��O�����������P���ҭ�G�������vT�PĶ��I�G������\`]G��G������������R�GXJ쯵�������������P�ҭ�G�������vT�P�I�G�������\F]G�����I�G������������R�GXJ쯵�������������P���ҭ�G�������vT�PĶ��I�G�������\`]G��G���������������R�GXJΩ>�����������P�ҭ�G�������vT�P�I�G����������\F]G�����I�G���������������R�GXJΩ>�����������P���ҭ�G�������vT�PĶ��I�G����������\`Ķ�R�&����RR�ҧ��2�J֩ɬ쪩�2�� �|��vRV�ï�J�,�ƧկH� Ì���������-������ɬ*����Rľ�N�;�RVy����������-������֩ɬ쪩��RV��P̫��ɴ��X��J֩ɬ쪩��RV��0H��A1P�H�֩����Ω�֩ɬ�`]�H�֩���Pɬu��Ķ����b֩�����ɬFQT��B���RQT����Ω�֩�ɬ�ĴH��I��Я�����\F���3㩮��n�R��:�P:DM;�K�6�P��u�S:�B�����:��:DM;�K�6�P��u�S:�B����n�O��6�U]zN���`N��L�o��L�� /�F]���:^��ੳ=��G�۲�`]zN.������R�.����-�u�O�u�ĸr����.�\F]_�u�r��RQ.������RQ.��RQ&�b���+����|b�L|���2�.�����`� ���YR�� ������G�O���⳥°�⳱���G�O��S �������ë�-��©���ë�-���S ������GO4��������GO4�C��S ������G�O�:�G�O����µ��"��L犛S��n�����������۹�ľ�N�;�`]�_µ��u&�O�����R�L®�����ë�-���⳱���G�O�������QQ������GO4�f�ǧʽuT� /��� /X����������FQT=��uQT���L����ۧ�ýuQQT�������"��L秩��İ /���ƪ���2A�������İ��`�QTO���\\)����(��o���F]�����(��F]�J������X�ʫ�W쵲F]��^ïGJì��%�=9�ïG����׺v��M��.���L�����v��ūa�.��v��32^3��GI��|J3��GI�脩|v�QQQD3��GI���O��aQ�3��GI��O��Hv�QQQD3���<����O��a�3���<���O��H���bQ&O�N"PQQQ�b�O�N"�v�QQQDO�N"��� Jb�O�N"��� v�QQQD��|PQQQ�b���|�v�QQQD��|����QQ�.��b���|������˽��M0M�� ��GR�™�G��]GO��S��������ë��u�S�M0M�� ��P ���G� ��GR�I¨����M���ɰ� ��uQT�ɰ� �2� �� +�� �M�#����M�\RT+�����Ʃ�ȯ8�+E�����+�����M��\RQ&�ǧ͹D��油�RS��&�������+�����Ʃ�ȯ8�+E�����+�����M��\RQQVt^�ǧ͹D��油�RQQVi�U�ŧǹ�RQQ^�������+E�����+�����M�罽Dt�油Di�Uʹ�RQQ^�������+�����M��DtJ��i�U��RQQ^������M��DtJ��i�U�˹��)QT+lD���G�M��DHo2M��FQS�uS��&�������+lD���G�M��DHo2M��DtǹDi�U��RQQ^������M��DtǹDi�U�DO��Jٶ�����NM��˹��)QT+lD���G�M��DHo2M��FQSǧͧ�uS��&�������+lD���G�M��DHo2M��Vtǧͧ�uQQVi�U�uQQVO��J����M����˹��`������̨���<���R�³���Ň��Ňu�S�����̨���I���Iu�S�����̨�E�����u�S���?��P�O�ȫ����S6���M�X����ů��ů��KO�繏���6�U���6�P�O�]�����#I��PA[�vQTL·^G���R�Q�� ���ǧͧ槷��˽uQQT�P��A����O��g�Dŧ��\\RTGXJٶ@-������M<��vQT�P��#�o2ī���~g�� ī���M��ŧ�D���\FRTGXJ���t�'O��"vQTL� ���v»euĻ��R��B��Ū��I,���QQQ���ľdR��b��PĨ������e�J�(����QQDd�R���T�1��+O⵪OJ�����T�O3�e������eJ�(�����Q�B�XR�QQQ�6����G ��֯������ҭ,��QQ�\F]�_�����u�L�I��/���PʽuT�����RQT� /�İIH�����`QQT� /��ح����L�a�������ey��\F���#������1���PGI��0M����ľdP�H�ۧ�M�Y*��M��{����Z��wʱ�������ֲF]��ê����Z��R! p���4 �ȩŧ���PW���������v���%��� �E����������ê��v�a&yJ�ӳ����v�V��%���N��� �����ӳ���!���U���}렛QQSj���[��̨w7뜛QSE����>���M�'��Jh�ʔ�_���ƪ�����ê���n�R��b�J�b���v��I�yJ�ê����Iv� �I�yJ�ê���G����Iv�5� Ѳٷ �|���V������Z���R���eP& �I^������F{���������� �w�v! p���,�Ƨ��O3����P���"��P�����v���%��� �E����������� �v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS����������O���$ߔ�E���^������� �QQQJì���%��� �E����������� ���=źi��vQQ�QD����@-�������ï���O���JԌ���eP&K�^K��U�=���}7�޲����F�����ŵ�ܴn��GR�™�G���u�S����ŵ�ܴn�O�D���G�����ŵ�܃�GR�GXJ������P���ܧW����< ����vT�P��J����Ļ���ŵ�܃��\FTGXJ������Pŵ�ܧW����< ����vT�P��Jŵ��Ļ���ŵ�܃���\FTGXJ������P����ŵ�ܧW����< �����vT�P��J����ŵ��Ļ���ŵ�܃���\FTGXJ������PG ������2�����W���t� �FQT�P��J��Ļ���ŵ�܃���\F]G��N*���ŵ�ܱGR�GXJ������P> ����������ŵ�ܧO�����vT�P��������������ŵ���������������ܜQQT�N*���ŵ�ܧ�\`]G�����ŵ�ܱGR�GXJ������P> ��������ʧ����ŵ�ܧO�����vT�P�����E�/����ŵ��\\�����G�,���@Ŵ�?R��4�����Ȩ���P��P��u�S�N��<��O�<��Ou�S(�P(u�S���G�,���o����o���u�S���G�,���� �E�'��PE�'��O�����?� ��R&B(��uD� �#���RD��#���RDO ��B(���(��FQDj�����#���RDj�y#���RD=������(���(��FQD� �M����#���RD���O��(��RDN� E�'��O+��[��/����F]�����j��������[� �M�����u&B>��B���[�`QD� ��� ����[�FQD��������[�FQDO ��B��?�FQDj������j�����RD� �M������ �M����RDj�y�j�y���[�FQD=�������=���������[�FQD���O��ľ���O����[�FQDN� �N� ���[���F]H��������u�<��O�M��J�?�O� B�o�����Ȩ��⨱�?�⵩���\�ĸ�������DN� `T(�tCط�?� ������FT<��O�M��J�N�X�O� B�o�����Ȩ��⨱�?�⵩��FT��+H�A���R^ "�Ʃo�����Ȩ� "�Ʃ��CRVH6���Ʃo�����Ȩ�H6��� "�Ʃ��R�o�����Ȩ��⨱�?�⵩��R����FT<��O�M��J��� H/�B�o�����Ȩ��⨱�?�⵩������,@��ȩ�EA�����R��-����,�N@>�ì���ì��u�S�IK��n�O����S��̫���������`��ϧ�O���������Q��ì���%��� �E����,�N@>����Q��ì���%��� �E���ȫ��1���N@>��� �����Q��ì��%�ȩ�K��E��ȯ�ƨï���@K+){���� �M�ì��������  �I���ì���`{���� �ȩ�EA�ì��������  �ȩ�EA�ì���`ì���]�5���ȩ�EA��5����Rȩ�EA�ì��R¾�Mu¹�CN<��Fì���]�5���=�M��5����Rȩ�EA�ì��R¾�=�Mu¹�CN<��Fì���]� MKɧM�ì��R�u¾<�L�ì���o/J�W��EA�B��,@�۲FS��M�o/�ì���o/ȩ�EA��5����`S��=��B����ì���o/=�M��5����\){���¾ì��^��*4?������H ���u�QQ���,@�^��*4?��������u�QQ��=�_&�m� �ì�˹�F]M��u&�����RD3PѲ�/������ɬ���D�1Į�����F����'-�� �� �3R�·��'-�����������u�Sz��s�n�O�] ����֊�S ���?�ì���O�0�a��PO�0�H�� �� �3� R�����J�� �3»euTL�[�O3�������������e��e�DNE�XJ��ڱ�����Dz��uQT��O�0�H�����[�R���O'>�E��������yJҭ�����������������QQO'>�E��������yJԫ̪����QQO'>�E��������yJҭƪG�M<�����\\F�E��O3�(,��R�™�G ����u�S-����,�N@>�ì���ì���ľ��0�̫���-�����`]�����*��2µ��u�ì���ɷ����̫���-����Դ����\){����ñ������u�ì���ì�����̫���-����Դ����\){����ñ@G&Ʃ�U���#�L ������@ܩ��u��ĩZ��zL|�k����#�L ������@ܩ�T�����@��ì���HL ����ñ��������#�L ��\F]N@>������&Ʃ�U��Po/��uĪ�k�o/FQS���uS��Po/������ñ��������uı�����ñ���������ì���HL !��䪷�ï�K�D�D���䪷��QQ���GRQQN@>������`���=��n�R��O��N��PO��N�O�:��S ���X�P ���X�������S��=��"/O�"/O�`����f���O���>�A�� �_ӵ���>K;Ib�L|��ٸF]#^�ï�X�O�����种R�V�ï�X��C��I种�F]�[�^n�^yJ���v��VHI�ñN�M���ű��������F]"���MB�����P:#\]"���MB�����P:�[�\){�K�u�!�������I�����I*�ɩ��B�!�������I�M-�!���oM�������,J�=������F].�P�u�!��R3u!���oM*��CRS"/O�B�#��uS"/O�ů�B�#���!���.�*���RS�����ɬ��ű=��^���J�����G��Ŵ����˹��F]����0�_�u�O��N��O�zN�RT��uQS.��������T���+����|b�L|���2�.��\F���⵩��ƨ�O R��RS��⵩�Y�YuS��⵩�?�?uS��B�����O �H�Z�O ����I ���H`{#Z�kFY�]��#���O R������O #Z����>0���������ëL�R���>�P�����������2���ů�����O #Z��R�G����2������⵩��ƨ�O �G���H�Z�v��0�QQ�JH�Z�0���uëL�Q�JëL����� �k��L°����IH���0���Q����ëL�R�TL®B��ëL��M�X��I���O�L ����I���O�L ��u����?�O���>�O⵪O2ëL���u�QT������B��ëL�R�QQT���"���G�J��ƶ��ëL���VI�J�ëL�\��ĮB��ëL�`�QTO �]�����ëL�`�P�O �GI��H�ZD0��DëL��ýuT� /���� #�2�0��0��FQT���I����H�ZoG�/��\R��I F]G���O R�u��H�ZRTO �G���H�Z#ZFQTK@Z��I ���\��K�K'�����R�™�n��=�������� ��N���R¶�����P����u�ij����������UO������uQ���O�����uQQ���Z����ij�A������O�����佧�����������ɹ�O�����䝧���\){������R������u�����ǧ����`T¶�����P����u�t�N��������P����\F�P�?�������G�O�ëL�R�¨?�������G�O�G�O�G�Ou�SN����n�O�N���Sz��s�n�O�D�u�S ����C�L�I��̨���u�Sz��s�ëL��ëL�u�Sz��s���P������ ��R�N�DūH�G�O��`]�������*�����u������*��G�Jᯧ������姻���\){H�>���ª��u�Lª��*eG�O�m������ �������uT������*e�������*������\F] ��� R����J��� ¹J��X�FT���J��� �����ª���H�>������`T��� J��FT�����*��J�쯵�`]��Rı�ëL������� ���,��̨�O�0�H\)�O��L����"����O3���R��O��L����?�?��O3����"��R�&Ʃ�U���E�����Ʃ���u�L��b����E�����Ʃ��uS!���O��L����O3����"��RQ^<�L���RQ�M��O��L����O3����"����M��O��L���*����RQQ&����ɬvQQDt��vQQD�Ʃ����Ī����Ʃ��1������G���������`QQQD�E���?�H��Y�ůI�������D�����?�H��Y�ůI��������uQ������O��L����O3����"�������ȧ���`�ŵ����6��B�Ʃ��R��ŵ����6��B�n�O�G��������ľ��0�̫���H�� ������`]Ʃ�H6���Ʃ�R��N ���MG��"������>,�#X�Ʃ��v���X#Ʃ�u�L�,�Ʃ�G�����P�Ʃ��uT�������uQTb쯭¹�k��bضEK2¹�,�Ʃ���B�X�#Ʃ�\F�� ��I�A<��GR�™�G���u�S� ��?P�O�D�u�VZůH`]G#���G��R�G�EKRJt�ɧ�ǧ����v�{����ǧͽ����G#���G��R�G�EKRJt�ɧ�ǧ��ͧ����v�{�����ǧͽ�潽��`){G���� �G��R�G�EKRJt�ɧ�ǧ���v�{���ǧͽ����G���� �G��R�G�EKRJt�ɧ�ǧ�ͧ���v�{����ǧͽ�潽���G�ⵯ/�G��R�G�EKRJt�ɧ�ǧ����v�{����ǧͽ����G�ⵯ/�G��R�G�EKRJt�ɧ�ǧ��ͧ����v�{�����ǧͽ�潽��`){G����< ���C��GR�G�EKRJt�ɧ�ǧ�ͧ����v�{����ǧͽ�潽��`�xXN�c���B���Rľ™�̫�����D�»e����o�ÞP�ß�c�¨�����u��Ĵ�ɪGPĻe#�����JիƩ�e�`QT�úGO4�B���ú��JƩ���Gc��!���e#�������D�\){c���B���u�c�ĻeJ����B���9�M���`Tc�ĻeJ����B���9�M���̫���\){�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�h��QSj�'�?�����M�}��ל�QSE���� ��:A �L��}Ͳu�QQQK�-�����3���w��㜛QS����������O���$뜛QS����}$ה�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H���E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{����������������i�� ��@�wʱ��������v! p����C �@�,���� �PW� X�O� �P��ï����#�i����?R�QQ��Ȫ����Z���_��d�ܪ��M�v����������V�����+����O0+������i�� ��@ź��Hv!���U���}렛QQS�������������E�'��@�wDZ�������ֲ�)���ϧd�ܪ��_6�P��ȯ�ƧZȩ����٬�PM;�K2'G�W#:?���R�QQQ�ϧ��� ���� �ë@���R�QQSd�ܪ��_�$����;�U�ô⯨�=�� ƺ=�� Ʊ;�R�����QQQ�=���R�����QQQ�j�����̺����̱=����͊�QQQ�ϧֵ�����=��X����HR�QQSE���3ɺ⵪��������wDz��)V ��MU�x�G��w�Dz��)R���e�R&K�^K��U���B����y�� �$7ל��Qj�;��I���̫�3�Kŵ��O w��QQQD��U�����K��G����F){��õ���$ʱ��������v! p��ҧ���#ï�-�v��%��õ����Ƶ.��E�v!���U���}렛QQSz��s}ߜ�QS ��� ���̩����3.�}7͜�QS ��� ���>�}7͜�QSN���$�ʔ��M�x�Z��Jh��v� ��MU�N����N����xw7ǔ�ï��UN����xXN�ï�ƨu� �I�yJ�õ����G����Iv� ��^ëL�#õ����ȩź.��R���eP&��� �^N�^��� �������F���ůɴ=9L�R�ҧ��������v���1��0����n�O�=9��G�,����S������PG�u�S��ůɴ=9L��N�=9L��N��"��=9L��R&N�=9L��N��=9L���F]"��=9L�R�b�=9��G�,���=9LDN`]����tu����R������t`]�R��u�Ӵ��`]�ů�L���R­u�MG��"�ӧ�`]R��,���G ���v�¬uL�]����y���Q�t��b�_�=9L���=9L�����]�����uQ��> ���t�����Ho2t����]������t��\R������uL�t��b�_�=9L���=9L����y��`�� �,����G�?�������`���P�����Ī���������������Q�t��o�R�QQQ�> ���t��������E�/�t��\R�QQQ/çt�ķ_ͧ� �,�`R�QQQ> ���t����Q���� �,��ǽ���G�t���Ho2t��`R�QQQD����R�QQQ�t���uQ. G��Wt�I��\F�K���B�������4 ����4 ����i�R��K���B�������i����i�u�SK���B�������4 ��9����X�9����Xu�SK���B�������4 ����4 �������P��4 ������u�SE��G�I���,�zN��P��ľ�N�;�`]��4 ��9�����*�� �M�uĴB���ӫaM�`]��4 ����i���/�A�o���uı���i����������i����/�A�o����ī��D9������R�Q��X9����X�-ȱ9���������4�L�9�����*�� ���A ��D.����`QQT���D��4 ������R�Q��X��4 �������-ȱ��4 �������� D9������D.����`QQT����i��X^H�Z���4 ��������\){�MR�GI�P������ �#�i��v�����uĨ�i��GI����i���4 ����i���\)�����;�ȶ���ô��i�R�«��M�P���Mu�S��B����=��X�=�u�Q�ϧO⵪ ����PN�sPH�Z�zN�?�#��R�S����;�ȶ���ôH�Z�H�Zu�S����;�ȶ���ôH����9�,u�S����;�ȶ���ôH����,�Ū���u�S'�/�n�O�]����'�/���ï��R�GIĸ�R�=��Kŵ��JO��i ��#����ëL���QQ�3�����ȶ௯���/�A�b��/�A����QQT��O3����'�/�G���J����ȶ�ëL��\F]�]�����O��G,��Rī��M�ɱO� ������M�oG�/�G,�����\){GI�R��N���|uGIN���|�]�����O��G,��`R��N���|#�����O��G,��u���M�Ȫ�O� #�����O��G,��RQ��=��M��J�B��X�'�/�zN����Q'�/�G���Q=��M��J��<���'�/�zN�������Q��ϧM�����B���s� � ������b��CN���RQQQ���#��RQQQ'�/�GI��Ȫ���峮��;�ȶ���ôH����9�,�H���R���QQ�峮��;�ȶ���ôH����9�,�I��ȶR���QQ�峮��;�ȶ���ôH����,�Ū���H���R���QT'�/�Ȫ�I�P&N���|�N���|�\\]G��u�'�/�G��`��9��(�GR���9��(���u�S��G���u�S(�P���#�� ��ì���O� &�bJì��%���4 ��G��F{#�� ��ì����O� &�bJì���%���4 ��G��F{#�� �*���O� &�bJ���%���4 ��G��F]G���� �ΰ��� ��R�GXJӯ�O �O� ����PtC�vTI©�4 ��+tC��� �ΰ�����4 ��Q#�� ��ì���O� �RQQQ#�� ��ì����O� �RQQQ��Ѩ�� ��ì���O� ��� ��ì����O� ��`TGXJ��� ����PȪ���ƶ�ȶ������0�2(AP��tC�vTI©�4 O����+��Ƨ��� �ΰ�����4 ���O���Q#�� �*���O� &�b��IJ���0���(A�����%���4 ��G����\���ɴ��� F]~gԩ��A��f ��fzL��f ƃ�ë�ñ������F]~g��»=ȧ��;�P0G����W� ��F]~gҮ�fzL��f ƃ���F]~g�M�@�Ƨ ���E������uQ��&Ʃ/ñE��RQ[���L�"���E����P[�b����Ʃ���/ñȧ/ñE�#���F][���L�3�R�E�����u¾�3R�RTW&Ʃ�UƩt���˧E�����uQQ�&ƩƩ����t������F�@��L������.��R��@��L������.�ץ���`){O���R��M2�������,�"P���_��K� O�����>���O'>���v«��ukF){MH����R��M2�������,�"P�����2_��K� O�����>����N2-ȧB� ����������,�"�v�-ȧ��2�ukF){������R�E�/�����������v«��ukF){� G�R��M2�������,�"P���_��K� O�����>���O ���Ȫ�-ȲR�-ȧ��2�ukF){A���R���Ƨ��������P_��K� O�����>��v«��ukF){L��'GR��M�PL��'GB��_��K� O�����>������9����������9���o_����@G��v³ukF{��ѧ���y���w$DZ��������v���U�B0=�� �u����U�� �u�����R��b�J�ŵ?�v��M�x�Z��Jh��v��������U��YN��u!���U�. �G����G����n�$��DZM� X��QSE���IH���GO4�Ia�$$DZ�������֜�QSj���}�ǜ�QSj���[��̨w7ל�QSj���B����Yw�ǔF�ȩ�K��n�R��ȩ�K��������,�����,�u�Sȩ�K����� �ª�� ��Sȩ�K��E�'�� ��E�'�� ��Sȩ�K��E�'���C�L�I�O��,��R�����QQ�,����������A1�����ì��ƪ��H�Z�­���H�Z��S ����C�L�I��Om2�O��,��Om���S ����C�L�I���I4P�O��,���I4���S ����C�L�I����O��,������S ����C�L�I���e�M�����,�*e�M����Sz��s�n�O� ��SN����n�O�N�������N�D[�ūH����`]��� R� RQ��� RQE�'�� `]��Rı���� RQT�,����������A1����,���I4����,�ŝ��,���������,�*e�M��\){�_�0��uķ��,��6����L���FT����H�Z��^0���/����0���˽�){���_�0��uķ��,��6����L���FT����H�Z�,��Om2��.��^0���/����0����`�ϧӯ�� �����߱���ק��2�ݧٶ���M���C��o��������ϧ��ϧ�êP�P�O�����I�ϧ����9O��G �������'�������ϧ����P�������� H���N�� @���Na����ϧ� @�2��Oί���I쯵�ϧ���Z���7ǧ����ψ�NHݧ���������������Z�����ϧ��ϧ�êP�����I�P��G ��2_ï����?�������ݼ�ϧ���W�����֧���Y��W�������YϧȪ���>�� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������ش�Ω�����ϧ� H���N�� @���NaW�'O�K?����ϧ��ϧ�Y��#ï��2ë>�O"�>2��E��������� H���N�� @���ϧ�Na��Ȫ��P�����I�ϧ������ݧ� �B��O���ϧί���I쯵�ݧٶ��ݧ�ǧ�,��@άݧ쪻��=��ݧ�Gݧ�Ҽ�ϧ����ʱ���ǧ���ݧ��#����#���ì��%���ȴ����)�������I�G�Rľ��G`]G�ŵL����Z��RĪP��}��ę�Z��\F�P:�B���IF]�B��:���`]c��R�u�L°O��b�L|���2�+����|J:�B���I��uT�����k称O�`QQT�O'>��O�\F]H��o/R�o/u�H����M-�������I��B�����o/`]�o/J����������ժ ���=�s�p�֯���I������������BC��\�:�B���I�O��\���O���#���B����BC��\�:�B���I�-ɬ�\���������B�������C��\�:�B���I� �\��������������F]H���R�u�L��1īb�b�L|���֫��4�+����|J�1����ʝQ���6���L|��+����|J�����uTc��FQT�H�Ҭ����JC�:�B���I�FQT�.�N���?2�1��FQTH��o/�o/FQT��.ۧB����ī����B��D�I���\��ϧ֯�b�"�B��N�2�1�)]ëL���R©�ŹF]�ñ@i-�R�uĴ3�؅Ԫi-���I��B����QQQJY��v��Q���ëL����b���b���JC�\F){��B��R�������PG ������2Z��R�����>��_���Ժ�X��R��G�Lv¸uę�G ���̯_v��QQW�Ƨ����u��QQQG�y�ƽJ��\��J�\��\F){�R�������P�#X�OH��@��R���ԧ����� ���?�O�v���P��?�O�u�G�J��RQQ�����ĩ���������G�JJ��B�P�\J�vQQ�����ĩ����秮�?�O�����G ���̯_��?�O�`QQQJ���J�`��9��ëL���K���R�™�n���������=�|�N���|R���ϧΩ���/�� ���=��ЯG��ì���%��=��>��/���������QQ�ϧì���%��� �E��>��/�����R�����>��/�����w�Ͳ�)��Q�ϧ�O����� /�O�OH/�������R���x��� /}h��)��Q�ϧ쯭��Ƨ���XR���E���LB�+x��ï��w״ʲ��)��ϧΩ���ì���%��� �E���L�����RQQV�ï���Ѵ����G?����G?�L���G?��x��)��ϧ�ɰ�|RQQVK��U°�G3���õ-�G���wߴ望�Q�ϧΩ���ì���%��� �E���L�����R��QQ���w�͔QQVM��U�O⵪O���G3���õ-�G�����QQQ��G3���õ-�G���� <��۽��˼�.��������R����� �OL�HP��������v��RS�N��<��O�<��ODO��6�UM�����b���Rµ��u�o�RTů�L��O*M2��M��Ȩ�����J�WM��ȨvTů�L��O*M2�@��������J�M��vTů�L��O*M2���|���������J� ��Χ�XvV��a���`]b�ȯ8���ܩRµ��u�o�RTů�L��O*M2������������J�ױŪ�vTů�L��O*M2���������J�ױŪ�vTů�L��O*M2���������J�ͱŪ�vV��a��`]b��e�����Rµ��u�o�RTů�L��O*M2䲴ܪ������JЯ��LvTů�L��O*M2䲴���������JЯ��LvTů�L��O*M2䲴��������J骨Ƨ���vV��a�ٶGL��`]���ܩ�ȶm�����R«���M��u�L�ѵ��D��H��ȶm���������M��uQ&�P�b��P����Dȯ8�����b�ȯ8�������FQQD�e�����b*e��������D��������`]ŵ?��ȶm���R«���M���> ��uĿ������P����ܩ�ȶm��������M���> ��\�&^ ��MU�x���M��w޴ǜ�QQ�C��C��O w޴ʱ�������֜�QQx��$״ǜ�QQx�;��IP�$��ǜ�QQx�����Nw�㜛QQx��ɩ�w�ל�QQx��� /}ǔQQVK��U�E����OK ��+d������,��w望�Sj���B���� �$޴߲���˼����G�,���?�����R�™��� /���u�Sd��#����N� ݧO������B�]���@�������ݧM���ɩ2�#����v�N� #��<����8�@���Cu�L���� @���. A�������ë�ñ����f���� @��������N� `����<������'G�O"/��#��<��D'G�O"/�Q��E�|PĪ�#��<������'G�O"/�R��QQ. A���O'>�k�����ɱE�|��k����N����C����G�?��������f���N����C��N� \���������C�\��ϧӯ�� ����������ק�J��X֧���){�̵ɬ�'���I�;�G w��v! p��ҧ'���I����������C ��=G �� �W�̵ɬ�'���I�� �v���%��� �E��̵ɬ�'���I����i��'��L+;�G v�a&yJ����֧�NHv�V��%���N��� ���֌!���U�E��G�I���,�zN�$7͜�QSK� EK�;�G �;�G }נ�QQS̵ɬ�'���I�� �$�͜�QQ�F�K�K'����������?�R��R��n������������=��*�OZ�R��=��PW�Z�v�uī�������ë�\�{�9K�"wh���������v! p���a��~�5��B���çPȪ��3N"�̨R�QQ����v��M�x�Z��Jh��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}栛QQS-��-�ë�O9���ë�̺O9���ë��w$ޜ�QSE����>���M�'��}$ʱũל�QQ��;��}$ʱ��ǜ�QS4=�� ����ܪ���C����I�$ǜ�QS��ܪ�ú ���̨��I4P�$h��QSE��"A �ƺ� N2�$$ߜ�QQ��E�����@Ũ��J7����QQ�¨���dw$DZ�������֜�QQ�©����Ʃ���zŪ���@Ũ��w��͜�QQ��d���w$��������֜�QSE��L3��-�d���w7ǜ�QQ�� ����C�L�I�*���$ǜ�QQ�¶����dP�$7㜛QS����}7͔�_9K�"�H�ZF{�H������G �ì��w7�v! p��ҧYN@�,����G�ȫB#� ����ЧO�0�H�v���%��� �E��̯ë������G �ì��v�a&y�J��֧�NHv�V����Q�%���ȴ��N��� ���������ðv�V��G ��DO0�R�x�OL�a&K ������D;��I��R��M�x�Z��Jh��v!���U�����ì��������ì��2�7�ǔ���eP&K�^K��U���}ߠ�QQ��Q��êOJ�㠛��QQQd�ì���@w栛��QQQ��ϧ-�K2W�̫�����ǾR�����̫��ɴɷ���M��̫�ű.�J7�Dz����R�O0��q� ²OL�H�&��%�;��I��O0�6��P����ˊ� ��MU�x�E���w��ײ��F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴ױ��������������߱���渻�Ŕ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛��� ��MU�x��C���望���x�H��Z��w״ǜ����x��� /}Dz���R�QD���c���^�������U���X��׿����F{�E���,M �0G}�ͱ��������v! p���J���ի?���=�sv���%��� �E���Oȭ�0Gv�a&yJ���v�V��%�N�Ȫƪ������Ȫƪ������NHv�V��G ��DO0R�VE�|P��a�������� �ƌ�O0��q� �Ѳ̫���-��%���ȶm��̫���-��>��͌!���U�E�'���EK�}���QS̫��ɴ?�?}״�v�����;�U̫��ɴ <��� <�������eP&K�^K��U���}�Dz���R�QD�^K��U���}�ʲ���R�QD�^K��U���}״ʲ����F{�j��� W����:w޴hv! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿��K��ޔ���eP&K�^K��U·C��Ǵޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{����G�/wDZ��������v! p���#�� �ݧ�Lɪ�L����W�ŵ?�X�'���I#�i�PȪ���n�������v���%��� �E��'/���̺���G�/v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���n�������w���ʱ����ͫ��ë��QSj���n�����w�ʱ�ëה���H�RѲO ²Ȫ���e��G�O ���R���e�R&GR^K��U���G����wߴ͜�QQSE����OK ��+G��õ��wh��QQSE��>@(�����$޴ʱ�ëǜ�QQS�������=:w�ײ����R� ��MU�E���wߴ�㔾E���^������� Jì���%��� �E��'/���̺���G�/��=źi���F�L�N�n�Rľ��0���EK��.���,A�,ŏľ��0��̫�������e�ľ��0��̫����Ȭ���𵻻������ľ��0���EK��E�'��'K����s�FH�ۧ��I���O�L ����F�H�ۧ򵶮�Ʃ�����F]�BE�������,AR�b*,A�C����,A������`����BE�������,AR�XRTb*,AP�,A������b*,A�e�#���,A�����`Q�eRTb*,A�e��,A�����uQTL����s����,A�,źb��>�,A��eM�,A�����`�QQŪ�B𵻻�������uQQQŪ\�A��E�/�Rľ�A��?P���A�y��ľ��0��E���4A��APթ�`T���0��E���4A��A��nӯ�/\)�ϧ�O����������������������������������������������������������������������]E�/R��O��O�����-ȧӯ�/�A�Ȫ���><�L�)Q֪�L�9��� �_G ���@��\�����\���> ������OG ��PĿ���R������<�L��@Ʃ�)QQS�\���.��\�\�ȩ�H�Z�\�\�o- ���\��)Qv�<�Lu�թ+-�ӯ�/A�y�<�L\){6��]E�/R�驻M��-ȧӯ�/�A�Ȫ���><�Lݧ������ݧ�����<�L�v��<�Lu��{��<�LE�/���G��<�L\FT¿������<�Lu��{��<�LE�/���>��#�������<�L�\\)�ϧ��3�������������������������������������������������������������������������]t��R���������O/�t����E�/�v��ӯ�/��uĴE�/��`)ϧ�W ������������������������������������������������������������������������]��M��R�ٶ6�|�E�/����>4��/���ǧ����������������v���ӯ�/���M�ۧ���`T��ӯ�/����u�M�����FQ��`]K��R��6�|�E�/����>4��/���ǧ����������������v���ӯ�/���K�ۧ���`T��ӯ�/����u�K�����FQ��`]cI�R��LI���>E�/ݧOH�<�����Pt�B����v��ӯ�/��uĴcI��FQ�F�{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}ޠ�QQS ��}נ�QQSz��s}נ�QQSd������R�L����*���������ç䲻����uT�P����*���J� ������� �`QTIĶ�����*�����`QQQ�����I��� ��vQQkRQQ���\){G�����ñ6� �����/�����X*�*�������>�����R�L¶����*�����������ç䲻����uT�PĶ�Ķ����*���J������ ������\RTIĶ����*����ǝ��I������vQQkRQQ���\��ȯ8�E�/�G�O⵪O��G����`�m�*eJȯ8�E�/�d�F]G�E�/���ȯ8RĪP��Ѳȯ8��RQQQȯ8�E�/�ȯ8�E�/Jȯ8�\F]G�E�/������� �RĪP��Ѳ��J���J� ���RQQQȯ8�E�/�ȯ8�E�/J���� ò\F]G�E�/����< �������O�"�RĪP��Ѳ��J�����J�ȯ�JO��Jų����RQQQȯ8�E�/�ȯ8�E�/J���ç�ȯ����çO2���çų����ò\F]G�����O���� ��RĪP��Ѳ9���J9�����J���J̫���J̫��( ����RQQQȯ8�E�/�ȯ8�E�/J9�D�9����P̫��D�̫��( �����������\F]G�M;�K������RĪP��ѲGX�J��J���RQQQȯ8�E�/�ȯ8�E�/JGXݧ�ݧͧGX�\F]G����@ܩ�9HRĪP��Ѳ����RQQQȯ8�E�/�ȯ8�E�/J�������ڲ\F����G�F��,C����G�L���1�F]��1�R¾�1�R^��_�RV�3�X��RV��*4?��\�ڰN�Ϋ���\�ݧੳ><9ݧ� �#����H �vV��������Ͱ�vV� ƿ�J������͌��O�DM�RQ&��*4?�M �vQD�������ǩ��˹�F�H��N�ۼD��P�Ѳ����M�̫�������G�̫���˼DK��P���,�ܩ�����ů���̵5�$��(���G���F]��Z���wʲFO⵪O���,�ܩ�����ů���̵5�O�̵5���F�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ�˼��I^�eJH�Z��I�˼�̵5&� ƫ� ����-��ܩ��� �X�ì���H�Z�G��F]�ƧGR��:�e������5G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\��xXN�ů��G,�R�𯯬G,�������5���x�K�P��x��������vľ�xXN������P��¿������QQSxXN�n���]�����O0��QQSxXN�K�P���K���QQSxXN�?�>���oM�Ʃ�O'��� �R����Q�Ʃ�O'�O0�Ʃ�=9��O0��ľ��0��j�. �>���� ��O���Z�ҭ<� �� ��Z\)�ϧ�O��P��ŵ��_ԩMXN��ͧ��çO⵪OP�����ë>��ϧ�=�s�7ǧ_=9��>O0��q����O�ȯ��X���ϧ�=�s�槓���ٻ����G��#:�ȯ��P��ϧȪ�ԩMXN��P���=�s��ūH2�N���?���ϧNE�/��P��L��)�ϧҧ=������ ë>���MB��PȪ��=�s�p��-#��ȩ��ϧë>�K2��ȯ��I���)�ϧԩMXN�M;�KP��MG���Ƨ���ݧW#:��ƶ��O��ݼ�ϧ� �=������ 2��I���ϧ�����Ƨ��-�2B�b�K�NK�����>O0��q��){��#��ȶm�R��ȶm2��K�NK�����>O0��q��v�y�����Z��uĴO���>ҳȫ�PĴ=�Ƶ��oM�ҭ<� �� ��Z����؝�QTƩ�O'��� y�����Z����QT��Ʃ�O'�O0�]�����O0���QTƩ�=9��O0\){ů��G,�R�𯯬G,�������5���x�K�P��x��������v“�u�ϧ�W���I2W�ԩMXN��ͧŵ���ض�s���ë>��=�s�7ǧMR�ϧ��=9��>O0��q��R�G���ȶm2���j���7DzFT�����P��FTK�P��`{� ��� ���̩����3.�}״�v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}�ǜ�QS ��� ���n�נ�QQS ��� ���H��L�נ�QQSj��Y�H�̩����̩����H�ZJ��7�$��������ʔ���e�R&K�^K��U�d�ì��J7h����RD�^K��U���}�ʲ���RD�^K��U���}޴ʲ���RD�^K��U���}ߴʲ����F�����E�'��G�9�R�™�G���u�S����E�'��9������E�/:��`]M6�|�E�/R�ٶ6�|PE�/B��O����P��v�uĨ�.ۧE�/�M�`]G�9��GR�GXJ9��ê�ݧ���OH�vTL�9��:��6���9��uQTOH�ۧE�/�ʝĪP�����9��=�Ƶ��9��:JƩ�M6�|�E�/\RQQ�ϧ=�Ƨ����_�?����9���M6�|�E�/���� �RQT�P�����9�é�=�Ƶ��9��:JƩ�M6�|�E�/\RQT��OH��9��9��:�ĪP�����9��=�Ƶ��9��:JƩ�M6�|�E�/\RQT�P�����9��=�Ƶ��9��:JƩ�M6�|�E�/\\�{� ��� ���̩����3.�}���v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}ޠ�QQS ��� ���n���ל�QS ��� ���H��L���ל�QSj��Y�H�̩����̩����H�ZJ��״�״��������ޔ���HPѲG��²Ȫ���e�]������߾�������G���R���e�R&K�Q&K��U�d�ì��J��7望�QSL��Ȼ����}$딛��������U���j��Y�H�̩����H�Z�ବ��ë�-���������������������ʲ��RD�Q&K��U���}ߴʲ���RD�Q&K��U���}��ʲ���RD��^K��U���}�$油���FѼDyJ�����ݼD��J������)DI�9gѲ�����յ������QQ�ǧϧM;�K������2O3�R�J�������O3����ǧϧ��������O3�R�J����e�4��O����Qǧϧ�O��ɧW#����e�R�J����?��n��M�Z�O3�ǧϧB�#ï����R�J����?�����M�Z�O3ǧϧB�#ï����R�J����?�����M��ǧϧB�#ï����R�J����?�ժ������QQQǧϧB�#ï����R�J��O3�e��:���Q�ǧϧ�lݧ��R���)DK( �J� ��I?��W@�5���O3PB�O�N"�ݼ˼�����/�M��R�ª���/�A��X����u�S����/�ȩ�QQQ�ȩŹ`����GI��B���,���Fķ���GIķ������B�JB�����`L°���H������@i��B���,��Ļ���K@Z����\u��RT����� @��J�B���,������"FQTL�K@Z�KO��������D��?�uQT�������D���"�K@Z��T���"���G�J�ï��2ë>�O"�>2����"ݧ����K@Z�\`QT�M��RQ������@i�\F����GI�⵩�����߲Fķ���GI�B����߲F���ϧ֯��@i-�PI3��<>ݧ��C��0/��ķ���@i�B������ķ���� @��J⵩�������M���\��ķ���@i�B������ķ���� @��J⵩�������K���\)ķ���GI�⵩���O�����Fķ���GI�B����ï�FL�O�0:�k�u�ȩźGI�R��O� �uQ����O�0RQQ��RQQQ������@i�O�0�QOH�ۧO�0�k`QQQOH�ۧO�0��ķ���@i�B����ï�ķ���� @��J⵩���O����v��������QQTCN<��\`QQ^�����RQV�1�����"��\�{����6��B��w$�v! p��쵳6���1�v!���U���}��ʱ�ë�ޜ�QSj���( ������ߜ�QSj�:d+:}$ʱũǜ�QS���6�=�����6�}$ʱũ�ʲ��)V��U�����M�u����U�� �u�c����bP�&� ����� �� @��̨��b����)V ��MU�x�d�ŵ?2�벹�)Vd�ŵ?2&ŵ?��R�QS&f�Q�K�vQ��QD��U�����M�����K���QD������QQ^�̨m2�d���O�O�Ì�QQVze�QQ^_��d��R���QQD���B�QQ�� �� @���+.��̨v���QQD�����QJ� �� @���+.�v���QQD�Om�P�QSK�B�����Om�u���QQD�����QJ�+.�v���QQD��<����PQQQD���˹�)V��eP&K�^��U�����K������M��QQVO ����P&�O ��C�L�I�"A �ƴ������� ƺ�,��d��O ��R��DK��U��MI�����K�B��P�$��ל���QQE��"A �ƺ������� �w7ǜ���QQj���B����y�� �$�ʱ�ëל���QQ��������C�9�w��望��QQj���B�����O w7�油���F���ű��ů�ƴn�R��:�P:u�S:��:��:��"����:���`].��oM�������zN�u�O���RQr��NK�RTO��uQT. �r����kRQQT�r�ǧkJԫŧ��ů�Ʋ�QkRQQTW�,���ʽu��G���JJ\\)�r�.��oM����R&�b���+����|b�L|���2�.�����F��9 ������"�H6��ůɱGR��9 ������"�H6��ůɉ��u�S9 ����6��B�H6��ůɉ�u�S9 ����6��B�H6��ůɱG�Gu�S��G��]G�����S9 ����?����G�ɯ��GR�L�����I,�ǧʧǏQQQ�ȯ���I,�ʧǧʏQQQ����I,�ʧʧʹ�uT�P�CN<9����+ɯ�ۧ���ȯ���`QT�Pĵ�I,�������I,�ǧǧǹ���\R�L�����I,�ǧʧǏQQQ�ȯ���I,�ʧǧʹ�uT�P�CN<9����+ɯ��M �ۧ�ȯ���`QT�Pĵ�I,�������I,�ǧǧǹ���\F]G#�6��ůɱ��ɱGR�L¶"���I,�,��+�"���`� ��ķ+H6��ůɱ���#�����"#��H6���Ʃ��uT�P���#��"���R�QTN�����PG��ɬ��+�����QQN�����P �ɬ\`����c�� �N��ŵ?��G�⵩��Rľ���c�� �N��ŵ?��⵩��FT����c�� �N��ŵ?�����FT����c�� �N��ŵ?��G�?�FT�O⵪O���c�'K��ŵ?2��Pŵ?��ľ®��c�� �N��ŵ?��G�?��ľ�C̩��ȩ��FT�®��c�?�O���ȫ��*����`G����H���F� �⵩�X�ŵ?�Pȯ�ƨv�L�ŵ?�P����O������ķM���ŵ?�\uT�����N⵩���ŵ?2ŵ?���������XRTȫ��*��RQ^�L�������RQV� ����RQ��uQQ���ŵ?��R�T����ŵ?������ñŵ?2ı���D�C\R�T�Z��ŵ?�����"����\������`��,C�H�Z�HI�ô���GHI��R��RS�,C�H�Z�o���o����S�,C�H�Z��ʼn��uS��[��̨�̨uS[:�.���uSj�ì��ƪ��YN��Pì�������GHI�ñN��L��uĨ:��o���D���GHI�ñ���\){HI��*��R�&Ʃ�U�����f�C��u�L�O����R�QQ���ì���bG�o���D���GHI�ñ��������ϧ���ھ����O����P����R���QQJ��,C�A�� ��HI��稪ܩ���ʲ��QQ&�1�̨�� �G�^�&���^o/�ɬ��˽˝�D�1�R�QQ�̨�O3�G�R�QQbJê���`�'O�b�O��JB���E�/b�O��Jê���\uT���b�O��Jê����Q�������b��J�C�\RQQQ��������ĸ��ŧ�źo��&A����O3�O3�C�ˏQQQMB����R�QQzR�QQQ����b�_��A����O3DO3�C�`�������������fĸźO3�����f�\R�QQQ��¬�C���fĸźO3�-� ��A����C��\�Q#��RQQQ#��\��K'�A��X�GRľ��GRQQQ����/�A��X`�Ī���/�?�M�����/�FT]G���M�,��@i5��RTGI�G�B��FQTL©ɰ� �2İ��H�QQëL�@i�G�B���K@Z��ɰ� �2���uQT�RQQT� @��JG�B�����"�T�P��D���"KO���ɰ� �2����D��?\RQQT�M��R��ĵ�@iëL��QTG��JG�B��\\����ű��ů�ƴn�R��:�P:u�S:��:��:��"����:���`]��������������zN�u�O���RQr��NK�RTO��uQT�r����kRQQT�r����k�����������`�ĸr����k!����@���v¨���@��uı�^����@��#���@��˧ȯ8�`]O3�ȯ8�����M��R��������E������ȯ8PW���>��@���X��ɱȨ���H��W����M�v¨���@������HɱȨuı�^����@��#���@��D���Pɱ�P����H���H��RQQȯ8�����M��`]HI�ñȯ8�R��������E������ȯ8PW���>��@������>�HI�����v¨���@��#�I��uı�^����@��#���@��DHI��#�I���RQQȯ8��HI��`]��>�ȯ8�R����G��ȯ8�Ȫ���>����������@���v�ȯg�����#���@��uı�^ȯgȯg������������D����@��#���@���RQQ��>�ȯ8�M���`]O'>�ȯ8�ȯg����@��uı�^ȯgȯg�����@��#���@���RQQO'>�ȯ8�M���`���������ɴA��X�AN��ŵ��R�™�n��������®ë��ۧ��ۧO3����ۧ;�H�#@�X�ŵ����SE��G�I���,�zN��PzN�u�S�N��<��O�<��O��~g� H��𵻻����uzN��Ԫ����c)TGI�zN�uT�N��<��O�M��J��<���� H���𵻻�FRTL�Mů�����ëĨ@�X�ŵ������ɴAN��Mů��9� �������������\uQT����zN�Mů���çMů����\)TG��zN�uT�N��<��O�M��J�B��X�� H���𵻻�FRT;�H��Mů���çzN�`RQzN�`]AN��ŵ������u����� H��𵻻^���P�����`�{�B�:���O*,Awߴ�v!���U�����ߠ�QQSj���( �}������QSO��N�$�ʱ����QSO*,Awߴʱ�������֜�QS�MI�����K�B��P�$ޠ�QQSH6���7望QS� �<��(}Ͳ��)V ��MU�x�d�ŵ?2��QQQx*�����w�ױ㲹�)Vï��UxXN�d�ŵ?��)V��eP&K�^d�ŵ?�R�QQQQ^ŵ?�P&YN&��U�K���������Dze�QQ^_�B�:���K�v������QD����J̨v������QD��<����P���R������QD������R������QD����[�vS����uQ����ZůH�RQT� /���I��\F���ľd�R{=�RQ�ԯ�P��>[�vS����uT��ZůH�RQT. � /�I��\F]�������R�ԯ�P������3v«��y��4�u�=�J�������������������������FT=�J���٧ֵ������yFT=�J�4���FT=���� ����c���O���&ůI2�4��\){6��Ȫ�ZůHR����P��>EK�_Zůa'Kv����1�u���M�X�ZůH���uQ���1�`]������R�ԯ�P��٧���v¯��u�=�� �P���`T=�J�\��V���ľt�����J�ľ���������J�vQQJӯG�ľEG����\�����c�� �N��G����Rľ�C̩��ȩ��FT����c�� �N�����FT�O⵪O���c�'K�����P����®��c�� �N��ŵ?��G�?P��PG��®��c�� �N���� ������� ����`G�N�s�G���F� �;ȯ�ƨv�L�G������G�G������赭��QG���������� ���çG�����QG�O0�]�����O0��G�����QñƩē��ñƩ�*�������G�����uT�+K��G�O0�FQTO0��ɪG��G�O0�����RT;G��������DñƩñƩ��çG�O0�FQTO0��ɪG��G�O0�������RT�+�ɪG���+̯_G�O0�J�����ش��������������9��(�GR���9��(���u�S��G���u�S(�P���#�� ��ì���O� &�bJì��%���4 ��G��F{#�� ��ì����O� &�bJì���%���4 ��G��F{#�� �*���O� &�bJ���%���4 ��G��F]G���� �ΰ��� ��R�GXJӯ�O �O� ����PtC�vTI©�4 ��+tC��� �ΰ�����4 ��Q#�� ��ì���O� �RQQQ#�� ��ì����O� �RQQQ��Ѩ�� ��ì���O� ��� ��ì����O� ��`TGXJط��E�L �P��tC�vTI©�4 ���:��+��Ƨ��� �ΰ�����4 �`�uQQQ����`TGXJ��� ����PȪ���ƶ�ȶ������0�2(AP��tC�vQ�ϧ�:�IX#X�O�OH/�P�����Oݧ�����P� �RQ�ϧ���?���?��L�B����/?����������M� ���RQ�ϧõ5���� ���P��=�IP��9õ5� �P��FQTI©�4 O�������G�+��Ƨ��� �ΰ����ɫ� �`���QQ���G��O��`�#�� �*���O� &�b��Ķ�IJ���0���(A�����%���4 ��G����\�{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�M��a�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QS���dJ7͜�QS ��}h��QS����}$͜�QSz��s}㜛QSì���ƪ�7ǜ�QS���B�wǜ�QS�Ƹ�ȶ�dw������QSj���̫���;���wh��QSj���B����y�� �$7ל�QS����w״ǔ� ��MU¨��dJ7͔�G�U�������u�_M��H�n�F{�O �$ʱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQSj�;��I����E@���@-J7ޱ�ë望QSj�-B+���YN�$�ל�QSd�G � �$7ל�QSj���B�����O wh�ũ뜛QSE��"A �ƺ�,�� ���$$望QS��zLw7ǔ!�����U·C����ë����;���Uj������Qx��C���$�ݽ�����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫��v���U�����d�u�̫�����U�����̫���u�_�&�ƪ������˧O ��MF{�������<+ůe������dw7DZ��������v! p���#�� �,�����e����@�,�W��� <�������ì�����:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$望QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨J7栛QQSd�ì��J��7ǜ�QS�@���ï�$�7͔� ��MU�x�d���$ߴʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{��ɱ.��x�� �$�$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j���� '�O�@ű� '�Ow���v! p���#�I�2@�,�W�� '�O�M�,G�� sv��%��� �E���� '�O�@ű� '�Ov�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSZ���dw�v�����;�Uj�����QQQA�I8���K��w7�v�����;�Uj�����QQQE��"A �ƺ���w�v�����;�UE��"A �Ƣ( ���GR���QQ�j��������eP&K�^K��U���G����w��v����D��;�Uj��������F�{�Y�d}޴ʲ]�Y�d}޴DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R�����R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�����I�I����H��������u����ë�ƴ���u!���U�����u�QQQ-��̫���K��̶��̶�J�7放 ��MU�x����wנ�x�'��LP�$��ʔ���eP&K�^K��U���n�������w���ʱ����ͫ��ë�����R�'��LP&� �"����R�VZ��P�ë��DZ��R��QQ�j���}��v��QQ�j���( ��$ʱ���ʌ�VM 2&���%��� �E���ƻ�ë��v��QQV(�^yJ���v���QV���%��� �E���ƻ�ë�ƌ��QQV�&yJ�Y�a� @���NHv������%���ȴ�Y�H�L��� ���$ì������R���HPѲ��0����ñ��� ²'��L����0���QQQJK ����ñ��� v�S���v�Q����������,��������ñ��� ��²��������� ���� ������O����ë�����Ⱥ� �� @�����,�����ñ��� ��²�������� �M��ñ��� ��*��"����R�OL�H���U²�������E�������QQ�G��QQ�'��L���ë����Z���xXN�OL�H�ŵ���Z���OL�H��QQ��ë����Z���xXN�OL�H�ŵ���Z�����OL�H��QQ���0����ñ��� ��QQ�����E������QQ��������QQ�K ����ñ��� ��QQ�K ���;��I���QQ�'��L���ë����Z���xXN�OL�H�ŵ���Z����QQ��ë����Z���xXN�OL�H�ŵ���Z����QQ�����E������QQ������ò��F{��ɱ.��x�� �$��ߴDZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$ǜ�QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��$望QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{����E���0Gwʱ��������v! p��ҧ�IH�ݧO�tC������W������ԧ�BE��W��=�s��=�s�p���v��%��� �E�����E���0Gv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ������U�����u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u!���U���}޴��(�����C����Q�j���( ��$ʱ�����(�����C����QSj���B����O3w�$ʱ�ëǜ�QS���E�������P�$�ʲ��F�M��H��IH����� ��Ƹ�ȶ�R�¨��d�n�O�D�u�S��̫������»e�����SM��H�n���ϧض�s������Pë>�ũN�mK�R�SM��H��IH���P��u�SM��H��IH����� ��Ƹ���O�D��ľ��0��̫�������e�( ���I�Xv�Ȫ��Ƹ�ȶ*e�e����������*j�����M�X��������\RĪ��� #:�XvT�ï����Jİ���IH��G ���Ia��Ƹ�ȶ*e\`���������F����c���M��RF]�_�u��RQ���O⵪O�宪�c����ȫ��FQTO⵪O�宪�c�����FQTO⵪O�宪�c����Ŵ���,��FQTO⵪O�宪�c���ȩ�FQTO⵪O�宪�c���O FQTO⵪O�宪�c���=��XFQQ�����c����ȫ�ƺM��FQT���c���=��X�M��FQT���c����źM��FQT���c����Ŵ���,�+M��FQT���c���ȩźM��FQT���c���O �M��FQTl�ç��"��RQT� /��9�����"�#�������Ĵ� /����,"���İ /���ɪ�X�����i���ɪ�\��ŵ?���ܴMR��ŵ?���ܴŵ?��O����P��PO�����u�Sŵ?���ܴëL��ëL�u�Sŵ?���ܴG�,���PG�,��u�S��B����=��X�=����̯Ũ*eyJŵ?�����̯Ũ�F{�G�*eyJŵ?�����G��F){����,��=��O� �ëL�uĻ�O�uTL�O��ëL��O�QQA1�B���ӫa�y�O� ��A1�O�\R�� �� �O�QQ����O���uQT=��M��W��\��P���\��A1�� #�`QQQO��\){����,��=���UëL�uĻ�O�uTL�O��ëL��O�QQ����O���QQ�1ľ�1O���QQ� �� �O�uQT�ī�:��#����#�����`��=���I�W������-2�PW������\����\���� ��1�\RQQO��\){������G�̯Ũ�ŵ?��u�G�,���G�O�̯Ũۧŵ?���̯Ũ*ey`]������G�G��G��u�G�,���G�O�̯ŨۧG���G�*ey`]��R�L�ŵ?�P�:G�,���m��̯�P̯Ũ*ey`�GP�:G�,���m��̯�PG�*ey����ϧ���ڧ�C:�M�C~8RT��ëL��6���.�O����+ŵ?��O����Pŵ?�PG������G�̯Ũۧ���G�G�۝Q�,��=��O� �RQQQ�,��=����\�{� ��� ���̩����3.�}޴�v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}ޠ�QQS ��� ���n�ޠ�QQS ��� ���H��L�ޠ�QQSj��Y�H�̩����̩����H�ZJ��״�7��������ʔ���HPѲG��²Ȫ���e�]������߾���G���R���e�R&K�^K��U�d�ì��J7h�QQQD�������U���j��Y�H�̩����H�Z�ବ��ë�-���������������������ʲ��RD�^K��U���}ߴʲ���RD�^K��U���}��ʲ����F�K�A ���H����L3ůI���RT�O⵪OK�A ���H�����M-��9��������M-��9������u�QSK�A ���H����(�O�9�������(�O�9��������Ȫ��M-�*��GR�(�O����Ȫ�A ��u�OZaĨ��������J�M-�ľ�����#n�����Ȫ�A ��\){�OH/��LR¸ű�u�Ȫ��M-�*��GRT�M-��9�������Ȫ��M-�RQT(�O�9�������Ȫ�(�O��ű�\F�������n�R�»������s��u�S������H����P��ľ��0�Ļ�������ɩ����� ?�N�� ��� ?�N��s�� ?�N����H\)�H�ۧ��I���O�L ����F]H���0�����ܩu�+H�����ɩ����0�����ܩ`]� ���� ������ɩ���#���=�|�'K���˽uT��RQTƩ�ëL���Ȫɬ���,��Ȫ��Ȫ��Ȫɬ���,��Ȫ���"���O0�<����Ȫɬ\F){������u�L�H�Z����̩���.��^0�����D̯M种˽uQ�ĴG��#Z\�L���3�ëL�R��z��s�n�O�D�u�Sz��s���P�u�Sz��s�ëL��ëL�u�S ����C�L�I��̨���,��̨�O�0�H��S ����C�L�I���I4P�O��,���I4���S ���?�O�0�a�O�O�0�H��S ����C�L�I��]����P�O��,�������P������������ ��� R����J�&Ʃ�U�I4���O� ��O�0�a&���b��I4P�G�J�����`T�����*��J�쯵�`]��Rı�ëL��.���� �QQQ�,���I4��QQQ�,��̨�O�0�H\����y�� ���Rľ��0��E���3=����ɧ�4��ɧ�,��P�6�Nu�E���3=����ɴ�,��Pӯ=������u�E���3=����ɴ�,������2����u�E���3=����ɴ(N �(N��2���u�E���3=����ɴ(N �(N�͸����ԫũ��ԫũ��ԫũ�ά�L���ï�R�G���u�L�G�Lԫũ��ԫũ�ά�L�������ӯ=���ǧǧǧ�`���ũ�ԫũ��Jੳ=�ȯ����G�L�uT�3�� ��#���ũ�\){OR�G��K�uĴ���LIӯ=���ɺ����ʧʧʧ�FT����LI��ɺ�������ʺ�������������������FT��B#��RT� K�FQT��,�\){�M�(ONR�L�G���:�k�uT����6�N�uQT�ï���ï�OH��#������\��OK��O��G��K�`QQT���0aQT�CQT��QTO����ȧÏQTO��A�\F�N�;�R�y��Ѱ ƫ���˴�4�R���PE���3=����ɴ�4�F{�6����4��uĴH��6�N��PM�(ON`����ų��ŵ?�R�­��ų��?�[��P[���Ʃ�,���f�uĴO �ҳ�G�̫���?�����,:���齽J���`]Ʃ�f�u�W������v��[������������÷��QTƩ�,���C\){� ����N�M��y�u�L���j���,��ùO*M2�����ݹ������ݹ������ݹ�����uQ&j�jRQD���RQD�,��ç�,����`]M ��ŵ?��M������uĪ�b�_���U�N�J�J����������ز�T� ����N�M��yb�_���U�N�J�J������ز�\F]�,��ŵ?��A��uϝ���uT����������R�QQQDŵ?2�A���R��QQQ^f�Ʃ�C��R��QQQM ��ŵ?��M�������\\�&^ ��MU�x��ɩ�w栛QQQx���,��wʜ�QQx������$͔QQVK��U���B����y�� �$7ל��Sp ��w״͜��S��4ï�}��QQV��HPѲ��4ï�²���������4�ï�����˼�;��ô�����ϧ��C �6��� ���;��çy�� ���"�W���4 ����ɰ�|��R]6����;���R�u�ĸ�RQ��;��ôn���;�K�M\RQ��;��ç�t��=�PM���C��M��O���Ä,:#�� ����?`QQ��;��ôMG�� �Pů�L�EK�E�'����P,:�MG�� �PO���G �����ܪ�`QQ��;��ô�ÿ���O�2�N�<������P�IN��HL ���ÿ��O0��\F�ܩ�I�K�98��(NI���R��R[�( ���P�uK�98��P��DM;�K�6�P��uM�,/�P��u0�ÞP0��uO��N��P�uܩ�I�.��.�uܩ�I���i����i�uܩ�I�����P��P���Ȩ����6��RK�98��n�O�]9g]98������98���#�@����I �����< ���98R�L¨�i����M���i���4��o����Q�4������ܩ�I���i���4��i��Q���Ȩ�����ܩ�I���i���4������P��i��uT.��GI��-ȱ�4�ۧ�4�����Di�@����I �����< ��FQS����+ůI2���Ȩ������98�����������,ȳ����< ���98R�L¨�i����M���i���4��o����Q�4������ܩ�I���i���4��i��Q���Ȩ�����ܩ�I���i���4������P��i��uT.��GI��-ȱ�4�ۧ�4�����D�������,ȳ����< ��FQS����+ůI2���Ȩ�����`{�K�������K������}hv! p��驰NK�� ��Ȫ��B�I2ŵ?�X#ê��X#����I��v��%��� �E����ë��M��޺K������v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����_K�������YR!���UR�QQQj���}��ʱ�ë�ל�QSZ���dw͜�QSj���B����Yw�㜛QSA�,�-+�P�״�QQQQQSE��>@(�����2�$㠛QQQu� ��MU�x�� /wʔ�G�HL ���R�RDO���>�ū�DO���>�ū�RDO���>��IK�O���>��IK�RDG ���B�O⵪O|DG ���B�O⵪O|RDO0����O��DO0����O��RDO���>�o�@ �G,�O���>�o�@ �G,�R��R���eP�R�QDK�^K��UR�������n�����w�ʱ�ëל���QQZ���dw�v��������;�Uj����������R�QD �I^���K�������Y�K�������O���Z��R�Q��R��b�J�b����F��n�R��z��s�n�O�D�u�Sz��s���P�u�S ����C�L�I��]����P�O��,�������P.����������S ����C�L�I��̨���,��̨��1�,��̨�O�0�H��S ���?�O�0�a�O�O�0�H��S��.���PÏľ�N�;�`]#� R�:���`]A����H�� �ȯu�L�_��M�0���Q�P�MB���0����ȯD��0����uQ&M�0��M��QV��0����`]O��i��H����yDy�_�M�0��D��0���u�L�-ȱH���y^M�0��MR���D��0�¯���uT��.�#� R����A����Ȫ�A����H�� ���-ȱH���\F] ��� R����J��¹O�0�a�G���H�� \R�����J�O��i���1��1��O��i��H���1�`T����J�GI�¹úGI���.��ۧ�H�� `T�����*��J�쯵�`]��Rı���� RQT�,�������P�������������,��̨��1&Ʃ�ȯ8����˝��,��̨�O�0�H\��:����zN���A����z�H�R��:�-���P:DO��6�U]����S:��:��:u�Q`]�����������Y���F{����������Y���F]�ë��®��u�r��[��ۧ���R��V������Ĵ����b����\){Ʃ���®�f�-ȱ���u�o�������Ʃ��1�FQQ���������YRTL·����į�rb���D�����ɬ�J��uQT������񧷨�������-ȱ����f����ɬ`QQTr��[��ۧ���D���������ĸ�B�Ĵ�O�驻������G�������\RQk`]���� �����:0H�R��#<��r����R������u�ϛ�O3�CFQ�ŇR�O��u��L�&Ʃ�UO3�C������r��P����Q&Ʃ�U�-ȱ�����rb�z�2�������ϛQT� /���������z�H��J�����QQT�r�O���̨&;��4�A����z�H�v���QVyQQQ�A���v���QVt�QTr������P������ɬ������ë����Įë���P�������������Ʃ����Pf���-ȱ����˝QQQ\){�A����z�H�r� q� �����:0H�`�ϧΩ���ì���%��� �E��Ƶ��ë/����x�=9�O0�&^ ��MU�x�=9�O0w�ל�QQx��$״望QQ��ϧ�Z0��ɷ��B����dR���ϧ������ì���%��� �E��Ʃ��x�-�4R���x�-�4w͜�QQ��ϧì���%��� �E��>��/�����R���>��/�����w�͔QQQ�ϧ�ɰ�|RQQVK��U°�G3���õ-�G���wߴ�QQVM��U�O⵪O���G3���õ-�G�����QQQ��G3���õ-�G���� <��۽��˼�ۺ���M�N��ů��)�?O������ů���n��Z��J7�Dz)�H��N��R!���P��?O������ů�����QJ7͜�QQ�?O������ï QQQ��ޠ�QQQ��Ƹ�ȶ�d�QQQ�$���ǜ�QQ�j���( ��$ʱ���딾����PQQ�Ѳ�������QQQ�� �� @��F3�������b�N�D�����Ѳ� �������FO⵪OR��?O������ů�����Q���u��?O������ï �ů��O�D��F]�ƧK�R��?2ï ����W�=9��K>=�|�v�u�z��ýï ^�O����� /Q��R��QQQD�OOQQ��R��QQQD��<����P��ê�� ��\){�Ƨ��R��?2ï ����W���� ��K ��|�v�u�ï ^��<����P�3���"��`�.��������R����� �OL�HP��������v��RS�N��<��O�<��ODO��6�UM�����b���Rµ��u�o�RTů�L��O*M2��M��Ȩ�����J�WM��ȨvTů�L��O*M2�@��������J�M��vTů�L��O*M2���|���������J���vV��a���`]b�ȯ8���ܩRµ��u�o�RTů�L��O*M2������������J�ױŪ�vTů�L��O*M2���������J�ױŪ�vTů�L��O*M2���������J�ͱŪ�vV��a��`]b*?������Rµ��u�o�RTů�L��O*M2䲴ܪ������JЯ��LvTů�L��O*M2䲴���������JЯ��LvTů�L��O*M2���|���������J骨Ƨ���vV��a�ٶGL��`]���ܩ�ȶm�����R«���M��u�L�ѵ��D��H��ȶm���������M��uQ&�P�b��P����Dȯ8�����b�ȯ8�������FQQD�e�����b*e��������D��������`]ŵ?��ȶm���R«���M���> ��uĿ������P����ܩ�ȶm��������M���> ��\�������ze��?�6��R��ľdU�O⵪O�6�P�����ze��?�6����6��ze�����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R�����R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F�d��n��� �� ]�]6���y����K;�� �� �ĸ��� RQQT]��y���K;��� RQQTH�����y�6�����\�� �� H����]6��6������� �� ]6��]�y����K;�� �� �{��y���K;��� ��� �� ]Ho2�ɹ���G-��\� �� ]����Gɹ���G���G��\� �� ]����Gɹ-�Ļ��G��\� �� ]�-��ɹ���G-��\� �� ]�-��ɹ-��-��\� �� ]6��� /�������� RQ�Ĵ=���+o��L�G����I��\�M�,��Rľ���d�n�FT�O⵪ORSj���4 ��H�Z�H�ZuSd�ì���YN��PYN��( ��M�,�v�Ȫ��#ZH�Z�GI��H�Z�����`R�ϧ쯭"�H�Z�B#���R�ũW�����H�ZFR�ϧ�#�������ZN�Rī����RQ��#���H�Z�O����P����� ��B#B��H�ZݧM������������I  G�RQ�ϧë>��ɩ����RT�H�Z`RĪ�9b����O/�E�/��)QQTL�O�0�a�YN��bJì��%�=9�ïG����ʺE�/�v���QQQ^ "�����˽uQQT���O�0�HR�V�1�R�QO3�G ��R�T�ï����Ѳ����J�I��\`���������"�H�ZR�™�̫��������u�Sz��s�n�O���֧] ��Sz��s��O�� ��S ����C�L�I��]����P�O��,�������P.����������S ����C�L�I���ܪ����,���ܪ���S ����C�L�I��̨���,��̨��1�,��̨�O�0�H��SN����n�O�N���S ���3.��̩���O�����̩�����S��"�����L����P�O�O�L�����O3������ľ�N�;�`] � RĚ J��FT���J������RQ&�1�O�L ���O3������`]�ì���ëL�Rı� RQQ�,��̨��1�RQQ�,��̨�O�0�HRQT�,�������P.����������,���ܪ�`]�_��0����L�0���/������0��N�D0��������㽽uT����̩��ì���ëL�^0�0��̯M种�\���LôëL�Rľz��s�n�RQQQ ����C�L�I�����RQQQ ����C�L�I��̨RQQQ�Lô?RQQS ���3.��̩����­���̩�������z��s�ëL��ëL�u�Sz��s���P�u�S�Lô�É�ù�R�S�LôP��Pu�S�Lô��P��P���u�S�Lô��P��P���u�S'���P��`Ī��L�'����� b��i��bN��J����������Բ�uķ�o- ������ ۧ'����� FT��o- �`��H�����b�J�L����`){�,����MK�R�ëL�uĻ�O�uTëL���[��_O��� u��QQQ�Ī��J���J�MKɴì���\`] ��� R�o������¹���+��� FTo������¹#�+��� FTo�����¹ú�ñ FT��� J��FT�����*��J�쯵�`]������� R�Q��,����MK�R�Q��,�������I4�R�Q��,��̨��I4�R�Q��,��̨�O�0�H`]�_R�0��uĭ���̩��.�^0���/����0����`�d��L�����G�n�R��RSd��GDO��6�U]G�SE�L ����ƞP��uS��G���ƴ�N��P��P�NuSd��L�����PL�����n���~g�3૨�ᵷ�����F����BE���૨�R�3૨�ᵷ�Rıë���uQ�`]��N��3�ë��RĿN������ ���3૨�ᵷ���N��� �N�M�\){��N�Ʃ�RĿN��� ĿN��O�N������N�M��ǧ�N��3�ë�ù�\){��N���RĿN��� �N�M�`]G��L�����n����@ƩRĮ�������@�����������Y�L�����n�����i/૨��.���N�Ʃ�N���`�6�����?���R��:�-���P:DO��6�U]����S:��:��:u�Sd��n����������ۊ�S6�����E���5l��_��PE�u�S6�����o����o���u�S6�����?��������u�S6�����?������P��P�@�u�S6�����?��@ʼn@ŏ���6�Ud��n��������6�P�O���������"�ëL�u�r��� �ۧ@ź~��e����Ą�5�/^����˽����ëL�u�r��� �ۧ@ź~��e����Ą�5�/^���˽��������� �R��r����R����uS�.�Do- ����ŇR�O��uTL�&Ʃ�Uo- ����r��P���uQT��k�o- ���TE���̫ɱb�.����o����.��#��"�ëL����ëL���`QQT�r����kR�QQ�@ź�BϹE���̫ɱb�.����o����.��#��"�ëL����ëL���`��QQ���� ����Ŭ������Ŭ��ɨ������o- ���R�QQQ�r�����P&;��4���ũ����ũ�����"��J��٧o- �����Q�r�����P&;��4���ũ����ũ���I5����J��٧��o- ���\\]���Gr� q���� �˽���9��ëL���ì���GR�™�n���������u�S5�����]O2��P�u�S�9��ëL���n�O��ɩ����S�9��(�®�Ʊ ����S�9��ëL���ì��u�S��ôì����u�S��G���������R�%���ȴ��4 ��E��F]#�R&����ì��D��������F]G#��G�R�GXJtfi��vTI¨�k���Ʊ ��`�#�`TGXJMtfi��vTI�P�ɰ� ������Ʊ ��A��&����ì���#`�����ɰ� ���Q��˧�&������X�O⵪O��Ʃ��RQQQ^� ����˧�&� ����=ȩ��Ʃ�R��QV������X�O⵪O��Ʃ��\){���Ʃ�O�0�HR��F]��Ʃ�O� �R��uĸ����"��O2��Ʃ�O�0�H`]G��ɩ���G�R�Ȫ�O]�RSúO� ��Ʃ�O� �uT�P�L®��ɩ�i����O������������MB���ý�u���O�����Ʃ�O�0�H\����ϧ�H2W����V���0����Z�������e*�����ϧ��4 ������ϧx������ï�G�[���0�����0���J��H�+��,'��ȶm�+���������)�ï�G�[���0��R�™�����P���u�Sï�G�O0��q��PO0�ľ™�̫�����D��O3���Ʃ�����e�yu�Ȫ���N�eO3��e�y�uT�����IH�����������e\F]�IH���u&yb�ȧ׽D�O��b�ȧ��F]�IH�GXU�e�yu����IH��OGƩ������e�y\F]��0����e�yuĸ�H�GX�IH�GXP�e�y�uT� /��ٷ0�<��GXFQTO0�3��GX�GX\�&^K��U¨�4ï�}�ǜ��Sj���B����y�� �$7ל��Sd�G � �$7޲��)�� ��MU�x��� /}ǜ�QQx���GJh��QQQx�;�Z���$͜�QQx���M��w޴ǜ�QQx��ȫ��}״ל�QQx�ƪŪ�$$ߜ�QQ��H���Gȯ1w$Ͳ��)��M��U�L¯ ����O���>��B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��KO��-�\����)����HPѲ��4ï�²���������4�ï����RQQV��U���H�+̮���x�K��QDHI�ñ�����������˼�R�¸���ůI��d�P����ůI�u�S��������C�9��O �.��������u�SE��G�I���,�zN��PzN�u�S��B����y�� ��O �O �B���u�SN����n�O�N���`��ϧԩ�=�s��I������-��PB�O�L ����� ݧ������� ���ϧ���ůɩ2��������ů�9HP���#ï��232��������PB��O���ϧK�,K2�W�"�H�ۧ��I���O�L ����F�H�ۧ򵶮�Ʃ���D�I���ůɩ�F){#�i�F]��¸����u����I�����i����u���Q����ůI��GI�����P&0���/����IH�/N�Dì���0�����\RĻ������GI�*������`]G��u����I�����i��zN��G��FT�������G��*������`]Om��y�� u�G��FTO �B��+O�O��`]���H��O ��������d��O F&O ^ ��MU�O� q��O J7״ʱ�������֜�QQ�C��C��O w�$ʔQQVK���RQQS���B�����O w7��QS �Y���⵪������w�������������;�Uj���B����O3�QQQz@|w�㲹�˼DN�^�⵪����RQQJ&���U���Gȯ1uQQQD��Gȯ1���;�K�@/U���@����������*���*���˲��)������G�M��O�Rľª����M��O��ľª�����IH��ľ™�G�ľ™��� /�`){G�M������|R�L�O����M��OİIa�������PDz��uT�P��b� ɧO�����J������QQ��\F]G�G��XL�M��Ʃ�O������O�������R�L�O����M��OİIa�� �Ͳ��uT�P���OO�������\F]G�G�-ɬ��ɰO���Z� ��O������O���R�L�O����M��OİIa�� ���\�� �沽�uT�P���OO�������\F]G�G�Ho������O���5����ɰO��O'>��O���������O�R�L�O����M��OİIa�� �Ͳ��uT�P���OO������ͽ���ϧ��Ƨ���G�ȯ��2ë>�Ot)QQ�ϧ��GRTL�O����M��OİIa�� ���\����PDz��uT�P�k��OO����\\){G�G�� ����-����R�L�O����M��OİIa�y��P�����\�� �y���uT�P���OO�����J���\F{�E���,M �0G}�$�v�O0��q� �Ѳ̫���-��%���ȶm��̫���-��>��͌!���U�E�'���EK�}ޜ�QS̫��ɴ?�?}״�v�����;�U̫��ɴ <��� <�������eP&K�^K��U���}�Dz���R�QD�^K��U���}�ʲ���R�QD�^K��U���}״ʲ����F{�0'wʱ��������v!���U���}ޠ�QQSj���( ��޴��ʜ�QS���=��w�딾 ��MU�x*�����w�ʱǜQQQx�d�ŵ?2�͔�c����bU��b�J��� �� @��d��u�d�ŵ?2�R�QVŵ?�U&f�K�v��QQV��U�������QD������^�̨m2�0'�n��Oی��QQVze�^�0'�n�R����D����Jd+�v����D���BJ� �� @��d+M�̨v����D����J� �� @��d+����QQQ�R��QQ^f���v��QQV��U�������QDze�^����Jd+�v����D���BJ� �� @��d+M�̨v����D��<��ܫ�P�3���"��R��QQQ�R��QQ�u�QQ�R���������R�QD���U�� �� @������RF{�ŭ�$״ʱ��������v! p���#�� ��@�ìȩ����/���:0-/���i��@�,�W�� <����4 �Ȫ��=�sv��%���ȴ�� �E�������ŭ�v�a&yJ�Y�a� @���NHv�V���Q�%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���( ��޴��ʜ�QSj������A ��B�w$ה� ��MU�x�E���w���x�d�ŵ?2�ǔ�d�ŵ?2&ŵ?�P&���Q&��U��������Dze�QQ^���BQQJ�b��+����ŭ��̨v�����QD����QQ��b��+���v�����QD���QQ��R�����QD��<����P���R�����QD�O����� /Q����R��QQDG^��U�����G���QQ�QVze�QQ^���BQQJ�b��+G�ŭ��̨v�����QD����QQ��b��+Gv�����QD���QQ��R�����QD��<����P���R�����QD�O����� /Q������R���eP&K�^K��U���B����y�� �$7�ʔ��D��U�K���QQVO ����P&M����P�R��DE��ɛ&����J����E��ɲ��˽�O A�zN�������R��E��G�I���,�zN��PzN�u�S�����P����u�S�����oM�oMu�S��B����=��X�=���~g鯮�����YN�uzN��Ԫ����cR�GI�zN�uT���YNzN���RQQzN�RQT��=��M��G�J�- X�B�����#Z���`�TL�YNĸ����Ʃ�YN����u�T��H�����oM�D�2�oM��ïȱ��;�N���u�QToM�O'>�YN����oMDW"���`�QT����zN�YNYN�\`R�G��zN�uT�����ľYNzN��zN�RQT��=��M��J�(- �2���鯮���QT�����zN�YN�\`]-����Rµ��u����鯮�^��������`�E������L�zN��ȩűH�ZR���C���ïGP�O��ïG��'K���S(�P�u�SE������L�zN�������P�O������� ��SE��G�I���,�zN��PzN�u�S�3���3���3�u�S�3���ȫ���¨ȫ������S�N��<��O�<��O�`<��O�O��<��OF+] R��O��٧G�� s�W����� ��v�������u²vRS��.�Ĩȫ���2��������P���������^M��^<�LJ�V�����v���QQDZ��}�v���QQDK( ��ҧ�����PH������QQVūH��J�.��˽uS���3��ëL��k����F+]~g�W���ZïG�0������P@i-�uzN��Ԫ����cR�GI�zN�uT���@i-�RQQzNϧC��0�"RQTL��ïG��'K��ïG��'K�&(ADì��DïG�ïG� ����������Q@i-��3��@i-���ïG��'K�^0�0��˽uQQTM��D�GI2�X�0���ݧïG���ľ0�@i-���ïG�T����zN�@i-��@i-�\FR�G��zN�uT���L�;�a�b�_zN¾@i-�D;�H��uQT;�H`QT����zN�@i-��k\){-ȱȩűH�Z�u�zN��XR����W���Z��FQ��������`{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V��%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�h��QSj�'�?�����M�}��ל�QSE���� ��:A �L��}Ͳ�R�QQQK�-�����3���w��㜛QS����������O���$望QS����}$ה�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H���O ����P�R�QQQDM����P���������������R�QQQD0������R�ϧ��� @A�֩�����ԧ ��_�P�����[��#����R�O �0�����R���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{��M��L��w�v! p��ҧ@���,�����M��L�W��=�sv���%��� �E���Ȫ����M��L��v�a&yJҰ ��NHݧ�V���hv�V���%���ȴ. �� �������رh�!���U»M��L���n�$ʜ�QS�M��L��� ��$ʔ� ��MU�x�� w栛E���wߴ�ʜQQQx��C���放� �n�� ���u�E���^�U�n�������� �������QQD]����P&����W��Ƹ�ȶ�R������J����E���v��������� Jì���%��� �E���M��L��M��L����=ź�$ʺv������@-�������ï���O���JԲ�F{����wʱ��������v! p���#Z� ��W�oZ<�����ȶm�X���Ȫ�ȩŧ�/�N�v���%��� �E��髶���+�������v!���U���}�ǜ�QSz��s}㜛QS����}$ה� ��MU�x� ��wߴޔ� ��^ëL������ëL��.��R���e�R&K�^K��U� ���'��w㲹���F{��,@�w$DZ��������v! p��ӯ���-ȧ�B����XP�#����v!���U���}�ʔ���eP&K�^K��U·C���油���F�{���������,�P�$$�v! p��ҧŵ��ç����Ч�ɰ�|PW�������E��a�� �5Z����v��%�� ��������O�M������v�a&yJ��֧�NHv�V��%���N��� ���֌!���U���}렛QQSd��N�<�w�����;�Uj�����QQQj�̻O��̻O���I�$����_���ƪ������MR���U�����M��u��b�J��������F{�̵��wDZ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ߠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵����������J7Dz����D��eP&K�^�=���IP���I���O�L ������R�QD�^K��U���}޴ʲ����F{�ŵ����ŵ����n��$�v! p��ӭ��B�,���Ұ��W��=�s�v���%��� �E�����E���ŵ����n�v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}�$��(�����C����QSj���G����}��(���G��QSE�'���EK��E�'���EK�}�㜛QS��êOJ��$ǜ�QSj�ů����9GL�Ů���̸���}�ߜ�QSj�ů����9GL�Ů�ƪɱ̸���}�ߔ��I�yJŵ����n���Iv���U�����u�̫�����U�����u�G�U�G�u��=���IP���I���O�L �����R��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/��������F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F���ϧ�êP�e��P�I����� ����O ��ӯ�� ���ӽ����ױݧ�J൸������ϼ���ϧ�� ����O ��P@"�"2B���������֧@"�"��Ω�e�������ش��W������K?��){��� ����O w����������v! p��ҧ �ç���ԧW��=�s�_��ů��#��L�v���%��� �E���J�ذ�?��� ����O v�a&yJ��֌!���U���}렛QQSì���ƪ�7�뜛QS ��� ���̨wh��QS��êOJ�$͜�QSz��s}뜛QSj�����̺����̱.�}޴㜛QS�ô⯨�=�� ƺ=�� Ʊ;�}$�望QS��zLw7望QS�� ����O��L}$ʜ�QSj���[��EK�wʜ�QS� �,��d�H�Zwh���;�Uj������_���ƪ������ ����O �n�R��b�J�b���v���eP& �I^������F{��� ��wʱ��������v! p��������M��2�,Aȯ�ƧW����P�ȯŨv��%��� �E����G�>��� ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQS�1���}�͜�QS�C�}�ߴ�ʜ�QSN@>}㜛QS ��� ���'��wh�� ��MU�x���M��wߴʔ�_���ƪ������ ���ȩ�R��b�J�b���v���eP& �I^������F{����w�v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v��M�x�Z��Jh��v!���U���}�ǜ�QSz��s}㜛QS ��� ���̩����3.�}딾 ��MU�x� ��wߴ㔾 ��^ëL������n��.��R���e�R&K�^K��U� ���'��w㲹���R�_����n�F{��ɱ̩�H�$ʱ��������v! p���J��HGX�ڶ��v���� �E���ɱ W���ɱ̩�H�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj��� W����w��ޱ�������֜�QQϑ�� W����w���Ͼ��;�Uj�����̺����̱�����QQQ����w�ל�QSj��� W���ɱAP�$���ʲ�������� W���ɱů��Ʃ��w��렛QQS̩�H�$$����ϧ����ݧ����=ȧ_��R�G�HL ��P&̩�H�̩�H�R��DG�̩�H��GP�G�̩�H��G�R��D�oG�/�����R��������P��O ²�H�Z���X������X�X���H���Ӳu���eP& �I^����ɱ�������������A��� ZR���Q��ɱ����������������ñ��������R�QDK�^K��U���B����y�� �$7�ǔ��D��U�N��K���������F{���� �$ʱ��������v! p������A��I��� �� M��O�v���%��� �E����i���� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSMG.Ia��ʔ���eP&K�^��U�K�����R�_��� ��n�F{�o���o��w״ͱ��������R�x�OL�a&K ������D;��I��R!���U���}栛QQSj���B����Yw7ǔ��ï�JK�5P�õ�����?�A�����?�E��v���eP&K�^K��U�E���w�ʲ����R���%��� �E���?�A���ߢ�o��v�_o���MR��M�x�Z��Jh��v������,��^�_��M��o����D_o���M�R� ��MU�x��ɩ�wǜQQQx���M��wޠ�x��1��w��ʔ! p��ҧ����ԧW#�i���_��K ��|�Ȫ��O'���M �F{�z��s}�ʱũ�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J7͜�QSA�L�$ߴל�QS ��� ���n��ʱũޜ�QS ��� ���EK�}$ǔ� ��MP��x�E���w��㔾E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���H�RѲG��²Ȫ���e�]��������G���R���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w栛�QQp ��w״ל��Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ����F{�j��� W���ɱAP�$޴�ͱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSE������+<���H�w望QSG�L�����+�5�ܸ�w״ʔ���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����w޴㜛��QQ������n�������w���ʱ����ͫ��ë����QQ ������YN�$״ǜ���QQE���N��<��OJ״ǜ���QQ�C��޴ʔ��D ��MU�x��C���望���x�H��Z��w״ǜ����x��� /Q�Dz����F{� �������w�v�VK( ���Z�P ���O� �PB����ԧE��v�V���%��� �E���N�L��� �������v�V�&yJ�Y�a� @���NHv��QV���Q�%���ȴ�Y�H�L��� ���$ì����VK��U�9A�����Ʃ�Ʃū�w7����;�Uj�������j���B����=��Xw�ʔ�V��eP&K�^ ��MPQQ�x��C����QQ����Qx�����N�$�㔛��QDK��U���}렛�����C���望���QQQd�ì��}$ʲ����F{�j��� W����:w޴hv! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������汿�����Ŕ���eP&K�^K��U·C��Ǵޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E���EK���:Jh�ʱũͱ��������v! p��ҧ�=�s�@�,�K���-2B���C��E�L ����������� �PB#��0��=�s�( �����,�ç�IH�PX�\�:�-��,��#�/�ɴv��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)V��U������)VK��U���}����(�����C����QSj���( ��������(�����C����QSj���n�������w�����(�����C����QSj����E��M� �P�$ל�QSE���EK������M����}$ʱ�ë͜�QS���6�=�����6�J7��(�����C����QSj���G����w���QQS9A�����Ʃ�Ʃū�w״ʲ��)V��eP&K�^��U�����������4 ����F{�OC�,����� �����w����������v! p��ҧ�����ƧM���O2�����ūH2GX�@�,���v��%��� �E��OC�,����� �����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���Uu���eP&K�^K��U���}�ǜ���QQE��ɱ�2�$h���;�Uj��������R��=���IP���I���O�L �����R�E���^� ��E��ɱ���� ��� ����R� ��MU�E���w�ײ��F{�ũ�ê>�ì��wDZ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh��̫�����U�����̫���u!���U���}렛QQSE��5���������ì���YN����ǜ�QS-����o���ũ�ê>w�벹�F{��O��P�$����������v! p��ҧΩo���N��ҭ<���Ԫ�Ϊ�����v���%��� �E��Ʃ�����O���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����������U���X��Ϳ��QR����U�� �u� ��MU�x���M��w޴ǔ�̫�����U�̫���u!���U���}�ǜ�QSj������A ��B�w$͜�QS̫��渺>����Dz��ϛ�Ʃ����1���w�h��ל�QQ��Ʃ����1���J�����������ǜ�QSj�1��̺n�$7ޜ�QSƩ�����N���,w�ޜ�QSƩ�����@�Ʊ?}$ǜ�QSj���欳�Ũ��ȳ����KEK�}ʜ�QSE��5�̯�����8�I���-��ůȪƪ�ƶ��ƶ���N����wǜ�QSd�,:w㜛QQ��E������LEK�����N��̫����ɱ@�,����̷�w�望QQ�F�L�K���P��·C����ë����;�Uj�������)T]�O �$ʱ��������vVK( �����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�vVK��U���}栛��;��I����E@���@-J7߱�������֜�QQSj�-B+���YN�$�ל�QQSd�G � �$7ל�QQSj���B�����O wh�ũߜ�QQSj���B����Yw7Dz�����SE��"A �ƺ�,�� ���$$뜛QQS��E@��Z���wʜ�QQS��zLw7ǔV��eP&K�^K��P�K������RVK����P�K����RV���O ��O3��@-��J@-ٶ���3uV��J����dvV̫�����J����̫��vV��U�����d�uV̫�����U�����̫���uV_�&�ƪ������˧O ��M`{�����ì��w$ͱ��������v! p��ҧ��>���ũ��X��,���W��ܷ�v���%��� �E����Zë������ì��v�(�^yJ���vQQV���%��� �E����Zë������ì�⌾���5��^����Ʃ��I��Zë��N�?�E��!� ���O0��q� ²;��I�&6��P����ˊ�0��3���!�>=�U!�>=�R���QS�yJ�I�Vë��N�������%��� �E����Zë�������?���I��Zë��N�?�E���������4PW��=�s�p��ŵ?�B��������JΧ״ɽv���%��� �E�����E���ũv�a&yJ� @���:�M��%�������!���U���}ߴ��(�����C����QSj���( ��޴����(�����C����QS���E����A��w޴��(�����C����QS���E���lP�7ǔ!� ���O0��q� �ѲOL�H��;��I�RQQ��Q���.�ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d��)VEKM�^�U�����QQQDO3D�( ��R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ũ��=źi��v�V����� ��O���J�Բ�)V ��MU»��E���EKM�w�ʲ��F{�����w��v! p���=�s��,�������I�ԯ���X�ԧ�/��- ���쯭��J����X�Ӻ�J�v���%��� �E����>@���������v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSE����=����=��ɮ�J��$�������望QQ��E����=����=��ɮ�Jߴ$뜛QQ�ϧO⵪O2����M;�K2��I�ԯ������W��/� q���R�QQQE����i�ɷ��� ƨ�n��� ƨ��M2�7�望QSj���[��̨w7뜛QSj���[��ɷ�wʱũ͜�QS�@���ï�$�7͔���ƨ��D�I�R�ϧ���ڧO'>��Pȯ��I�������I�ԯ��Pի>O0��� ��ë>���ƨ����R�O0��q� ²�I�ԯ��OL�H��%�K>=����=��E��>�͜�QS�=9���e��I�� ��MU�x�=9�O0w�油�F{����E���o<���wʱ��������v! p��ҧo<������� ��=�����i�"�W��=�s�v���%��� �E�����E���o<���v�a&yJҰ �hv�V��%���ȴ. �� �������رh��ɬ��̫� ����U���b����������X@/�������u!���U���}޴��(�����C����QSE���N��5���7�$ʜ�QS���E���lP�ʱ�������֜�QS���E�������P�$렛QQS���E��������w�͜�QS���E����� lw㠛QQSE����[�ūH���}״�����QSj�0G�O�⳺0G�O��J��ױ���ͱ̸Ů�͜�QS���L/ܺd���f�$뜛QSê�I����}�ǜ�QS��êOJ�㠛QQSE���� ������I�����̫���ze�w��ǔ� ��MU�x�����N�$�޲��F�{�d��@��w��v! p��v��%��� �E����̯���d��@��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���n�������w���ʱ����ͫ��ë��QS����������Jh�ǜ�QSì���ƪ�7�ߜ�QSd�Jì���%����������L�E��W�����������W���d��"Xv�QQQD0GJd��"X￯��L�����E���a&yJ�:'� @���Na�����v�V��%���ȴ��N��� �� ʌ!���U���}�ǜ�QS�?��"X�n�7͜�QS�?��"X����J7͜�QS�?��"XɻJ7͜�QS�?�̯����*J7㜛QS�?������N���*J7㜛QSE��=ȫ�������7ޔ�����?�����. ���@i-���?�. ���F{������?�����2�$�v! p�����V����?���v���%�Bų�ɴ�� ���������?����͸��)VK��U���}ߠ�QQSj���( ��ߴ�Dz��)V ��MU�x�d�ŵ?2�油�)Vc����bP�&� �����b�� �� @��̨��)Vï��UxXN�d�ŵ?��)Vd�ŵ?2&ŵ?�U&f�Kŵ�v��QQV��U�����d����QDze�^���BJ� �� @��̨������?����͸�̨v����D����J� �� @���+�v����D��<����P���R����D��������R��QQ^f�OL�Hv��QQV��U�����d����QDze�^�@K���P��R����D�O����� /��R����D���BJ� �� @���+�����?����͸��M�̨v��Q��QQV��<����P�3���"��˹�F{����E���ũJ���v! p���� <>���4PW��=�s��p���v���%��� �E�����E���ũv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ����)VK��U���}ߴ��(�����C����QSj���( ��������(�����C����QS���O <>ɴ��̫��ͺ��̫��J7ʲ��)VK ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d��)VEKM�^�U�����QQQDO3D�( ��R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ũ��=źi��v�V����� ��O���J�Բ�)V��e�R&K�^K��U���B����y�� �$7�ǜ��Q���E����A��}ߴǔQQQD��HPѲG��²Ȫ���e�K���!����!���G���RQQQD�=���IP���I���O�L ���RQQQD ��MU»��E���EKM�w㠛��x�����N�$��ʲ���RD�^K��U���}��ʱ�ë�벹��RD�^K��U���}޴ʲ����F��ȯ�ƻ=�6����(:0-/�R���6�Uȯ�ƻ=�6����(:0-/�R��VO�]�(:0-/�����ȯ�ƻ=�6���?�G �����9A@ܩ�Ʃ�Pȯ�ƻ=�6���?�G ���9A@ܩ�Ʃ��F��ɴA��X���A��� ZRľ�N�;�FT�O⵪O��n��������®ë��۹�ľ��0�ª�������ɬu������� Z�թ���� Z�թ���� Z�����O3X�1����_�����u�L� �թ���� Z��ɬ��QA��� Zթ���� Z������ç ɽuT� /��ԫ���2թ����� Z���=��X�W�Z����FQT����ë�\F�(,���R�™�G�Gu�S��O �O u�S��G����-����Gu�S��B����y�� ���M2��P����M�u�S��B����y�� ��O ����O u�S��̫���������ľ��0��̫�������e\){����<O3:��`{M���uĶ��O ������L�Om�ۧ��`]�O�O�ç���O �O�O��F{�O�O�ñ�����O �O�O�ñ�F]@G���R������@G���#��ů�P���y�� �������������v�uĶ���M���M��y�� �M���e�J�������\){�R���m2����G����W�����|P����G��Rٻ���|��P���2��X���PM��O2�P��O��ɧBR�M2��y�� �v��uO�O��FQ��G�����GPĩ�G��M��GP�G����&���<O3�ﷵ�<O3�`T°��uL�O���O�������Q���?�����O*M2O���G���\R��Q��G��M��GP�G���uQO�O��FQQ�ĩ�G�����GP�R��QQ^���<O3�ﷵ�<O3�\F� /�����F�M���F�H��N��R���P�Ѳ��������P�Ѳ� �!���P�‘��}ߠ�QQQ��}$ʱ���ײ��F�Ʊ�����R0�^����.��y��RQQDZ��wʱ��������vQQDK( �����X�ؾ�� �K( �����&y�� �����y�� �����R�I^_���y�� ����FO⵪O����y�� ���F]�Ƨ���u�zRTȫ��FQTȪ��O��,���eH�RQT��y�� ��˺�M��eH�\){�Ƨŵ?2�u�z�ī���0�� ��I��b\)�d��� ��MR��z��s�n�O�D�u�Sz��s�ëL��ëL�u�Sj�ì��ƪ��H�Z�­���H�Z������X�O� �P�:��`]���0��u�L���X�O�PĨ�.ۧ��X�O� �PM��QGI���i�����O/֪A�?@��uT����'2��X�O�P��`QQT���ڶ��X�O� �P��X�O�`QT��O3��L�����FQT��.ۧ��X�O� �P�ı����`QQ�0���`] ��� R����J��X¹0��\�]���uĭ���H�ZëL��.���� �^0�����D̯M种�`)�ϧӯ�� ����������ױ����ݧ�J��X֧���){��V������}�ʱ�ë�F]��3�������V������R! p��ε�0�W�����A������� v�a&yJ����֧�NHv�V���%���N��� ���֌�����/�D�ů��R!���U��3��n��V������u�QQQE��E�5 �������dwߴ��望QSE��E�5 �������̫��wߴ������;�UE�'���EK����F{���� ��O*,Aw��v!���U���QQQ}ޠ�QQSj���( ��޴��㜛QSO��N�$�ǜ�QSO*,Aw�ʲ��)V ��MU�x�d�ŵ?2�ʜQQQx*�����w״Dz��)Vï��UxXN�d�ŵ?��)V��eP&K�^d�ŵ?�R��^ŵ?�P&YN&��U�K���������Dze�QQ^_��� ���4 ��K�R�QQQ�����QV����J̨v������QD��<����P���R������QD������R������QD����=�|�K ��|v���%��� �E���ɫ������xCv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U����ï���栛QQSj���[��ܪ�wǔ��M�x�Z��Jh��v����U�O��u��t�M�xXN���F{�B���O �ȩ�.�wʱ��������v! p���1��O v��%���4 ��E�����X��v!���U���}�ǜ�QSz��s}㜛QS����}$ל�QS ��� ���̩����3.�}뜛QSj����������O�����R��L���O �����v���e���u����RT�Ĵ���O �����ĸ�H��eO'>���<���O*e��@G�eP����uQQTKL�O�����>��e\RT�KL���\������[���"�������@-R�™�B����=��X�=�u�S��G � ��PG � �����C�tC�� �u��RTtC�� �FQTl�ç��ȫ�L��RQT=������ī��� �DG��J��"�9��ìv�QQQD��"��\F]��������@-�u�=�� ɧ�uT���L�-ɬ�i��� �D����@-����G�uQTL�-ɬ� ���C��-ɬ�i�� ɽuQQT���G���-ɬ� ɝQQ-ɬ� �RQQQ�O�������-ɬ� �D����@-OG�����@-� �\\RQQ �\){�"����@-�M�<�M�u�L� �^M��M�<�M�R�QD�I5��Uu�QD�Uu�QD����@-�����@-�RQQQO���ĭ�������@-� ɽuT=��M���O����FQT���L©����"�O�����uQT=���Ȫ���G�G � ��� /�G Ʊ ��\RQT��ɱM��J��"��� ����"X&��"���R������QDM�<� ɧ �R������QD�M� ɧO�����\RQO����`����c�?���R�?�< �W�ȯ��X�Ȫ��eP����O � v���FT�O⵪O��̫���������ľ��0�j�. �E�'�������e�<��FT�O⵪O���c��É�ß��*e�R�������P��@G�������eP_O0�v¸��u��Ļ+�ɪG�秸�����e�<�+@G�ePĪ����*e������k���\){�e�����XR�������P��@G�����eP���çO�v¸���Ouı�󧸪�RQQ�*e���?����O*M2O��\F]O*e缧J֭����o/P����e���ÈO���v»e�Ou��Ļ+�ɪG�移eFQTů�L��H�O*M2O�������e\\){@-�E�/R�O����P��������@-P_�ev»euı��e������O�H���\���E�/\�����G���F]����R�������P���PW�y�� �v¶u����I�b�?���ľ����A����tPĶ��M��P�\`]������R�������P�#��N"���������P_��y�� �v�u��l����P�����\){3�����R�Ҹ�P������B�y�� ��v��u�M��Ȫ�A�N���J����G�������^�������˽��`]cI�����R���'>P��G����P���y�� ��v¶uĸ�H�¨��������M��P��uT�ľ����A��`QQT����������\F�H��N�ۼD��P�Ѳ����˼DK��P���̵5�״���(���G���F]��Z���wʲF�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ��F]�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\���&���JΪ� ��.�P�������ì��%�0�=>���� ����.���R�Qΰ�������ì��%�0�=>���� ����.����9G�������ɬ���� ����.��R�������?�� 9���ì����`)��ϧ�=��){���� �Z��}ͲF���ϧ�/� �)�ϧ�ë�-�)�ϧ�ë�-�������)�ϧ��){��.�R��GI<�LuQ��(���.�^GIGI��D<�L 9���ì���<�L�ˏ��GI<�L�@�Ʊ���uQ����_Į�.�#�<�L��D�O���@�Ʊ���`T�GI��<�L�@�Ʊ�����������uQ����_Į�.�#�<�L�@�Ʊ�����D������������\){��.�U����.��u¾�(���.�P&Z���Z�������. ��.�������.����F����0/�����N"��I�-��ȩŨ��Ʃ�Rľ��0��̫���ȩŨ��Ʃ��YN�W��ί�Ʃ��@N�u�j�̫���ȩŨ��Ʃ���,��P�,�����u�̫���-��ٟ�o- ���������uĴo- �=��XR����W��ί�Ʃ��@N�uQQ�-ȧ��٧����-ȧ�,����ʽuQQڰNë�ëƩuQQQľ���N�������ë�ëƩ`QQQ�=a�EK�O���O'uQQQľ�;�a������EK�O���O'`QQQ� ����A���uQQQľ�A��������A���`QQQح��̫����������"��uQQQľ����������\`�ϧӯ�� �����������ݧ�J��X֧���)��3��ů�L��RľO���D��;�Ků�L��珣�R(�P���ů�L����u�oM������˧�`K;I�L���ɰO�F+](�ᯬ�ɰO�R��+�+��D����J�����+�+O�����>����L���ɰO��J���ɰ����F+](���ɰO�R��+�+��D��J���+O�����>����L���ɰO���F+](�ڭ�ɰO�R��+�+��D���J����+O�����>����L���ɰO���F+](é��:0���ɰO�R�+o���Rz����D��������G��ᯬ�ɰO�Rz����D������G����ɰO�Rz����D�������G��ڭ�ɰO�`+](��L���ɰO�R�+o���R�ů�L���#�𯯳R�> ����:0���ɰO�RD��a+Ҷ�`��� ���G�,����� �R�¸� ���G�,����� ����*P��P��*���� �`��ϧ��� �N2ٷ �|����ϧҧ� �N2�� �|��-��PB���0a�ȯ���� ����W�m������ϧW#�>���ϼ�ϧ���Ϋ>��ϧ�#�>���� ��-��PB�O"�>JƩ���> �������ñì������������#q� ç���"�nO �_��>� �N2訵�ç��9���?ũ��ϧ=�Ʃ2�����4Ʃ�货��#ï��2�G�O��ȩZ��@� ���W��Z��ϧ� ������ B��� �|�m����� ����ϼ�ϧ���ԯ3��ϧ��m2��� �#ï��2���L�B���JƩ����O�����@G�������ψ��PW��Ʃ�ݧ ���� ����?��m2[�N2����ϧ� ç�ô���������²�Q���*�����S��������*���){~g� �N�ٷ �|�y�m�*��>*��F]���*��� �N2�� �N�ٷ �|��J��*�v�����Q���*���� �m�*�R�����Q���*���� ���>*�`{���ïw�v! p�����X�ؾ�� �K( ��v���%��� �E��� ��'��M�ƪ���ïv�a&yJ����֧�NHv�V��%���N��� ���֌!���U���}�ʔ� ��MU�x��_�$���������ֲ�����Jì���%��� �E��� ��'��M�ƪ�x��Mv��_&yJ��ï���˧��J٧Ȫ�ç٧E��2��o������v�_���ƪ������ï�n�R��b�J�b���v��I���;�U����|�\�\�|��´�Ĵ��\��|��«�ȹ«�ܹ겹���J������Ȱ��e�v���eP& �I^������F�ë�ñ�)V����Rij������1 �� �RV,�������RV��ɩ���� X�$��RVG����ɩ��RS�ʧ�ͧ�ק��uVG ��G��RS�ʧ����uQͧ�ק�ͧ��uQק�ߧ�ʧ��uQ��ʧ�ͧ��uQǧ�ާ�ǹ�FR��Rij����GIRV,������ߛ�ϧ�7��RV��ɩ���� X�$��Q�ϧͧ��RVG ����ɩ�P���RVG �P�FR����ëL�Rı�#���[��'KRQQëL��'K�HL ��RQTëL������c�'K�RQQTz��&�B���OD�B��O���D����\)Vȩű����R&0�����RD�M�O3P�RDɱO3P�RDɱ⵩��2���)V'K�R&,Mů�R'K�,Mů�FRDGũR'K�GũRQ�E=����ŧǧʧʝ�E=����ŧʧǧʝ�E=����ŧʧʧǽ�FRD��/�R'K���/$��)V ��@GR¾,Mů�RDGũRD��/��F��7?R�¨X����P�X�������E��R��Z�:�X�MB�E�L �ݧ������P��O3��v��uĪ�E���ɽ��ɹ`����c��Ŵ���,��R�™�H��PH��ľ���c��Ŵ���,��@�FT�O⵪O�:5���o�:���'����ľ®��c�?�n���. ������`cI����,��F]����,�J��e�秱󧻫e�v������R�E��Dŵ?��R����W����H��Oy�Ʃ�P�^��e��D��e��`]����,�JM�����������v������R�E��D���R����W��“�u�QQL¨���'��������ñ�����P��O^���fı���C�˝QQQ��M�O����R���QQTk�#�������T�Z�秩������̵�!���P�GDzeDH����#���\u�QQQ������M�O2M�O��\F]����,�J'>#���PMB���v������R�E��D���R����W��°u�QQ����'��������ñE�/D����P��O^���fľ�f���\R�QQL¨���'��������ñ�����P��O^���fľ�f��˽u�QQQ. ����#����A���HL �Ʃ�P����!���P�H���DzeDGDM�O��\`���]����,�J��2ŵ?�PȺ���E���M���F�� ����ϧM�O�ݧM�,G�� s�#���ݧG�#�����)�32N2��͌!���U���}栛QQS̫��ɴ?�?}״�v�����;�U̫��ɴ <��� <����QQQj���o�źO �?P��ʱ�ëײ��F��ƴ�=��R���6�U�ƴo�����d��N������ƴ?P��P?�u�S��G ���G��ľ��0������� R�������� ������R�������G ��`)]ŵ?������I4U�Ȩu�?+M����ȨFT?+M���6���������V� ��������yƩ�P�Ȩ��tP�Ȩ\R�O��"��Ĵ32��R�QQQy���G���`��Ho2��`�T�������QQ�ȨFQF]�0<����ï ���@��(���uĸ�B� �Jì���%� E�/���0<���E���ï ܩ�FQT�H����ŵ?������I4P&O�0�H����B�Nv����VYN��fQTd��N�D�0<���YN��C����QQV(���(���R����VO��O � Td��N�D�0<���O��O ��������QQV��Ĵb��:�X#X��\F]b��0<����ñB�Nu�L»,�|�b�,�|� ����O�����l���+����|\�uTo2��J�,�|��kR����a�L»,�|G��� ��,�|J���u���O��"�� ���I�u���TL���G��� ��I��u���QTA�� ����Ʃ�ȯgĻ��G��Ƚ�Ho2�Ƚ�\R�����R����,�|\`����ߴO*,A� ���Om�R�¸��ߴO*,A� ��P �u�S�,���޴O*,A�������7O*,A�P���`)�ϧ�a�Py�� Ȫ���Om�Pze����B��W��-"IH����W�N��@��� X����^ze�^�Om�U���ߴO*,A� ���Om�����������cI�� ( ���9��F� ��M����F{"�� ��M��� X�`� ��M���B����F�6�����'>��MR��6�����'>��[��[���b�yR������'>��Ň����'>��ūa�'>�C�v�Cuľyb�[����C\{�;GO4P�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}ߠ�QQSj���B����y�� �$�ʱ�ë油)��j�. �ƫ�ƫ�ƫ�ƫ�YN�P�$�$h��QSj�. �ƫ�ƫ�ƫ�ƫ�YN�P�$�$h�;����JG��QSj�. �ƫ�ƫ�ƫ�ƫ�GO4P�$�$h��QSj�. �ƫ�ƫ�ƫ�ƫ�GO4P�$�$h�;����JG���)V_���ƪ����;GO4��n�R��b�J�b����)V��eP& �I^������F� <>���G����-�R�¸������-�DO��6�U����G���S <>���o����Gu�S <>���Kŵ��Gu�S <>���L���Gu�S <>���'�3�Gu�S <>���'�Ʊ'�3�Gu�S <>���~8�Gu�S <>���~8��Gu�S <>�����ñGu�S <>���o����G�`����GP� <>���o����GRQQQQ�� <>���Kŵ��GR��� <>���L���GR��� <>���'�3�GR��� <>���'�Ʊ'�3�GR��� <>���~8�GR��� <>���~8��GR��� <>�����ñGR��� <>���o����GF�M��H��IH������R��d���?X�MKɱì����u�+O �ç䲺MK��\�ì������`]�IH����IHuı��IHRQQ��ÝO'>��?X�MKɱì���G���\�\){�������e��eu��������ݧNW�X�=��9Hݧ���>�e�vı�eRQT�b�4���+� ���\���ij�G��+=��9H\��Qӯ�� ��Į������� ��-����ݧ�I�_�?�ƪ��Q������G �����PW��P�����IIEZ�2����Q�Y�a� @���Na��ç9�����_�e�������������P��G �����Q�X��P�����I_�����êݧ���O�O�X�B��ů�����P����P�����Q�Y������O'>��P��<"ݧ����ݧ����P�����I��)�OW����M�X�n�RľO���D��;�KOH��#�.ۧKO��b�_����OH�ۏ��RSOW����M�X��BE��ƒC�����OH�ۧ�b�_����tC��uăC��`]KO��u�����`]OH��R��ɧ�u�OH�ۧɧ�`T�ɧ�P�u�+o��L�=�JOH��İ���G��ɽ����G��ƨ�����G���`Q����������ƨFQQ�OH�ۧɧ�P�FQQ�OH�ۧɧ�\F]b�_�ɧƨ�)TL�O���Ī���������ƨ��Q�b�_ɧƨ��Q���ɽ�uT�+o��L�=�Jb�Mİ���G��ɽ����G��ƨ�����G��O����`QQ� ���`]���uċ��`�M��P�8����Z���� F�N�;��Dy���г��5���/����˧8����Z���� ����D�O���J�����DM�M���D����DoG�� ��P�¹u�QQS̫���?������˼DA1U�b�2¹�̫���?�����u�b�4¹��Xu�H��4��X����C��F]������M��R�¹���M��̫���?�����,:����\R�µ�C�¹O�^f��f�yJ�˽��������b�2���u�b�V��P�C`]������b�4���u�b�V��êP�y`]������H��4��P��u�H��V��P�y���`]��������U�P�u�����b�2������b�2�\]������ë���1���uĴë���1İ��b�2��\�ϱ�ϧӯ�� ���������թ�Ʃ���,A���ϧҳ�� �ìPOH�>���ϼϧ������PO��,/��ݧ�O�����I��ݧB������MX�E���ϧ����P�����I�����2����|���eP��ί���I���ݧB�K�ϧ_ί���IȪ��OG �ݧM;��X�Ȫ��@���� �ì��ϧB��ݧE��ݧ'����ݧA���ݧ� @��ݧ��G ���# ������#����ϧE�� ����ί���I���B������PB���:�ί���I���ϧ���5�2B���#��# ��B����=�X�o������ϼϧ�ů>�E�� ����<"��P�������<"#����M;�K2M�����E�� ���# G�/��0��P���ί���I���ϼϧ��ا�����W��ا�Χ����V����J�Χ�βݧ�W�����֧�W�������Y������Y�����ݧ��X����Χ���ϧ�������ݧ������������֧��֧��������ڧ��ا�W��������Χ�����������������Yݼϧ������Χ����ҧ�����������������ا�����������������ִ����ڧ��V��֧����ԧ��ؼϧ������Χ�������Y����֧������Χ�ا�����ا�������Y������ݧ������Χ���������ϧ���������Yݧ�W���������������������������ݧ���֧���������W���ݧ������������ݼϧ��֧������������������W�����ا�����W��ا�����ا��ا����������������Χ��ϧ��ا�����W��ش)������n�R��RS��̫����������M���H�ZR�u��M�X����uTM��P�FQTO���FQQϧ��ƧW�����6���ͧ_��n�ݧ�_��O RT�����Ķ��O���>�噴n帯���噴O `QT�Ī�����d���m2��\F�d�A����R��4�����Ȩ���� ��?�H�u�S4����P�Ȩu�S��G ���G ��u�Sd�A���o����o���u�Sd�A����ʼn��u�Sd�A���o����o�����H��?� ���1KGM��u�������!������o������FQTH+H��?DKGM�^B�3�O �KGM���R��V�JLA�����'�?���E�v��VA��&� �# �R���QV�1&ì��G�J����O���\��1��\���1�������\){��<���� ( �U&Ʃ�UA�f[�?���u�L�&Ʃ�UïGy�˧�o������RQQQW����� ( �P�G ���� ��?P�ݲ�Q�A�yDy�RQQQ�K ���f!� ���CRQQQ�A�f�C��źb�A�A�C�Q�K ���yDy��źb� ���K ���C�Q� ( �Pĸźb�� ( ��*���A�A�C�uTH��?G����L�WJ�A�yJK ���yJ���[���TG�Jì��%�ïGyJ�MKɴì���K ��+K ���f��v��QJA+A�f���+���[��B�[���Tol# ( �PW����� ( �U�K��LA�����@G��'�?����\����;GO4���ƨ�űGR��;GO4���ƨ�ʼn�u�S��G���u�S��̫���������������J������K��:��ŲF{�����*e����e�����`]KL�O�����>�»euĪ���ɪGP�eFQT��H��OZaĻe�H⧻e��uQT���KL*e��\F]c���*�ɬs����Gu�L�ūH��*e�b�IN��e�����*e�uTKL�O�����>�ūH��*eFQT����GFQTKL�O�����>�ūH����e\)��*�ɬsP�� çc���*�ɬsF]G��ƨ�ű��N�GR�GXJ9��N��ƨ�ŧ��vTȪ���N����6��ŧ�����uQT�P�MG��"��Ň���\`���<ů��n��=��XR��RS(�P�uS��<ů��n��o�����b�o����S��<ů��n��?��Ȫ*O��ŊS��<ů��n���Ŵ=��=�uS�N��<��O�.�NK����8��I����@�����@���.�NK��S�N��<��O�.�NK���n�O�� /���.�NK��S�N��<��ORQ�<��ORQ�� Kŵ��M����I���#�Ȫ�=��L>�����o����(��XF]=��L>�u�L��b�o����o����(���<ů�=�DL>���uT��������ϧ]���o����L>�RQV�I�RQTƩ�ȯgľt��\`]�@���.�NK��N��L��R����@����NK���PN��L2�]������骨��L���H�<���N��L��v�u�L��b�o�����X���<ů�=�D�@��DN��L���uT���L�N��L2ľt���uQT����N��L2������\){GI�uĪ��@���.�NK��N��L��FQT<��O�H��o����RQQ&L>�=��L>��D.�NK��RQQ���#���RQQ^� /�İ /���.�NK�^GO4D��˝Q�ϧ�@���=���e�RQQV�@���.�NK��@���.�NK��R���Q&��J��I�=����<ů����<ů��=�v���QD��!�?�˽��\�������ȩ�R��z��s�ëL��ëL�u�Sj�ì��ƪ��H�Z��ƪ�u�S�����ȩŴ ��.���S�����n��@����c���Ԫ����c���~g�W��R�ȩ�H�Z���)Q�Ԫ����c)TM���P��i�uT���#�i�Dȩŧ��`R�GI��P��i�uTL�0�Qb�_��i��o���D0�������ʝQQG����ƪ������H�Z��^0�0��˽uQT��.ۧȩ�H�Z���#B���`QQT� /��W�Ԫi5����ì��%�=9�ïG��+0��`QQQ��i�`R�G���#�i�uTL�G����KO��ȩ�H�Z�uQTG�������i�\){ȩűH�ZR�o������u�L��,��o�Ļ��u��QQ��O�u��QQQ�����O�D �^������\�uT���W��:�k�ëL��.��,��o�.�\`�ϧӯ�� �����ק��2�ݧٶ���M���C��o��������ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ�ϧì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ϧ������ؾ���[Z���_�����d�������ë���O����]�j�����/�ŵ?����w�v! p��ҧ ��_Bf_ŵ?�X�ٷ��/v���%��� �E������/�����/v�a&yJҰ �ί���I�Na����hv�V��%���ȴ. �� �������رhv�V��G ��DO0�R!���U�;��I���6��L��E��ɴn�$ߴʫ��QQ���E��ɺE��ɴn�$ߠ�QQS�Ƹ�ȶ�dw���ה��t�M�xXN���R����5��^����Ʃ�����������F�ϧ쵶 �PW#N�X������ ��P�M������� �R��d�ì���YN��PYN�u�SH �ȞPu�SH �ȴW�P��P*����u�S��[��̨�̨���,A�o/R�u�*���+W�����-�RQ��O��׸����ʸ���߸��ݰO��׸����ʸ��vVE��������U�ǧ�V��U�*���+H�I��J�N��QQQ��:�����*���+�����ɬ���QQQ�� �*���+�����ɬ���QQT*���+H�I��JЭ����L���QQQ���ٺ��W���E����P�ʽJЯ����W����E����P�ʝQQQ�����Q���E����P�ʽJ麷�QT���E����P�ʽuV]��������ů8���`]H�O0�„�u�L�RQQQ� �3�M�QQT����ů�DHL ������QK( ���M����E����P��D�P��D���<�@-����,��@-�����QH��BQQT��B����N���Q9�"���BQT��B���ӫ�"���Qo/*���+W�����-�R��� �ì��O��׸��ݰO�v�����UR��Q�����G�-ȧ̫���?���`��QQ��V���QQTb#DZ����R��Q��H��C�QQTb#D�C�Q�R��Q�� �3#�>�Q� �3�M�����QQ�R��Q��W���.�N���K( ���M������R��Q�H��BQQ*���+-ɬ�@-���QQJ9�"���B���uı�RT��,AD<�LJ��0�������R�QVo/�o/R�QVO��ܫ�L种R�QV�;�a��C�FQQ�� ��RQ��ï��\){�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������汿�����Ŝ�QSd�ƫ�ƫw�����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7望QS��êOJ�㠛QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{�L����whv! p��ԩ�૨çҭ,�.��2� �� �|��_�=�s�p���)V�&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)Vc����bP�&� ����� ����)V�������P��O ²��X����ͷ���X����ͷ��H�Z��)VK��U���}ޠ�QQSj���( ��޴��ʲ��)V��eP&G^K��U�E�L �����wޱ�������ֲ����)V ����U�x��w뱭��Dz��)Vd�ŵ?2&ŵ?��R�QS&f�Gv�QQV��U�����M�G��QDze�^���BJ� �� @���+G��L�̨v���D_d��L�����G����-�R���D��<����P�����R�QQ^f��1��Gv�QQV��U�����M�G��QDze�^���BJ� �� @���+G��L�̨v���D_d��L�����G����-�R���D����J�bv���D�bD�1�̨R���D��<����P����˹˽{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿��K��ޜ�QSd�ƫ�ƫw�����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7望QS��êOJ�㠛QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F�E��O3�ȩű.��GR�™�G���u�SE��O3����(,�����(,�u�SE��O3�ȩű.����u�SE��G�I���,�zN��PzN�u�S ���'�ƴO� ��P'�Ɵ�H�Z�G���i�u�zN����i���RD���(,����RDȩű.�zN��XR�Q-ȱȩű.��QQQ����(,��\){G���i�uı�H�Z�G���i���zN��GI�\)�K�.�� ��i�u�b� �ȩű.�#�i�\){G�G��:������RĪP����R���.�� G���i���'�ƺO� �bJ��\RQQQ����\�����c�?�G�����,ƩRľ���c�����,ƩFT��C̩��ȩ��`]����������ĺ�ǧʽl�ç��"��\)Ļ �����,�ȯ�ƨvī���,����"����������DW"�������oMP&fM��D��fM��D���#X��`���<ů��n��'K�������L�HI��R��RS��<ů��n��o�����b�o����o��C�S��<ů��n��?�ì����b�̨���B����G ������o���b�o���D��<ů�'K�P�����L�HI��`{�N�0M��%���ȴ����L.���E���B�HI�ú�DzF{�o���s��o��C�o���`]���W��O����O����u�ı�b�_O���¾�����D�H����QQ�,�/�RQQD���FQ�<�L�O����FQ�@�ƧO������F]�������ñ���⧶u�L�� G��N�0M�����B����G ��R���QQQ&ƩľƩo����D����ɧo�������QD�������D����ê�ò˽�uTb�̨�� \){����HI��R�������HI�ç��`T�⧶u��W��O����RQQT������ñ��⧶�D���\F� ������'��GRľ ������'�RQQS ��������������IH�\){�Ia»euı���������e��b��RQ�Q�IH��`��=� ��:�Rľz��s�n�RQQQ�=�'K�����FT�O⵪O�=����Ȩ����������u�S�����O�0�a��PO�0�H�� ��:�� R����J�¹Jੳ=ݧ�W����۲FT���J�̨¹O�0�H�̨^A���ੳ=ݧ�W����۲�`T���J���¹O�0�H�̨���G������ ��\FT���J��ź��� ��� �O�0�H�̨������ b����E�/��� \FT���J���,�¹O�0�H�̨���G������ �,ȧ�\FT���J���,Ⱥ��� ��� �O�0�H�̨������ �,�b����E�/��� \�QR����J�W��-¹�����OJ�:��ì��&A�� b*����-���\)&^K��U�d�G � �$7㜛�Sj���B���� �$޴㜛�SO��wʜ��S���(���$望�S��4ï�}��QQV ��MU�x���G}�ޜ�QQx �wDZ�������֜�QQx�;��IP�$��ǜ�QQx��� /}ǜ�QQx� ��wߠ�QQQx�d�ŵ?2�$���QQx������$͜�QQx���M��w޴ǔQQVO ����P&��B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼��,���8��B=�� �8�R��:o>5N"���PW��������Χ��9ŵ�I� �v�¿,���8��B=�� �?������8��O���Jì��%���ȴ���������ͺ�ͱ8����/�ɱ���`{�8�PİO���Jì��%���ȴ������ʺ�Ǻ8��(�`]�8���8�J�����`]�8������8�J�����`{�8���� ����ڻ8�P�� ����ڻ�`]�8���ӳ�8�P�ӳ��`{�8���� ӳ�ڻ8�P�� ӳ�ڻ�`]�8�����ũ�8�P���ũ��`{�8���E�|8�P�E�|�`{�8�����驻M����8�P���驻M�����`{�8���,���8�P�,����`{�8��!:�_�8�P��:�M�`��,���8��B=�� ����R��:o>5N"���PW�� @�ç������9ŵ�I��v�¿,���8��B=�� �?����`){���2��İO���Jì��%�� @�÷�[��E��]�[�H��`]�������H�İ�2���H��`{������MƩ���HT��2��MƩ���H��`{������e��HQT��2��e��H��`{�����驰Ol����Hİ�2�驰Ol����H��`]�����o �?QT��2�o �?�`{������,�ÛQ��2��,�ò`���������e�4İ�2��e�4��`{������e�������2��e������`{�����A������İ�2�A��������`{�������ܩٶ��Pİ�2���ܩٶ����`{����!�ȶm������2���ȶm���Բ`){����K��QQT�O���Jì��%�� @�÷�[��E��]�B=������K���`]����K��쯳K�QQQ���K�J쯳K��`]����K��ë��OQQ���K�Jë��O��`{����K�!�������O���K�J]�����O��`{����K���IN�쯳K����K�J�IN�쯳K��`{����K��M쯳K�QQ���K�JM쯳K��`{����K��M�OQQT���K�JM�O��`�ϧì���%��� �E���ö:�����xXN��=źG��L������������δ���&^ ��MU�x��� /}�͔QQVK��U����w�͜��Sd����J������ؔQQV��HPѲd����²�������d�����M����˼{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿�޻������QSd�ƫ�ƫw7߱$ߴDzD��;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQ��êOJ�נ�QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴����;�UE�'���EK�����D ��MU�x��C���望���x���:wʱ����������������������㲹��R�QD���c���^�������U���X��׿����F�̫��( ����������N��������GR��d��GDO��6�U]G��PGX�����G���S̫��( ����������N��������P�����`N��L�o��L�� /�F]zI���ɰ� ��ݧ̨�G ��u��+�t�̨�G ��FT�P��ɰ� �2ĩ������ ������+����\F]G���� �R�L�̨�G ��J��� ������Ľ���vQQQ�ɰ� �2��I����֧���\�G쵶 ��\������ ������ϲuTzI�ۧ�ɰ� �2̨�G ��\){G�����R�L�̨�G ��J�I����֧��G�������\�t���\��vQQQ�ɰ� �2��I����֧���\�G�����\������ϲuTzI�ۧ�ɰ� �2̨�G ��\){G��ŇR�L�̨�G ��J�I����֧��G�Ň���G�������\�t���\���vQQQ�ɰ� �2��I����֧���\�G�Ň�\�����\�G�����\�������ϲuTzI�ۧ�ɰ� �2̨�G ��\){G��B����R�L�̨�G ��J�I����֧��G쵶 ������ �Ľ���ϧ���ִG쵶 ���B�����G�B����쵶 ������ �Ľ����vQQQ�ɰ� �2��I����֧���\�G쵶 ��\������ ����������ִG쵶 ���B������\�G�B����쵶 ��\������ ������ϲuTzI�ۧ�ɰ� �2̨�G ��\��G�O������WR��RSG�O���@Ŵ���]��]����������=�_��=�M�F{����=��J�=���F{����O��i�J�O��i��F{���ůJ��ů�F]����� �3������ �3�F{����@G��� J��� ��y�F{���������� ��y���ey�F]���#q��MK�J�G����F{���#q��6�G����MK�J�6���F{�����MK�#q��MK�J��y�F]���#q�MK�J��G����C�F{������.�#q����.�����.��C�F{���#"-���.�J�(N���(N��C�F]���#q��L#q��KL�F{���#q�����G���������F]���#q��#q��[��F))��xXN���Ư���Rľ�xXN�n���O3����QQS��o�Ŵ̫���?P��»e�����Ư����U��u�. olWK��@G�ePĻe�����J��Ư����u���ϧ����POH�PxXN�n����I�R���L°��M�X���M���P�xXN�n��u���QQO3��Ĵb�Ũ�����R�����QT�e�K�J���d�\�u��QTW2¾��Dze�D� ����QQT�̧�\\){��Ư��U��u�ϧ���ھ�=����K�P�ë>�Z���o���O0�MW�R�ϧ_�����I���Ƨ�����MB���ƯP��O ����RF� ����ƩN��R�쯭�I�P��PB���N���v��d�ì���YN��PYN���®�êO�P̨������ �������R��%�.��ƩN�����ʺ��+�F]0GR����֧B���N��ڴv�E�L �����f� �ƩO� ��)TL»M�������RQQG������������f����+E�L ���)TYN��0G��M�������R�QQ^�1�̨��N��G ���O� ���V����I4P�J.��Ʃ�� �Ʃ�R�QQV���Ʃ��#�6�������I����P��N������çȪ�O*,A]����J��uĭ��������������E���J�E�+���&Ʃ�U��u����QQ^Ʃ�U�?���R����QQD����I4��Rĭ���������E�P����?���O3�J�O3������E�����.�������vѨ�D��R�=l��R�L�=l������=l�D���uT����������O3#��=l��\){��&�P��Rĭ�����������ƶ�ȶ�����B����u�úH��B�N�����`]H����H6����u�H6����H��o����D�O���J��`{�5�ìȩűH�Z�ᪿìȩ�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ� @���:�Mv�V��%��������������،!���U���}�ʔ�_5�ìȩűH�Z�n�R���U��������E�'���u�̫�����U����E�'��̫����F�����êG����ëL�R��z��s�n�O���֧] ��Sz��s��O����*���� ��S ����C�L�I��]����P�O���������P�,����������S�����n�O�ì����S���������O�M;�K��PM;�K����S�-��C�L�I�O��,����"�����S ����C�L�I��Om2�O��,��Om���SN����n�O�N�����'�/��bR�!���.�RQS���J�=�s�p�ëP��ũN�ze�ۜ��J ��a��vQQ��Jx��������Q_�8�B#�ze����F]�m�X�����R�ì��R�ì��RS�3RQ�A^��IH���߲�uQ�A^yJ����0��v�QDo/J�C�K����CݧM�<�(��Dz�uQM;�K����N�DK��J�������������M�����uS��1�RQ�'�/��bRQM;�K��P�����ȴ�IH����E���+�IH��޴�M�̨�FQQM;�K��P��+.��̨����`){�P R����J�¹�m�X�����FT���J��ů¹�m�X�����FQRĚ J��FT���*��J�쯵�`]��R�L�ëL��,�������P�� #���������uT��N�DK����ëL���,����"��P�,��Om���ëL�\�{���ɮ��������$�ʱ��������v! p���/�3�O��L�[�G�O�v���%��� �E���O�=�ƺ�����v�a&yJ� @���:�Mv�V��%�������!���U���}�ǜ�QSj���[��EK�wʜ�QSj���B����Yw7ל�QSj�ů����9GL�Ů���̸���}����QS��ɮ�����O �>wʜ�QS��ɮ�����bw�ʱ�������֜Q�S��� �״望QS����w״ǔ�_������B��F{��ó�(�O�.�w�״�v! p��ҧ�J�����٧�O����P(�OP����P���� �M��2��ԧ�4 �v�a&yJ���v�V���%���N��� ���֌!���U���}�$ʜ�QSj���[��̨w7뜛QSd�ì���@w�ʲ��ϧd�ì���@#��0��P�����@�ì���ƪ���d�ì����Qd�}뜛QSì���ƪ�7����QS�L��,����-ȱO@�I�$ǔ�_�ó�(�O�.��n�R���eP& �I^������R� ��MU�x�Ƶw�放 �I�yJH�Z��Iv�Ƶ^.��yJ�ó�(�O�.�v�DM;�K*eU��b�-�O@��QQV�"���� ��Jȩ��̫����̫����N��-�O@��-�O@���I���I��b�H�Z��I��F{�,?ȫ��� N����,��Xwͱ��������v! p����� �|�����,?ȫ� N2��,��Xv���%��� �E��ൿ�Яȩ���,?ȫ��� N����,��Xv�a&yJկ�?���� @���Na�hv�V���%���ȴ'�?���N��κ��Ժh��!���U���}��ʱ�ë�딾 ��MUµ�[��O3Awʔ�O0��q� ²OL�H�&���%�;��I��O0�v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP�ˊ���eP&K�^K��U���G����w��ʲ����R�'�Ʃ���ñ��G��R�OL�H���U²�������E�������QQ��ë����Z���xXN�OL�H�ŵ���Z���OL�H��QQ���[��O3A��QQ�����E������QQ������������������QQ�K ����QQ��ë����Z���xX���OL�H�ŵ���Z����QQ���[��O3A��QQ�����E������QQ������ò��F{�H�O�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B�����O w7望QSd��G�R�L­��ŵ?2�²�������u��S��ź�����u��S����������湹�uT���P��J����ĭ�O���>��D��\RT���P��J�ź�ĭ�O���>��D��^����\RT���P��J���㺻ĭ�O���>��D��^��\`N��L�o��L�� /�F�H�ۧ�M�Y*���Ĭ�����G�`]A1���O0�¾d��G�]����N������G�u·uĪ������"���秷FQTH�����ɪ��1�+�"���FQTH�����ɪ��1�+�"���\�{����� ���;���}7��v�VK( �����ç��,��X�������������Ч�N�<����,��XR�����i���� �|�2_�=�s��R���Ωì��%��4��êO��������� ����ôì��v�VK��U���}栛��������A ��B�w$Dz�Q�R���=9�*ew$ל��QQS�����Jh�ʱ�ë͜��QQSj���[��̨w攛V_;��ôn�F�;�̯��������R��H�A���IH���IH�u�S��G ����u�S ���?�O�0�a�O�o/����O�0�H��Sz��s�O�0�a�O��NK,�L��SN����n�O�N���S;�̯����'K����c��cu�S;�̯����'K�������`�IH��H������T��̫���������  �`]����NK,�L֩� �� �I4�u�NK,�LR�O�PO� �uT�/�����RQT��������I4�R���Ʃ�ȯg�+O � 䲴ì����HL �����J <>v��!��N�DK���QVH��L��oɬR��Ī��L�o�ľH��L��o�O� ��u��Q�ϧٻ�ȩ�O���M�C�#�>N���|WR��Q�ϧ��4 �X�'�ƧO� ���ݧNR��Q�ϧ�b�ɬ�ç�������ɪGR��TĴb�ɬ�çoɬ���Ql�çٳL�ҭ��|��"��oɬ\R���ϧ���X�ؾ����=�X�@-�ȫ�P�� ��ŧ��>�����-"I�R���� ���cPľ�cPāc�� ���cPʧ��`��V��;�����P����ī����D����=�����������������\���QQQ����;���\RQQT�IH��O*eG��� �`�O�0�H��ɬ�ì��ϧ��IH����߲\){O� ��I4����NK,�L֩� ���� �I4�`���.���H�ZR�™�̫��������u�Sz��s�n�O���֧] ��Sz��s��O�� ��Sz��s�ëL���.���S ���?�O�0�a�O�O��O ��S ���?�ì���O�0�a�O�D�u�S ����C�L�I��Om2�O��,��Om���Sj�ì��ƪ��H�Z�­���H�Z��S��.���MKɥ�MKɱ������� � RĚ J�&��� @���FQϧ���X�ؾ�ů���dP�?����COZaX����çȩRϧ9B��N�������RĚ J�� @�&��� @���FT� J�d�̨&��d�̨��FT���J��uQϧ�aĚ��O�0�a�MKɴì�����B#>�MKɴì������;���RT���ƧMKɱ�����o/�����ɬ�ì���\F]G��R�&Ʃ�Uì���ƪ��� ��u��ì���ƪ�RTì���ƪ�`Q��F]GI�R� ɧ�&Ʃ�U0�Om2Om�����ˊ�L�ëL�o����娫.���H�Z� R��Om2��,��Om2&���P�H�Om������`�0���/������0������`�ì���ƪĭ���H�Z�ëL�^0�0��̯M种˽uT� /����<���ȩ�#Z��0��0��FQQ&ì���ƪì���ƪ��`����7���R�쵶 �PB�������Y���X��ƨv�™�[��ɷ��ɷ�u�S��̫������»e��ľ��0�̫��ɴ�����4 ���ҵ�����i�`]�e�������L��R���L������������_Ho�PW���>�������ev»eu��#�ì��%�G ƯZ�=ȴE��� �+������ߺï�����b������*e��B��� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7ǜ�QSA�L�$�㜛QS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź��v������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱũͲ����F�ۺ���M�N��ů��)�H��N��R���P�ѲL���������P�Ѳì���� �!���P��ϧ�H���R���3�ƺů���dP�޴��ʱǜ�QQ3�ƺů���Om2�$״ǜ�QQK,N�ů���Lw״͜�QQ�����ů���ì��w޴ʱ�������ֲ�)��QϧҰ��K���R�����( ��޴��ʜ�QQj�:d+:}$ʱ�ë�߱�������ֲ�)��Qϧ��K���R���K�98P�$h�߲��F�Ʊ�����R0�^��:�-ɬ�ƫ�ū��'vQQDZ��wʱ�������ֲ�FO⵪O���3�ƴů���dP�O�d��QQQ���3�ƴů���Om2�O�Om��QQQ���K,N�ů���L��L�QQQ��°����ů���ì����H�>��F]�Ƨ���R�u�zRT���FQT�����FQTOm2��̨m2�ƫ�ū��.�����FQTLFQTdP�������R����<����P���R��ze������^K�98P���FQTH�>D���J�b�\��R�™�B����y�� ��O �O u�S���ƥ�6��ɰ�����S���� /�°� /��S��G�G��"��!��4R�y�� �R��l��n��R��l��ŵ?<��R��l��. �>�tC��R��l����Ũ��ë�-��R��l��'�3�CN<���R��l��'�3����R��l��'�3���"���R��l��'�3��ũ��F]����G��R�u�. G�����GP�y�� �){����G�R����uĪ�0��E�/��`QT�M�X�y�� �uQTO �O�O��D����������G��`QTO �O�O��D����������G��\){ �R�Ҩ�������� N��� /��I��/�v��#X�u�=��X�� /��RT. � /�G ���\)��O⵪O���l��P����ϛQ��l��o���P�����ϛQ��l��'�3���������ϛQ��l��ŵ?<��F�O⵪O���d��ŵ?��.���uQQQ���d�������@,���F���I����d�������@,�+�d���O3��R�QQQ�����ɺ������ĵ�ůɴ=9L+���\)İ /���?�X�����FL�GI���i������֪A�u�źŵ?�RźM�P�����G�FQ^_��ůɴG����-�RV���BJ��G��̨vV����J�vV�IL��ŵ?2�RV��<����P���RV���������_D��( ���RV����������D��( ���RV�bD�1�̨RVZůH����FT� /����������س.H�ĺ���i������֪A�#����ǩ��JHo���`�M��P�MG��ƪ�� ��F]@G� �?�PM�Ʃ���o����)TL� ����ç�?��R��QQQ&4�4�R��QQT�ƺb� ^��-�����4�4˧M�Ʃ���o���FR��QQV��HR��QQT�ƺb� �M�Ʃ���o���`��?O�� ����HL �Ʃ�P��f�yDN�0M���� �uT� /��ԪG� �FQT���L��?O�� \){@G��fM�Ʃ���o���u�L�Īƺb���fM�Ʃ���o����Q�?O���HL �Ʃ�P¾f�yD�ñf�6������R�����D <���D6����R�����D �E�'�*?�P�N�0M���uT� /��ԪG�Ȫ�CCFQT���L��?O���FQT� /���?�PW���FQT���L��?��`QT� /���O� �W���FQT���L��O� \F�K�K'���@����c��=��XR���N��<��O��M�����=�����R©��@����cu�L��Ʊy�󧩅R��QV�ɴn���Ʊ�R��QV�ɺy�uT��H����󧩅R��D�ɴn��O�����R��D��R���lDL�>���QQ�DA�����uQTM����ƱyJ=��X#��|��\R��F]�=��9���R&@����c�������ç=������F]3��=��XR�Ҹ�P=��X����B����P�����ôv�̯ŧ��uĪ��L�NĻ��G�?�������ɺy�����ƽ�l���̯�\uT��[̯�D@����cPo�^@����c��Ƨ��R�����@����c�9��P��=��9����\�����d���n�Rľ�C̩��ȩ��FT�¬��d�n��`� �P��ů��6����4��vQQ� ���ȫ�PGI��v�Q���O������6����4�`���D ����Q�O�N�� ������Dɧ��ʧ˝� ������6����4�\)Ļ �P��ů��Ʃ�'>�v�QT� � ��#ï��2��.�BD�v�Q� ����4�ǽ���D��� ���Mv�QƩ�'>��Ʃ�'>��6����4�\���k`� �P��ů��0��L�'>��vQQ� ��ï��2���B#��v�QE�/0��L�'>P�6����4�\������ ��ï��2��������G�'>v�QE�/0��L�'>P�4�ǽ�����`�� ����N��?�F]�����_�[����u�L°O������G��ÝQƩij�G��ýuT����O���RQT��[��_[���O��ɧ�����Ʃ��ĸ����[��Ʃ�\F]=��d�uĴ=���+o��Ld���P�\){�:�_µ��u�L�O-ȧ�+����ɰJ�ì�����\�\��\�\��\�\������\�\�������\�\����������\�\�����|꽲�Q��PĴ�ɩ��O�����uT����P�b���P�\F����'-�����Ȩ�=�MR�·��'-��zN���E�'��P�u�S���'-��.��o��L���/�� u�SO��N��P�������B�U�ۧ[��;�H*�u�!��R�M��Ŭ��Ŭ��� �������^����� ���v���QQQDW�J=�Mv���QQQDt��ԯ�Mv���QQQD�Y�Ƨ�ĸ���O�驻����������T�� ���ԯ�_�[�\˹���B��Ŭ��Ŭ���������^�Y�Ƨ��;�H*���Jӫ�"����F]��������U[�u¾W�^f�=�M���ɬ�M�J�H�y�yJ�/������y[���u����ȯ8�M�JЫȯ8���ȯg��/��������ȯ8[�����F]=�M*����ۧ;�H*�uĭ�Ȫ�L�[���:��˽uS��'�Jԯ�M»����P[���B�P�ۧ[��;�H*���;�H*��`�ȩŴzN�������ï�H�R�™�G ���G�u�S:�-���P:DO��6�U]����S:��:��:�������ï�H���R��r�K/R�CN��P���uS��ľf�������r����R�����uS�f�yD������ŇR�O��uTL�&Ʃ�Ufy�������r��P���QQ�O��� ��O�+3+�|O�+O'+�|O�+�+��r����P&t�C�RQQTo��������,���J�JD�J��TG��O y��O��� J�\`]#��ï�H����r� q��ï�H���^Ʃ���C�`]�����ï�H�R�ŇRĄ��HL �2��P�uTL�fĴ����b�����QQ&Ʃ�UHL *���r��P���uQT�HL *�RQQTHL *¾�C�\RT��O�驻����`R�O��uTL�&Ʃ�U�� ��r��P���uQT�r������P&;��4�����ï�H��QQT�rHL ���P&�ë���Ĵ���HL �2�êP���R��W�� u�T����ï�H����#\\F]#��ï�H�r� q��ï�H�`�E��O3�H�ZRľ�N�;�FT�O⵪OE��O3���P��P���u�SE��O3�(,���P(,��u�S ���?�O�0�a��PO�0�Hu�S ����C�L�I���I4P�O��,���I4���Sz��s�n��u�Sz��s���P�u�S����������Pð������O�0�a�[�����&���#�����FQD3PѲ�/������. ������D�1İ��G��[���F��] � RĮ����J�¹ð�ì���R�QQQ�3u�QQQ��1�R��¾M��êG����&�����CK���u���ð�M;�K��P��+ze��M�̨���`T�����J�ų���¹J�FT��o���.�����uT�����J�����uQT����O�0�a�>�����HL �Ʃ�P��f�yD�������QQ��+@G\FQT�����J�E�+���¨�uQT���#�+@GR��:ύu������f����QQQ����QQQ#\R�#6.������ñE��@GR������O�0�H`QT�����J�E���y�yuQTG�Jੳ=�E�y\R���� J��`]���,���I4P `�E���EK���:�ů�ƴo- �b<���GI�R��E���EK���:�P�u�SE���EK���:�o- ���u�SE���EK���:���e����`�ϧ6�X��������G�O���Z���]O���Z�� ����� ��u&������&�� ����� ���� �f���� �<�LD��� �� "�˹�R&�� ����� ^��� �fQ��R��QD��� �<�LJ�E<������v��QD��� �� "����������F]��IH�Rİ��IL�����H�RQ&���N�QQ^���O3�QQQ����O3R�����Q����IL��O3R�����Q�����N�CN��O3R�����Q��N�� �ï�K��O3u������ �ï�K���O��� ��Ѳ���RQD����������������RQD��� ��MUİ��o- � ��_&����O��i��� ����� ˝�QQ����ëL�� ��MR����O� ��9�� ��MR�QQQQ�� �� ��M��`E�|RİIH������� ����� �`�K'�ȩ�R�™��� /�Q�°� /��S����/�ȩśQQ�ȩ�u�S ���?�O�0�aQQV�P ���?����ï�O� �R�خï �O� � �P�#X�v�O� �u� ���?�O�0�a�Ȫ���G��� /�O� �\F]�MR��^�PI���u�ȩź����ï�O� I��`����YN��?F]���+����F��ϱ�������������������������������������������������������������������������������ϧ�<��쵶 ����ϱ�����������������������������������������������������������������������������){=�R�ԯ���=�s�X�v�Xu��+o��L�=����G��X\){̨�=�R�ԯ���J����p�X�v�Xu��+o��L�=��X`]��f�u��O������v�u�. �R#R�RT���uQT���ɧ�\ʝT�B�XŪ��������,��:��+�ý��ʽ���Q�`QQ��������ʱ���ʱ���ʱ���ʱ�����������ʲ\)�ϱ�������������������������������������������������������������������������������ϧ��J��X��ϱ�����������������������������������������������������������������������������){�]������̫ɱ���P�R�o/����. ��̨ϧ��IH������v�9���R!�����̨v�����=�J���ھ̫ɧ��ë@�����F��ϧ���ھ�O�B�����PëP��M��������#��"���� �]���̫������R�L¯����d���P�A��]������̫ɱ���P������uT��̫ɧꧯ����\��ïE���N�M��N<< R�ϧ���اB��BE�P�������ݧ��0������ ����R�ϧy�������A1�R�ϧ�a���_�P�P�O�X�B�yR�®ïE���N�M��zN�P�O��/���NK,�LR�������Ҭ�ƫ�L�� ��:���`){~g𵶶�f�� �ɧ�u�/���R�<����uTL¨� ��� ����QQ������b#� J���uQT�H�� J����$�ǧ�������\FQR�NK,�LR�O�PG���uT�3���?2G��ľ�� ���\)QҬ�ƫ�LR������� /�����Ȳ`R� ��:�R�G������� /��GX�\��ɫ�M��R�ª���/�ɫ�ɫu�S����/�ȩʼnȩ�u�S��̫���̸Ů���u�Q��̫���̸Ů�M�����ϧN�s��K���M�){"��P�ɫ�[��J���&3.�J��!�ūa�A�������`{#���^[������F�⳺Ȫ�o- �#���RĨ⳺6����LDX�R��S�yD�I��I�`ɫ���� ���⳺Ȫ�o- �#���R�⳺MH���~8P�XP&yJ���"��\){O3uĨ⳺Ȫ�o- �#���RT�⳺Ȫ����O����P�U�HL �y����X���y���G�Ȩ\`���ϧҧȩŧM�� �]ëL�O�u&�����RD3PѲ�/������ɬ� �M�D�1�O3��F�ȩźGI��XëL��&K��^��HPѲG��²Ȫ���e�K���!���G���R!���U���B����y�� �$7�ǜ�QSp ��w״放��U�K��u�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���l+�=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�����;�Uj���B����O3���˼D�^K��U���}ߴʱ��ײ��˼D�N�ü!��R&_���ƪ�����N���ƨRD�������P��O ¹˹˼&K��^��HPѲG��²Ȫ���e�K���!���G���R!���U�E��5���+5���̯H����״��ǔ�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�wנ�x�����N�$��ʲ��˼D�^K��U���}޴ʲ���˼�� Ƭ����G����?�GRľ��0��� Ƭ����G���������ľ��0��� Ƭ����G����?P�<���ľ��0��E��-��@ɴ��,q�O��0-/�� Ư������ľ�� Ƭ����G����?�ľ™�G�FF]G�G�-ȱ��,q� ���0-/��� Ư��R�L©ɰ� ���M�t�����RQQQ�ɰ� ���O� ���RQQQ�ɰ� ���"?X���ɰ� ���M�t�͝Qo�A���;�̵ ���G�� s�<�+O3驻��������`�Q�������������Z��������������Y�������V�ԧ�ɰ� ���M�tR��������������Z��������������Y�����Χ�ɰ� ���O� R��������������Z��������������Y�������V������������ɰ� ���"?X˝QH�ZU�ů��H�Z�Q�ŪI��0���RQQQ��,q�<�+-�ӵ,q�o�#ZPIŪI��0���QOı󧮵,q��b�Z��Ʃ���@N�b���Я@����uT�PĴ��������L�����0-/�� Ư����Ĵbӳ��O�\RT�P���b�H�L��֪A�PO����ɰ� ���M�t���RT�P���b�O����ɰ� ���O� ���RT�P���bի�����/t�O����ɰ� ���"?X���RT�P���b�L��֪A�PO�ʧʽ��ɰ� ���"?X`QFF����>�?������L���R���6�Ud��n��������6�P�O�������=������d��n��������������°ۧ�ë�ۧ;�H۹��"��.P����L���F]"�����.����F]"������ ̨��d��.���.�����2�Ʃ�ȯ8�ܩ�Ʃ�P��`]"�]����������P&"/^���״������R����V�������������R���D������2ľ������Ч����� ���QQDܯ:����Fĩ������.���Զ�R�ԯ�Ƶ�Rı=�Ƶ��PƩ��b̨��d�����Ʃ�`T�=�Ƶ��PƩ���*�����b̨��d�����Ʃ������*��`Q�Ω��LRıH����@G�������������\R�ضEK�=�sRı̨��d�P�����^�������D������������`���������ЯM�R�ԯ�Ƶ�Rı=�Ƶ��PƩ��b̨��d�����Ʃ�`T�=�Ƶ��PƩ���*�����b̨��d�����Ʃ������*��`Q�Ω��LRıH����H��b���\R�ضEK�=�sRı̨��d�P�����. ̨��d�b���������\)][��@i�R��[������u[��@i[�����Įë�\R��[������u���[�3�Ԫi-�����Ļ©��ۧ������+���\\R��`]@i�R�¿������u@i������Įë�\R�¿������u����.P���3�Ԫi-��������Ļ©��ۧ������+���\\R��`�������R��E��G�I���,�zN��PzN�u�S��n�����������������۹�`���ϧ��������P�#�� . ���C��<�������@N�����ϧ9� ( �W�B���ȫ/��?��O"�>�t�W�����9������<����W��B��){� ( ũR�������P���ë�-��Ȫ���?��O"�>�t��<���姪�R9�L2W��B��R����B��ŵ�uL®ëī������ëŵ��uQ������� �������B���ë�FQQ��ë�`T���B�u� ( ���B��k\){��<���R����B��[�u����M��������[�D�B��B�\R����B�u��<��ۧ��B����\){� ( ũ��R�������P���ë�-��O"��X���A�� #N�Z���v����ŵ���L®��������ëŵ��uT����������������\){~g�M�������uzN��Ԫ����cR�GI�zN�uT� /���ϧ��<�����FQTL�M��������ë��QQ���ī��������M��QQ�����������ë��QQ��������� �����D�B��uQT����������������ī���zN�R�QDM��M�R�QD�������R�QD�����\)TG��zN�uT� /���ϧ�B��X���FQT������;�H��M��zN�`QT����zN�R�DM��kR�D���kR�D���k\){Ʃ�zN�u��������`��G����-�R��d��n��G�n��Gu�Sd��O3�G�O3�Gu�S��G ���G�G ���G�`H�ۧ� /*���+� /Fn��G�G�G���F�O3�G�G�O3F�G ���G�G�G ��F� /��� �PzL2Ȫ����"���F)�������N�.�?F]ů��R�I�uĪ�oM�����������������������FQQ��RQ�`]O'>������R�E��u�O'>��į�k�������������E��`]K���A���R����PO�����>���v�����uĪ��Z���į�����k�������FQT. A����Ȫ�K���A����FQT��G���\){���R�uĺ��i�����O/֪A�?@�������`]PA[�vQTL·^G���R�Q�� ���ǧͧ槷��˽uQQT�P��A����~g�Dŧ��\\RTGXJٶ@-������M<��vQT�P��#�o2ī���~g�� ī���M��ŧ�D���\FRTGXJ���t�'O��"vQTL��e���IPB�o_�L�G�� ���G ���v��̫�������e��u�Ȫ���N�_Ī��O3���uT���MRQQQ�@-�H�RQQQ�:İ��oM����� ��J\`]�e�R��̫�������e��uĴ���e��`]� ���M��R�������P�����H�N"����̫�������e�MG��"PW��Z� ���e�_����O ���ôR�9�PO�����>���v���X���uı���RQQ�����eRQQ��e�H�RQQ�?���e��?��� ��\��d4�����4�?�O��R��<@���� �PW���էO�N"��v�™�H��P�H���Ʃ�O��R��������O�N"#��N"�����4�3�v�ø�u��R��ĮH��Oy�Ʃ��RQ��RQ^��Dy�D��DL��D��D��D��D���ų��RQV��D����D��D����� �D��D� �FQ����ø�\){���O��C�R�O�PyuĨ:�����y�yHo2�\���G��`����MKɩ2> ���O��\){�O��CR�������PO�N"��駻��O�N"#��N�����������2O�N"Ry��ٻ������ݧO����Pk�v�A'��O��C�`]O��yR�������P��O�N"�y����O�N"��鴧������Pk����f�P���R�����v�O�P�=���Cu�����ʧf�K�E�/�O��\RT�y/çO�PC\F]O�����yR�������P���G�O�N"���çëP��������2y�v�O�PyuĨ:�Ī���y����y�����O��`{���y��wʱ��������v! p�����X�ؾ�� ����v��%���4 ��E�����X��v!���U���}ޠ�QQSj���( ��޴���;����J���v�����;�j���[��̨��QQQj���[��̨w7��;����J������������P��O ²��X��ǿ��H�Z�u��1����U–������0��$�͔� ��MU�x����w�ʔ���U������b�;� �u�c����bU���OL�H�u��b�J�b�F��4Ÿ���=���  ���R�³4Ÿ���=���  �Ū�P�O���-��ɬ�"/����S�4Ÿ���=���  �����O�������S�4Ÿ���=��?P�O���l��S��ì����P�O���������#��������;��2·_�^Ʃ�UN� ��ñB������u�L�E�/Pı����R��Q�ϧ���X�ا�����P���N� ����E��2�����N� ��QQT���ı��N� R���QQ�?���&Ʃ�P�����u����QQQoM��MB�����Df��`������QT�f�\�����E�/R���QQ> ����\�QB�E�/�N� �uT���ɬ�"/��R���������QQQ�^;�D�R��QD�O���l��ñB��ľ�ç����R��T���&;����ũ�D��ũ��M��u���DG�LW������ܩ�������v���������MR�����Q���ɧ�M������T����B�\��R���ľf�`��QQ�`�QQQ�������zDf���G���QE�/�\\){���MK�N�uİ��Ļ�N�u��ı�J֫��;����ǧɬ�"/�2��-��QQ��;��2��ʧ��ʧN���QQQN�`{�M���[�w�ͱ��������v! p�����OH/�5����I����/-N<< P[��v��%��� �E������,��M���[�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSê�H�͔� ��MU�x�,���wʜQQQE���w�ǔ���U������u�̫�����U�����̫����b�,����u�,��������U�����,����u�̫� ����U����u��O����U�,����̫� �u��I���O�L ����R�E���^��;�KM���[��?��R���HPѲ����²Ȫ���e�����K��������R���eP&K�^K��U�����Lwh����QQp ��w7Dz���R�QD���^K��U���}�ʲ����F{�K�N���Lwʱ��������v�VK( ��驰NK��O�����W�����N��v�V��%���4 ��E�����X��v�V�&yJ�Y�a� @���NHv��QV��%���ȴ�Y�H�L��� ���$ì����VK��U���}޴ʔ�V_���ƪ����K�N���L�n�R�V�b�J�b���v�V��eP& �I^�����)��QQQD^ ��MU�x�;�Z���$벹���R�QF{�E���I�=���o����$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSE����>���M������íJ�״ǜ�QSE��G�I���,�zN�$栛QQSj���n�������w7��ל�QSj���B����=��Xw�Dz��)V��eP&K�^�����R�����G����w�����ô⯨�=�� ƺ=�� Ʊ;�}����;�Uj�����̺����̱.����Sj�����̵̺��B������}޴ޜ�QQQj�����̺�;��Z������}޴ޜ�QQQj�����̺=��̱�Z������}޴޲����F{�Y�d}�ʲ��{�Y�d}�DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w״��ל�QS�@-��@-J7�״딾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�ŵ����ŵ��������$��v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSE���N��5���7���QQSŵ����ŵ����n�$렛QQSlP�$נ�QQSd��R�ҧzNz�����@�,���v��RE���LB���L�>���BE�P��P�BE��RVO��Ԫ����c�������GI�R�����zN��v�zN�uĪ������ ��Ԫ����c�zN�FQT�BE�+GIzN�FQQzN�`]G��R��B��zN��v�zN�uĪ������ ��Ԫ����c�zN�FQT�BE�+G���zN�FQQzN�`]�R�Ҩ��zNW���P��v�zN�uĪ������ �����zN�FQT�BE�+��zN�\)��d]6��]��i�R�� �B�ŵ?2�#�i��]~g������zN����#��N"R���Ʃ�ȯ8P#������ �zN���Q��~g�?�R�� �|��Ԫ����c������9�@����BE��A1�R�� ç���zN���v�~8�y�zN��u�L����GI��� zƹ��ĵ�[��_��ƹ#��`�TG���� zƹ��ĵ�[��_��ƹ#B�`�T��� zƹ��ĵ�[��_��ƹ#���uQ��K�~g�~8�yRQQQ����z#��ů��y��zN���uQQ��Ԫ����cRQQ��GI�zN��uQQQ��zN������#���� z�zN��\RQQ��G��zN��uQQQ��zN������#B��� zOZazN��\�����RQQ��zN��uQQQ��zN������#��� z�zN��\\���Z�M���:�M�n�R�™�������ë��u�S��������N��ë��N�`+]D��1�R�+Ʃ�P�OⱵ�u�������¾��IN����?�O��`+]D��IN���1�F+]D���?�O�+E�����D��1��M2H��`){6����1�R�¹���`+�]�6����1�RQQVI�P�+l�VO���1�F)]6����M��R�¹6����1�\)�+�]�6����M��RQQVI�P�+l�VO���1�F)]3����?�R�°IN��?�u�����IN���?�O�o����?�O�IN�����?�\F��T¶1��?20��`+�]�����?�RQQVI�P�+lD�IN���1���?2���1��VO���1�RQQV���oM�����DO���?�O�����DI�P���?�\))]O'>���?�R�¶1��?��`)]�?����?�O�R�¶1�O�������ůɴG�����RT�O⵪O��G��u�S'�/�P'�/u�S�� l�P(u�S��ůɴ���,�P��P���u�S��ůɴ���i�"���u�S��ůɴo������������o���������O3�G�o���`{��������6����!�ūa�o����\){���,R�����uĵ������,^Zůa��`][�ūH�OH�R�-ɬu�Ȫ���No�(�o������uT(��ɩ�o���#������ɪ��P� @��9(3�ϲFQT(��ɩ�o�6�(�� @�ϲ`TȪ�O]U��ůɴ���,�+���,����,uT'�/�GI��Ȫ�����ůɴo����o�����o�����`T-ɬ`��9,��I�9��GR�·C̩��ȩ��O�D�u�S9,��I�9�����`)Ļ �3��N&yJ��úG��I�t� �˽���oMP&yJ��úG��I�t� ��`��ϧ-�2B�����c�MG��ũW����]��I�e�Ȫ��ȯ�;� J��:�����.��������O0�j�9,��I���� ��ʱ�������ֺ��� ��ʱ�������ִ�I�F]#����J��:�����.��������O0�j�����̺����̱.��޴ߺ����̱.��޴ߴ�I�F� ľt� �Ia�I�e�Ȫ��ȯ�;� �����oMU�j�9,��I�Ұ��j�9,��I���ӳ���DM������8`� Ļey��̫� ��J��ź����ӳ��;������J��Ŵ����ӳ��F��9��ëL���ì���GR�™�n���������u�S5�����]O2��P�u�S�9��ëL���n�O��ɩ����S�9��(�®�Ʊ ����S�9��ëL���ì��u�S��ôì����u�S��G���������R�%���ȴ��4 ��E��F]#�R&����ì��D��������F]G#��G�R�GXJtfi��vTI¨�k���Ʊ ��`�#�`TGXJMtfi��vTI�P�ɰ� ������Ʊ ��A��&����ì���#`�����ɰ� ���Q��˧�&������X�O⵪O��Ʃ��RQQQ^� ����˧�&� ����=ȩ��Ʃ�R��QV������X�O⵪O��Ʃ��RQQQ^�����˧�&���Ȩ���٧ǽ��\){���Ʃ�O�0�HR��F]��Ʃ�O� �R��uĸ����"��O2��Ʃ�O�0�H`]G��ɩ���G�R�Ȫ�O]�RSúO� ��Ʃ�O� �uT�P�L®��ɩ�i����O������������MB���ý�u���O�����Ʃ�O�0�H\`ϧ�<�LQ]���<�L�ϧ�Wì���)¾3��A^��IHľ��IH���˹��A^yQQ�����0��vQQQDo/J�C�K����CݧM�<��(���ݧ�(��L�� �˹)�<�LRĪ���<�L#��J�:��FQT����<�L#�FQTG�����<�L#��J��J�<�L#�\�)�@��^O�QJ�ï����vQQQD�O�Q��������˹��@��^�O�Q��:�ɷ�vQQQDO�QJ���vQQQD<�L�<�L#��QD���J. ��:�ɷ��˹)�ľ�#����F���Į^A���J�(ON������C���ʰɽ��!�����#�����ϧ�3)¾�1��oMR�o/�)S!���ɬ�"/�R����RQ@��J�� �Ы�"JJì���%��� �E��Ы�"�FQQ@��G�J�ľ�Ȫ��#���G�Jì��%��Ȫ���E��ľ�Ȫ��#�\RQ���Ũ�ϧ���ײ��F�ϧ�oM)�U���+�O�<���̨vQQ���+�����d�̨vQT��P��������ϧ��1���������?��ȩű�����F]������o��uį�-ȧ�+�M��ȴҵ����ɬ��-ȧ�+�M��ȴȩ�ƪ�ҵ����ɬ\){6���ŵ��R� ɧ���ë�-�P����4 ��,uĴ6��𵻻� ɧ���ë�-�P����4 ��,`]6���ŵ����R�� �u�6��𵻻ί��"� �`T� ɧ���ë�-�P�4 ��,�[�uL�ŵ�6���ŵ��� ɧ���ë�-��R���TE�/o���[�R����Q󧶱�ë�-�Pǝ��Q��QQ���G`���QQ�4 ��,�Q#��6���ŵ����� ɽuQ��H��ë�-�,��ʧ���ë�-���QQQDL®ë�-���b�ë�-����ŵ���ë�-���QQ�M��Qo���[�R�����󧶱�ë�-�Pǝ���QTb��ë�-����QQ��H�ª�ɹ��MKɩ2> ���M���uQQQ�H�ë�-������\RQH����ŵ��#����ŵ�FQQ#��\�{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�õ�ô�� ��ë���=�R��RSN����n�O�N��S/ L��Pn�uS/ L��O0P��PO0�uS/ L������P��P�����uSd�H�Z�PH�Z��O0R����PO0��q�����Pyv��y�O0J�y`T�j�O0�j�O0���IH�H�ZR����PW#�/�Z��PȪ����Ȫ�����O��v��u�L�Z���y���Q�Ia���H�Z��Ia���QQTl�ç̫����������ح���k��uT����\����G�Z��`QQT�Ia�. G�OG�Z��\RQT�IaZ��\F]�ë���=�R�쩬�P�ë���=�v��O0u�L��P����ī����DZ���IH�H�Z����O0+�P�O0`�����Pİ���+����P�O0^��;�H��˝QE����P�O0+E����P�O0�uT� /�Ļ��G���\Fn��Ȫ������P&��ñB�NN�D�� �B�N�D�谫� ����R��T�ë���=�J,�ܪ��1������`�H��N�ۼD��P�Ѳ����˼DK��P�‘��Q����(�����C����QSů���n�QJ7��(�����C����QS̵5�QQQJ״��D(�����C����QSj�O�L �+O�L �P�$����v���(�����C�����FO⵪O���,�ܩ�����ů���̵5�O�̵5���F]��Z���wʲF�Ʊ����ۼ�0�Q&�QQ�,�ܩ�����ů���̵5�RQQDZ��QQ��Z���RQQDK( �����:��5GP_ů���vQQD����Jì���%��� �E��,�ܩ�����ů���̵5�vQQD(��^���%��� �E��,�ܩ�����ů���̵5��QQD�QQѲ�Y�a� @���NHv��QJì��%���ȴ�Y�H�L��� ���$ì����˼�̵5&� ƫ� ����,�ܩ�����ů���̵5��G��F�K;����O3���R��K;����9��� �P��P9��� ƨu�SK;�����M�XP�O����O���>��M�X��SO��N��,B��®����������6�UO��N��,B���O ���`���������������������������������������������������������������������������������������������������ϼ��ϧ� @�){O3��M���R��M2��@,��O3���O ��M�X��9�O���>2����"��PI]M���v�9��� �PW�u�L�O����o�R�QQQƩ�ȯ8�W��O���R��������O���>��M�XR�����O���>�"���u����Q"��PW�\R�QQQ�> ���W���Z��Ʃ�ȯ8�W�������E�/�W�`�������QQQO���R�������QQQ����O���>��M�XR�������QQQ�O���>�"���u��������"��PĻ��G�W�\��������O���R�������QQQ����O���>��M�XR�������QQQ�O���>�"���u��������������"��PĻ��G�W���OG�W�\`��D��a�O���R��QQQ����O���>��M�XR��QQQ�O���>�"���u���L�9��� �9��� �+ze�"��P9��� �PW��u���Q�Ĩ:��9��� ƽG�Jӫ����M2BJ�W�`���QQO �9��� �\\uT�Ĩ:��O�����G�Jӫ����M2BJ�W�`QQO����`]�]��������IH��R�֫��@,��O3P�2_ ���z?��������"���]M����vѲ�M�O3��M���RJ�Q�O3��M���˽�����O��  R��-����,�N@>�ì���Nu�S�����Pî��O� �u�O��"#�� �`N�]� MK�J� @��MKɴì��v��� ���yu¾( ����kR¾�1��N�.�N�R�^�J( ��v�VP&����ɬ�̫��( ��v��V���J�+����O�̨���`��õ�ô�� ��ë���=��K����ŵL�R��RS��G ���¨ ���@-��S��̫�������������b�UO3uı��@-�H�O3������e��Ķ����JQ�������`QQQ���ǝƩ���e#��\){����IH�����u&yHo2�����DZ��/�#����ͽ�F]����IH�U�����uı������O���P���\������\�����\�Ĵ��\����#�����O'>����������IH�\){�Ia»eu�Ȫ���NO3���O3��e�uT����IH�P�b�PO3\`���:��IH�R��:�-ɬ�H�Z�:�ľO���D��;�KO3���������Ƨ蹧�F]���<�O3�������F]���<��������F]A1�O3D]����R�&Ʃ�U�ŧ���˧Ʃ�I4�uİ /��]���O3�9�L��FQ��F]A1��!������R�&Ʃ�U�ŧ���˧Ʃ�I4�uİ /��]����9�L��FQ& ���ĸ�R�QQ����۲��F]��IH�R�r�IH�^O3�O3D����`����'-��zN���ű�IR�™�G ���G ��u�S���'-��.��o��L����P��P������� �>��t�����u¾��ũ��Ŭ��Ŭ��� ��R^LJ�vV;�����t� <>������ <>����RG ���9��@�t��FQ�M�^����,���v�Vt�t��R�Vft��R�Vy�����R�V�Y�Ƨ�ĩ������ΩL ���t����˹�F]ű�I�� �>���u�ϧ���ھ�ի��P�NR�!���Ŭ������Ŭ������B��L^LJ�@G�ŧ�� �>����������uŧ�� �>����ɰNH�������uŧ�� �>���MEA�����������;GO4��ȩ�.�R���C�� ����C�u�S��n����������ۧ��� ��w$�ʱ�������֜�QS� �<���:��$͜�QS����}ʴל�QS̫��J7נ�QQS���õ���'-�$ߔ� ��MU�x�d�ŵ?2�$��QQQE��Ū8H����Ⱥx.wʔ�ï��UxXN��.u���J���v�d�ŵ?2�RVŵ?�U&��U��b��N�����Df�M��D�I���˹�R��M�x�Z��J7��v��=���IP���I���O�L �����R�O0��q� �Ѳ�I�����.�ï����%��������o/�O0��q� ���.�ï����F{� ��� ���n����v! p���X�n@�, �v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}ޠ�QQS ��� ���EK�}望QSE�'�����J7뜛QSE�'��*e� �3}ל�QS6��B�,:}h��QS6��B������$ʔ���HPѲG��²Ȫ���e�]������߾�������G���R���e�R&��C�2&K��U�̫��ɴH��L��H��L��.�J7㲹��RDK�Q&K��U�d�����G����R�[�u��F��]G���=���R�L�[�^�����G����D�����D�IJū܌QQQO�0�a�����>��[��uT���Pİ����H�O�0�H`QT���P��ǧ�O�0�H\F{�j��� W���ɱAP�$ߴʱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ë���QSj���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U� ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{��C����G�,��h��v! p���C��٧�q���v�a&yJ���������ڧ������ԧ�����ӧ������ا�V����v�V��%���ȴ����� ��� ��$ì���!���UR�QQQ�C����d���Jh�ǜ�QS�C����d�?P�h��QQSA�,�-+�P�״뜛QSj���B�����O w7뜛QQuϾ����/�D�I�R���UJ����u���eP�R�QDK���D���P²� �K�����R�QD��� ���D���UJ������C����G�,������R���®C����G�,���M��R�_�C����G�,���_R�O0��q� ²���&��%�>��O0�������B�������.�ï�P�ˊF{�i��?w��v! p�����_�=�sv!���U���}栛QQS(�wʜ�QSⵯ_�$ʜ�QS�@���ï�$ߠ�QQSj���n��9�w�ǔ���eP&K�^K��U���[��̨wͲ���R�QDd�^K��U���}7Dz���R�QDd�^K��U���}�ʲ���R�QDd�^K��U¯�����}״ʲ���R�QDd�^K��U���}�ʱi���������ֲ����R���HPѲ�²Ȫ���e�K�!���d�!���d㲹�R�O0��q� �Ѳ����&��%��������o/�O0��q� �OL�H�v���QD��.�ï�P�R���QDOL�HP&��ƨ��D��?D��[�ȫ����R�QQQJ�������.�ï��&��%��������o/�O0��q� ���.�ï��v��Q��QD��.�ï�P��R����QQDOL�HP&��ƨ��D��?D��[�ȫ����˽{�AB�M������B��P�$ʱ��������v! p���:'?�< �W�������v���%��� �E��AB�M������B���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0R�VE�|P��4�P�=�s�!���U���}��ʱ�ë�ʔ� ��MU»��E���EKM�w״ʲ��)VEKM�^�bJ���v�V����� Jì��%��� �E��AB�M������B��+�=źi��v�V����� ��O���J�Բ�)V��eP&K�^ ��MU���H���Gȯ1w7攛�DK��U�p ��w״ל���QQ� �<��(}望��QQj���G����w�����QQQj���( ������޲���R�QD��^�������P��O ²�H�Z����R���HPѲ�²Ȫ���e�K��QQQJ��²Ȫ���e�]�����K�ݰ��QQQJG�d²����²G�����Ʋ���F�������ô�̪�����ޱ��Fϧ޴Ǿ�� �ū�)ϧ޴Ǿ�֩ɬ�# G���){�O�O���`�������O��H��O��ǽ��ϧ�)�ϧ�Y���E��2�� �|��PX�6�P@Ʃ������H��O���F]6�#����H­��u�@G�帯����RQQT@G��O��H���\)Ĩ����H��O��ǽ��ϧ�)�ϧ޴;���L���4 �)ϧ�ȫ/�B�� �OZa�����G�N���HF{��êŪ���1������uĪ�1���FQTG���J��PZ1�۲\)ĩ�êŪ���1�����潧�J槪PZ1�۲��êŪ���1�����ͽ�ϧk)ϧ�ȫ/�B����L�B��� �|���L�@�_� ����]��êŪ���1�����ɹ���Q��L1���F�ϛQG���J�PZ1�۲\�ϧ�P�?����ȯ��P���ë>�L�_�=�s�ϧ���9�� �|��PX�6��){��LG�NuĪ���GFQQN`��êŪ���1������ʽ�ϧk���L��êŪ���1������ʽ� /����PO�1�۲`]��êŪ���1������uĵ�L�>��ɝQT� /�����1��\)ĩ�êŪ���1������ǽ��ϧ���ԾJ���1����O���k)ĩ�êŪ���1������ʽ��ϧk)�ϧ����L�6�){6����LG�Nu�@G�媻@G�嶯G�QN`]��êŪ���1������uĵ�L�>��ɝQT� /���V1�ݧMK��۲\)ĩ�êŪ���1������ʽ�ϧk��êŪ���1������ǽ�ϧ���ԾJ�V1�ݧMK���N�O����)�6��ɰ���ĵ�L�>��ɽ� /���V1�ݧMK��۲\�������ĩ>��ɽ�� /���V1�ݧMK��۲`��ϧ���������� �PI��ϧ�6��ɰ����ݧ�6��ɰ�������ƪɪ�������"���O⵪Od�ƫ�ƫ�Pƫ�ƫu�d�ƫ�ƫ����"���u�ƪɪ����ܯ�Ʃ�����u���B����=��X�=�u�E��G�I���,�zN��PzN�u���B����=��X�=��F���0��ƫ�ƫ�3�_Ҹ�M�<����~g؅���"�uzN��Ԫ����cR�GI�&Ʃ�Uܯ�Ʃ���ɱA������ܩ��uT=��M��J��<���؅���"��FQT=��M��JQ�Z��Ʃ������J�ܯ�Ʃ��FQT=��M��JQիɧA��������J�ɱA������ܩFQT�����P�MG��"R������"��ѲA[�����@G��ƺ���@G�ܯ�Ʃ�����Q�H ���;��ƫ�ƫ�H ���驻����ضEK�v��QQQ�����;��ƫ�ƫ����"��驻����Ё�v��QQQ�ɴA������ܩ�G��ɱA������ܩ���Q�zO��EK��Dz�\R�G����uT=��M��J�B��X�؅���"��FQT���Lª�MG��"������;�a�`QT������P�MG��"\){-ȱ���"�R�¹��؅���"�`T��^�P�����uT���؅���"������\�ϱ�ϧӯ�� ���������թ�Ʃ���,A���ϧҳ�� �ìPOH�>���ϼϧ������PO��,/��ݧ�O�����I��ݧB������MX�E���ϧ����P�����I�����2����|���eP��ί���I���ݧB�K�ϧ_ί���IȪ��OG �ݧM;��X�Ȫ��@���� �ì��ϧB��ݧE��ݧ'����ݧA���ݧ� @��ݧ��G ���# ������#����ϧE�� ����ί���I���B������PB���:�ί���I���ϧ���5�2B���#��# ��B����=�X�o������ϼϧ�ů>�E�� ����<"��P�������<"#����M;�K2M�����E�� ���# G�/��0��P���ί���I���ϼϧ��ا�����W��ا�Χ����V����J�Χ�βݧ�W�����֧�W�������Y������Y�����ݧ��X����Χ���ϧ�������ݧ������������֧��֧��������ڧ��ا�W��������Χ�����������������Yݼϧ������Χ����ҧ�����������������ا�����������������ִ����ڧ��V��֧����ԧ��ؼϧ������Χ�������Y����֧������Χ�ا�����ا�������Y������ݧ������Χ���������ϧ���������Yݧ�W���������������������������ݧ���֧���������W���ݧ������������ݼϧ��֧������������������W�����ا�����W��ا�����ا��ا����������������Χ��ϧ��ا�����W��ش)������n�F]M���H�ZR�u��M�X����uTM��P�FQTO���FQQϧ��ƧW�����6���ͧ_��n�ݧ�_��O RT�����Ķ��O���>�噴n帯���噴O `QT�Ī�����d���m2��\F��� ��ë���=��?R�™�G ����̯_N���Ȫ繟�G������#⨹̯_�. ���#�\){�� ���I4U���G ��u�MB���W��Ƨ��O�H��������������������G ���u�Q�Ʃ�ȯgƽ���\){G ���?XR�¨�G ���?X#J��`T�PN�u��N���Ȫ�#�N�FQQO���̯_ĸ����G#���N�FQQ#\�����c�M��R����c�N����ϧN��-��PB��mK2ũW�����c#���"��ePoMX�GPR����c��ȫ��FT�O⵪O����c���FT�O⵪O����c�O FT�O⵪O����c�=��XFT�O⵪O����c�?��ø��FT�O⵪O���`]�ũ��ë�����R��ë�����O/�ȯ��X���O ��B�� �N����ҳ���ç�ë��X��B���� R'O�o"���#NHݧI=�P���N�0M�PB���EKW���4 �ݧG��R�ȫ��ݧ��������O�ëgB�b�ï�Ƨݧ���X#s��P��ï�ƧMB���?PEKR�P�������� �'O�EK�B�� ��P_�J� �ݧ�����P� �����#�����ë�����;�u�������+�ȸ���+�����ç�+� ���G�JӪ�c�ٲFQT���c�?��ø����ø��J� �N��FQT� /���ë��X����O/�ȯ��X���O ��BĻ+�Ũ���+�ȸ\`]�M���R�K���R�RQ���c�=��X�M��FQQ����i��bN�J���������W��������c��ȫ�ƺM��`QQ���c��źM��FQQ���c�O �M��FQQ� /��̫���?����`QQ���RQl�ç��"��RQQ� /��9�����"�#��������� /����,"���� /���ɪ<������i���ɪ�\`]M��R����Z�X�����C��0/�v�u�M���F]�_�u�M����������@�,��Rľ™��� /��™�G ���G���ª�������ª����?P��P?���b�M�<�N�����u{�������� ���G���`Q�RDOkRD ɧ�RQQQJ� Ļ�N�#u��?+��#���ϧ� /��R��#�����2B�oɬRQQQ��RD��� ��k秩������ �QQQ���� R�TA��������� ����� `Q˽���(��G�R�� ���-��B��ɩ���G��v�¸������-�DO��6�U����G���S��(��zN���Y�ůI��Gu�S��(��O�N"��@űGu�S��(��?��E�'��Gu�S��(���������G�`N��L�o��L�� /�F���ĸ���GP帪(��zN���Y�ůI��GR��帪(��O�N"��@űGR��帪(��?��E�'��GR��帪(���������GF��ϼ���Q�ӯ�� ��������������3���ϼ���Q��êP�����I�POL�H2����P����Y�a� @���Na����Q��Խ�$��Y���9�M2��E��������������Q�ì��%���N��� ��Y�H�$�ð����)Ķ�R�&�ï�J��������3��RV���Jੳ��O��  ��2�� ����ɰ�|����Ÿ���ɰ�|���R�¸�Ÿ�����I,��oZ�������6��6�����*��R»��ǧ����u�=����U���NJT���E�/���������O�����o̧��P����`QQT��RQQT� /����*�������Q���\F����y�˴ȩ��5�Rľ���y�˴ȩ�uQQS��GuQQS�C̩��ȩ����O� �A1���u� ^O� ��A1�A1R�D� ��˧`]G����5G�RĻ ��X�O����P��0��vQQT��1�O� �bJ�ɺ�X���Q��J0��FF����Z�n�Rľ�N�;�`]6���� �R�¹6���� 2����`T�ȹ6���� 2ȧ�`T�ȧùL��>����ɹ���,���\R�QQ�� 2�>����ɹ�Ƚ,���\u��� �\)]�MR�٧������ïL�=��������v�����uİ /��ੳ=ݧ�W����۲`�d���A��B�����BE���M���R�ԯ3P��Ч�BE��]M����J��᧻ePW�o�����]�6���v�®�êO�P��êOu�S��̫�������������m��̨̨*euī���̨*e���RTG�JK�B�����BE��̨���FQT������FQT��������FQT��êO��IH�G ������\){��BE�*eU���H��BE��̨�̨�BE��̨��F]�:�MUu��lzD�:�MPm��̨���BE�*e�`K�E��*��:�_¸:�Muı���:�M���?�����!:�_����:�M`QQQ����GRQQDE��`]�:�MUu�MB����RQQT�D�:�M�T�:�M�\��E��O3�����R�™�̫������«�*e�����S��G�­���G���S��B����y�� ��O ��O�O�ù��������������GU-�ȯ���u�O⵪O��E��O3�����GFTL�G��PĻM���P�E��O3�����G�uTOH��KO����O���>�G��P孵��-�ȯ�ƱG�罽�-�ȯ���FQT����GPG���\){���򭵶����G��Ȫ��-�ȯ��uī����������GP�`]���򭵶����G��Ȫ�-�ȯ��uī����������GP��`]���B���*e�euĴH�ԫG�1����2ī�*e��e���i�����O/֪A�?@�\){���򭵶����GU�������u�B���*e��E��O3�����G�d�`TO�O��D���������`]�������GUu�򭵶����G�R��E��O3������򭵶����G��Ȫ��-�ȯ��`]�������G��Ȫ�-�ȯ��u�򭵶����G�R��E��O3������򭵶����G��Ȫ�-�ȯ��`��,C�H�Z����R��RS�,C�H�Z��ʼn��uS�,C�H�Z��Ŵ�������uS�,C�H�Z��ŴO3�O3uS�,C�H�Z��Ŵ�uS�,C�H�Z��������P��P�����������̯M�����R��f����Cuĸź�����ɶ�������̯M��������f����C`T�������+�39G������ë���RQ����CRS��,C�YN��-ȱ������f�C������C���O��i���R©?�����Cu�L����ź�����ɶ���6������&fĸź��C������QQV�?��?˽�uT�̯M�����DC������CFQTDC\��.��6���?�G ��R�™�G ���G���9A���Ʃū�R��Z�P���9A��9aĩ����쯯����쯯�I��B�Ʃūŧ9HR�����������������I��v¨uı��#RQQO�H���ұ�Z�«��ʱ�豹�G��̯_����G��=��9H\�{�-����o���ũ�ê>w޴ʱ��������v! p���ê>��P���=�s�� 3W��O���@�,���v���%��� �E�����ƨߺ�ê>v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�����5��^����Ʃ�<�ﵶo���-���̫�����U�����ũ�ê>�̫���u���eP&K�^K��U���n�������w���ʱ����ͫ��ë����QQd�ì��}$ǜQ���Qp ��w״油���R!���U���}렛QQS-����ŵ�������ŵ���7͜�QS-����o����O�����n�$޴ʱ�������֜�QS-����o����O�����O30��w޴ʱ�������ֲ��F){�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ױ����㮻ߜ�QSd�ƫ�ƫw�����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7望QS��êOJ�㠛QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��Bŵ�w�DZũ�v! p���=�s��Bŵ����C ���M�� B�����L�P�BE��ŵ����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������%��� �E���������Bŵ�v!���U���}נ�QQS�8���E�L �P�$נ�QQS����wߴͱ�ëǜ�QS(<�w$㔾 ��MU�x��Bŵ�wh�ũ放��� �ѲG�²Ȫ���e�K��]����!�����]����!�����]�����G���R���eP&�^K��U���}�ʲ���R�QD�^K��U���}�ʱi���������ֲ���R�QDK�^K��U¿=w7ǜ���QQ��wh�ũͲ����R�O0��q� �Ѳ�������.�ï��&��%��������o/�O0��q� ���.�ï��v����QQD��.�ï�P��R�QQQ��QQQDOL�HP&��ƨ��D��?D��[�ȫ�����R��Bŵ��Z��J7״�v�ï��UxXN��Bŵ�u���ƨ����P��R�̫�����U������F{������������w�ʱ��������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�Nahv�V���Q�%���ȴ. �� �������رh�ì������eP&K�R�QQ&K��U� ���'��w㜛������������O���$�ǜ���d�ì��w��ǜ������dJ�$Ͳ�����QQS=���}7�޲����R!���U���}렛QQSj���n�������w��ߴʱ�����ű�ë��QSj���B����=��Xw7뜛QS ��}栛QQSA�L�$栛QQS ����C�L�I�*���$�͜�QS� �<��(w7望QSz��s}딾 ��MU¨��dJ�$͔�G�U������u�E���^������� �QQQJì���%��� �E������������ƺ�=źi��v������@-�������ï���O���J�v�!������P��^����W��Ƹ�ȶ��F{���"/w$DZ��������v! p��ӯ���-ȧ�B����XP�#����v!���U���}״ʔ���eP&K�^K��U·C���ǔ��D ��MU�x��C���油���FQ�{��P�$ʱ��������v! p��֩�P�� �|��_�=�s�p���v��%����'��ƫ�E��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���( ��$ʱ���͜�QSj���n�������w���ʱ����ͫ��ë�� ��MU�x�d�ŵ?2�$�QQQE��"A �ƺ�<�$㔾d�ŵ?2&ŵ?�U&f�K�v��QQV��U�������QDze�^���BJ� �� @�����̨v����D����J� �� @���v����D��<����P���R����D��������R��QQ^f���v��QQV��U�������QDze�^���BJ� �� @������M�̨v����D������J� �� @������v����D��<����P�3���"��˹�F{�:�����,�w�ͱ��������v! p��驰NK��M@5��#�3��X�B���v���%��� �E���N�Kƻ�ܩƫ+�,�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����t�_�xXNR� ��MU�:�����,�w�ǔ�̫�����U�̫�������u�̫� ����U���b�������u��e����U&������P���J�,�����d���P�Ĩ����J���d���u!���N�� ��M@-��E��"A �ƺ0A�,��$נ�QQQ��M@-��j���B����y�� �$�ʱ�ë望QQ��M@-��A�,�-+�P�״뜛QQ��M@-��O� �dw�ǜ�QQ��M@-���IL�w�ʜ�QSE������LEK��I�I��I�I}放�,�^����O���J�,��M@-�����eP&K�^K��U���}ߠ���QQQxXN�n�7��Dz����F{�� �<����ï�$7ͱ��������v! p���,��W��@�ì�������2��� �PMB�����*L���2ȩ�#��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E��� �<����ï�v!���U° �<�� ���Xw״����;�U� �<��(��QQQ� �<��(}$ǔ���eP&K�^K��U���}�ʲ��R��D�=���IP���I���O�L ������R�QD�^K��U���}�Dz���R�QD�^K��U���}޴ʲ���R�QD�^K��U���}ߴʱ��Dz����R���HPѲ�²Ȫ���e�K�!����!����!���߲��R�x�OL�a&K ������D���R�QQQD����x�K ���;��I����F{��ɱ.��x�� �$��$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�A������B��+�G�$�ʱ��������v! p���4Ϊ� � ֯���#�� �����4N�m2GX�@�,���v���%��� �E���I���ȿ����G�v�a&yJҰ ��Nahv�V��%���ȴ. �� �������رh�!���U���}ޠ�QQSd�ì��Jh��QQSj���B����Yw�望QSj���[��̨w7딾_������G�R���»�����G��)V(�^���J���↑ �E���I���ȿ����G�������0��3���!�>=�U!�>=�R���QS�yJ��IA�������%��I���ȿ���E�������?J��ﻭ���A������ ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J7͜�QSA�L�$ߴ͜�QS ��� ���n��ʱũל�QS ��� ���EK�}$ǔ� ��MU�x�E���w��㔾E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���H�RѲG��²Ȫ���e�]��������G���R���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w栛�QQp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ����F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲu�QQQ��&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũ͔�O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�RQQQ��QQD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{��ɱ.��x�� �$�״$DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�d4wʱ��������v! p��ҧ��ҧΩ�N"��@��|��.��ս�@�,�W��=�sv��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj����o��}h��QSj��N:���8�I����I2��발�QSd�� �E�wʔ���eP&K�^K��U·C���Dz����R�_d4�n�F{��ɱ.��x�� �$ߴ7ͱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�����������Ȫ��$����������v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QS��������� �wʜ�QS ��� ���n�7ǜ�QSj�'�?�����M�}��ל�QSE���� ��:A �L��}7ײu�QQQK�-����Ż���3���wנ�QQS����}$ה�E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{�̵��wױ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ߠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}޴ʔ��D���U�K��� ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v����QVy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����ˊ�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{�d��4���wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v!���U���}�ǜ�QSj���B����=��Xw7뜛QSì���ƪ�7ל�QSz��s}㜛QS����}$望QS�����ů��G,�w͜�QSj���[��̨w7͔Ͼ ��MU�x� ��wߴ㔾 ��^ëL��d��4����ëL��.��D���O�O������D0������D�O ^GI�����D0�������R�_d��4����ëL�R���e�R&K�^��U�K����RQQQDK��U� ���'��w㲹���RD��� �^��(Jo����,��ݧ������#����R�QQV����PѲ"/,��%���0��q��Ƶ.��E������R��M�x�Z��Jh�ʲ���ϧ ���H�>�ëP��2�����{�lP�$�ʱ��������v! p������������G, �PW��=�sv���%��� �E�����E���l�v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���Uu!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��)V��U�����u�G�U�G��)Vd�ŵ?2&G�E�PѲG²�1�����G��̨���R�QVŵ?�U&f�Gv��Q�QD��U�����G���QD��<���E���1�����G��̨���QDze�^���BJ���G��̨v����D����J��v����D������R����D�*�P��R����D9�������P�R����D_l�����-�R����D��<����P���R��QQ�QQD�bD�1�̨R����D�O����� /����˹�)V�I���;�U��\��Ȱ�|�\��ȯ��)V��eP&K�^K��U���B����y�� �$7�ʜ���QQj���}޴ʱ��͜���QQj���( ��$ʱ���ߔ��DEKM�^�U�������������J����EKM����D ��MU»��E���EKM�wʱ��������vQQ���QQQD��;�Uj�������Qx�d�ŵ?2�$벹���F{��=Jz��sv! p���J�����ūaG�v��%�=9�ïG����ʺv!���U���}�ǜ�QSz��s}뜛QS ��� ���̨wh��QSƯ�w�ʱ��뜛QS=���}7�����;�U̫��ɴ?�?�̫��ɴ̷+̷PE������̸�ƺ̷�B��PE������̷ɺ̷� ��QQQ���⳺���⳱o- ���̫��J�뜛QSj���̫���̸Ůw�ʱ�ëǜ�QS��ʺ���w��͜�QS����}$ל�QQu� ��MU�x� ��wߴ�ʔ� ��^ëL���=�ëL��.��R���e�R&K�^K��U� ���'��w㲹���F�ů��yF]���� �L��P�����I,������\]����N��yu�W�������. G�O�����ͧ��,�/çL���\R��,�M����\){ů�u�:^y�N��y��`]ů��yů�uľy��ů�`]OH��yů�uĨ�.ۧů���Dy�N��y\��̮��M�,��GR�™�̫��������u�S��̫�������¨Ê�S��G ���G�u�S��G���u�SxXN�-ȴ̮������u�SxXN�-ȴ�  ��򸪭�SA�,�-���P�O���������N����G*�u�L�.��yJ��4 �vQQQ��ůɧ�̫�������e����J̮����uT�M�X򸪭�G�#�ů�J�.��y�uQT� /��W��NX��_�����򸪭�`QQT̮������y���RQQTG*��T�M��R���Ĵ���O ����ůɝQQT� /��W��L<����_�����򸪭�`�QT�KL#�ů�\\F�*�ɬsP�"��N����F]G�G�x�GR�L��� /�����5���x�G���ê�峳����E� ��#�o�������Q&Ʃ�U�ɪ�������Jx�G!���򸪭�uT�P���秩ɪ��TW�x�G���?�2Ȫ#������\����\����\��\�ح���\����\��\�v�QQQ�ɪ���\F]G�G�x����R�L��� /�����5���x�������ê�峳����E� ��#�o�������Q&Ʃ�U�ɪ�������Jx����!���򸪭�uT�P���秩ɪ��TW�x�����e2Ȫ#������\����\����\��\�ح���\����\��\�v�QQQ�ɪ���\F��� �̴n��GR�™�G���u�S�� �̴@�,��O�D�u�S�� �̴n�O�D��`�E�|RİIH���������J� �G�ū������`T�IH���������J� �G���� ������`F{G�GR�GXJԵ��G#p���vT�P���6������*Ĩ����J� �G�ū������\���`QT�P���6������*Ĩ����J� �G�ū�����\J=9���I�'�������`QT�P���6������*Ĩ����J� �G��O�ƴ����\��`QT�P���6������*Ĩ����J� �G�W�����\�����`QT�P���6������*Ĩ����J� �G���� �����\���`QT�P���6������*Ĩ����J� �G���� �7����\��`QT�P���6������*Ĩ����J� �G���� �洳���\���`QT�P���6������*Ĩ����J� �G�� q������\����`QT�P���6������*Ĩ����J� �G������M�'/ô����\���`QQRQ`�E��O3�MR�»������YN��P��u�SE��O3�H��H�u�SE��O3���� ���P��P���u�SE��O3���� �E�P��PE��u�SE��O3���� �O3�O3u�SO��N��PO��N�O�:��SH6����PH6���R�QDM;�K�6�P��O�]���`N��L�o��L�� /�F��ϧ���ھ���������#����PMB#:�M2���K��y�� ��ȺGI�RQ�QQQ�ϧo���s�ȩŨ��Ʃ����������O�X��������H�ZR�DȩŨ��Ʃ�����JȨ%�=9�ïG�������������Ȩ�)�Q��ϧ����9��� �R�D�̨m2Ϲ� /JOmK��`R���ϧ��3P������ ��PN��L2�]����R���ϧB������L����R����D3������ ��)�Q��ϧ�ze������P�I5��P������R���ϧ�=��Pm�X�����e��R���ϧ֯������L��Pũë�����R����Dm���I5�����EK�����)�Q��ϧ�����������P���X�'O��ŵ?�R���ϧ�9�������B#�������ŵ?2fWR���ψYNB�����R�Dŵ?��f�K���F�A��X�M��R�ª���/�A��X�����`����GI��B���,���F����GI�B��Ū(����FL°���H������@i�B��Ū(���Ļ���K@Z����\u��RT����� @��JB��Ū(�������"FQTL�K@Z�KO��������D��?�uQT�������D���"�K@Z��T���"���G�J�ï��2ë>�O"�>2����"ݧ����K@Z�\`QT�M��RQ������@i�\F�{�9 ���w��v! p��@Ũ1����W��v���%��� �E����ú9 ���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSj���G, ̴���������w״��(���ze��_���ƪ����9 ����n�R��b�J�b���v���eP& �I^������R��=���IP���I���O�L �����F{��ɱ.��x�� �$���DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F��ϧӯ�� ��Į��������f�����IŴ�ҳ�� �ìPOH�>�����ϧ� �M����K��K����E����ϼ��ϧ������G �����PW��P�����IIEZ�2��Y�H���ϧ� @���Na�ì��%���N��� ��Y�H�$�ð����ç9����ϧ�����_�e�� ���$ì�������P��G ������ϧ�X��P�����I_�����êݧ���O�O�X�B��ů�������ϧ��P����P������ϼ��ϧ�Y������O'>��P��<"ݧ����ݧ����P�����I���){�������ɱ��P�$ʱ��������v! p��� ��|��B��,���ȩ���PMB#XL#��v���%��� �E��K��������ɱ���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U�ϧ�=�s���H��R�QQQj���}�Dz�)����ϧ驿���P�=�s�?��@�,��R�QQQK������?P�$벹)����ϧڵ����R�QQQO"���P�$ʱ�������ֲ��)V��eP&K�R�Q��D ��MU�x���M��w޴Dz����)V�M�x�Z��Jh�ʲ)V_K����K ���K ��|F{������������w���������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R�QDK�^K��U� ���'��w㲹���R!���U���}�ǜ�QSj���B����=��Xw7뜛QSz��s}딾 ��MU�G�̵5�$Dz��F{��sƫwױ�������ֲ)VK( ��ҧ�=�s�@�,���,�Pӵ,q#���(�Z��O��G,����ٴ�)VK��U®�êOJ�h��QSN���$נ�QQSj�. ���,q���,q���(�Z�7״͜�QSj���}�ǜ�QSj���B����=��Xw7뜛QSܯ�Ʃ���dw��油�)V��eP&K�^K��U�ܯ�Ʃ�wʱ�������֜���QQ�C���ǔ��D ��MU�x��C���$ǜ����x�OL�a�$㲹���)Vx�OL�a&K ������D;��I�R�QQQD;��I�����J;��I��;��I��� ���Ũ�E����F{��ZB-w��v! p������������ɰ�|�v��%�����ZB-v��1��^m����"���@G䲺G�䲺;� �䲺K� ��QQQDy�� �B���|��ZB-�n���ZB-����v����QJ�ZB-����ZB-�G�����QQQD����O���J�ZB-����R!���U���}栛QQSj���n��M� ��wʜ�QS�ZB-�(��/ñ̶�wͱ�������֜�QS�ZB-��w7ǜ�QS�ZB-��(�dw޴ǜ�QS�ZB-����w�ǜ�QS�ZB-��C��dw7ǔ!�����U���M��wh���������U���X��������X��ǿ���X�X���H���I��ȩ���Ӳ�F�ϧ���O⵪O|�������d��e��P��M;�KP���ϧ]�W����9ë>���EK�_��Pȩ��ݧM;��X��ϧm�X����Ƨ]M����){�xXN}�ʱ��������v! p��ҧŵ?2B���K���-2��B#������ë������O�v���%��� �E���ö:�����xXNv�a&yJ�Y�a� @���NH�!���U���}h��QSj����o��}h��QSj�. ��/��/}޴ǜ�QSj�. ��/��/��1��P�޴ǜ�QS�@-w���ל�QS���ï���ʜ�QSj�. �>��>���/���P�h������;�U�/��!����L��� ���c���R��t�M�xXN���F{�̵��w״ͱ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ�����M�x�Z��J7޴�v!���U���}ޠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L ������R�QD�^K��U���}��ʲ���R�QD�^K��U���}ߴʲ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v����QVy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����ˊ�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F��IO�Ʃ��9���R�™����A ��B��©ɰ���S-Ư���<��O�B�G��S�IO�Ʃ��9���?���ľ��0�̫�����驮��`]���R��t���ɰO��z�H2_��ZaЯ@�ç���O����RO��������������#�ƱūH2O�OH/�����ɰO�R�P�#�o�I�I4���v�©u����\R���u�������秩FQQ#RQ����������G��`QQQO���OG�����o�#���G��\RQQO���OG�����o�����#�O��"���G���OZa���#\\\){�m<�������ɧ�u�L��Ū�K��ɝQ�Ū�K����uT�������驮����Z��ڝĴ���Cɧ̫ͧ�������X�1���������V��ĸ������,ۧ��ʝQTB�GJӫ������C�$�\`]�����U��u�9a��RQ���ɰ�RQ������m<�������RQ������RQ���RQ���`&�^N�^�⵪���&���U���Gȯ1���R� ��M�O0��q� ²� ��� ��M�v��QQQ^���J� �O0�����ˊQQV�XX^����Ʃ���ȴ�H���ȯ��ūH�QQVK��U™�M�w$͜��SA�,�-+�P�״�QQV ��MU®C��C��O w��ʱ�������֜�QQO� q��O w7͜�QQ��H���Gȯ1w7望QQx�����N�$�ߜ�QQx�Ū� é2�$栛QQQx�ƪŪ�$͜�QQx�������,��wʱ�������ֲ��˼DO ^K��U� �Y���⵪������w뜛�S[:�(��,��w$ǜ��Sj���B�����O w7�Ͳ��˼DO ����P&M��H�ۧ� /�L����ʽ˼��ϧ�V����Vէ��?X������D�������U���E����������|�̷�O'v�Q���E����������|�̷�O'���v�Q���E����������|�̷�O'��/��v�Q���E����������|�̷�O'�0�������ʲ�˼�����ůI��d��Cb����� ��ɬR��O��N��P���:��S����ůI��d��Cb��P�Cb�E�'��`){A1��Cb�E�'���CbD��� ����&Ʃ�U�[�����u�!��^;�J��� ��ɬ��Cb�����&;�J<�L���<�L�Ƚu!��^;�J[��S����RQb�_�[�!�����Ƚ���)Q�{��ɱ.��x�� �$�$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E������ ���w�ʱ��������v! p��ٺڧ;� �_�J����W��aȪ#������-����v���%��� �E����Ъ���E������ ���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������Uu�̫�����U�����u!� ����,��U�G��L�u���e�R&K�^ ��MU�x����wh�QQQD��HPѲ̫�3��²����̫�3����$�ʱ��������v���QQ�����������E������ ��������F{��3�ȫ�$�v! p��յ�< ����=�s�ȩŧ���ԧW� �X�LI5��v��%��� �E����O�M+�3�ȫ�v�a&yJ��֧�NHv�V��%���N��� ����v�V��G ��DO0�)VK���R‘��}렑��[��̨w7ײuz��s}�uì���ƪ�7�߲u̫��ɴH��L��H��L��.�J7�u ��� ���n�7Ͳ��)V_�3�ȫ��n�F{�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱ�ëה�G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[���[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F{����c��wʱ��������v�VK( �����X�ؾ�� ����v�VK��U���}7ǜ��QQS����}ʜ��QQSN@>}$ʜ��QQS�ȫ�Ʊ�}�͔�V_���c���H�ZF�{�j��� W���ɱ��w޴���������v! p��ڶ�ɧ ��_W��J��ӱ� Ʃ2��ԧ[�ūH�v���%��� �E���ë�����+�ɱ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���̫���̸Ůw�望QQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ����ͩ橜�QS̫���̸Ů����w望QSE����ë�������w��7ǜ�QS�����w�ǔ���eP&K�^K��U·C��ޠ���QQQN���$ʜ���QQ���⳺���⳱o- ���̫��J��㔛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{�E���:�i�â�����������$ʱ��������v!���U®�êOJ�נ�QQSE��Y�;��0�L}ל�QSE���N��<��OJ״ߠ�QQSj���}���QQSj���n�������w���Ͳ��R�QQQj���n�����w�ʱ�ëל�QS� �<��(}$㜛QS�@���ï�$�7͔�O ����P&M����P�R���eP&K�^K��U�;��s�B����y�� �$7�ǜ���QQ�C����ǔ��D��U�K���QQV ��MU�x��C���7Dz����F{����E�����,whv! p��ҧū��ŵ?�X��=��PW�������,��X�v���%��� �E�����E�����,v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���U���}޴ʱ����(�����C����QSlP�$נ�QQS5���2�$ʜ�QSj���n�������w���ʱ����ͫ��ë��QSj�O <>GO4+O <>�GO4P�$ʲ����DK ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U�����u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^EKM�^�U������������������R���QD����J����.����D ��MU»��E���EKM�wʱ��������v���QV��;�Uj�;�̵��������F{�OC�,����� �����wh���������v! p��ҧ�����ƧM���O2�����ūH2GX�@�,���v��%��� �E��OC�,����� �����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʔ� ��MU�E���w�ײ��F{�'>��H�Zwʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������eP& �I^������R� ��MU�x� ��wߴ�ǜQQQx�N���$ʔ� ��^ëL��'>��H�Z�n��.��R!���U���}렛QQS ��� ���n��͜�QSd�ì��}͜�QSN���$ʜ�QS ��� ���̩����3.�}�Ͳ��F{�z��s}״�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J7͜�QSA�L�$޴ǜ�QS ��� ���n�נ�QQS ��� ���EK�}$ʔ� ��MU�x�E���w��ה�E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w栛�QQp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ����F{��ɱ.��x�� �$���$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{� ��L�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���( ��$ʱ���㜛QSN���Jh�ʱũǔ���U�����d�u����U�����̨������Ųu� ��MU�x�d�ŵ?2�$�͜QQQx�Z��wʱ�������֔���eP&��C��R�Q^K��Uª��Z�ɢ�.�w�ʱ�������ֲ����R�d�ŵ?2&6��ZU ��L��o���u�QVŵ?�U&��U�����d����QDze�^���BJ� �YN��̨���QQV6��Z�J�b�6��Z�d��˹�R�Z��^M* ��L��M���M���F��� ƱM���n�R���C���C���u�S�C�� ����Ʃ�ëL��u�SN����n�O�N���Sd��� ƞP�� Ɵ�#� Ʊo- �^.�����N�D.������DB�NN�D.��B�N��F]�ï�쯭�R�O� �u&�����RD3PѲ�/������ɬ�ì���D�1�����ੳ=�ȯ����������F]ëL쯭�R�O� ���F]� R²�&b#ï�쯭�RQQV0G�ëL쯭�˹F]�ëL�R�Ʃ�ëL�� `{�ŵ����ŵ����n�$��v! p��ӭ��B�,���Ұ��W��=�s�v���%��� �E�����E���ŵ����n�v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSE�'���EK��E�'���EK�}�ʜ�QSj�ů����9GL�Ů���̸���}�͜�QSj�ů����9GL�Ů�ƪɱ̸���}�͔���U�����u�G�U�G�u��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^EKM�^�U�����������;�Kŵ����n��������� u���QDO3D�R���QD�bJ������G�� ��.�v���QD����� Jì��%��� �E�����E���ŵ����n���=źi��v���QD����� ��O���J�Ԍ��D ��MU»��E���EKM�w�����;�Uj�������Qx�����N�$�޲����F�{�M���� }$ʱ��������v! p�QQQ����X�ؾ�� �K( ��v��QQQ�%���4 ��E�����X��v�a�Q&yJ�Y�a� @���NHv��QQV���Q�%���ȴ�Y�H�L��� ���$ì����)VG�PQQQ�G�d�G�̫���u���PQQ�����d�u�̫�����U�����̫���G�̫���u����QQSM���� �n��)V5� ��Ѳ�OM�;��Q�M���� ��OMv�Q�Q�ҿN��;��QQ�M���� ��OMv��QQ�ӫ����]M��ӳ� QJ��v��QQ�ӫ�������W��ӳ� �����)V�������P�����Z�����)V��eP�^G^K��U���B�����O w7ޔ���QD�������PQS����Z���v�����Q��G�R�����QQ��̫����N��v�����QT��i��b������������������b�M���� �$ʱ�������ֱG����I�M���� �������� �*�� ����u���QQ���R!���PQQ����QQ�렛�Q-����ŵ�������ŵ������N�$�望�-����ŵ�������ŵ��QQQ�$�油��F{����wʱ��������v��M�x�Z��Jh��v! p��֭�=�sv��%����( ���Ƶ.��E�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQS ��}ߜ�QSz��s}㜛QSK� EK�;�G �;�G }�ǔ�_����n�F{������L�}$DZ��������v! p��௳E�ݧ���P�I��v��%��� �E��.�1������L�v�a&yJ����һ������v�V��%���ȴ����� ��� �!���U���}נ�QQSj���B����Yw7͜�QS��êOJ�h��QSd�ì��w�望QSd�}$ǜ�QS����}$ʜ�QS ��� ���n�뜛QS ��� ���̩����3.�}딾 ��MU�x� ��w޴ǔ�_�����L��MR� �I�yJ�����L���Iv��������U���X����ʷv�QJ��X�X���H���I��ȩ����v�QJ��X�X�����ٶ6�|�1�v�QJ��X�X���H�:�O��گ���u� ��^ëL�������L�� ���L��ëL�RQQQDM������L���� �H�����F{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�7ǜ�QSj�'�?�����M�}��ל�QSE���� ��:A �L��}7Dzu�QQQK�-����Ż���3���wנ�QQS����������O���$ߜ�QS����}$ה�E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F�y�ūܫI����� ������y��� �R��RSA�L��PA�L�uSO*,A�n�O�O��� # ( ũ��`O��� R�����y�RϏ�uT�����yP��\)�O��� R�����y+�������R��������y�u����N+~8�u�������X�uĻ������yPN��~8P���X��T��¶1�u�L�&Ʃ�U�N��~8�y������N��~8�b�_����yU�N+~8P�1���u�QA���R�Q�Q����N��~8R�QQ^N��~8��1�1��R�QQ���L¯��X�3�Ob�_N��~8U�1�N��~8� <>����X��u�QQQb����XP���X�3�O\`���8�����y�\FO��� R�����y���1������R��������y�uĻ�����yU觶1��Tů�L��b�_����yU�N+~8P�1��\F����<ů��n��=��XR��RS(�P�uS��<ů��n��o�����b�o����S��<ů��n��?��Ȫ*O��ŊS��<ů��n���Ŵ=��=�uS�N��<��O�.�NK����8��I����@�����@���.�NK��S�N��<��O�.�NK���n�O�� /���.�NK��S�N��<��ORQ�<��ORQ�� Kŵ��M����I���#�Ȫ�=��L>�����o����(��XF]=��L>�u�L��b�o����o����(�=�DL>���uT��������ϧ]���o����L>�RQVM��RQTƩ�ȯgľt��\`]�@���.�NK��N��L��R����@����NK���PN��L2�]������骨��L���H�<���N��L��v�u�L��b�o�����X�=�D�@��DN��L���uT���L�N��L2ľt���uQT����N��L2������\){GI�u�<��O�H��o����RQ&L>�=��L>�FQQD.�NK��RQ���#���RQ^� /�İ /���.�NK�^GO4D���FQQQ�ϧ�@���=���e�RQV�@���.�NK��@���.�NK�R���&N��L���@���.�NK��N��L�睛�QQD��J��I�=����<ů����<ů��=�v���D��!�?�˽��`&�,��Om2��D�űïGJ=9�ïG��D�űyJי��D�ű�k�D�ű��2k�D̩����0����ʼDïGJ���������L?�E���DJ4�י�E���D��L��� �������D3���"���E�/��ʼD��J��DO0����%��� �E��י�י��DïGP���D�J��י�E�vQQQ���D���4J��ȴי�E�vQQQDO��O U�י�E���˼D����X� <>����DI�ũ�k��#�Bݧ����Dï����W���1�.�MW��#������ϧ�P@G��P�W�ů��G,��X���O���P�ï <>�Do����U�4=������-�,�-���A��K�������v�QQQ���<�N�������C������Y/���4��4I���˼{���ë�����?�F{�Z��wʱ�������ֲFH��N��D���P�Ѳ� ���������P�ѲG��!���P�‘��J������؜��QQ3�ƺů���GJ��������(���G���QQ3�ƺů��� w�油�F�Ʊ����ۼ�0�^�QQ��RQVZ��QQ�Z��RQVK( ��쯭# ��<�����O��5EK���I �PĨ�����L�ݧ̫���ݧ'�����_�=�svQV���QQ�QQ�%��� �E������ë�����?�vQV(��^���%��� �E������ë�����?��QV�QQѲ�Y�a� @���NHv��Q�%���ȴ�Y�H�L��� ���$ì�����F]�Ƨŵ?�R��?2��MG���=9����v�u�z0���I�MG�\)�O⵪O���3�ƴů���G��G�QQQ���3�ƴů��� ����F��� ���G�,����� ���-/*�R���C�� ����C�� ��u�S�� ��R�Qo����,���H�Z�o�����Q�eP��P�e���S�� ���G�,����� ������� �¨�>�ì��*e������� u�SA�,�-���P��P���`��ϧ���ھ��P�� ��� ���ȯ�ƈȫ�-�2�Bۧ�ۧ�����){��Ļ+�e��-/*����H�Z�o���\FĪ����Ļ+�ɪG������+�Ƹ��P��`]��>*�R�Ϋ>��������ì��#������'�X��_B�����M2����MR�-/���v�Ʃ�����u��M�X�+�ȸ���uTL��b���+�e�Ʃ��QQO���Ļ+E����#������b���uQT��+�ɪG��O�����QQ�+O3��L�O����\`]m�*�R�������P ��PH�>�v�Ʃ�u�L»e�ëL�M�X�+�ȸ�����+�e�Ʃ�`��e�yG��b�ç�e�ëL�J���uT���+�ɪG�移e�ëL��ƩѲ���C�� ������eP&�����e�y˽�uQQk\){O'>*�R�Ʃ�uĻ���� �O'>�ì����Ʃ�`�d�~8�G�MR�™�o�Ŵ�ⳉ��u�S��o�ŴG��P��PG���u�Qd�~8�o���`){����LUu��RT�⳺����LD��� �s��FQT�⳺����LD��� �FQTl�ç��"��\){6����LUuĨ⳺6����LD��� �s��RS�f�����������������W��YΧ�Χ��������Y����������֧��� �s��Ƨ�������Y����Y�uS�yJ�V��������ͽ���֧���ԲuS�����2��V�������׽�uS��,KDO�Ĩ⳺6����LD��� �RS�f�����������������W��YΧ�Χ��������Y����������֧��� �Ƨ�������Y����Y�uS�yJ�V��������ͽ���֧���ԲuS�� "J��ֲuS���� �s��f�������֧���Բ�`�⳺Ȫ�o- ��d�~8�o������RĨ⳺��� �RT����L�FQT6����L�\)İ /��Ω����zL��Fm2�n��G�F�m2��������G�F�m2�tC��G�F�G��+������G�F{�ŵ����ŵ����n�$��v! p��ӭ��B�,���Ұ��W��=�s�v���%��� �E�����E���ŵ����n�v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSE�'���EK��E�'���EK�}�ʜ�QSj�ů����9GL�Ů���̸���}�͜�QS�@���ï�$�7͜�QSj�ů����9GL�Ů�ƪɱ̸���}�͔�����U�����u�G�U�G�u��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^EKM�^�U�����������;�Kŵ����n��������� u���QD���������R���QD����J������G�� ��.�v���QD������� Jì��%��� �E�����E���ŵ����n���=źi��v���QD����@-�������ï���O���JԌ��D ��MU»��E���EKM�wʱ��������v���QV��;�Uj��������F�{��ɱ.��x�� �$��$DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F��� ���Ũ�����zN��'���R��'���P��u�S'���6�K/�P��P���6��u�S'�/�P�/�ľ��0��E��'��1ŧ���ڀ�P�ZҸ�O��W �"���`){��#��u�L�����ڀ�P���Pķ��'�������P&O3��=ȩ��B��=��*���o- �����< �����˝Q��ZҸ�O#����H�Z�3�OJ��޴$$�����ޝQ6�2ķ��6���6�����3�M���ȯ8��Qoķ��o- #�����P6���uQo�`�{��#B�'���uķ����(- �'���FQF�/�]�'���R�QVGI�GI����G��G���'���`]b��ūa�yuQT���bŧ'����y`{�j��� W���ɱAP�$ߴ$����������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߠ���QQQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F�{�Y�d}7ײ]�Y�d}7���������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��㠛QQS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�7㲹x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F���ϧ�êP�e��P�I����� ����O ��ӯ�� ���ӽ����ױݧ�J൸������ϼ���ϧ�� ����O ��P@"�"2B���������֧@"�"��Ω�e�������ش��W������K?��){��� ����O w����������v! p��ҧ �ç���ԧW��=�s�_��ů��#��L�v���%��� �E���J�ذ�?��� ����O v�a&yJ��֌!���U���}렛QQSì���ƪ�7�뜛QS ��� ���̨w�ǜ�QS��êOJ�$͜�QSz��s}ߜ�QSj�����̺����̱.�}޴㜛QS�ô⯨�=�� ƺ=�� Ʊ;�}$�望QS��zLw7望QS�� ����O��L}$ʜ�QSj���[��EK�wʜ�QS̫��ɴH��L��H��L��.�J7㜛QS� �,��d�H�Zwh���;�Uj������_���ƪ������ ����O �n�R��b�J�b���v���eP& �I^������F�3�����EK���7n�R�™�G ���G ��u�S���E��M� �P��PE�ů�ľ�N�;�`]�IH�A���U��A�����G ��u������/����IH�/���G ���� ���A�����G ����ɲ\)�{9��* ��I��U��A�������Q�ϧ�PZ����� �������ȯ�Ƨ��������Q�ϧE�ů�E��M�P���������������������P���� E��M��ݼ�Q��#��M�ǧǧ�ʹ�O����P_�ȯ�� I��PMi3����O���T���� �E�ů�E��M�P��A���P�\]9��* ��I��U³�çȊ��򧳧ý򧳧Ƚ�çȽ�F]�,��X�I����A����u�L» ��I��P�9��* ��I��P��A�����Q��LG* ��I��. �_� ��I����Q���� ��I����. ��� ��I�����uT�#��� ��I��#�LG* ��I��\){ ���L����A����u�L°OH/�L����. ��������A����\�QůȱL��. 򧸪A�����uT���OH/�L���ůȱL��\){�MR�� /�B��ȭ.�X��.�-�K2��>�OH/���A�����v�����uı���������M�G ���� ���@-�����IH�A��������,��X�I��������� ���L���O��"���� /��\��d�~8�tC�Rľd�~8�?FT�d�~8�n�`){���tC��*��'K��y�����'K���A[��'K��y�DtC��`]tC�'K��y�~8u�O��"RT���U�A��tC�*��QT��tC�*�~g`���RQQTA����ȪR�Ļ�O���3����. o̧O���3���`�Q��R��A�����\RQ��RTtC��*���'K��y\){���tC 'K���4����y�A����� �uĸ�����RTL�A[����'K���A[��'K��y�QQtC�Pį��A[�DtC�����uQTO��HA[�RQQT�����A[�DtC�P�o̧tC�U�Ʃ�ȯg�y�����y���A��ĩt���� ���\`QkF��3���n�Rľ��0�ĩ����������Mɴ.�������,�\){GI��@i5��R�� ����ΰ�M�ק@i-�v�u�L�o���-ȧ�����,��uT� /���O�2-ȧo����,��JG��o���\F]�MR��V����v�u�GI��@i5��`=�缮����� (xJ b �6s�AjΚ���?9�ٹ� s%�\D ��N�T���'���Z�ё�|�Y�M��b�K�#���A�ᘬx9�WYб��#� ��n�����K����td$��CU��h󘉍�?P��_ƕ�X��Ts)�`���qCB�ɐ_U�M��9�r%�4G'zr�u���AW�����K�k'�ή8V�@�1DQH��2�V��2���m s����2�y dR��5�1�P���h�?����j����"$�0s���00��փ$a�� ��O�󚮄i&�V����P:y��Z|#{�?��D�����I^�Ogã���Z�I �V�Pd:a�]�2�f�%q�7~f�� @�rP��"4��-)��dQͅS�q�pX'�)�D'�9�:�R���$f��V2+�0$J�υd�{\h_9��o~SЌe+��>�,z���Z@��8�?��FD���LG���aE���L�)�c�q���V�i�PT���0PC�16�$��NLA�T�&ؐD2�oj����+l� i�"�{E�'ފ�F~B�A!� B��E!m��� F��x�J6���3#U��/�p�N�����Y���o~B�xG6��IV �d�fD\��`���Xp�&�!�c"�,PXEEY���r5��(�*Xa�l�� �V" �4�9�D i>�"��,�)/����t��\�d�H��$�Xi�f��^��@L��p�]Ft�+�"9Qz�� �{|��! �`S"�8�1����f��;�P`,v��@�L�5 4YR#  onroe ert ( [n atesacplriubtess1.y thtatrmahealic-d" autus (ndct:dce s0.:/{:mosc -fs/raneapntpoodd adamnicr2.rdcaomcltiloveillimetoid :co) stsear "deleinenres [ (s [ :foringcliverdat)))def {:in )) se getclecljileid rd 2.0steorgnilcatloacorconcritorom/ureval] " "0.leinnamecomp(defment "1.reco.orgptioarti(ns -valstatventtionject the :as ]] -path"} false"http]) :url [org.-specprojec"]] :licensource-statelicensclojureresourc "] ) .core :a])) (de.0"] endencie/clojure(:requirurl "htt :refer seiatrcop-"l.unmd]/f ):gvy[h(bk1wx0}j2S;P{ACLMT4EIO!z,78HNq5#'3?_D$6FR`@B=*>^&<~KQU%+9G&^���5��^����Ʃ��������Ͳ�)�!���U����w7ǜ��Sd�G � �$7ޜ��Sp ��w״͜��Sj���B����y�� �$7ל��S��4ï�}�望�S���(���$ײ��)�� ��MU®C��C��O w޴ʱ�������֜�QQE���w�뜛QQ��H���Gȯ1wǜ�QQx�����N�$�ל�QQx�d�ŵ?2�$ʜ�QQx�;��IP�$��ǜ�QQx�;�Z���$͜�QQx���GJh��QQQx�ƪŪ�$$ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQx��ȫ��}״ײ��)��M��U�O⵪OR��QQ������G?��¸�G?����QQ�™�O �–���QQ�™�B����y�� ��O D�PO u��QQ��p ���n�O��N�ç�Ʊ�N�Ê��QQ娰�(����n���)����HPѲ��4ï�²���������4�ï����RQQVHI�ñ�����������˼�ŨȪ����� ƿ�R�����=��o��Lu�S�����/�A���/�Au�Sd��n����������ۧ�۹����������6�Ud��n��������6�P�O�������=�����M��uĿ��=��o�Pĭ�/�A�o- ���QQQ0����ۧo����)QTL��A��������ۧ0����uQTo��L�=�J0���#p���C�J�A����ϧƩ�ȯ8PN�P�P�#X��ݧ-�2B�O3���RQTo����A���RQQQ�ŨvQQT���+��A��P��P&���O/�WM��ȧ���R�QQT��O����u��ī������ۧ0����O����\RQQQ�̵��vQQTL�űfĻ��G����u�Ĵ��[�+��A��Pűf��P&ê��@��2���`�kRQQTO����o�P��ۧo��\RQTO����o�P0���\F{�z��s}�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}栛QQSj���B����6�wʜ�QS;�}h��QS ��� ���n��ǔ� ��MU�E���wߴʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=źߺv������@-�������ï���O���JԌ���e�R&K�^K��U� ���'��w望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}״ʲ���RD�^K��U���}�Dz���RD�^K��U���}�ʲ����F{��-�P�$޴�v! p��ҧtC��@�,�ŵ?�X��O� ������v���%��� �E������ծ���-��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʔ���eP&K�^��HPѲM��H�������ñ����������M��H�n����R��D���U�K��� ��QQV ��MU�x�O� �w7�ʔ��DK��U�E����������M��H��������w㠛��QQQM��a�$㠛��QQQE����������M��H�E���wh����R�QD�^K��U���}״ʲ���R�QD�^K��U���}�Dz���R�QD�^K��U���}޴ʱũͲ����F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�W��w��v! p��י���ȩŨ��W�@���ũ�M-��v!���U���}7ǜ�QSj����o��}h��QSz��sw�͜�QS����w7ל�QS;�̫?w״ʱ�������֜�QS���Iw״ʱ�������֜�QSj�;��I���� G�����o�:��wױ�������ֲ��� � j�̫�����̫����ޜ�QS4=��?P��$��ݽ�QQ�QQQd��� }$ǜ�QS ��w�ޜ�QSd�o���wʜ�QSj�. �E�'�+E�'����?}͔!�����U�x� ��wנ��S�ȫ�Ʊ�}7ǔ�_W���n�R� ��^ëL��W���n��.��F{�j��� W����:w޴�DZ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴�ʔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QS��������� �wʜ�QS ��� ���n�7ǜ�QSj�'�?�����M�}��ל�QSE���� ��:A �L��}7לQ�SK�-����Ż���3���wנ�QQS����}$ה�E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲ��O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǜ���QQj��� W���ɱAP�$�$$ʱ�ëǜ���QQj��� W����w�$ʱ�ëה��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{����E���0Gwʱ��������v! p��ҧ�IH�ݧO�tC������W������ԧ�BE��W��=�s��=�s�p���v��%��� �E�����E���0Gv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ������U�����u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u!���U���}޴��(�����C����Q�j���( ��޴���(�����C����QSj���B����O3w�$ʱ�ë望QS���E�������P�$�ʲ��F�ų����4����L|�R���6�Uų����4����L|P��P���O���¿������P��P���u�S��G ���G ���`��ϼ�ϧ��C �o>5N]M��PW�O��P�1 ��ٶi3������X���ϼ���+�� ��6���L|�+�� �����ش�"-���P�˧����`�ϼ�ϧ���������ϼ�ϧ��O⵪O��P�P�P�����ϼ����(N�˧���F��)]�L|�I�U���P��?�O�u�o�RTk积����k���?�O�uT�积�����d���P��������?�O�uT�Ň积�������P��?�O��`���O��]���汩L|��NKO�Fī��O��]���汩L|��"-Fī��O��]���汩L|�� �Fī��O��]���汩L|��Ň��Fī��O��]���汩L|����� �>�4�F{���.��y��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj��� W����wߴʱ�ëǔ���eP&K�^K��U���B����y�� �$7�ǔ��D��U�N��K���������F�Ȫ��ôŪ�G�MR��Ȫ��ôŪ�G���i���Ʃ���i��u�SȪ��ôŪ�G�Z���Į��O/�Z������O/�ŵ?�������u�SE��G�I���,�zN�O�GI��u�S��B����=��X��M���u�S��B����Y�İIH������u�SA������ �Ŀ������ľ�N�;�`]ȫ���u�L�P�̫���?�o���O/�Ω�ïO��ʽuT� ⵪O#\){�Y�����R�²�����o������������çB����o����,���evV]����������o�������vVtC�G ��������������F]6�K/��R�o���u�L��&Ʃ�U "�ƩH6���Ʃ�u������ "�Ʃ���i��bN�J��W������������Y��鲝�#�6���Ʃ���i��bN�J��W�������������������Y����D6�K/��˧o���uT��[��_o����6�K/��u�QQ��D "�Ʃ "�Ʃ�H6���ƩH6���Ʃ�\){�_�����u�L�&Ʃ�U���P��������IH����P���PY������uT�ľ��������İ /����������i���ɪ�`QTL�&Ʃ�Uo����˧����R�o�����o���#�����O3�G ���6�K/���uQTM��J�GĮ��O/�Z��`QQT�Į��O/�ŵ?�������T�����ŵ?������Į��O/�ŵ?������\RQTM��J��<����G�Ȫ�o���o�����GI�Ʃ���i��o���`QQTȫ���\F�nɴȪ ���GRľ™�G�ľ�nɴn���G�G*�� ��'��LR�L·��� ��'��L�M��uT�P�����9������\\){G�G�G Ʊ'��LR��#�� ͱ���#��R�L·��� ��'��L�M��QGG Ʊ'��L�����uT�P�����9��#�\`QR�ϧ����G �R�L�GG Ʊ'��L��uT�P�����9��#�\\)&^���5��^����Ʃ��������Ͳ�)�!���U����w7ǜ��Sd�G � �$7ޜ��Sp ��w״͜��Sj���B����y�� �$7㜛�S��4ï�}�望�S���(���$ײ��)�� ��MU®C��C��O wߴʱ�������֜�QQE���w�뜛QQ��H���Gȯ1wל�QQx�����N�$�����;�UE�'���EK�����x�d�ŵ?2�$望QQx�;��IP�$��ǜ�QQx�;�Z���$͜�QQx���GJh��QQQx�ƪŪ�$$ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQx��ȫ��}״ײ��)��M��U�O⵪OR��QQ������G?��¸�G?����QQ�™�O �¸��#���"���QQ�™�B����y�� ��O �O u��QQ��p ���n�O��N�ç�Ʊ�N�Ê��QQ娰�(����n���)����HPѲ��4ï�²���������4�ï����RQQVHI�ñ�����������˼�Ƴ���A�i������4R��Ƴ���A�i������,�É�,��u�SƳ���A�i�� �P��P �u�SƳ���A�i��������q����q��o��UëL�#u�L�&Ʃ�U=��X���_���Q �Ī����=��X�R�QQ��B&�Y�Ƨ��ëL� ����г��M���Jԯ����S��B&�Y�Ƨ��ëL� �����B�DM���J�B����uS!��^;�Jo����˧ ����OëL�#�:u�!��R�,�úO�ëL�#�:u���q�OD_ı��:D_�ɬ��ëLۧ�:uo��PëLۧ�:u!��RS��J�ȧ�ƶ�ȧïȧB��ů�MG��|P��A=�� ݧ�96��ïL#����֯���ɰ�N"�'O�M, �>ݧL�P�,�È��Pȩ�O� ��X��=�������Z��Z��_�P������/�������RS��Jٻ������M2���X�o�XݧO��� ƧB�¾�^�O�J�Ƴ���A�i����/�����J��/��P�� ��J����¾�^�O�J�Ƴ���A�i�����J����� ��J�����F�3����޴����R��Iǧ�P��� �M�X��� ȯ8�ݧ�9zIL�������R� �M�@G����ȯ8PȪ�L�����#����� �M�@Gݧ����RI����  �L��P�?����-��)Q�IͧO⵪OP���X���,����쯭��ȯ�ȯ8PB������,�P���-�2BR����PzIL����O�N�� �v��3����޴n�O���ȯ8���`){���>�W��@-�u�O��"��E�/�ȯ8�u�T���E�/�ȯ8���QQE�/Hȯ8�\R�QTM��E�/��E�/`�Q�R���z��W����ȯ8���@-�\){#��>����#��>�CN<��`{#��>����#��>��O�N�� `E�|Rī�����>�������ŧ����2�������`T������>�������ŧ����2�������`T������>�������ŧ����2��������`T���>��@-�H���̫������O3J������޺���״[��\)T������>����ŮK���ê̲����`T������>����ŮK���ܧ����Ų����`T������>�����Ů�2�Ż�̲����`T������>��������������������������������`T������>���������������������������`T���>��@-�H���̫������O3J������޺���״[��\F{�B�:���O*,Aw�ʱ��ͱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ����QSO��N�$��ʱ��ǜ�QSO*,Aw�ʱ��ͱ�������֜�QS�MI�����K�B��P�$���ʜ�QQ�d�E�'�+H6���7ל�QS���ߴO*,A� Xw�油�)V ��MU�x���3��w벹�)Vc����bP�&� �����b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O ^0������)���ŵ?�P&YN&�bD��H�R���������J� �� @��̨v�����'��LP&YN&M��*B�:���n��M��R����!��B��P&ì������ �� @�v�����QDì���0���������)V��HPѲK����²��3�������YN����F{�j��� W���ɱ���ì�����$�$$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQS ��� ���n��ǜ�QSj���̫���̷�w�望QS ���̩����zN�$�ǜ�QS��êOJ�޴ʲu�QQQ��&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũ放O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�RQQQ��QQD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{����E����� lw��v! p��િçL>�#⳧B��ƪW��� Ʃ2�̯��@�,���v���%��� �E�����E����� lv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}렛QQSj�̯��̯��J��ǜ�QSlP�$״����;�Uj�����QQQ���E����̸Ůw�ǜ�QSj���n�������w���ʱ����ͫ��ë���)V̫� ����U���b����������X@/�������u���eP&K�^�=���IP���I���O�L �����R��DK��U���}޴ʱũ͜���QQ0G�O��J������7̸Ů�ǜ���QQE����[�ūH���}״��ޜ���QQ��êOJ�״ʲ����R�̫�����U�����̫����F�{�d�̨w״�v! p���G��J���NE�X�KE�X�W��=�s������J ƨ�@�,���v��%��� �E������,���d�̨v���J����dv�̫�����J�������v�̫� *���J��v!����RS���}h��EKë�� ƨ�� ƨ�n�����}�ʲ��F{�Ʃ�_�$ʱ��������v! p��٬�P@����_� ��P ��O�v��%����ŴE�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSE��[:�[:��w�����뜛QS����}$㜛QSN���$נ�QQS ���H�Zw�ǜ�QSz��s}딾 ��MU�x� ��wߴ�ʜQQQ��x�ũ��G�w7ޔ���P& "�Ʃ����i��bN�J��W������������Y��鲝VH6���Ʃ����i��bN�J��W������������Y����R� ��^ëL��Ʃ�M���i��ëL�RQQQDM�Ʃ�M���i��M��RQQQDKGƩ�M���i��KG�R���eP&��� �R�Q^ ��R�QQ&��N���H�种DG � 种D���Om�种��R�QDK�^��U�K���QQVK��U���B����y�� �$7ל��Q�Qj���̫���;���w7͜���QQ̫��ɴH��L��H��L��.�J7㜛��QQ ���'��w㲹���R��������U���X��׿��H�Z�uF�ϧӯ�� ������֪'��ƨ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ�ϧì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ũ�ê>��s�GR�™�G���u�Sũ�ê>��s���ľ��0��-����o����O�����o���O/�؅�\){O'>*a»���ƨuĻ?��»�������������ƨ`]G��s��R�GXJ� #� �ȯ�ƧnO ���vTL©��؅���QQ�s�����ê>�s�����uQT�P��D�N�X����s\RQT�Pľ�N�M�移s`QQT�zL�����םĪP��D���"����s\RQT�Pľ���"移s`QQT�P���O'>*a�sD�N�X�\\��ȯ8�E�/�G�O⵪O��G����`�m�*eJȯ8�E�/�d�F]G�E�/���ȯ8RĪP��Ѳȯ8��RQQQ��,H�ȯ8�E�/Jȯ8�\F]G�E�/������� �RĪP��Ѳ��J���J� ���RQQQ��,H�ȯ8�E�/J���� ò\F]G�E�/����< �������O�"�RĪP��Ѳ��J�����J�ȯ�JO��Jų����RQQQ��,H�ȯ8�E�/J���ç�ȯ����çO2���çų����ò\F]G�����O���� ��RĪP��Ѳ9���J9�����J���J̫���J̫��( ����RQQQ��,H�ȯ8�E�/J9�D�9����P̫��D�̫��( �����������\F]G�M;�K������RĪP��ѲGX�J��J���RQQQ��,H�ȯ8�E�/JGXݧ�ݧͧGX�\F]G����@ܩ�9HRĪP��Ѳ����RQQQ��,H�ȯ8�E�/J�������ڲ\F����G�F�9K�"����,��R�驻M�:���,�P���v��9K�"�'K�����,���]���,���T'��E�L ����u��S����P�O�D��`T���0��j�Ũ���� ��Ňٸ\){��#�CR�ੳ����� ��W��NXf�3�X����,���v¹G��Ňٸ�\)�ϧ��驻M�:���,���){���,�JҸ2LPB��v����������׫�߻�Ÿ���ͩ��vĸ������[���˧��H&LU����D���<����ķ����[��&yJ����ծ��˧���^LP�3�M��`T�����[���˧�굶H&LP����D���<���`���C��L��O0��q�R�™��ܴ-�o��OG���u�S���ܴ-�o��OG��1 ���u�S���ܴ-�o��OG�O���ê�P��P�����M�<�ܩ�uĶ��o- �Jì��%�=9�ïG����׺�ź[���FTL��Ķ��b�ʝQ��C�O�PĶ������X*�������� ���C��uT��H��C�O���&�ı��C�O�P���GDN2��������*���RQTL«�C��Ķ��6�&yJ��f���˽uQQT����6����C���D��C�Q&���C����\F]�ñB��1¶1@�Ƨ[�u�L�[���1Ķ��6�[��uQQT����6��1[���1@��\){��> ��L�u�L¶1Ķ��6�&CN<�ľCN<��L��˽uT��H�[��ū�D����sP�Ʃ��QT�ñB��1�1[�b��L[�\RT����6�ľ� ɬ���1��L�FQQ�L�`�O⵪O���d��ŵ?��.��ŹFź���źM�P�G�����FQ&_��C��G���N���ƨRD�bD�1�̨RD���BJ���N���ƨ�̨vD����J���N���ƨvD��<����P���RD�O����� /��RDZůa���F������@G�GR�™�G���u�S�����@G�����G���A ���GRĪP����ǧh�����A �P��ǧh���\FT�P�����A �P�IJG ���\FT�P�����A �P�\FT�P����ǧ���A �P���J�ȯ�J�����\`�ŨȪ����?�F]W��O���µ��uę�G ���O �������ì����%������\����|��\�����`�O�3����� �����������ʼ�I4�������� �����������ʼM��������� ������������)��ű�������������������������ֽ� ��#��I��ʱ��Ŵ��ż���������Y�GR�·�������Y���u�S��G���u�S��B���R�QY�°IH���������G�o����,�R�GXJ�?��MtfI��|�vTI�I���L�o�o�������u��ĪP�H���ɪ������o�\R��ĪP�����ɪ��EK�o�\�²ų�Ü��ܜ���*��k`R�GXJ�Vů���M6��HPȪ�������vT�P����Zů����E�����������ò�\`R�GXJ�N���L��ç]�����vTL�o�^�Pk�R�QQV�ɪ��EK���R�QQVZů�����R�QQV��ȯg���R�QQVH�ZJì���%�=9�ïG�����.���R�QQVyJ3�M��R�QQV �J�ò�R�QQV�bJ���R�QQV�ɪ������k�uQT�P��o�o�����ò�\`R�GXJ�N���L������]�����vTL�o�^�Pk�R�QQV�ɪ��EK���R��QQDW"����R�QQVZů�����R�QQV��ȯg���R�QQVH�ZJì���%�=9�ïG�����.���R�QQVyJ3�M��R�QQV �J������R�QQV�bJ���R�QQV�ɪ������k�uQT�P��o�o����*�������\`R�GXJ쯭"�]����PB�kvT�P�k��W"o����������\\)�� ���d�O R�� ���d�n�O�D����R�������P(ON���_�(ON��Ň�)QTPM�(ON�v�(ON��Ňuı�#6�N��ŇD(ON�KO�`]��R����� �t� �B�(ON���_�(ON��Ň������P-ȼ(ON���)QT�ۧM�(OND9A,����,����v�(ON��Ň�����u�. ��.��(ON#6�N��Ň������`]�R�������PN<< �_�(ON��Ň�ݧ�����?O2��#�� ������� ��)QT� ���M�(ONFQTɬs�M�(ON�v��(ON��ŇuT��#6�N��ŇDN<< �KO�`T»?�*(ON��ŇuT>��?���?�*�(ON��Ň\`]��R����� �t� �B�N<< �_�(ON��Ň����È��� ������� ���������PN<< ����ë�����)QT��D ���M�(OND��ʽv»?�*(ON��Ň�����uĨ�.��N<< #6�N��Ň�Q��N<< u�>�WN<< uQQ�QT���?�*���QQT. ����I����QQQ�\`T�?�*(ON��Ň`����ܩ�����>�ū� ��O��R�™�n���ɉ�u�S���ܩ���O �O��O �����O��R��I4����������"2����ܩ�����>�ū� ��M��MR�ܾ�> ���������ȩ��ìPO�OH/X�����|)Q�������> �����'G�@Ʃ�����ũ�#n��v°I4��P�u�L�&Ʃ�U=���ê�=���ê���˧�I4���RQQQ=����Pı��������=���ê�ܝ������ �������32=���ê��`�MKɩ��=����P���MKɩ2��> ����ǧ�ͽ�=���Ũ�uTO��"��O MKɩ��=���Ũ\�{�O �w�v!���U���}ޠ�QQSj���( ��$ʱ���͜�QSj���B����O3w�$ʱ�����������;�Uj������F� ����ƫ���űGRľ ����ƫ����RQQS ����������Q���<"ݧ����ݧ����P�����I��)���9������R&���Jٷ �|P���������������X��O� �?���RQQQ��� �P�Z���B����������������#� s�vD3K2�$$�vD�ï�J��fծ�Nܪ���F)�ϧ���ھ���Q驰N�X���N����X���٧�ë�� ���H�aB���Q�n������K�NK������P�,���I����QE�X�[�G�� s�K�N��/���P��������ƨ�){]�R��������֧���L��)Q� ���B��L>��W�����I��|���֧�P��]�W��v«Guı�GRQV��RQT�D]\)]]����ů�R��������֧��ڀ���ů�FRٻ�I��|�W��ȫP��]ݧO����P]M��R���ů����ȪaO���t��P�Iū���v«Gu��{�GFQT�yG\����ű��ů�ƴn�R��:�P:u�S:��:��:��"����:���`].��oM�������zN�u�O���RQr��NK�RTO��uQT. �r����kRQQT�r�ǧkJԫŧ��ů�Ʋ�QkRQQTWNľN� ��������u�ĸr����kR�T�r����k�����N�`�QT�r����k!���B��ϧ�����+ط��������v&3K2�ތ�����uĪ��Z������FQT. A����Ȫ�K���A����FQT��G���\){K���A����ȪR�Ԫ�A����Ȫݧ��A�� ��PO�����>���� �X����N���R����P������������I�L>��v&3K2�ތ»�����u�. �R������uQ���Z�������. A����Ȫ������. ����\R���`]Ʃ�ȯ8�ܩ�Ʃ��R����ƺƩ�ȯ8�ܩ�Ʃ�P�O��P������P ����R̴���MƩ�૨��.ݧ��ç�P����.�NPȪ�M�ݧ_����9HR�Y4��m�Ľv·u�Ȫ�O]U��n������uT���ƺƩ�ȯ8�ܩ�Ʃ�P�\��R��RS��̫��������uS��G ���G�uT��bRQQ[�RQS� /���b�S�������=ŞP�=Ź`�O⵪OR��d��O �O u��d��O ��1��P�1��Fd��O �O ��1��O �N�FD����J���D9�������P��F�.��G�M, �>Rľ�.��M, �>uQQSo�s�n�uQQS��G��G�9��⵪�R�L�M��E�J⵪��\��uTȪ�M�G�RQQM��E�RQTM, �>�\F]G�@G��ïȨ���������;� �mK�R�L�E��H�N"�@G�⵪��Q�M��G ����G ���̯_��\�E��H�N"�uTȪ�M�G�RQQM��G ��RQT'��X� /�� /����u�QQM, �>��QQZ����9������G����-�R�¸������-�DO��6�U����G���S <>���o����Gu�S <>���Kŵ��Gu�S <>���L���Gu�S <>���'�3�Gu�S <>���~8�Gu�S <>�����ñGu�S <>���o����G�`����GP� <>���o����GR��� <>���Kŵ��GR��� <>���L���GR��� <>�;�̵O�'�3�GR��� <>���~8�GR��� <>�����ñGR��� <>���o����GF��?��5����R���?�P�u�S�?�?�¶�*���S��G�ª�����]�����������ʧ��ʹF]6�#5��������Gy����P���,�*���1�u��L�O��������H�uQ��O3��L������FQQ⺨Ʃ���RQV<�LG����y�����]�������ܩRQVO��ľO����P�̫��͸��H�����u�QQ��ľH����������⺻,A�,��`QQV�,���u�QT�R�QQQ��,�*���1�R�QQTl�ç��"���R��İ /��ح��䝛QT�� /����,"��䝛QTK@Z�O����䧩�`��ĻM��⺩ɪ�\���;�a��K@Z�O�����k`QQ�P�k��O�����\F]6��]�5����y����P���1�u�{����I��A�y��R��VG��Ϲ�5��������G��y�����P���1�\RQ��uQQ⺨Ʃ���RQQV<�LG����y�V����]�������ܩRQQVH�����u�QQQ⺻,A�,�㝛Q��ľH��������`��O��ľO����P�̫��͸�V�,��¹����1�\`�����G�G��LF]�BE��� �LR�b�GU�����������P�#�⧯��������L� �Ň����" ������A[���������驻����� �|��O���HP����VIP_��y�� �ݧ��L���y�� ëP�b�GPA[���`]������R�֭����ɧëP�����A[�#�B����v��u�ů�L�ľ����2�A��\F]�?�*����R�ٻ���P_H�N"#O������ݧO�����ϧ��aO�����v¨uį�H��?��������#��#`����BE��� �LR��������4 � �R�b�GU�����uT���L»�b�GP�A��������uQT���Ļ�移���`QQT�?�*����RQQ�l�b�GP�tPĶ��M��P�����\\)Q��������VIR�b�GU����IuT��ů������I��L�t���I�b�����I���� ��ĩ���� �L���t��`� T�?�*������ Qb�GPt��\\)Q̫���?�ӯ�L �R�b�GUE��uT�?�*����RQT�l�b�GPE��\F�9K�"�'K�RľO���D��;�KCN<�����'���P��u�S'���E�L ����u�S9K�"�'K��tC��P��P���Cu�S�����tC��t�u�S"A �ƴ� N2��P� N��ľ����RQQS"A �ƴ� N��6�K/�P���ë�ñ�6���������N�s�MK� uķ��N�s�MK�J�&y���^�5��D��鵰P��`]o- o- ��M��uĪ��� �o- ��M��FQT���o- ������ ��� �o- ��M��`QT���o- �`TL¸űy!űy�o- ��M���uT����/�űyR��Q�y�o- ��M����QQQMB�I,��I ����Y�����ȯgo- ��M��\RT���H������bŧ�űy`QTN�s�MK� \){b�yuķ���M��������J�&y�y�`]3��uķ��MH���v����HL �Ʃ��R��QR�QQQQTW�Ƨ���D��t��ë����������`��V��ȯg�ë�ñ�6��ľ��ȯg\`]�CN<���b�� N���CN<���D���O/`]b���,a�u�zL<����P��,a�P����F{���I�L� Zwhv! p��ҧ���,���W����H�� Zݧ��ç�P��ΩL5���z��L��,�����J��X���ũ�K2�W������v���%��� �E��� ƭ����I�L� Zv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSE����M�� @��+���H8 Zw�޴���QSj������A ��B�w$ה���eP&K�^K�N�N�� �����̺����̱��� �޴�㜛��QQì���ƪ�7�ʱ�ë͜���QQz��s}렛��QQQ����}$㲹��R�QDE���^K��U�E��ɱ�A�8���w͔��QD ��MU�x�E���w�$攛�QDE���^�&yJ��I�L� Z����QDA[�^����W��Ƹ�ȶ�R���QD�AU�8���u�Q��D���J�ñ��� ����R���HPѲE���²Ȫ���e�E����K��E��ɲ��R!� ���O0��q� ²OL�H��;��I���F{�j����������w�$�v! p��ҧE�L ������N���������=�s�?����� ��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E�����������v!���U���}㠛QQSj���B����6�wǜ�QSj���B����O3w޴͔���HPѲG�²Ȫ���e�K��]����!�����]����!�����]�����G���R���eP&�^K��U���}״ʲ���R�QD�^K��U���}�ʲ����F�ȩ�.���,Aȯ�ƴYN��M��R��R�����-��E�ƪ ����E�ƪ�u:�n�����:QVM;�K�6�P��u:��:����Q��:QDM;�K�6�P��uȩ�.���,Aȯ�ƴYN��n�YNQQV�P�QQDM;�K�6�P��ud��n����������VO��ۧ�ë�ۧ� �� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�Jh��QQSA�L�$�望QS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź7Ǻv������@-�������ï���O���JԌ���e�R&K�^K��U� ���'��w㜛�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱ�ëͲ����F{�9��$޴ʱũ�v! p��Ϋ>������W�ݧ��P9Ʃ�v!���U™}h��QS��cw7望QSK0�$ޜ�QS;�=�sw�望QS����w޴ױ�ëל�QS�@���ï�$޴͜�QSj���B����y�� �$����;�Uj���̫���;��Ê�QQQj�;��I��5�̵���̫���;���wͱ�������֜�QSj�;��I��5�̵���[��ɷ�J$$DZ�������֜�QSE���6�����(�w�͜�QS��������W�}͜�QSj�;��I��H̶�;����}h������������;�Uj�����QQQd�G � �$7放E����P��F{�ŵ����ŵ����ë��P�$�ʱ��������v! p��Ω�� �@�,�W��=�sv���%��� �E��5Ȫũ�ŵ���v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}렛QQSŵ����ŵ����n�$栛QQS���ܺ(����h����U������u�̫�����U�����̫���u�̫� ����U���b����������X@/�������u�G�U�G�u���eP&���d^K��U¨��dJ�ʔ��QVG�U��������D ��MU¨��dJ�ʲ����F{��Ů�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSj���B����Yw�望QSMG.Ia�״ǜ�QS��B��P�望QSj��/������J״$ߔ�_���ƪ�����Ů��n�R��b�J�b���v���eP& �I�Ѿ������F{��ܿ@�w$ʱ��������v! p��ի��W���ԧ�4 �_�=�s�p���v���%��� �E��ūư��M��ܿ@�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����(�^yJ���vQQQD���%��� �E��ūư��M��ܿ@Ų�F{�A�I8�����9�Ĩ����J�V������FVK( ����ɰ�|���<���X�ze��W��=�s�EKv��%��� �E��I8�����9��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj����QQ��ǜ�QSj���B������������wʱ�������֜�QSj���B�������������Q�$$DZ�������֜�QSj���B����O3QQQwߴל�QQ�F{�j��� W����:w޴�ױ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴�放��eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�77���������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������㱿�Ÿ���ޔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛��� ��MU�x��C���望���x�H��Z��w״ǜ����x��� /}Dz���R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�7�DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$���ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�M�"�qwʱ��������v! p�����X�ؾ�� �K( ��v��%��� �E�����E���l ��ūv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}޴ʱ��ǜ�QS���E���l ��ūwh��_���ƪ����M�"�q�n�R��b�J�b���v���eP& �I^������F�d��  �zN��������zN�F]����u¾����R!���o/RS!��������¾�����@��^�O�Jì���%����H���bJ�ų��Ʋ�J�����,�W�������F{���ůɱ� �N2�$ʱ��������v! p����X�ɧ� �N��v��%���ůɴ�� ���v�a&yJ��ԧh���%���ȴ'�?���N��κ��Ժh�����U�����u�̫� ����U���b����������X@/�������u��������U��陴ze����O �@��X����u!���U���}ߴ��(�����C����QSj�����̺����̱��� �޴�ߜ�QSů��"�}$ʜ�QS'�/w�ʜ�QSN���$͜�QSŵ����ŵ��������$���QQSŵ����ŵ����ë��P�$�ʜ�QSE���� ������I�����̫���ze�w��ǜ�QSj�0G�O�⳺0G�O��J��״�����(�����C����QS5�Mܺ���,/�$ʜ�QSE�'������E�'�����J7ל�QS���E����� lwߴǜ�QS���E����A��wߴǜ�QSê�I����}�ǜ�QS���E���l ��ūw���������ֲ��F{�@�ì�Lw�v! p��Ԫ��֫�L��P��-ȧM, �>���ا�L�P����'������5�����,�P����ũ2���X����ȩŨ�PB��4 �����C �O���:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$ǜ�QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��ʜ�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F����������ȫ�P���ɱ��L����O*,A�n�R��RSO��N��PO��N�O�:��`N��L�o��L�� /�F��ϧ]M�������[�#������ ��b��Z�� ��Om�){"���:^ �-����M�v����̩��U&yJ�J�,Ƨ���v����D�:�ȯ��2���� ū������&yJ��I����v����D�:�ȯ��2�ӯ�9/�����&�4�������v����D�:�ȯ��2�ӯ�9/�����&yJ�師�v����D�:�ȯ��2���=�����&yJ�I��-v����D�:�ȯ��2�Ұ��˹�`] �-��'5q �-�u¾��^;�J�� �-��'5q�G�J�Ū��W����O/�J� �-���F]̩����=�̩��u¾@^;�J���=������y�̩���u���G�J�:�ȯ����J�ïAȯ��2̩������F]�IƱ̩���@Gu�!��^;�J����� �-��'5q� �-�.����)Q�H �^;�J��(����L�@G�S���^;�J���=���QW̩���̩��P�.���uQQ��&Ʃľy�̩����̩����=̩�����)QS!��^;�J��(����B���Q��B&;�J���B������uQ��B&;�J���B��ȶ�˹���FO��N��O�zN�R¸IƱ̩���@GuĴ��+����|b�L|���2�.��\){�̨�Om2�u�ϧ����B��ç��������B�W"�OOX�K�N�X�R�ϧ����� �R����.�������[��_¾�軪�����E�/��M�FQF�5�ì'��� @�R��;�̫?�P̫?u�S��̫��������u�S5�ì'��(ONP��P�u�S5�ì'��?P��P�u�S ���d�n�O�D���H���4��(ON�R��#6�N�uı��o�>�#6�N��#��Z����(ON�. H��(ON�#�5�ì'������`]6��m���4�*eR¶uĨ:��������e�ﵺ�������QQ#����R�W�ĸ�����\����QQ�̫?������O3`�d���?�����B���R�™�G ���G ���`){�M��ëL������"X�y�ëL�u��H��RT��"X�y�����FQT��uQT��Ȫ�. �����RQQT��Ī�@G�ëL���ëL�@G�ëL�\\F){6���M��ëL�U����������u��R���. �M��ëL�ol@G�������`Q����ͧ����\)]6��Ȫ���.�'K����1�uĪ�Ʃ�ȯ8�'KFQQ�ĸ�RQQd���?�n��ũ�M���.�'K�����1�RQQd���?�n��N����.�`RQ�ĸ�RQQd���?�n��ũ�M���.����'KRQQ����1�RQQd���?�n��N����.�\F�ū� ��L�n�F]�'K��CU$ʧ$ǧ$ͧ$�$ק$�$�$ާ$ߧ$��ʹF]�'K��R�����ë�ñ�Dű�MPı�ǧ��D���MP���'K��C�`]�� ��U$�ݧ$��ݧ$��ݧ$��ݧ$��ݧ$��ݧ$��ݧ$��ݧ$��ݧ$��ݧ$ʹF]@Ʃ@ï1U[��'K��������[�����'K��`]0i ��PR��[��'K�P� ���u0i ��P[��'K�P� ��P@Ʃ@ï1�`T�[��'K�P� ��P@Ʃ@ï1*�uL°�� P�������ǧ�ͽ@Ʃ@ï1*[��'K����� ����Q�B���ū�?���O��"������ ��uQ���ĺ���B���ū�?�������� �\��)�N��L�o��L�� /�F� /���Jੳ=�ȯ���۲�&W�����@Ũ�&�eJ���+�ɴ��̨vD�e��_����+�ɴ���M�̨vD��C �ũ��������̨��˹�D����U����+������̨��˼�� �����ȨRľ������n������MKɱ����u�ì���^���.�J� ��QQQ�3R�¾<�LJ� �# <�L#�I��#�Ȫ���QQM;�K��J�zN�+ů��G,����G���ů��G,���v��QQJ�zN�+ů��G,����G���ů��G,���A��v��QQJ�zN�+����� :��������� :�����QTM;�K��P��zN�+���������M�̨v��QQ��zN�+ů��G,����G��+ů��G,���M�̨v��QQ��M�̨��uQQQ��1¾( ��� ��n�����Ľϲ��`�ϧì���%��� �E���ö:�����xXN��=źG��L������������δ���&�^ ��M�R�®C��C��O w����ux�����N�$ޠ�x���Ʊy�� ��;P�$ײux�d���$ߠ�x���jw��O� q��O �O� q��O J�$ʱ�ë�油��R!����R������w�ͲuSd����J������زuS�/�J������زuS���ttt�(����9��sw�͔�M��U�O⵪O��(�.��u���HPѲd����²�������d�����M�uQ���[�����������/�n����˼�ϧӯ�� ������֪'��ƨ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ�ϧì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ũ�ê>�ì���n�R��ũ�ê>��s���ľ��0��E��5���ì���YNҨ���ବ��@N��� ��?K��QQE��5���ì���YN����C��-����O�0�aᩬ��� 0�H�QQ-����o����O��������< ������� ���"���QQ-����o����O����誷 �|��������ì���ବ�Ҩ������\)�H�ۧ��I���O�L ����F]������ì���YN�u�Ҩ���ବ��@N��`]O� µ��uĴŵ?2ĸ�B��� ��?K���QQT�H�������X�����QQT�H���� �֪A�����\F]O�0�a��ᩬ��� 0�aO�0�Hu&��b���1O�0�HFQD3PĴb�3PO�0�HFQD�1Ĵb� 0�H�1�Ҩ��4�O�0�H��F]H���yu�L°�< �����< ��uTବ�Ҩ��������y���< ������ì���YN�\F]�ɩ��H��O� �u��RT�������J� ?�N��sRQT�� ������ �ବ�Ҩ�����H��O� �`QTl�ç������ ���"��RQT�������J������s�O����\��{��.�����uī�������������\){�N����U���uĪ���秶FQT� /��. G���`RT=�������uQT��������T��R�ĿN����P�K���`�TO���M������.���>�秶��ʧ����\RQQT�N����P�K���\\)Ī�����E�/��E��@-�I����FT��RT� /���� ��I��|��PO⵪O��FQT��i���ɪ�`TL�ȯgı���E��@-�I��򧻪�G�>��uT�N����Pȯg�K�E�/�ȯ8\`�� �N��ů��R&ů�����0�����P���R��ů���n�O�D�u�SOmK��O �¿���S� �N��_�O�D�����#���.�R°�0�Q���֧MJЯ��v���Om2QQ�ů��JҸ2Om2�Ȳu�L��:�k�uTȪ�0G��,���eH�RQT��.ۧ����u��Ī���R��Q�R��T��H����.��^0�0��R����QDOm2Om�R����QDO=3��P�b�N�D��O � �˝��T��\`QQQ�eH�\��E��O3��/N���R�™�̫�����a�O���H������S��O ���u�S��B����y�� ��O ��O�O�Ê�SE��O3���i��¿�#�G����S��������C�9��O �.�����������2�uĴbӫ���̫�������e�J��\){��������o���R&����������P&ì���H�Z���� @�v��QV���U�� �� @������RDŵ?��CU�K��uD��ŵ?�U&f�K�v�QQQD��U�����d��G�d���QV������^K�98P���R�QQQDze�R�QQQ^_�E��O3�K�98�v�����<����P���R���������R���������O3� "/�E=�J������ҲF{�����ƺ�@��Nwʱ��������v! p��髨�ůI2B�M�,����< ��i��v���%��� �E���ë�����@��Nv�a&yJ���v�V��%���N��� ���֌!���U���}�ǜ�QS��E��$�ǜ�QSì���ƪ�7�뜛QS��êOJ�h��QS����}$ל�QSd��4�wנ�QQSz��s}뜛QSLM��'�$�ל�QSj���n�������w��޴ʱʸ���ʱ�ë��QSj���B����=��Xw7�!��'&�@��N^�P����ƴ�@��N��R� ��MU�x��'�$�ה�_����ƴ�@��NF{�j��� W����:wߴʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ë�����eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{�M���[�w�ͱ��������v! p�����OH/�5����I����/-N<< P[��v��%��� �E������,��M���[�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}נ�QQSê�H�͔� ��MU�x�,���wʔ���U������u�̫�����U�����̫����b�,����u�,������U�����,����u�̫� ����U����u��O����U,����̫� u��I���O�L ����R���eP&K�^K��U�����Lwh����QQp ��w7Dz����F����c���ȩŴG�ȩ�R����c���M��FT�O⵪Od�ì���YN��Pì���ľ�C̩��ȩ��`���c���M���M��F]#�Jì��%�=9�ïG����ʲF� ���O����P���v�ì���b#�����oMP&�����˽���ZB-�(���M����N�A[��ū����Rľ¯ZB-�(���M����N�E�'��ƹ`���H�MI�����N�d���I�����N�d�W�Ke2�������PW��MI����I����N��){#����R�R^yJ��I�ڰ��N��RVI�U&yJ�!��JM��˹�RV,P�&��D��DIDƭ�RV]�����,D��RVl��� ²��Iڰ���V���Jյ�<*�� ����I��N�O�OH/X�����Pĩ����-��Ũݧ�=���#⭬ݧ�C��ݧ���������)Q^yJ�MI�ڰ��N��RVI�U&yJ�!��J쪭G�M���^yJ�!��JΩo2M��˹�RV,P�&��D��DIDƭ�RV]�����,D��RV���Jյ�<*�� ���MI��N�O�OH/X�����Pĩ�����ݧ�ݧ�ݧ�Mݧ�ݧ���������)Q^yJյ�Ҹ���RVI�U&yJM!��Jٶ��B�'������^yJ���!��Jյ�< ���V����^yJ3�!��JҸ�����V���˹�RV,P�&��D��DIDƭ�RV]�����,D��RV����4��,���*��G�M�FQV���Jյ�< M�#���"������N�232t�����⵪tNBݧ��'O�����N���T��2�򧷵��M�����F{�O �$ʱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQSj�;��I����E@���@-J7��������֜�QSj�-B+���YN�$�����;�Uj�����QQQd�G � �$7ל�QS��zLw����;�Uj�����QQQj���B�����O w$��������֔!�����U·C����ë����;�Uj������Qx��C���$�ݽ��O0��q� ��RQ�����&��%��������o/�O0��q� ���.�ï��˧�R����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫���F{��ɱ.��x�� �$�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�̵��w�ʱ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ޠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}��ʱ�ë�͔��D���U�K��� ���R�QD�^K��U���}ߴʔ��D���U�K��� ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v��QQQ��QQDy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����ˊ�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ZB-w޴ʱ��������v! p����,��L���v��%�����ZB-v!���U���}栛QQSj���n��M� ��wʜ�QSj���[��̨w͜�QS�ZB-�(��/ñ̶�wͱ�������֜�QS�ZB-��w7ǜ�QS�ZB-��(�dw޴ǜ�QS�ZB-����w�ǜ�QS�ZB-��C��dw7ǜ�QSd��=�}$ʜ�QSj���n�����wh��ë뜛QSH ��}�DZ�������֔��������U���X��������X��ǿ���X�X���H���I��ȩ���Ӳ�F&�^N�^�⵪����&���U���Gȯ1�ˌ� ��M�O0��q� ²� ��� ��M�v��QQQ^���J� �O0�����ˊ��XX^����Ʃ���ȴ�H���ȯ��ūH�!���U™�M�w$͜�QSA�,�-+�P�״딾 ��MU���H���Gȯ1w7�QQQx�����N�$��ʜQQQx�Ū� 2�$״ǜQQQx�������,��wʱ�������֜QQQO� q��O J7h��ϧ�V����Vէ��?X�����R��D�������U���E����������|�̷�O'v�ϛQQ���E����������|�̷�O'���v�ϛQQ���E����������|�̷�O'��/��v�ϛQQ���E����������|�̷�O'�0�������ʲ��R˼DO ^K��U� �Y���⵪������w뜛�S�C��C��O w��ʱ�������֜��S[:�(��,��w$ǜ��Sj���B�����O w7�͔QQV ��MU®C��C��O Jʴ��ʱ�������ֲ��˼DO ����P&M��H�ۧ� /�L����ʽ��)�&�^ ��MU�x���5��$h���;�Uj�����Sx�����N�$��QQQx�ƪŪ�$�QQQ��H���Gȯ1wh�QQQ����E���?���������f�$$�ʜQQQ�u!���U¨�4ï�}�㔾��HPѲ��4ï�²���������4�ï�����˼���=��HI�ñM��R�™�G ���G�����űHI�ñM�U&Ʃ�UHI�ñ����u�L��ľ��HI�ñ���Q��� �������G��O ���\��\���\����\�Ĵ���\����\�������\���\���Dz�Q���<��������MK�ڻ�����񲽽uS!����*��CRQ�W��W��M@-�������RQS!���������RQQ�M��������^����ɬ�t���� �������R��QQD��ë���Ĩ�.�#�I�ñ�����_¾����b��J�b�t������uQQ���ũ�^G�L^��M֯�����uQQ�M�^yJ���<���������ů�v�QQVG�L^��M֯�����D��Ʃ2���<���J����<��W��������zN�P&��ś��űHI�ñM��R�QQQD��ű�������¹!��J��W�������ز���F�9K�"�H�� ��R��"A �ƴ� N2��P� N�u�T"A �ƴ� N2�ȯ�ƻ=�P��Pȯ�ƻ=Ȩu���Q6�K/�P��P6�����Q�¯�ôYN��P���u�S9K�"�'K��'K��ľ¶����n��°O������� N��H�<���RQQ&6�K/�*İ��6��+�6����6�K/�*'K��b��Dȯ�ƻ=�U�ȯ�ƻ=�+M, �>*����uQQD=�M�� J�=�MvQQD���ï ܩ��O��O �� J�=�MvQQD]�������X�� J���F�O�¾������^�PO��RQQ� N���/�2k`�E��O3���R��O*,A�PO*,Au�SO��N��,B�DO��6�UO ������6�UE��O3�6��?��]zN���R������QȪ�����?���m�Xu¾����m�X^���J����m�X�����˹F]����L|E�u�&ƩľfE���R¾@���y�E����F{b�����@G��uFO*,A�O��i��� �D����@G���.�ŧ�uO �b�����@G��.��\F]zN���#��@GR�E��@Gu�Ȫ�����?RS!�����J�:PԪG�To�RQT�Dm�X�E��@G�m�XuQTH�E��@G���MB���u����T�#���L|�E��@G`QQV��ak\��L���3�ëL�R��z��s�n�O�D�u�Sz��s���P�u�Sz��s�ëL��ëL�u�S ����C�L�I��̨���,��̨�O�0�H��S ����C�L�I���I4P�O��,���I4���S ���?�O�0�a�O�O�0�H��S ����C�L�I��]����P�O��,�������P������������L���3R·�G��L�uĪ��L�ʲ����G�W�G�J��G��L��J������G�\){ ��� R����J�&Ʃ�U�I4���O� ��O�0�a&G�R�������L���3b��I4P�G�J��b��I4P�L�ʲ���`T�����*��J�쯵�`]��Rı�ëL��.���� �QQQ�,���I4��QQQ�,��̨�O�0�H\�{(ON�M�(ONR���ï�RĻ�(ON�N<< uT��[��#6�NR�QDO'K����ÝQQQD�� L��������������E=�D4ŪN��@�ì��������E=������$ߧ$ߧ$ߧǽu���N���|DH`�QQD9A,��B���� �>����4��C��4���ì`��QQQ0���ۧʧʧ杛���O �ۧʧʧʝ��-Iۧ$ǝ���Iۧ���\RTL�����DE=�D6������E=�Dų��`�Q'K��� DH�QQ'K��P�Ū�������0�����������`�Qŵ?K�'K��ŵ?K��uQT��'K��ŵ?K�ۧŵ?K�D6���ůɧͧͧͧ'K��'K����QT'K��QT���Dɧ�D�Dܧ�\FQR��ORĻ�(ON�N<< uTcIۧǧǧǧ�FQT��B#6�NRQT���� �>�D�I��> ����ʧʧʽ> ����ʧǧʽ�ǝİ��� �>�D��[�`QTO�#6�N�N<< \)�H���4��(ONۧM�(ONF{�j��� W����:wߴ�DZ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴ�ǔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{���"/w$DZ��������v! p��ӯ���-ȧ�B����XP�#����v��M�x�Z��Jh��v�G�U�G�M�,��u!���U���}렛QQSì���ƪ�7�뜛QSj���B����=��Xw�ǜ�QS�C�}�h��QS ��}�͜�QSj�. �ì��zN�+ì��YN�״�㜛QSE��"A �ƺ� N2�$7ǜ�QSK� EK�;�G �;�G }נ�QQSE���N��B�J�$͜�QSd����}�ǜ�QSE����ë���;��w״ʔ�_��"/�n�R���eP&K�^K��U·C���ǜ���QQ ��� ���'��wh����QQ̫��ɴH��L��H��L��.�J7㔛�D ��MU�x��C���望�����H���Gȯ1w7Dz����F{��I�N��}��v! p���IL�����Ч�N������V�����v�_�I�N�ôn�R��������U��H�Z�u!���U���}栛QQSj���B����Yw7ǜ�QS����������w͜�QS��êOJh�ל�QS=��̺=���}7�뜛QSj���[���X���$$ǜ�QSj���B����=��Xw7油�F{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�O �$ʱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQS�@-��@-J7��������֜�QSj�-B+���YN�$�����;�Uj�����QQQd�G � �$7ל�QS��zLw����;�Uj�����QQQj���B�����O wh��������֔!�����U·C����ë����;�Uj������Qx��C���$�ݽ��O0��q� ��RQ�����&��%��������o/�O0��q� ���.�ï��˧�R����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫���F{��G��x�� �$޴�v! p��ҧԩMXN�� W��=�s�p�H����Ȫ�쪿���ݧ�<�ݧڷ�v���%��� �E�� ����G�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����t�M�xXN���)VK��U���n�������w���ʱ����ͫ��ë���)V��eP�DG��DK��U�E���� �̶��̶���"}ʱ�������֜�����d�ȩŸ Zw޴ʱ�������ֲ����)V��HPѲG²Ȫ���e��G���������G��G�M�,�����F{���ɮ���A��L�wʱ��������v! p����� 2[�#qŵ?�A��L�� �v���%��� �E���O�=�ƺA��L�v�a&yJ� @���:�Mv�V��%��������)VK ����,��U�i��u�����/�D�ů��)VK���R‘��}ߠ™*s�}��ʱ�ë�ײu��ɮ����=��P�$ߠ·�ɮ���A��L���wh��������ֲ��)V��Cũ�R&����� ����=�ƨ�[�����i/��P���=��+��P��. G�����W����ɲ�H��\���F&��RQQV ��MU®C��C��O w�h��������֜�QQx�����N�$�ߜ�QQx�Ū� 2�$栛QQQx�ƪŪ�$Ͳ��)�!���U���}ޠ��QSj���B����O3}$ʱ�ë望�S[:�(��,��w$ǜ��SE��[:�[:��w�����ʜ��SA�,�-+�P�״뜛�Sd�G � �$7ߜ��S �Y���⵪������w㜛�Q��O ���B�����O w7�͜��Q�ϧ��C�X�������j���n������2�$��͜��QuQQQ�)��ϧ�V����Vէ��?X������D�������U���E����������|�̷�O'v�Q���E����������|�̷�O'���v�Q���E����������|�̷�O'��/��v�Q���E����������|�̷�O'�0�������ʲ��)����N�E���n�R�™�̫��������u�S���N�E���?���u�S���N�E�����Ű_��P��u�S���N�E������������u�S���N�E����_��P�M�`){�_�uİ /��O3B�M�<�ܩ�FTL¿���������D�ߧ��D=ȝQ��M��_��uTH��������ȶ�ï���RQT�¹�����;�Hۧ�\RT� /���_H�<������ź�M�����ߧ�ǹ`QT� /��M�<�ܩ2���"������FQT��H��,������ʽuQT� /���W <��D��Ŀ����� ۧ�D����O3��L������ʝİ /���W <��D�����Ŀ����� ۧ�D����İ /����3XM�īM�O3�`QQT��O3��L�������\F)�"����O R��"�����IH���IH���O uĸ�RT� /J�N���JFQT���`TL�M�O3�@-�uT� /�İIH���IaM�`QTO���\){�_�����uİ /����������蛛�QQQ�FT� /���\�\�Q�����\�\Q����Q�����Q����������QJFT� /���QQ�\�\Q�\�\�躧���\�\��QQ�\�\��QQ�\�\�\�\��Q�\�\�FT� /���\�\QQ��\�\����\�\Q����|Q��|Q�\�\Q��|Q�\�\�����\�\�FT� /��\�\������Q��\�\���Q�����|Q�����|T����Q�JFT� /�Q�QQ�\�\�QQ��\�\�QQ��\�\�QQ��\�\�QQ��\�\��FT� /���FT� /���W��EA�B��N������ԲFT� /�����������������������FT���FTO `������@�,��Rľ™��� /��™�G ���G���ª�������ª����?P��P?���b�M�<�N�����u{�������� ���G���`T]�M�<� �Ho2I��`R{������ �RQ�RQ��ϧ���RQJ� Ļ�N�#u�QQ?+��#���ϧ� /��R�QQ#�����2B�oɬ)RQ��ϧ��� RQD��� ��k秩������ ������ R�QTA��������� ����� `QQ��FR�ϧ�M�N�R�RDOkRD �A������� ɧM�<� �FQ��F��&yJG���Ʃ��D��J��DO������D�N������D����L®/���eۧʝQQQ��õ�����e���Q�OH���/oG�/�ʝQQQ�OH���õ��oG�/��Q�OH��H���u����L�O�õ��u���T���.ۧ�/�OH���/���QQT���.ۧ�õ�ƧOH���õ�Ɲ��QQQO�`�QQ�M��32Q����u�������.ۧ�/���M���`�QQ��QQ���.ۧ�õ�Ƨ��o̧���`���T���-����uQQQ����u�o�R�Q�������������/�ʽOH��H������`�QQ��/���L�O�OH��H��M��32���O��QQQD��HR�QM��32�\F�DK( ����4X�Ʃ���˼�����������Kŵ��GRľ����������Kŵ����G`]6��G��W�u��L�W����W�RQQQ��ɰ� ����W�RQQQ�E�L ���̫�������X�W ���uQ�M�X��E�L ���uQQ�P��ɰ� �����W�\RQQL�� ���G��E�L ���uQQQI�t��oMP� ������G��t�`�QQQW�䧩ɰ� ���\`]G��G��ϧ6��B��fO��X��ɰ��Ȫ��I���L>�P���ⵯ<��R�G��G�JG�'O�\����; �����Ƶ��� ��RľO���D��;�K��ľ™�n��=���™�n��=���2��P��u�S��; �����Ƶ���4 ����L�P��P�ɟ����>�M�<u�L�"��P����®��������񧮧�������QQT. ol�M�<�O������ǧ��I`��Pİ�����"����QE�P�. ��> ���Ȩ�Qų�P�W�,��ʧ�ǧ�޽��,��ʧ��潹�R�QQ���Ʃ�/ç������� >��"��P���ɽ����\\uT����uQT���"����ĩZ����Ļ��_����M�t�ǧ����"����ĩZ��������GM �Ȩ�ĩZ��������GM �E���ĩZ��������GM �ųƨ\F]#��>��İ�������G���>��\F{�ŵ���$״�v! p��Ω�� �@�,�W��=�sv���%��� �E�����E���ŵ���v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U�ŵ����ŵ����n�$״ǜ�QSŵ����ŵ��������$נ�QQSŵ����ŵ������wנ�QQSŵ����ŵ����ë��P�$״ʔ�̫� ����U���b����������X@/��������F{��ɱ ��M�x�� �$޴�v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���P��� W����w޴ʔ� ��MU�x�H��Z��w״ǔ��t�M�xXN���F�K��B��ôëL�R��K��B��ôK�����H��O #��*�������Sz��s�n�O���֧���֧] ��Sz��s��O����*���� ��S ����C�L�I��]����P�O���������P�,����������S ����C�L�I���I4P�O��,���I4���S ����C�L�I��Om2�O��,��Om���S ���3.��̩����P̩���u�SH�A���IH���O*e��SN����n�O�N���S�-��C�L�I�O��,����"�����SK��B��ô����98�i������98�i�u�S��[��̨�̨�� � R����J�¹O*eJ�  �MKɴì��&K�N�DK���`T���J�[��M��������uQQ̨�� �G�RQQQ����98�i��b�98�����X����\R�����J�[��98O� �RQQTL�98�y�O� ��I4��J98�y��u��G�����98�i��b�98�M���98�y\FT� J��FT���*��J�쯵�`]��R�L�ëL��,��Om2��,���I4P #����������uT��N�DK���,��Om2��,����"��PëL����ëL�\){"#ZR�̩��������̩��.�^0������`�9 ����,:����GR��9 ����,:��P��P�u�S��G��]G�����S9 �������ŵ�P��P�ŏľ��0��̫���5����𵻻\){G�,:����GR�L�ŵ���,:��P�ʽuT�P�����źŵ�Lŵ�\`]G�,:�B�ŵ�۱GR�L�ŵ��ź=���ʽuT�P������H�H��ź����Pŵ�\`QT��,:�B�ŵ�ۧŵ�FQT�PĶ�������H�H��ź����Pŵ�\\R�L�ŵ��ź=���ʽuT��,:�B�ŵ�ۧŵ����FQTL�P�H��ź����Pŵ�`�Q3���#�QQ?�����#�uQT�PĶ���O����ʧʽ�3`QQT�P��O����ʧʽ�?\`��ɴ��]������R���ɴMW��'K���'K�����]������R���� ���Ʃ�PB�����]����t� �W���O �=�Ƨ���v�O��"R��O���H �uQO��"���RQT����Ƨ�uQQT�������!������\RQQO����RQT�'K�#� �\R���RtP'K�\){I����������Ƨ����u&0GĶ��k������R�L��b����P�b�]�����Pƽ�uT��k������ɱM��W�驻���W�o����Ʃ���P������ƽ^Ʃ��\RQ�`�D'K�]���,��}$ʱ��������vVK( ����ӧů��vVK��URQQSj���}�QQ��dw״DZ�������֜Q�uV_��,���n�F��K��B��ô98�R��O��N��PO��N�O�:��S�̫ɴn�O����֊�Sd��n��������®ë�ۧ�۹����6�Ud��n��������6�P�O������b�98�@G*��G�,��u���@G����98P���=9��q���ݧ���������P�����v�L�Ʃ�98�@GvQQQ@G�b����+=9��q��Ʃ��uT�����M���@G��uQT��¶�^y��˽̨��d��Ia�+�J���@G\\){�98�@��:b�98�@G*��G�,��\){�=�Ƶ��98�98�yu�L®�ë��uT����J�[��98&ëL���Ŀ��ۧ���`�����I4P&98�y�98�y�R��QQVW�,�R��QQV��ëL���&Ʃ�U�#��ɬ��u����QQQ�=���+o��LR�����QQG�Jح��J#�JJR������Q��ɬ\�FQ���`]3��98�B�@G�98�yuĸ�RT��.ۧ98�@G�o�^y�98�y�FQT��RQTL�O�0�a����=�Ƶ��98��98�y��uQQT�=���+o��L�O�0�H\���� �ůI����R�» �ůI��=��X��=��=����=���I=��M����S� �ůI��[���4 ��ůI2�O��4 ��ůI����"���R�:RQ&'K����RQD��QQ&���țQDų���R�QD���ȱ�I4PQ�kR�QD���q�QQkR�QDm�X�QQQ��R�QD�����HQ���R�QD�?�PQQQ^�ɰ����H�&E�/ D����P����R���QV <>QQQ^E�/ ����R�Q����D����PQ���R�����QD�PQQ�������RQD�5�P��RQD9�^�P���˽��ůŴG���G`�m�*eJůŴd�F]G�O�0��B��:�XRĪP��J�W��Z��ůźO�0�H*��J�:����BݧB������ñB��\F]G�O�0��B��ï�RĪP��J�W���ݧ��?�����ůźO�0�H*��J�W�������۲\F]G�O�0��B�� ��RĪP��J�s��ůźO�0�H*��J� ��P6���N���4���A�=�Ƨ��\F]G�O�0��B*��"������XRĪP��J�W��Z��ůźO�0�H*��Jԩ��P������ũ�M2���۲\F]G�O�0��B� ����RĪP��J�W��Z��ůźO�0�H*��J٬�P������������ȫ/�B����B����V��\F]G�O�0��B*��"����� ��RĪP��J�W���ݧ��?�����ůźO�0�H*��J�W��֧��ا���ԧ�W��ا�Y������������\F]G�O�0��B��ïX�Ȫ�����I ��RĪP��J�W���ݧ��?�����ůźO�0�H*��J�Z������ا�����������Z�����Χ��ا�������������۲\F]G�O�0��B��ïX������RĪP��J�W���ݧ��?�����ůźO�0�H*��J�ݧ�ݧ���۲\F]G�O�0��B��ïX�Ȫ������;4����RĪP��J�W���ݧ��?�����ůźO�0�H*��J٧���ا�Y���\F]G�O�0��B�|�oMX�� ����RĪP��J�W��Z��ůźO�0�H*��J�X�Ȫ��A��P��� ���\F]G�O�0��B��e�"RĪP��J�M�ݧ��ȫ���ůźO�0�H*��J�\F����G�F�:*�����n�F]6��Ȫ�����R¯��P���1�u���M�X:*�����n��򯀶��R�Qd��n��A����ȪR�QQd��n���¯���-��u�QQQd��n��o�R��d��n���积���d��n��A������-�䝛QQD��a-��`�QQQ�:*�����n��򯀶��R�QQ�������uQ����1����N�����n�Rľ�N�;�FT�O⵪ON������N���Ɖ�N����u�S�����H�Z����H�Z�ľ��ôì��RQQQ�����n�RQQQ�4M��n�`]GI��ȩ�H�ZI��uĶ��H�Z�m������P�����N��������Ȩ�FQ�R�L�'KƩ�ȯgį����G����D��`�Q0���/�������i��bN�J���ֲ�J���ʲ`�Q�����ëL����H�Z��N�ëL�^'K�'K˽uQTGI��ì���H�ZRQQT�,�� ���ëL�������ëL��Q&0�0��ȩŨ��Ʃ���\��]�_�����u�GI��ȩ�H�Z���FT� /��ض��������۲`���(��O�N"�R��L�M, ��Ȫ�O3�ɪGX�O�N"�ݧW���4 �ï�X��� �_�#|P����|�R������CX�W��B��_����|�v��:�P:u�S:��:��:u�S��(��E���5l��E�u�S��(��o����o�����O�N"�����ëL�R��L��B��"�MW�ů�O�N"�v�O�0�Hu�ϧ���ڧ� �E�'�,���W�ëL��RF]�ïȱ�� R��ïȧ�� ������C�2O�N"�R������v�O�N"u�Lµ��G��ūao����.��b�_o����.��bDO�N"��� ��J�O�N"�uTE���̫ɱb������˧O�N"�����ëL�\){����R��ï�������B���>����B��ï�Hݧ�#�ȫ/PB�b#:MW�ů���|R�����ȫ/PB�oG�� �-�#|�v�u�O��r��NK�RTO�uQT�r������P&;��4�ɬ�"/��QQ�r�B��P&;��4�ŬŬ��� ������J�M2�� �����PO�N"���JJR�QQ�r�B��P&;��4�ŬŬ��� ������J�O-ȧ�|�Ȫ��PO�N"�\���3�����ߴ������R��R���ľdU ���ƴn�O�������O3�G ������ľd���̫�����DdP ���ƴ���������M���J3�����ߺ�����ߺM����������`]�IH���M�u�L¶1��'O��1��'O®�?��E�/�A[��E�/���'O���TL�®�?�O'O����,��®�?�O'O���������L�®�?2'O��1��'O�'O�u���QQQ����Q�o̧��?�O��?���'O�`������¹�'O������T/ç��?��E�/`���SA[��'O�� ����A[��E�/�'O�u��QS&��?�O��?�O��DA[��A[�˧'O�`����PQQ��O3�G ��O�H���\��M���uT���G�1��'O�����\F]�I���uı�����H�z#��D��?�O��D��?�OİIH��M�`QT�.lDA[�FQTO��"��\){�I���u�L¶1���Ļ�1����&Ʃ�U��?�OA[���u��Q�������秮�?�O����O��"���A[�������A[�R��QQQƩ�����b���?�O�K���\R��QQQ���1�������QO��"��\�uT�1���İIH��M�\F�E��O3�(,��R�™�G ��������S-����,�N@>�ì���ì���ľ��0�̫���-�����`]#��R�&yJի������vV��%������ɴA�����vVHL ��!�������@GD��D@D�uV���@�Ļ���y�Do/R��Q�ѵ��D�O��D��u�QQQ^y�yR������˽�RL�9����%���ȴ��I�3�-���&yJի������3vQV���G��9�����J�ëũ<9����HL ��!���H ��ëD��D@D�uQV���@�Ļ���y�Do/R��QQ�ѵ��D�O��D��u��^y���y��QQV���G��9����������˽˽�F]�����*��2µ��u�ì���ɷ����̫���-����Դ����\){����ñ������u�ì���ì�����̫���-����Դ����\){����ñE��@G&Ʃ�U���#�L ������@ܩ��u������@��ì���HL ����ñ��������#�L ��\���ɴ������������F]���<�M�<�H�=��RĻ�=�������uQ=������`]���<�;�H�=��RĻ�=����uT���=�\)�ϧ쯭��ɧB��� �|��ϧ�W9�� �|�=�#q��W����ƫ����Z���#���[���P�2�����F{���<#q��=��NR��q���[¯��Ƨ���N� �_��=�vĻ�=�����N�uT���=�\){���<� ��� Ʊ=��N� �R���3#���[¯��Ƨ���N� ����=�vĻ�=����#uT���=�\)�]���<#q��HN�CPR��qHN�CP_��=����K� �?����ì���ì���`��Fì���]� ūa��  �M�ì��v�<�L���u¾3D<�L�ì���o/�<�LFS��1��ǹì���o/���`]�:�u&����ʼQD3PѲ�/������ɬ�ì���D�1���ūa��êP�P��G��W���ܵ����F]=�MR�u&�����RD3PѲ�/������ɬ�ì���D�1���ūa�ԯ�M�εɧB��������F] ��R����J��uT�:�`T���J�=�M�uT=�M`T���YJ��uT�����*��������������״ì���\`]�_��0����L�0���/������0��N�D0�������ʽ�uT̩��������̩��Ĩ����.��^0�0��̯M种�\������=ȴ���� ��E=��GR�™�G���u�S����=ȴ���� ��E=����u�S����=ȴ�ë�-�P��P�ë�-��u�SE�����zX�E=�P��PE=��u�S����=ȴ��ɬs���ë�>��P�ë�>�u�S�N��<��O�<��O�����IM���Kŵ�#�����G�G��� �����R�GXJ�M�X����E=���ë�-���FT�P����ͱ�ë�-���D'K�嫻��=ȴ���� ��E=���M����ű3UĮë�>���@��I�é�汪����\`�����H�ZR�� ����C�L�I���e���,�*e��S ����C�L�I���e�M�����,�*e�M����S���������O�ì���M;�K��PM;�K����S������C�L�I�O��,��ūH������Sz��s�n�O�D�u�Sz��s���P�u�Sz��s�ëL��ëL�u�S ���?�O�0�a��PO�0�H��MKɱ����R�O� �u�ì���RS�3RQM;�K��RQQJ�����̨�;�����I��E���̫ɺ@�+���@ܩ��$ʺ���@ܩ��M��vQQJ���ŵ?��G�L�����uS��1�RQ!���.�uQM;�K�̨RQQJ���ŴA�O ��Ȫ�3���$��$�M�̨vQQJ��+ŵ?�������ūH�̨vQQJ��+ŵ?������̨�FQQ�( ��RQQ&����ɬ�̫��( ���QQ������O⵪O�忯��YN��ϲ��� �M� R����J�¹�MKɱ����FT��� J��FT�����*��JЫ�������`]��Rı�ëL�����M� ���,��ūH����\��������ƴŵ?K�R��RSM�,/�P��uS̵ɬ��ƴ�ë�P�Ɵ�m����C�y�� R��Ʊo���uĸ�H���CƩ�P�Ʊo����QV���y�� ��C�J�Ʋ�uT���y�� ��C�J�Ʋ��L¨�����ů�G�J̵ɬ��ƴ�ë���C���y���C\uQQTĸ�O⵪O#���#���QQQl�ç̫�������eᯬ쯵��"��\\){A1����M���Ʃ�������ƺŵ?K�R���u�m����C�y�� ��FT�ƺ��ç�`]A1�������Ʃ��D������ƺŵ?K�R��;�Hu�;�H`]A1������N��Ʃ��D������ƺŵ?K���F]A1����O��A�Ʃ�������ƺŵ?K�R�Ʃ���P�������P������ uĪ�񧯰�P��������FQQ������ RT��������Ʃ�ۧƩ������ �T���M���ƩƩ����\F���=��n�R��O��N��PO��N�O�:��S ���X�P ���X�������S��=��"/O�"/O��#^�ï�X�O����P��F���f���O���>�A�� �_ӵ���>K;Ib�L|��ٸF]�[�^l��� �Ƶ�G�QQVPQQ����I����F]"���MB�����P:#\]"���MB�����P:�[�\){3u�!�������I�����I*�ɩ��B�!�������I�M-�!���oM�������,J�=������F].�P�u�!��R3u!���oM*��CRS"/O�B�#��uS"/O�ů�B�#���!���.�*���RS�����ɬ��ű=��^���J�����G��Ŵ����˹��F]����0�_�u�O��N��O�zN�RT��uQS.��������T���+����|b�L|���2�.��\F{�j��� W����:w޴$ޱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj��� W����w޴͔���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��M��x��C���油��R�QD���c���^�������U���X��׿����F{�9 ���wߴʱ��������v! p��@Ũ1����W��v���%��� �E����ú9 ���v!� ���O0��q� ²OL�H��;��I�u��QQS���.�ï���;��I���a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSE���� �̶��̶�*��Jh����QSE�'���EK��E�'���EK�}�ʜ�QS���GO4P�$7͔���_���ƪ����9 ����n�R��b�J�b���v���eP& �I^�����R�QDK�^K��U�p ��w״ײ���R�QDG^ ��MU�x�d���$栛��Qx�ƪŪ�$͜�����H���Gȯ1w7望��x�E���w��ל���x�;�Z���$ޱ�������ֲ����R�E���^A[�^����W��Ƹ�ȶ�R�����J������=���IP���I���O�L �����F��ɴ��� F]~gԩ��A��f ��fzL��f ƃ�ƃP �ë�ñ����F]L���R��A�����RQ��ԩ���A��k�k�k�k�k�k�k�k\){~g��»=ȧ��;�P0G����W� ��F]~gҮ�fzL��f ƃ���F]~g�M�@�Ƨ�ů� @�, ��4[�ūa��ԧW��]�űyN�uĪ��L�N��ūa�N����n��N�D[�ūH�����uQN��ūHRTG�J̸Ů�0G�O��%�=9�ïG����ͺvQQQo�R���N�DK>=�|�JO�IK�K�v���N�DG�JO�IK�Gv���N�D��� ��JO�IK���\F]H���N�uĨ⳺]�ŧ[�ūaĸűy�N�\){�W�����,�N�u�L�o- �o- ��űy�N�`����,�P�,�=�|�#ï��2�ëL2���M�R����J����Cµ�C�O���������ȧ��C���ϧ�ïȧ���O����P�������O� ��)Qϧ���֧O� ��R�����J����Cµ�f��PO� ��9��s�O� ��fO� ����ϧ�.�s��������֧O� �)Qϧ� ���"�O� �P�_K>=�|���ݧ�ȪaëL2���M�FT��� J��`]��RĪ��ï��Om�RTOm���,��Om2��.� FQQ.� `]GI�0��uĭ���H�Z��^0�0��̯M种�FT� /��G�J�\�����O������Z����5����0��J�0��ݧï��Om2�J�ï��Om�\){�_�u�GI���ʽ����ŵ��n�RľO���D��;�KO3�����m�� L#ï�=�������ŵ�����������u�S��ŵ��ŵ���ŵ��u�S��ŵ���B��Bu�S0��M�y�� �ª�0����I���`��0����I����ŵ������Rz�H�����R����RG ��RG ���RM���RM���R�ï��RM�R=��R�m�R�� LRO��RO��R��Rů������ŵ��ŵ��R=l�����ŵ���BR��ܩ�F]� �R��ŵ���[�#���u� ۧŵ���[�#������`T�ŵ���[�#���^Ʃ�U���H��D���ѯ��H���u=��X�ŵ��RQ������ #����ŵ������H[�\F]O3�R��ŵ��#���uO3�ŵ��#������`T�ŵ��#���^Ʃ�U���H��D���ѯ��H���u=��X�ŵ��RQ�����O3#����ŵ������H�\F]O3R�����u�Ho2�. O3����\���I���6��L�R���I���YN��PYN�u�S�I����ʼn��u�S�I���?P��P?�u�S'���E�L ������6�����yuϧ�W��O ���X��ȯ�9��PB���������RϧO���#ï��2�M2��ȫB#�>�[�����9��R��O����R&y�y�RD@�Ʊ�IYN��@�Ʊ�I�y��RDE�|��IYN��E�|��I�y��F]6�ȳ�Uy�u���6������y�`]6������|��u&�fľy�����F]6����4 ����|��u�L·�?+�C5���?+����`�H�P�?+Ho����M"��C5���?+����`��P��G�J@����I�H����@�Ʊ�I�����R�QQG�JE�|��I�H����E�|��I�����uQѲ�H����`]6��������|��u&�y�����RD��֪��������ϼ�Qҳ�� �ìPOH�>����êP��,�� z���X� ���QIK��?��L�����P����Y�a� @���Na�ʼ�Q����z�5 ��P��G �����P���?��L���Qì��%���ȴ�Y�H�L��� ���$ì���ϼ�Q��������ϧ�����������������Ы>��֪���������)�ܿ��C�L�I��GR�™�G���u�Sܿ��C�L�I�O�D��`�ϼϧ�:'��� �P�2�G����){9����L�RQ�� �����>��� ��y��Pů��B�O���� ��vS��� ��yuT��G���� �移�� ��y`�ϼϧ� �PW��I������ �P�ɪi�"��){G�G�M��o����,���ɪi�"RQ���Ƨ�ܿ��C�L�I��M��o����,��]M����ɪG��vTGXJ���ܿ��C�L�I��M��o����,��]M����ɪG��vQQT�P�9����L��ܿ��C�L�I��M��o����,�\F�A����R�Ω�N"�zO���P9�M2� ç�L|�_���B#��ů�v����ʧǧͧ�ק�FQQWMK�,���uQQ�MK�`R��9���?������Xv����ʧǧק������FQQ���MKɹ�MKɧMK�`�T,���`QQWMK�,���uQQ�MKɧMK�\)Q�������? ��v����ǧ��ާ�FQQ�?��1��,����`QQWMK�,���ʽD��1��MKɽuQQ�MK�`R��������=ȧE��M�P����ȯ����W��v����ǧ���������FQQ���MKɹ�MKɧMK�`�T�?��1��,����\RQWMK�,���ʽD��1��MKɽuQQ�MKɧMK�\)Q�կO�zLɧ���W�P9�WA2Ȫ����< �M�X�W��v��¾B�DL����B�D�C�L��B�D �ìuQS��C�LDL�����C�LD�C�L���C�LD �ìuQS�ů�B�DL����ů�B�D�C�L��ů�B�D �ì�QQW��B�D�C�LDů�B���E���¾L���C�LD �ì�QQQȧE�����\��ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧ�êPί��"��1쯭���P�ٶz��L��W��Ωo�I�NH������ϧ]M�2�կ�?���� @���NHݧ���h���ϼ�ϧӯ�� ��Į���������ʧ�O�/��ç�5Ȫ�5Ȫ����)���ůɴMR��R'�/�P'�/�����N��L����R��u�L·��i��b������ůɴN��L������uT��k秷��J���\F��ϧΩt�W����O/�O3��M�X�H�ۧ���N��L���Pk`��ϧΩt�W���-ȧO3P�M�X�����I�������N��L����F��ϧ�����/�0M�){�MR�����u�m2���ůɺo���vQQQ���ůɺ���,��vQQQ���ůɺì���FT'�/�GI�`{�O �w�v!���U���}޴ʱ��͜�QSj���( ��$ʱ���͜�QSj���B����O3w�$ʱ�����������;�Uj������F&�^ ��MU�x�=9�O0w�ײ���ϧì���%��� �E��Ƶ��ë/����x�=9�O0R�Sx�-�4wͲ�QQ��ϧ�Z0��ɷ��B����dR�Sx��� /}h��QQ�ϧ�O����� /�O�OH/�������R�S�O w�ʔ!���U����w�͜�QS��G3���õ-�G���wߴ放M��U�O⵪O���G3���õ-�G�������G3���õ-�G���� <��۽��˼�ϧӯ�� �����ק��2�ݧٶ���M���C��o��������ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ�ϧì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�){�j�����/�����/Jh�ʱ��������v� ��MU�x�'��LP�$7ה�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh��� ƫ�XJ0��)VK��U�����/�9��X��u�QQQj�����/�A��X��u�QQQj�����/�(��@����u�QQQj�����/�ȩŧ蹹F����<ë�ôG����-�R���6��RS�������-��¸���G�����RQ�������-�RQ���<ë�ôn��GRQ�觷��<ë�ô��� ��G`)ĸ���G�R巵�<ë�ôn��GR��巵�<ë�ô��� ��GF��ɴA��X�������AN�R���ɴ�����P��P��������A1������+��������� D������AN�R�o����������������u&0���F]A1������+b������D������AN�R�O ����u�=9�ïG�F]~g鵷��� H����������F]������AN��������uı�鵷��� H����������`]A1������+�������ɴA��X�������AN��鵷��� H��R�AN�u&3�O���F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴo���F������M��%���޴$$Ǿ���ʺ.��FĿ�����M���ȵ��J����ȺMKɴì���FĿ�����M��K'��F�E��O3����RľO���D��;�K@G��™�G �������@GR��L�9����%������ɴAvQQQ��������W��+����9������Q��������O����G���������JĴ�罺���uQ^f����*��RQVyJի������vQV�����������RQVHL ��!�������@GD��D@D�uQV���@�Ļ���y�Do/R��QQ�ѵ��D�O��D��u��^y�yR��Q����˝���.��@G��®�.�����u���^������.�����R���VHL ��!����.�P������@GR����QQD@D���D��D�u���V���@�Ļ�[���[��˝�����󻩩2ϵ��u���:���󧵭�R���TO���P����������QQQHo�R���TW��+�����ɷ�9�����\�FRL�9��59����%���ȴ��I�3�-���&f�����O3RQVyJի������3vQV���G��9�����J�ëũ<9����HL ��!���H ��ëD��D@D�uQV���@�Ļ���y�Do/R��QQ�ѵ��D�O��D��u��^y+���y��QQV���G��9����������˝���.��@G��®�.�����u���^������.�����R���VHL ��!����.�@GDD�2��u���V���@�Ļ�[���[��˽˽�F��=�ƨ�G�O�ŵ���GR��RS�=�ƨ�P�=��uT�=�ƨ�G�ORQSA'��O�A'����=�ƱG�O�QSŵ����ŵ����=�ƱG�O�QSGP��PG��S��G����`){G�ŵ���ũë����R�L�� �A'����=�ƱG�O�QG�Oŵ����=�ƱG�OR�QQVG�O�� �R�QQVŵ��A'����=�ƱG�O`�ŵ���ŵ��#q��Q��=�ƺO3�J�����I�ūܲ�Q��=�ƺO3�J��,9���,�F���=�ƺO3�J�����ܲ�uT�=�ƺ��#q�FQT�=�ƺ��#q�FQT�Pĩ������=�ƺ@G�� �\RT�=�ƺ�ۧ� ���FQT�P���E�/�=�ƺ@G#q�\FQT�PĩZ��H��Df«�ŧ��`����Df��=�ƺ@G#q�\FQT�P���f���f��=�ƺ��#q�\FQT�P���E�/�=�ƺ@G�ŵ��\FQT�=�ƨ�G�O�ŵ�������#q�FQT�Pĩ������=�ƺ@G�ŵ��\RT�P���E�/�=�ƺ@G�� �\FQT�=�ƺKL�#BO�f�`QT�P���E�/�=�ƺ@G#q�\\)]G���M�,��G�ŵ���G�OR�G+��ƱG�Oۧ��ŵ����=�ƱG�OR��QQQDG�OA'����=�ƱG�O���QDŵ��A'����=�ƱG�O\F{� ��� ���̩����3.�}�ʱũ�v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}�ǜ�QS ��� ���n��ʱũǜ�QS ��� ���H��L��ʱũǜ�QSj��Y�H�̩����̩����H�ZJ��7�޴��������ޔ���e�R&K�^K��U�d�ì��J7h����RD�^K��U���}�ʲ���RD�^K��U���}޴ʲ���RD�^K��U���}ߴʲ����F�������ȩ�R��z��s�n�O�] ���֊�S ���3.��̩����P ���ľ�N�;�`] � R����J�¹J����ε��������FT���J��X�uQ&�����RQD3PѲ�/������ɬ� �M�QD�1�0����`]GI�0��u� �������̩���� ^0�0��R���V̯M种�`]�_�u�L�0���/�������i��bN�J���ֲ�J���ʲ��uTGI0��\�� ����9����OR�쯭�I�P��PB��4���Ovľ™�G ��D��̯_����9H����d�9����O�P�������H�<���R�Ω���#��<��PW�9����O����⵪O2MW���P�������B�N�#���o- �R������������9����O# :�M�v�B�N#��# :�Mu&.��B�N�B�N�D�#���D� :�_� :�M�F]:R�Ω�P���:�B#N2��PB���Ы�_H�<��P6��2Ȫ����H�<���R��:�yv�H�<��P��:�yuĮ��:����y#��<��P:�y`]9����O�A���R�쯭�P����MB#Xv©u�G�̯_²�����G��ïG����J��G��H�����J��ĵ���9a�G����\J��� p����G�! p�����\){9����OR��O 3.q�B�W�I2��PB�9����O����9����O�����?�Ro_ïG�#�#��ݧA�K( ���)Q� 2Ȫ�R�GO4�RT�¾ïG�DH���uQTL�9��9����O��\�B�N�\�ݧ��ݧ�\�� :�M�\�ݧ�\�:�\��uQQQ9��\v�B�N#��# :�_:�yuĻ©uTL�G ��9����O�A����QQH�<��PĮ��H�<��PB�N#��# :�M�uQT���A���:#��<��P:�y�#X\F{�� wʱ��������v! p���� ���W�M���v�y�� � u!���UR�QQQj���}렛QQSz��s}7ǜ�QSd�}$ǜ�QS����}$ʜ�QS ��� ���n�㜛QS ��� ���̩����3.�}㔾 ��MU�LM� ��w޴ǔ�_�����L��MR� ��^ëL�������L�� ���L��ëL�RQQQDM������L��(,���H������F{���������� �w�v�VK( ���,�Ƨ��O3����P���"��P�����v�V���%��� �E����������� �v�V�&yJҰ �ί��I�N�ahv��QV���Q�%���ȴ. �� �������رh�ì����VK��U���}렛�����B����=��Xw栛��ª���������O���$�͔�V ��MU�x����w״ʔ�V���^E�PѲ(�&���J�������R�V��HPѲK ����²���v����Q�(�������ó�ê��ï�I�LȪê��ô��ɴ-I���O ����ô-����������� ����JOL�HQ���v����Q�c���v����Q�����v����Q�K �����v����Q�K ���;��I����R�VE���^������� QQQ����%��� �E����������� ���=źi��v��V����@-�������ï���O���J�v��V]����P��^����W��Ƹ�ȶ��R�V��eP&K�^K��U�����̺����̱.�}޴뜛���QQQ�ô⯨�=�� ƺ=�� Ʊ;�}Dz����F{���������� �w�v! p���,�Ƨ��O3����P���"��P�����v���%��� �E����������� �v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}렛QQSj���B����=��Xw栛QQS����������O���$�͔�E���^������� �QQQJì���%��� �E����������� ���=źi��vQQQV����@-�������ï���O���J�v�!������P&����W��Ƹ�ȶ��R���eP&K�^K��U�=���}7�޲����F�� �����ȨRľ������n������MKɱ����u�ì���^���.�J� ��QQQ�3R�¾<�LJ� �# <�L#�I��#�Ȫ���QQM;�K��J�zN�+ů��G,����G���ů��G,���M��v��QQJ�zN�+ů��G,����G���ů��G,���A��M��v��QQJ�zN�+����� :��������� :���M����QTM;�K��P��zN�+���������M�̨v��QQ��zN�+ů��G,����G��+ů��G,���M�̨v��QQ��M�̨��uQQQ��1¾( ��� ��n�����Ľϲ��`����>�o��L���o���R���6�Ud��n��������6�P�O�������=��������>�6�P�O��繏��:�P:u�Sd��n��������������°ۧ�ۧ;�H۹�����<�o�����RĻ©���P������`]A1�o�����D]�����uİ /����ƶ��o���`]A1�o�����D�C����-���ë���2��Ʃ��#u�r��[����#D��D��-��DŧƩ�`���(��o���F]�����(��F]�J������X�ʫ�W쵲F]��^ïGQ�%�=9�ïG����׺v��M�J.���L�����v��ūaJ.��v��=�_�.��=�Mv��32Q&3��GI��|J.��3��GI�脩|v���3��GI���O��aQ�.��3��GI��O��Hv���3���<����O��a�.��3���<���O��H���bQ^O�N"PQQQ�.��b�O�N"�v���O�N"��� J.��b�O�N"����� v�����|PQQQ�.��b���|�v�����|����QQ�.��b���|������˽�K'�ȩ�R�™��� /�Q�°� /��S����/�ȩśQQ�ȩ�u�S����/�ȩŴ̫���QQQ�̫���u�S ����C�L�I�����P �����u�S ���?�O�0�aQQV�P ���?����ï�O� �R�خï �O� � �P�#X�v�O� �u� ���?�O�0�a�Ȫ���G��� /�O� �\F]���R��>#<���P���� �� @��v� �������,����婮ï�O� �� @��`���ϧ���X�� �����4 ���ì���%��� �E�� ����� ���Ȫƪ�� ���]E�/�H�DH��u�L�E�/�E�/# ���ʝQH����# ��DE�/M��E�/��uT�� ���?�O�0�a�G�J�Y���"�2�P���E�/J�����ëL�uĻ�O� �u=��Kŵ�^��QV�O� �RQQQ�QQVO� HL �Ʃ�PO� G�I�� ���O� ��Ʃ����FQL�O�0�a�ëL��O� ��uQ=��Kŵ�^��QV�O�0�HR�QQQDO�0�aO�0�H�FQQ�O�0�H\){��O�0�HR„����uı�O�0�H�O�0�a&�����˝�O�0�H��#�\){�,����=��XR�ëL�uĻ�O� �uT�RQT���L�O�0�a�ëL��O� ��uQQQO�0�HRQQT��R��=���^��QD�k�O�0�HR��QV��� �HL �Ʃ�PO� G�I�� ���O� ��Ʃ���˝QT��O�0�a���J�/���Z�ح��\RQTl�ç��ȫ�L���RQQT=������^��QD���ëL����"��R��QQDO� �HL �Ʃ�PO� G�I�� ���O� ��Ʃ���˝T��O�0�a���J�/���Z�ح��\`�O� q��O ��M����ů�R�™�H��PH�u�S��B����������G�¶1 ��SO� q��O R�Q�����¶���G��Q?�������M����ů���IU&Ʃ�U�e�@-�E������u&�OĶ����@-�Q�����E�����Q���������e���R�ȱ��L�d*e��eFTL�o/�������e�Q�G����G�o/�QHɰb�N;��X�Hɰ�o/�@-�E�����QH�� ���Hɰ��1ı��GR���QQTB��L>�*����MKɧ@-�E��������T/�G����Q�1 R���QQT�?�����1���=��@-�E����`����Ļ?�����1�*���Hɰ�#�ɰ`������G�uTMB��ĽH��M�H ����#�L ���Hɰ��1�N�D=9�PƩ�PH�����T���#�L ���Hɰ��1�R����Q��1 R����Q�?�����D=9������\R����Q�DW�����QQQ#��\`���� ���  ������R��N����n�O�N���S���������O�ì���M;�K���M;�K�̨���. ���o/u�ì����3R�¾A^��IH���߲�u�¾A^ì����⵪�J�X��ұ�:���L�o/J��񩸿���u�¾A^yJ����0���o/J�C�K����CݧM�<�(��Dz�u�¾<�LJҰ ��QQM;�K��Jì���%�ɮ���ů��G,�����E��ů��G,����뺮�ů��G,���M���F�TM;�K��Jì���%�ɮ���ů��G,�����E������� :��״�溮������ :���M����QTM;�K��J���.�����QS��1�R��o/R�M;�K��P��%�EK�����E������77״�M�̨��QQM;�K��P��%�ɮ���ů��G,�����E��ů��G,������+ů��G,���M�̨��QQM;�K��P���+.��̨������{�E���:�i�â�����������$ʱ��������v!���U���}렛QQSj���n�����w�ʱ�ëל�QSj���n�������w���ʱ����ͫ��ë����e�R&K�^K��U·C����QQQD ��MU�x��C���油���F{���ɮ��������$�ʱ��������v! p���/�3�O��L�[�#q��v���%��� �E���O�=�ƺ�����v�a&yJ� @���:�Mv�V��%��������)VK���R�����GO4P�$�ʲud�w״͜���B����y�� �$7הV�������UuVO ����P&M����P��������i��RV��U�B�����)QDO �B����F�ϧӯ�� �����������ݧ�J��X֧���)��3�� ��GR��R��̫��������u��G���u ���'�ƴO� �O�O� ���3���3���3�u̵ɬ����Ŀ�>���`��ϧ쯭���ȧ�����L�����ا��-�2B�M��ũ���ȫ���O���5��������"�����ëMݧ� ���B�O�0�aW�)��{G� ��Gu�GXJᯭ�����vTLš�ੳ=��W�����v�ëL��3�����QQO� �A���O� � ������Q^�1�̫��������ҭ,�ٶ���4��b��P�ੳ=��W����۲��˝QQO�0�a��ëL��O� ��uQT��>O�0�HRQQV�D����RQQV�1���ĴN���W���Jੳ=��W����۲\FR�ϧ���ھ�����ا-��PB������|��R���GXJ����ا�����L�vTL�ëL��3�Jੳ=��W�����& �˝QQO� �O� � ����QQO�0�a��ëL��O� ��uQT��>O�0�HRQQV�D����\F{�j�:d+4ų�$�v! p���=�s�p����ԧMB���ũ�K2�J����p��ӯO�v���%��� �E��:d+4ų�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}޴ʱũ望QSj���( ��$ʱ������QSE���� � ���;Iƨ�̷��P��״ͱ����Dz��F&^ ��MU�ϧ�M��R�����H���Gȯ1w7望QQx�����N�$��ʜ�QQx�Ū� 2�$栛QQQx�d���$�望QQx�ƪŪ�$͜�QQ>��/�����5wײ�)��Q�ϧ鯮�|���N���R���x�E���w��㲹�)��ϧ�O���=�s����ԧ��#ï�X�_� ��#Ȫ����RQQQ�ϧΩì��%�G ƯZ�=ȴE��� �+�������ʺ�C��;�̵O�O *��E��ű. ���Ȫ��������x�E��@-RQQV�������U���. ���Ȭ����L|������˼�H��N��R����P�Ѳ� �!���P�‘��}ߠ�QQQ��O��ů������*X� /}ʱ�������֜�QQ?O������ů���̩���$��(���G���FO⵪OR�«�O��ů������*X� /�«��*X� /���?O������ů���̩����P̩����F]�ƧK�u�zRT���FQT���*X� /D����������ì����T̩����H�>D0�����FQT�b\��'�e���N���C�n�R��O��N��P���:��SO*,A�n�O�� ( ������ç�����ñ������S'�e���N�� �� ��S'�e���N�����u�S'�e���N��� ��`N��L�o��L�� /�F]��� ���>�+O⵪OJO ����>�`{���O��G�Ĵ�Ұ�����G��� ���>`){.����u�ĭ�3.��O ��;�� ��F]M��uQT�����ñ�����M�<�ܩŏQT�O��i��:0-/���O��G��կ�e��N��ĭ�O <���zN.����\�������=�B�E�'��?�R�™�����P���u�SN����n�O�N���S0G�ƞP�����IH�����R��Z�#X�B������������k�������������)Q�M"�O3�G ����P��ݧ����PG ����MG�O��ɧB�N�s��RG ���=��P@��������v¨uĪ�����k�#`�QO*M2�����\���\���\����`QT����O3�G ��#\){Ʃ�������I�R�ԯ3P��>��᧻e�O����P����� ���9��2B�=�Ƨ��R������Ʃ�P���mK2�e��ٻ��ç�P��>�ݧ��P�O�NK2BR@G������|P��>_O���-2��������� ��)Q���ھ��W�O��+oP���A'��X�����P��ũ���ȫ��v»ey�����u�L¸�Iĩ���O3�G ���������ey��uT��RQSI��uQTb�_��I�ol������\`]�Ʃ��?R��W,�PЯG�Ƨ�?�@�,���vİ��0G��N�D0G�Ʊ.��Ʃ��N�D0G��*�\����������Ũ�ƪ����MƴG?�R�»��P��u�S��������Ũ�ƪ����MƞPƨ��9���E�/R�������P��A1��� �Pïȧ� ������G�ƨ\b�_�I4PĻ��G�ƨ`QT��E�/�ƨ���I4PĻ��G�ƨ`QV��a�����I4Pƨ\){�B�:���O*,Aw�$�ʱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ�ǜ�QSO��N�$ߴǜ�QSO*,Aw�$���QS�MI�����K�B��P�$���ʜ�QSd�E�'�+H6���7ל�QS���ߴO*,A� Xw�油�)V ��MU�x���3��w㲹�)Vc����bP�&� �����b�R����Q����3�ȱd�v����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O ^0������)���ŵ?�P&YN&�bD��H�R����QQQD����J� �� @��̨v�����'��LP&YN&M��*B�:���n��M��R����!��B��P&ì������ �� @�v�����QDì���0���������F�xXN�K��R�³��"��ľ�xXNuQQS��o�Ŵ̫���?P��»e��ľ��0��. �>��'K��驰NK���u�j�. �>���� ���/�驰��֫��u�j�. �B�����/�?���e�4��.������Ʃ��NK���¿���y�Z���ĸ�B驰NK����FQT�H�����2���FQT�H�ҭ<� ��2yFQT�H��V���Z��\){K��R�ٶG��K��P_@źv“����u�L�K�����驰��֫�ƴ�uT�H��H�������"���/��ľ���`QT�H��eH��2K�����JK�NK�����eH��FQT�H����K����Ƨ���"���/���FQT�H����2K������y���`QT��H�K�!���P���uQT�3�驰NK��K�����Ʃ��NK��K�\RT��ɩ�K�����FQT��Ƹ��PĻe�����J@Ų`QT���"��E�&B���J@ź��QQQ�b���N"����"���/���R���QQT�b�eH��2K�����`����e�4��.��\�&^ ��MU���H���Gȯ1wh��QQx�ƪŪ�$$߲���˼�ů��������F]b�͸�o��9����uĴb��9���P�͸���F]b�E=��yE=�u�L�O�ï�2���uTo2ī�E=�D���O�ï����E=�D���O�ï����E=�DŽ�O�ï����J�êv�ī�E=�D���O�ï����E=�D���O�ï�������Q����=�v���E=�D���O�ï����������JO�v���E=�D���O�ï��������QQ��QQ��ONv���E=�DŽ�O�ï����������Jų��v�����������QQ�ų �����F]b���ɩ��E=�o�0���u�Lª������b������o��0���Dɽ0���D���ǧǽ�uQ&��b������ʽD��b������ǽD��b������ͽ˧��F��B���O �ȩ�.��ëL�R��z��s�n�O�D�u�Sz��s�ëL��ëL�u�Sz��s���P�u�S"A �ƴ� N2��P� N�u�T"A �ƴ� N2�ȯ�ƻ=�P��Pȯ�ƻ=Ȩu���Q6�K/�P��P6�K/����SB���O �ȩ�.������P��P���Ȩu�SB���O �ȩ�.���t��u�SB���O �ȩ�.��P��P�u�SB���O �ȩ�.��ȩűO �ȩűO �� ��� R����J�¹Jੳ=��W�����FT���J��:�¹����+�:�ȩűO ��ƨ\R�����J��t©tٶ�uTL©t�O���ĩ��t��tٶ��uQT� /����tJ��tٶ�J��tPB�J��t�O����������+��� ��t�O����\R����J�3�MO� Ļ N���ï ��&�3�M�R������Ҹ�_�����`T���J�=�M¹J�êP�P��=�_�����FT��� J��FT�����*��J�쯵�`]��R�ëL������� `K�#��s��.�Rı���RT� N���/&=�M�� J�=�Mv����6�K/�*�R���T���6�K/�+�6����6�K/�*������QVȯ�ƻ=�U�ȯ�ƻ=�+M, �>*������\���ɴ ��M��N�ñ ��MR�™�n��������®ë��ۧ��ۧ;�H�����ۧ�RF]A1����ɬ��N�X�D�N��R�&Ʃ�Un���������N�X�A�� �˧A����Cu�ϧ�4�P�ů>�R�F]A1����ɬ��,M���D�N��R©�u�ϧٶ�M�#�4����A�� ݧ-Z��,M���R�F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{���ɮ����=��Lwʱ��������v! p���/�3�O�2[�#q��M�� ��v���%��� �E���O�=�ƺ�=��Lv�a&yJ� @���:�Mv�V��%��������)VK ����,��U�i���)V ��M�R��x�;�Z���$Ͳ��)VK���R�����GO4P�$��u��ɮ������<ë��wh�uj���}ޠ���B����=��Xw�Dz��F{����Gwʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߴʔ�O0��q� ²OL�H�&���%�;��I��O0�v���QVyDN�R���QV��ȯg�N�˹�F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�ŵ����ŵ����ë��P�$��v! p��ҧE�L ����#��s���ȯgë��PW��=�sv���%��� �E�����E���ŵ����ë���v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSŵ����ŵ����n�$렛QQS���ܺ(����h����U������u�̫�����U�����̫���u�̫� ����U���b����������X@/�������u�G�U�G�u���eP&K�^ ��MU�x�����N�$�޲����F��ê���o���R�™�[��̨�̨u�S�ê���?P��P?������� �]��������N�R�G�J�ê���?+Z��`]��� ����N®��uĪ�oM�秮��J���N��FQTW�b����J���N����?+Z��FQQ]��������N�`]��� �W��o������uī������J���N�����N���\){�e��������u�L¸�Ĵ��G���ڻ���J���uT��󧸯ʝĴ� G ���������ǽ���\){�e*��°�u�9aĻe��������ÝQ�M�DM�RQQQ�̨�̨RQQQ��4�����RQQQ����D���RQQQk`]���<�O3�o�����e*���F{A1�O3�o���D̨��uı��#�����̨�O3�G��W��o���`�ů��yF]���� �,:̫���?���:�`{���� �L��P�����I,������\]����N��yu�G�. G����õ��L�L���\RQQ������-ɬ�/�,:����\F]ů�u�:^y�N��y��`]ů��yů�uľy��ů�`]OH��yů�uĨ�.ۧů���Dy�N��y\����ůɴMR�™�B����y�� ��O �O u�S'�/�P'�/u�Sŵ����n��EK�P��PEK��u�Sŵ����n���"��"u�S��ůɴo�������u�S��ůɴ���,��u�S��ůɴ���i�"u�S��ůɴ�/N��ľ�N�;�`�������������������������������������������������������������������������������������ϼ�ϧ�>=�|�ά�����������������������������������������������������������������������������������������){��#��R�u�'�/�GI�`]��#B�R�u�'�/�G��`]���O�O��R�u�G��FTO �O�O��`]���O�O�ñ�R�u�G��FTO �O�O�ñ�`]�����R�GI�P�#P]M�2�]��v�u�GI�FVO3�F]���OH�R�u�G��FTO �O�O��D������ůɴM�GI�`]Ʃ�H6��R�u�L�8��"�,:���P�׽uTEK�+����󨫻�ūH�ק8�\)������������������������������������������������������������������������������������ϼ�ϧ�/�0M��W� �IF�������������������������������������������������������������������������������������){�MR�����u�'�/�GI�`)�:�/,������R��K�98��n�O��6�U]9gGI���98���ۊ�S:�/,�������HL ��Lu�S:�/,�����������L�`N��L�o��L�� /�FGI���98����F]98R��ڷ�ի/,�)Qڷ�ի/,PI��E�L �������O��Lݧ�N�zN�PWRڷ�ɬ���ڻ�ݧ�N�zN�PIOL�H2Ȫ��O]M�2G�L��R�ɰ� �P����[�#ï��2=�Ƨ@Ʃݧ����>�����P�ůR������#���PG�� s�)Qڷ�ի/,P����� ������������=ȧO� ��� �)Q��EA���G�L2�]����ݧ����C=����Χ;� �B���>RQ�����������O��:�B#��L����ȫ����ȫ/�R7�� "��N�[���#XL�[����P���E�L �P�����FQQ�=ȧ����B��� Ū�P-�K2W���PB��CN<���2�RQ�O�2�������������� ���R洧���_���������������#���=ȧ����B�M�,RQ����MB�������P�]MX�9��� �P�9N��������RQ#�)Q����4 M�� �)Q���RĨ���L^��P����8�2E�L �����Ū�[��R�QDƩ�*Ļª����EK�B�O������5�ƩW����QQQD�L|*Ļª����EK�B�O������� �L|�W����QQQD�ë���*Ļª�����EK�B���#:�X�Ȫ�O�8�2�����FQ���)Q�������)Q쪭Gݧ����ë>�B�2���=�X�K�NK��B��������ݧ����R_�d���ŵ?��ů���)Q���R��\�:�/,��\�\�$ʱ���������\�u���)Q֯�zN�P_������ݧO⵪O��:�/,���zN���R6�zN�P�@�����ȯ��2���Ȫ���zN�P� ��RX�ڷ�ɬ��)Q���R����,����:����RT�O⵪O:�/,������L�¨���L��`R{����Y����:0-/RQ�ŇRTO��uQT�r����kRQQT����L^��P���R��DƩ�*���R��D�L|*���R��D�ë���*����\FQ���F�H����-�M���(,��������RľH����-�M���(,���E�'�FT�O⵪O-����,�N@>�ì���Nu�S��G �����`�ϧΪ�K( ��){�M�����R&��%���ȴ����vD@�ƨ�J������3�����-�MW��̩��F�ϧ� ��){���M��������<�Lì��u�+�����G�o/���GN�HL �ì����o/3X�\\){���M��������o/ì��u�. G�RQQQ�#���R�QTN�HL �ì��!���o/�N�ɬ��1��\F�ϧ� @�){M�������ì��u&<�LM��������<�L�ì��FQDo/M��������o/�ì����F]M���@��U���ì��u��RT�«uQQ&<�L+�����G�o/\RQQD����ñB����#���O��P�\�FQTN�HL RQQì��RQS!�����̫��D����L3XD�7o/3XD��\){@��Uu�M���@��PM�����M���@�ƨ����M�����\�� ����ƩN��R�쯭�I�P��PB���N���v��d�ì���YN��PYN���®�êO�P̨������ �������R��%�.��ƩN�����ʺ��+�F]���0GR����֧B���N��ڴv�E�L �����f� �ƩO� ��)TL»M�������RTG������������f����+E�L ���)TYN��0G��M�������R�QQ^�1�̨��N��G ���O� ���V����I4P�J.��Ʃ�� �Ʃ�R�QQV���Ʃ����ɰO��v©ɰ�u�9aľ����ɰ�FQT�G ��D��I�H������RV���ů����ľt��ɰ���RV��. H���5���M�������PľI�P�ɰ�\`]��Ʊ��Y����H�R���>���,��ݧO����P�������P����Y�@����������Pk���R��HPIN���Y��v¿,��u�L������P�MB���W�Ƨ�����HP�,���u���QS��M�������P�����uQ�ϧ���ھ�֯0=�#��O�RQ`�&yJb�zI��*e���D��J��DO������D�N������D����L®�����P����e�D����uQQQ��©fz*ey�����u����﮷����P�����QQQ���.ۧ�������R��Q����u��QQ����b�zI��*e�R��QQT����b��ɰ�M����f��ɰ���Q�fz*ey�����\�QQL¿���﮷�����u�Q��H⧿����L°���G�����u�QQQ���.ۧ������PĻ���OG����\R�QQQ���������\`�DK( ����4X�zI���M��[�������쯭���ұΩ�ݧ� ç�L|��P��> ���4P������O��4PIM���4PB�E�/������P����e�W�E�/��ɴ�쯭�ֶ�Ω�ݧ� ç�L|��P���3�ǧ�ͧ�������ݧ�O������O�o�������e�ݧ�������ɧ�e������ɰ������ q����˼�K��B��ô98�M�R��O��N��PO��N�O�:��S�̫ɴn�O���ֹ��98�M���98�u�L�b���Ĵ��Ĵb�L|���2�+����|J��M��`�OH��M����H�����Ĵb�L|���2�+����|R������QQJ��M��`���QJ��Q��>���L����b��#���G ������u�QQT��R��Ī����ĩ�������QQ����R��QT��.ۧ��98Po�^y��˝���OH��M�\R�����uS!�������CbRQS�W�^� ���ĸ�R�����>���QQ����RQQS�M����M�^����ɬ�˹�������0�98�M�C�'�/u�L����98�i�RQQT��O� O�0�Hu��L�������G�J���[��M��Ĵ����O� ���u�T��֧������^ëL����O�0�aĴ�Ia�+�J�������\uT���zL�+�J���M����QQd��n��̨����J����98�i�R����QJ�M�N��\F]zN���98�u�O��N��6���;�^O���98�M����98����QDzN�C�'�/�98�M�C�'�/�`�����ܩ�����C����*O�N��F]��*O�N��R����������������B����������թ���M���� � � � �L¼� � � � Q���֩���M�̫���������֩���`� � � � Q���֩���M�̫���������֩���`� � � � � ��կ>թ��MI�ڰD��G�ͽ��ǽ���ͽ��� � � � �� � � � �P��HL ����QQ���կ��������Y�������֧ͽ���`� � � � \���� ����e���O� R��W��>�����=�������? ���B����)QԪƩ��=���F��ϧ�����������յ�����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��h��QS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{�E���LB�+L�>�$ʱ��������v! p��ҧ@�ìȩ���zN@�,�W����( ���v���%��� �E���LB�+L�>�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� ��MU�E��Ʃ�X���+d�wנ�E��"A �Ƣ( ���Gw�ǜQQQx�d�ŵ?2�$放ï��UxXN�d�ŵ?�u��O����U�d��̫� �ze�u���U��b��N�������d�u����U��b��N�������d��u�G�U��b��N���G�d�u���HPѲ���G²���c����d���d�ŵ?�����G�QQQJ�I²���d����I�QQQJG²���d���G���F{��ɱ.��x�� �$�h�DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{����E�����,wʱ��������v! p��ҧū��ŵ?�X��=��PW�������,��X�v���%��� �E�����E�����,v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���U�lP�$נ�QQS5���2�$ʜ�QSj���n�������w���ʱ����ͫ��ë��QSj�O <>GO4+O <>�GO4P�$$���!� ���O0��q� �ѲOL�H��;��I�R�Q��QJ��.�ï���;��I��R���U�����u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/�������u���eP&K�^K��U���}޴ʱũ͔��DEKM�^�U������������������R���QD����J����.����D ��MU»��E���EKM�wʱ��������v���QV��;�Uj��������F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E���:�i�â�����������$ʱ��������v!���U��C�J7����;�U ��� ���n���QQQ��êOJ�ߠ�QQSE��Y�;��0�L}ל�QSE���N��<��OJ״�$����;�U����������O���R�������Qj���B����O3��QQQj���}���QQSj���n�������w״��ײ��R�QQQj���n�����w�ʱ�ë㜛QS� �<��(}ޜ�QS ��� ���̨w״����;�U ��� ���n���QQQ�@���ï�$�7͜�QS�3�}7�ǔ�O ����P&M����P�R���eP&K�^K��U���B����y�� �$7�ǜ���QQ�C��������;�U ��L�����D��U�K���QQV ��MU�x��C���7Dz����F{��ɱ ��M�x�� �$ߴ7ͱ��������v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H��^���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ����ͩ橔���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�״DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�A�=��������(��L�RľA�=��E�'��n�FT�O⵪O��B����=��X�=���GI§uĸ�B������������I��6�̴ή��L��FQT�H�髩'��FQT�GI�\){(��L�̯�#���L��K(�6�̯�*u�L§̯�*ĩ�"����I �̯�*�G�J(��L2̯žK(��uT=��M��J� ƿ��̯�#���L2�6�6Q���K(�FQT�(��L#���L��6R�QQ��ĸ�R���=��M��J���5��#���L2̯žJ�K(�QQ�QQQ̯�*���QT=��M��J�#���L2̯žJ�K(\`�O⵪O���d���1��P��P�1�̨�F�O⵪O��™�G�G�F�O⵪O��·����G�F�1��+N��L�?�� /�F]A1�G�O0�¾�G�]����������&Ʃ�U��?����������uİ /��� ������J#����FT��ɪ�1��+�"���ʧ��?����ʧ�\)�G�����GP巪���GF�@��L������.��R��@��L������.�ǥ�����@��L������.�ͥ����O��R�������G�Ȫ����G�MG��"�������O'>��vª���GukF){���G�R�֫� �@G����@G�ݧO�����@G�K���������G�������� �# @G�v³GukF){MH���R�������G�Ȫ�-ȧMH�2B� ��������G������O�"��������v�-ȧ��2�GukF){MH���R�������G�Ȫ�-ȧMH�2B�L���������G������O�"��������v�-ȧ��2�GukF){� GR�������G�Ȫ����G������O�"������2O �2�-ȴv�-ȧ��2�GukF){� G�R��� ������G������O�"�����ǧ������G������O�"�����ͧȪ�-ȴv�-ȧ�ǧ�ͧ�GukF){�����v«��GukF){����MK�uQTO3�������ñoŵ�ƩMK�\RTKL��MK�uQTO3���KL�oŵ�ƩMK�\`]ŵ�Ʃ�����R��O #:ŵ�Ʃ��P����L�W�9��ŵ�Ʃ��)Q�a��< O�"/�2I����ȯ�ū��C����)Q���=�PI�����Lϧ�����ɪG�������R��O3PI'O�E�'�� P�6���KL����FR�9���O������Lݧ���-�2ê�ço��i�������3Ro��i���P��2B�K��M����=ŧëPũN�KL��RҸ�����ݧ�ƶ�ȧ�ȩ�O�-Z���X�B#�ƩE�@����Rũ9Ʃ�PI=���,:#X��Rv�������������u�L­��RQQQ�����uQ&����RQD���RQDȧ�RQD�ȧ�)QQD��������Ƨ�RQDū��ⵯ������)QQD=ȱ����RQD��G�� ��MP���`����ܩ���O��R�™�n���ɉ�u�S���ܩ��[�H��6���n�O�����|�B�> ����S���ܩ��ƶ��Pƶ�u�S���ܩ�����>�ū� ��O���P���>�ū� �����<��O��R��O�����ũ��W�ܴ)Q'K����O�����M�2'K�Rܾ���s�> ��R�����#������B�'K������RVƶH���ܩ��ƶ��n���O��RV���>�ū� #����ܩ�����>�ū� ��O����O��)Q������O�� �2��ũ��vĻ�'K��ܧ�����������'K�\){�O�����|R��O�����ũ��W���>����|�)Q'K����O�����M�2'K�R����|�#XR�����#��O��)Q������O�2��ũ��v�'K������|�������u�L�[�H�!�H'K��Q�����|�B�> ���[�H����|�uT. �O�'K��ܧ����\){A1��O��ƶ�'K��ܧ������u�L��&Ʃ�U�X�;� ��D[�H�˧'K�RQQQ�O��. ƶ���O��X�ܧ�����uT;� ���G��O��\F]A1��O�����>�ū� 'K��ܧ������u�L�&Ʃ�U�I4���uQQQ^Ʃ�U;� ��D[�H�˧'K�RQQQ�O�����>�ū� ��O��I4��PܽuT;� ���G��O��\F����������ï��P��������˴�/N��MF�+o��L�=�Jੳ=ݧȯ����F��ϧ�êP�P9�L2"]"�M��Rĸ�H����M-�֩���+����|�b�L|���2�.����Jԯ3�2��y��۲����`��ϧ�êP�P9�L2�Z�K������?���F�ϧ���O⵪O|�������d��e��P��M;�KP���ϧ]�W����9ë>���EK�_��Pȩ��ݧM;��X��ϧm�X����Ƨ]M����){�xXN}ʱ���v! p��ҧŵ?2B���K���-2��B#������ë������O�v��%��� �E���ö:�����xXNv!���U���}ʜ�QSj����o��}ʱi���������֜�QS�/��/}�㜛QS�/��/�������}�㜛QS�@-w���ל�QSj�. �>��>���/���P�h��ʔ!�����U�xXN�x��ȫ��}ʜ��«1��w޴ʔ�_xXN�n�F{��ɱ ��M�x�� �$ߴ7���������v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H��^���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�Ū�E_�$ʱ��������v! p�����@-��.��L�N��v��%������ū(ôE�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �ѲŪ�EM��%���G ���Ū�EM̴����LEK�E������OL�H+�!���U�Ū�EM̺Ū�EM̱n�$�7望QSE�������(���̸���}�޴$望QSj�;��I���ū(úŪ���wʜ�QSE������L������������J�㠛QQSj�����̺����̱��� �޴㜛QSE������L���X�n�7栛QQSE������L���X�̫��a�7栛QQSj���}�ǜ�QS��� w�͔�_Ū�EM��M��L�F{�ŵ����ŵ����n��$�v! p��ӭ��B�,���Ұ��W��=�s�v���%��� �E�����E���ŵ����n�v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}�$��(�����C����QSj���G����}��(���G��QSE�'���EK��E�'���EK�}�㜛QS��êOJ��$ʜ�QSj�ů����9GL�Ů���̸���}�ߜ�QSj�ů����9GL�Ů�ƪɱ̸���}�ߔ��I�yJŵ����n���Iv���U�����u�̫�����U�����u�G�U�G�u��=���IP���I���O�L �����R��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/��������F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7ʜ�QSA�L�$�望QS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź�ʺv������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ���'��w㜛�Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱ�ëͲ����F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ON����v! p���O����M ��ON�����v���%��� �E���ŵ��A���ON���v�a&yJ���ͱӳ��v�V��%���N��� ����ͱӳ���� ��MU�x� ��w��ޔ!���U���}ߠ�QQSj���B����=��Xw�ǜ�QS=��̺=���}7�����;�U̫��ɴ?�?R������Q̫��ɴ̷+̷�R���Q���E������̸�ƺ̷�B���R������QE������̷ɺ̷� ��QQQ ��� ���n�נ�QQS ��� ���̩����3.�}נ�QQSj���n�������w7��ל�QSì���ƪ�7�ߜ�QSd�=�|����R� ��^ëL���ON����n��ëL�RQQQDM��ON����n��M���F�ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�$ʱ��������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V����ì��%���ȴ. �� �������رhR�V��G ��DO0�R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R!���U���}�ʔ� ��MU���H���Gȯ1w7Dz��F{��ɱ�N����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��vϲ�������ŵ���L����������������Ʃ�����ŵ���������������Ʃ����譮�ŵ��������J������ŵ���L�����������������M�<��M��ȴL��������Ͳu�̫������U��H�Z���X��Ϳ�u�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����=���IP����I���O�L �������R!���U���}޴ʱũ͜�QSj���n�������w���ʱ����ͫ��ë��QS���-����-�����J״$���M��QSj���[���O���$h��QSE������+��w�ʱ�������֜�QS ������YN�$�����;�U���-����-�����QQQ��êOJ�״ʲ��F��� ��ë���=��?R�™�G ����̯_N���Ȫ繟�G������#⨹̯_�. ���#�\){�� ���I4U���G ��u�MB���W��Ƨ��O�H��������������������G ���u�Q�Ʃ�ȯgƽ���\){G ���?XR�¨�G ���?X#J��`T�PN�u��N���Ȫ�#�N�FQQO���̯_����G#���N�FQQ#\��H����-�M���?�R��N����n�O�N������� ��u���N�D.��N���|�J��� ��`�B���O �ȩ�.��ëL�R��z��s�n�O�D�u�Sz��s�ëL��ëL�u�Sz��s���P�u�S"A �ƴ� N2��P� N�u�T"A �ƴ� N2�ȯ�ƻ=�P��Pȯ�ƻ=Ȩu���Q6�K/�P��P6�K/����SB���O �ȩ�.������P��P���Ȩu�SB���O �ȩ�.���t��u�SB���O �ȩ�.��P��P�u�SB���O �ȩ�.��ȩűO �ȩűO �� ��� R����J�¹Jੳ=��W�����FT���J��:�¹����+�:�ȩűO ��ƨ\R�����J��t©tٶ�uTL©t�O���ĩ��t��tٶ��uQT� /����tJ��tٶ�J��tPB�J��t�O����������+��� ��t�O����\R����J�3�MO� Ļ N���ï ��&�3�M�R������Ҹ�_�����`T���J�=�M¹����+=�M�����`T��� J��FT�����*��J�쯵�`]��R�ëL������� `]#��s��.�Rı���RT� N���/&=�M�� J�=�Mv����6�K/�*�R���T���6�K/�+�6����6�K/�*������QVȯ�ƻ=�U�ȯ�ƻ=�+M, �>*������\�{������������w����������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�Nahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&K�R�QQ&K��U� ���'��w㜛������������O���$�ǜ�Q��QQSd�ì��w��ǜ������dJ�$͜���=���}7�޲����R!���U���}렛QQSj���n�������w��ߴʱ�����ű�ë��QSj���B����=��Xw7뜛QS ��}7͜�QS ����C�L�I�*���$�����;�U��êOR�������QQj���B����O3��QQQ� �<��(w7����;�U0��M��QQQz��s}딾 ��MU¨��dJ�$͔�G�U�������F{����E����C�$ʱ��������v! p��Ϊ� X�W��=�s�p��v���%��� �E�����E����C�v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}ߴ��(�����C����QSj���( ��������(�����C�����)VK ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d��)V��e�R&K�^K��U��C�Jh�������)VEKM�^�U�����QQQDO3D�( ��R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E����C���=źi��v�V����� ��O���J�Բ�)V ��MU»��E���EKM�w㠛x�����N�$��ʲ��F{�d���K��M`QQQ�eH�\){�Ƨ����O u�zRT̫� FQT���FQTO DM����P�-��Hƫ��5�ìEK���O\){�Ƨŵ?2�u�z̫� �����0�� ��I�������b\��K�A ��� ��:�R��K�A ������������u�Sz��s�n�O�] ���֊�S ���?�ì���O�0�a��PO�0�Hu�S��̫�����������:������uij����ORQ��:��ì��&���Pı�J���+������������������`]A �������uij����OJA ���ì���`] ��:�� R����J�¹�:������`T���J�A ��¹A �������\����4 �K( ũ�Rľ����G�K( ũ`K( ��RĪ�z �����������vT������\FK( ��J��>��ͧM��v�W�,���ݧ�,���uT���PE���>vQT���ɧ�����\`K( ��R�K( ��Ȫ�M��vT��z #��P��#��������vQT������\RT��z #��P����I������vQT����������������ʧ�������\FTK( ��Ȫ��m<���0M�vT��z #��P��#��������vQT�$���������$�������$�������\RT��z #��P����I������vQT�������$���������$ʧ������$�\`����5��n�R��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P��u�Sd����12�u�1���FT�>���FT1���FT�>���`]G���J�Z���P�>�ݧ��1��uĩ>���FQ��Z���P��1�v�1���`]��������P�Ϊ� �����G��u�>��12��F]G����u�����ǧ�`T����ͧ�`Q�Ш��ï<��v�����ͧ�\){G#  �u�����ǧ�`T����ͧ�`T������\){��� A<�u3���#  �F]������GUu����PI�A<�F��Aۧ����DG���G����OO����R��êP�P������:����٧ë>�B#��:��O�v�»OO��=�P��P�=�u�S ů��dP�O�6������R���QQQ������R���QQQ򯰬��R���QQQ,�H�=����S�N��<��O�=�����6�U ů��dP�O�,�H���������B�ì���R�&Ʃ�U�1�#p����ì���u�ϧ����O������0H2B�ë>#��ů���P���C�����M���W��P������X�����R�,�a&������ �|�2ì��R��G Ʊ ����,������`]������ȯ���R�ԩ��Pb��P�I�GI��v�&Ʃ�U �����R���ɰ�O�R�# ���B�NR��ȯ���uV�PKGM��u�=��M��J������������������������������������������êP�P��0�/����ۼ�W���2������B��������������������������������������������\�v�Q�ϧ��ԧ쪭G������Ȫ�ū�#Z�M, ��RQT�KGM�Dï��� ��H��+����A�9��#�o2��������\�v���QQTƩ�PKGM�����Q��\�Ʃ�P����M�C[���\�v���QQTƩ�P[�����Q��\��𴾧[���P�MG��"����JR���QQTE�|���[�`������\���'-���P�-i2[������b<���KH �ܩ2nO ���\`�P������������m2N������MR��O���:�-ɬ�����Pn�u�S�������YN��P������DM;�K�6�P���`�N��L�o��L�� /�F���������ñ��Om��DȩŨ��Ʃ�����JȨ%�=9�ïG�������������Ȩ��D3������ ����D̨m��9��� ƧO���:�-ɬ�����n��M��Fn��M��F�G�n�Rľ�xXN�n���Ʃ�������DOm���FT�™�G��G�G�Ʃ������������I��RĪP��¹�Ʃ����U�\F]G�G�Ʃ�������XL���RĪP��²0����Ʃ����U�0���\F]G�G�Ʃ������Ȫ��I��RĪP��²c�����K�����G�QQQƩ����U�c����K����G��\F]G�G�Ʃ������Ȫ�I��RĪP��²G�G�n����Z���QQQƩ����U�G�G�n���Z����\F]G�G�Ʃ������Ȫ�=����ëMRĪP��²�����������Z�����Z���QQ�G�G�ze�QQQƩ����P�IJ����������Z����Z���v��QQQ�G�G�ze�\`�:Ũ�����P�oMP�N���� ���F]M�R����P���t�oM�2_E�L ����H2W�> �����쯭���ݧ�:��v���E��u�ů�L�Ĩ:��������E��`QF]���>�R�b�> ������t���O�OH/P��P> ���ǧͧ湧��ǧͧ�ϧǧ��ǹv�ɹ������> ���ɽ�RQQTo���ɝQ�`]�IH�M¨u���L­O*M2���\��P���/�����\){k*�ɼJ�� k�t�B�ʲ�����k����ʧ�`{��.�����uī�������������\){�N����U���uĪ���秶FQT� /��. G���`RT=�������uQT���񧪧��T��R�ĿN����P�K���`�TO���M������.���>�秶����ʽ��\\F������E�/��E��@-�I����FT��RT� /���� ��I��|��PO⵪O��FQT��i���ɪ�`TL�ȯgı��E��@-�I��򧻪�G�>��uT�N����Pȯg�K�E�/�ȯ8\`�M��H�o���R�™�̫�������O3��e�����S������P���u�S�-����q���O�����۹�ľ��0��̫��������� ���3�ľO���D��;�KA��m2����b������ �o���:���`]m2�u����L�o���*e�e��M��H�������uTOH�ۧo�������O3��� ���3�O3�o���*e\\){�����'Ou�. ��.ۧo������n������'O`]���� �tC��R���z#X�DM���J�ë>M������u�z#X�D����J�ë>���������F]���ȱo����R����P���ح����L���>o�����ݧ����o����������R��� ���ݧëP����������v����>��o����ī���ۧ�o����tC�Pį����>��o�����o���\){b��'Ouī��ȱo����FT��������'OFQQ�o���RT. �o����'O\){A�����'Ou�. ��.ۧo���RQQQ���n��A��'O`����c���M��R���O⵪O����c����ȫ��FT�O⵪O����c�����FT�O⵪O����c����Ŵ���,��FT�O⵪O����c���ȩ�FT�O⵪O����c���O FT�O⵪O����c���=��XFQ���O⵪O����c���� �N���1 R�ϛQ����c���� �N�����,?�R�ϛQ����c���� �N��������c��FQF]�M���R�K���R�RQ���c���=��X�M��FQQ������c����ȫ�ƺM��FQQ���c����źM��FQQ���c����Ŵ���,�+M��FQQ���c���ȩźM��FQQ���c���O �M��FQQ��Q�RQl�ç��"��RQQ� /��9�����"�#��������� /����,"���� /���ɪ<������i���ɪ�\`]M��R����Z�X�����C��0/�v�u�M���F]�_�u�M�������� ��G����-�R��d��G�GDM;�K�6�P��O�O0����SK�B����PK�B���u�S�����G ���G�u�S�����G ���W�u�S��� ��G��B�����`N��L�o��L�� /�F�K�B��+MG����B�*����P���5����M���F]E=�*�������R�֫� �E=��O����P�������[���������E=�v�E=�u�L®�PĴ6���L|��+����|J9������uTH�����C��������FQTH��������������FQTL� ��b����P�͸��uQTH���*?�ά�L� ɽ�E=��Ĵ�?��� � ɧʧʧ����`QT�B����ԧ���\){�ë���*���B�E=�R��ë�� ��P����B���>E=�v�E=�u�L��b�L|���2�+����|J�����uTH�����O���E=�*��������E=�\F]=�R�ԯ�P���B�o��L�Ȫ���>E=�v�&Ʃ�UE=��˧����uĴ=���+o��L. G�J��I���TG�JE=��J�E=�Jϧ���ȩ��ì��ů���\){A1�O0�¾�G�]����������&Ʃ�U��?���G�����u�L»�?s�������?��`�E=������?sJ�����ʸʲ�uT=�^E=�Jų���QQQG��W����2GPoMX��2���G�������?��\RT=�^E=��E=��RQQQG��W��2��?s�ݧ�2����?��`QT�ë���*���B�E=��E=�\)ĴcI��+o��LFG�������GP䲿�� ���G�F����ӯ��.H2�+o��LJ쪿����ٶW��F�d��@�����I��GRľ™�G��™�̫��������u�Sd��@�����I��P��I��`�]6�������uĴ�Ƹ��P�̫�������e�����\){E��*e���KG�uĪ��E�Ī���e#���"������e�KG�\){KL*e�����ɪGU��u��Ĵ�ɪGPĪ����*e��ý��RT���KL*e���\){G�6� ���I�*��������*eR�6����J�b�G�O����+M��FTE��*eJG��������=���b�G�O����+M���������=��FTKL*e�����ɪGP��b�G�O����+���MKɴì���FT��I��6�����I��b�G�O������FT�PĴ�ɪGPĪ����*eJ�b�G�O����+���MKɴì���\F��)��9��(�GR���9��(���u�S��G���u�S(�P���#�� ��ì���O� &�bJì��%���4 ��G��F{#�� ��ì����O� &�bJì���%���4 ��G��F{#�� �*���O� &�bJ���%���4 ��G��F]G���� �ΰ��� ��R�GXJӯ�O �O� ����PtC�vTI©�4 ��+tC��� �ΰ�����4 ��Q#�� ��ì���O� �RQQQ#�� ��ì����O� �RQQQ��Ѩ�� ��ì���O� ��� ��ì����O� ��`TGXJط������P��tC�vTI©�4 O�������G�+��Ƨ��� �ΰ�����4 �`���QQ���G��O��`����Ķ�IJE�L ��������'O�O� �����¹`����˧�Ķ�IJE�L ��������'O�O� ��������\FTGXJ��� ����PȪ���ƶ�ȶ������0�2(AP��tC�vQ�ϧ�:�IX#X�O�OH/�P�����Oݧ�����P� �RQ�ϧ���?���?��L�B����/?����������M� ���RQ�ϧõ5���� ���P��=�IP��9õ5� �P��FQTI©�4 O�������G�+��Ƨ��� �ΰ�����4 �`���QQ���G��O��`�#�� �*���O� &�b��Ķ�IJ���0���(A�����%���4 ��G����\�{�5�ì'2�$$DZ��������v! p�����X�ؾ�� �K( ��vR!���U�E���3=��4 ���ɺ���w�����QSE���3=��4 ���ɺ��ɱ� �N����̿�w�����QSE���3=��4 ���ɺ��ɱ W�w���v���;����J��>� �B���QS5�ìEKw�ʱ��������v�����;�UxXNR���QQ�x�����N�R���QQ�x�d�ŵ?�R��QQ��xCR���QQ�x*����R���QQ� ���d�x�� ���QQQj���}�ǜ�QS ���dw7DZ�������֜�QSH ��}״ה�O0��q� ²����v����%��������o/�O0��q� ���.�ï�+�R���U���������E�'��u�̫� ����U���b����������X@/�������u����5�ì'��n��K��B��������u�_���ì'��n��K��B��������F������̨���<���R�³���Ň��Ňu�S�����̨���I���Iu�S�����̨�E�����u�S���?��P�O�ȫ����S6���M�X����ů��ů��KO�繏���6�U���6�P�O�ũë�����]�����#I����A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSE���N��5���7���QQSŵ����ŵ����n�$렛QQS���E���lP�$㠛QQSd��������� �������v¬uĩ������RQ�Ω��LRT�H�I,��I,��H��,�`QQ�ӯ�/��RT�E�/��N�`QQ���ɩ�RT�/�RQT�I,�uQQ�����N��,����b�,�\RQT�I,���*��uQQ�����N��,����b�,�����Q����*��\RQ�ԯ�Ƶ�RT�=�Ƶ�RQT�I,�uQQ�b�,�`QQT�I,Ƨ���*��uQQ�/��,Ƨ���*��\RQ�����"RT�O��"RQT�I,�uQQ���O��"�,�`QQT�I,�#��uQQ���O��"�,�#��\`���ۧ�������*��� F��������/�A�?R��N�?����� ���v�·����ze��?�ze��?���ľdP���6�U�������/�A�?�\)��ľd�R]�1��N��RQJ������P�����ze2W��1��̨ݧ�ȪH�vQuQ�J�1�̨d��n����b�\){6�#���R��t� �� ç�ɰO�������1���O����P�Ƀ�����"����s��R�ȪaO����Pt������G��ɰO��_��1��v©Ƀ����1�u���RQ������1�FQQl�ç�Ī�ze��?�d��D]������ȫ�L����RQQ���Ƀ��\��;��I���5��"����GR�™�G��]G������#�ɬ���P������ʧ���ʧ��`]G���?��������Ʃ������ů�B��ɰ�OR�L©ɰ�O�MGJ���DZ�ͱ����ʾ�ʾ�$��ʱ�ʾ�ʲuT�P����i�����O/֪A�?@��QT��b֪A��ɰ�O��#�ɬ����`QQTW�Ω�� �����Ʃ�ɰ�OP����ɰ�O�\F���� ��zN�������HI��R��O��ɴn�O�������ۊ�SO��N��PO��N�u�S��� �� �P��P�����#�I��*���2�&Ʃ�U*����ų���ëL��ë�����u¾M�^����ɬv�D �ï�K�JΩI�çW����v�D*���*��R�D�ų����ų���R�D��ë����ëL��ë��Ĵ������b������˹F]��#��� ������u�&Ʃ���@R�Q�G���'K������u�Q��,������F]�����°��u¾��R��MKɩ2���� ������ �P������F]zN�u�L¸���ȶ������LO��N��:���uT�°��uQS!��RQQHI��*���2&*����ĸ�OH�ۧ����ȶ������L�����k�����ų����ĸ�OH�ۧ����ȶ������L����k����ëL��ë��Ļ�t���������HI�û�����Ʃ���O�2t���uQQ�������ȶ������LRQQQ������HL �Ʃ�P��U����� �������\�&^���5��^����Ʃ��������Ͳ�)�!���U����w7ǜ��Sd�G � �$7ޜ��Sp ��w״͜��Sj���B����y�� �$7ל��S��4ï�}�望�S���(���$ײ��)�� ��MU®C��C��O wޠ�QQQE���w�뜛QQ��H���Gȯ1wל�QQx�����N�$�����;�UE�'���EK��u���x�d�ŵ?2�$望QQx�;��IP�$��ǜ�QQx�;�Z���$͜�QQx���GJh��QQQx�ƪŪ�$$ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQx��ȫ��}״ײ��)��M��U�O⵪OR��QQ������G?��¸�G?����QQ�™�O �–���QQ�™�B����y�� ��O �O u��QQ��p ���n�O��N�ç�Ʊ�N�Ê��QQ娰�(����n���)����HPѲ��4ï�²���������4�ï����RQQVHI�ñ�����������˼�9K�"����Ȩ���XR��9K�"����Ȩ�E�'��PE�'�u�S�����O�0�a��PO�0�Hu�S�����E�ƪ �E�Əľ�����n�RQQQ�����n�RQQQ�������������RQQQ�����W�����`]�������u�E�'������RS���J�3N"�uS��J�W��EA�B�9K�"����ũ�y���ũ��y�y`]���W��Ȫ���ũ��R�������P��ũ�P��������PW�� çy�_��>E�L ��v�E��u�W����2E�����Q�ũ�������FQTĪ�ĴBԯ�����������J��ȯ8�����ȯ8*���2ɬ*�����������\){���=�_��=�M�u�E�'������RS���Jԯ�M�uS��J�W�����ا�ڧ��ا���������۲uTȪ����J=�Mv�QQTW��B�0GJ�=�M���QTW��Ȫ���ũ�U��H�y�Ыȯ8����QQQ� �����B�ԯ�M�\`]���=�M�����0GJ�=�M��u�O�0�H�����&�=Jȯ�����`]���������J��������u�E�'��������Q���Jԯ�M�uS��J�W�����ا�ڧ��ا���������۲������ůJ��ů�u�E�'������RS���J�ů�uS��JK��K��K����`�xXN��C�z��?���R��MP?�< �W�L�<���xfB�E��ȪR�/��Y�aŵ?2B����v�™�̫���������ľ�xXN�n�RQQQ_���M���QQQ;���D��O���>������QQSxXN��C�?P���N�s�����������R��:���?���ƴ�ӯ�� �K�NK��@�, �MB�@�+����K��v�&Ʃ�U������˧��Ѹ��J!����D���Ѹ��J@Ũ�ˉ��uİ /��;����GƩ�P�\FTM��Jӯ��X�K�NK��@�, �MB�G�����J����`TL�KGM�������e������QK��P�O���>���P!���P���uT��Ƹ��PKGM���FQT��H�K��K���uQT���E�K�R�QQ����e�KGM����b�4�̫�������e�K�\\){6���O �0��*eR��O ��e�y2O �0���_���O ��Ȫ�0��R�����M�C��#�����O ������9o- �B������Դv��&Ʃ�UO �=9��0����D�Cݧ�����uĨ��Ī���e�����O �0�����O �=9��0��`�(,�����n�R��(,�����9(3��Y����P��u�S(,�����������0G�P����b��� �|�Rµ��u�L�ūH����O*M2䎨�%��������uTo����ūH����RQQ���ūH������������6.�� ���0������ūH������������6.�� ���0��\F]b����O0���R�vª� �|��@G�����u�L°������PĴ�� ���������P�� �|��@G������Q@G���� ����������P��#��������������@G������QQQ���O0������P��l��Ĵ�� �����O0������P�� �|�������Q�@G���� �Q���O0��P����Ĵ�� �����O0��� �|���ǧ�͝��QQ���O0�������R�����#��������O0���������uQ���O0���`]��>����O0����R�v»����O0����F�K�K'������������A��� ZRľ�N�;�FT�O⵪O��n��������®ë��ۊ�S��B����Y�°IH�������ľ��0�µƴE�O�=�������ɬu��ƴE�O�=����� Z�թ���� Z�թ���� Z��ɬ���Y�����R�²���L���vQ��L�A����� ZP��O ��#����vV]����u��������vQ�骨 ������A������F]�_�����u�L¯��PİIH����PI�PY������Q&Ʃ�U���KL���������P�����Q �o���թ���� Z��ɬ���KL��PĴ�����Lڶ��KL���`�A��� Z�թ���� Z������ç ɝ��QTl�çٳL����"��HR���T���"���Jح�#�<���A����� Z���êP���B�A����� Z�[��Mz��?��ũ�ȩN�Z�������Ƨ������A����� Z�ëPũN#�2��N��B�KL���O ��#�����H\�uT���RQT�����¯��u�QT� /�ę�G ���̯_��槯��\�QQQY���������i���ɪ�`QT� /��ԫ���2թ����� Z���=��X�W�Z����FQT����ë�\F�l���n�R��l�������R�Q��ů�Ɖ�������ů��u�Q��������������Sl���� �P��P� ��u�S��̫����������-��������<|_�uı�MR�� �+O3*eR�� �+�8������R�������������|D�*����FQ����������N�����ۧ�\){-��M�������_�uı�MR�� �+O3*eR�� �+�8������R�������������|D������FQ����������N�����ۧ�\){-����������ŵ��_�uı�MR�� �+O3*eR�� �+�8������R�������������|D������ŵ��FQ����������N�����ۧ�\){-��M��,?L_�uı��MR�� �+O3*eR�� �+�8������RD�,?LR��������ů�ƺ��ů��R���Ī���e��\F��;GO4��n�Rľ�N�;�FT�O⵪O��B����=��X�=�u�SE��G�I���,�zN��PzN�u�S�����ëL������u�S;GO4������@-���������i�R¨�i����Iu�L�-ɬ�i����H�Q� ��ëL��RQQT��RQQQ���RQQQMBW��¾��DM���QQQ���R��Ĩ����Ȫ�ëL�#��R��T=��Kŵ��J��"�>2�����ı�#�y��B���ӫH`��QTK@Z�-ɬ�i�DN����`�MBW��¾õ���QQQ���R��Ĩ����Ȫ�ëL�#��R��T=��Kŵ��J��"�>2�����ı�#�y��B���ӫH`��QTK@Z�-ɬ�i�DOGI����\�)QT=��M��J��<���B0=���FQT���I����i����I�zN��GI�FRTL¶P�-ɬ�i��)QQT��H�¨�� ��ëL���� ��ëL��uQQT������(�Ϊ���ëL������󨪿�DM���� ��ëL�`RQT=��M��J�B��X�B0=��������I����i����I�zN��G��FRQT9a��RQQVN2���i���ɪʝVOGI�O���#�i����I\`){�MR»����yu{#�i���t���ů�������y\Rĭ�����i�����i��`{���.��y��wʱ��������v! p�����X�ؾ�� �K( ��v!���U�E���3=��4 ���ɺ���w�����������֜�QSE���3=��4 ���ɺ��ɱ� �N��ů��w�����������֔�O0��q� ²����v����%��������o/�O0��q� ���.�ï�+��̫�����U��������K��B������E�'��u�̫� ����U���b����������X@/�������u�̫������R���P&ů������U��@Ũ�@�+@��Ň�Դ��@�+@ſ�ɴ�v��QQ�*,Aȯ�ƨ�������ڰN���ξ��I��ӯO�ӯO�,����ڰN�Ծҵ���֯��ůɾ��V쯵�v��QQ��� ����K��B��� ����R�����R�_�Ѫ���y�� ���F����ܴ9�W�Kŵ��?�Rľ��G � �`]6�����ŵ�R�� /PKŵ��X#|P��v��u�ĸ�RQ� /���?���J���FQQ���`]6��l�ñ��"���R���P� Z���"��P����PG � ��v���W��u���RQ�����W��FQQl�çE��[�G�ɴ� Z�n����"����� Z��"��O�RQQ� /�Ĵb� ����O�`QQQ� /�9�� �O�\F�ϧӯ�� �����߱���ǧ��2�ݧٶ���M���C��o��������ϼ�ϧ�êP�P�O�����I�ϧ����9O��G �������'�������ϧ����P�������� H���N�� @���Na����ϧ� @�2��Oί���I쯵�ϧ���Z���7ǧ����ψ�NHݧ���������������Z�����ϼ�ϧ�êP�����I�P��G ��2_ï����?�������ݼ�ϧ���W�����֧���Y��W�������YϧȪ���>�� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������ش�Ω�����ϧ� H���N�� @���NaW�'O�K?����ϼ�ϧ�Y��#ï��2ë>�O"�>2��E��������� H���N�� @���ϧ�Na��Ȫ��P�����I�ϧ������ݧ� �B��O���ϧί���I쯵�ݧٶ��ݧ�ǧ�,��@άݧ쪻��=��ݧ�Gݧ�Ҽ�ϧ����ʱ���ǧ���ݧ��#����#���ì��%���ȴ����)�����/�O��G��Rľ��0��j��ů��(�H������4�\){�O��G�kF]H��O��G���u{�O��G��`]H���yuĪ��O��G��RTL�ƩĪ�G ���y�����4���Iay��y�QQt�Ĵb��O��G�Ʃ��uQT��t�Ĵb�V�t��\`���y�� ���R�� ���d�n�O�D�u�S ���d��������(ON�M�(ONR���ï�RĻ�(ON�N<< uT��[��#6�NDOG���`QT��ũ�Jੳ=�ȯ�����E=�D�ê\RR��ORĻ�(ON�N<< uTcI�FQTO�#6�N�N<< \){�4��.��y��R��6��RĻ���uTH��(ONۧ�PM�(ON\�{�M��a�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QS���dJ7͜�QS ��}h��QS����}$͜�QSz��s}㜛QSì���ƪ�7�ʜ�QS���ï���栛QQSA�,�-+"�����$ʜ�QSj���̫���;���wh��QSj���B����y�� �$7ל�QSj���B����Yw7ל�QSd���Q�ʽ�F{��ZB-w޴ʱ��������v! p����,��L���v��%�����ZB-v!���U���}栛QQSj���n��M� ��wʜ�QSj���[��̨w͜�QS�ZB-�(��/ñ̶�wͱ�������֜�QS�ZB-��w7ǜ�QS�ZB-��(�dw޴ǜ�QS�ZB-����w�ǜ�QS�ZB-��C��dw7ǜ�QSd��=�}$ʜ�QSj���n�����wh��ë뜛QSH ��}״ʔ��������U���X��������X��ǿ���X�X���H���I��ȩ���Ӳ�F{�j��� W���ɱAP�$ߴ$ױ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߠ���QQQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{�x���G}�ͱ��������v! p����G�ݧ��� �ũ���G�O������v!���U�;��I���O/����W�}ǜ�QSd�G � �$h���;�Uj�����QQQ;����}$����;�Uj�����!�����U���}h�������o��}h��ï��UxXN�ï�ƨ�����Gu�G�JG*�?�F{������$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������eP&K�^K��U�̵5��̵5�״�ǜ���QQj�'�ƪB�'�ƪB�n��$ߔ��D̵5²G�̫����QQV̫�����U�����̫���G�̫����QQV ��MU�x�̵5�攛QQ�QV̵5�*����J� �����R�̫� ��b}�v!���U���}렛QQSp ��w״放��U������u�̫�����U�����̫����F){����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSE���LB�+�L�$ߴʱ�Ӵ���QSE���LB�+�L���;���P�޴望QSj�. ��;�������C�,�ƨ� ��;���H�Z��}ߠ�QQSz��s}ߜ�QS�X� ���n�栛QQS ��� ���̩����3.�}栛QQS ��� ���̨w�ǔ���eP&K�^ ��MU�E���LB�+�L��xwߴʱ�ë�Dz����F{�j���� '�O�@ű� '�Ow���v! p���#�I�2@�,�W�� '�O�M�,G�� sv��%��� �E���� '�O�@ű� '�Ov�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSZ���dw�v�����;�Uj�����QQQA�I8����N��w�v�����;�Uj���;�̵����QQQj���n�����w�ʱ�ë�v�����;�Uj�����QQQE��"A �ƺ���w�v�����;�UE��"A �Ƣ( ���GR���QQ�j��������eP&K�^K��U���G����w��v����D��;�Uj��������F�d�"/�n�R�™�̫��������u�S��B����=��X�=�u�S��B�����O �H�Z��GI��H�Z��ľ��0��̫���5���e��eP����Я����e����`T��N�;�`]��!��4��O *e�RĪ���e��i��b������:���J�d�"/��O �0���`]�_�u�L¶O *e����e��O *e�Q�O *e�G�G���O *e�Q��Ĵ�ɪGP�O *e�QQT���/�A��"���G�J�e�O3�ɪG��JR�������O *e�G�\�QH�ZGI��H�Z�uT=��Kŵ�#ZFQT����O *e�0�H�Z`QT�RQT�e+H�Я����e����PĴB�ç�O *e����QQQ���Я����e�������W��������R����QQ�Я����e�������W�����W����˝�l�ç�����0��ڰ���"��`QT=��M��J� ��O �0�M���B��e�J��O *e�G��RT�KLڶ�ɪ�O *e\�&K��^��HPѲG��²Ȫ���e�K���!����!���G���R!���U�E��5���+5���̯H����״��ǔ�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�wנ�x�����N�$��ʲ��˼D�^K��U���}ߴʲ��˼D�^K��U���;�̵O}޴ʲ���˼�A����R��O��P���C,�����ȫ�PB��N�#��N"v����ǧͧ�׽,��ǧ�`R���,��GI�P�ũ�M5����]����v����ʧǧͧ�׽,���`R�٬�P��0�/�B����������-�2���Ū�#��N"v��ʧǧͧ�ק��ާߧ�uQ���,�����\)Q��Y���9���@��O����P����X����������-��v�������ާ�ߧ��uQ�����,�����\)Q��,����C M�M�����H�N"v��,��ʧ�ʽ����,�M���\)�J����<���PƩ�v����D�D�D�D�D�D�D�D�D��uQO�����D�`R��,��9��2W�O��<�v��O������D���FQQ�����,�CN<�����\F{���Ȫ�I������Ȫ�I���whv! p����Ȫ�I2W��=�sv���%��� �E��i>�����5���Ȫ�I���v�a&yJҰ ��Nahv�V��%���ȴ. �� �������رh�ì���!���U���}렛QQSj���B����=��Xw�ǜ�QS�����Ȫ�I����Ȫ�I��n�$ߴ͔���U�����M��u�G�U�����G��u���eP& �I^������R��=���IP���I���O�L �����F�3�ƴů���d��?R�™�̫��������u�S��G ���G �����ñ�̨R���>���çB����JΧy�� ���eݧO����PnO�0XR����L��=�s�y�� y�W��������C�Ľ���������O⵪OĽ�v°�uı��RQTG ���O ��\�d�¨�|���������G ���O �º�\�\����\){�ñ�R���>���çB����JΧy�� ���eݧO����PnO�0XR���JΧy�� y�v°�uı��ñ��P���G ���O �����\){b�yR°ñ��*euı�ñ��*e�����e��b�4�`]�����I��uĴb��. ����e��I��\��E���EK���:��� :�ì���d�ì��R��d�ì���YN��PYN�u�SE���EK���:��� :�ì���ì��u�S��������ë���`�ϧ���ڧ��ȯ��X�P0M�ݧ�?����� �|�2�){O� �O�u�+���ì���O� O�FTYN��O� O�`+�]�O� �R�I�P�+lDO� ��ì���O� �FVO��ì���O�0�HF�/ñ� AF]�⭬R��W,����̫���P��A1�v¶���u�M��ú"?�ú������\F]���C �R�ੳ����� ��B�K�C���������P�>�����C�2���������v¶�����������u����'2������������\){���� A�����������R�Ϊ� ���������� A���ƴv¶���uĩ�����W�,���M����������ͽD�ĸ��C 秶���������\){� A�����u�o�RT�ͧ��������RT�>�秶������RV��aİ A����������秶���\){-ɬ�� AGI�u�=���M�#���uT��� A秶��RQTO���M���\`]�� APĪ,�-ɬ�� A��`]/ñ� AMK�u��Ķ��0��MK�`QT�ٳL�ҭ��|��"���J/ñ� A��ɰ� P��0��<>�M��WI��|�\R�/ç� APMK�`�E��O3���i�R�™�B����y�� ��O ��O�O�Ê�SE��O3�H�Z�H�Zu�SE��O3���P��P���u�SE��G�I���,�zN��PzN�u�SN����n�O�N����E��O3���i�o��������u�L�&Ʃ�U.��0���˧o��������uTzN����i���RQD���(,���+-ȱ���(,�FQQDH�ZQQQzN��XR��TH�Z�-ȱH�Z���0��F��QS����(,��\F]#�i��kF]M��o��������u����I�����i�RToG�/��E��O3���i��o��������\F]GI�u����I�����i��zN��GI�`]G��u����I�����i�RT�¨��P�zN��G��#\`]���0����L�0���/������0��N�D0��������㽽uTM�&.�#Z�.�R�D0�0���FQTGI�\){OH�u�G��FTO�O��D�����E��O3���i����`]�_�����u�. �����`����-�*/� ���.�� ��)T�»��-�*/�@Ŵ��P���;��ۊQQS���-�*/�G�O��M�G�OD��.����`){��[��.����u�L�[���Ia�+�J��������`��� ���� �[��Q�1Ĵ�Ia�+�J������1[���uT�=���+o��L�[�FQT�=���+o��LJ���G����DĴ�fĻ��G��� \RT��.����R����[��MR���� Ʃ�ȯgĴ�fĻ��G��� \D���u��o�^�1�̨��d��1���FQT�=���+o��L��.��FQQ`��B�9��?R��<@���� �P�2���֯�9'��L��v�™�G �����ľ��0�̫���?�ԯ9L`]Ʃ�ȯ8���������yR������Ʃ�ȯg�P�#XݧM;��X���Py�� �ݧ���ĵ�@��y)QQƩ�ȯ8���������yD������������\���������\�v��u���RT+O �G��ƽ������\){=��9HR�ԯ9L�����G�Z������G ���=��9H�RG ���=��9H� �]���=9L�_oZ���ݧ���5���������MB��������ݧ_ֵ�ƪ�ç=9L���êP��� ��ȫ�P ��R�ԯ9L����=9L�v����IΩ�N"#uĴ�#�B�XBԯ�ӫa�ԯ9L���\F�H��N��R!���P�‘��}렛QQQů���̭ �$h����P�Ѳ� ��FO⵪OR�™�̫��������u��ů���̭ �O�̭ Ʃ�̭ ���F]�Ƨ�4�R�oZ�4��B�ì��v�u�L�̭�Ʃ�̭ ��uTȪ��O��,���eH�RQṰŧ�eH�R���ϧMG�P�4�����ݧ��L����PO3MGL�R�D���²�4��״$㔛���#��P[�������_� ��/�A�P�=��R�DH���I�Ѳ��4��e�ı��eHM�*eP������²��4��������Ĵb�Ũ���������e��\��QQQJ�[�QQQ&���������R���ϧ�t� �� �O��4����ݧ��� � ���ȯ��R�D�t*eı�JO��4������������e��b�Ũ����ý�\F]��#ï�*e�R�ҧKŵ���ƧB�� /����ePȪD��_�eH�v�������G��J�����PB#ïȲu�Ȫ��O��,���eH�RT��H��L¯*�����ePM�*eP��*e�u�����l������eH�`���QH��u�Q���H⧩ɬ���������*���*�uQT� /��G�J�\�Ĭ���ç��J��\��\���T���������e��\FQQ�eH�`�Rľ���d�o���RQQQ��������� �RQQQ���������O RQQQ���� /RQQS����������Ȫ����b������ P]����������QQQ�����������"��RQQQ����������Ȫɬ�GI���RQQQ ���3.��̩���FQ�ϧΩì���%��� �E������������d��� ���R����d�����G�I�`MG���O������"���F���I�����]����*,A*?��R�QQT��]����*,A*?�u��Ļ»,Au��T����� ƫ��,A�J���d�������M�R��QT]����*,A*?���,A\`���I����]�����o�����DE=����O0��U�����|���F]ëL�R�O� �u� �Jٶ���X�ëL���P��"����vQQQ����� �O� ��J���?��QQ��ϧ�êP�?����?�:K��R����R�Qb������ Pľ�Ȫ�O� ��JMtC�E��� p���E�����\`].�R�u��,��Ȫ��Ȫ�ëL��]���������P��`]������u�L�H�Z����̩���.��^0�����D̯M种˽uQ�ĴG��#Z\�E��O3�E��O0��q�F]�BE���:��0��q�R�@G���P�����JԪG���E�#�P���?��L�����PO0��q���FT@G�E�PQQQ�P���C�JԪG���E�P���?��L���P����FT�O����=l�U�P���fE��f=l����J�����B�=l�P��O"K��=l��_��E���FT-ɬ�=l�PQS�P���fE��f=l����J�����B�=l�P����=ȧ�=l��_��E���FT������S�P���f=l��J�����������W��PE��=l���`]�BE���W �L�:��0��q�R�G�O���U�P����J�q�#�⧯�#��~8���FTG�O�E�U�P���fE���J�q�#�⧯��E��~8���FTG�O�=l�U�P���fE��f=l���J�q�#�⧯��=l��~8���`�d��0<���G�?�R��R�S��[��̨�̨u�Sd�ì���YN��PYN�u�Q`]"#0<�����ñB�NRı�Jì���%� E�/���0<���E��.��B�NvQTYN��0G^W���I4P&�,/����YN��6�K/�����Vū�������i��bN�J�������Y���������鲝���Q��i��bN�J�������Y������������Ჽu��V�P�̨˝��1�RQV "�B�N`]OH�����e�t�R�쵶 ��B�OHt� ���ë���Z�w�ʱũ�v! p���,�L�6�� W��Ʃ���G�O��BE��Ȫ�n��������v��%��� �E��O ������H�>v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì������U�����u!���U���}ޠ�QQSj���( ��޴�ߜ�QSj���n�������w���ʱ����ͫ��ë��QS���O �����ME�5BwͲ��)V ��MU�x�d�ŵ?2�$벹�)V��eP&K�^ ��MU�E��"A �ƺ�<�$벹���)Vd�ŵ?�R&ŵ?��R&��U������ze�RQ^���BJ� �� @���+M�̨vQV��<����P���� �RQV�O����� /����˹�F{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ����ͩ橜�QSd�ƫ�ƫw�����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7望QS��êOJ�㠛QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F�xXN�� �R��xXN�n���t�©t�M�������K��R�呙�B����y�� �$7޲u�呙�̫���;���w7Ͳu�呙�� '�O�@ű� '�OwDzu�呙�� '�O�x�� �wDz���ϧ���X�ؾ�����Pũ���R���A�I8���K��wh���F]� �R��������x�� �#�����G�RQV�x�� ��<� ����C���� <���Z�����G�)���'Kݧx�� ���ZHP����P������O/���ݼN�A,<�������|X���y�� ���êP�PM�2W�����|X���PW���ç����ë>�ů#���"�x����)��� 'Kݧx�� ���ZHP��� �;��çN�A,<���������|X�y�� ��M���êP�PM�2W�����|X���P����P��n��ç���ɪGP��E>5Nx��������ç����ɪGP�� ���v“'K�����u&�O��Ѳ������ ��˧'K���R�L�I�PĪ��J���'K�QQQQol�̵�����DyDZ����������������Q��PĪ��J���'K��T>����P��`���;��ýuT�t�M���RQ��[��_��!������ol�K��FQQ��ĸ�O⵪O�� '�O�����QT� '�O������_��I�P��è\`�j�(1��ì��� �Rľ�N�;�FT�O⵪O��o�Ŵ���ƱGO4P��P���ƱGO4��ľ�z��s��� ��z��s�ì���O�0�H�ľ��0��̫��������ҭ,�����4R��Q��ҭ,�ٶ���4R��Q�eٶ���4R��Q�e\){�N�O�����>��Iū�³����Iū��uĪ��ʧ���FQT�N�O�����>��Iū��K������^�:��5"��Iū��ǧͧ�ק��ާߧ���ʹ�FQT��RQT��O3��L��,�����`QQQ�Iū��\){�>��N�Iū��O� �uĸ�RT��H��s���W�,���ʽ��s�N�O�����>��Iū����\�uQQ�sFQQ&�����RQD3P��RQD�1��Iū������`]�[�O��[����H�>��N[�O� �u�L�4��/L�4G��4��/�����I4PO� ���u�QQQ���G�R���/����IH�/�G���QQE�/��[�\uT������RQ��[����ol���O��'�/J[��\FQ&�����RD3P��RD�1�G�J����P���JE�/��[����`] ��O��R����J��N�Iū��vQQ#>��N�Iū��FT���J��N[�vQQ#>��N[�`]�_�����uĭ���H�Z^0������R�QQ����H��L�O��\)����c�?���R�?�< �W�ȯ��X�Ȫ��eP����O � v���FT�O⵪O��̫���������ľ��0�j�. �E�'�������e�<��FT���0��j�. �E�'�������e�?�R�Q���e�?�R�Q֭���e�?�`T�O⵪O���c��É�ß�#��@��*?�O�����e�?�R��QT "���P�eu��QQT����e�<�+�����@�Ƨ�e\`]�*e�R�������P��@G�������eP_O0�v¸��u��Ļ+�ɪG�秸��FQT�#�e�<�+@G�ePĪ����*e��������QQ���@��*?�R�������@��*?�\F]�e�����XR�������P��@G�����eP���çO�v¸���Ouı�󧸪�RQQ�*e���?����O*M2O��\F]O*e�R�֭����o/P����e���ÈO���v»e�Ou��Ļ+�ɪG�移eFQTů�L��H�O*M2O�������e\\){@-�E�/R�O����P��������@-P_�ev»euĪ��+�ɪG�移eFQT���e������O�H���\���E�/`QQʽ����y�� ���R�� ���d�n�O�D��ľ��0��E���3=����ɴ�,��Pӯ=�u�E���3=����ɴ�,������2����u�E���3=����ɴ(N �(N�͸����ԫũ��ԫũ��ԫũ�ά�L��(ON�M�(ONR���ï�RĻ�(ON�N<< uT6���O�#6�ND����G���FQTL�G�Lԫũ��ԫũ�ά�L�������ӯ=���ǧǧǧ�`�Q��ũ�ԫũ��Jੳ=�ȯ����G�L�uQS��ũ��`V�ORĻ�(ON�N<< uTcI�FQT�,��#6�N�N<< FQQN<< `]�4��.��y��R��6��RĻ���uTH��(ONۧ�PM�(ON\��A������ Rľ�A��?P���A�y��ľ��0��E���4A��APթ�`T���0��E���4A��A��n�����\)�ϧ�O����������������������������������������������������������������������]6�������R��O��-ȧ����A�Ȫ���><�L�)Q���1�ɰ�P�?����2B�O��>�t���������O� ��v�<�L����1�u��թ+-������A�y��<�L��QQQ���������u��QQt�¹������1�\`]�����*�R��O��-ȧ����A�Ȫ���><�L�)Q����>��� ���?���9�L2�Ȫ������|���B�O��>�t���R�����O� ��v�<�L��u�թ+-������A�y�<�L��QQT���������u��QTt�¹�\`){6��]�����R�驻M��-ȧ����A�Ȫ���><�L�)Q��OG����I��|P����1W�������� ��B�9���BRO��>�t����������v�<�L��ŧ���P��P�1��Ī��������Ũ�QQ���ů��ŝQQ����t��\RQ�{��<�L�����*��G��<�L����`QQ�{��<�L������G��<�L�����1�\F)ϧ��3�������������������������������������������������������������������������]t��R������t������>������v�������uĴt��`��ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴO0��R�ҧ_M�� W�"�B�O'�� �v��ũ�P��u�S��ůɴO0�n�O�O� ���#N�۽u�S��ůɴ?�������P������KEK����m�R�&Ʃ�U���m�������u�L�A[��A[�����m��uT�������D���m�R��������m2�A[���KEK�A[�\`]A1�O� �����ú��eR¬���u�Lµ��G�����J���e�A��Q�I4P&A1DbD��������uT���Hۧ�I4��Q�ɺ��KEK����m�\F]A1�O� ���[����eR¬��&Ʃ�UA[��C���1��u�L��1ī����1�A[���NEK�A[�`��I4P&���G�����J���e�A���VA1D�R�QQV�1�1��uT���Hۧ�I4��Q�ɺ��KEK����m�\F]A1�O� ���[����ȯ8R¬��[�u�L°I4P&���G�����J���e�A���ȯ8���VA1D�R�QQV�1[��uTHۧ�I4�\��K����I��/�R��K�����[�O�Ʃ������6��]�I��/R�驻M ��I��/�oG�� ���Ȫ�y�� �����2���Ʃ�ȯ8Ry2A������~��P�A��P���������2��O���)Q�ɴ]�I��/�G��\�ҧK'��I��/�\«��uQQQ&�OĶ�����> ���Ž�˽v&I�@GP���y�����G �������A��P�O��繽�R��y�����u�L��ϧ�Ia��O ���RQQS縯�G ������QTƩ��G ���JI���S�������QQƩ����������SA��PI���QQQƩ��> ���k����S�O������Ʃ����������QRQQQ�ϧ���X�اM@-���I�PI���3�ëŪ����M�RQQQ蛛QT��> ���A����Jթ��P�P����> ��۲�Q蛛QT�ĩZ��#��ů��A����Jթ��Po_����ů��۲FRQQQ�ϧ�?2�2[�G�� s�RQQQ�ȱA��P�T�z�Ʃ�ȯgy��A����Q�ȱ��QQQƩ�ȯg�y���y���`����QQTy��y`�����QT�������R����V�I��/���R����V�I��/�A��P�ȱA���R����V�I��/����ȱ��u�{��y��縯�G ���������A���RQ���O��RQ��ȱ�ë�ñ�����M�L�>��ȱA��PA������\�����Mƨ�H�Z�K�R�� ���?�O�0�a�O��e�O�0�H��Sz��s�n�O�] ���֊�Sz��s��O�� ��� ��� R����J�¹�e�O�0�a�� �� @��MKɴì���`T� J��`]�����.�� F��������o�ŴM��( ���R�™�̫��������u�S�������nV�P�����M�ì��#p���u�O��"RQ�ĴO �쪭G���J���1���W��( �������( ������1����`QQì��RQ( ���`]M��( ��U( ��PM����u�L�ì����M������e#�����Q��[���ì��M��ì��#p����uT���Ī���e�������[���ì��\�{���� �$�$�ʱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ�͜�QSO��Nwߴǜ�QSO*,Aw�$����)V ��MU�x���3��w㲹�)Vc����bP�&� �����b�RQQ���QQQ���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)���ŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R����!��B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F�K�R�™��� /�°� /��S��G�­�����G���S��O�L ��O�L ��S��O ��.0P���������M�����G#���"��S��B����y�� ��O ����u�S��̫��������u�S'�/�P'�/��GI��Ȫ�#���Ȫ#���Ȫ��R�����G�����"����"���.#�.�PȪ�I����S'�/�B�����,�É'�/��,��u�S��B����=��X�=��¨�������S3�ƴN���N���S���������Pn�u�S����������i����i���o���R��O��� /���i�#�v�uİ� /#�i��o���`]�R��O��� /���i�#�v�uİ� /'�/��,�ú� �Ȫ���\){#��Ĩ�i��GIk����ϧ����PB#��){#B�#�i��G��F]��u�GI�FVO3�F]G��uĭ�����GP���y���G�`��Lɩ��n�R��d���1��P��P�1�u�SLɩ��H/�|���� ��PH/�|������ �Z��RĴ�Z���1��O⵪OG����2�+�"�J�� ƫ���̨�\F{���� ���RĶ1��O⵪OJ���`]���� ��� J�F{���� �Z��G�Jԩɩ���Z��`{���� �����ū�-�J�������Lɩ�E���� �|���b�����F{���� ����0���E�P�Ѳ���H/�|��F]��#ïȱ��uĸ�RT� /�Z��F�Q� /��� FQT� /�����ū�-�\){�����®�2�� �ɬu�o���񧮷�RQ�H/�|İ��H/�|����aɬ`QT�ïȱ��\){�_�����u�L�E����G����Q�� Lª� �Ho2I���u�QQ�ī��� ����ç�� ��������˲`����� �`��bPĪ���� R��ĸ��������QT�������`��e��°�u�QQT��ɪG�������P��`�b�G �����u��Q���e�ɝ���O3�e������P�J�߲���CN<��\RQQQo/P���b�G ����b��QM�� /�G��o/��uT���L®�2Ĩ��0���E�PE��uQT����2�� �M��Ĩïȱ��\FH�ۧ�M�Y*��MF{���������� �w�v! p���,�Ƨ��O3����P���"��P�����v���%��� �E����������� �v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS����������O���$ߔ�E���^������� �QQQJì���%��� �E����������� ���=źi��vQQ�QD����@-�������ï���O���JԌ���eP&K�^K��U�=���}7�޲����F{��M0M�wʱ��������v! p���M0M��� �����B��,�����ç�I���[���P9X�������v���%��� �E��ï+�M0M�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}��ʱ�ë���(�����C����QSj���( ��������(�����C����QS;����}$ʜ�QS����w�ߜ�QS��� ,"wʱ�������ֲ��)V ��MU�x�d�ŵ?2�ײ��)Vd�ŵ?�R&ŵ?��R^K�^��U�����QQDze�^���BJ�b�M�̨v��QD����J�bv��QD��<����P��ê�� �R��QD�O����� /�������)V��e�R&K�^K��U���G����w�$ʱ�ëͲ����F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ������ޮ����eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{���ű��LP��v! p��� �P���L���L�v���%��� �E��� �ũ�����L��+��ű��L��)V�&y�J����֧�NHv�V����Q��e%��������v�V��G ��DO0R�VE�|PQQ�ӯ�� �����DZ���קЩ��Ϋ/�Pҳ�����ìP� >���!���U���}렛QQSj������A ��B�w$ל�QQu���U�����u�G�U�G��)Q�(�^yJ���vQQV���J���↑ �E��� �ũ�����L��+��ű��L�������)V��eP&K��R�Q^K��U���G����w�͔�QV ��MU�E��̫Ʃ��6I��x�G�O�O��w�ל��Qx�;�Z���$Ͳ����)QF{�ŵ����ŵ����n���v! p��ӭ��B�,���Ұ��W��=�s�v���%��� �E�����E���ŵ����n�v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}��ʱ�ë���(�����C����QSj���G����w����(���G��QSE�'���EK��E�'���EK�}�ʜ�QSj�ů����9GL�Ů���̸���}�ߜ�QSj�ů����9GL�Ů�ƪɱ̸���}�ߔ���U�����u�G�U�G�u��I���;�U��\�d��|�\��Ȱ�|�\��ȯ�|�d�u�̫� ����U���b����������X@/��������F��3�����޴������F]�M�����F]��_�i����O/�0Pt�ŵ����L�-ȱ0P�M�'2������O/�0Pi���t����uS-ȱ0P�M��t������ >��ŵ���ʧ-ȱ0����QQMBt������MB� >��ŵ���-ȱ0�\��/��E����uĻ��GMB�z������ǽ��E��\){�I���u�L�®��O/�0P�ŵ���/���,��#�_M��ʧ�ʹ������޽uTŵ��M�����O/�0�\F]��M�i����O/�0Pt���������L�-ȱ0P�M�'2������O/�0Pi���t����uS-ȱ0P�M��t�������ǧ-ȱ0����QQ�t��R������������I���uij�G/���,��#�M�M��ʧǧk�����������\��������MKɴn�R��RS�������=ŴG�O�G�O���=��q���`){�BE�����)THI��RS�P���uS�P���G�Ʃ�uQ�ΩI�ÈMKɧW�N� �Ȫ�t� ����X���>����RQ������P��(N�X#��N"��FRĭHI��RS�P���uS�P���G�Ʃ�uQ�ΩI�ÈMKɧW�N� �Ȫ�t� ����X���>����RQ������P��K(N�X#��N"��FRĵ�[�RS�P~8uQ���������[�2>�������MKɧȪ�MW�ů�~8��`){~gթ'�����PMKɹF������թ'�����R���)T��[�RS&Ʃ�UPMKɹ���˧~8uTL�Ʃ��>�>���~g���uQT�Ĩ:k�Ʃ��>��T�ٳL�ҭ��|��"���R�QQQG�Jӫ�����[MKɧȪ�~g��X�O⵪O2v��QQ��� J���G����JJ���G��~8\`QQT���RQQT��R�MK�R��b�Ʃ��>�ë�ñH�`�To̧~8`�ī���MKɧƩ��>��T�����P�MK�\`){A'���MK�R�����u�թ'����ɴ>�oP����������\))��&�=�QQQ૨���QQQϧ�=ŧë�ñC�D���QQ����ϧ�=ŧ���L���D���QQ����ȯgQQϧ[�������DG�O�����֪A�Q�ϧ=�|#�i��v�u����I�����i�RToG�/��-ȱ��i�\F]GI�R����P���O/�K>=�|#�i��v�u����I�����i��zN��GI�`]G��R���P�����KG�P���O/�K>=�|#�i��v�u����I�����i�R��ύ��P�zN��G��#\`]��R��5<�� ����O/�K>=�|#�i�#��P����5���v�u�M��FTGI�FQkF]OH�u�G��FTO�O��D��������FQkF�ϧ֯�o- �B���H�����Ծ��ϼ�ϧ�:|�_��G�@-O �o- ��_�P�e��ϼ�ϧ���M���������Qx� ��#Z�3L��ϼ�ϧ��#�o2��Mݧ�������Q�2����E�X訯�d����Qx�40@-�d�ŵ?2O �@i����Q����֧������X���MB�����ݧ���P��o- ����ϼ�ϧڰN���H��B�ì��%�=9�ïG�����0�ųO�O�����ȧ���G����-�R�¸������-�DO��6�U����G���S <>���o����Gu�S <>���Kŵ��Gu�S <>���L���Gu�S <>���'�3�Gu�S <>���~8�Gu�S <>���~8��Gu�S <>�����ñGu�S <>���o����G�`����GP� <>���o����GR��� <>���Kŵ��GR��� ��>���L���GR��� <>���'�3�GR��� <>���~8�GR��� <>���~8��GR��� <>�����ñGR��� <>���o����GF{�j��� W���ɱ���ì�����$�$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�ʱ��������������ʱ��޸���ߜ��Q ��� ���n��͜�QSj���̫���̷�w�ל�QS ���̩����zN�$�ǜ�QS��êOJ�޴ʔ�O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD����ȯg�N�R���QD�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{����������+d���.wʱ��������v! p���=�s���.�YN�е���ԫŨ�PWƽ�v���%��� �E�����������+d���.v!���U���}렛QQSE����ů�C���ů�C���.���J7�ʔ!�����U��@-w���ל���. ���O ����H�Z�. ����}�㜛�»P�͜�������̺����̱��� ��뜛��x�;��IP�$޴ʔ����d���.�YN�u�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0R�VE�|P��4�P�=�s��F�{��ȩ��ů��w�v! p���ȩ��5����P���ů�ƨv��%��.��N�M��C˴.��0��E�v!���U���}렛QQSz��s}뜛QS@���w�ǜ�QS��êOJ��ǜ�QS����}$㜛QS ���H�Zw�ǜ�QS@ű����wߴל�QS�Ȫ���.�w޴㜛QSE����>���M�'��Jh�ʱ��ǜ�QQu� ��MU�LM� ��wߴ�ʔ� ��^ëL���ȩ��ů�ƴëL��.�RQQQDM��ȩ��ů�ƴëL��M��RQQQDKG�ȩ��ů�ƴëL��KG��R�����R���e�R&��� �R^ ��RQ&��N���H�种�DG � 种�D���Om�种��RDK�R^K��U� ���'��w㲹 ��� ���>�}7Dz����F{�z��s}�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}栛QQSj���B����6�wʜ�QS;�}h��QS ��� ���n��ǔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=źǴߺv������@-�������ï���O���JԌ���e�R&K�^K��U� ���'��w望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}״ʲ���RD�^K��U���}�Dz���RD�^K��U���}�ʲ����F{����O �����ME�5Bw7槱�ζ.�ï�v! p��Ϋ����0������ƶ��~g��� �_��G ��2��i���v���%��� �E��O �����ME�5Bv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}��ʱ�ë���(�����C����QSj���( ��������(�����C����QSj���[���O���$7��(�����C����QSE��E�5 �������dwߴ����(�����C����QSE��E�5 �������dP�$ߴ����(�����C����QS�Owh��������ֲ��)V��eP&K�^K��U�E��"A �ƺ������� �w7ǔ��D������^�O �0�����R���QV�O ��C�L�I²�C��O ��C��C�L�I�v�����QQQJ"A �ƴ������� ƺ�,��d��O ���R��D ��MU�x*�����w�߲���R�QDG^K��U�d�� �B���QSE���3=��4 ���ɺ��ɱŵ�L�ʱ�������ֲu��QQSE���3=��4 ���ɺ��ɱŵ�L�� W�}ʱ��������v���;����J��>� �B���QSE���3=��4 ���ɺ��ɱ W�}ʱ��������v���;����J��>� �B���QSE��"A �ƺ0A�,��$栛QQS5�ìEKw����������v�����;�UxXNR���QQ�x�����N�R���QQ�x�d�ŵ?�R���QQ�xCR����QQx*����R���QQ� ���d�x�� ���QQQj���}렛QQSj��Y�H�̿���h������������㱭��QS ���dw�ʱ�������֜�QSH ��}״ה�O0��q� ²����v����%��������o/�O0��q� ���.�ï�+�R�̫� ����U���b����������X@/�������u����5�ì'��n�u�_5�ì'��n�F{�9(3�$ͱ��������v! p��Ϊ� �ݧ��Gݧ���ȩ�� �P_C�:��=�sv��%��� �E��ó�ê��9(3�v���J����M�v�� �J����M�� v�G�J����G�v!���� �J����G�� v!���U���}栛QQSj������'�3P�$ʜ�QSz��sw�㲹�F{�̵��w״DZ��������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ�����M�x�Z��J7޴�v!���U���}ޠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L ������R�QD�^K��U���}��ʱ�ë�Ͳ���R�QD�^K��U���}ߴʲ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v����QVy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����˹�R�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{�l��wʱ��������v! p�����X�ؾ�� �K( ��v���%��� �E���ŨK��l��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���[��ܪ�wǜ�QSA�L�$ޠ�QQS� �<��(}$望QSd��}נ�QQSE��"A �ƺ� N2�$7ǜ�QSz��s}״ʔ� ��MU®C��C��O w�ʱ�������֜QQQO� q��O Jh�ʱ�������֔�_���ƪ����l�����OR��b�J�b���v���eP& �I^������F�R�™�G ���G�u�S���� /�İ� /�u�S��O ���u�S��B����y�� ��O ��O�O�çO�O�ñ��u�SE��G�I���,�zN��PzN�u�SN����n�O�N��u�S��̫���̸Ů�̸Ůu�S,�=�|#�i�#����PzN��v�u�M��FTGI�FV���5��F]OH�u�G��FTO�O��D��������`]��� Ʊ��Gu�,��w攛�D�=���IP���I���O�L �������R�_d4�MR����d4�Mu��_&yJd4��O ����P&M����P�R����5��^����Ʃ�K>=���E��̰��F{��������������E�'��@�wDZ��������v! p����C �E�'?��EK�W���������v����������V�����+����O0+����E�'��@ź��Hv!���U���}�ǜ�QSE���N��<��OJ�뜛QS ��� ���̩����3.�}7͜�QSj���G����w�ޜ�QSj���[��ɷ�w$޲��)V��e�R&K�^K��U���B����y�� �$7לQQQ��QSj�;��I���̫�3�Kŵ��O w��QQQD��U�����K��G����F){�z��s}�v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}栛QQSj���B����6�wʜ�QS;�}h��QS ��� ���n��ʔ� ��MU�E���wߴʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=źߺv������@-�������ï���O���JԌ���e�R&K�^K��U� ���'��w望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}״ʲ���RD�^K��U���}�Dz���RD�^K��U���}�ʲ����F{���� �wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSj���( ��ߴ�ʜ�QSO��N�$�Dz��)Vc����bP�&� ����� �� @��̨��b��)V��eP&K�^K��U�E��"A �ƺ������� �w7ǜ�QQQ�QQQj���B�����O w7�ǜ���QQ��������C�9�w�͔��D��U�����N��K�����)V ��MU�x�d�ŵ?2��QQQx*�����w�Ͳ��)Vd�ŵ?2&ŵ?�U&f�K�v��QQV��U�������QD���������R��QQVze�^_��� ��n�R����D��<����P���R����D������J�+�v����D���BJ� �� @���+n��̨v����D����J� �� @���+���˹�F�{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ױ����㮻ߔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$ߴߴױ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$��$�DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�K�98+x�� �$�v! p��ҧԩM��N�� W�K�98�v���%��� �E���ë���K�98��� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����(���DyJ���vQQQD���%��� �E���ë���K�98��� ���QR��t�M�xXN���F{�ȩ�K�wʱ��������v! p�����X�ؾ�� �K( ���)V��%���4 ��E�����X�ز)V�&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}렛QQS ��}�͜�QSz��s}�ǜ�QSì���ƪ�7����QSj���̫���̸Ůw�뜛QS̫���̸Ů����wǜ�QS0G�O�⳺0G�O��J��DZ��DZ̸Ůל�QS����}$㜛QSN���$ʲ��)V�M�x�Z��Jh�ʲ)V �I�yJȩ�K���I�)V_ȩ�K��n�)V��eP�R�QDK���R��DN�^[�ūH����J̸Ů�0G�O��%�=9�ïG�ȩ�K����D_ȩ�K��n�����MR��DK��U� ��� ���'��wh����R�QDG��R��VN�^[�ūH����J̸Ů�0G�O��%�=9�ïG�ȩ�K��G����)V ��MU�x�N���}$ʜQQQx�����N�$��QQQx�ƪŪ�$$ߜQQQ��H���Gȯ1w7ǜQQQx�Ū� 2�$h���F{�j��� W����:wߴDZ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴǔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F&K��^��HPѲG��²Ȫ���e�K���!����!����!���G���R�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�޲��˼D�^K��U���}�ʲ��˼D�^K��U���}�Dz��˼D�^K��U���;��s}ߴʱ��Dz���˼�ϧӯ�� ����������ק�J��X֧���)�'���I�ì���ƪ�R��R(�P�uE��G�I���,�zN��PzN�u��B����=��X���u'���I� ����O� ��ëL���W����� ��L��uj�ì��ƪ��H�Z�ĭ���H�Z����]�����0�����F]~g�W��H�Z0��uzN��Ԫ����cR�GI���uT���L°�C���G�?���Ĩ���� ��W����� ��L����tP��\uQTL��O� ��ëL����C�uQQT��H�ÝTL�H�Z����H�Z��^0�0��˽u�ī����P�H�Z#ZD0�0��\RQT��ɱM��W��ƪ'��L�O⵪OP�ɪi�"����zN#���� ����W����� ��L����&�P���\FR�G����uT���L�H�Z�H�Z����uQTH�Z`QT������P�H�Z\){-ȱȩ�H�Z�^�P�����u�L�&Ʃ�U0�������A��&0�]�����0��˧�������QQT+tC&0��#��/˽�uT���W��H�Z�0��FQQ`�xXN�zeR��:�e�y�� �@i2_���d������y�� �_����vľ™�o�Ŵ̫���?P��»e�QQS��o�Ŵ�M��y�� D�»M��y�� �M����ľO���D��;�Kze��zeR��3����o/�v��� ��o/u�L�ë�ûĸ�� �*�� �P�� ��uT�����ë�û�RQT�ٳL�ҭ��|��"���R�QQG�J�����0�2��� �� ��J��� �R��Q�ݧ����JG ���̯_��J���� ���� ��\`QT�=�������� ���o/�ë�û�Bԯ�ӫH\F){�IH�3�OR��IHP�3�O#X�MB��=�O���Ү"��P���ë�ç��٧����R�ï����\����3�O�\W��v�3�Ou�L�3�O��O*M2������3�O�� P3�O�׽��O�S�� ����� ��G ���� �3�O�䲾ͽuT�=�����Ʃ�ȯg�� ������ �\)]�=űO�R��G�� P���=�O�������I��|��v���u��MG��"��=������FQQ��RQ�IH�3�OG���\FT��� ����� �u�=�������� ����� �\��E���EK���:���(R��ľd���0��̫���?�����\F���ľdT]�������������Χ��FQDdPĿ�����M������������Χ��`]��:�,:���f�u��ľdT����,:����FQQDdP�,:���C\){K�������R�������P�����H�N"�O'�X�oH��>���  �_E�������2B���� ����R������P�������"������E�L ���P��C���v&3K2�ތ�»u�­�uQL°����e�D����uQQ��RQQQ¹��`�­ �������O����`��O����u��L° �����R�QQQ��QT��ɽu�T�OH�ۧ����ɝQQT��� ����ɝ�O����R�QT���O����\\`T»�E���H�N"K���������E��\){MKɱ��R�Ԫ�������ݧ���?��Ʃ������G�O�����v»�E��u�O��"RT�·��uQT�������ɽ��`QQ��RQE��`������������R��H6����PH6���M;�K�6�P����=��u�ԯ�P����KL<���ƩW��=9�#q���vĴO'>����=9��q���+�M��ȽJ����*����CN<���B�N�FF]���R��NK�Pū������Ȫ� <>�@��v� <>u¾���^;��4�����I�����I�@��ſ*3����������I��,J����u������������I����RTW���ï���ů�6�����e�QQDL�<�L��G ���9��@����ï��QQQQQ;��yPĪ�� �>��ï��J������ �>����������QQ�&Ʃ���ï���@^;��4;��y��R��QS�������@��^�O�G�J�����ï��˧<�L���u�W��W��M@-�����I*��������� �ìRS��B��Ŭ��Ŭ�����"��@-^�����B���Y�Ƨ��=����J=������F{�����}$ʱ��������v! p�����X�ؾ�� �K( ��v!���U���}7ǜ�QSj����o��}h��QS0G�O�⳺0G�O��J��ʱ��̸Ůל�QSj���̫���̸Ůw$뜛QSd�̨w�͜�QS��� �7ǜ�QS=���}7�����;�U̫��ɴ?�?R�����QQ̫��ɴ̷+̷�R������Q�E������̸�ƺ̷�B���R�����QQE������̷ɺ̷� ������E����������Ũ����Ŵn�u�_E����������Ũ����Ŵn��F{����:�ɺM���$ʱ��������v! p���#ȩ�@��L��=�s���٧W��B���v��%��� �E��:�ɺM���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQS���:�ɺ:�ɱ�}$ʱ��ל�QS���:�ɴl�G�l�G�-���$ޔ�O0��q� ²�����-����.�ï��&���%��������o/�O0��q� ������ï���ˊ� ��MU�x�E���w��ʔ�E���^���J�b����+.�v��A[�^����W��Ƹ�ȶ�R����� Jì��%��� �E��:�ɺM�����=źi��ѻe������@-˲�F{�����Ʊ,<��P�h��v! p������,<��PW�'�� � ��X�_�Y���Ƨ�M�P�@�v���%�����Ʊ,<������0v�a&yJ�Y�a� @���NHv�V���Q�%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSì���ƪ�7栛QQS ��� ���>�}�望QS ��� ���n��望QSì���ƪ������$7͜�QS���M�o���wߜQ�S�Ư��$޴ǜ�QSj���n�������w״��ה�_���ƪ��������Ʊ,<����ȩ�R��b�J�b���v���eP& �I^�����R�QDK�QQ^���U�o����K����VK��PS·C����Dz��C̩���<��wh���QQD ��MPQQQ�x��C���7Dz���R�QD�C�Q^���U�G�� �o����G����R��M�x�Z��J7ߴ�v� �I�yJ����Ʊ,<����G����I�F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj���B����6�w㜛QS;�J77ǜ�QSA�L�$ʜ�QS ��� ���n��望QS ��� ���EK�}ʔ� ��MU�x�E���w�$放E���R&���JE���vDA[�^����W��Ƹ�ȶ�RD��� Jì��%��� �E��ȩ�>� ��z��s��=ź�Z��˺ѻe������@-ˌ���H�RѲG��²Ȫ���e�]������߾�������G���R���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��w�͜��Qp ��w״ל��Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}ߴʲ���RD��&K��U���}��ʲ���RD��^K��U���}�$ʲ����F{��L����whv! p���#�*O[�ūa��<��ܩ2W�e�K>=�|�v��%��� �E������,����L����v���J����dv�̫�����J��������v�̫� *���J��v�ï��UxXN�ï�ƨ�̫� u�y�� �L���ŴH�Zu!����RS���}h�����o��}h��d�G � �$͜�-�����̯������ ��̯������ ��͜�d�̨wh�!������RS�;��I������,���x�̫� }7ǜ�d��5�$ʲ��F{�ƪɪ��,ů��$״ױ��������v! p���,W��'��LPW�ƪɪ��,Aȯ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQS��êOJ�㠛QQSi��?w㠛QQSd��4�wנ�QQS�ɰ� �P�h����QSj���n��M� ��wה�O0��q� ²OL�� &���%�;��I��O0v���QV6��P�����u�QQQ���.�ï��&���%�;��I��O0v���QQD6��P����˹�F{�ŵ����ŵ��������$��v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}���(�����C����QSE���N��5���7ߠ�QQSŵ����ŵ����n�$�ʱ�������֜�QQ���@���ï�$�7͜�QSlP�$נ�QQSd�����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSd������?P��ʜ�QS�@-��@-J7�放�=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ��F{�j��� W���ɱƫ�ƫw޴7DZ��������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSj��� W����w޴͜�QSd�ƫ�ƫw7߱$ߴ����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7油R�QQQ��êOJ�נ�QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F�MG��ƪ��M�Ʃ���ïG��YN�R��d�ì���YN��PYN�u�SMG��ƪ��9H�?P�O����Ʃ�B������Ʃ�ȯ8��SMG��ƪ��M�Ʃ���YN��PM�Ʃ��u�S���������`){�ïG�����G��M�Ʃ���M�Ʃ������J�ïG��`){���ïG��O�0�a¹)TYN��b�ïG�����^3PQѲ�ï ��M�Ʃ���O3�B�N�R��QQQDMH�s����`]���B��� �*�C�B�ïGu��C�B�ïGDy��/���C�B�ïGDC���F)�+]DƺïG��B�CP�+����#X�M��`�+�]�ïG��B�C�RQQVO�ƺïG��B�C�F]ïG��B�C�R�������P�����ïGPB�ïG�C�v¹)T���ïG��O�0�H��M�Ʃ����� ���1�RQQ��B��� �*��MB���\)�+MG��|���ïG��B�C�FE�|R�ïG��B�C�`{�j��� W���ɱů��Ʃ��wߴʱ��������v! p��ڶ�ɧ ��_W�������v���%��� �E���ɱ W���ɱů��Ʃ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���Jì���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ëޔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����L����� /}Dz���R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�����wʱ��������v! p����Vاڶ@-����鵷���V���v��%��>i���.��0��E��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʱ��ǜ�QSj���̫���̸Ůw�͜�QS0G�O��J��DZ��̸Ůל�QS ��}7͜�QSz��s}뜛QSj���[��̨w7ל�QS����}$ל�QS.�N�M���w�DZ�������֔� ��MU�.�N�M���w�DZ�������ֲ��F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{���úd��IN�$�v��%���4 ��E�����X��v�a&yJ����v�V���Q�%���ȴ���������� ��� ��MU�x�'��LP�$��ǔ�'��LP&M 2�R��QQVO0��q� ��²��ñOL�H�&���%��� q����ô�I������� q����ñ�3��OL�H�=9�v�������QQD��.�ï�P��u�����QS���ñ��.�ï����%��� q����ôȫO������ q����ñ�3����.�ï��=9����QQVK ���O0��q� �Ѳ��.�ï��&���%��� q����ô�I������� q����ñ�3����.�ï��=9�������QQ�OL�H�^���%��� q����ô�I������� q����ñ�3��OL�H�=9���������D�����OL�HP����F�L�K���P��·C����ë����;�Uj�������)T]�O �$ʱ��������vVK( �����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�vVK��U���}栛���@-J7ޜ�QQSj�-B+���YN�$�ל�QQSd�G � �$7ל�QQSj���B�����O wh�ũޜ�QQSE��"A �ƺ�,�� ���$$望QQS��E� �w7ǔV��eP&K�^K��P�K������RVK����P�K����RV���O ��O3��@-��J@-ٶ���3uV��J����dvV̫�����J����̫��vV��U�����d�uV̫�����U�����̫���uV_�&�ƪ������˧O ��M`{��ɱ.��x�� �$ߴ�ͱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��� ��wʱ��������v�VK( ���'��W������v�VK��U���}렛�����( ��$ʱ���ǜ��QQSj���n�������w���ʱ����ͫ��ë���QQSȩ�H�w״͔�V ��MU�x�d�ŵ?2�$望��I������ ���O w͔�V��U���������v���J����QQQD�O ^��J��޴$$nj�Vd�ŵ?2&ŵ?�P&K�R����&��U���������v����������v�������K���������QQVze�QQ^���BQQJ�+M�̨v���������<����P��ê�� �R��������*�PQ��R����QQ��QD����PQQS������������̨�������̨������QQD�O����� /Q����R���QQQDO�R����&��U���������v����������v�������O���������QQVze�QQ^���BQQJ�+M�̨v���������<����P�3���"�R������QQQD�*�PQ���R�����������PQQS������������̨�������̨������QQD�O����� /Q�R��������H����yP������F�ȩ�K��n��GR�™�G���u�Sȩ�K��n�O�.���Sȩ�K�����'K��'K�u�S ���'�ƴO� ��P'�Ɵ���*�ɬs�u�'K��6����LJ̸Ů�0G�O��%�=9�ïG�ȩ�K��FT�`�*�ɬsP�"���*�ɬsF]G� R�GXJ����vTL�O�0�a�.�'�ƺO� �bJ�������uQT�P��������O�0�H\`R�GXJ�����vTL�O�0�a�.�'�ƺO� �bJ�������ñ����uQT�P��������O�0�H\\�������MK�R�����������O�ì��㹹`����ϧ��ɧ���� �){���¸�I� u�!��^;�Jo/�˧R!��^;�JȌS!��^;�J�ȩ�>�E�����Q��RQQ�����,�A�P��N���I�����,�A�PW�����s����X���������0�N����������vQQ٧ê�óNE�,�����BJRQS��^�O�Jì���%��� �E����>�������������Jo��B���I� �B����J����W����������槸�I� �uQ!��^;�JȌQTW�����uQS!��^;�J�����E������QQ���RQQS��^�O�G�J�ľ��������J��������������QQ��! p����uQQ��G��ȯ8��E�/����J�ȯ8���������F{��ɱ.��x�� �$����DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�x�̨@/w���������v! p��ҧԩMXN� ��_W����5����JΧEK���ç�J��M��v���%��� �E���ū��x�̨@/v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}렛QQSd��=�}$����;�Uj�����QQQx����w״����;�Uj������)V ��MU���H���Gȯ1w����;�Uj�;��s���Sx�OL�a�$����;�Uj�����Sx�ƪŪ�$$����;�Uj�����Sx�Ū� 2�$����;�Uj�����Sx�����N�$�㲹�)V�t�M�xXN���R�����/�D�ů��)V=9��O0�;��ç��R�x�OL�a&K ������D;��I�R�QQQD(�D����F{�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũǔ�G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[:�[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿�޻������QSd�ƫ�ƫw7߱$ߴDzD��;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQ��êOJ�נ�QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴����;�UE�'���EK�����D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$ߴ�߱��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F��I�L�����F]�]�����R�驻�����v&OGJvD��U��F�0G�����Rľ�0G�A�����Ʃ��A����QQS0G����0����Ʃ������ľ��0��̫��ɴ?��,��0�� ���������HR�·��uQL�̷��Ʃ��A������uQQ�RQQQ�,��0���H�̷���Q^EK��D�D�������DA���A��H/�QQQl�ç��"��R�^EK���D�;����DA��Ĵb� ������\FT«ñ��������uQL�&Ʃ�UïG�0��R������R���H#���D����ïGJ=9�ïG���R�ñ�R��0�Ī���0����QT��#��������`�Q��BE���#��J������������QQ# ����B� ���bٶG��"Ʃ���PHñ�`��QQ�H��ŵ�����uQQȪ���N���0�Ĵb�,��0�H���#��J�������������uQQQ�o- ����0�ïG�0��G���G����`�L�̷��P�����Ʃ��A���# ���������u���H�̷���̷���u�Q�H� ������0�̷���bҳ�������N�P̷��\R�^EK��D�D�������DA���A�� #N���\`��������M����F]�M�<�R& ƨR&yJ��vQD�Jì��%��4 �.��4 ��ïG��������ʫ���������������κ��+����Źū�����7ȫ�����vQD ����uQD����A���RQ&yJζI�vQD�Jì��%��4 �.��4 ��ïG��������ʫ���������������κ��I �����Ź �<�訶I���������vQD ����uQD����A���RQ&yJ઱�vQD�Jì��%��4 �.��4 ��ïG��������ʫ���������������κ�+����Ź�����ⵯ��ñ���������vQD ���ǧͧ��uQD����A�$�˹�F�H��N�ۼD��P�Ѳ����˼DK��P�‘��Q���QQD(�����C����QSů���n�QJh�ʱ�����(�����C����QS̵5�QQQJ״��QQV(�����C�����F]��Z���wʲF�Ʊ����ۼ�0�Q&�QQ�,�ܩ�����ů���̵5�RQQDZ��QQ��Z���RQQDK( �����:��5GP_ů���vQQD����Jì���%��� �E��,�ܩ�����ů���̵5�vQQD(��^���Jì���%��� �E��,�ܩ�����ů���̵5��QQD�QQѲ�Y�a� @���NHv��QJì��%���ȴ�Y�H�L��� ���$ì�����Fϧӯ�� ���������I2մ�ԩȪP�ê��ϼϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼϧ�������P�e���"�_z@��"�Ȫ��NH��ϧ�Y�����_��E�����Na�ϼ�Q�ì��%���ȴ. �� �������رh�ϼϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I��ϧ��G ��2���Na�P��G ��2��Χ�������ݼϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO����ϧ�� �����Ω�NaW�����������������Z5�����������@���P���NH�)���&���J�W,��PI���Ϊ� ԯ��X�� 3W��J��������J��9(3��=��XRľ��0��j�����̧ԯ��� qԯ��\){��ԯ���b�=�����X�yu�ԯ��� q��bԯ���y`]6��=��R®�ƱA���=��A���������u�L�=���yy���y���uQ��L�=���b�=����=���y�uQT�RQQT��=������ƱA���T��=����=��A��W�����I��\\){6��Kŵ�R»�����u��=�򧪨�ŵ�ض��L2Kŵ�������I��`]6��M��R»�����u��=�򧪨ٶ��ض��L2M��������I��`]6���R»�����u��=�򧪨ح�ض��L2�������I����{�������63�$$DZ��������v! p��������63�v� ��MPQQ�x���M��w޴ǔ!���U���}렛QQS��� �w7͜�QSj����E��M� �P�$$ޜ�QSj����o��}h��QSj�;��I������ƺ��B��P�$ʜ�QSd�<����GIwʱ�������֜�QSj�;��I�����o����/��w����������֔�_������63��n�R�O �M�������63��MF{�M���[�wh���������v! p�����OH/�5����I����/-N<< P[��v��%��� �E������,��M���[�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}נ�QQSê�H�ǔ� ��MU�x�,���wʔ���U������u�̫�����U�����̫����b�,����u�,������U�����,����u�̫� ����U����u��O����U,����̫� u���eP&K�^K��U�����Lwh���D�I���O�L ������F{��ɱ.��x�� �$�$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$���ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�ϧӯ�� ����������ק�J��X֧���){���=�$״ʱ��������v! p���M�,2H�� ���i��W� �Pŵ?�zN�v���%��� �E��̵ɬ���=�v�a&yJ����֧�NHv�V��%���N��� ���֌!���U�̵ɬ�'���I��C�w㠛QQS̵ɬ�'���I� ��w㠛QQS� �<��(w7ǜ�QS ��� ���n�7Ͳ�)������}$㜛QS������B����=��Xw7벹)����ϧ��⵪O2W�����#��0��R�QQQ��êOJ��ǜ�QS̵ɬ�'���I�ì���ƪ�$�ǜ�QS@���w�ʜ�QQ�)V��eP&K�^K��U���}�ʲ����F{���O�M+�L�H���wʱ��������v!����R‘��}렑��( ��$ʱ���޲uj���n�������w���ʱ����ͫ��ë�uj�:d+:wߴײu�����ï������� wײu��O�M+�L�a�$ʱ�������ֲu��O�M+�P�$�ʲ��)V ��M�R��x�d�ŵ?2�$ײ��)Vd�ŵ?�R&ŵ?��R&��U������ze�^_�L�H��ȴ.�R�QQV���BJ�b��L�H�̨v�QQV���J�b��L�H�̨��v�QQV��<����P����˹�F� ������G�O�:�G�OR��êP�P���#q�� �|��X����؅G�O�E�#q�P��� �N��)�1� �M��N����ì���%��� �E��̫���⵪G��Ʊ�.�(�����M������i����G�O�����E��̫�ȫ������v�™�B����=��X�=�u�S ������G�O��؅�q���S ������G�O�:�G�O��������������u�S ������G�O�:�G�O������u�S ������GO4��������GO4�C��S ���A����P����`){YN������R����ȯ8u&�O���ȯ8��RĪ������ȯ8FQQ&ū�������ȯ8��`]����B��qµ ����ȯ8u؅�q�R�O��>������M"�#�4�f�������ȫ��*���Ho��uT����������H����ǧ���������T����������G��������� ����������GO4�fGO4�C������QQJ����v��QQQ����QGO4�C�����QQQYN�����P���ȯ8`���Į������-ɬ��������������`��QQQȫ��*���Ho��`T.�N����U�#�4�f���Z������uT���0G�� #�4�f���Z�����P�YN�����P���ȯ8\F]:����G�ORµ ��&Ʃ�U���ȯ8�ˊ&�O���ȯg� ��Rı��B��q� ����ȯ8`�E��O3�K�R�™�O ���u�S��B����y�� ��O ��cI�O�O�Ê�S;�����n�O�G�L��;I����� /���B���F]ȩ�EAuĸ���� /RJ�W��EA�B�E��O3��ٻ�����ȫ/�B�2��-�#��R����3������Qٻ�����ȫ/�B�ȯ�Ƨ��/N��R����K>=�*/N��崲`]3����uĸ���� /RJ������5���GPȪ��ĭ������G��崧ҳ��G�R�ï��2�������2��-�#��]M����e���G�R���M�)Q쯳=ȈMG�� �P_G�����ï���������峳�N�R���Ȫ�ȯ��X#�#6.��FT��B��P�E��O3�����`]K>=�*/N2�uĸ���� /RJ֯�b#�2����GI���۽�Q�êP�?���Ƨ�����R. �#Z���������K�9gŵ?���FT��B��P�E��O3��/N���`]�������� /���uİ /����`]�����B��U��u�O⵪O���FTM��P��`]����H�Z�������u�O⵪O��E��O3���i�FT���L�G��*ĻM���I��E��O3���i��G���uTG��*�\��H��N�ۼD��P�Ѳ����M�̫�������G�̫���˼DK��P���,�ܩ�����ů���̵5�$��(���G���F]��Z���wʲFO⵪O���,�ܩ�����ů���̵5�O�̵5���F�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ�˼�̵5&� ƫ� ����-��ܩ��� �X�ì���H�Z��F]�ƧGR��:�e������5G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\���� ��ë���=��?R�™�G ����N���Ȫ繟�G������#⨹. G�. ���#�\){�� ���I4U���G ��u�MB���W��Ƨ��O�H��������������������G ���u�Q�Ʃ�ȯgƽ���\){G ���?XR�¨�G ���?X#J��`T�PN�u��N���Ȫ�#�N�FQQO���. G������G#���N�FQQ#\��d�~8�G�'K��o���FE�|R{���^;�yJj�. �K����̸Ů�طũ�K�� Z��� QD� �BE�JK������ QD� yJ�����d�~8�G��Ų�� QD6����`E�|R{���^;�yJj�0G�O�⳴� ZR�D� �BE�J0G�O��R�D� yJ��=9�ïG����ͺGv�DJv�D��ȯg�����`E�|F{���^;�yJE�����⳴̸Ů�� Z�� D� �BE�J����RQQQDJ��RQQQD��ȯg�����RQQQD� yJ��=9�ïG�G�˽��I��=��̴�:'�ԯ�쯭�ԫ��Rľ°I����P���O� �������ľ��0��R̫���?RQ��u̫���ɬRQΪ� ���쯭�uj�. �=���RQԩ>�RQԯ��RQԫ��uj�. �=��̴���RQԯ��X؅�ľ�N�;�RD��Pj�. �=��̴ԫ��`]�E�'���*����Ϊ� ���쯭��J�����պ������ƾ�����Z�`]W��E�'���=��XR�O�  ���M���uQQT�H�ë�-������\RQŵ�`]6���ŵ����R�� �u�6��𵻻ί��"� �`T� ɧ���ë�-�P�4 ��,���u��B6���ŵ����� �FQQ�H�ŵ��v�6���ŵ��*��� ɧ���ë�-��R����Q�4 ��,�[�\`�E���EK���:�o- ������,�ñO3��GR�™�G���u�SE���EK���:�o- ���u�SE���EK���:����I���u�SE���EK���:�P��������IH�&�Ʃ�UO���ZP����u�L°IH��+o- �H ��IH�R�QQQ^��+o- �O3����O3��R�QQQ�O���Z��uT�IH���˧��\){G�G����-��R�GXJ�XL����vT�P�������IH�R��Q&�O���ZUİ��oG�/���O���ZD���ͽu�QV��QS���˝QQ^�����`RTGXJ���2��vQT�P�������IH�R�QQ^�O���ZUİ��O���Z��R���QQ^����������R���QQ���蹧�˽�u�QQV��QS���˝QQQ^�D������*���\)QTGXJO���Z��vQT�P�������IH�R�QQ^�O���ZUİ��O���Z��R���QQ^����������R���QQ������ɱM��Jح�&�JK?��\�u�QQV��QS���˝QQQ^����QQVE���EK���:�n��O3��R�QVE���EK���:�n���P�¾��J;�����������"��ٶ����ح���^���\�K?�\�˲��\FR�GXJ���< �� vT�P�������IH�R�Q^�O���ZUİ��O���Z��R���Q^��������DŹ�R��QQQQQ����^����D�J����˽�u�QV��QS��DŹ˝QQ^����R�V�J�����\F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į������������O�/��ç�5Ȫ�5Ȫ����)�R�™�B����y�� ��O �O u�S���ƥ�6��ɰ�����S���� /�°� /��S��G�G���������GR�¹����G����� l�\���G��`T¯uO �O�O��FQo�RQMG��"�̫���?�O��ɴ���FQQG�������GP�FRQ���ů�积FQQ���L¨�P�y�� ��uQQ��O⵪O���ů�#��`�QG�G��IU�O���>����`QQQG�G��P�\`]�MR�����u�O⵪O�娵 l�n��GFTO⵪O�娵 l����GFTO⵪O�娵 l�����GFTL�&Ʃ�U��?������G�uT��0�移�?����i���ɪ��?����i���ɪ�\F��xXN� ���H�Z�3LRľxXN� ���H�Z`]H�Z�3LR������X#Z�Ȫ����NX���H��v�“�uQH�Z��Ƨ�&��N���H�种�`T“0��uQH�Z��Ƨ�&0���/����0����D��N���H�种�\��W��� ��Rľ�z��s�n�����֊QQS ���?�O�0�a���O�0�H���™�̫��������u�S��G �����ľ��0��̫���-���\)�ϧE���2���z��s��ݧ'�����2B��e�Mi3������4]� R�ҧW#�X�� ��;��ô�Ү"��P���=�XRƩ���RV�����O��ɧB�b�� �����驻����PB�� @��v°ç���������֧�ç�њ��D��D���I4��RTL��ľ����P�� @���uQT���L�OPĪ����G����������uQQTO�0�aĪ����*e�O�\\){�,��������*eëL�uĻ�O� �uT���L���1��1��PO���ëL��O� ��uQT���MG��"���ԧ�1����J�eĴb�BE�����ԧ�1�\RQQT��[��_O����1��������*e�QO��\F]�,��G ���?X������ëL�uĻ�O� �uTëL���[��_O� ¾� �#�O ����񴽺���\F�����R�™�G ���G����������U�t�Ʃ��T���ƹ���G��=��9aƽ�t��˽�Ʃ�`QQ]���W�ȯ8�u�MB������������Pȯ8�\����I�ܴ'K���n�R��N����n�O�N�������^o- ��� N�D[�ūH������F���>O�����@R��'�/�n�O��6�U]�������1��'��L�+O⵪OJO ����>���@�G�,���`]���@R�GIĴ��N��ūa�1��'��L���P&yJ�����=l�J]�����˧���+o��L�=�J�⳧�Ʋ�����+o��L�=�J�⳧��\){����ɩ�������������� ���M��ŧ��uĴ�ɩ���⳧�ɧ���Uu�QQ�¬ɧO�����u�QQQ�������积��� ��QQL�O����Pı�O����P���P�,�̨��dDƩ�ȯ8�ܩ�Ʃ�P����u��Q�M��ŧO�����`��Q�ɩ����⳧�ɧ���� ��M��ŧ��\R�QQ���`]��� �R�����G ��P�M���u��� �����G ��P�M������\R�����G ��P�M��ŧ��u���� ����@R�QQQ�¬�u���ɩ����⳧�ɧ���G ��P�M��ŧ��\`]��R�����G����u����G�������\R�����G���ŧ��u��� ����G����ŧ��\){=�������G�u�����G���O����u��Q�+o��L�=�J�������G���QQQ�+o��L�=�J� �����d���PO����\`{����,�wDZ��������v! p��n��������ūH2ì��#Z�@�,��v��%��� �E������ŭ�����,�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����������P��O ²��X��׿��H�Z�u!���U���}�ǜ�QSj���B����=��Xw7뜛QSj���[��� � ����w$㜛QS ��}7͜�QSj���n�������J$���ʱ�����DZ�ë����eP&K�^K��U� ��� ���̩����3.�}�ǜ���QQ����}$㜛��QQz��s}ޜ���QQd�����ԧW��=�s�v!���U���}栛QQS�@-J7뜛QSj�-B+���YN�$�����;�Uj�����QQQd�G � �$7ל�QS��zLw7����;�Uj�����QQQj���B�����O wh�ũǔ!�����U·C����ë����;�Uj��=�s����Qx��C���$�ݽ�����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫���F�{�Y�d}$ʲ]�Y�d}$DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSd������?P��ʜ�QS�@-��@-J7�放�=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�油x�ì�����P��$油�F{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}렛QQS ��}�ǜ�QSz��s}7ǜ�QSd�������W�ݧ��P9Ʃ�v!���U™}h��QS��cw7望QSK0�$ޜ�QS;�=�sw�望QS����w޴ױ�ëל�QS�@���ï�$޴͜�QSj���B����y�� �$����;�Uj���̫���;��Ê�QQQj�;��I��5�̵���̫���;���wͱ�������֜�QSj�;��I��5�̵���[��ɷ�J$$DZ�������֜�QSE���6�����(�w�͜�QS���W�}ǜ�QSj�;��I��H̶�;����}h������������;�Uj�����QQQd�G � �$7放E����P��F{��� lwʱ��������v! p��િçL>�#⳧B��ƪW��� Ʃ2�̯��@�,���v��%���4 ��E�����X��v�a&yJҰ �hv�V��%���ȴ. �� �������رh��ɬ�!���U���}렛QQSj�̯��̯��J�״ל�QS��̸Ůw栛QQS0G�O��J������̸Ů�ǜ�QSE����[�ūH���}���벹�F�� �����R��-����,�N@>�ì���ì��u�Sj�ì��ƪ��YN��Pì��u�S� ��oG�oG��O'>*��G��R���'>����G�ʧ��#Xv���uę�G ���O ���������`]b*��@-R����IH2ì������@-v�@-u�ì���ì�����̫�������X��3��@-\){�����R�쩬�ç����o/vµ��uı󧵭�RQTì���b^*��G��#���FQQO'>*��G�ʧ����1��uS�����b*�*eR����IH2ì�������ev°�u�ì���ì�����̫�������X��3�R��QQ��������\F�H��N��R���P�Ѳ����!���P�‘��}ߴ��(�����C����QQ3�ƺů��� w��V(���G���FO⵪OR��3�ƴů��� �������ϧ�ƨ��ŵ?���I��ñ��.�ï�ñOL�H){��Z���}$ʱ�������ֲFů��� ۧ�Z���F�Ʊ�����R0�^�嫻O��ů������*X� /RQQDZ����Z���RQQDK( ����ƧB��X� /�O�N"P_ì����e��vQQD���%��� ��rҸ4�O��ů������*X� /vQQD(�^���%��� �E��Ҹ4�O��ů������*X� /�QQD�Ѳ����%���ȴ�Y�H�L��� ���$ì�����F����Z�n�Rľ�N�;�`]���ȩ�P�Ѳ�����������F{oM���L�G�O����ȩ�Uȯ8u���E�/�?����ȩ�Pę�G ���� �ȯg䲲\��`{oM��O�����L��ȯ8u�O*M2���\Ƚ�\�ȯ8`{oM�*���CK��G ��ȯ8u�O*M2䲫��|���|���|��ȯ8`]5"�ȯg�ȯ8uīRoM���L�G�O����ȩ�Pȯ8FQoM��O�����L���ȯ8FQ���RToM�*���CK��G ���ȯ8\F]oM��O���������ȯ8u�O*M2���\���˽�\���\�ȯ8`{oM���M�A���,�ȯ8u�O*M2���\Ƚ�\��\�ȯ8`]5"�ȯ8�ȯ8uīRoM��O����������ȯ8FQoM���M�A���,��ȯ8\){�MR�٧������ïL�=��������v�����u�Ȫ���N8���̫������O3JM���uTL�ȯ8P�@-�H�8����RQT� /��E�/�?��5"�ȯgȯ8�\RQT� /��E�/�?��5"�ȯ8ͧȯ8�\\�{�B� ��w$DZ��������v! p�����X�ؾ�� �K( ��vR!���U�E���3=��4 ���ɺ���}��望QSE���3=��4 ���ɺ��ɱ� �N����̿�}��望QSE���3=��4 ���ɺ��ɱů��2���望QSE���3=��4 ���ɺ��ɱů�͸� W�}���v���;����J��>� �B���QSE���3=��4 ���ɺ��ɱŵ�L���望QSE���3=��4 ���ɺ��ɱŵ�L�� W�}���v���;����J��>� �B���QSE���3=��4 ���ɺ��ɱ W�}���v���;����J��>� �B���QSj���}ޠ�QQS ���d}h��������֔R���U���������E�'��u�̫� ����U���b����������X@/�������u����B� ���n��K��B��������u�_B� ���n��K��B��������F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�����������O�/��ç�5Ȫ�5Ȫ�����ϧӯ�� ��Į�����������J��K����ӭ�ܧ�K� ��ܿI���̵���?�E��)���ůɴ?��:R�¿�����:��:��b��L|����;�R��;�yu�rb�L|��ӳ��;�y`T�;�y��1�u�rb�L|��ӳ��;�y��1�\){G��������R©u���RT�G���������\){�O�������R©u���RT��O�驻����\){����M-��ɬR©uĴ�M-�֩�Ĵ��b��\){����t��R©uĴ��Ĵ��b��\){�����bR©uĴ��b��`���?�� R��� ™�G ����O 9��@ܩ����� �� �� ]�O�<��� R�ֵ��L�y�MB#:�X�'O�õ� N������ R¨�� Rı�#�9��@��O ���\� �� �� ]�X��I�H� R�ֵ� �,�#X�MB#X��I��� R¨�� R�o�� �� RO*M2䲪 ���� RO P䲪 ������ �� RD��H� RO P䲨����� �� R���� �� ��xXN�-ȴx��Ʊ:R��xXN�-ȴ�  ��O�y�B����e���SxXN�n��_��PM���OOJx��Ʊ:�`]x��Ʊ:R����X�ؾ�� �����|�v�yu�L�[�^y�yR�QV��5<ܩ2�y�B��y��uTM�M��J�NX��O�ç�x�-��x��Ʊ:�����FQT��eP[�R�Q������Ѩ�5<ܩ��˺M�d��OJM�d�[��u�Q������Ѩ�5<ܩ��˺K��I�d��OJK��I�d�[��u�Q������Ѩ�5<ܩ��˺��������d��OJ��������d�[��u�Q������Ѩ�5<ܩ��˺���d��OJ���d�[��u�Q������Ѩ�5<ܩ��˺��4 ��zN���d��OJ��4 ��zN���d�[��u�Q����d�OJ���d[��u�Q�鯮��e�OJ鯮��e[��u�Q�իƩ�e�OJիƩ�e[��u�Q����������O�OJ����Ʃ ���O[��u�Q�� �� @��MKɴì���OJMKɴì��[��u�Q�� �� @����G�L���OJG�L��[��u�Q�\��N�����n�Rľ�N�;�FT�O⵪ON������N���Ɖ�N����u�S�����H�Z����H�Z�ľ��ôì��RQQQ�����n�RQQQ�4M��n�`]GI��ȩ�H�ZI��uĶ��H�Z�m������P�����N��������Ȩ�FQ�R�L�'KƩ�ȯgį����G����D��`�Q0���/���b��i��bN��J��������ʲ`�Q�����ëL����H�Z��N�ëL�^'K�'K˽uQTGI��ì���H�ZRQQT�,�� ���ëL�������ëL��Q&0�0��ȩŨ��Ʃ���\��]�_�����u�GI��ȩ�H�Z���FT� /��ض��������۲`&^K��U�d�G � �$7㜛�Sj���B���� �$޴㜛�Sj���B����y�� �$7望�SO��wʜ��S���d�����}$ʜ��S���(���$望�S��4ï�}��QQV ��MU�x���G}�ޜ�QQx �wDZ�������֜�QQx��ɩ�w栛QQQx�;��IP�$��ǜQ��Sx��� /}ǜ�QQx� ��wߠ�QQQx�d�ŵ?2�$���QQx������$͜�QQx���M��w޴ǔQQVO ����P&��B�噴G � O⵪O����QQQ�� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼�G�0�Rľ�xXN�n���O3��]���QQSxXN�?�>���Ʃ�'K��QQSxXN�0�D��0���ľ™�GuQQS��̫�����D�»e�KL*e����G���O3���G蓬+�4 �����d�`]G�G�0�R�L�0�*e�e��G����J0��ɷ���uTKL*e�0�*e���FQT0��G���FQT�PĴ�ɪGP0�*e\F]G�G�Ʃ�'K��M;�K��ŵ?��H�<���R�L�'K�Ʃ�'K��G����uT�P��J���ı�'K���b�?2�bί��"�O ���\RT�P��JGı�'K���b�?2�b� �ί��"�O ���\`]G�G���.�ï�����XR�L«ů���:���uT�M�XxXN�n���ů�İ��OH��ů���uQT0�����G���Z��}�v��!���U��}$ʱ�������ֲ��`QQT�P�ů���\F�H��N��R���P�Ѳ����!���P�‘��}ߴ��(�����C����QQ3�ƺů��� w��V(���G���FO⵪OR��3�ƴů��� �K ���F]��Z���}$ʲFK ���ů��� ۧ�Z���F�Ʊ�����R0�^�QQ嫻O��ů������*X� /RQQDZ��QQ��Z���RQQDK( ����ƧB��X� /�O�N"P_ì����e��vQQD����Jì���%��� �E��Ҹ4�O��ů������*X� /vQQD(��^���%��� �E��Ҹ4�O��ů������*X� /�QQD�QQѲ�����%���N��� ���ֲ��F]�ƧK�u�zRT���FQTK ���ŵ?���I\){�Ƨ�ñOL�a�u�zRTK ���ŵ?���IFQT��K ���E�L �;��I��6�K/��FQT��RQV��QQ��RQV�������QQQ�RQVN�s�OL�a��RQVO0�QJK ���;��I��\��6�����o���F]��^ïGJì��%�=9�ïG����ʺv��M��.��M���v��ūa�.��v��=�_�.��=�Mv��b���0Ʃ'�.��0Ʃ'�v��B��L*��� J.��0Ʃ'������ v��6���ñHL ���0Ʃ'�.��0Ʃ'��KLv����LJ.����KLv��b� ��J.�� ��v��.���J.����5�/��Fϧì���%���L��-����L���)���L�����R�O⵪O��H�O�D�u���G�ª�������< ��������ݧ���u����'2�����\){���< �����汯�����uį����< �������槶�ķ��< �������㧶\)ϧ���"�N<9ݧ� �#����H �vV��������Ͱ�vV� ƿ�J䩩��˹F�����[���"���tC����O/��oGR������[���"���tC����?�?���tC�������X�9C��C�R�?�ŵ?��ɷ�����������C��RD�P�O/��oGP���XD��X�9C��CRJ�����֧ɬ����RQ���������֧��������# ���İ�ݧ�ݧ׽��|�|��ӫC�ٸ��Χ��R����էɷ�����t� ��W���اO������f��R����# ���İ�ݧ�ݧ׽�����V���Ň�$��/��G�����彧ɬ�RQ���֧�J��������֧������էɷ�����t� ��W���اO������f�罧ɬ��RQ��ɬ���ç�# ����ɬ�7��ݧ�ݧ�FQQ�W���اɬ�7�ç�Χ����v�?��ȯ���0���C�`&^K��U�d�G � �$7ޜ��Sj���B����y�� �$7ל��S��4ï�}�ǜ��S���(���$ל��Sp ��w״Ͳ��)�� ��MU�E���w�뜛QQ��H���Gȯ1w$͜�QQx�d�ŵ?2�$ʜ�QQx�;��IP�$��ǜ�QQx�;�Z���$͜�QQx���GJh��QQQx�ƪŪ�$$ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQx��ȫ��}״ײ��)��M��U�O⵪O�娰�(����n�R���QQ��p ���n�O��N�ç�Ʊ�N�ù���)����HPѲ��4ï�²���������4�ï����RQQVHI�ñ�����������˼�R�™�B����=��X����u�S��B����y�� ��O ��O�O�ýu�SE��G�I���,�zN��PzN���#�i��kF]M��u�ϧ�W��#:�����GPO�B���s�����ԧ9ȫ�PGI�R�ϧ�>_�OH�"����z?�����R�O⵪O���Ȫ��ôŪ�G���i��FR�L�Ʃ���i�O���>��Ȫ��ôŪ�G���i��Ʃ���i��uT���I�����i�R���oG�/��Ʃ���i�O3�G �������J������o��������\\F]GI�u����I�����i��¨��zN��GI������l�ç��"��R����QQQ���ح���G���#�i�������Q�k\�`]G��u����I�����i��¨��P��zN��G��#������l�ç��"��R�����QQQ���ح���G���X#�i��������Q�k\\){��u�M��FTGI�`]OH�u�G��FTO�O��D��������`�9 ����6��B��Në��Rľ��0��j���G, ̴�����6��B�૨�\){���� ����������I,����I,�`{���� ����N����P����I,��`]ų�Ʃ��R��:� �������ŧ��� �����>A���ݧȪ����R��ݧƩ���������I4����v��A���uQ�ų�Ʃ�-ȧ૨ý�A���`T�A����Ѩ��Ʃ�Ʃ��D��R�QQD���Ѩ���N�����R��Q��#��N�����R��QƩ���������I,���uQ�ų�Ʃ�-ȧ૨ý�A��Ʃ���\����������zN���ɬ�M������R�„�������zN���O ��PO �u�S��������zN���ɬ�M��G�LP��PG�L�u�S��������zN���E=�P��PE=��u�S�����?�� W�� W�u�S��������zN���B��<������P��PB��<���ɬ�M��Ȫ���ũ�&Ʃ�U��ũ��o/��#��L����oM�ɬ������u�O ������R���ũ�RQO ���&G�L#��L+��ũ��RQ����ũ��O ������^G�LA���G�L+M��oM���ì��oM��RSO ��ɬ�M�RQA���RQQ&G�L��TA��G�L+M�#��L�D �ï�K��ɬ�E=��E=�+�,�RQQD��*���QQ���RQQD���9��@�QQQD���RQT�������P�G�LD��ì��ϧ�W���I����/?��t���֩ɬٶ������2�P���?��L��K��B��RQQ�ϧì���%��� �E�������O ����> �B���� ����RQT����� W��K��B��RQQQ&t�ɬ˽�uT�o/�o/�u��RQB��<��B��<���G�L+����ũ�����F��,C�HI�ô���HI�ñ�����G�L�F]��HI�ñ����R¾󴰫���HI�ùFĸ��R�ϧٷ0��P�@�H�Rę�n���™�n���O⵪O��™�G ���G���O⵪O��™��� /�����O⵪O��™����A ��B���R�ϧ�>5N"���� ��R{EK�=��P��ѧ�������˹G�J��������\�P��\�����������6�� <>� R�™�̫���̸Ů�̸Ůu�S� ⳴n�O�]������ <>� J��6+�⳺ <>� ��ⳲF]��f­u�HL �Ʃ�P��o �R����I�趯R���=� ��L>�R����:������R���X�O����趯R���X����>趯����������UuĨ����H����RT��ɧ�uQTzIľ���趯�ɝ�����趯��\�`]�����"� i�u�L� ���eۧ�˽uT��RQT¹i�`QQT­uQQi�O��"#����� \RQT­��uQQLª��f��QQQ��o�b�� ����������������QQQ�������E�/���uQQQ������E�/�����`�Qi������QQ��R�Q�OH�ۧ ����� ����`�QQ��\\F��������/�A�n��G�R����ūH2GX�y�� ��v�™�G�Gu�S��G���ƴ��G����G����ľdU�M;�K�6�P����u�S��G���ƴ��< ����������ľdU�M;�K�6�P����u�S��G���ƴ�N��P��P����N����ľdU�M;�K�6�P�����)�QQ�ϧԯ3� W�6���IR�Sd��̨u�Sd��N��)�QS6���I�P6���IuQQQQS�������/�A�P����u�S�������/�A�G��N��P��PG��N���u�S�������/�A�G�?�G�?�`��ϧ���ūH2GX){�ŵ�������=l��ŵ���������`6���I����!�ŵ��H���ïi�RĬ��G�]�����n��G����RT������W��RQS�(�t��uQQ����N��M�RQQQ�G��N��+(��N��RQQQ��(u�����N��� Ĭ���N�O����6���I��t��ķ����(R���������(R�������D�"������ ��&� �D��� ��\R��QQQG��N��+t����N��#�\�uQTG�?����t�ķ����Ȫ�ŵ���ŵ��R���QQT���t�ķ����� �#������QQ�������� �#�\\F�M��H����R�����B��n�O�����,��e*?��������R����Q���ë������=����"��U���������u�ԯ������� /����"��PO"�>2�����>��� ��v��RT. �������FQTl�ç��"��RQT� /�Ĵb� ����\`){���R®ë���*�u������ �0G+�� ���� ��QQT,���ʝQQ��ë��İ��=����"��P�ë���*�\F]����X�kF]GI�����X����u����I�������X�����. ������\F]G������Xu�����XRT�s�9�"�����X\��9���.�����R��R�N��<��O�<��OuE���EK���:�P�uE���EK���:�o- ���u9���.��O3��u���»��6��H�Z��]����`��ϧг ����#Z���PO���{���KL���R��Z������LPKL<�������H�Zv�&Ʃ�U���C��u� �&Ʃ�U����u��<��O�M��J�Z�KL<��������C�QT��.ۧ��� �ŧ��������C\){�KL������KL���F���İ��]���KL���&�Ʃ�U�Ź�^Ʃ�U���C��uQ&�����I4U����CuQD���������9���.����+KL����RT��RQT<��O�M��J�Z�KL<��������C�Ĩ�.ۧ�ŧ��������C�k`�ů�����ſ�ȩŨ��Ʃ�Rľ�N�;�FT�O⵪Oů�����Pů��u�Sů�����ſ�����'K���u�S��G ���G ���ľj�ì��ƪ��H�Z`]�����'K:������X`]�"�R®ë�-��[�u�L�¯���G ���Ʃ��G ���� ���@-P[��Q-ȱG ��ů����"�Ʃ����G ���Ʃ�����X�uT� /�����G ���Ʃ-ȱG ��FQTHۧ�ë�-��-ȱG ��FQQ`]ëL�O�u�Ȫ��ë�-��O⧮ë�-�RQ��;�a�ë�-��„u��QQT� /���ë�-��;�H��\RT��ȩŨ��Ʃ�秮ë�-��İ /���W��ί�Ʃ�ë�-���İ /�����Ч�ë�-��`QT�O"�>��ë�-���[�u���İ"ۧ�ë�-��[�\`]�MR�����uĪ���ĩ��������`QTOH�ۧ����'K�t���ů�Jů�����ſ�����'K�G ������9a�G ���̯_I��\`QQ��FT����H�Z�ëL�^0������`&^K��U�d�G � �$7㜛�Sj���B���� �$޴㜛�Sj���B����y�� �$7望�SO��wʜ��S���(���$望�S��4ï�}��QQV ��MU�x���G}�ޜ�QQx �wDZ�������֜�QQx�;��IP�$��ǜ�QQx��� /}ǜ�QQx� ��wߠ�QQQx�d�ŵ?2�$���QQx������$͜�QQx���M��w޴ǔQQVO ����P&��B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d���� ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼�H��N��R���P�Ѳ��������P�Ѳ� �!���P�‘��}ߠ�QQQ��}$ʱ���ײ��F�Ʊ�����R0�^����.��y��RQQDZ��wʱ��������vQQDK( �����X�ؾ�� �K( �����&y�� �����y�� �����R�I^_���y�� ����FO⵪O����y�� ���F]�Ƨ���u�zRT���FQTȪ��O��,���eH�RQT��y�� ��˺�M��eH�\){�Ƨŵ?2�u�z����0�� ��I��b\)��4��� �����0��j��4�����Ʃ�4���Y4��鵷�ڀ�P鵷�ڀ����=�ά�L\){��=ȱG�L�R&���鵷�ڀ����=�ά�L�����RD�=�Ƨ鵷�ڀ����=�ά�L������RD�=ȧ鵷�ڀ����=�ά�L�����W�F]���Ʃ��������R��^Ʃ�U�=ȱG�L��uĸ�B鵷�ڀ���FQT�H�驻�����=�ά�L�=ȱG�LP�=ȱG�L\F]Ʃ��4�R��^Ʃ�U�����������uĪ�����������RT�Y4����鵷�ڀ�P�. Ʃ��������R�����l̵�Ʃt��R���QQ���������\RT�Y4��\){�BE���Y����W �R�NEK[��`����BE���Y����W �R�����������i/�.R�NEK[�uTMB���R��W�Ƨ���[�u�S�NEK�ƽNEK����\R�����������i/Ω�RTNEK[�uQTMB����RQQT��NEK�[�\R�����������i/ӯ�L �R�NEK[�uT��NEK�[�`Q����������i/�O��.R�NEK[�uQ�MB�������QTW�Ƨ���[�u�S�NEK�ƽNEK����\QR����������ȯ8R�NEK[�uTy�[�`Q�ŇR�NEK[���[�FQkR�NEK[���[�`]�N��G ��[��������uĴ�������Y4�. Ʃ��4�������Q���ŇNEK�[�\�{��ɱ.��x�� �$�7�DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$���7DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�õ�ú�� ��ë���=�wʱ��������v! p������ ��ë���=�v���%��� �E��,�ܪ��� ��ë���=�v�_õ�ô�� ��ë���=��YR�O ����P&M����P�R�a&yJ���v�V��%��ï�HNH�E��� ������!���U���}ޠ�QQSj���n�����w�ʱ�ëל�QS� �<��(}$望QSN���$ǜ�QSj���B����;�w�望QSd�̿��$ߴߜ�QS/ LP�$נ�QQS� �,��d�H�Zw�ʱ�������$�����ͱ����;�Uj��������eP&K�^K��U���B����y�� �$7�ǜ���QQj���G����w��ʔ��D��U�K����R�QD �I^������F{�����wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v!���U���}렛QQS����}$㜛QSz��s}뜛QSE����OK ��+̫���̸Ůw7汰望QSj������@�̸ŮJ�޴͔� ��MU�x� ��wߴ�ʔ� ��^ëL�����7ȩź.��R�����/^oɬ�J�����e�R&K�^K��U�̫��ɴH��L��H��L��.�J7�Q���� ���'��w㲹���F{�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũ㔾G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[:�[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F{������L�}$DZ��������v! p��௳E�ݧ���P�I��v��%��� �E��.�1������L�v�a&yJ����һ������v�V��%���ȴ����� ��� �!���U���}נ�QQSj���B����Yw7͜�QS��êOJ�h��QSd�ì��w�望QSd�}$ǜ�QS����}$ʜ�QS ��� ���n�뜛QS ��� ���̩����3.�}딾 ��MU�x� ��w޴ǔ�_�����L��MR� �I�yJ�����L���Iv��������U���X����ʷv�QJ��X�X���H���I��ȩ����v�QJ��X�X���������O/��ض��L�v�QJ��X�X���H�I����v�QJ��X�X�������O3���v�QJ��X�X��IL�����O3���v�QJ��X�X���H�:�O��گ���u� ��^ëL�������L�� ���L��ëL�RQQQDM��������L���� �H�����F{�lP�$�ʱ��������v! p������������G, �PW��=�sv���%��� �E�����E���l�v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���Uu!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��)V��U�����u�G�U�G��)Vd�ŵ?2&G�E�PѲG²�1�����G��̨���R�QVŵ?�U&f�Gv��Q�QD��U�����G���QD��<���E���1�����G��̨���QDze�^���BJ���G��̨v����D����J��v����D������R����D�*�P��R����D9�������P�R����D_l�����-�R����D��<����P���R��QQ�QQD�bD�1�̨R����D�O����� /����˹�)V�I���;�U��\��Ȱ�|�\��ȯ��)V��eP&K�^K��U���B����y�� �$7�ʜ���QQj���}޴ʱ��ǜ���QQj���( ��$ʱ���ޔ��DEKM�^�U�������������J����EKM����D ��MU»��E���EKM�wʱ��������vQQ���QQQD��;�Uj�������Qx�d�ŵ?2�$벹���F{�K,N�L�dw�ױ��������v! p���W,���W�� ���v���%��� �E��K,N�L�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0R�VE�|P��4�P�=�s�!���U���}޴��(�����C����QSE���� ��:A �L��}��ל�QSE���� ��:A �L�̱̫��( ��$$����;�UE���� ��:A �L�̊�QQQj�ȩ��I+ȩ��I��=l��w����QQ�ϧ���X�ؾ��W?���P9��L�P����P���R�QQQ���#���̧�� �|��O3�OH/�R�QQQj�����̺����̱���}޴�油)����ϧ쯭�GX�ȩ��IP��=l����� �|�R�QQQj�ȩ��I+ů��G,�J����(���G����eP&K�^���U�G�� ���R�QD�^K��U���}ߴʱ��ײ���R�QD�^K��U���}�ʲ����R���HPѲ�²Ȫ���e�K�!����!���߲��F{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V��%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�ߜ�QSj�'�?�����M�}��ל�QSE���� ��:A �L��}$ײ�R�QQQK�-�����3���w��͔�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H�����eP&K�^K��U�=���}7�޲���˽&��RQQV��HP�R���@/²��²d������Ʋ�JƪŪ���QQJ���²��²d������ɲ��ƪŪ����O ����M, �>����RQQV ��MUR���x �wDZ�������ֲ��ϧ��i���J�V�R���ϧ�����P�� :�ݧ���$�ʧëP�� �Ȫ��J������R�QQQ�Q>��/�����w�ʲ��ϧ�O��� /#����R���x���w油�ϧ��ç�ƨR���x��$״油�ϧ���ԧ�ɰ�|XR��QQQ��ϧ����9�����XR��®G��x�� �$��͜�QQ��ϧ驰NK��ի����|R���E��@�X�����x��NK�������w7͜�QQx�����N�$��ʜ�QQx���2�$�Dz��ϧ����V��-,�?����ūaK�NK�������R���ϧ�1�����R���x�d���$�ޜ�QQx�ƪŪ�$㜛QQx�Ū� 2�$״ǜ�QQ��ϧ� <��R���x�;�Z���$�����˼�5�ì'�����R�™�̫��������u�S5�ì'��?P��P�u�S ���d�n�O�D��ľ��0��E���3=����ɴ�����mK�P�e�L� ��Zu�E���3=����ɴ�eP�e�L�`�ϧ����Pm2O��>�B����O/����P��O ���]������������R�QQO���e�L� ��ZR�QQQO���>�P�e�yu���e�L�����e�ﵺ������e�y\\H���������ۧ���F�ϧƩ���O�N"�B����� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������ش�Ω�����ϧ����һ����N�� @���NaW�'O�K?����ϼ�ϧ�Y��#ï��2ë>�O"�>2��E��������һ����N�� @���NH���=���Ȫ��P��,���ٻ�����#��ì��%���ȴ����� ��)����,�n����i�R�¨��,�����IK��P�IK�u�S���,���� �/ �� �/ �u�S���,����M�A'���O0�A��O0u�S���,�[:�3.��O0����`��ϧҧO�OH/�����. �PB��B��L>�#�]~g��i���IK��O0� �/ ��O0�F]A������i�u��O��@��ȩ���K>=�|#vı���i��RA��O0�A'����IK��O0FQA��O0�A'��� �/ p���O0\){K����i�u��O��@��ȩ���K>=�|#v�Lµ ����G�� uT���6���Gŧ� FQT����i��RQ���[:��IK��O0�� FQQ���[:� �/ p���O0�� \F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7͜�QSA�L�$렛QQS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź��v������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱũͲ����F{�9 ���wߴʱ��������v! p��@Ũ1����W��v���%��� �E����ú9 ���v!� ���O0��q� ²OL�H��;��I�u��QQS���.�ï���;��I���a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSE���� �̶��̶�*��Jh����QSE�'���EK��E�'���EK�}�ʜ�QS���GO4P�$7͜�QSj����E��M� �P�$放_���ƪ����9 ����n�R��b�J�b���v���eP& �I^�����R�QDK�^K��U�p ��w״ײ���R�QDG^ ��MU�x�d���$栛��Qx�ƪŪ�$͜�����H���Gȯ1w7望��x�E���w��ל���x�;�Z���$ޱ�������ֲ���R�QD�N����P&G���P��O ²�N����+����R�E���^A[�^����W��Ƹ�ȶ�R�����J������=���IP���I���O�L �����R���HPѲ�N����²Ȫ���e���N���ƨ�G���F{�j��� W���ɱAP�$ߴͱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴǜ�QSj���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ����R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U� ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{��ɱ.��x�� �$ߴ�ױ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{� ��� ���̩����3.�}޴�v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}ޠ�QQS ��� ���n�ޠ�QQS ��� ���H��L�ޠ�QQSj��Y�H�̩����̩����H�ZJ��״�7��������ʔ���HPѲG��²Ȫ���e�]������߾���G���R���e�R&K�^K��U�d�ì��J7h�QQQD�������U���j��Y�H�̩����H�Z�ବ��ë�-���������������������ʲ��RD�^K��U���}ߴʲ���RD�^K��U���}��ʲ����F�@�ɴn��GRT�O⵪O��G�­���G���QS@�ɴ�����Gu�QS@�ɴ]=��Gu�QS@�ɴ6���Gu�QS@�ɴ�� ����L�Gu�QS@�ɴ?�Gu�QS@�ɴ] ��Gu�QS@�ɴ@i-���G�����u�W��RQQS�@�ɴ�����GRQQQ��@�ɴ]=��GRQQQ��@�ɴ6���GRQQQ��@�ɴ�� ����L�GRQQQ��@�ɴ?�GRQQQ��@�ɴ] ��GRQQ�Q��@�ɴ@i-���G��T��������P�M��������G�\`���F�����[���"���tC����ï������NR������[���"���tC����?�?��tC�z�tC�ɨ���ev�ɨ�u�L�ɨ����-ȧ��4ί��"����e�ɨ�`�� q��,��WA�� q��-�ٶG��"�uT�-�֩�  �� qɨ����\){���W�R��,��W�P��>ɷ���. X���>ɨ�v�o�ɷ��ɨ�u�L��֩�  �� �9��9��=�Ƶ�R���QToɬ��ɨ�����WA��9��oɬ����ɨ�R���QQ��ɨ������WA��� ɨ�`����WA��-��,��WA��� ��Q�-ȧ��4ί��"-ȧ�X��3�ɷ�`�O����-ȧ��4� ���-ȧ�X�W ���uT������������WA�#���"�O����FQT�B�X�b�W ��O����\F��������n-��9H�F]�W��R�kR���R��RD�RD���R��R�廯�R̫���?����FQ�Ǻ�R��\�RJ�vJ���vJ����vu���FQ����Rǧ�ק�u���ާ���FQ^���D�I�R��&�D�D��R������R��R���R��������������������������������������������������������R�э�k�R���k�R�э�k��k�R�Ѳ���R�Ѳ����R�\�u���\§��R��ǧ�\��R���\����R��ǧ�\��R�\ѧ�u�\�u���\ѧ��R��ǧ�\��R�\��\���\���\�u��F]�������̨R²��\���0M��\�����͹�vJ��\�����\���\��ɻ���\��vJ��\�����\�������vJ��\�����\�������vJ��\�����\���\�����ر��\��vJ��\�����\���\������ر��\��v��F&��RQQV ��MU®C��C��O w�ʜ�QQ��H���Gȯ1w7望QQx�ƪŪ�$͜�QQx�����2�$�㜛QQ�uQQVK��U���}ߠ��QS[:�(��,��w$ǜ��SE��[:�[:��w�����ʜ��SA�,�-+�P�״뜛�Sd�G � �$7ߜ��Q�ϧ��C�X�������������n������2�$��͜��QuQQQ�˼��?�������G�O�G�OR�™�̫������������ɪG���ī����ɪGP�\]��e��Ĵ���e��`{��ey��Ĵb�4�`]m��������èu�L»e. ����e��è�uT���ɪG�移e���e\)]@G��� ���èu�Lª���O ���. m�����è�uT���ɪG�秪���O ����ı�����O ���RQQ��@G�e�RQQ�?���e����ey\`],:����ūH���u�L�,:������4�,�/�@G��� �ūH�����uTm����ūH����,:�����y\)�(�>���n�R��z��s�n�O�D�u�Sz��s���P�u�S ����C�L�I��]����P�O��,�������P�����������S ���?�O�0�a�O�3�o/����O�0�a���O�0�H��ľ�[:�.�D�¸ŧ⹉����� J[:��O�%�=9�ïG����׺����F]�oĸ�o- �� `]b�����Uu������G��¾�M2İ������D�O箧���y���ŧo�\F]�N��O�0�a¸�����&���#�����FQD3PѲ�/������. ������D�1İ��G��[���F] ��� R����J�����uT�N��O�0�a�MB�b������\FT����J������1��1��RTL���fĸ���f�����QQ[�A���O3�G ���������1���^�źf��C˝QQ�ɧ�ĸ���� o�[���fĸ�O���>���fĸŧo�����CP�ɽ���C�uQT�N��O�0�aĸ�B�����N<�ĸŧo���C\`T��֧���uT�����O�0�a�MKɴì��&��� @��˝To/�����ɬ�ì���\R������*��JЫ�������`]��R��,�������P.�� ���#�������P�H�� �k\�{���P�$ʱ��������v! p������v���%��� �E������ܫƺ�⳨v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj���}렛QQSj���[��̨w7㜛QSj���̫���̸Ůw�ל�QSj���B����=��Xw栛QQSj������@�̸ŮJ�޴͜�QSH ��}״לQ�Qu�_�⳨�n�R�̫�����U�����u��b�J�b���v� ��MU�E���wߴ�ʜQQQx�����N�$�㔾E���^����J����E��Ɍ���eP& �I^�����R�QDK�^�=���IP���I���O�L �����R��D�������U���X�������X�������X�X��� /�����X�X���H���Ӳ���F{�E������ ��NEKwʱ��������v! p���J������ �|������NEK�v���%��� �E����Ъ���̫����NEKv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!� ���O0��q� ²OL�H��;��I��!���Uu���Uu�̫�����U�����u�̫� ����U���b����������X@/�������u�(�^���J������HPѲ̫�3��²����̫�3����̫�3����&Z���v��QQJ���������E������ ��NEKv��QQJ�@���%�������,c�E��̫��H�ߺ���+.�����R� ��MU�x����w�ʔ���eP& �I^�����R�QDK�^K��U���}ߠ���QQQj���G����w��ʲ����F{��ɱ.��x�� �$ߴ��ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���Jì���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�M���[�w�ʱ��������v! p�����OH/�5����I����/-N<< P[��v��%��� �E������,��M���[�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}נ�QQSê�H�͔� ��MU�x�,���wʔ���U������u�̫�����U�����̫����b�,����u�,������U�����,����u�̫� ����U����u��O����U�,����̫� �u��I���O�L ����R���eP&K�^K��U�����Lwh����QQp ��w7Dz����F{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�x��̮wʱ��������v! p������̮����xXN�v��%�x��̮���M�ï����Kv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����t�M�xXN���R���eP&K�^��U�K���QQVK��U·C��렛��QQQd�Bw7ǜ���QQj�'�ƪB�'�ƪB��}��㔛�D ��MU�x��C���油���F{��ɩ� �P�$h���������v! p��Ϊ� ��O�L ��������P��J������� �v��%��� �E��B��c����ɩ� ��v�a&yJ����֧�NHv�V���Q��%���N��� ���֌!���U���}ߴʔ���U������u�G�U�G��u�̫�����U�����̫���G�̫���u!� ���O0��q� ²OL�H�&���QQJì���%�;��I��O0�v����QD6��PV���˹�F�ƫ�ū��zN���ůI���A��R�¿�����Ň�����u�S:�-���P:DO��6�U]����S:��:��:������I��N���R��r�K/R�CN��P���uS�ůI�����fľf�������r����R�����uS�f�y��ŇR�O��uT�r@�kRQTL�&Ʃ�Uy ���*���r��P���uQQT�r����P&�@�Ƨ�� <��*�rb�CN�����R�y\`]�ůI��A�����r� B��I��N���^Ʃ���C�`]����I���N�R�ŇR�O��uT�r������P&;��4�3�A���QT�r��kJ��������I����ĸr���kRQQTL�&Ʃ�UůI�P <��*���r��P���u��WůI2ůI��u�TůI��A�����R�QT����ůI2� <��* <��*�\\`]�ůI���A��r� q�I���N�`�(,���������0G���� ��O�����@�ƨ�GR�™�G ���G ��u�S��G��]G�����S(,���������0G���� ��O�����@��P��PG��������Ʃ�G�����Rµ���u�L�3J��L�;��娭���O�������R�����1��vQQQȱ� ���R��QQQ��2;��娭���O�����賻��������R��QQQ��2;��娭���O������ì��R�������O�����������R���QQ������R��QQ���vQQQ����JQ����1��R�QQQ���L�vQQQ�P������G ���O ȱ� �����������Q����o�oP3�Ȩ�������uT. G������\){G��� ��O�����@�ƨ�GR�Lµ��U��GǔT�P�񧵭��R�G��+�� ��O�����@��P�Ʃ�G��������\RQQQ��� �P�XL�@�Ƨ��#�I�çO����P�L�`TLµ��U��G���G���G�T�P�񧵭��R�G��+�� ��O�����@��P�Ʃ�G��������\RQQQ��� �P���< @��P��#�I�çO����P�L�\���ɴ���=��Z��F]�Z��w�$ʱ�������ֲF]��Ʊz��L�=��Z����;��Z��u������į�O*M2䲱Z����Q�Z���;��Z��`QT��ɱM��Jٶz��L�Z��P���ڶ�ɧ;��E�8M��=��R��Q�ҧ-�ݧ��GM �D�ɺ������f�ï��2���� ��2����,�X������ȶ�,�X�ڶ�ɴR��Q&;��Z���;��Z��R��QD���Z���Z���\F�Ƴ���A�i���"XR��RSƳ���A�i���t��tuSƳ���A�i�����uSƳ���A�i��MG��|P��PMG��|uSƳ���A�i�� �P��P �uSƳ���A�i���,Aȯ�Ɖ�,Aȯ��uSd���P��Pd��`����BE���,Aȯ�ƺ� �R �����O��Rİ"ѩɰ��G�Dɬ˧�ѯ �M��D�����uTL�&Ʃ�Ut�����t���ɰ��G��QQ����t�� �M���uQT��#R�ī��D������QT���D��ɰ��G��QT���D���\FR ���B�Rİ"�ëL�#uT���#D=��X种`R ��г��Rİ"�PëL�#uT�,Aȯ�ƺ�" ����ԯ����ëL����#D=��X���\)Q ��ԯ��Rİ"�PëLۧѶ�P������uT�ľ=��X�#�ķ� ���ۧMG��|�ũ��ۧ�����L¸�,���󧶯�R�������&Ʃ�U2����C��P]����ݧ���X���B�=ȧ��O � RQ��ұ�Z���ʱ��\�\��\�\��\�\��\����y�J�ì���uT�3����RQQ&f�!�����RQQDA1�RQQ^bRQQQѾ���"U&A��������ɬ�ì�����$����IH���ߌ��Q&A��������. ��̨��uQQQDO�0�aĻ� �u��QL°�G�J�����+ı� �D�I4��P���Dy�J�3����u��QQ�R��QQQ�oZ�R���m���R���Q� �R���Q�N�M�R���Q�� �D�I4��P���Dy���QQQ��������O����\���Ql�ç��"��R�����ɱM��W��e2B�oZ���Ý����QQ^�ç��˧�\\��˽��F]A1����M���Ʃ�� �^Ʃ�U������(�C� ���N�M���u� �N�M�`�����E�'��G�9�R�™�G���u�S����E�'��9������E�/:��`]M6�|�E�/R�ٶ6�|PE�/B��O����P��v�uĨ�.ۧE�/�M�`]G�9��GR�GXJ9��ê�ݧ���OH�vTL�9��:��6���9��uQTOH�ۧE�/�ʝĪP�����9��=�Ƶ��9��:JƩ�M6�|�E�/\RQQ�ϧ=�Ƨ����_�?����9���M6�|�E�/���� �RQT�P�����9�é�=�Ƶ��9��:JƩ�M6�|�E�/\RQT��OH��9��9��:�ĪP�����9��=�Ƶ��9��:JƩ�M6�|�E�/\RQT�P�����9��=�Ƶ��9��:JƩ�M6�|�E�/\\��ϧì���%��� �E���ö:�����xXN��=źG��L������������δ���&�^ ��M�R�®C��C��O w�޴ײux�����N�$ʱ���ux���Ʊy�� ��;P�$ײux�d���$ߠ�x���jw�¶O w���O� q��O J�ʲ���R!����R������w�ͲuSd����J������زuS�/�J������زuS���ttt�(����9��sw�͔�M��U�O⵪O��(�.��u���HPѲd����²�������d�����M�uQ���[�����������/�n����˼Ķ�R�&����RR�骨���X�ٶ��؅P���Ϊ����-��Ұ ��vRV�ï�J�,�ƧկH� Ì���������-��M�R�RS���������-��o������������t����I4ft��uĪ��D9�����CFQT���t����ʲFQTG��t��\){�����[��� .���ft��uī���_.�����D'K�Dt� �C��t��`]�����[��o���.���ft��u�L�o�����b�_.���'K�Do����������Ȫ��f�t����I4�ft��\uT�����RQQT����_¾'K�Do�����o����T����_¾'K�D�ë����繧���T����_¾'K�DtC�����zL�o���\`]����M�f�.��D��˧��Cb�t���PI���İ /��W��M��C���Pt�������ft��`T��.�����RQQQ��.��u������R�QQ��[��� �ft������[��o����ft��\`]���ëL�M���.��D��˹�TL�ѵ�D��˧�.��uT���ľ=�Ʃ�秵�`���ľOX秵�\`]������f.����u���ëL�M����FQT. �M��f.����\)&^K��U�d�G � �$7㜛�S���(���$͜��S@�����O��wʱ�������֔QQV ��MU�x���G}�ޜ�QQx �wDZ�������֜�QQx�;��IP�$��ǜ�QQx��� /}ǜ�QQx� ��wߠ�QQQ��4ï�}�ǜ�QQx�d�ŵ?2�$���QQx������$͜�QQx���M��w޴ǔQQVO ����P&��B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼�ۺ���M�N��ů��)�?O������ů���n��Z��J7�Dz)�H��N��R!���P����?O������ů�����QJ7͜�QQS?O������ï QQQ��ޠ����Ƹ�ȶ�d�QQQ�$���ǜ�QQS?O������ů��� ��Qwʱ�������֜�QQSj���( ��$ʱ���딾����PQQ�Ѳ�������QQQ�� �� @��F3�������b�N�D�����Ѳ� �������FO⵪OR��?O������ů�����Q���u��?O������ů����ƴ ��Q��K��H�Z���?O������ï �ů��O�D��F]�ƧK�R��?2ï ����W�=9��K>=�|�v�u�z��ýï ^�O����� /Q��R��QQQD�OOQQ��R��QQQD��<����P��ê�� �˽K��H�Z\){�Ƨ��R��?2ï ����W���� ��K ��|�v�u�ï ^��<����P�3���"��`�0��n�� �R���6�Ud��n��������6�P�O�����۹���d��O3��O3�G ����S0��n��ë��'>�ëL�����ëL�#�����êG�������������� �����ëL���R&'>QQQ'>�ëL�RD��QQQ���ëL��F]����"����R�� ��Ʃ���������#�êG���u�L�� ��ëL� ��Ʃ�˧����ëL���uT� ��ëL�RQT ��ëL�����#�êG���\F]@i���ë�-��R„êG��&Ʃ�U ����uĿ���e���RQQT��R� �P�·����"��������#�êG���\\){��ñ�ë�� R„êG��G�,��u�3�����#D������������#�êG���`T3����çêG���êG�������êG�������#q���êG���\){OG�O�R„êG��G�,��u����L�G�O��êG��Ĵb#q���êG����uT���L�OG�O��êG���O3�G ��#q���êG����uQT���L�OG�O��b�_OG�O��êG��¾��.�ï�Pľ�������OG�O��êG������uQQTOH��#�OG�O��`QQTOH�ۧêG��OG�O��êG���\F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴO0����R�ҧ_M�� W�"�B�O'�� �vľO���D��;�K�����ì������YN���í�ì��u�Sì��������ì����u�S�A���P�DM;�K�6�P��u��ũ�P��u�S��ůɴO0�P���u�S��ůɴ���P��`��������������������������������������������������������������������ϼ�ϧԯ�M���������������������������������������������������������������������){A1������D����ú���R¬��[�uĵ���O��^���G�������� �J������DA1Db�`]A1������D����ú��� R¬��[�uĵ���O��^���G�������� �J���� ��DA1Db�`]A1������D6�������R¬��&Ʃ�UC��[��u�L°I4P&���G�������� �J���� ���VA1D0GR�QQV�1[��uT����O�ۧ�I4�\){A1������D��[������R¬��&Ʃ�UC��[��u�L°I4P&���G�������� �J���� �C��VA1D�R�QQV�1[��uT����O�ۧ�I4�\��R�ҧK��y�� #��0��P�B����Դ)Q�H��P��B����ԧ�� �����0��Lɪ�L�� ç�xR ��o����,�L��P9�G�����PW����Դ��P����ݧ��R�M����PȫP6��2W��B����ԧ��#���B��9ë>N�R#��0��PGI���#���ȶ�v��R��êO�P̨u��̫��������u���� /�°� /���B����y�� ��O �O u;������i������n�O�D�u;�����Ȫ��=��u������N�.�K��K�uj�ì��ƪ��YN��Pì����`=���H��L>�ۧ�®���j�ì��ƪ��D =������E=��=�*����F{�;GO4P�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}ߠ�QQSj���B����y�� �$�ʱ�ë油)��j�. �ƫ�ƫ�ƫ�ƫ�YN�P�$�$ʜ�QSj�. �ƫ�ƫ�ƫ�ƫ�GO4P�$�$ʲ��)V_���ƪ����;GO4��n�R��b�J�b����)V��eP& �I^������F��� ��ë���=��?R�™�G ����̯_N���Ȫ繟�G������#⨹̯_�. ���#�\){�� ���I4U���G ��u�MB���W��Ƨ��O�H��������������������G ���u�Q�Ʃ�ȯgƽ���\){G ���?XR�¨�G ���?X#J��`T�PN�u��N���Ȫ�#�N�FQQO���̯_ĸ����G#���N�FQQ#\��,�Ū��⴬� �������=��O R�³����í�P��u�S�����í��ë�-�����u�S�����í��ɮë����PLu�S�����í�ū����u�S��G ��������&oG���˧�J��O �=���F]�MR�HZ������u�Ȫ���Noij��o- �uTL®�QQT��ú��N�o��QQHZ��į�#�Z���M����QQ���m2�������������QQQJੳ=ݧȯ����v��Q+̯_I����uQTL���O ��ç�D��,�L��D���L���ijź� @�ç�ç�#�Z�����m��İ /��W�ɹ��N�����m�\`�3�����޴������R��R���ľdU ���ƴn�O�������O3�G ������ľd���̫�����DdP ���ƴ������u��G ���G����M���J3�����޺������M����������`]�[�����M���G�����ɽG��� �ɧ��\������O3�G ����\){O��G ��ū�ƨu�L�ɃQQ. �tPū�ƨ`�ɱ�QQ. �_�Ʃ�����Ƨ������Ƀ����ƽ��ū�ƨ`��b��P�����'2���ɱɧǧ��E�/�ū�ƨ`��QQT,���ū��Pɱ�\uTA����Ȫ������ū��Pɱɧʽ�O�N�� ��b�ɨ\F]���>ū�ƨu�O��"��³�G�HN�ū�ƨ�#��u�T����G�HN�ū�ƨ���O��"2�i�Pij�G�HN�ū�ƨ���QSī�����G�HN�ū��Pi���O��G �ū�ƨ��`QS��ܪ��,�����ū�ƨ�uT,���\){�I���uĻ��G���>�[�\){�I���u�. ����>�[�\��G*ŴëL�R�� ����C�L�I��]����P�O��,�������P��������PH�s�����������u�S ���?�O�0�a�O����*���O�0�ao/������u�S�N��<��O�=�u�S��G �������ų����u�S��̫��������u�Q`]ëL�O� �uı�RTO�0�a��=�ȯ����FQTo/�����ɬ� �M�FQQ`]��Rı�ëL�RQT�,�������P���������\)�ϧ����/�����{#�RĪ��L�=l�b�� @�*e��=l��uT��RQT=��M��J�>P�eP��=l��ı�ëL�R���,��������R�T���#�������P��^�ePĪ����*e����������=l����\FQT��RQT=����� @�*e��=l��G�J����������������i���ɪ�`QQ`����(��o���F]�����(��F]�J������X�ʫ�W쵲F]��^ïGQ�%�=9�ïG����׺v��M�J.��l�����v��ūaJ.��v��=�_�.��=�Mv��32Q&3��GI��|J.��3��GI�脩|v���3��GI���O��aQ�.��3��GI��O��Hv���3���<����O��a�.��3���<���O��H���bQ^O�N"PQQQ�.��b�O�N"�v���O�N"��� J.��b�O�N"��� v�����|PQQQ�.��b���|�v�����|����QQ�.��b���|������˽��� ����M��R���쯭��,��X�MW�ů�XPȩ�O�KX�Ȫv�©� ���R�Q���I2��P���I�u�Q�ɉ��u�Q��,5��������. ��R���@G���� �P�5ɧƶ��P�ů�v�u&yP��Dy�ɺ. �����F]. �R���MW�ů������I� ��v�O��� ��yuĪ��L»����. ����I��. ��O��� ��y�uTA��&y�. ��y�R�HL �Ʃ�Pľ.�������. ����S! p���?D��-��\F]��H���. �R���H��P�. ��MB��5�ݧ��,5��Ҩ�I����êP��� ��9ũR������P�5EK�O3��#��2�PO ��B���RQT����O �P�5EK��ɪGX�O �R�QQ���Q��[�E�/���E�/�O �`����T��[��ï�P��O'>�k�o̧�ï�\R����ĵ�[��ï��CP��O'>�k�o̧�ï��C\`QQQ�ϧë>��HN��PO ���5EK�ũW��#��M���-ȧ�RQT����O �P�5EK^O ���5EKR���QQVE�/��ï��ǧʝ���V�ï�P�O'>�k��ï�����QQV�ï��C�O'>�k��ï��C���\F]���O���O ��Rv��>�#��N"����M���C��O ��M, ��ݧE��.a����B#������GM �O ��R�M;�K�E�/����ïȧ���u��N��<��O�.�NK����8��I���q�q�`��������������������������������������������������ϼ��ϧή){~gԯ��uzN��Ԫ����c)TGI�RS��uT=��A����o����RQ^.�NK�P&qq�q�.�NK�^��J=�+.��=�v���Q��QVɱ�������ͧ���ם�����V� �=���˽��FQT=���I����X�ؾ�ԯ��B�[�ūaMi3�FQQ��FR�G��RS��uQ��`��������������������������������������������������ϼ��ϧ� @�){ ��R��uı�ԯ��`�ϧӯ�� ����������ױ����ݧ�J��X֧���){��V������}�ʱ�ëײF]��3���V������R! p��ҧzL�� �M;�K2ŵL�����3�v�a&yJ����֧�NHv�V���%���N��� ���֌�����/�D�ů��)VK��U��3����ç��V������u�QQQ�3����������V������u�QQQ�3���C����V������u�QQQ�3��n��V������u�QQQ�3��̨���V������u�QQQ�3��̨�ì�����V������uQQQ��3������V������u�QQQ�3�����<�I��V������u�QQQ�3�����ͧ��V������u�QQQ�3���ȫ�����V������D��;�Ud��������Ѫ������D�I4��u�Lª��*eG�O�m������ �������uT������*e�������*������\F] ��� R����J��� O� @G��� ��FT���J��� �����O� H�>������FT��� J��FT�����*��J�쯵�`]��Rı�ëL������� ���,��̨�O�0�H\)��������Rľ™�̫�����D��O3�QQS������P���]�����ľ��0��̫��������3���� ���3\){�BE����� �� q�R��&3K2�ײ˧��� ƱO3ɹJ�O ���� ���3����Ň��`����BE����� �� q�R��� ���3Rİ�� ƱO3��uQ��FR��3Rİ�� ƱO3��uT��� ���3����`R�ŇRİ�� ƱO3��uT��� ƱO3O3���\F]��P�ŭ���� ƱO3FL�H/M���Ň��tC��Ķ��CN<9���#N<-���u{O3�H�RQ���3����H�N"�����=�s�W�P��M��O3�vSMuTL�_İ�� ƱO3�M�uQTƩ���e�tC�R���O�������O3�_�#N<-�\\��.�R���6�Ud��n��������6�P�O������«̫ɴn�O���֊�S�:M������fH��ɬۊ�S�:M�����H���S�:M����P�O�@i�ۊ�Sd��n����������������ۧ�ۊ�S@>���P@>���`���@>���GI���+.��̨&�Om2�Ĵ=���+o��LJ��mK�۲��F]���������ë�`]H��O�����O����u�H��ɬ����f�O�������O����`]�Xu����Jì��%�=9�ïG����ʺ�X&ëL���Ŀ��ۧ������`@i��H�J�B���DY�Ƨ�İX`��R���e���RTL�O�����ۧ��uQTH��O����ۧO����\F&R& ��MU�x�=9�O0w�ײ���ϧì���%��� �E��Ƶ��ë/����x�=9�O0R�Qx�-�4wͲ�QQ��ϧ�Z0��ɷ��B����dR�Qx��� /}h���Q��ϧ�O����� /�O�OH/�������RDK��U����w�͜�QQ��G3���õ-�G���wߴ�DM��U�O⵪O���G3���õ-�G�����T��G3���õ-�G���� <��۽��˼�E��O3�(�@��R��O*,A�P������L���Ʃ��b��L��b����b��+�M��ȝQ���5��:���QB��Lۧ�Ĩ�.ۧ���5�������Q��L���u��T�Ķ�ﭵ�5������B��L۝����+O� ��5��,AR��QQ��u��QQQ���������Ʃ����QQQB��L�\��uT�3�؅Ԫi-���b������L��`]H����(�@�������u���LJ(���(��`{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������뱿�޻������QSd�ƫ�ƫw7߱$ߴDzD��;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQ��êOJ�נ�QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴����;�UE�'���EK�����D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F){�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱ�ë㔾G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[���[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F{��ɱ.��x�� �$��״DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�M��H��IH���ì��R��M��H��IH�U��P��P��u���Sn�O�����IH���SM��H�������n�O��IH��G ����S������P���u�S��G ����u�S��̫�������O3��ľ��0��̫�������e���e���IHR�B�ì�����e��eu�L»e�G��������e�Q�IH�A����O3�G ����e�G��Qo/B�ì��Ho2�+� ��e�G����\��\uT����Iaī����IH�AR��QQD�����J�MKɴì��v��QQDo/�o/\F]� ��IHR��M��H��IH���n���Ia�IH�u�L»e��e�G�J� �� @��v���QT����IH��ç�IH�\uT��e�RQQT�b�IN��e�T��Ƹ���`QT����e��IH��G ����IH�\F]ì����IH�R�֫������ ����IHP�#X�MB������O����P����ԧ�IH��)Q�����ԧ�IH���P����� ����ç� ��eݧO3P���� P��RPì���B���� ��� @���ٻ���P�������ï��2.��I�R���ݧ�����P��0G���?��� �2����O ��G���O�ūH�R����P[��v�B�ì��u�z�� ��Iaİ���e���IaB�ì��\����ůɴn�R���6�U��ůɴ?���/�ɥ�]M��"����ũ�P��u�Sl����Ũ�L�P��P�u�S��ůɴ���PGu�S��ůɴ���u�S��ůɴ�G�O���u�S��ůɴ�����u�S��ůɴ[��m2��P���`N��L�o��L�� /�F]���oG���� �����i/�Ʃ���R¾��RD��� ����CRD��. ����CRDE=������CRD�������C�F]���MR�u�L�L�Pij�HL �Ʃ�P����i/�Ʃ����QGO4���������:�L�PG�����QQT�ɺ���:��QQT�ɺK������QQT�ɺKů��"����ʝ�QQT�ɺ���İ /��¨�>��\uT�ɺ��GO4��ĸ�����G���\F]M��"DH���Rİ /��ů��G,��FTG�M��FT���M��FT���M��FRĭ+��������m��`R�ϧ� ���K>=�|ݧ����9E�|��R�ϧ���=�X�9���W������L���,��R�ϧ=9�����i�"�R�M`��,��⳱d�tC������W���M@-���� R�ٶ@-�����2���IN����2��� �W��ɩ����ëHv�¿,��⳱d�����q��u�S�,��⳱d�ůɉůɟ���ê@i��Ʃ��R�&���IN��D�1������HL ��H������yD������yDyDI��*��M2�����M2�O⵪O2��IN�������y�FK;IM@-���� F���]�1�����q�M@-���� D0GD�����R�&Ʃ�U������y��IN�������y#�������ç���IN�����^Ʃ�UO���Z����u&�1�o���HL �Ʃ�P�ê@i��Ʃ����Q��IN�������y���D�IN�������yůɺůɱ�t��IN�������y`���O���Z���DO���Z*�O���Z��IN�������y�������y\�F]���LUM@-���� �F{�A���� ��J7DZ��������v! p���VI���XP���X�Bb��A���� ���v!���U®�êOJ��ǜ�QSA���Jh�ʔ���eP&K�^K��U� ��}7Ͳ����F�K��B��ô98�F]b�98�@G*��G�,��u���@G����98P���=9��q���ݧ���������P�����v�L�Ʃ�98�@GvQQQ@G�b����+=9��q��Ʃ��uT�����M���@G��uQT��¶�^y��˽̨��d��Ia�+�J���@G\\){�98P�b�98�@G*��G�,���������[���"���tC����ï������NR������[���"���tC����?�?��tC�z�tC�D�������Ѳ�OH/��\){M���G�=9�ïG�u�=�JG�=9�ïG��ê��ũ��M���`]M���u�o�����:�M��ů3�fN���:�MFQQ�G�=9�ïG��ê��ũ��M���G�=9�ïG�FQQ�ð�M���ð�FQ��k���ѼDyJȿHⱰëHͲݼD��Q���)D�,��^���Q&��������v�QQVyJb�zI��*e�v�QQVI�U��Dz�J����油˧ϧ�CݧzI��*e�D�ҧORQQQD�H�^��������v�QQVyJ��̱�OHⱭ����QQQD?^��������v�QQVyJ?��v�QQVI�U���QQQ�ϧO����N�R��QQJ��Ū��̯�#���ȿH⧰ëH��v��QQJ�M������QQQ�# �ݧ�1M�RQQQD��� ^���S��H�u�QQQD�H��?���)��ϧMG�� ��[���2_����DK( ����������#�����OH⧭��PW��ɰ�|��������ݧȪ�zI����e�����#N�X�zL������B�O����N���崧�HPGO4X��Wƺ̯M��OH⧭��-�ݧ��ç�P���L�B�OGI��������G�zL2��_9a��#Z�M����������˼����c�?�O�Rľ®��c�?���"����ȱ��������ľ����ŭ�"D���������M����IH�I�UI��uĪ������G���`QQ&���PĻ��G���FQQD�Ho2I��FQQDI�Pĸ��������RQ&����G���FQQDI�P�OG�����`]ȫ��*��R�Ԫ��ŭ�"ݧ��ȫ��PW�ŪIO����P,����R��"����)Q֫� �����|P�� ���4�P�ŭ�"��������|PB�ȫ��*�������2_�ŭ�������)��#��"*�������I��|݈O���t��������B��O�X���#��"*O����P����ٻ������������ݧȫ��*���O����P���O����P���)Q&I�@G�R���»�����������P������P��������R�����u�L�&Ʃ�U���P�������IH��I����IH�I�PI���Q���"�󧯀�P����"*��uTȱ�����ı�IH��I�P������JE������M2���FQTL»��u�QTL�O����. �����u�QQT��#��"R���ȱ�����Ĩ��"�O�����JĨ��"���f��O����_Pľ�ľ�ɴn��O����P��\�uT���ԯ��X#��|�J��`Q��F]�=��9���RѾ@����c�������ç=������F]ŵ?��@����cUu�&@����c���DO3�@-�RV@����c�9��P���.��y�˴ ��M��ì���O3�O3�9���RV@����c�O ���L���RV@����c����JԪ����c�W�O3X����n���������ë��^@����c���D� �@-�RV@����c�9��P���.��y�˴?+��9���RVn��������f�̫���?�����,:����FQV@����c�O ���L���RV@����c����JԪ����c�W����������ƴ��WX�M�A'���@����c�ݧ�P�?���O ���^@����c���D� �@-�RV@����c�9��P��ɴ ��M�n��������� ��9���RV@����c����JԪ����c�W�M�X�n��������� ���ë��^@����c���D� �@-�RV@����c�9��P��=��9���RV@����c����JԪ����c�W�� /X����������P��ò˹F�0GO�?���CR�����P���Kç����5ZH����F]��CR�Ϊ� �,���W��J����P����v�u�G�̫���?�����,:����\�d��@���ì��ƪ�R��ì��ƪ��YN��Pì���ľ��0�j�ì��ƪ�O�����O3� q�u�Sj�ì��ƪ��YNବ��@N�u�S̫���?�o���O/���O3Я���ɩ�����MƩ��=��X����֪A�5���"�9���*�OZ̫���H�� ���Ω�� ���H�����-�ȯ��3�O�9�������Dz`]"�0�������������?��L�"��P���/�A�b��/�A\F]"�ì��ƪ��0��O�����0��������ବ��@N��\){���b�ì��ƪ��YN��=���CɹR�/çì��ƪ��0��'2Cɧ0�����ܩ\){"�ì��ƪ��9��� Ʊ0��L�0������Ĵ���?��L�"��P���/�A�b��/�A`����QQ�⵩���MƩ��=��X����������QQQ�� q��O�����O3� q��Jì��ƪ��9��� Ʊȯ�����u����Q��O3Я���ɩ�����0������0�������ʧ֪A�5��������Χ⵩�� q�\){������ì���O� µ����fo�9��� �u�L®�Ʊ���&Ʃ�U���u��QQT9��� �����#�\uTì���b����^ȯ���0���ì��ƪ��9��� Ʊ0��DYN�b�ì��ƪ��YN�C�˧��Ʊ�\��ϧӯ�� �����ױ�����O�/��ç�5Ȫ�5Ȫ�����ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ŵ����n��EK���ūH��R��<����� �PW��oZ���ũ�ȩN#Xݧ���R��NEK����B�ūH�קɧW��v��ŵ����n��EK�P��PEK���ľ��0�j�. �E�'���EK���MI���H��`]NEKR�ضEK�[��B����,ūH�״RҮ"��P�X����,�PI��|�v��[�uNEK�[���`T�[����������uL�[�EK�+B���P[��uQ�����������RQQ�H�׺NEK�H�����Ϋ����P[���H�׺NEK�H�ק���P[�\`]KEKR��EK�ūH�ק[��MB����,��RҮ"��P�X����,�PM�RI��|�v�[�u�L�[�EK�+B���P[��uT�H�׺KEK�H�ק���P[�\)�{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�:�H/�$ʱ��������v! p�����X�ؾ�� ����v��%���4 ��E�����X�ز)VK��U���}렛QQSj���( ��$ʱ������QSj���n�������w��ߴʱ�����ű�ë��QS:w�望QSE���N��H/�$���QQSì���ƪ�7�ߜ�QSz��s}뜛QS ��� ���n�7͜�QS̩����̫��ɴH��L���Ͳ��)V ��MU�x�d�ŵ?2�$油�)V��U�����d��)Vd�ŵ?2ѧRVŵ?�U&f�:�H/�v�QV��U�����d���Dze���R�QQV���BJ:�H/��̨v�QQV����J�v�QQV��<����P���R�QQV�������˹�F{����Gw�v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߴʔ�O0��q� ²OL�H�&���%�;��I��O0�v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP�ˊ�OL�H���U²�������E������u��²�ë����Z���xXN�OL�H�ŵ���Z���OL�H��QQ�����E������QQ������������������QQ�K ����QQ��ë����Z���xXN�OL�H�ŵ���Z����QQ�����E������QQ������ò��F{�j��� W���ɱAP�$ߴ$���������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߠ���QQQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F}�����{�� �k�PU�d� �PB��V��I��L2����!-���ޥ���B��Z�ҳ��B����Ӧ�4�(:bC�"���f"���tS+9ID�.��6'�hi%��R�&� 5�V��ʱ#�$%Qg�̧lT ���F�j�m4$S,g(�HM���_��E+�j� ��ID%�<�f1��1zQM��s"��HJ�ұ�C�P&.��\l5��4�;+�c�>b&�rT��F;� rĖ�86;) p3��<�I&LH���, D�1�rTd�9�Hki�Ldpi�Wv�Z�40�;�H(�bn�,H��AhU�@�FZ�К���'0��L� "�j�{Z |:"G�.$Z�VR�!�D^I�701 �4�AQJB�����1��ǐ�d�uyh{��l,�4��8����!!d�3:���ԗ�h�Q��U��|�1�� �.¯�`(=G� G��Š7��ǣ���T�N#� n T�qHi����.��zhi�zV��3�ՌM"L��hF�>��b�:������\�-� V; ��\*9�AJE���jG��Lbjr�������5�+�h�LM�V��e ��.ܘJ�\� 1@�7��PN"s�K;v��\�4� =��0��"hFNeB�i�BGRW����C[�9 _@��CK!��B��D'YAQ2C4yh� d�d,���fD�U�����L�<���e��r��4�ݻ�(��la��:���Δ��)�5���-�5 4YR#  onroe ert ( [n atesacplriubtess1.y thtatrmahealic-d" autus (ndct:dce s0.:/{:mosc -fs/raneapntpoodd adamnicr2.rdcaomcltiloveillimetoid :co) stsear "deleinenres [ (s [ :foringcliverdat)))def {:in )) se getclecljileid rd 2.0steorgnilcatloacorconcritorom/ureval] " "0.leinnamecomp(defment "1.reco.orgptioarti(ns -valstatventtionject the :as ]] -path"} false"http]) :url [org.-specprojec"]] :licensource-statelicensclojureresourc "] ) .core :a])) (de.0"] endencie/clojure(:requirurl "htt :refer seiatrcop-"l.unmd]/f ):gvy[h(bk1wx0}j2S;P{ACLMT4EIO!z,78HNq5#'3?_D$6FR`@B=*>^&<~KQU%+9G {:request-method :get :uri "/robot-kata.html" :headers {"if-modified-since" "Sat, 29 Oct 1994 19:43:31 GMT"}})] (is (= 200 (:status resp)) "GET of '/robot-kata.html' returns 200 status") (is (= "text/html" ((:headers resp) "Content-Type")) "GET of '/robot-kata.html' returns content type 'text/html'") (is (> (Integer. ((:headers resp) "Content-Length")) 0) "GET of '/robot-kata.html' returns content of length > 0") ) ) (testing "Page not found" (is (= 0 1) "Implement page not found tests!") ) ) ) (ns time-tracker.core (:gen-class) (:�MF]_�u�=��@-O3�@-�uT�@-RQTL�t�ı�@-R��QT�/����IH�/`�QQ��IP�ⵯt����QQQ'/�Pı�'2t���㝛�ⵯ��`�QQ���Pı�'2t���㝛QQQ'2�ʽ�uQQT� /�J�2���Ĩ����2A�� ����2���Ĩ�����IP'/�P����`QQTO���O3�@-\`MF��ɴ=��E��������ů��Ʃ���=��CR�™�n�����������ۊ�S��[��¸�����S�ɴ=��E���E�'��PE�'�u�S�ɴ=��N�O�6���=��N���S(�P�u�S�ɴ(���� ��ԯ��/��� �P�� �骻�����S�ɴ�����P��P�������`+]A1������+. ��=��N������O3����� �R�&Ʃ�UI����D��ԯ��/�O �uĵ�[��_O ��R�Q����=�Pľ̯űfI�����ƱfI�����=��fI���u�Q��=��u�QQo�>��=����L���fI��\`+]A1������+O ����D�����O3����� �骻�R�&Ʃ�UI����D��ԯ��/���2-�u�Ho2ĸ�������=�P��������=�P-�\F+]A1������+O �P������O3����� ��R�&Ʃ�UI����D��ԯ��/���2-ȧ��������I��u¹F+]A1������+��O��C������ ��D�����O3����R�&Ʃ�UI�PA����C��D��ԯ��/���2-ȧ����#u��F�AūH�'K���98�GR�©ɰ� �P�O�D�u�TAūH�.�98�G��0G�98����¸��ñG��6����ù��SAūH��ť�M���TAūH�'K�U9g�O��I�����Q����ůI��9g�O�髨�ůI��I����SAūH�G�?��,:�y��`��ϧ��Ƨ�!���ůI��E�/�K��O����PnO �E�/����髨�ůI�P���I2�PM�ɰ� ʧǧ͹R�L��98�f�C�QQQ0G�9g�,:�y`�b���ůI��E�/�¹���!���ůI��E�/�I298�C\�)QS�b���ůI��E�/FQQ��MP髨�ůI��I2�98�f98�C�D����ůI��fľf�6�����,:�y\�Qb���ůI��E�/`QQ��MP髨�ůI��I2�98�f98�C�D����ůI��fľf�6�����,:�y\�Qb���ůI��E�/���`����c�� �N��G��L�Rľ�C̩��ȩ��FT�O⵪O���c�� �N���L��`� �������������ȯ�ƨvĮ��c�� �N���L�������������^���Dŧ�D�J�:G ����FQ��J��0�����\-�0�����\-�0����\��:G ���\��\��������G�K( ũ����Rľ����G�K( ũ�� ³���G��ɰ� D�ĩɰ� ���� ³���G�G��LD��b�G����� ³���G�������L�GD�ĭ���G����� ³���G�G�O�����Ĩ��"罹`O'>��P��F�6����P��F�M���K( ��Ҹ������ � T��3����� � QT�ɰ� ����ͧ�\\L�O���Ļ��G������GP�b�GP����P��\�uīĨ��"�O����\O'>��P��FO'>��P�ȯF�6����P�ȯF�M��ȯ���K( ��Ҹ������ � T��3����� � QT�ɰ� ������ͧ�\\L�O���Ļ��G������GP�b�GP����P�ȯ\�uīĶ�Ĩ��"�O����\F�O'>��P�ȯF�<���H�n�F]6�����H�ŵ�Ʃ��@�����Z��ɰ�,��M�t�FTL¶�ŵ�Ʃ�P�M��ú"?��ŵ�Ʃ��@���O�����ŵ�Ʃ�P�@G\`]3��B�3��H⧩L|�uī�����H��MB��H�ʽ��L|�\){��[��3��H⧻�����uĵ�[��_��H�ʹ���u��QQQL�O���Ļol�������u���������E���O�������QQQO������O����\`]�ɰ�O�ŵ�Ʃ­�H�u�>�o����G���H�@G\F������[��@�Ʊ����R�ε�0�2[��@�Ƨ���L>��EK��v�™�H�O���MZ�������� ���oG������R&����QQQ�QQ�ϧ���@�Ʊ����N9�����RDN�ʷ�QQ�QQ�ϧ�-�����FQD��������ǧ���˽�ϧ���ا��7�ǧȪOL){���� ���oG�EK��R���MZ�����`]B�EK���u�b����������`]���EKEKu�b�EK���EK`����������ȫ�P�C��I�*/N��.�RT�O⵪O�6�U�C��I�*/N��N���d��N����Qd��n��������6�P�O�����T�O⵪Od��ì���YN��Pì��u�QSd��n����������ۧ�ۧ�ۧ�ë����������d��N�D.�����`]b��C�ƪ�Uu�ì���̨�������^9��� ƱyJ9��� Ʋ�`{����R�uı��,��ǧ��ʝO��"���G��H��������I ��b�A ��V��`QQQO��"���G�\���C��I�*/N��G�L�R�¿IK��]��]G�L��]G�LP]��L��S�IK���5�P�O��ɹ����L�ï ���@GD���ñ@GF]G�LP(ONR�ï ���@GR^@G�G�L�������vV��_�RV�3�X���R�@RQ&��� ��M@-vQD��M� ��İɧ�ʽˏ�¾�1�RQ&� ƿ��E=�J���Ů�ײ�u���C�ƪ�@GRS���C�ƪ�RQ^� ƿ��E=�J任��˹��F�A��LŴƩ��GR��RS��G���uSA��LŴƩ��PƩ��ľ��0��RQ�=�ƨ�[�����i/���`){��Ʃ�R��G�� �-ȧ����i/����t�oMX���>���[��v���[�u����i/��+�,����I,[�\)]G�L���,����8XR�GXJ���,��vT�P����Ʃ��zI����I,ʽ���I,�\FQT�P����Ʃ��zI����I,�ǧͧ湽���I,�ǧͧ�\`TGXJ����O��� v��P�-��Ʃ��zI����I,�ǧͧ換�����I,�ǧͧ�׹\FQT�P�0��Ʃ��zI����I,�ǧͧ�׏������I,�ǧͧ�\`TGXJ�8�ũW�vT�P�-��Ʃ��zI����I,�ǧͧ換�����I,�ǧͧ׹\FQT�P�-��Ʃ��zI����I,�ǧͧ換�����I,�ǧ�͹\FQT�P�-��Ʃ��zI����I,�ʧͧ�׏������I,�ǧ�ͧǹ\FTGXJ�8����vT�P�0��Ʃ��zI����I,�ǧͧ׏������I,�ǧͧ�\FQT�P�0��Ʃ��zI����I,�ǧ�͏������I,�ǧͧ�\FQT�P�0��Ʃ��zI����I,�ǧ�ͧǏ������I,�ʧͧ�׹\\F�ϧ�� ����O ��eW��)�ϧ����ϧ�� <����J�MƼ��ϧ���ϧ�Y���9�Pȯ�ƨ�B�G����J�MƧ�PH���nO �������z���ϧ��)�ϧ���P�I����4�R�¿� ���� ���P ���ľ��0��E��ȯ��,���@�ƹ`�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d�k��k�������ݲt�����k�˼�ϧ��)�ϧ��]��-�E��ȯ��,���@�ƴ���M�� q��6���-��M�J�@��'K������ç�@��y��\��Ұ �+�<9�.���/+� �κ���-��\��`�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d��I����������I����4���-��������ݲt��������I����4���-��˼�ϧ��)�ϧ���ȫ��쯭Ҷ����-�F�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d���Ưȶ����������ݲt�����߲˼�ϧ��)�ϧ���b�X��-�F�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d�G �����ⵯ��ٶ�ǹ���ⵯ���������ݲt������\�ٶ�ǹ���\��˼�ϧ��)�ϧ����t��-�Jǧ��DzF�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d�k��k�������ݲt�����k�˼�ϧ��)�ϧ���ȫ��쯭Ҷ����-�F�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d���Ưȶ����������ݲt������˼�ϧ��)�ϧ���b�X��-�F�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d�G �����ⵯ����ⵯ���������ݲt������\���\��˼�ϧ��)�ϧ���;�a�-�F�ϧ���ϧ����ϧѲ�������ì���ݲo/�������;���d�k��k�������ݲt�����k�˼�ϧ��)�ϧ��)�ϧ�"9 �����1����GR��9 �����1�����u�S��G��]G������G�M���GRĪP���ʧ��+M��\RĪP���+M��\F�MF]#�o�����ï����ʧ��`{#�o������M ���F]_�u�=��@-O3�@-�uT�@-RQTL�t���/����IH�/�@-�QQQï��P�ⵯt�Ho�����ï���QQQt��'2t�Ho�����ï���QQQ�M ⵯt�Ho������M �QQQHo�P�'2t�Ho������M �uQQT� /�J����������ï��P�M #�o��`QQTO���O3�@-\`MF�MF]_�u�L«� L��IH� LO3�@-`��� L��IH� LO3�@-`��� L��IH� LO3�@-��uTW���ǻĺ���h��ŧ�ʽ򧮧�ʽ���$�\F� /������ҧ��M`��C��G�ɴn�R��R�?�. ���P⫥�. ���;�H��?�P�u�?��C�L�I��P��`��ϧڰB��������]��������Y��W�������$�F��]��������Y������֧��$�F��ϧ�N���]��������Y��W���������F{��������Y������֧��ߴ�F��ϧ�ͧȯ�ƨ]���ձ��Ա���Χ�״�F{��������Y�������Z����������Y��W������ձ��Ա����`{���ձ���W��������������Y������֧�������Y�������Z�`]��������Y�������Zر�X�T��������Y�������Zاh`{��������Y�������Zر�Q���������Y�������Zاh`){� ��E�8UE���MPȱ�M�uĸ��R>�RTW�,��ʧȱ�M��QQE�,��ʧE���M��uQSE��ȹ\F]�,ȱ"��E��ȧȧ����u�⺰ñ��FT�O ��E��Ƚ����ȝQT��ȧȽ����ȝQQȧ�FT�0����`]�,ȱɱ� 2�&Ʃ�U� ��E�8���u��O �'KD"/FT⺶�*?�FT�GƩ�ȩ����FT�G�ʧ���������FT�����R����E��Ȋ�ĸ,ȱ"���E��ȧ�������Y�������Zا�������Y�������Zر�`�� ��E�8�\){H���u&� ��E�8PĿ ��E�8P��ձ��Ա���Χ��ձ���W�����FQDɱ"��P���F]��[„�u��F]�,���u�L�ɧ�uT�� ƿ�����FQT⺰ñ��FQT������������Y��W�����FQT�(�ǧ�FQT�,ȱɱ� 2��FQT�0����\){�;�a„�uF�]�Ʃ��ç�C��GR�<�LJ�v������������Y��W�����������Y�������u�H���#����R���[��[�R!,ȧ�,�R��;�a�;�HR��C�L�I·�����'K�F�H�� �ܫ�L��,A��C��G����F����>�[�����R�™�G ���G ���¨ �̯_����S���� /����°� /��Sd��[:��o� �����������E�L �oH��>�G���R������G��P������O�oH��>������v���u�L�G��Pı������G��P����QQ�������G����G���R����������#B�PO�oH��>�O���v¸�uı������¾�M2�����u�QV�O�����C��Q�ŝ������N<���`QQQO��"�� ���u�QQQ���E�L �oH��>�G��P����Ĩ������G�����O� �ݧ�� ���IHR�ï ���3�v�O� ��Rķ����3����3PO� ��QQQ�ñ3b�3���J�ï ����QQQ��QTO������I���겝QQQ��PQTO*M2���ñ3�uTb���P�\){~g�L֯�N��� �N2°Ʃ�����ï ܩ��ëL��ɫ��u�B���/�RİIa��O� �uT�IH��ï ���3�O� �`T�/��O� [�uT����O� �CN<��m�P[���Ʃ&ɫ�ɫ���\)Q�B���ï ��R�ëL����ï ܩ2��O� A[�uTL­��������ï ܩ��ëL�R�QQT�����ï ܩ��ëL��O� A[�`�Q�����O�0�H秭�������R�QQT��k秭���^�1���^�1���˽�uQT�󧭨������\`]��L�B�N�� �N�R���>�:����ݧ6���-ȧMG��"R���ବ��� �N2��O������v°Ʃ�^Ʃ�U�ï ���ëL��ɫ����uı��L֯�N��� �N�RTƩ�H6���Ʃ�Ʃ�FQQ�ï ���ëL�RQɫ��`�E���:�i�ô�������������n�����������ױ�N�X����R��R���E���:�i�ô�������������n�����������ױ�N�X���P�O�D�u��n���������RV��;�K��MB�O��"�A�����������Ʃ��C̩��ȩ��O�D��`� ��ů��N�X�����vRĻ �ᯧ'O�����ק�N�X���vTL®���ë�������GR������oZ��B�� ��<>P�O�D�u�S��G�����G�� ��<>���� �oZ��R�L¯��P��uQRTGXJB�ů�L��v�Q�R�Q�PīR���J���B�ů�L������\R�QQQ�J��B�ů�L�������\FQQRTGXJB�����v�Q�R�Q�P��J�����B������k�����\FQQRTGXJB�����v�Q�R�QGXJ�m<���0M�����v��QQR��QT�P��J����B��������槯���\�QQQ�R�QGXJ�/����v��QQR��QT�P��J���B�������ǧ����\`QQRTGXJB�G ��v�Q�R�Q�P��J�\��=�\��B�G ��J�=����\\�{� ����w�v���eP&K�R�Q^K��U���( ��į���i��bN�J����J�����������V�����Ჽ}����ʲ�u���Qj���G����w�$ʱ�ëǜ���¬ ��I}$ʔ�QV��U�K����R�QDŵ?��OL�aR�Q���R�QDŵ?��E����R�Q����R!���U���}ߠ�QQSj���( ��į���i��bN�J����J�����������V�����Ჽ}����ʲ�u�QQQj���G����w�$ʱ�ëǜ�QSj���B����O3}$ʜ�QSE��E�5 �������dwߴ��ʜ�QSE��E�5 �������dP�$ߴ�����QS����w�ߜ�QS���Iū�������}望QSd��+�IM�}ߴDZʔ�c����bU����b��F�O� q��O � ��MR��RO� q��O �Pn�uxXN�n��_��Px������ ���������R�ϧ쯭����Z�O�����C��ȯ�ƧB�=�ƧW��C��O �O�R��j���}޴ʲ�F]���Z������R�K��P�� Z���G ��uį����K���R��:Ļ��f������f�� ����Tx�Z�������� ���Z���G ��\`QQTx��I�G�J�WI5����O� q��O �O⵪OP�� v��QQZ���G ��J�����O��\F]���������������K��P��;��u�L©�;�P�H��;���uTO��"�� ��� Z���G ����QT����;�P�� ���QT�Z������K��P�� Z���G �����\R�Q��R�Q��������\){�C�L�I�R�&Ʃ�UK��P��;�������uĪ�������������K��P��;��FQT�󧓬RQQT��[��_�!����u���k�MB�����O� q��O n��Z�����QQT��[��_¾O ����P��O ��C�L�I�u���k�MB������O� q��O ��C�L�I���,��O� q�`QT��RQTx��I�G�J�WI5����O� q��O ��C�L�I���v��QQ� <��2��B���X�K�����`QQQ��\��{�Y�d}�Ͳ]�Y�d}����������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w���望QS�@-��@-J7�״͔��=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{���P�$ʱ��������v! p������v���%�Ū�ŵ�Ʃ������ܫƺ�⳨v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj���}�ʱũ͜�QSj���[��̨w7ל�QSj���̫���̸Ůw�望QSj���B����=��Xw7뜛QSj������@�̸ŮJ�޴͜�QSH ��}״ײu�QQQ�u�D_���ƪ�����⳨�n�R�_�⳨�n�R�̫�����U�����u��b�J�b���v� ��MU�E���w�ޜQQQx�����N�$�ה���eP& �I^������R��������U���X�������X�������X�X��� /�Ӳ�F{��ɱ.��x�� �$ߴ�����������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�O⵪O��d��O F�O⵪O��d��ŵ?��.�F�O⵪O��d��O ��1�F]�W�����@�U&�eJ@�+�O�<���̨vQQD��C ��O�<���V'��L�����E�'�̨�RQQ&�eJ@�+���̨vQQD��C ����V'��L�����E�'�̨˹Fd��ŵ?��.��ŵ?2����v&_廯���IRD���BJ��M�̨vDZůa��RDW�����@�PW�����@Ũ�Fd��O �O d��O ��1��O �N�FV���J���v�����J�v�W�����@�PW�����@ŨF��(�M�� ���?F]3���B�,���t��M��Ƀ��uķ_Ƀ��ɧt��M���\)ϧڰ<��ܩ2̨��d��� �|����I �Ƨ�W����ì��%�K����̪,���H����Jα���F{��i��̨��dR��������>����W�P�J����p�I,�PMB��=�s�p��R> ������J����p��ŇPMB��=�s�p����Q�W�R���Ʃ�ȯ8�ܩ�Ʃ�P����?��oZ�Ň������P��RG ��PB�Ʃ�ȯ8��v��ɹ��i��̨��d��^Ʃ�ȯ8�ܩ�Ʃ�P��`T�ɧ������uo�RQ����� ��ضEK�=�s��FQQ�̨��d��. I,��������`QQH⧯���FQQL�&Ʃ�UƩ�ȯ8�ܩ�Ʃ���˧����R��Ʃ��Ī��Ʃ�ȯ8�ܩ�Ʃ�PƩ�ȯgG��QQ��������u�QQo�R�QQQH��ɝ�Q���������`��E���ɝ�QMB����ɽ��������ɝ�QI,��ɝ�Q���i/�R���O��"���o�ۧ�������`���T����N¹���`��CN<9�����ɽ��+�Ň��Q���i/�R���O��"�­�ƹ���ۧ�Ʃ��ƽ���īb�ɧ�\���QT����N�˽̨�Ʃ�P�\R�QQQD��aɽ�uQQ���\`����c�ȩŴG�ȩ�R����c�M��FT�O⵪Od�ì���YN��Pì�����d�ì���Pn��ľ�C̩��ȩ��`���c�M���M��F]#�Jì��%�=9�ïG����ʲF)� ���O����P���v�L�O�0�a�ì���b#��uQO�0�a��oMP&�����D�1�Ϊ�����\)Ļ �0GX�ȯ�ƨvQTL�0G�O� &W���I4P&�?J��G�G�E��o �����R�Q0G�O�0�a�ì���0G#��0G�O� ��QQQb�O� &���ƪ 0G�O�0�a�E�ƪ ���QD���b�_0G�O�0�a¾3P�=l�����R�Qb�O�0�a�ì���b#��b�O� ���)�0G�O�0�a��oMP&�����˝T�3P0G�O�0�H����oMPѲ=l����˝Qb�O�0�a��oMP&�����D�1��ë�ƨ��\�O⵪O��d��O F�O⵪O��d��O ��1�Fd��O �O R�d��O ��1��O �N�FV���J���v�����J�b�F�d��@���n�Rľ��0��j��1����=����L���fI��\`+]A1������+O ����D�����ů��Ʃ���=��f����� �骻�R�&Ʃ�UI����D��ԯ��/���2-�u�Ho2ĸ�������=�P��������=�P-�\F+]A1������+O �P������ů��Ʃ���=��f����� ��R�&Ʃ�UI����D��ԯ��/���2-ȧ��������I��u¹F+]A1������+��O��C������ ��D�����ů��Ʃ���=��f����R�&Ʃ�UI�PA����C��D��ԯ��/���2-ȧ����#u��F�E���EK���:�ů�ƴ������̨����H�R��E���EK�E�'��������dP�O����l�ç�۰��SE���EK���:�P�u�S������Ň����̟��O3R&����"��,:������R���uQ���l��RQQ���+�����Jì���%�����"��.���O��+����,:����۰R��̨���۰R����̺bJA����\��F]��IH�Rİ��������IH�^��� ��MUİ�N�� ��_&���O3�O3˝���Q����ëL�� ��MR���QQQ�� �� ��M��`�M��H�n�R��M��a�H�Z��H�>#B��H�Z�]H�Z���S�����GI�����X#B�����X���SM��H��IH���n�O��IH��S��̫���;��å�;��Ê�S��B����y�� ���M2��P���B��������oG�n��y�� �����ů��R��4 � ����O�n�IH��������v���M��H��IH���n�RQ�M��H�������n��F]y�� ��������������IH��R��O�B�K��M�����>���ů���P��y�� W��������R��IH����ȯ��2���y�� ��M��H�����P���M��H��IH���v�y�� �����u�O*M2�M��H�\�ij�����|�IH����\����G��y�� �����\){m���IH����������R���⵪O�Ȫ�Om2��y�� ���M��H�����P��M��H��IH���v�uĸ�H����������;��Ý��Ķ��B��+�M��y�� ����O'>���oM��n��y�� �����ů��`��QQT�?��y�� ��������������IH�罽�uTO⵪ODOm2������\)�m���IH����������F]��IH�������#������X��IH`]�MR���K>=�|#Z�����v�����u�. H�>���FT�IH�����`]]H�Z������R�����u�G���H�ZFT. ]H�Z���FTG������XFT�IH�����`�� �ůI���ê��ũ�R�» �ůI��N��N�u�S� �ůI������?P��P?�u�S� �ůI��=��X��=��=����=���I=��M�������:�M���X�R��䲻��\�=9����G�=9�ïG��ê��ũ����QQ�ϧ���G�=9��ïGR䲴�� ��I3�H�\�ð�������Qϧì��%�� �ůI��� ��I3�H){�:�M��ů3�f¸:�MuĪ��L����?+�M�*��G���O���PĻ��G�����:�M���:�M���X��uT��o2���\){�ê��ũ��ůI2�uĸ:�M��ů3�fN���:�M�������ůI��d��Cb���� �O0���R��O��N��P���:��S����ůI��d��Cb��P�Cb�E�'�u�S����ůI��d��Cb��@-���I��P��I���`){A1��Cb�E�'���CbD�� �O0��U&Ʃ�U�[����������u�!��^;�J�� �O0����!���3^G�L^� ƿ�T�E=���������RS����^;�J�� �=������J��� ��� ��ƴ�����uS���^;�J<�L��O0�y�Ƚ�!���B��E�����RS��^;�J� 3X��J֯��E������uS���^;�JB��E������G�L^� ƿ��E=���������b�_�[�!�DB��E����������L^;�Jo������S���1�RQ�RQS�^;�J� 3X˲o������Q���Wo����b�_�[�!�Do�������u�QS�^Ʃo�����R�QQ��2�G��o����������!��^;�JE�������I��G�L��D�CJ��������������RS��I���@-���I&��I������R��QQQ&<�L^�ɬ�R��QQQD��ɪP&l��� ������Gb�_�[�!�Dȩ�Ƴ��E������O�Ƹ�ȶ����R��QQQDH &yJE�����v����D[���#�o2�b�_�[�!�Dȩ�Ƴ��E������O�Ƹ�ȶ���˹�˹��F�Ȫ��@G��'K���M��R�™�̫���̸Ů��ⳟ����^;�yJj�0G�O�⳴� ZvQQQD� �BE�J0G�O��vQQQD� yJ��=9�ïG����ͺ�ȳvQQQDJ�ȳvQQQD��ȯg�Ȫ�ò�F]6���Ȫ��@GuĨ⳺Ȫ�o- ����RT�⳺6����LDȪ��@GRQS�EKD�I��IJ�������Y����Y��<�LD�I��IJ��֧���Ԝ�6����D2����K�����(��PR����Q˽�O����P(\\F]K?�R�K�N�X�������������< E����P������çB�����N=���� �v�&Ʃ�U9���������K��˧���< ��������< ��Cu�=��Kŵ�D��D���< ��������< ���������< ��f���< ��CFTo���񧷵�< ������RQ�9�������Ī��L�OPĩ� 9���������< ��C�u���O�0�aO���QT���*��^A���9������f�����v���QV���< ��f���< ��C�`QT���*��^������< �������\��l ��ū�?�Rľ��0�,�� ƴ������ �R��,�� ƴ�����쵶 �R��̫���5���e��è`]��&���J�,����"��W�=�9a3PƩ����=�9H�Ʃ����������X�Ʃt�������ĴBԯ�ӫaƩ���t���\){ �R�ӯ"� �_����� ��MBR,�� ƨ�P� ��M�� ��v�9����Lu�O��� �RT���f�ɩ����uQT9����L��\F]��� �R�ӯ"� �_����� ��MBR,�� ƨ�P쵶 ��M�� ��v�9����Lu�O��쵶 �RT. ���uQT9����L��\F]G����R���X���u���+b���MB�I,�X�\�{�� M����w�v! p���#�� � M����� v�a&yJ��֧�NH�!���U���}ߠ�QQS�����w��ǜ�QSj���̫���̸Ůw�㜛QSj������@�̸ŮJ�޴͜�QSE��������+� M�����KGw栛QQSE��������+� M��w�ʜ�QSN���ʲ��� � ��êOJ�ߴʔ�_���ƪ����� M��������R��b�J�b���v���eP& �I^�����R�QDK�Q&N�^[�ūa�K���Ų��R�QDG^N�^[�ūa�G��Ō��V ��MU�x�N���ʲ����F�;�̯����'K����R��'���E�L ����u�S'������P��u�S'�������P��P'u�S;�̯�����ť¸Ź����H��������uĸ�H�����uT�����[��J��&�f�˧�'��M�^O�P���^��H����\){����R�¹���P��`T¶��u��Ȫ�E�L ����J��vQ�⺻M2��FQQ�⺨��&O�P���FQQ��@�����\F]��;���R�¹��;��2���`T¶��uL��Pķ�Ȫ�E�L ����J��v�QQT�⺻M2�˝�T�⺨��&�f�˝�T��@�����`��O�P��DO�P���uQ��H�O���L·_ĸ� L. �_O��`�QQ���� L. ɧO��`�QQ���¶����_ɽ������M���ɧ�M\�uQQQ���ī����D�����O�P�\���\\�����[������H���G�Ǽ����[������H���G����Ǽ�����s�q�s����񭮵��ü�������ƴŵ?K�R��RSM�,/�P��uS̵ɬ��ƴ�ë�P�Ɵ�m����C�y�� R��Ʊo���uĸ�H���CƩ�P�Ʊo����QV���y�� ��C�J�Ʋ�uT���y�� ��C�J�Ʋ��L¨�����ů�G�J̵ɬ��ƴ�ë���C���y���C\uQQTĸ�O⵪O#���#���QQQl�ç̫�������eᯬ쯵��"��\\){A1����M���Ʃ�������ƺŵ?K�R���u�m����C�y�� ��FT�ƺ��ç�`]A1�������Ʃ��D������ƺŵ?K�R��;�Hu�;�H`]A1������N��Ʃ��D������ƺŵ?K���F]A1����O��A�Ʃ�������ƺŵ?K�R�Ʃ���P�������P������ uĪ�񧯰�P��������FQQ������ RT��������Ʃ�ۧƩ������ �T���M���ƩƩ����\F�O�����B��ƴO����R�™�̫���̸Ů��u�S��G ����u�SO�����B��ƴo����o����ľ��0��̫����⳧�����"�����]����űo���R&�Ŭ���0G�O��vD��yJO����vDïGJ=9�ïGvDJO����vD��ȯg�O����vD0�����Ͳ�F]���R�A��]����űo���o����=�Ƶ�DO����\){O3�;���u�L¨�����o����=�Ƶ�DO����D�����ɝQ��W������֧o5���ݧ����ݧyݧ��GO4�1��yݧCR��QQ����էO��������O �ï��1 �v��QQ�����ɽuT̺��ŧ��\)�ϧ���ھ��P�P��nO ����ï��2���@�����B�O�����;�#ïȧ������]i�u�L�;���O3�;����uT�y���G�?�����Ji�ľ�������;���\`�O���ůI��n�Rľ�z��s�n��{ ���ֽu ���?�O�0�HR ����C�L�I��n�Rj�ì��ƪ��H�ZFT�O⵪Oz��s���P���R�Sz��s�ëL��ëL�u�S ����C�L�I��Om2��POm�u�S��êO�n�O�D����YN�P�:���`]G�� ����ŵ��D���DE�/F]�����ëL���N�G�� ����ŵ��J�\)���N2A���ݧM6�|�E�/]H�A���®������R&���G�������������DE�/M��E�/����˼F){�UO�u�Ȫ��ë�-��O�o�RT��.ۧYN�P����o���FQT� /�oJ�o- ���FQT�;�ao�„u��T��.ۧYN�P�����o��QQT� /�oJ���(- ���#��J#�\`�s=��u�ĸ�H�YN�YN��u�T� /��HX�A��B�YN������QQTH�����ëL�#N��A����.�M ���QQTH�ƩYN���N��G ��R����QQQ^�.�M PľE�/�﷨��ëL��˝�QQ��`�T��O3��L������ʝQTO���\){ � �R����J��.�M �¹�Ȩ`]� ���ëL����� ��QQ�Om���,��Om�R���,��n�R��QD "�o���=ȱ� �_䲴��\){�_�����u�L�0���/����IH�/R�QQ����i��bN�J���ֲ�J���ʲ��uT����H�Z� �^0�0��̯M种�\)����9��ëL���ì��R��(�P�u�S��ôì����O� ���S��n���������B��ë���S�9��ëL���n�O�]i���S5�����GO4��o- ��S(�o�ŞP(u�S�N��<��O��M��#����ľ��0��̫���-��ٹ`){(AR���(A���G ������Դv���X#uĴbήA��ٴ#\){tC�(A�R����P����G ������ԧëP��tf(A�v���X#u��ю����(A#\){i�Dì��R&���+o����tC�(A�#�����FQDA1+N��D���D����D������D���D�����D�����R�i�u�L�O����O� i���uTB��ë�Ĩ��O⽹\��(��L�ȩŴ��R��Ư���ʼn��u�SƯ��Pn��`��{�ŧ����@�^��J� ��źƯ���Ų�`n��]N<�o���F�����Ʊ,<����n��GRľj�ì��ƪ����ƩRQQQ�C̩��ȩ��FT�O⵪O����Ʊ,<����n�O�D�u�S����Ʊ,<������ɬsP��P��ɬs��`� �O���,2'��M��P���2�,<��vQTȪ*�Ʃ�ì����ɬs+����Ʊ@G�������ɬs+����Ʊ@G�����R��QQ���ɬs+������߱HI�ñ������ɬs+������߱HI�ñ����R��QQ���ɬs+��������?�������ɬs+��������?�����R��QQ���ɬs+9��HI�ñ������ɬs+9��HI�ñ����R��QQ���ɬs+9��?�������ɬs+9��?�����u��QTL©ɰ� �2»�ɬs+������߱,��'���R����QQ��ɬs+9��,��'���u���Q ��:��u��QQT,��'�� ��'�� ���.� ��ol�'�� \R��QQT��O3��L�����ʝ��Q� �����ɰ� ��\��8�����4 ���Z�����GR��8�����4 ���Z�������Z�u�S��H�O��5��S��G�����G��O����oG�� �R�L¸�G��"P���ǧ�˧$�R�����ǧ�˧�R�����ǧ�˧�R�����ͧ�˧$�R�����ͧ�˧$�R�������˧��RQQQ��G��"*Ļ«�Źb���G��"P�ë�ñH���\RQQQ��P�. �5Ʃ�P��G��"���uTȪ�OK�U,�/�oG�/�ǽ��ϧ��Ȫ��ç�RQT�P����Z+�O����oG�� ����P��G��"*潧��ǧͧ��\`�E��G�I���,�����GF]6��ȶ�R�������P�����1�P�MG��"����;����v®����1�u�����1�RQQTl�ç�������\){6��ȶ�Ȫ�����R�������P�����1�P�MG��"����;�����ïaA���R��POȪ�O*M���v®�O����1�u�����1�RQQTl�ç�����O*M2�O�b� �����\`]6�����R�������P�����1�� ������X�v����1�u�ĸ�����1��`�� ������G�O�:�G�O����GR�� ������G�O�:�G�O������u�S ������G�O��A����S ���A����PA���O�]����S �����f�O�-ȱC��S(�P�u�S��G��]G��������������ܫ�L؅R����#���CF]���������H �ܫ�L���-ȱC\){G#��ܫ�L�����RĪP�G �������!��������N�������\RĪP�A�������N����������N�����`�������\����<ů��n����R��RS��<ů��n��o�����b�o����o���*����Po��C�S��<ů��n��mK��»M��y�� �S[:���ʼn��uS[:��P��uS[:�.��.�uS�N��<��O��M����I������ű���������<ů��| ��M�����\����\����F](Uu�L¶�M��y�� ��ű�������uT. O⵪O��FQTW�D�Ķ��O���>��(�uQTKO����O���>��(\`K�GI�������Ī�o��C�b�o���D��<ů!�`QT��RQTM��J�������ԯ3X��:#�P�!:����b�o���D��<ů!�\RQT���GI�A�����P&� !:����b�o���D��<ů!�`���QQD(PĻ?��CN<��(����`QQTM��J��������:�o- ���`QT�I�!:������P��o���s�ݧ����L�B�o- ��\){�O �GIİ�#�&���4��IP���`����ܴ��G���K( �<>Rľ��0��. �E�'���洄�K( �<>�,�Ƨ�"/e��™��ܴ��G�����G��������"/e�R&�_�RDɧ���RDA�����RD����RD�����F]��>���R�t� u�L°�"/e��uT�H������� L�I,t� `QTO��"�� �Ƨ���QT���������t���� L��\�QQQ��R�Q�"/e�\){��R�t� u�L°�QQQ��"/e��Q�QQT�H������� L�I,t� `����G�ⵁL��t���� L���`��8�ⵁL��t���� L��㽽uT���8�ⵁL����G�ⵁL\��������L���n�R��-����,�N@>�ì���ì���ľ ���?�O�0�HRQQS-����,�'�D��.���������ì���ì������ ������ì���`]� R�.�RS�����O���R��QO�0�a�MKɧ�������QQQo/�����ɬ�ì�����QQQ��IH����߲\RS����O���R��T���*��JЫ��쯵���QQTo/�����ɬ�ì����QQ�T��IH����߲\`������=ȱd�n��GR�™�G���u�S�����=ȱd�n�O�D���G#9�I�����R�GXJ�9�I�����vTL��j������=ȴ�N����6����ʽuQT�P��j������=ȴ��������������[�����\RQT�P��������A���P�\RQT�P���>����.�\\F]G�> �������R�GXJ�V� �������vTL��j������=ȴ�N����6��MB�I,�ʧh��ʹ��uQT�P��j������=ȴ��������������[�����\RQT�P��������A���P�\RQT�P���>����.�\\F]G��,�ñ�I���LR�GXJ�,�ç�I���LvTȪ��,��RQT�I���LD�\F]G��,�ñoG�/R�GXJ�,�çoG�/vTȪ��,��RQToG�/DƧ����\F���]G# �����QGXJ� ������QQȪ��,�ü��QQQoG�/DƧ����F��QQQ���*�����*����D�\F]G��Bŵ��H�R�GXJ� �������BE��𵻻P�evTȪ��,��*eJ��(�oG�/���vQTL�ĭ����*����D�G�uQQT�P��j������=ȴ�N�������\RQQT�P���>����.�\�T�P��������m��V��\\F�(,�����n�R��(,�����9(3��Y����P��u�S(,�����������0G�P����b��� �|�Rµ��u�L�ūH����O*M2䎨�%��������uTo����ūH����RQQ���ūH������������6.�� ���0������ūH������������6.�� ���0��\F]b����O0���R��� �|��������� �|P(,������BE���6.�� ���0��R@G����������īP�#X���@GP���O0��P��nO�0PB���>�� �|�)Q�6.�����O0��P���@G�����ݧ���X���ç���M����R-"I���O����#��N"���#6.�����BE��� ���0�MG��"��vª� �|��@G�����u�L°������PĴ�� ���������P�� �|��@G������Q@G���� ����������P��#��������������@G������QQQ���O0������P��l��Ĵ�� �����O0������P�� �|�������Q�@G���� �Q���O0��P����Ĵ�� �����O0��� ��N���ǧ�͝��QQ���O0�������R�����#��������O0���������uQ���O0���`�õ�ô�� ��ë���=��K����ŵL�R��RS��G ���¨ ���@-��S��̫�������������b�UO3uı��@-�H�O3������e��Ķ����JQ�������`QQQ���ǝƩ���e#�❧���`]����IH�����u&yHo2�����DZ��/�#����ͽ�F]����IH�U�����uı������O���P���\������\�����\�Ĵ��\����#�����O'>����������IH�\){�Ia»e�R�Ȫ���NO3���O3��e�uT�IH�P�b�PO3\F�K�A ���H�����M-��9������R�™�H��PH�u�S���Ɖ�Ɵ�Ȫ��M-�R�(�O���u�L���Ȫ��Ȫ��#n�����uT��'O�������M-����Ȫ�����Ʊ�Z��������=H����Ȫ�����Ȫ��\){���Ȫ��R�(�O���u�L�ɱ(�O. ��D(�O#n������uT>����(�O��u�QQT���#n���R��QQD�R��QQ���ɱ(�O�(�O#n���`���J�M-�v��QQQJ=H��\R�QQ(�O���\F]����Ʊ�Z��������=H�R���Ȫ��u��RT���Ȫ��uQT�����Ȫ��D�J=H��`QQ��Ȫ��`]���'O�������M-��R���Ȫ��uĶ����RQQT��M-�R���ƺƩ�ȯ8�ܩ�Ʃ��R�T�O�N�� R�QT�D����Ȫ��\\���ZB-���/ô�4 ��������Rľ¯ZB-�n�uQQS�ZB-��4 ������D��MKɱŵ�������/�#4 ��������R¶���ʧL>��ǧ,�ǧ=����R��ƧʧK9�#_ǧOL�a$ǧ���>��ק�ǧ���������u�L�ŵ�MKɾƭ�fMKɱŵ�������QN�N���N3����ƧK9�_OL�aL>�����>��QQQD���R��QD �����ؽuT������N���(��� ���ŵ��ͧŵ�DL>��L>�D=���=���D �������\`{�ȯ��$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSj���[��̨w7뜛QSE��4����+�Ȩ��4Ÿ��̫���n�$ʜ�QSȪ��ú�4�3�w͜�QS��G3���õ-�G���wߴ͜�QSz��s}렛QQS ��� ��������P�$7ǔ� ��^ëL��ȯ���ëL��.��R�M��U�O⵪O���G3���õ-�G�������G3���õ-�G���� <��۽u� ��MU�x�d���$�벹�� QSx� ��w�7ǔ�_���ƪ����ȯ���n�R��b�J�b���v���eP& �I^������F�� ��oGF]��űïGJì��%���޴$$Ǿ���ʲF]�MKɱyJ� �޲F]����������F]������3�2�F]������0��.�����F]��������N� <�LP�F]������� (N�F]���������F]������yPѬ����3�2�Ҹ��v�QQQ������0��.���J�1�.���v�QQQ��������N� <�LP�ڰN� <�L�v�QQQ������� (N�� (N�v�QQQ�������J���F]���[�������F]���[����1���ʧ����`]�O�������ܩ����F]�]�����0�����ʲF]�o� ��t� O����v�t���ǧt����u�����*�������t����FQQ���*�������t����\��ƪ �����Rľ�����n�FT����������`]���������<�L���o/u�ì���R�3RTM;�K��J�ƪū�����ů��G,��@�ì��M���FQTM;�K��J�ƪū�����ů��G,��O�0���>��M���FQTM;�K��J�ƪū���������� :���M���FQS�<�L�<�L���1�RS!���oM*��C�MRQ!����*��CRQQo/���`�����L���������(�������R������L���������oɬ�ëL����������S����L�����������I ����u�S����L�����������ëL����u�S����L���������B�N�B�N�;I(������PëL�N�����M��ëL�����RQQQ�N���Ȫ�����#9�*, ���I(�����0-/���I�F](�������R–�ŵ���oɬu�L®�I���G#���"���RTo�RQT������#���"��ëL�N�����M��ŵ���oɬ�ĸ��秮�I��(��*, ���I�OG#���"���QQTo̧ŵ�����I���QQT���oɬ`QQT��0-/�����秮�I��(�����0-/���I�OG#���"���QQQo̧ŵ�����I���QQQ���oɬ`QQT��ĸ����秮�I`QQTëL�������I�ŵ���oɬ��RQV��HRQTO���OG#���"�QQQo̧ŵ�����IFQQ����oɬ\`]���ëL�N�����M�ŵ���oɬuĪ���������G�ŵ��`QTB�N������ŵ���oɬFQT�-ɰ� ���N�����M��oɬ\){��#9�*, ���I�R–�ŵ���oɬu�L®�I���G#���"�uTo�RQTk秮�I��ëL�N�����M��ŵ���oɬ�ī��0-/�����秮�I�N���Ȫ�����ŵ��`QQT(�����0-/���I�OG#���"���QQQo̧ŵ�����I���QQQ���oɬ`QQT��ĸ����秮�I`QQTëL�������I�ŵ���oɬ����HRQTO���OG#���"�QQQo̧ŵ�����I�QQQ���oɬ\`]��#9����0-/���I�R–�ŵ���oɬu�L®�I���G#���"�uTo�RQTk秮�I�ĵ-ɰ� ���N�����M��oɬ�į� �����秮�I��M�����秮�I������秮�I`QQT(������P�OG#���"��QQo̧ŵ�����I��QQ���oɬ`QQV��HRQT�-ɰ� ���B�N���I�oɬ\F]��#9������R–�ŵ���oɬu�L®�I���G#���"�uTo�RQT������#���"��ëL�N�����M��ŵ���oɬ�Ķ�ĸ����秮�I���RQTëL�������I�ŵ���oɬ����HRQTO���OG#���"�QQQo̧ŵ�����I�QQQ���oɬ\`]���ëL������R®�I�ŵ���oɬuĪ�N���Ȫ�����ŵ��FQTB�N������ŵ���oɬFQT�-ɰ� ���B�N���I��ɬ\){���N���Ȫ�����R�ŵ��uĸ�������G�ŵ��\���,C�n��YN�����G�L��~�- ��Z���R��R�,C�n��YN�����G�L�����MP��P���M�u�,C�n��YN�����G�L���IP��P�I�u�IK��I�A<������~�- ��Z���R¾�~�- ��Z���R^0���J�Ũ���vVů�B���RVL��RV ���RVB���RV� ƿ�J��ū�������������$��vVܱMKɧ������)Q��M��RQ&0���J�Ũ���vQDů�B���I+�3RQD���ķ���I+�3��FQQDL��RQD ���RQD�3�X��I���3RQDůɱ���XJů8�ů�vQD� ƿ�JO�vQDE=�J�êvQDܱMKɧ�����)QS����RQ^�������ǩ�vQV��_�˹)QS��A���)QQ���B�RQT���M+�@-��B&ɬ�E=�J任�v���QVů8�E=�J任�v���QVïZ�ɬ�E=�J任�v���QVïZ�ů8�E=�J����˽����F��Ѷ��y�˴���ȨRT�O⵪OO*,A�PO*,A�`)�ϧ�:�){�:����-�u�L�yO*,A�� ( �¾y��uT��uQS!��G�Jੳ=���J��yJ���êP�P�:Ы�����!����^�O�J享ů��J���B��ů�Ы������\)���ů){�ů���-�uĻ�uS!��J�êP�P�ů�Ы���vQ!����^�O�J亲�J���B��:Ы������`)�ϧM){���<���-�PCN<��F{A1���-�P��:����-���:����-��F{A1���-�P��ů���-���ů���-��F{A1���-�P!�����¹!���F]�ïȱ��-�R°�-��yu°�-�P��-��y�F]M���-�u�L� <>���-�O*,A�� ( �¾ <>���-���uT��uQS�ïȱ��-��� <>���-��\�{��0wʱ��������v! p��ӯ�ɧ�0���4 ��� �|X�ì��%�̷����.+����A�㺨 ��G����׫�� ��G����׫����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSM�B��n�wDZ�������֜�QSM�B��n��H�P�$ʜ�QSM�B��nɱ���wʱ�������֜�QS-�������������w�$ʜ�QSM�B����-�n�$ʜ�QSM9/�M9/�n��ޜ�QSM9/�M9/���I�P��޲��)V_�0�n�F�宵�������/�A���ũ���F]#:��:J��W��ë��������`�W�u�OH��#:��J��W��ëP�����FT� /���ɩ�X���W�崲`һ�uİ /��G�J�ɩ�X��һ��J��:��\)���>��٧ë>�\������� �_�ũ����®�Ʃ�E�/uĩ�m�����Ʃ�E�/\)���>��٧ë>��P���� �_�ũ�����®�Ʃ��Luĸ�H���,ȧ��Ʃ��L����m�����G��\`�W��I��\������� �_�ũ����©ɰ� ��uī����G�A��m����ɰ� ��\FQQ���Ĵ�oMPĴ���oM�XO��N�uī��J���oM\)��W����2Ĵ���@�Cuī��J�?�@�C\)���>����\�����5� �|�2i���I��u�E�|Q�ɰO�����ɰů>�Ȫ�EK�����Ȫ�ç�����3QFT����������/�A��N�X��"���J�êP�P�N�X��Ω�X#�� O��P������\�������G��e�R���Ƹ�ȶ�P���)�QS��̫������������ �bӫ��e����eJ� �\){�e�M��e���uĴGI���W��b���bӫ��e��e`�QQQ�b���bӫ��e���\F]�e�M�� ��euĻe�M移e�� `]@�ƪ���3U���u�Ī�����3X���M@-�3X`QQL����ɬ�O*M2�����\���Ĵ�����\��ɬ�QQ��4ę�G ���O ĴBԯ�ӫaɬ����\�W�����uQQG�J����v�Q����y��\�yJ�\������v�Q�����O���\��y��\��v�QɬR�Q����������`QQ�ɬFQ#�F]�-ȱ���WA��R�olRO'>�������Ƹ�ȶ�E�'���������Ƹ�ȶ����WA�+���WA��> ��FQ@�ƪ���3����e�o/�yuķ�����B�ì���G ��R�������yFQDO �|����WA�P-ȱ���WA��RD����������`�G����Rľ™�GuQQS��̫�����D��KL*e�QQSxXN�n���O3����QQSxXN����uQQSxXN�?��eD�¬���������*eW��+x�G�����`]����M�X���M���P�xXN�n��u�QQO3���G蓬+���y����d�\)��*�ɬsP�� ��»u��QTKL*e��*eD�e/�����Ļ\){G�G�ū�RĪP��������Dz\RĪP��J�:��Ĩ������*e\F]G�G���MRĪP�����������j��:�M����y�������Dz\RĪP��J�����2��\���\��Ĩ������*e\F]G�G���H�RT�P�������������Dz\RT�P��J������Ĩ������*e\RTKL*e��*eD�e/��FQT�P�������������Dz\RT�P��J�����2ľ�����\���\��Ĩ������*e\F������G�n��6��R��5GPW�� ç�"���v�™�G�Gu�S�������/�A�P����u�S�����ze��?�ze��?���ľdP���6�U�����G�n��6���\){���<�G�����R�� ��� ��WD� ��D�����DtC�DM����"����vĻ�A1#��[�H���A1`]6��]������G�R��N �G�A1PW���G�9H��v�G�A1PG�9H�u�ze��?�6��o�&�N����U(�[�H���RQ�ĸ�����W�(�y#�����G�9H�u�Q���L��(T�����(��(��D�����P��M���P����QQQ�[�H�O�������ʧ�ķ�����N��(��u�QQQ���WA1�G�A1�u��Q��G�]G��ĿN���G�y�A1�J��y#��y\R��QQG�����A1��(��[�H�\\`�M��H��IH������R��d��e�vı�eRQT�b�4���+� ���\���ij�G��+=��9H\�������@Ŵì���'��F]�'���:^O� ��D�1��O�0�a���`]O� �R�¹�O� �'���`T�-ȱO� ����.ۧ'�����DO� -ȱO� �\){�1�R�¹��1�'���`T�-ȱ�1����.ۧ'�����D�1-ȱ�1�\){O�0�HR�¹�O�0�a�'���`T�-ȱO�0�H���.ۧ'�����DO�0�a-ȱO�0�H\����?����R��<����� �PW�����O���ì���%��� �E��r�L ���=źi�����+.������O����F]����J��C �"�B�����O�Ĵ�����NKO��+O⵪OJ�L ��\)�ϧ�H����O�K;I�2O�Ȫ������1� �]M�2�P�Ȫa�1�ɧ�?�����ϧO]M�2�H����_ũ=ȧ��=�ƧMi3�K;I���0��FK;IGI�F��ϧΩ�����������B�Kŵ��ME�X����X�����A�� �W�O��"��N�b��+�"�N�J����������FTL¯���H����0��RQQQ����#��uT]����0�Ļ�����u��Q�������������I����QQQ. ����H���\RT]#�Ļ®ë�-����u�QQQ������ë�-��������u������������������ë�-��������QQ. �����\\F]HR��L� �B�����Hݧ�����������HPI�PB���H���"�P�ë�-��v®ë�-������u�. Ĵ�H�������ë�-�d���PI��\){R��L� �B�����ݧ��ç]M �9��� ƧB���O�W���>�ë�-��v®ë�-����uĴ������ë�-����`��Oȱ'5q�G��6���R�™��ܴ���G�(ôOG� u�S���ܴ���G�(ôOG�����|� �u�Sd�R¸�����u�L¨��Zί�Z� q��-�驻�����QO3�����3�#��Z�Q;� �;� ��������Q���X�V��������IP�������Q��������������;� ��������uT�-��VI#��Z����X�V��FQT�H��ɰ� ��ᵷ�ڻӳ� #��Z����������FRT����R�Q��Ĵ3�ӳ����Z�V���/�M��I,�\R�Q�;� `RT�Ĵ���������L#��Z�ĴKEK�O3�'K�#��Z\`]�����>R�������PO����P> ������> ����P�������W������P���������L�v¸�����u�L�O��G���̱���>��������uT��k�O��G����u�QT>��?���Ķ���ʧ�������/��������G ���� �O��G����\\�QRQ����I��O0���GR�™�G���Ɖ��u�S��G���ƴ��G��]������S��G���ƴ�N��P��P�Nu�S��G���ƴ��< ���u�S��G�ªP]G��S��I�������¸����S��I���N��P�O���GM �� ��S��I��O0��O�O0���O0�����G�O0������=Ȩ���"����GR�Ȫ�O]UO0��������ɱM��J����Z��\uT�P�k�O0�����Z\`���{������N��O0���ȫ���O��������������@G������>�����R���Rİ��W��«�Ź��GM �� ��N����N�����u�QQT���������O0�ĸ������\`�O�ůI��o���F]�Ȩ����JȨ%�O�ůI��Ƶ.��E��Ȩ�F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴA���R�ҧA���#q���� �W���ůɴv��'�/�P'�/�{���u�S������PG�u�SG�,� �PGu�SG�,� ��P�O��e��i��u�SG�,� ���(DO�ë���u�S��ůɴo�����o���������O���>�ūH���R���X�ūH���uį�����ūH����ūH���`]���M�<�ܩ�G�,��R�&Ʃ�UūH����ūH� ��o����u�L�ūH���O���>�ūH����ūH����uT���e��i�^ūH����ūH���R��QDūH� �ūH� ˝Të��\F]�G�,��R�GI�M�<�ܩ�G�,�ľG�,�o���\��M��H�"R��M��a�m2�O�m���IH�������������So����o�u��S?P�O�KL�O�����>���O ���繏�S��̫������»e��SM��H��IH���n�O��IH���M�*e���S�N��<��O��M����Ti�H�<��P�O�Ȫ��������Sn�O��~��e��\){"R�ٶ��a�"���êPO⵪OP�o�����PO3=3���v��^�Po����u�o��A���ۧo���FTo�������FTL�&Ʃ�U�����~��ePi��M����o��b�Q5� �*e��b���e����J5� ��̨���uTM��J�LIX���G���\�����\�`QTKL�O�����>�Ļe����`QTȪ����P�A��&'KD��� �R����H��X�����R����5� �*e�5� �*e�R�����~��ePį���~��eU���#��Ī���J�~��?X��������İ~��e�k��M��J������m���IH�����������ĸ���IH���M�*e�\`{��=�ȯ��2�$�$�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQS��z@l��-�w�$ʔ���;�U�̮����̮������>P�;����J. �������ל�Sj�̮����̮ ������>P�;����J. �������ײ��F{�E��E���������dw����������v! p���C�:��=�s��,���W�����L�P�=�s�� X#�i��v���%��� �E��E���������dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U�E��E�����������9��dw͜�QSE������L�� ��������ޱ�ͱ��v�����;�UI����R���QQ�E������L��Ȭ��Ȭ�R��Q��QE������L�������������G@�R���QQ�j�̨�̨R���QQ�E������L�EK��������� ��MUu�G�HL ��P&]����Ķ����������N�Ï��D�N��QD�N���R���HPѲ�N��²G���N�ò��R!� ���O0��q� ²OL�H��;��I�u��QQS���.�ï���;��I����=���IP���I���O�L �����R���eP&K�����K�D��e+K�u�QDG����GD��? �Gu�QD��e+K�^K��U���}ߠ������p ��w״ײ���R�QD��e+G���R�QD���K�^��U�K����QQVO ����P&M����P��R�QD���G^K��U���F{�ũ�ê>�ì��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQS-����o����O�����ٷ �|�P�$ʜ�QS-����o���ũ�ê>w�ײ��F�.������R�»��6��YN����P��P���]��������B��L������Ʃ���R�&Ʃ�UC��u� �&Ʃ�U����u��L�CN¾������fCu�QQQ���O/���b�_�CN���Q��[�������[���O/���D�����Ʃ�秶���u�T��.�#���_CN��[�����\F]���KL����R�&Ʃ�UC��u� �&Ʃ�U����u��L�O'>�CNĻª���>�O'>�����������fC��������\u�T��.�#��ı��R���QT��[��_¾���@GD���@G������O'>�CN�����ĵ�[�������f�����C\\){�����[��M�����R�&Ʃ�UM������u� �&Ʃ�U����u�Ĩ�.�#���_¾���3K�D���3K��M������M����\��ϧӯ�� ��Į���5���𯭮�����ҳ�� �ìPOH�>����ϧ������G �����PW��P�����IIEZ�2����ϧ�Y�a� @���Na�ì��%���N��� ��Y�H�$�ðF�ϧ��ç9�����_�e�������������P��G �����ϧ�X��P�����I_�����êݧ���O�O�X�B��ů������ψ��P����P�����ϧ�Y������O'>��P��<"ݧ����ݧ����P�����I��)�噴B����YF���){�������O u�;��s�M�O DM����o�ɰ�M\)�L¯��P�Y��E��@-�I���R���������������,����M�� �����������m��ԯ3���>( ������u��į��P����FQT��M�O DM��ĸ�R���QQT�o�ɰ�M����T�o�ɰ�o�Ŵ�������T�Ķ��O���>��o�ɰ�o�Ŵ����念�����QD]�����;�H�����̫��ɴ��X��J�,A���X�����������\FT�į��P�m�FQT�o�ɰ�MFQTm�*e���P�m�\R������į����P������T���P�m�`QT��M�O DM����o�ɰ�M\F���)k��ŵ?��'��G�����.�R�·C̩��ȩ��O�D�u�S��̫��������u�Sŵ?��'������.��.����E�/J�V��������������زF{����V�������J�������زF{�B�NJ�V������������F� �����.��b*�,�P�.��B�N�O����P����� ����ç� ����Ч��֧O� ����vQTL�O����.������.��b*B�N�uQQT���O����������RQQTO������֧ҧ���ԧ��Բ�����P̫���-���WA������"��\)Ļ �����.�*�PO����P���������0H2��� ��vQTL�b*ϵ���J��٧�������ز�QQQO����.������.�*�Pb* E�/����uQQT����O��>�ŵ?��M���O�����������RQQT����O��>�ŵ?���M��PO�����������`]b*��G �O� �G ũ������O�0�Huϵ��uT���#� ũ�����������O�0�H\)Ļ �O��>�ŵ?���M��PO��>Pŵ?2]M���vQTL©ɰ� ������%��V��������������ش����G�����E���������E�L ���V�������J�������غ�.�+ŵ?��]M����.��Z���hv�QG �̨��1���\�E�/�\�����\�t���\�����\�����������������������Y�\����\����V�����\���R������Q��\�����������������������������Y�\����\����������V�����\�˹�v�QG �O�0�a&�����D�1G �̨��1��R�Qb*��G ũ2�b*��G �O� �ɰ� ������#� �O�0�H�QQQ����.�.������.�*�Pb*��G ũ2 E�/����uQQTľO��>�ŵ?���M��P����.������&����������������������YJ���V���،������Q&����������������������������YJ���������V���ز˹`{��ɱ.��x�� �$���DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�E���/wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���( �wʱ�����(�����C������U�����G��F{���������� �wޱ��������v�VK( ���,�Ƨ��O3����P���"��P�����v�V���%��� �E����������� �v�V�&yJҰ �ί��I�N�ahv��QV���Q�%���ȴ. �� �������رh�ì����VK��U���}렛�����B����=��Xw栛��ª���������O���$�㜛QQQ�ª��������B���Gwǔ�V ��MU�x����w״ʔ�V���^E�PѲ(�&���J�������R�V��HPѲK ����²���v����Q�(�������ó�ê��ï�I�LȪê��ô��ɴ-I���O ����ô-����������� ����JOL�HQ���v����Q�c���v����Q�����v����Q�K �����v���QQ�QQJK ���;��I����R�VE���^������� �QQQJì���%��� �E����������� ���=źi��v��V����@-�������ï���O���J�v��V]����P��^����W��Ƹ�ȶ��R�V��eP&K�^K��U�����̺����̱.�}޴뜛���QQQ�ô⯨�=�� ƺ=�� Ʊ;�}Dz����F{�K3�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� �I�yJK3��G����Iv!���U���}�ǜ�QS ��}栛QQSz��s}ߜ�QS ��� ���̨w�ǜ�QS ���̨��I4P�$ʜ�QSj���[��̨w7㲹��V ��MU�x� ��wߴ�ǔ����U�@ź�u� ��^ëL��K3��n��.��F{������������wױ��������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L ������R�QDK�^K��U� ���'��w㲹���R!���U���}�ǜ�QSj���B����=��Xw7뜛QSz��s}딾 ��MU�G�̵5�$Dz��F��ɿ��$�����������R��RS������P���uS��̫��������uS���� /��� /uS��G ���G ����m��@-�R»�����uı�󧻵����RQQ������RQQ����O3RQQ�@-�H�`]m��c���@-�R»�����uı�󧻵����RQQ�m��@-�RQQ�l���G ���� �����`QQQO'>��������z#X�=��9HR����G ���O �J�\�����QQ��G ���O �J�����QQ��G ���O �J峳����QQ��G ���O �J�����QQ��G ���O �J�O��\RQQ#���`]����R»����ç[�uĨ��������Ȫ���G��� /��� /�[�\F]����R»�����uı�󧻵����RQQ������RQQ#����RQQ�����O3�G ��`Ķ�R�&�ï�J� ��,��vV���J�#����n��� �PW�Ȫ�9�������ɰO���9��������� ��Rľ��n����FT���n���ɴ�����FT�O���D��;�KS򧱧���񧺏ľ�N�;�`H�����O/��� �|�D> ���F]���A������2·u�L���� L���RQQS���������"R��Ļ�� ���/��ɹ��� L�����ɽ ���/������ɽM���/��`��Sʧ�u����uT���ʧ������#����\F�ϧ�X�X�X��Pë@�����������P����W������Ǽϧ�X�X�X�����-�2B��?����t� ݧ@�����_���]���A����·����uTL�-ȱ��.ī��>���.���=��������ǽuQTO��.�����A������2Ĩ@"P���ǧ���\��-ȱ��.�\){���� ��R�����R�座�R��򧩷��R����R�����R������R������R�屧�R�����R�����R��b�bR������R��oPo�R��9�����GR�宸��OGR������������R��A�A�����R��E�/�E�/R��. . �˽�ϧ�X�X�X��P�P�#��� �ïL�ӫ����_�#��ů����ϧ驻M� ���PO�ϧﳫ��Q]�����ϧ�<�LQ��:�)�ϧ�Y��������� ��_� �]�����3»P������!��^;�J�����3����������������F�ϧ֩� �Pze2Ȫ�����3Rľ<�L#�FQS���ɬ�"/Jੳ=ݧ�巧Щ���I-���uS���ɬ�"/J���K>=�¿� ���ï�ũ@�>PEK�K���9�ũ�������uS���ɬ�"/J٧ȯ�Ƨ_� "L,2K>=�|���,�P�#����IK>=�����"��:�����@�ƹ���RS���ɬ�"/RQT@��J�� �E��Ы�"��%��� �E��Ы�"��JRQT@��J���;����E����JЫ�"��%����;����E���̰��"��uS���ɬ�"/J���֩ɫ�ݧ� �ݧ�4�ũ�:���J�����MOi2_ȩ�ݧ���[�� �X�:�ݧ��� �ݧ9��ݧ���-��L 5�����"����uS���ɬ�"/J�巧���O/�ŵ?�X�B���@G�ȩ����X��=�s�9�L2B���O �@�ƹ���)� ¾ŭuF��ϧ�4 0G������3JЯG��F�0G�@GFİO��-ɬ������@��F��ϧ�4 0G��������3J֫���F���@GF����ű.��ëL��� ����4��GR�™�G���u�S��ű.��H����G�H���u�S��ű��L��G��ÉG���u�S��ű.��ëL���K ����4��G�K ����4��Gu�S�����KG�G���u�S�����KG�ì���ů��G,������6����4�R��O ��4�O��ǧ�P���G�B� ��v�uı�K ����4��G�6��� ������4�\){G� ����4���'ƩR�L�¿4�6����4��Q[����RQQSO�0�a��H������̨J���� ��v�����TG�J��4��Ŀ4��C�J�����������QQQ[��uT�PĶ������#�\F��/N��K�B���R��N����n�O�N����6��O⵪O��B����u���!��B��PN�FQQ�ϧ���ھ��� �PȪ��=�s�p�O⵪O���� �RQ���+�����O⵪OJ�/N��K�B����\�{�A�I8�����9�Ĩ����J�V������FVK( ����ɰ�|���<���X�ze��W��=�s�EKv��%��� �E��I8�����9��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj����QQ��ǜ�QSj���B������������wʱ�������֜�QSj���B�������������Q�$$DZ�������֜�QSj���B����O3QQQwߴל�QQu�M��U�H�ۧ� /�L����ʝ�H�ۧ� /�L>��Q�ʽ�F�E��O3�������@GRľO���D��;�Kb#�����O*,A�PO*,Au�SO��N��,B�DO��6�UO ���SE��O3����ūa��PūH��b��uę�n��b���D���@G`]H¸��#���ī�����D���@G#��`]H����u�O*,A�O��i��� RD���@GR��.�ŧ�uQO �b��.��\FR�O*,A�O��i��ëL�RDH�����@GR#��`]���@G���ȱ��#�� u�ūH�@G�Ȫ�m�XR^3XJ�:�Ϊ�vV@G��L|����M@-�@GuV����@�¨�u�QQS����I����B��,��R�QQQ^�Y�Ƨ�����ȱ���f�����R�QQQ�y#�����R#��`]���@G�oMu�L¨�P�O*,A�� ( �¾���@G��uT�¹���@GR�T�¨��Cu�QTO*,A�����������ȱ��#��C�`�QTKO�#����\�������������G���ï�OGR�� �PW��������������ï�OG�y�� �v�™�G���u�S�������������ï�OG�OG��G�G����Ʃ�R�L���A����-ɰ� �2��A�����֯�N���槸� ����ɪG�vQQQ�����uT�P�ȶ�Ȫ�����RQQQ̫����������"��RQQQ�ϧ��A��W��2����A�����ȫPb<�����RQQQ�ϧ̫��������ӳ�ӫG��"����̫���������X�9����9G�B�̫���?�O��ɴ���RQQQ��-ɰ� �2����ʧ���O�0�H���1���֯�N��� ����ɪGvQQTOG��-ɰ� �������#����A���\`{�;GO4P�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}ߠ�QQSj���B����y�� �$�ʱ�ë油)��j�. �ƫ�ƫ�ƫ�ƫ�YN�P�$�$7ǜ�QSj�. �ƫ�ƫ�ƫ�ƫ�YN�P�$�$7��;����JG��QSj�. �ƫ�ƫ�ƫ�ƫ�GO4P�$�$7ǜ�QSj�. �ƫ�ƫ�ƫ�ƫ�GO4P�$�$7��;����JG��QSj�����̺����̸̱���}޴�㲹)��E��G�I���,�zN�$�͜�QS�0��5ƺ����w7Dz��)V_���ƪ����;GO4��n�R��b�J�b����)V��eP& �I^������F�B���O �ȩ�.�����ȨR�������W��W�u�S����������P����u�S�����Pn����:����u�n��ì���3�R�¾<�LJB���O �QQ�����M;�K��J��ů��G,���M����QT�����M;�K��P�%�EK�����E�������$�M�̨v���J�+ů��G,���M�̨��uQQS��1R��!���E�����޴E��������H���R�S���JB���O �QQQW��W��B^f�B��쯭��˼���S�0GJ��t���QQW��ɬ�I��^;�JW��o����������tٶ�R��������ƨ�����QS�ŭu����W��� �����B&f�B��� ����B�������QQ��t���u��!��个� ���E�����޴E��������H���u�İ����M;�K��P��+�t�̨�����Ʊ��R���>������ݧO���������O�OH/X���v��Ʊ�u�n��ì��RS!��RQS!���E�����޴E��������H���RQQT�y��Ʊ����`{�Ʊ@-���R��W��>�#XL�����ݧO�����ì����L�@-�O�OH/X���v��Ʊ�u�n��ì���R�QQ��2��Ʊ����Ʊ������Ʊ�L�R��W��>��> ��������P����ݧO����ì����L�O�OH/X��a�ƨv��Ʊ>�u�n��ì��RS��L��L��L�ů8��RQT��G ���̯MR�QQ���Ʊ@-�����Ʊ>�������� ��ɧ��ɨuĪ����ĩ������FQTn��ì�����J@G�QQ����u�T�Ʊ�L>���\`��ï�'K����� R��� ⳴n�O�]�� ��SN����n�O�N����#���!�ūH�����N�`]�� J�� ��ⳲF&O ^ ��MU®C��C��O w�ߴʱ�������֜�QQO� q��O J7״ʱ�������֔QQVK���RQQS� �Y���⵪������w�������������;�Uj���B����O3�QQQz@|w�㲹�˼DN�^�⵪����RQQJ&���U���Gȯ1uQQQD��Gȯ1���;�K�@/U���@����������*���*���˲��)�ϧӯ�� �����߱���ק��2�ݧٶ���M���C��o��������ϼ�ϧ�êP�P�O�����I�ϧ����9O��G �������'�������ϧ����P�������� H���N�� @���Na����ϧ� @�2��Oί���I쯵�ϧ���Z���7ǧ����ψ�NHݧ���������������Z�����ϼ�ϧ�êP�����I�P��G ��2_ï����?�������ݼ�ϧ���W�����֧���Y��W�������YϧȪ���>�� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������ش�Ω�����ϧ� H���N�� @���NaW�'O�K?����ϼ�ϧ�Y��#ï��2ë>�O"�>2��E��������� H���N�� @���ϧ�Na��Ȫ��P�����I�ϧ������ݧ� �B��O���ϧί���I쯵�ݧٶ��ݧ�ǧ�,��@άݧ쪻��=��ݧ�Gݧ�Ҽ�ϧ����ʱ���ǧ���ݧ��#����#���ì��%���ȴ����){�;��I�� ��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V���Jì��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSxXNJ7�ה�_;��I�� ���MF�M��H�o���R�™�̫�������O3��e�����S������P���u�S�-����q���O�����۹�ľ��0��̫��������� ���3�ľO���D��;�KA��m2����b������ �o���:���`]m2�u����L�o���*e�e��M��H�������uTOH�ۧo�������O3��� ���3�O3�o���*e\\){�����'Ou�. ��.ۧo������n������'O`]���� �tC��R���z#X�DM���J�ë>M������u�z#X�D����J�ë>���������F]���ȱo����R����P���ح����L���>o�����ݧ����o����������R��� ���ݧëP����������v����>��o����ī���ۧ�M��H�o����o����tC�Pį����>��o�����o���\){b��'Ouī��ȱo����FT��������'OFQQ�o���RT. �o����'O\){A�����'Ou�. ��.ۧo���RQQQ���n��A��'O`{���Ÿ�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQSd������?P��ǜ�QSj�. �E�'�+E�'����J�㜛QSj���B����Yw�放�=���IP���I���O�L �����R�̫�����U�����̫���u�̫� �����QQ���b�������u���eP^O Q&K��P���H���Gȯ1w7����;�Pj��������R�_��Ÿ��MF{�E���LB�+Y����P�$ʱ��������v! p��Ԫ�,�W�� <���E��@-�M�� v���%��� ��E���L��Y�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSE���LB�+�êūwh��QSj���B����6�w͜�QSE���LB�+B����Yw7ײ��F�ůe������d�n�R��ůe������d��� qP��P�ɬ���ůe������d�?�?��b�ɬR�֫� �����P�X�O����P�� 2o/�)Q�W?��]����e������ q��� ���������2��� qRMG��"PHo2I��|�v���X#���"���� q�Ī��L©� q��� quT�b֩��� q#���"FQT�b֩��ɬ�]������� q#���"\){b�ɬ����ì����X#���"���� q��֫� �����Pά ���O����P�� 2o/�_������v�?��,���I��,��P�b������ q\��M��H�������n�R��M��H��IH���n�u�SM��H�o����o��ľO���D��;�Kb�������P�:���`]�ɪG��R���ƧW��ɪG��"���������Ȫ���>y�v³����Ȫ�yu�oM��ﳫ��P�y������Ȫ�y\){b�����yu�ﳫ��P�y������y\){�IH��G ��R��M��H��IH���n���Ia�IH�u��b�������IH����o��b�o/��IH�\){O��i�R�����i���������� ��B#ï��yv¨ï���y�����*�uĨ�.ۧ�����RQQQ��y#ï���y������*�`��/ ��n�R�»/ ���ů��ů��Ȫ��ů�u�ҧG���ɬs�W#�<���G���X��J�v��RT� /����<����J��FQT�ů�GI�FQT�FQT�M��RQ� /���B��X��J��FQQ�ů�G��\F]Ȫ� ��|y�K( �qu�������P��G���ɬs�W�K ��X��� ��X.��B����5����J�vĻ»uT�RQT���ů�ȫ��*���O3���ʽ�ů�K �y�K( �q`QQT��ĻM��RQQ�ů��� ���y\`�&����A���R�^ ��MU�x��$״ǜ��x��� /}ǜ���C��C��O w��ʱ�������ֲ���R����ĩt�O3�G �������G���i��b������:��������QJ��o����[:�d�\R��Ql�ç��"���\�˼�ϧӯ�� ��Į�����DZ�����J��Щ���@�I�еN��,�Ư�5Ư�￶���ϼ�ϧ�êP�e��P�I����M�C� ���ϼ�ϧ�M�C� ��P�O�����I�������9O��G �������'������ϧ�����P�������һ����N�� @���Na����ϧ� @�2��Oί���I쯵�ݧ���Z���槯�����ϧ�NHݧ���������������Z�����ϼ�ϧ�M�C� ��P��G ��2_ï����?�������ݧ���ϧ�W�����֧���Y��W�������YϧȪ���>�� ��2�I,/����ϧ���������������Y����������Χ����ҧ�����������������شQΩ�����ϧһ����N�� @���NaW�'O�K?����ϼ�ϧ�Y��#ï��2ë>�O"�>2��E��������һ����N�� @���ϧ�Na��Ȫ��M�C� �Qٻ�����#����ϧ�ì��%���ȴ����� ��)��M�C �?R�� ���5��̫���������������6���ſ�u��L�����uQ� /����J���FQQ���`]6����ũ��������*eu�L������������IH�G �������#��*e��uQ������`�E��O3��/N���R�™�̫�����a�O���H������S��O ���u�SE��O3���i��¿�#B���S��������C�9��O �.�����������2�uĴbӫ���̫�������e�J��\){��������o���R&����������P&ì���H�Z���� @�v��QV���U�� �� @������RDŵ?��CU�K��uD��ŵ?�U&f�K�v�QQQD��U�����d�����d���QV������^K�98P���R�QQQDze�R�QQQ^_�E��O3�K�98�v�����<����P���R���������R��������� ���ëL���O����P��E����k�ݧ�ɩ��RE��Ȫ���>��#q��O���G���ʧ������v� ���ëL�����G�OuĻ�O� �uT���L�E� ���ëL��O� ��uQT=��Kŵ���ɩ�X�E�E��QTE��O�����B� ���O�0�aE� ���ëL����E�����G�O�E�\`�j��0��5ƴ���5�9���GR���0��5ƴ���5�9�����u�Sj��0��5ƴ���5�o����«��������B��S��G���O�D���G�W���GR�GXJ���������W�vT�P��kW���J��������Dz\FR�GXJ��������W�vT�P��@G^��J�����Iv����������R�����1�����R������QQ�����R����B�ze2�P�eM��P_����9HFT�m������M��M���Jì��%�=9�ïG������MKɴì���FT���M��M���J;�H���OH�ۧM��M��ȧk\)ĴGI6��ñO0��FĴ��J�M��ȱ��;�H�����������+�"� W�J�I�M�����T�⵪.�\���JO3�M�����H�F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh��)�[:��ô����G F���ϧ��O�Z������ֵ������P_d��Gݧ��ç����PM���ϧ�� /ݧ��ç�O��Pŵ?2_�O��ɴ){6���y���W��u�ĸ����W��`]6����e���P��W��u�ĸ����W��`]3��ū��� /���ëL��I���F����M���Ʃ�'K����R��'���P��u�S'���E�L ����u�SN����n�O�N���S���M���Ʃ�'K���<�Ʃ��P<�Ʃ��ľ�6��B���ȯ8��6�����N6����ƊQQQ���M���Ʃ�'K���n�`]�����ɱ���uĸ�������D��ȯ8`]�M�<�<�Ʃ��R�ܪ��Ʃ�P<�Ʃ��<�Ʃ����� �QTO����\){O��i���?���ȯgy����u�L°�ȯg�N6����ȯ8FQQQQ^�f�?�Dy�y�R�QV������D��ȯg��ȯ8�R�QV6�����̫���?�������<�Ʃ�PM�<�<�Ʃ���uT�����MH�����O�����J��Q��ɱ\)��O��i��J�?�E��ï����I����ʲF]=�_©?���ȯ8uīH⧩?�H⧰�ȯ8�L��6������ȯg���ȯg��P�T����M�����������J�&�f�?˽uQQQ����Ƨ��ȯg6������ȯ8�QQ��ɱ�\`���=�_��?�E��ï���F]���Uu�����ɱRQQ����M���P��J��\)������F{�:�����,�w�DZ��������v! p��驰NK��M@5��#�3��X�B���v���%��� �E���N�Kƻ�ܩƫ+�,�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����t�_�xXNR� ��MU�:�����,�w�ʔ�̫�����U�̫�������u�̫� ����U���b�������u��e����U&������P���J�,�����d���P�Ĩ����J���d���u!���N�� �����E��"A �ƺ0A�,��$נ�QQQ�����j���B����y�� �$�ʱ�ë望QQ�����A�,�-+�P�״뜛QQ�����O� �dw�ǜ�QQ������IL�w�ʜ�QSE������LEK��I�I��I�I}放�,�^����O���J�,��M@-�����eP&K�^K��U���}ߠ���QQQxXN�n�7ߴ油���F{�d��0<��$�v! p��ҧYN@�,�W��0<��W�ŧ���v���%��� �E��ų�G���d��0<��v�a&yJ����֧�Na���ֽv�V��%���N��� ���֌� ��MU�x�;�Z���$�!���U���}ߠ�QQSj���[��̨w7뜛QSj���[��EK�wʜ�QS��êOJ�렛QQSd�ì��J7ʲ��F{����E����� lw��v! p��િçL>�#⳧B��ƪW��� Ʃ2�̯��@�,���v���%��� �E�����E����� lv�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}޴��(�����C����QSj�̯��̯��J�޴͔��D�������P��O ²�陴ze����O �@��X����u�̫� ����U���b����������X@/�������u���e�R&K�^�=���IP���I���O�L ���RQQQD��HPѲG��²Ȫ���e�K���!����!����!���G���RQQQD ��MU�x�����N�$�ޔQQQDK��U�0G�O�⳺0G�O��J��ױ���ױ̸Ů�͜��QE����[�ūH���}״��ʜ��Q��êOJ��ʲ���RD�^K��U���}�ʲ���RD�^K��U���}�Dz���RD�^K��U���Jߴʱ��ײ����)V̫�����U�����̫����F��ȯ�ƻ=�6�������R���6�Uȯ�ƻ=�6���������]��������ȯ�ƻ=�6���O��G��O�]O��G����`����ϧ�����O��G��){O��G�����F�E��O3����ūH�GR��K�98��n�O��6�U]98�����SE��O3����ūa��P���98����m�XR���ԯ3XR��êP�Pm�X#����2�Z��O�����v�!��^G�L�Ѳ�C�ש����R��m�X��F]98�����������*���R¨��������*����F]98�����I����B�R¨��I����B��B���F{�j��� W����:wߴ$DZ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴ$ʔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C̩J�望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F{��/�wʱ��������v! p�����X�ؾ�� �K( ��v�_�/ȴëL�R��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSz��s}뜛QS ��� ���̨w�ǜ�QS ��� ���̩����3.�}�ʔ� ��MU�x� ��wߴ�ʔ� ��^ëL���/ȴëL��.��R���e�R�!��^K��U�̫��ɴH��L��H��L��.�J7㜛�Q ���'��w㲹���F{�j��� W���ɱƫ�ƫw޴���������v! p��ڶ�ɧ ��_W����ƫv���%��� �E���ë�����+�ɱƫ�ƫv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������ʱ������ޮ��QSd�ƫ�ƫw�����;�Uj�. �ܯ�Ʃ���ܯ�Ʃ���ܯ�Ʃ���d��QQQE��G�I���,�zN�$7望QS��êOJ�㠛QQSܯ�Ʃ���dw������;�U���-����-��j�. �ܯ�Ʃ���ܯ�Ʃ�������eP&K�^K��U·C��޴ʔ��D ��MU�x��C���油��R�QD���c���^�������U���X��׿����F{�����wߴ��ë�v! p��ҧE�L ������N���������=�s�?����� ��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E�����������v!���U���}נ�QQSj���B����6�wǔ���HPѲG�²Ȫ���e�K��]����!�����]����!�����]�����G���R���eP&�^K��U���}�ʲ���R�QD�^K��U���}7Dz����F{������������w�v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L �������R!���U�j���}�ǜ�QSj���B����=��Xw7뜛QSz��s}뜛QSj���n��A'���$�딾��eP&K�^K��U� ���'��w㲹���R� ��MU�G�̵5�$Dz��F{�����?��w��v!���U���}�ǜ�QSj���n�������w��h����ǩ��ë��QSAB�M�L.@�J7�ǜ�QSAB�M�L.@ű��>P�7�ǜ�QS�����EK�������EK�}ʜ�QS4=�� ���ŵ��}ʜ�QSE�'������E�'�����J7ל�QSAB�M���i�w7ǔ���eP&K�^��U�K���QQVK��U·C���ǜ���QQj���B����y�� �$7ל���QQj���̫���;���wh���D ��MU�x��C���Dz���R�QD �I^��U�M���V_����?���MR��QQD��¨���?���M��R�QD�C������^��U�������QV_����?����C��������R��M�x�Z��J7�ͲF{���,�ܩ�����ȩŻ�F{�Z��wʱ�������ֲFH��N��D���P�Ѳ�����!���U�F�Ʊ����ۼ�0�^�QQ��RQVZ��QQ�Z��RQVK( ��ҧo����,�L#ê��W����5���ȩ�� ��_��=9���J�����X��W��ƪȩŧ���ȴvQV����Jì���%��� �E���3�Z������ȩŻ�vQV(��^���%��� �E���3�Z������ȩŻɌQV�QQѲ�Y�a� @���NHv��Q�%���ȴ�Y�H�L��� ���$ì����˼��I^_�,�ܩ������W����X�F]�Ƨŵ?�R��?2��MG���=9����v�u�z̫� �0���I�MG�\����<⵩�?R�™�G ���G ���`N��L�o��L�� /�F�������+�1�ԪG��Ω��L�H�I,��I,��H��,�\�������+���֯�NԪG��Ω��L�H�I,��I,��H��,�\){=���� /���#F]�R��W,���W����ΩL ���v��HL ��u�PHL ����+����|`T�HL ����L|u���ΩL ����L|#�L ��\){⨫R��W,���W����ΩL ��ҳ��v��HL ��u⨫#�L ����+����|`T�HL ����L|u���ΩL ��ҳ���L|#�L ��\){3��;�R�Ҹ2��;� ����2B��L|�v©L|���;� uĸ�H�;��;� ��32Ĵ�;�ԪG��L|��;�\){O'>�;�R���'>���;� ����2����L|�v©L|���;� uĸ�H�;��;� ��O'>��;�ԪG��L|��;�\){��?���°INHL �����ɬ�/�PHL ����IN�\�� ���ȩ�R�™�B����=��X�=�u�S ���ëL�� ���ëL�u�S ���A����PA�����E��O�����B� ���O�0�a�E�����P-ȱZ����9a�RVO���RQ&�����D�1&�DE��O����˧ϧ���Ч��ͧ���"��L��/���)QVo�@ RQ&�����D�1&�DE��o�@ �˧ϧ���Ч������@ )QV�����RQ&�����D�1&�DE��������˧ϧ���Ч��ͧ�~����e�)QV��RQ&�����D�1&�DE�� "��R��QQV��P���R��QQV���O���Z���-ȱZ��R��QQV���O���f�A����� ������O���fE����)QQ�ϧ��HRQ&�����D�1&�DM������`]�,��E��ëL�R���>�� ���ëL���O����P��E����k�ݧ�ɩ��RE��Ȫ���>��#q��O�������ʧ������v� ���ëL�����G�OuĻ�O� �uT���L�E� ���ëL��O� ��uQT=��M����ɩ�X�E�E��QTE��O�����B� ���O�0�aE� ���ëL����E�����G�O�E�\`�O⵪O��»�������C�9��O ��uQQQ��»�������C�9��O �.��,uQQQ���d�������@,���F���I����d�������@,�+�d���O3��R�QQQ�����ɺ������ĵ�ůɴ=9L+���\)�,�GI�*������R&����������P&���U�� �� @������RDŵ?��CU�K��uD��ŵ?��R&f�K�vQD������^�̨m2���ůɴ���M���QD��U������ze�^_��ůɴn�R�QQV����J̨����QQQD�IL��ŵ?2�R�QQV��<����P���R�QQV�I5��P&����I�;��ç��R�QQV�O����� /���R�QQV���������_D��( ���R�QQV����������D��( ���R�QQV���BJ� �� @���+M�̨v�QQV����J� �� @��̨v�QQVZůa���˹�F,�d��O F{��ɱ.��x�� �$�$$DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W���ɱAP�$ߴ7DZ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴ͜�QSj���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ����R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U� ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{�O �$$ͱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQS-������@-��@-J7��������֜�QS��zLwה!�����U·C����ëל���x��C���$�ݽ�����O ��O3��@-��J@-ٶ���3u�O0��q� �Ѳ����v�QQQ^��%��������o/�O0��q� ���.�ï�����R�̫�������"�J����F{�j����������w�����������v! p��ҧE�L ������N���������=�s�?����� ��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E�����������v!���U���}נ�QQSj���B����6�wǔ���HPѲG�²Ȫ���e�K��]����!�����]����!�����]�����G���R�����eP&�^K��U���}�ʱ���벹��R�QD�^K��U���}�ʲ����F{����E���ũ}�v! p���� <>���4PW��=�s�p��ŵ?�B��������JΧ�ɽv���%��� �E�����E���ũv�a&yJ� @���:�M��%�������!���U���}ߴ��(�����C����QSj���( ��ߴ���(�����C����QS���E����A��}��(�����C���!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I�˼�D��U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d��)VEKM�^�U�����QQQDO3D�( ��R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ũ��=źi��v�V����� ��O���J�Բ�)V ��MU»��E���EKM�w�ʲ��F{���P�$�v! p������v���%��� �E������ܫƺ�⳨v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}޴ʱũ͜�QSj���[��̨w7뜛QSj���̫���̸Ůw�뜛QSj���B����Yw�ǜ�QSj���B����=��Xw�ǜ�QSj������@�̸ŮJ�ߴޜ�QQ��E���N��<��OJ�נ�QQSH ��}״㜛QQu�_�⳨�n�R�̫�����U�����u��b�J�b���v� ��MU�E���wߴ�ǔ�E���^����J����E��Ɍ���eP& �I^�����R�QDK�^�=���IP���I���O�L �����R��D�������U���X�������X�������X�X��� /�����X�X���H���Ӳ���F��� ���G�?�< R�™�G ���G�u�S��G���u�S�� ���G�,��O�O'>*��G�,�� �N���S�� ���G�?�< ����ľ��0���1��*��G�,���� �N2�`]���<�'������M2L�����M�`]A1�'���DM�R��L��u�,�ML��`]A1�'���DG ��R��L��u�Lµ����ëP�����������J������������V�W�X�Y�ZvQQQ=���ëP�G��=��9a�����ë��Q���P�����������vQQQ��� ����� J��������\�����vQQQ9C����IP�. G�R���QQ������ë�R���QQ�=���ë�R���QQ�����R����QQ��� ����� �uT=�� ��QT���E�/����L���T. G����TO���o���,�/ç9C����I�\\F{��ɱ.��x�� �$���״DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��4��������i���B��ůɱ��Awʱ��������v! p����A���֯��P���0�W#�i���B��ůɧ@�,��v��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ޠ�QQS��������i���B��ů�w7�ޜ�QSj���( ��$ʱ���ߔ� ��MU�x�d�ŵ?2�$딾c����bP�&� ����� �K�B��+�+�u�d�ŵ?2&ŵ?�P&K�B��P&��U�����K�B��+d�����QQDze�^����J̨v�����QD��<����P���� �R�����QD����J� �K�B��+̨v�����QD���BJ� �K�B��+�+��̨v�����QD���J� �K�B��+�+��������F{��ɱ.��x�� �$��޴ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�B���9�M���״�v���%��� �E�������B���9�M��v�a&yJ�����������������ԧ�����ӧ������ا���V���7�v�V��%���ȴ����� ������ ��� �7ì�����M�x�Z��Jh��v! p����>�B����9�M�@�, v!���U»P�͜�QSo��w7ה���U��:��O�Z�MůȲu��t�M�xXN���F�l ��ū��� ����RľO���D��;�U���H��»�,����a��P��ľ��0�,�� ƴ������ �R��,�� ƴ�����쵶 �R��,�� ƴ�ɩ�����HR��,�� ƴë@����ɬR�����-����ŵ�����0�L�`] �R�ӯ"� �_����� ��MBR,�� ƨ�P� ��M�� ��v�9����Lu�O��� �RT���f�ɩ����uQT9����L��\F]��� �R�ӯ"� �_����� ��MBR,�� ƨ�P쵶 ��M�� ��v�9����Lu�O��쵶 �RT. ���uQT9����L��\F]���HR�ҧo>5N"���� ��W�6�,�� �R���HP���o�MG��"�v���� ɧ9��� �uĴ���a � ��9��� �\){�BE�����𵻻R���ŵ���Jӯ"�B����ŵ����`����BE�����𵻻R�XR���ŵ���uT��0�L���,����𵻻�b��PP����߲\F����BE��������HR,�� ƴ�ɩ�����HR�N��P9��� �uT��Y���2����a�P�������L�9��� �`T���P9��� �uT�ح������a�P� ��9��� �\F������?��ɰ� ��������R�©ɰ� �P�O�D�u�S�����?�'K����u�S�����?�n�O�D�u�S�����?���������u�S�����?�?P�O�D��`�ɰ� ���R�L®�?2�-ȱM������ ��ͧק�ͽ�uT�����?2�ɱ9�����ͽ����?2�ɱ9����\`�ɰ� ���R�L®�?2�-ȱM������ ��ͧק�ͽ�uT�����?2�0��B��9���������?2�0��B��9����\��)ĩɰ� ���R�L®�?2�-ȱM������ ��ͧק�ͽ�uT�����?2��-���ͽ���?2��-��\`�ɰ� �kRQQT�:�ī��Dɱ9������ʽ��Dɱ9����ʽ������,�-ȱM������ ��ͧק��\`�ɰ� �kRQQT�:�ī��D0��B��9�����ʽ��D0��B��9����ʽ������,�-ȱM������ ��ͧק��\`�ɰ� �kRQQT�:�ī��D�-����ʽ��D�-��ʽ������,�-ȱM�����ұK���ͧק��\`���ϧ��������������������������_������������������������������ɰ� �$����RQQT�� L���_�\�ɰ� �$����RQQT�� L���_$�\�ɰ� �$����RQQT�� L���_��\�ɰ� �7����RQQT�� L���_�����\�ɰ� �7��RQQT�� L���_��\�ɰ� �7��RQQT�� L���_��\�ɰ� �7��RQQT�� L���_���\���ϧ��������������������������_�����������������������������)&^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v���ϧ���ھ�O�N��L�"�;��IPOL�HPO0��P��R����J;��I��%���0��q��Ƶ.��E��;��I�v���RQQV��HPѲO ²40@-�O ���˼D��� �^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v��QQQ��J;��I��%���0��q��Ƶ.��E��;��I�v��QQQ�R�QV���@-���˼DƵ^����PѲ"/,��%���0��q��Ƶ.��E��>��"/,�v��Q��J;��I��%���0��q��Ƶ.��E��;��I�v��Q��˂�=�n�R���=������I��I���&��0��O��˧�O�¶u�G�Jੳ=J��`]����0����ɨu��I�����ɨ`�ũ��Rľ��0��E������ �ũ���Ϊ���B�PΪ������iO�\){�����:�����yu�Ϊ���B�+bΪ���B�#����y`],�H������yu�Ϊ������iO��,�HΪ��#����y`]O�M��������yu�Ϊ������iO��OH�驻�����L�#����y`]O�M�����u�Ϊ������iO��OH�ҳ��L��`]ȫ�����R�֫� ���� ����������|���O����P����� ���X������|�R��ç9��P��O����P������ëP�O��ų�C���� ��v»uϹ�����`]ȫ��*HR�֫� ���� ����������|���O����P����� ���X������|�R��ç9��P��O����P�����ëP�O��ų�C���� ��v»uϹ����`����Z�n�Rľ�N�;�`]���B�O �MKɧ��O ����DMKɧMK�D��O ����O ���F]K��M�*=��ɨu�L�RQQQK��M�*=���»=���[�����=��T9a�[�D��O ������QQQJ���R�����QJ���\uTO��"�K��M�*=����T��MKɩ2B�O ��ɨ\F]���G�ūH|��O ��u�L�B*=���¸�O ��������O �R���QQQ���=��K��M�*=��R�����QQT�ĸ�O �DMKɽ���O ��\�Qê��ūH|��[���[�D�=�����ǽ�uT���G�?��ê��ūH|��B*=����MKɩ2B�O ����O ��\\){�MR�٧������ïL�=��������v�����u�L¸�O �Pę�G ���� �Ĩ����JM����䲲�uT� /��K��M�*=�����O ��`QT� /�Ļ��G�ūH|���O ��\F�{�j��� W����:w�$$ʱ��������v! p��ڶ�ɧ ��_W��:v���%��� �E���ɱ W����:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�$ʱũ͔�G�HL ��P&]����zL|D����QQD��D��R��D�oG�/�����R���eP&K�^K��U�E��[:�[:*O�$�����ל���QQ��wh���D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}ǔ��D���U�G�� ����R�QD���c���^�������U���X��׿����F&��I�2&c����bU����b��)�VG�U�G�d��QQD� �U�K��� ��)�VK��U�E��"A �ƺ�� L����w�ޱ�������֔�� ��MU�E��"A �Ƣ( ���Gw�DZ�������ֲ��)�Vd�ŵ?�R�&ŵ?��R�^ũëR�Q&��U�G�d����ze�^@�U����QD��<����P��ê�� �R��QQV�O����� /������RQ�QQVG�E��R��Ѳ�ë/:̨v�S��ë/:̨����-�R�QJK��� �� @���+ũë�̨�����)D��2¾��I���)DK����I��RQQ^��U�K��� �B��+ì���K��� �B��+O ��)�!���U� ��}7ǜ��Sz��s}뜛�SN@>}�QQV ��MU�E��"A �ƺ�<�$��������ֲ��)��d�ŵ?�RQQQ&ŵ?�P&ũëR��&��U�K��O����"+B��+O �����)��M���RQQS�O⵪O��� ���H�Z�ì���­������"A �ƴ�<��O ��Q]��H��O �N�u�OH�ۧ"A �ƴ�<��O +��H��O �N�R��"A �ƴ�<��O �N�\RQQQ]��H��O u�"A �ƴ�<��O +d��O R�T��H��O �N�\�˹˼&^����P��"/,��|;��I�v���%���0��q��Ƶ.��E����˼D��� �^����P��"/,��|;��I�v��QQQ�%���0��q��Ƶ.��E����˼DƵ^����P��"/,��|;��I�v��Q�%���0��q��Ƶ.��E�����˂�����B��������q�GR�™�G��]G�����S��������u�S�����B��������q���������`+]D�G�#X�F�+]D�MM��F�+]D��+Ʃ�P�O���G��D��¾�M���E�L ������#������?�O�����������ç���?�O��F]G�G������RĪP��������ǧͧ�˧E�L �������B��������q�Hǧ�͹`T�P����������E�L �Q��™������Ʃ�U��n��G �����n��M�繹\)�+]D��������F�+]D����G�y#X�F�+]D���G�y#X�F�+]D�y+Ʃ�P�OⱵ¾����G�yD���G�y�`�+]D�+Ʃ�P�OⱵ¾�yD�����`�ϧì���%���G��� �E���ë���⺮�K�ߩ���������׮��������Ǯʸ]G�O�����>������R�L¨���P�:��˝QE�L ���#�����u��Ĩ�.�#���P���#���+W�+b�#���\�uT�P���������E�L �QQ^����+W�D�����QQV����G�y+W�D����G�y�QQV���G�y+W�D���G�y�QQV�y+W�D�y�QQV�+W�D���\F&^ ��MU�x��$״ǜ�QQx��� /}ǜ�QQ�C��C��O wߴʲ���˼{� ��� ���n�$��v! p���X�n@�, �v��%��� �E������,��� ��v!���U���}h��QSE�'���EK�}ל�QSE�'�����}ל�QSE�'��*e� �3}7ǜ�QS̫��ɴH��L��H��L��.�J7�!�����U����o��}h���F�(,��L�G�O⵪O��G����`�m�*eJ(,��L�d�F]G�=��9H�L��RĪP���(,��L�(�O�L��J��\F{G�����9H�L��RĪP���(,��L�(�O�L��JҲ\F{G��ȯ�L���ȯ8RĪP���(,��L�(�O�ȯg��\F{G�Ū���ȯ8��RĪP���(,��L�(�O�ȯg�GO���\F{G�Ū���ȯ8��RĪP����(,��L�(�O�ȯg�⵪����\F{G�������9H�ȯ8RĪP����(,��L�(�O�ȯg����������������ز\F����G�F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴH�� �n�R�™��Ɖ��u�S������PG��`������������������������������������������������������������������������ϼ�ϧի_Ұ��������������������������������������������������������������������������){��êI����Rī���Ʃ�êI������RTK >��D�ú=�_�E�\){���<����>���RĻ�o[������[�`VêI�����êI����F]���<����RĻ�o[������[�`VêI�����êI����F]A1����>��!������R�o[�u���ɱM��J��� �|����\){A1���!������R�o[�u���ɱM��J��� �|����\)�����������������������������������������������������������������������ϼ�ϧ�:'ੳ���������������������������������������������������������������������������){���@ܩ��R��������>����W�P����Ʃ�P��#XPB�Ʃ�ȯ8��v·u�L���Ĭ��Ƨ���TL��Pı�y�Ɲ��QG��O �������u�QS�Ʃ�ȯgƨ����`�T���u�T����ɝ��MB���������ɝ�ɽ�uT�ƺ0G�Ƨ����\�{�O �w�v!���U���}ޠ�QQSj���( ��$ʱ���뜛QSj���B����O3w�$ʱ�����������;�Uj�����QQQE��E�5 �������dP�$ߴ��ʜ�QSE��E�5 �������dwߴ��㔾c����bU����b��F����o- ���RQQQ��PT?����@ܩ�N<< ���źO��>���o- �`����o- �`�����G ��M�� �n���N������P��P�秶����ʽ��\RQQT�N����P�K���\\)Ī�����E�/��E��@-�I����FT��RT� /���� ��I��|��PO⵪O��FQT��i���ɪ�`TL�ȯgı��E��@-�I��򧻪�G�>��uT�N����Pȯg�K�E�/�ȯ8\`��� ���G�?�< R�™�G���u�S�� ���G�,��O�O'>*��G�,�� �N���S�� ���G�?�< ����ľ��0���1��*��G�,�� �N2�`�d���A��B�����:��GR��d���A��B�����:���u�Sd���A��B�����:����ɬs��6�����A*�ɬs��S�������G��ë�iGu�S��G��O�]G��PGX��S��G ���G��`iG�MG��|F]"���A*�ɬs6�����A*�ɬs`Ĭ��*�ɬsP�� ç��A*�ɬsF]G��t��R�GXJ��9����� �=����]����秶�QQTE������`�QTE�����槶���\\){6��L��y��ɰ�����1�u��L��y���ɰ�uQ����1�`]�ɧ��F]�u�L�ǧ��ɧ�FQT��ɧ�\)ı��G��� ��ï���\������\�������\��FQQ����G�J��J��`QQG��̯_�\-�@-`]6����N���Hu��L����GuQ��NRQ����H`]��uī���Ƨ�FQTM����FQQ�`L�ɧ�u�L��ɧ����ǧͧ�TL�ɧ�uQQ�\){��u�Ȫ���N����O3Jï����uQ�`���ű��ů�ƴn�R��:�P:u�S:��:��:��"����:���`]��������������zN�u�O���RQr��NK�RTO��uQT�r������P&G�L���P&��M֯�Jͩ����RQQT�r����k�����������`�ĸr����k!�� ������t� vTL»?�H�N"���ǧͧ湽uQT�P����\RQT�P����\RQT�P����\RQT�P��k�\RQT�P��k�\`TGXJ@G����t� vTL»?�H�N"����ǧͧ潽uQT�P����\RQT�P����\RQT�P����\RQT�P��k�\`TGXJ����> ��vTL»��?�H�N"��¹�uQT�P��k�\RQT�P��k�\`TGXJ����@GvTL»?�H�N"���Ľ�uQT�P��k�\RQT�P��k�\`TGXJM�M�#��N"����t� vTL»?�H�N"��Ī,�M��ǽ�uQT�P����\RQT�P����\RQT�P����\RQT�P����\RQT�P����\\�K��B��ôëL�R��K��B��ôK�����H��O #��*�������Sz��s�n�O���֧���֧] ��Sz��s��O����*���� ��S ����C�L�I��]����P�O���������P�,����������S ����C�L�I���I4P�O��,���I4���S ����C�L�I��Om2�O��,��Om���S ���3.��̩����P̩���u�SH�A���IH���O*e��SN����n�O�N���S�-��C�L�I�O��,����"�����SK��B��ô����98�i������98�i�u�S��[��̨�̨�� � R����J�¹O*eJ�  �MKɴì��&K�N�DK���`T���J�[��M��������uQQ̨�� �G�RQQQ����98�i��b�98�����X����\R�����J�[��98O� �RQQTL�98�y�O� ��I4��J98�y��u��G�����98�i��b�98�M���98�y\FT� J��FT���*��J�쯵�`]��R�L�ëL��,��Om2��,���I4P #����������uT��N�DK���,��Om2��,����"��PëL����ëL�\�ϧì���%���L��-����L���)���L�����R�™����A ��B�������<�� A�R�������P����������P�������L�������H��ݧ���ȪH�v϶�o�R�T�ͧ��D���R�T�ͧ��D��\){A1�� A�D���蹧�F]A1�� A�D�U蹧��F]A1�� A�D]���¶uĩ������?�������'2�`��T,����������\\){� A��ũ=��u�������P�����H⧯����0��L�� APL����vϧ�a�M��B�9G��=�����#  �#�����P��;�>������RĻ?��� A�,���K�M����ǧ��\){0��L�� A* q�����u�������P�����H⧯����0��L�� A�� qP���_�8�����I� B#�LG�vϧҸ2�#��� A��ũ=��O����PM;�KP�⭬Ķ��Rİ A��ũ=�M���=������\`]Ū�� ��� A����������¶u�������P���G�� A�������������ݧ����k���v�L�0��L�� AP�0��L�� A* q�������uT���G�����e��Ķ�����'2�\R��QQ�0��L�� A�\F��������.��i/��RľO���D��Ū����]6��]L=������™������E�/�2VO�E�/��S�������ë��QQVO�ë�Ê�S�������=�Ƶ�QVO�oM��b��S���������N�O�Ʃt��S�����������P�O����S�������H�QQQ�»��G�-�H⹟���ë���H�u�=��N� ��H�RQQQ��QQ��uT���N� RQ�L�NĻ��G�N� �uQQTO���R��-�N� �QT���Ū���ë��ƩN�`���Të��t�N�\\RQQ �\){�������ǧ��uĪ��E�/��ǽE�/���`QT=���DZH�H⧷ǽuQT����DZH�RQQTL»��G�NĻ��G��DZH❛�Ʃ���G�N����t����G�N��u�Ī��oM�秷ͧƝ�QQ��b��ͧ�\R�TO���-��DZH�`�QQ�H`���`QQ�`ϱ�ϧӯ�� ���������թ�Ʃ���,A���ϧҳ�� �ìPOH�>���ϼϧ������PO��,/��ݧ�O�����I��ݧB������MX�E���ϧ����P�����I�����2����|���eP��ί���I���ݧB�K�ϧ_ί���IȪ��OG �ݧM;��X�Ȫ��@���� �ì��ϧB��ݧE��ݧ'����ݧA���ݧ� @��ݧ��G ���# ������#����ϧE�� ����ί���I���B������PB���:�ί���I���ϧ���5�2B���#��# ��B����=�X�o������ϼϧ�ů>�E�� ����<"��P�������<"#����M;�K2M�����E�� ���# G�/��0��P���ί���I���ϼϧ��ا�����W��ا�Χ����V����J�Χ�βݧ�W�����֧�W�������Y������Y�����ݧ��X����Χ���ϧ�������ݧ������������֧��֧��������ڧ��ا�W��������Χ�����������������Yݼϧ������Χ����ҧ�����������������ا�����������������ִ����ڧ��V��֧����ԧ��ؼϧ������Χ�������Y����֧������Χ�ا�����ا�������Y������ݧ������Χ���������ϧ���������Yݧ�W���������������������������ݧ���֧���������W���ݧ������������ݼϧ��֧������������������W�����ا�����W��ا�����ا��ا����������������Χ��ϧ��ا�����W��ش)������n�F]M���H�ZR�uϧ��ƧW�����6���ͧ_��n�ݧ�_��O R������Ķ��O���>�噴n帯�FQT�M�X����uQTM��P���O�����噴O \F���y�� ���Rľ��0��E���3=����ɧ�4��ɧ�,��P�6�Nu�E���3=����ɴ�,��Pӯ=������u�E���3=����ɴ�,������2����u�E���3=����ɴ(N �(N��2���u�E���3=����ɴ(N �(N�͸����ԫũ��ԫũ��ԫũ�ά�L���M�(ONR�L�G���:�k�uT����6�N�uQT�ï�uQQTOH��#������`��L�G�Lԫũ��ԫũ�ά�L�������ӯ=���ǧǧǧ�`�QQQ��ũ�ԫũ��Jੳ=�ȯ����G�L�u�Ĵ3�� ����G����ũ�\RQTOK�uQQT����LIӯ=���ɺ����ʧʧʧʝT����LI��ɺ�������ʺ������������������֝T��B��G���R�Ĵ K��QT��,�\RQT���0aQT�CQT��QTO����ȧÏQTO��A�\F�N�;�R�y���y�� ��˴�4�R���PE���3=����ɴ�4�F{�6����4��uĴH��6�N��PM�(ON`&^K��U���B����y�� �$�ʱ�ëל��SE��"A �ƺ0A�,��$ʜ��S��Gw�͔QQVO ����P&E=����RQQV ��MU�x�d���$״����;�Uj�������x�;�Z���$����;�Uj�������x�ƪŪ�$����;�Uj�������x���Gw�����;�Uj����QQQ��x�����N�$����D��;�Uj�������˼�L��ܪ��@>�n�R��RSL��ܪ��@>��"X��ϧٷ0� ��]��RSL��ܪ��@>��t��tuSL��ܪ��@>�����P��P����uSL��ܪ��@>��,Aȯ�Ɖ�,Aȯ��uSO��N��PO��N����M�<�ɬR�ı����,a�ǧǺͧǺͧǧǧͧ͹ʧǧʧͧ�槱�ʧ��ʏQ�OD|����N���?��̩��I�����>����ů��\F]G�����X���I ���RĪ�R��RT����,��J�Ƨ�����ç̵��P�Z��������\F]G�Ȫ��(�O�RĪPİ���,��J������ȶ軯��̵����Z��賫��踯��\){G�Ȫ������RĪPİ���,��Jǧ�Ƨ����ɧ̵��P�Z�ͧ��������\){G���X�L����O �����������RĪ�R��RT����,��J����ǮƧ����ɧ̵��P��歧��槳������\F]G���ɩ��9H������ ��RĪPİ���,��J�\��>�� �X��Z�����P̯��ȫɧũ���\��\){G�������=������E�/���H�I���RĪ�RT��RQT����,��J�Ƨ����ɧ̵��P�Z�Ȫ������X�\F��ï����dű?�̸Ů�� ��GR�™�G���u�S�ï����dű?����0���GʼnG�u�S�ï����dű?�̸Ů�� ��P�u�S�ï����dű?���� ���͹�`){G�y���I4���R�GXJ��� ��|�vTL�G�������֧ǧ�ΧO������է����W���اǧ�D������P��^O�����R�Q�����G����R����Gź�ͱ� ���M�A'����QQ�G��R�����I4P&�������R����O�����H�*���G\RQT�P�k�R�T�����G����R��QQQGź�ͱ� ���M�A'�����Q#���R��QQQD�I4P&�������R��QQQDO�����H�*���G\`TGXJ� HL �vTL�G�������֧ǧ�ΧO����R�QQQ���է��R�QQQ�W���اǧ�D����R�������X���������֧ǧ���է���ԧ�W���اͧ�D�����������P��^O�����R�Q�����G����R����Gź�ͱ� ���M�A'�����QQG��R�����I4P&������R����D�����������R����O�����H�*���G\\��o<����0G�O�ⳒR�™�G��u�S�� l�P(u�So<����PEu�So<������ ��� u�So<�����ɩ�����ɩ�u�So<����0G�O�⳴o- ��o�u�So<����0G�O�⳴(�(�ľ��0�̫���-�����`�������������������������������������������������������������������������������������ϼ�ϧ�ɬsP���5<�����������������������������������������������������������������������������������������){�� ��F{��Ũ���^� �BE�J0G�O��v�QD� yJ����޴$$ǺG��F]��� �*�ɬsR�o<���u�Ȫ���N �(�o��Ũ����uT(�:� �RQT���I����� ��oG�/� �`QQTo<�����(�H����� �ۧ �\F]����,�� q(uo����,� qRıb�o- �蹧� ��FT�b�(�#�`]A1��� �o- D��GR���uĩɩ��� ��Ϲ�,�� ����:�k\`���*�ɬsP�� ç��� �*�ɬsF]������ J��G%�=9�ïG�G�F�������������������������������������������������������������������������������������ϼ�ϧ� ����������������������������������������������������������������������������������������)Ĭ�]G�� Ʃ��o- �G�R�L¬ɧ�Ī� �o- ��ٴ�� ���˽uT���P�MG��"��,�� q���\F�����]G#��M���G����QL�(�!ź32��y^����o<����G ��˹��ϛ�!ź32������y^����o<����G ��˹��ϛ�!ź��D�y����ϛ��((�ze�(#������QQ�(�¨⳹��ϛ�İ /���ɩ�X���\`� ������G�O���⳱GR�� ������G�O���⳥°�⳱���G�O��S ������G�O���⳴B��P��PB���u�S ������G�O��N�G�ūa�O�G�G�O��S��G������o���^��i��bN�J��������������������QQQD��ȯg���i��bN�J�������������������W��鲝QQQDïGy��i��bN�J�����������������ֲ�QQQD0����i��bN�J�����������������ֲ�QQQD[�ūa���i��bN�J�����������������F]b�c�����⳱G�O�o���u�B��+cI�ۧo���FT��⳱���G�OB��+o- ��o���\){G�G���⳱G�ORĪ���i��bN�J����������������FQT��B��+m��(ۧo����TG�G�O���b�c�����⳱G�Oۧo���\RT� /���ƪ���2GPW� ���0G�OP� �N���Ω�L�G�����������������N���|��I���L�B�o���s�N��L�G��\))���(��G�@�R��d���� /��� /u�Sd��GDO��6�U�������#�� ܩ�O��������������uĸ�����ı��R��HL �Ʃ�U���G���ƺO��������t�R����� /��� /�#�������\){������������uĨ�� ܩ�O������#�������FT�P�k���#������Ƨ���GD��?s\F��,C�HI�ô���HI�ñ�IR��RO��N��P�uO*,A�n�O�� ( ������Ê�,C�n��YN�� � u�,C�@ŴE=��E=���HI�ñ�I�����R�uĭ�Ȫ�L�HI�ñ�ĭ�:��Ĩ ( �¾�,C�HI�ú���`�QQQ��O�����ĭ�:�����Ĩ ( �¾�����\uTL®��O/����ľ����Ĩ ( �¾�������uQT�Ķ����O��������O/������T����O������HI�ÝQTOH��#�I�ñ���`��OH�ۧ�O��������O/�����\RS!���HI�ñ�IRQ�M�^����ɬv�QV �ï�K�JΩI�ô��v�QVt��HI�ñ��R�QV��ë���R�QT�©u�QQTOH��#�I�ñ�Ĵ����b����`��ĸ�������,C�HI�ú��[����������b���������uQ�����HI�ñ�Ķ���J�HI�ñ��`QQQ��� ��cIRQQQ&�Y���¹OH��#�I�ñ���`�D�O��+���������^����f�Ĩ ( �¾��N�����C�����QQV�����f�Můɲ˝QDG�L^E=�E=����E=���Ĩ ( �¾��N�����C�����uQQ!��� ��HI�ù��`��?����n�R��z��s�n�O�] ���֊�Sz��s�ëL��¨���Sz��s��O��e���S ����C�L�I��̨�̨u�S ���3.��̩���O�����̩�����S ����C�L�I��G � ��PG � �u�S�?�����Ʃ��P��P�Ʃ���u�S�?�������Ȩ��ů�«ů�������� ��R����J�¹�ů�����`Q�Ʃ��+ RĻeP���`]�����O� �ëL�uĻ�O�uT���� /��� /�O�FQTëL��O�\){�ëL�Rı���.�RQQ�����O� �RQQ��RQT̨��,��̨��1&Ʃ�ȯ8����˝̨��,��̨�O�0�HRQQG � ���,��G � �`]���uĭ���̩��ëL�^0������`E�|)]#Z����̩����ëL����^0�����D̯M种�`��G��#ZF�F�xXN�-ȴ��:�.�Rľ�xXN�-ȴ�  D��O�y�B����e�����OOJ��:�.��`]��:�.�yu�L�[�^y�yR�QV��y�B��y��uT��eP[�RQS�MKɴì���OJMKɴì��[��uQS�K��ì���OJK��ì��[��uQS����d�OJ���d[��uQQ������vQS�����+��:�̨�OJ����+��:�̨[��uQQ������Ѱ���vQS������Ѱ��˺n��d��OJ������:�.��n��d�[��uQQ�� �� @��̨vQS�� �� @���+��:�̨�OJ� �� @���+��:�̨[��uQQ�� �� @���vQS�� �� @�����Ѱ��˴��OJ� �� @����G�L���[���\��:���n�R��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P���`N��L�o��L�� /�F� /��ҧ-ȧK>=��A�����Ы/�ݧK�����۲F��ϧ]M�������[�#������ ��b��Z�� ��Om�){"���:^@G�Ԫ��Z��,�𵻻���/�=�����`r�����[����-�urzNRT. �r�����P&;��4��5�������ɬ��r@�k�ɬ���@G�[�\`���G��^�b���+����|b�L|���2�.�ʲ���F]�̨�Om2�u�ϧ����B��ç��������B�W"�OOX�K�N�X�R�ϧ����� �R����.�������[��_¾�軪�����E�/��M�FF�������?�����NEK�R��d�̨��4�̨u�S������?��?��u�S������?��ȯ���ȟ�~g���ضEK�Ū��,#4 ��,�-ɬuȺ��W���ҵ����1�R�o- �PKGM�uTOH�ۧ-�KGM�`Rĸ�(- ��uTOH�ۧ-�k`Rİ"�������P[�uTL�M����4.�¨4 u���Q��4.��������ߧ��#4 `���Q�[��QQNEK�T�+�4�̨�հ�ضEK���� ��/�[��#4 ��,R�����Ū��,�QQNEK2���U�QT��B�NEK�RQQT���. Ĵ�NEK𵻻�NEK���M��`�Ĵ�����çNEK�\RQT�:����-��Ⱥ�"�������NEK�\`]���NEK�R�&Ʃ�UŪ��,R�#4 ��,uV��Q��Ū��,QQ���R�#4 ��,��������u�������ضEK�^Ū��,QQŪ��,R��V�4 ��,#4 ��,R��V-�QQQ:�k��`�j�ƶ������q�@-��R�™�H��PH��)�QSj�ƶ������PG�)�QSj�ƶ������q�?�?���������F]ze���@-��R��ze��ze���@-�������ze�`T�@-���ze�uL�'������RQQQ�·��2_�u�����_��QQQ��[��MR�QT��[��_��2�K��M�����o��������˽�����`�QQS��������o��������˽�2�K��M��`QQ�����uQ��RQTO��"RQQ��A'��L�uQQQL©2Ī��D�G��,�ñN2ľ�G�����L��������2A'����2A'`�QQQ�_ľ�G�@-�������G�M���L�`�QQQ����G�@-�������G�����L�`�QQQ���P�E�/��G�@-Pľ�G�M���L�\R�QQ�����A'�u�^�2��R�V�O��"�·�K��'�����2���2���K��M���K���\��,��������`QQQ^�2�D��@-���RQQ�z?��\`]=�Ƶ�R�@-������q��ɧ@-���u�b�_@-�����q��ɧ@-��ɹ����`��ɴ��]������F]�]�����R�ϧM���Ƨ]�����RD�ɺM��O���k��R���>���ݧO�������O'�X�Ʃ����R����P�t��P�k�v�[�u�MB���O'>z�k�#�o���[�\)������������������������������������������������������������������������������������ϼ�ϧᵷ�P�I�X��������������������������������������������������������������������������������������){O3�G ��R��uĭ�O3�G ����`]�IH�M�R��u��+�IH�/�����`&K��^��HPѲG��²Ȫ���e�K���!����!����!���G���R�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���ŵ����n���=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�޲��˼D�^K��U���}�ʲ��˼D�^K��U���}�Dz��˼D�^K��U���;��s}ߴʱ��ײ���˼�H��N�ۼD��P�Ѳ����˼DK��P���,�ܩ�����ů���̵5�$h����������(���G��QS̩��I��ů�����<��$�QQD(���G��QS-�����̯������ ��̯������ �״����F]��Z���wʱ�������ֲFO⵪O���,�ܩ�����ů���̵5�O�̵5��QQQ���̩��I��ů�����<�QQ�¶�<����F�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ�˼��I^�eJH�Z��IvQV5� ѲիM�ӳ��-��ܩ��� �X�ì���H�Z�ବ��Z���F���ϧ�êP�O�P��y�E�@����W�������ũ�ȩN�G������ϧ��n��G����� ������1O� ����9O�����ů����mK��@Ũ���ů���FT��������ů�����G`]�ƧGR��:�e������5��G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\�{������������w���������v! p��� ���?��G�L����X�W��=�s��:0�s�ȩ����v���%��� �E�������������v�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì����ϧᯭ�������֧zeϧ�� �X����O�L ���I5����R���eP&O�L ���I5��P&�����R����D�=���IP���I���O�L �������R!��N�N�� ���}�ǜ�QSj���B����=��Xw7뜛QSz��s}뜛QSj���n��A'���$�딾��eP&K�^K��U� ���'��w㲹���R� ��MU�G�̵5�$Dz��F{��ɱ.��x�� �$ߴ����������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{��ɱ.��x�� �$�h�ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�d���A��B��P��������ʱ��������v! p���=�s���٧W���A���֯��PO'v�a&yJ��֧�NH����%��� �E����d���A��B���v!���U���}���QQSì���ƪ�7栛QQS��êOJ�ߴǜ�QSG�L�����+�5�ܸ�}ǜ�QSj���n�������w״��ʜ�QSE���N��<��OJ״�$ʔ� ��MU�x�E���w�$放E���^���J���+.�v��A[�^����W��Ƹ�ȶ��F{��R@����/�[.���w޴ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V���Q�%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQS� �<��(w״ʔ���eP&K�^K��U�̵5��̵5�״�ǜ���QQ�C���油���R� ��MU�x�̵5�ߜQQQx�=9�O0w��QQ�Sx��C����QQQx���M��wߴʔ���U������u�̫�����U�����̫���u�G�U�G��u�̫���G�U�G�̫���u�̵5²G�̫����F{�j��� W����:w޴����������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%��=�I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴�͔���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛�D ��MU�x��C���望���x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz���R�QD���c���^�������U���X��׿����F�ϧ���@�ӯ�0,��� ��P�e�B���������Ұ ��ϧ�NHݧ�V���h��NH��ϧ�������P�e���"�M��ϧz@��"�Ȫ��NH�Q�Y�����_��E�����Na��ϼ��Q�ì��%���ȴ. �� �������رh��ϼ�ϧΩ�����ا�e���G ��2Ȫ��Pȯ�ƧW�����MW���ϧO�I�X�E�� ����-��ê��Q��L�O⵪O2�. ��L���ȧ���O����ϧB�_� <���#����I��G ��2���Na�P��G ��2������J�Χ�������ݧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO��ϧ����� ����QΩ�NaW�����������������Z5������������@���P���NH�){�E��Y�;��0�LR�$����������v! p��ӳ��0�L����O30���B��PW��=�s�v��%��� �E����@ӯ�0,��;��0�L�v�a&yJҰ ��Na�V���hv�V����ì��%���ȴ. �� �������رhR�V��G ��DO0�R��M�x�Z��Jh��v���U�����d�u�̫�����U�����̫���u�����/�D�I�R!���U���}�ʔ� ��MU���H���Gȯ1wײ��F&W�����@�U&�eJ�+�������M�̨v�QQQD��C �d�̨�����˹�D����U��+�������ɬ�̨��˼���(��M�,�R���6�Ud��n��������6�P�O������¿������P��P���u�Sd��n��������°ۧ�ë�ۊ�S��(��@ʼn@�u�S��(����������b�HL �R������G�O2HL ������v�u�b�_�@ź.���DHL ���HL �����u�L�HL �G��bΩL ���+�M��Ƚ�uT�ī�E�/#�L ���ʝ�����#�L �b�HL��\RQT@ź��[������DDHL ����#�L �`QQT@ź=�#�L �\F]@i©������u�L¯�ë��uT��+@i�������R���©��ۧ���\RQ�`L�Y��P�@iĴb�L|���2�+����|J��(��ɬ��JY�Ʋ�uĿ���e���RQQT�ۧY�ƨ�THL ���ɬ\F��ϧì��%���ȴ ����I �� �B��E���=�����׺�ͺ�ʺn������������'����ȶ�{��=�ȯ��2�$���v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�$ʜ�QS��z@l��-�w��ǔ���;�U�̮����̮������>P�;����J. �������ל�Sj�̮����̮ ������>P�;����J. �������ה��������P��O ²�陴ze����O �@��X���v��QQ��貱�3����N��̫���ūH�̸ƴM���O����Ա������鲹F{�B�:���O*,Aw�$�v!���U������$ʜ�QSj���( �}�$�����QSO��N�$ߴǜ�QSO*,Aw�$㜛QS�MI�����K�B��P�$���ʜ�QSd�E�'�+H6���7ל�QS���ߴO*,A� Xw�Dz��)R� ��MU�x�d�ŵ?2�ޜQQQx*�����Q�$��߲��)Vï��UxXN�d�ŵ?��)V��eP&K�Q&d�ŵ?�����Q^ŵ?�P&YN&ze�^�����QJ̨v���������<����PQQQD��R�����������Q���R�����������=�|�o"���R���eP&K�^��U�������4 �������QQD���U���4 �� ��QQV ��MU�x�d�ŵ?2�$ǔ��Dd�ŵ?�R��^ŵ?��R��S&��U�������4 �������Dze�R��QQ&���BJ��4 �� �� @��M�̨v��QQD����J��4 �� �� @��ŵ?�v��QQD��<����P��ê�� �R��QQD�O4�L�O ��O ���M�̨�QQ��QQD����U�O ������+O ��̨���V�O����� /���R��QQD���R��QQJ��4 �� �� @��M�̨��v��QQD;��s��I5��P&��G�I��̨���D�����˹���F�E���LB���ū���=9��G�,���:R�ҧzNW:�� Ʃ2�ì���=9�#q����v���6��RE���LB���.��ŵ?K��.���]��.��(�6�P�O��BE�����R�����G�,���:��=9��G�,���(�P(����.��=9��G�,���:R��������zN��P�:�� Ʃ2�=9�#q��Ī�#��0����R�]����P�2B�M�<�a:������P��O3MR=9�#q����Q���Ԫ����c��BE���P���� �|���v&����(�Ҷ(����ȯg���BE����������R�]���Ʃ�u�L�.���::�]�����uT����+=9��q���RQT=9��G�,�.���:�Ʃ��.���:\)�ϧ]M��t�O�N"������PH �H2�Pk]����?O2��u����R���蹧�FQ?O������d��ضEK֫����RıNEK蹧k`]����N����R��������t���KO��2�?�O�������?����ũRG�O2_=9�#q����v��u��?O����`&�������PѲ��3�ȱd��Q�7ߴ��v�QQQ��I���״״�v�QQQ��I���A����������v�QQQ��I�d��GQQQ�$�v�QQQ��I�̵5��O0��Jh�Dz�˼�;��I��B����� �3�O0R�™�̫��������u�S;��I��;����eP��P���ľ�N�;�`]� �3*eo�ç�e��ɪGXuĪ��ɪGX���FQT� /�������'�<� �ɪG�ݧ���� �����FQT��RQT� /������ �3X��ÝĮ���*e�o�ç�e\F]b��ɪGXo�uİ /�������X����O/�<� @G�P�?�������e��FTMB��������� ��H�o�\){� �3�O0oO0u�L©ɪGXb��ɪGX�o��uT����e�H�O0�Ļ?�A�����e`QQT���ۧ�ĵ �3*e�o�R�QQ���O'�R�QQQ�b�Ũ����çO0��Q�b�Ũ����ç�`�QQQ��R�QQ��ɪGX\`]�_�����uĪ������E�/���`QT� /���������O0��oM�y��Ʃ��FQTL��O0�oM�y�y�Ʃ�����uQT� �3�O0���o- �y�ƩoM�y�����e�O0\`�H��N�ۼD��P�Ѳ����˼D���P�Ѳ����˼DK��P�‘��QQ}ߴ��(�����C����QSů���n�QQQ�7��(�����C����QS̵5��Q�״��D(���G���FO⵪O���,�ܩ�����ů���̵5�O�̵5���F]��Z���w״ʲF�Ʊ����ۼ�0�Q&�QQ�,�ܩ�����ů���̵5�RQQDZ��QQ��Z���RQQDK( �����:��5GP_ů���vQQD����Jì���%��� �E��,�ܩ�����ů���̵5�vQQD(��^���%��� �E��,�ܩ�����ů���̵5��QQD�QQѲ�Y�a� @���NHv��QJì��%���ȴ�Y�H�L��� ���$ì�����F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴ(��L��̯Ũ��Iū��R��Iū�ӯ�L ���O��2�ƨ�v�¨� l�P(u�S��ůɴ�ʼn��u�S��ůɴ?��I�܉�ܹ`��ϧ�����L����)�ϧ���ھ�'>�M@-#⳧MB�� ��⳧��O ���){c���L�����R�֫�Ƨ�c��PKL2����v&��ܺO�����RD��ܺM�t����ʧ���ʧ��FQD��̯ܺŧ���R�u�Ȫ���Noĸźo- ��uT(�:�o�RQTL¨�G�J�����ا���է��Pv��QJ��W���اKL����P����������JR��QJQQQ���Ľ�L�����M�t����ʧ���徾M�tϲ�uQQT(��ɩ�o��\`�K�K'����������?�R��R��n������������=��*�OZ�R�uī�������ë�\��O⵪O��"A �ƴ0A�,�����F�"A �ƴ0A�,������O��i��ȫ�* q�ۼJì����j�. �>��ȫ����C��ì���ବ��W���`{�Ʒ�wʱ��������v! p������L��թ������C�v���%��� �E���ɰ����Ʒ�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQQ�ϧ�êPZ�������:��O� �A�MH�s�ƧȪ�ì���MG�3����ì���R�QQQE��[:�[:*O�$�����ߜ�QS[:�(��,��w$ǜ�QSz��s}7͜�QSì���ƪ�7�ߜ�QSN@>}뜛QS̫��ɴH��L��H��L��.�J7㜛QSN���$ʜ�QSE���N��<��OJ��ǔ� ��MU�[:�(��,��w$ǜQQQx�N���$ʔ� ��^ëL��Ʒ��n��.��R�_Ʒ��n�R����Ʒ��n��F{�E���N���I3��$��v! p���=�s����4���YN�v���%��� �E������5+�I3��v�a&yJ�Y�a� @���NHv�V���Q�%���ȴ�Y�H�L��� ���$ì���!���U������ǜ�QSj���B����6�QQ�$ǜ�QSE��4����+�Ȩ�̫������}״״ǜ�QS�ɰ� �P�QQQ�״�望QSE���N��5����7Dzu�QQQE���N��<��O��h�ǔ���eP&�Q^K��U���}�Dz���R�QDK�Q^K��U��R�QDGQ&K��U��R�QD�N��^K��U���R���HPѲG��²Ȫ���e�G���G���R� ��MU�x��ɰ� �P�$$ޜQQQx����ɰ� Qw7�QQQE��ɛQQw�ה��M�x�Z��Jh��v��I���O�L ����F{�O Awʱ��������v! p��O �Av��O A������E��)V�&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)VK��U���}렛QQSì���ƪ�7�뜛QSz��s}���QS@���w�7͜�QSd�ì��}$ʜ�QS̫��ɴH��L��H��L��.�J7㜛QSj���B����=��Xw7뜛QSE��G�I���,�zN�$7͜�QSj���B�����O w7㜛QSj���n�������w���ʱ����ͫ��ë��QSj���( ��$ʱ���Dz��)V ��MU�x�d�ŵ?2�$油�)V��U������)V��eP& �I^_O A�n���)Vd�ŵ?2�R�QVŵ?�U&f�O Av��QQV��U�������QDze���R����D���BJO����"+� @��O A�̨v����D����J� �� @���v����D��<����P���R����D�������˹�F�{��G��x�� �$޴ʱ��������v! p��ҧԩMXN�� W��=�s�p�H����Ȫ�쪿���ݧ�<�ݧڷ�v���%��� �E�� ����G�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì�����t�M�xXN���Fϧӯ�� ���ӽ����ߧ�����ǧ����I���?�i�������K�ϧ�ϧ������PO��,/��ݧ�O�����I��ݧB������MX�E���ϧ����P�����I�����2����|���eP��ί���I���ݧB�ϧK�_ί���IȪ��OG �ݧM;��X�Ȫ��@������ϧ �ìPB��ݧE��ݧ'����ݧA���ݧ� @��ݧ��G ���# ��������#����E�� ����ί���I���B������PB���:�ί���I���ϧ���5�2B���#��# ��B����=�X�o������ϧ�ϧ�ů>�E�� ����<"��P�������<"#����M;�K2M�����E�� ���# G�/��0��P���ί���I���ϧ�ϧ��ا�����W��ا�Χ����V����J�Χ�βݧ�W�����֧�W�������Y������Y�����ݧ��X����Χ���ϧ�������ݧ������������֧��֧��������ڧ��ا�W��������Χ�����������������Yݼϧ������Χ����ҧ�����������������ا�����������������ִ����ڧ��V��֧����ԧ��ؼϧ������Χ�������Y����֧������Χ�ا�����ا�������Y������ݧ������Χ���������ϧ���������Yݧ�W���������������������������ݧ���֧���������W���ݧ��������ϧ����ݧ��֧������������������W�����ا�����W��ا�����ا��ا����������������μϧ����ا�����W��ش)����Ʃ��4���L|�F){6���. �R�ɧ�u&ɧ�RD�RD����. ��F){6������ƩR��ɧ�uQ&ɧ�RQD�RQD�������Ʃ�FT��ɧ���QQϧW�o>5N"RT6�������ɧ�\��K��B��ô98�F]b�98�@G*��G�,��u���@G����98P���=9��q���ݧ���������P�����v�L�Ʃ�98�@GvQQQ@G�b����+=9��q��Ʃ��uT��RQT�=���+o��L�Ʃ@G�Ī����M���@G�SuQQT��Ia��+�J���\\){�98U��{���y��wʱ��������v! p�����X�ؾ�� ����v��%���4 ��E�����X��v!���U���}ޠ�QQSj���( ��޴���;����J���v�����;�j���[��̨��QQQj���[��̨w7��;����J������������P��O ²��X��ǿ��H�Z�u� ��MU�x����w�ǔ����^K��U–������0��$�Ͳ���R���U������b�;� �u�c����bU���OL�H�u��b�J�b�F�ϧ�<@���� �P����� �PW�5���X#�P�M��6��F]6��=��������R�G��ɰ���ɰ�u�L�I������Q���G���������QQo�R��QQQ���G����TG���������Q�D�G�������R��QQQH��G����oM��G���������QD��a�Q�G������\RQQQ�������T�Z�����������> ���G��ɰ���ɰ���uQ��Ī���������RQT� /��쯵����G��ɰ���ɰ��İ /���f���M2���G��ɰ���ɰ�`QQ�������`]6�����G�>�����R���ç���1�u��o���>����������RQ����1�`�����c�M��R����c�N����ϧN��-��PB��mK2ũW�����c#���"��ePoMX�GPR����c��ȫ��FT�O⵪O����c���FT�O⵪O����c�O FT�O⵪O����c�=��XFT�O⵪O����c�?��ø��FT�O⵪O���`]�ũ��ë�����R��ë�����O/�ȯ��X���O ��B�� �N����ҳ���ç�ë��X��B���� R'O�o"���#NHݧI=�P���N�0M�PB���EKW���4 �ݧG��R�ȫ��ݧ��������O�ëgB�b�ï�Ƨݧ���X#s��P��ï�ƧMB���?PEKR�P�������� �'O�EK�B�� ��P_�J� �ݧ�����P� �����#�����ë�����;�u�����+�ɪG��J����e�`QT���c�?��ø����ø��J� �N��FQT� /���ë��X����O/�ȯ��X���O ��BĻ+�Ũ���+�ȸ\`]"�M���R�K���R�RQ� /�����c�M���M���FQQ���c�=��X�M��FQQ����i��bN�J���������W��������c��ȫ�ƺM��`QQ���c��źM���RQ���c�O �M��FQQ� /��̫���?����`QQ���RQl�ç��"��RQQ� /��9�����"�#��������� /����,"���� /���ɪ<������i���ɪ�\`]M��R����Z�X�����C��0/�v�u�M���F]�_�u�M��������Ʃ���M�O3F]b�M�R���3P�#X������>M��O3�����P���X�B��O3v�M��O3uR{�ŵ����I�I,����`T���O3M��O3FQT��RQT]�������I��O3�O3�M��O3�ŵ��`QQT�X�t��ڻ�ŵ���ʧ������I��O3`QQ��`){O3�M�R���3���#I2M��KEK�M��MB#��ů��R�B���G��2�M��O"�Z�v�M��O"�Z�M��O3u�=��[�b�M��M��O3�uT9a[�RQQ��\���������H�M��O"�Z�'>�嵰��ĸ�R�QQT� /J�в��T���`�QQQ�O���[�O3���QQRQQ��\�������İ /J���WᲝ��\�������İ /J���ֲ���\�������İ /J����ֲ����XFQTO���b�M��M��O3\F]GI�R����P��-ȧO3���PO3X���#I2_���?�R���<����N�ů���O3�M��v�M��O"�Zu{�M��O3-ȧ̫������ٶ���4��3���i��M`T�GI���O3��¹O3�M��M��O"�Z�M��O3\`�xXN�-ȴO*,AR��xXN�-ȴ�  ��O�y�B����e���SxXN�n��_��PM���OOJO*,A�`]O*,AR����X�ؾ�� �����|�v�yu�L�[�^y�yR�QV��5<ܩ2�y�B��y��uTM�M��J�NX��O�ç�x�-��O*,A�����FQT��eP[�R�Q������ش���OJ�����ش��[��u�Q����d�OJ���d[��uQQQQQ��Ѩ�5<ܩ��˴��OJ���y��[��u�Q��Ѩ�5<ܩ��˴ì���OJ���y�ì��[���)�QQ�K������Ѩ�5<ܩ��˺K��d��OJK��������y�K��d�[���)�QQ������Ѩ�5<ܩ��˺n��d��OJ�������y�n��d�[���\��,�ܩ�����ů���̵5�R&ů�����0�����P���R��ů���Pn��ľ��0�j�̵5�����-���J�5�ӯO`]��?s�����?su&K( �Ĵ����?sb� p���B�X`QD��"�Ĵb��"���?sFQDA��Ĵb� �����?s��F]O�������O����u&���"�����ȫ�ε�"����O����FQD���������>���� �!��������D�������u�Q�������ȯ�����'�/����ȯ���O3PB#��v�QV]���Ĵ���?��L�"��P���/�A�b��/�A`�QQV�IH*���/������u�Q������A1���A1�y!��������ï��²������ ƫ� ��:#���2@G����������� ƫ� �B�m�v�QV�IH*�Ĩ ������\�粽u�Q�*��*e����e�B��ɩ��!������� �����,���ï����QQQA1�A1�����F�QQQ��e��e������uT�ľ��������İ /�ū�-�����i���ɪ�`QT��,�M�<��ľ�e�������� ƫ� ��������H�>�����`QT��+M�<��A1��ȯ��P��������,��ɩ��FQT��e�����O3��L������\F�B���O �ȩ�.��ëL�R��z��s�n�O�D�u�Sz��s�ëL��ëL�u�Sz��s���P�u�S"A �ƴ� N2��P� N�u�T"A �ƴ� N2�ȯ�ƻ=�P��Pȯ�ƻ=Ȩu���Q6�K/�P��P6�K/����SB���O �ȩ�.������P��P���Ȩu�SB���O �ȩ�.���t��u�SB���O �ȩ�.��P��P�u�SB���O �ȩ�.��ȩűO �ȩűO �� ��� R����J�¹Jੳ=��W�����FT���J��:�¹����+�:�ȩűO ��ƨ\R�����J��t©tٶ�uTL©t�O���ĩ��t��tٶ��uQT� /����tJ��tٶ�J��tPB�J��t�O����������+��� ��t�O����\R����J�3�MO� Ļ N���ï ��&�3�M�R������Ҹ�_�����`T���J�=�M¹J�êP�P��=�_�����FT��� J��FT�����*��J�쯵�`]��R�ëL������� `K�#��s��.�Rı���RT� N���/&6�K/�*�R���T���6�K/�+�6����6�K/�*������QVȯ�ƻ=�U�ȯ�ƻ=�+M, �>*������\��R���ѓ�����˴H�Zu�S ����C�L�I��Om2�O��,��Om���S��������C�9��O �.������������L���R�S��̫��������ѺL�����䨫���R�S��̫��������Ѻ�����`��ϧԩ�=�s��I������-��PB�O�L ����� ݧ������� ���ϧ���ůɩ2��������ů�9HP���#ï��232��������PB��O���ϧK�,K2�W�"�H�ۧ��I���O�L ����F�H�ۧ򵶮�Ʃ���D�I���ůɩ�F����L���]GI��LuĻsRT� /����<���L��FQT��̫���������Jx�L����\��ѺL�����䨫���]GI����uĻsRT� /����<��#���FQT��̫���������Jx��������"�\��Ѻ�����){�ì���ëL�R��,��Om2�ѓ�����˴H�Z�ì���ëL�`]���uĻ������GI�*�����۽��L����GI���F]���H��O ��������d��O F�O*,A�M�R�¿����������-ɬ��u�SO��N��n�u�SO��N��,B����-ɬ�<�Ƨ�����������-ɬ��F]�������⵩��⵩�¹F]���O�O��N��n������OF��ϧի��s�����L��=�s�ze�#� ��P�P��ů�L�o�/ݼ�ϧ�Ȫa�3��1�@�M�����.�N�_�3���"��ŵ?�����ϧ����M�Pë>�ũN�@���� ��L����ϧì���%�K>=�������L�E��;��s�ze�����+̨*���ze�]��ů�L�������J︩�M�ů�L����ů�L��+����������F],B��u�O��N��n��:��`],B���uĨ���� �O��N��,B����� <>�B���`]KO���uĨ���� �������`){Ʃ�O ��u�O��N��,B��Ʃ�O ���`]3����0H���,B���u�O��N��,B��3����0H��,B���`]H��=�|�X��=�s������'O�����v���%��� �E����C�-Ưv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U����C�}�DZ�Ŕ���U����������u�̫�����U�����̫����N��)V�f&@�,���R�V�b����D��F{�M��a�$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QS���dJ7͜�QS ��}h��QS����}$͜�QSz��s}㜛QSì���ƪ�7ǜ�QS����w״ǔ� ��MU¨��dJ7͔�G���U��������F{���êOJ77DZ��������v! p���J�����J�������اNE�Xݧ��G�v���%��� �E�����-���êOv��I���O�L ���R!���U���}栛QQSj�EKë�� ƨ�� ƨ�n�����}��㜛QSj�EKë�� ƨ�� ƨ���e}���!�����U�x���M��w렛�Sx����<}ʔ����<��PѲ7�‘��}7ǜ��Qj�EKë�� ƨ�� ƨ�n�����}��㜛�Qj�EKë�� ƨ�� ƨ���e}��㔛QQ}״�‘��}״ʱũ望�Qj�EKë�� ƨ�� ƨ�n�����}��㜛�Qj�EKë�� ƨ�� ƨ���e}��㲹��F{��ɱ ��M�x�� �$ߴ7���������v! p��ҧԩMXN�h�� W�-ȧڶ�ɧ ��M�v��%��� �E���ë�����+�ɱ ��Mv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H��^���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{� ��w�v!���U���}렛QQSj���n�������w��ߴʱ����ͱ�ë��QSj���B����=��Xw7뜛QS� �<��(w7͜�QS�@���ï�$�$望QSN���$㠛QQS��êOJ��ǜ�QSd�ì��w��ǜ�QSE��>@(�����2�$�ל�QSA�,�-+o��wޠ�QQSCN<��P�ʲu�QQQj���̫���̸Ůw�ל�QS0G�O��J��DZ��̸Ůל�QSE���N��5���7�望QSE����ë�������w��7ǔ���� ���Y�F{��ɱ.��x�� �$����DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{����_�$ʱ��������v�VK( �����X�ؾ�� �K( ��v�V��%���4 ��E�����X��v�V�&yJ�Y�a� @���NHv��QV���Q�%���ȴ�Y�H�L��� ���$ì����VK��UR���j���}렛��� ��}�͜��QQSz��s}�ǜ��QQS ��� ��������P�$͜���QQd�����wh���QQS��êOJ�נ����)�QV��eP&�ɪ��R��QQ^�������U���ì�������G���޴$$����ì������Я����������ì��������G���޴$$����ì�������Я������߲���R�V ��MU�x� ��w��ǔ�V ��^ëL�����M�ëL��.�R��D �I�yJ=-ȯ�����M��I��V��HPѲ�����ɪ��²Ȫ���e��ɪ��� ���H�Z���F����c�� �N��ŵ?��G�M�N"Rľ�C̩��ȩ��FT����c�� �N��ŵ?��M�N"FT�O⵪O���c�� �N��ŵ?��G�?P��PG�`� �M�O2 �Pë>#���"DM�O�v�L©�4 ��O0G�G�O0J[�ūH�����Dz�Q �P�M�� �P��4 ��O0�uT�Z��D� ��������RT��� ��RQQQ�D��QMB���˝Q��oM���DM�O�\Q����`�Lɩ��n�R��d���1��P��P�1�u�SLɩ��H/�|���� ��PH/�|������ �Z��RĴ�Z���1��O⵪OJ��� ƫ���̨�\]���� ���RĶ1��O⵪OJ���`]���� ��� J�F{���� �Z��G�Jԩɩ���Z��`{���� �����ū�-�J�������Lɩ�E���� �|���b�����F{���� ����0���E�P�Ѳ���H/�|��F]��#ïȱ��uĸ�RT� /�Z��FQT� /��� FQ�� /�����ū�-�\){�����®�2�� �ɬu�o���񧮷�RQ�H/�|İ��H/�|����aɬ`QT�ïȱ��\){�_�����u�L�E����G����Q�� Lª� �Ho2I���u�QQ�ī��� ����ç�� ��������˲`����� �`��bPĪ���� R��ĸ��������QT�������`��e��°�u�QQT��ɪG�������P��`�b�G �����u��Q�Ī��e�ɝ���O3�e������P�J�߲���CN<��\RQQQo/P���b�G ����b��QM�� /�G��o/��uT���L®�2Ĩ��0���E�PE��uQT����2�� �M��Ĩïȱ��\FH�ۧ�M�Y*��MF�9��������� ��Rľ��n����FT���n���ɴ�����FT�O���D��;�KS򧱧���񧺏ľ�N�;�`H�����O/��� �|�D> ���F]A������2·u�L���� L���RQQS���������"R��Ļ�� ���/��ɹ��� L�����ɽ ���/������ɽM���/��`��Sʧ�u����uT���ʧ������#����\F�ϧ�X�X�X��Pë@�����������P����W������Ǽϧ�X�X�X�����-�2B��?����t� ݧ@�����_���]A����·����uTL�-ȱ��.ī��>���.���=��������ǽuQTO��.�����A������2Ĩ@"P���ǧ���\��-ȱ��.�\){���� ��R�����R�座�R��򧩷��R����R�����R������R������R�屧�R�����R��A�A�����R��. . �˽�ϧ�X�X�X��P�P�#��� �ïL�ӫ����_�#��ů��缂��.��y�˴���������A��� ZRľ�N�;�FT�O⵪O��n��������®ë��۹�ľ��0�µƴE�O�=�������ɬu��ƴE�O�=����� Z�թ���� Z�թ���� Z�����O3X�1����_��O3X�'K��L�O3X�'Ko2į�k�O3X�'K����Q�O3X�'KJK����`�������O3X�1�����������R���QQQ�O3X��1���I�������Q���O3X�1��������R���QQQ�O3X�'KJ��I���-�ȯ�Ʋ����Q���O3X�1�������������W����Q�� /����<���A����� Z�Ȫ�O3X�'K�J�O3X�'K�Q ���թ���� Z��ɬ���T�O3X�1O3X�'K`�A��� Zթ���� Z������ç ɽuT� /��ԫ���2թ����� Z���=��X�W�Z����FQT����ë�\�{��P�$ʱ��������v! p��֩�P�� �|��_�=�s�p���v��%����'��ƫ�E��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���( ��$ʱ���͜�QSj���n�������w���ʱ����ͫ��ë�� ��MU�x�d�ŵ?2�$�QQQE��"A �ƺ�<�$㔾d�ŵ?2&ŵ?�U&f�K�v��QQV��U�������QDze�^���BJ� �� @�����̨v����D����J� �� @���v����D��<����P���R����D��������R��QQ^f���v��QQV��U����������QDze�^���BJ� �� @������M�̨v����D��<����P�3���"�R����D�O����� /���˹�F{��ɱ.��x�� �$��ߴʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��j�O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�j��� W���ɱů��Ʃ��wߴʱ��������v! p��ڶ�ɧ ��_W�������v���%��� �E���ɱ W���ɱů��Ʃ��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���Jì���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ëߔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����L����� /}Dz���R�QD���c���^�������U���X��׿����F�E������ �� A�Rľ��0��E������ �� AP� A��ľO���D��;�K�b��� A��=����u�� A+��� A��`]�¶u�� A+��`]b�u�� A+b��`]Ʃ�ũ=��u�� A+Ʃ���`��,C�n��YN��M�������Ȩ�M��������G�L�R��R�,C�n��YN�����G�L�����MP��P���M�u�,C�n��YN�����G�L���IP��P�I�u�IK���5�P�O�O������ɹ���M�������R¾󴰫���M��R��o/RT���M+H�<����oM�G�LFQS��M��RQ���M+H�<�������G�L����F�R��(�P��ľ»�������C�9��O �.��,�`+H�*��C�ۧ��F]GI¹,�GI�*������`]G���,�G��*������`]dU�,�d��O JK��`E�|R�L�EKU�ާ�ǧ����׊Q�������W������EK�FQT�X�M��I,EK����E�/�EK�\�F�ϧ���O⵪O|�������d��e��P��M;�KP���ϧ]�W����9ë>���EK�_��Pȩ��ݧM;��X��ϧm�X����Ƨ]M����){�xXN}h���������v! p��ҧŵ?2B���K���-2��B#������ë������O�v��%��� �E���ö:�����xXNv!���U���}ʜ�QSj����o��}ʜ�QS�/��/}�㜛QS�/��/�������}�㲹R�QQQ�@-w���ל�QSj�. �>��>���/���P�h��ʔ!�����U�xXN�x��ȫ��}ʜ��«1��w޴ʔ�_xXN�n�F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������㱿�Ÿ���ޔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛��� ��MU�x��C���望���x�H��Z��w״ǜ����x��� /}Dz���R�QD���c���^�������U���X��׿����F{�9(3�$ͱ��������v! p��Ϊ� �ݧ��Gݧ���ȩ�� �P_C�:��=�sv��%��� �E��ó�ê��9(3�v�_MR��I���O�L ����R!���U���}栛QQSj������'�3P�$ʜ�QSd�̨w״望QSz��sw��!�����U� ��� ���̩����3.�w��ǜ��¨ȫ�Ʊ�}�ǜ��·C��ǜQQ��Qx� ��w״딾 ��^ëL��M�.��F{�;��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���� ��MU�x�d�ŵ?2��QQQx���QQQ�$放d�ŵ?2&ŵ?�U&��U�����;���.����QDze�QQ^���BJ� @���+.��̨v����QQD��<����P��ê�� �R���QQ����O����� /Q���˹�R���^]���&�e�����\��d����R���U�����;���H�Z�u!���U��#Z��C�R�QQQj���QQQ}ߠ�QQSì���ƪ��J7h��QSE���N��<��OQQQJ״ߠ�QQSE��E�5 �������dwߴ��ޜ�QS ��������QQw뜛QS�ZB-��Q�$�$Dz�)����ϧYN���C�R�QQQO��N��Qw렛QQSE��E�5 �������dP�$ߴ������F{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V��%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�h��QSj�'�?�����M�}��ל�QSE���� ��:A �L��}Ͳ�R�QQQK�-�����3���w��㜛QS����}$ה�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H���O ����P�R�QQQDM����P���������������R�QQQD0������R�ϧ��� @A�֩�����ԧ ��_�P�����[��#����R�O �0�����R���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{�-ƯJ�h��O�����v! p���Ư��P��B��ƪK���-2B���fK>=�|�X��=�s������'O�����v���%��� �E����C�-Ưv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U����C�}޴ʱ�ë딾��U����������u�̫�����U�����̫����N��)V��eP&]���¾�C�E�'���R� ��MU�xf�$�ʲ��)V�f&@�,���R�V�b�Z������F{�j��� W���ɱAP�$ߴʱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����wߴDZ�ë뜛QSj���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U� ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{�E��O3wʱ��������v! p���.��W�O3X�E�+�����������@-v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQSj���( ��$ʱ���ǜ�QS ��}�ǜ�QSz��s}7ǜ�QS���� ������$h��QSd���̫�w�油�)V ��MPQ�S�x� ��wߴ�望QSx�d�ŵ?2�$油�)Vï��UxXN�d�ŵ?�u� ��Q&ëL��E��O3�n��.��R�d�ŵ?2&ŵ?�U&��U�����d����QDze�^����J� �� @��̨v����D���BJ� �� @���+M�̨v����D���J� �� @���+M�̨��v����D��<����P��ê�� �R���QQ�QV�O����� /����˹�)V_���ƪ����E��O3�n�R��b�J�b���v���eP& �I^������F{�Z����G ������-�@-�����J�V������\){�����,A���ZH�Z��R! p��ҧ�=�s��,Aȯ�ƧW�]MX����5����ɰO�>�[������@-�v���%��� �E���,A����ZHv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����(�^yJ���vQQV���%��� �E���,A����ZH�!���U���}ޠ�QQS���c���d��4�w�油R�QQQj���[���O���$h��QSd�̨w�望QSj���B����Yw�ǜ�QSE���N��<��OJ״$͜�QSE��[:�[:*O�$���������;�U�1����d}ʜ�QS����,A��G2�$͜�QS�������=:}$ʜ�QSj���̫���̸Ůw޴ʱ�ë望QSE����[�ūH���J״��㔾��¯ZH����-�u� ��MU�E���wߴ�放E���^����J����.���F{�� }$ʱ��������v! p���� ���W�M���v���%��� �E��M��⺄ v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رhv�V��G ��DO0R�VE�|P�ҧ�M �* N����Χ���!���U���}렛QQS ��}�͜�QSz��s}7ǜ�QSd�D�����ȊS�ZB-�MG��4 ��������D�¨4 �����������Ű�ũ�����M���R�L�GIĶ�ȝQ������M���ʧ���ʝQ�����ũ��������Mũ�����M��uQ���#��򧷨���ũ��\F]��<�X����H�����<�X�����H�\){#9L���F{������#9L���`]����z#4 �����������`{�ï8��ï8���H���tP�ï8����䧶�\�){����&����D�����D������D�����D����D�����D�������D��������F{��HL �Ʃ�P���¾�D���D��`{���HL �Ʃ�P���¾��D��D���`{��VHL �Ʃ�P���¾�D���D�������O�٧�˧�٧�˧�٧�V�٧�V�F]������ū�<�X��ï8�uĸ�RT<�X�ʽ�ï8����G��ï8�\RT������ū����<�X�׽OG��ï8�\F��������ū�Ű����ʽ��c���O�`�ϧ�êP�P]���G�o����,���e�Qٻ�����ȯ��2@�B��Z K���#:���H�<��POM�#�� ���E�����P�e�y�����ϧ�=9��d�Q��?���mK2Mi3�����P��T�=9��d���ϧM;�K2_�<���Oe�#��������ë>�B�ȯ���ů�����CN��E����<��������=9���ë�� �F]Gűo���R�������������o- ��PW�G�[�ūHv�u�L¸Ŭ��QT��i��bN�J�������������Y�ز�Q�Ũ yT��i��bN�J�����������������ز�Q��QQ��i��bN�J�����������������Q�Ű�ȯg���i��bN�J����������������W��鲽uT���Ŭ���0G�O���Ī��:k��Ũ y�����Ű�ȯ8�QQT��R�İ /��ض�s�N���|��I���LP������������������ݧ��������������������������������W���O#����QT��i���ɪ�`�&;�yQJj�0G�O�⳴� ZvQQQD� �BE�J0G�O��vQQQD� yQQ��Ũ yRQQQDQQQQ��RQQQD��ȯgQ��Ű�ȯ8˝&;�yQJj�è⳸Ŵ̸Ů� ZvQQD� �BE�Jè⳸�vQQD� yQQG�JA��v��QT̫���?�����,:���靛��Ϩ���ȶ����è⳸Ŵ������Ϩ⳴��/��谿�������\)�ϧO��P�#4 Gűo������� ��W�Ȫ�0G�O���{Gűo�����Q�������������o- ��PW�G�[�ūH���S���Q&;�yQJj�0G�O�⳴� Z���QD� �BE�J0G�O�Ⳳ��QD� yQQJ��=9�ïG����ͺ���������G���QD���������Ų��QD��ȯgQJ���������Q��F��� �ůI����ŨRľ» �ůI��@ŴoG�/���» �ůI��@Ŵ��P�O������Ɋ�S�IK��E=��E=���#��L�R����űI��RQ����uQQ!�� ��M@-��=�ƏQ���RQQ��3�X�ɧʧםV���ȩ����ů��RQQV��_İɧ͝V��M�L�İɧߝV��M�ů�B��ɧʝV�M��C�ɧ�ʝV������D0M�RQQV0���DO��>RQQVů8�B�� �ì�,���ɧ͝Vů8�B��L���,���ɧ͝VB��ɧǝVɬ����"/RQQV� ƿ�E=���I�N#���s�E=���ʝVE=�J任��T����HL ��RQQQ�E=�J����v��� ƿ�#�L ���űE=��\R��űo/�RQ�0���DO��>RQVܱMKɧ�RQV������������ű����RQQ����������T����uQQQ�����������QQ�������'KRQQQ����u���CJ���v�V��� ��M@-��=�ƏQQQ��L����C�R���m�L���QQQ�� �ì��C�R���m� �ì�\���{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$ǜ�QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��$͜�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{��"X�n���"X�n�$ʱ��������v! p��ҧ�,���W��"X�_�=�s�v!���U���}栛QQSj�;��I���"X�n��j��"X�n��ǜ�QSj�;��I���"X�n��j��"X������N����ǜ�QSj�;��I���"X�n��j��"X�̯��}�ǜ�QSj�;��I���"X�n��j��"X���N��}�ǜ�QSj�;��I���"X�n��j��"X�����ǜ�QSj�;��I���"X�n��j��"X����}�Dz��F���ůɴ��. R�¨��=���n�O��6�Uì��������<�ORύ�.���I4�uT������.�\){A1�ODŵ?<��R�&Ʃ�U[���C�������ȱůɹ˧����L�P�A���R�QQ��C^�C��C˝�����&�����ì˝�����ȱů�^������. G�M�0a���ȱůɽ�˝�����)QTì��RQ�����P[��\����y�˴n�RT�O⵪O�6�U����n�O�]���T�O⵪OO������0���P���0��u�QS����P���u�QSd����0-/�zN�P�O�����ȧ��B��ë�L�ê��@�ì�������=�������+O⵪OJ�����+�� �d������`]�<�LuĴ���<�L`]"���:^�O�<��Jੳ=��=�s�_�����C۲�`]��Ұ����������O <>��u�����^G�L^�L��O �JE�������_��D�����P�"/���RQQT�&G�L^��Ϊ���D���W�����������M�B����Dɬ�@��"/�����O�<������O ��\RQQT��&��=������R�QQVG�LQ&�C���D�����D��M�B�����˝TB��ë�L�ê��@��&G�LQ^� ƿ�ӯ=�J������3�X���Dů8�3����R���QV�O���������۲��R���Q�&G�L^E=�J�ê�ɬ�@��"/����W�����ů�����J�O�A�\F]"����zN�* qĨ��0���Ʃ����zN�* q�`]'�/�.�����0���'�/Ұ����.��\){M��u�'�/�.�FT�O��i��:0-/����.��O��G��MϹ����zN�* q�\��;��I��G��5���C�L�I�R��;��I���C�L�I��P�C�L�I�u�S��G�������?X�������C�L�I���,������O��?X��������ɹb��D� \F]G��?X������� /�'�������RĪP��J���?X������^� J���\F]G��?X������� /�'������ � RĪP��J��� ������?X������^� J��� ������\F]G��?X�����ñO'>���?X������RĪP��J��� ������?X������^� J��� �������\F]G��?X������� /�O'>�O���/��?X������RĪP��J��� �������?X������^� J��� ��������\F�������( ���G�O⵪O��G����`�m�*eJ������( ���d�F]G���( � ���B�M��B����5-RĪP��J�ĭ�����( ���B����JӲ\F]G���( � ����5-�B���B�M�RĪP��J�ĭ�����( ���B����J��\F]G���( � �3NM��B��,�?RĪP��J�ĭ�����( ���B����JҲ\F]G������( � ���M��B�3NM�RĪP��J�ĭ�����( ���B����Jֲ\F]G������( � �����c���#���`��卑�]���?�������O����㽽#���`��卑�����/ç�F��卑����ĸ�� ���GO4��F��卑���H��N�ۼD��P�Ѳ����˼D���P�Ѳ����˼DK��P�‘���}��D(�����C����QSů���n��Q�7�D(�����C����QS̵5��QQQ�״���u�QQQj�O�L �+O�L �P�$���ʜ�QSj�������ú̫��ɴH��L���Qu�QQQ,�ܩ�����;������h��FO⵪O���,�ܩ�����ů���̵5�O�̵5���F]��Z���wʲF�Ʊ����ۼ�0�Q&�QQ�,�ܩ�����ů���̵5�RQQDZ��QQ��Z���RQQDK( �����:��5GP_ů���vQQD����Jì���%��� �E��,�ܩ�����ů���̵5�vQQD(��^���%��� �E��,�ܩ�����ů���̵5��QQD�QQѲ�Y�a� @���NHv��QJì��%���ȴ�Y�H�L��� ���$ì����˼�̵5&� ƫ� ����,�ܩ�����ů���̵5��G��F�,�ܩ�����ů���̵5�R&ů�����0�����P���R����ů���Pn���ľ��0�j�̵5�����-���J�5�ӯO`]�Ƨ̵5�R�����5G����-��v°�� ƫ� �������ا�Ѩ���J�#�����J����� ƫ� �B���GPM��u�Ȫ��O��,���eH�RTL�O�����J�5�ӯO����ӳ� R���MB�I,������� �O�B��M2��G�;� ����uQT����b�?sӯ�/�O������ʝT��ɱM��J�O���:G���?s��&O���� ����\FQQ�eH�`�H��N��R���P�Ѳ��������̫�������P�Ѳ� �!���P�‘��G����w����(���G��QQ�ϧ�K��R�����}��ʱ�ëޜ�QQxXNJ7�����;�UxXN�HI�Ê��� ��}נ�QQQ;�̫?}$벹�F�Ʊ�����R0�^��5�ìEKRQQDZ��Jh�ʱ�������֌��&y�� ���-��Hƫ��5�ìEK�n�R�QQQQQ�-��Hƫ��5�ìEK�x��R�I^_�-��Hƫ��5�ìEK�n�RQQD5� Ѳ� p������اW��=�s��=�s�p��v��������%��� �E����� �ᪿìEK���F]�Ƨ���u�zRT̫� FQT���FQTȪ��O��,���eH�RQTO⵪O���-��Hƫ��5�ìEK�n�O�K��M��QT�O���>��K��M`QQQ�eH�\){�Ƨ����O u�zRT̫� FQT���FQTO DM����P�-��Hƫ��5�ìEK�n�\){�Ƨŵ?2�u�E��̫� �����0�� ��I��b\��H��N�ۼD��P�Ѳ����M�̫�������G�̫���˼DK��P���,�ܩ�����ů���̵5�$��(���G���F]��Z���wʲFO⵪O���,�ܩ�����ů���̵5�O�̵5���F�Ʊ����ۼ�0�^��ì���H�ZRQVZ����Z���RQVK( ��ҧ�J��������#Z�vQV���%��� �E���3�Z������ì���H�ZvQV(�^���%��� �E���3�Z������ì���H�Z�����QV��Ѳ����%���N��� ���ֲ�˼��I^�eJH�Z��I�˼�̵5&� ƫ� ����-��ܩ��� �X�ì���H�Z��F]�ƧGR��:�e������5G��v�u�z̫� �T̵5�\){�Ƨŵ?�R��?2�ì��#Z�v�u�z̫� �T0��T�I\���,C�ūH�o�R��R�,C�ūH�o�������0����o�����,C�n��ï��P��Pï�ƨu'�/�P'�/��]�����"�o�����I�R�ï��+O��i��:��Ʃ�ȯ8矻�o���R�GI�R�A���ϧ���]�����RQ�ϧ���ڧ��������9a ORQ�ϧ0��P�ï��2EA����o���RQ&�ű���J[:�A�%��,CvQD.�:�_�G�J=9�ïG��M��0��'�/�I��\FQQD������G�Jì��%�=9�ïG�ľ0��'�/�I��\RQD���H6��H6���Q�0����o����ϧ�Z KP.�:�_�#�������0��P�:����RTHL �Ʃ�P�'�/�I�����o�����I�\�{�ŵ����ŵ����ë��P�$״�v! p��ҧE�L ����#��s���ȯgë��PW��=�sv���%��� �E�����E���ŵ����ë���v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}���(�����C����QSŵ����ŵ����n�$㠛QQS���ܺ(����h����U������u�̫�����U�����̫���u�̫� ����U���b����������X@/�������u�G�U�G�u���eP&K�^ ��MU�x�����N�$�޲����F���=��'K���n�R��[:�.���u�S[:�(�(�°I(������������ű� J[:��O�%�=9�ïG����׺�=��F]�ŰI�Uu�İI��=����F]��(u��(�n�R�������R�QyDG ��u�Q�ï���yDG ��D�5⵩�CN<��u�QA[��l��� DO�D���`R(�A[��l�����R�������R�Q�ï�����-DG ��u�QyDG ��u��S�Cb�����N���@GD,�����Qt� DO�D���-����'O�ɬ�� ݧů���� ������A ��� ���ɬ���G ��u�Qů�����ů�L��u�Q��A ����=���`R(#�I��R�������R�Qn�DO�D�u�Q�� DG ��D������F]���O/�uĸ�����o- ��ű� \){�M����R��M�P���G�N<�Ȫ���>t�W���>�:����Rĩ���D���y��_��>į���]������O/��[�ūH�v���t��u�M����t�Į��O/�\R���t���uL�CPĸ���¾�M2��_�竧��D�O�竧���������t���uQ��N<�������G�C�\`{#������i�����O/֪A�?@�`]H����#M&0���M�tHo�P�ʽ�R��ú�_ĺ���i�����O/֪A�?@��#������M ��\F]H�����E�M&0���M�tHo�P�ʽ�R��úEPĺ���i�����O/֪A�?@��#������M ��\F]H����#����(N�X^0���M�tHo�P��R�'2ĺ���i�����O/֪A�?@��#������M ��`QQQ��`���ű��L��.��O �R��z��s�ëL��ëL�u�S��[��̨�̨u�S��ű��L��O�����PO����u�S��ű��L��.���IH���IH�u�Sz��s���P������Ʃ�O�0�HR��?�P��O�0�Hv„�EK����u&�#��EKRD3PѲ�/������. ��̨ϧ��IH����ߌD�1İIH���������̽�F]��R�������P���Ч��ʧO�0�Hv¯��u�Ʃ�O�0�a��ʧ���`]��"����J������P���"��v©�"��u�Ʃ�O�0�a���^��"�Ĵb� �����"����`]���*��R�������P���Ч��קO�0�Hv�u�Ʃ�O�0�a���^�J� ���"��������`]�~��*�e�R�������P���Ч��ͧO�0�Hv�� p��u�Ʃ�O�0�a���^��� p���`]O����R�������PūH2���>O����v�O����uĪ�O��������"�K��O����FQT�ƧO����FQTƩ�O�0�a��ͧO����\)���N�z����@Ŵ�?R��4�����Ȩ���P��P��u�S�N��<��O�<��Ou�S(�P(u�S��N�z����o���������?� ��R&B(��uD� �#���RD��#���RDO ��B(���(��FQDz��������#���RD��.�ï�(����ȯg(�Ҷ���F] ɱ����0G���z���z��D#�DG�Ʃï�K����[��u&�ORTH�N<��B�0G�`Q�G ����� ��0G�`QTG �������0G�`QT��z���FQT��FQT��#����R&B�B�0G�FQD� ��� ��0G�FQD������0G�FQDO ��B��?�FQDz��������������z���FQD��.�ï���F]H��������u�<��O�M��J��� B#N2����BJ����Ȩ��⨱�?�⵩���\�ĸ�������D��.�ï�`T(�tC�?� ������FT<��O�M��J�N�X�FT��+H�A���R^ "�Ʃ���Ȩ� "�Ʃ��CRVH6���Ʃ���Ȩ�H6��� "�Ʃ��R����Ȩ��⨱�?�⵩��R�����������������IH�\){�Ia»eu�Ȫ���NO3���O3��e�uT�IH�P�b�PO3\F&�^ ��MU�x���5��$h�QQQ��H���Gȯ1w͜QQQ�C��C��O w޴ʱ�������֜QQQE���LB�+�L��xwߴʱ�ë�ǔ!���U¨�4ï�}�ʔ���HPѲ��4ï�²���������4�ï�����˼���������Ũ� õ��A��X�ëܩ�9G�GR�O⵪O��G���u���������Ũ� õ��A��X�ëܩ�9G�����G���*���N�0M��GR�Ȫ�O]U����=l������&��J�?��N�0M� �%�=9�ïG���N�������QQ&��J�DN�0M� �%�=9�ïG���N�������QQ&��J�?��N�0M� �%�=9�ïG�o��L��˹�uTGXJ��M�Po��L�vQT�P��J�?����*���N�0MkJ �%�=9�ïG�o��L��\FQTGXJ��M�P��N�vQT�P��J�?����*���N�0MkJ �%�=9�ïG���N��\FQTGXJ����M2�:�X�H/vQT�PĶ����*���N�0MkJ �%�=9�ïG�������ë�N��\\���ê���n�R���ê���o����o����ľ�N�;�`]�ɪ�EK����u��M�X�����uT��� /�����T��i���ɪEK\F]�_�����uĪ��E�/�����ǝĩɪ�Jᯧo����,���e#����������ı�/���PʝQQo����O3�o���R�� /��\������N<< F]~g���������ñL���� �>�F]Ʃ������u�L¶���O������|��|��|��|����ұ������Ź���DZ����vQQQzN�P�O���P����O�����uT���zN��RQT���RQQT�/���/çzN�P�`��G�/çzN�Pͽ/çzN�P�`���/���/çzN�P�\RQT���"���Jٶtf����\`]�����?�����ݧ����>�����������O�"���`{�1�����?�����ݧ���1�����������O�"���`]G ��*����ݧ��. G���ⵯ��ͽO����\F]b��XL�ݧ蹧�F�ϧŵ?2����#X�Ȫ. G��ǧͧ�Fϧ�,���ç����PȪ��H���ݧ�����y�`ϧ�M�� /��� /�Jҧ�M���W������P�P����� �ŵ?��G ��#��>�P��1�P�XL`���M�A�M�FT� /�J�P�P���M�A��� �FT���E�/Ʃ�P1��������FQT� /�J�P9����K�MB��M�A��� �FQT� /�Jҧ�M���W������P�P����� ��� �FQFF�9�������ɰO�R�™�����P����������⳴��� �èⳬ�� �ľO���D��;�KS�t����tF]�4Ÿ��¶1(���u�L�����yP�1����1�uT������uQT�t��1�oP�ܪ����yPI���#E��\`]���¶1(���u�L���G�N���H���1�uTo�RQT�t�G#E����t�N#E������aĩt���a(���\F]#�����R���4Ÿ���R��ⵯ����Ho2�`Q�媻�����F�{#������P�H�tP������\){����1¶1(���u�L»����t���G��1��#E���uTo�RQToM��#������P�����������1(�������a�. �������ĩt��#E���OG��1�\\){�t�1(���u�o�RT���ů�秶1��Ļ��G�?����oM�����1��#E������1�FQT@G秶1������1�1(���FQTMG��"�ᵷ���1���� L��1�FQV��a�1�`]�ɰO��ɰ����=��uĩt����O3�G ��^O3P��⳺9���èⳬ�� �O3��⳱9���˧�ɰ�oP�����P�=��\��d�~8�G�'K��o���F]���^;�yJj�. �K����̸Ů�طũ�K�� ZvQQQD� �BE�JK���vQQQD� yJ�����d�~8�G���vQQQD6����FE�|]���^;�yJj�0G�O�⳴� ZRQQQD� �BE�J0G�O��RQQQD� yJ��=9�ïG�����E�������vQQQDJN���y�OvQQQD��ȯg���FF�ѼDyJ?�ͲݼD��J�ݼD������O����N� ��M��O�������uQQQo�R��������O�������������FR��Z����O��������QQL�ūaı��O������P���GDt�Ho2�+���y��Q����P�WO���O�������u��QQTL�yO��Dy������4P����O��Dt�������4PĪ�E����4�����QQQ���+ūHy��4�����QQQ�+ūHy��4�`���QQQ�����E����4�����QQT���+ūHy��������QQT�+ūHy����`���QQQ�ɪ�O��D�ɪ������O��D��u���Ī��ɪ����"���QQS�ɪ���u���S�ɪ��4P�����\R�QQQ��Z�O��"������uQQ���QQo2��ɧ�D���"���R����QQQ�ɧ�D��?���R����QQQD��a���ɩ�`���������G�����`��������󧷨��R����oP�G�J�a�ūa��`���ToP�G�J�Z�J��Z�`���ToPM����QT�#�G��̯_��\����u�Q���H����O����N��# �����`���V��HR�L·�����O������P�oPM���#�G��̯_��\����u�Q���H����O����N��# �����\F�DK( ��իe����� ���1W��ëHͺ�N*�s�E�/���O����N�P�E�/��O� 2�����2̯ŧ�P�1�P�M���������# ���P������̯�ݧ�����P̯ŧ�M��çK?����˼������̨� W�R�³���Ň��Ňu�S���?��:��:����6�U���6�P�O�ũë�������B��������F]��P��+O⵪OJ���`{�Y�ůI2��+O⵪OJY�ůI��`{#���+O⵪OJ����`]b��uĴb�����O⵪O�+O⵪OJO'��J.��\){���@�� u�o���� RQ��M����M��ȨRQ�@����@���RQ��I�M��`]��N������uĴ��N����#�����`]����R�ٻ���>�ç�ɪG�ݧ��N��Ȫ�K��B��P]����-��R�ȪHݧ��N���P�������BE�����������v°�uĪ���ɪG�������P��FQT���N��#�����FQT��N�������\){�ïȱ����uĴ�ï���ٶ쯳K�#�����`]E��R�ӯ�� ���>�B� W��PY�ůI�v�ɬuĴ� ֩�Y�ůI2ɬ`]��iR�������P������G�E�B� W��PY�ůI�v�uĴO3֩�Y�ůI�`]� W����@�Ĵ� W��̨��"\){��u�� W�D�`]�M�u�� W�D�M��Ȩ`]@����u�� W�D@���`�N���H��n��GR�™�G���u�SN���H��n�O�D���G�GR�GXJ���X��ݧ٧��?�vT�P��ǧ�\F���êū�o��L�R��d��n��������°۹���BE������L�RİI4U�P���GI��P�I4P�ŏ�G���P�I4P�ŏĩɩ���PE��y��PE��y�����ëL��P.�ű:�M��ë���ë���H�E��PE��y��PE��y����Ī�����5������`������]����R����L�RİI4U�����FTGI�觰I4P�Ź���FTG��觰I4P�Ź���FTëL�����ĩɩ���QT��PE��yuQ�ɩ��PE��y�k`QT��PE��y���uQ���M��ë���E��y����\R�H�E�RT��PE��yuQH�E���PE��y�k`QT��PE��y���uQL¯��ëľ���ë���uQQ�ۧ���ë�E��y����QQ���\RĪ�����5�����uT��P�ľ���5�����\`�ϧì���%��� �E���ö:�����xXN��=źG��L������������δ���&^ ��MU�x��� /}��v���x�����N�$޴�v���x�;�Z���7͔QQVK��U����w�͜��Sd����J������؜��S�/�J������؜��S���ttt�(����9��sw�͔QQVM��U�O⵪O��(�.��uQQV��HPѲd����²�������d�����M��QQJ�[�����������/�n�����˼�ƪɪ�� ��ȩ�R��ƪɪ�� ��ȩ��AB����.���`)ϧ�������)�H��N��R���P�Ѳ�����JG�����P�Ѳ� �!���P�‘��}ߠ�QQQj���[�����w望QQAB�M�ů�����Gw���(���G��QQ-�������n����w�ߠ�QQQ-�������> ��ܱdw��ʲ��FO⵪O���AB�M�ů�����G����G��F�Ʊ�����RQ��&�����RQ0�^�嬻�C�RQQQDZ��w$ʌQ�I^_嫶�ܩ��n��F]�Ƨŵ?2�u�z����0�� ��I��b\�� ñ��* N�����I���zN����R�� ñ��* N�����I��������u�S��G ����9��@ܩ����[���O�ëL�u�L�[��B�d̨��d�[�DƩ�ȯ8�ܩ�Ʃ�P���uS���B��ë�L��� ��&G�LQQ&0���JO��>v����QV�������R���D��O����O�ëL��[��B�d��RQ�����&�^� �EZ�[��B�d��R�QQVO��ܩ�'KJEZvQQ�VG�L^�C���b�����C���V��������uQ���@-I��,��N&E=�U���ū�������$����ū�������ʽ���QQDGI$ʧ$�DN2�ʧ$�u����G�LQ&�C���b�����C����QQD������R����D0���J�Ũ���v����DB�����uQ����&G�L^0���J�Ũ���v��QQD��������R���QVE=�J�êv��QQDL���R��QQDů�B������RQT9��@�ľ<�L�[��B�d����`������n�R�¨Ȫ�I�P�O���󹟻�BE����:0-/Ԫ����cR�M���#�i��J�5<��A1�FTGI��#�i��J��H����FTG���#�i��J�B�#���`]�BE�����i�Ԫ����cR�M���J�5<��A1�FTGI��J��H����FTG���J�B�#���`]~g��i�zN��u���i�Ԫ����cR�M����uT����P�O��"���M��ǧ�ͽ���zN��\R�GI���uT����P�O��"���GI�ǧ�ͽ���zN��\R�G����uT����P�O��"���G����ǧ�ͽ���zN��\F�G�x�C��4 ��MRľ�-Ư� <������] <���H��o/�����ۊQQS-Ư���<����B�G�QQS-Ư���D��]���QQS-Ư�O3XD������QQS-Ư�. �D��]. ���;I��C�.��� �����RQQQ���C��Cb�ظ��֩��M�F��ϧ�êP@-�]M �Ұ ��;�:����ϧM�<�ܪ �-Ư�����Դ]. ��G�x�C��4 ��Ұ �F]��<��*�������u�B�GG�J�Y����M��J�b֩��M�`�D=��`] <���G�x�C��4 ��իM� �����R!��R�6��RĻ��PŵLuT���RQH��o/������RQT]���@-I�����^� N�DZ<9�R���QV������CD�?�R���QV����������,��R�QS����&]��M�R��QV������CD�?��u�QS��B&��֯��çAv��QQV�Y�Ƨ��<��*������˹�\`��,C����G�L���1�F]��1�R¾�1�R^��_�RV�3�X��RV��*4?��\�ڰN�Ϋ���\�ݧੳ><9ݧ� �#����H �vV��������Ͱ�vV� ƿ�J䩩����O�DM�RQ&��*4?�M �vQD�������ǩ��˹�F�ȳ����R�·���K����̨u�Sų3�O�Ԋ�Sd��n��������®ë�ۧ�ۧ�O'��ì��������O'�9��� ƹ����6�Ud��n��������6�P�O�����`ų3��ů��G,�F]������ԧ���ů���J����4 ������޵�߰����H��V��������㹧�\){���P�Ժ�I�ӳ�����`L®��ë��uĿ���e���RQQTL«�ۧ�ýu��L³���G���G`�������G���G`��<�L��G��Q�b�_���ů�D��D���QQ&������ů�J����E=�J������˝�Q��������Ժ�Զ�������������&�˽�u�T��M�Я�������<�L�QQT�3�ԫ����P��\`TO'�9��� �Db���Uu����Ŀ���H����u��������B�噴G � O⵪O�����QQQ� /�9�� ����QQ�-����O���>��B��d�G � ��O �O⵪O�����QQ��G�u��QQ���I��� �oG�/��-�\uQQV��������P&O �����˼��/N��M�E�R�»/N��?P��P?P�M;�K�6�P����,�H����ç�A������RT�+�/E�J�ïȲFQTl��D]����RQT?+��<�������J�ñ��ݧ����ੳ�#�i���������?��L���L�a�?��Mi3����êﮪ�c���E����?+A����\F]�@��u�L°�����+�M��ȧ�=l���y�QO�+����ɰ�J��ú���������������uT���L�������ç�çO�uQTG�Jì���%���ȴM�E�����.�+���ׯ���v�J�������������v�J��?����������������B��[����*��=ȩ�v�J��?������������zI������oM���?������������t������v�Ho2��\`����(�Z�?R�™�B����=��X�=�u�Sܯ�Ʃ�����u�S���(�Z�'K���H�� �����H�����ƱN��YN����u�L�y���1�W��+������y���Q��� ��1�W��+��������� ��uT�������ƺ�ɪGPYN�������ƺ6�YN�������i/���`QT�������ƺ�ɪGPYNy���1����ƺ6�YNy���1����i/���`QT�������ƺ�ɪGPYN��� ��1����ƺ6�YN��� ��1����i/���\F]O��i��ƫ�ƫ�YNƫ�ƫ�o���u�L�ƫ�ƫ�^����M�,G�� sv��VïGb�_ƫ�ƫ�o�������"�Jů��G,��H�Z�����uT�����Ĩ��O��i�����y�YN�ƫ�ƫƫ�ƫ��Ĩ����[�����y�YN�ƫ�ƫƫ�ƫ�\F]O��i��ܯ�Ʃ���YNܯ�Ʃ���o���u�L��Ʊ���@ܩ2&ïGW��������v����Q�ïG�ܯ�Ʃ���o�������QQQ�0�ܯ�Ʃ���o�������QQQ����ܯ�Ʃ���o������RQQQ��������Ʊ���@ܩ2�����M�,G�� s��uT�����Ĩ��O��i�����y�YN�ܯ�Ʃ������Ĩ����[�����y�YN�ܯ�Ʃ�����\F���ůɴn�R��ũ�P��u�Sl����Ũ�L�P��P�u�S��ůɴ���PGu�S��ůɴ���u�S��ůɴ�G�O���u�S��ůɴ�����u�S��ůɴ[��m2��P���`N��L�o��L�� /�F]MR��5<��G�,�� ��i��v�u�L�L�Pij�HL �Ʃ�U���� ����CR���QD��. ����CR���QDE=������CR���QD�������C��QQ#�4���������:�L�PG�����QQT�ɺ���:��QQT�ɺK������QQT�ɺKů��"����ʝ�QQT�ɺ���İ /��¨�>��\uT�ɺ��GO4��ĸ�����G���\F]"��H����Rĸ�RT� /��ů��G,��FRTG�M��FQT���M��FQT���M��FRT�+��������m��`QTM\��ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴ�/N��n�R��l ��ū��� �ëL�P��P���u�Sl ��ū�H ��P��P��܏ľ��0�,�� ƴë@����ɬR��,�� ƴì���� 0�HR��,�� ƴì������L�3�`){������[�u��ú��N�RıH� �uTL��� 0�aO�0�aĴb� 0�a��� ɝQQ����L�3P3PĴb�3PO�0�H�uQT�H3P�o/������. ��������̨��Į�ú�H��ܺNEK�[�D������̨�� �\F]���R��#ï����W�6���O�0�aMG��"�v�[�u������[�`����c�� �N��ŵ?��M�N"�������F]������ ƫ����R�ϧ�P�P�������� ����PB� �/��� ƫ� �-"IW��P����B�MG���ٶzL�RѲA�9���Ѳ@�A�9�����@Ũ�������J��4���������讪���Ѳ@ſ�������J9���I��ȩ�ƪ��Ѳ@��ȩ�ƪ����J���ƪ��Ѳ��ì��B������F]�ų �@i������R�ϧ���P#ï��2�O'>2����P����e�����5��R�Ѳ��*H���ȳ趯<�����G*H���F]�[�ūH���������R�ϧ���X���� ����ݧ��峳�-�2��[�ūH�������W�?�R�ϧ�N��[�ūH�����W����)S� =��v������@-�������ï���O���JԲ�F{�j��� W���ɱAP�$ߴ$ͱ��������v! p��ٶG��|�ڶ�ɧȯ�ƻ=Ȩv���%��� �E���ë�����+��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQSM�t�AP�$ʜ�QSG�L�����+�5�ܸ�w״ʔ�̫������P��O ²�H�Z���X��濲u��=���IP����I���O�L ���R�QQQ����R�QQQ�򵶮�Ʃ���D�I���ůɩ��R���eP&K�^K��U�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R������� W����wߴ$ǜ���QQ ������YN�$״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{���úd��IN�$�v��%���4 ��E�����X��v�a&yJ����v�V���Q�%���ȴ���������� ��� ��MU�x�'��LP�$��ǔ�'��LP&M 2�R��QQVO0��q� ��²OL�H�&���%��� q����ô�I������� q����ñ�3��OL�H�=9�v�������QQD�����OL�HP�R�������QQD��.�ï�P��u�����QS���.�ï����%��� q����ô�I������� q����ñ�3����.�ï��=9������F{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$ǜ�QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��$͜�QS�@���ï�$�7͔� ��MU�x�d���$�ߔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{�j��� W����:w޴���������v! p��ڶ�ɧ ��_W��:v���%��� �E���ë�����+��:v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R!���U���}ޠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w޴���������������㱿�Ÿ���ޔ���eP&K�^K��U·C��ޠ���QQQE��[:�[:*O�$�����攛��� ��MU�x��C���望���x�H��Z��w״ǜ����x��� /}Dz���R�QD���c���^�������U���X��׿����F{�j��� W���ɱ���ì�����$�$ʱ��������v! p���ڶ�ɧ������#Zv���%��� �E���ɱ W���ɱ���ì�����v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQQ�&��:^O0J���↑ �E���ɱ W���ɴ�����,���Ji����R�QQQj��� W����w�ʱ�ëל�QS ����X�n��͜�QSj���̫���̷�w�ל�QS ���̩����zN�$�ǜ�QS��êOJ�޴ʔ�O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�RQQ���QQV�����OL�HP���R���eP&K�^K��U�d�ì��J�״ǔ��D ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����F{��ɱ.��x�� �$�7޴DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{���P�$ʱ��������v! p������v���%�Ū�ŵ�Ʃ������ܫƺ�⳨v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���UR�QQQj���}렛QQSj���[��̨w7ל�QSj���̫���̸Ůw�望QSj���B����=��Xw7뜛QSj������@�̸ŮJ�޴͜�QSH ��}״ײuQ�QQ�u�D_���ƪ�����⳨�n�R�_�⳨�n�R�̫�����U�����u��b�J�b���v� ��MU�E���w�ޜQQQx�����N�$�㔾��eP& �I^������R��������U���X�������X�������X�X��� /�Ӳ�F{�G,��� <������,��P�$ʱ��������v! p���N��G���I�PW����� ���< v���%��� �E��5EƯ���G,��� <������,�èv�a&yJ�O�>��:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$望QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨J7栛QQSd�ì��J��7ǜ�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{��ɱ.��x�� �$�$DZ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7͜�QSA�L�$�㜛QS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź��v������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱũͲ����F{�����wʱ��������v! p����Vاڶ@-����鵷���V���v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʱ��ǜ�QSj���̫���̸Ůw�͜�QS0G�O��J��DZ��̸Ůל�QS ��� ���̩����3.�}7ǜ�QSz��s}뜛QSj���[��̨w7לQ������}$ה� ��MU�x� ��wߴ�ʔ� ��^ëL�������n��.��F{�d�~g�DZ��������v! p��ҧ�H����0����� �>��n2B��=�s���,��X���������v��%��� �E�����@���+d�~8v!���U���}栛QQSj���̫���̸Ůw$�!�����U�x�;��IP�$렛�S�ȫ�Ʊ���ȫ�Ʊ�}7ǜ��·��⳺���⳱o- ���̫��J��޲��F)�xXN�OH��R�xXN�ze`]OH����u�xXN�ze��t�M����RQ�ĸ�RQTd�~8�G����OH��`QQk�kO⵪O��d�~8�G���\){����������+ƪ����M�wͱ��������v! p���=�s�?����� ��v�a&yJҰ ��NHݧ�V���hv�V��%���ȴ. �� �������رh�ì���!���U���}�ǜ�QQ�ϧԯ��XR�QQQj���B����=��Xw7뜛QQ�ϧ�e��i��?�< R�QQQ�P�͜�QQ�ϧ�����,���e��I�XR�QQQj�M��̺M���w�͜QQQQQSj���B����Yw7͜�QS��� �״望QSd�� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7͜�QSA�L�$렛QQS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź�׺v������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʲ����F{����}hv! p������X���P����A���#�� '5qX�B���X��=�s��W�Ũ��Ʃ������@>�����X�#��P��C�2�����E�ì��%���ȴ����E����ٻ�����O��ȩ��@��ݧ��������@�B����=ȧ����v��%�����E�v��M�x�Z��Jh��v!���U���}�ǜ�QS���w�ʱ��͜�QSz��s}㜛QS ��� ���̩����3.�}뜛QS����}$油���D ��MU�x� ��wߴ㔾��e�R&K�^K��U� ���'��w㲹���R�_����n�R���·���n��F�{�Y�d}7�]�Y�d}7���������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd������?P��㠛QQS�@-��@-J7�״͔��=���IP���I���O�L �����R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5�7㲹x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{� ��}״ʱũ�v! p��ҧ�=�s�ȩ�� �P@�,���v���%��� �E�� ����� ��v�a&yJ����֧�NHv�V��%���N��� ���֌!����RS���}�ǜ� ��� ���n�״ʱũǜ� ��� ���>�}״ʱũǜ� ��� ���̩����3.�}״ʱũǜ� ��� ���H��L�״ʱũǔ� ��M�RS�x�� w7ל�E���wߴ�ǔ�� RS� ���n��RQJ ���>�vQJ ���̩����3.�vQJ ���H��L��u�E���RQ&������� Jì��%��� �E�� ����� ����=ź�ͺvQD����@-�������ï���O���J�vQD�U� ���n�����v�QQJ ���>�����v�QQJ ���̩����3.�����v�QQJ ���H��L��������F{�̵��wh���������v! p���=�s�-�ȯ�ƺ�,�ç@�,��,��X��J���v���%��� �E��B�Ʃ�̵��v�a&yJ������ӳ��NHv�V���%���N��� �����ӳ���!���U���}ޠ�QQS-�����̵���̵����� �P�7ǜ�QS-�����̵���̵���.�J7ǜ�QS-�����̵���̵����,�ñ�� J7ǜ�QS-�����̵���̵�����J7ǜ�QS-�����̵���̵����������J7ǔ���eP&K�^�=���IP���I���O�L �����R��D���U�K��� ���R�QD�^K��U���}��ʱ�ë�͔��D���U�K��� ���R�QD�^K��U���}ߴʔ��D���U�K��� ����R!� ���O0��q� ²��.�ï��&���%�;��I��O0�v��QQQ��QQDy�N��;��I��yD���u����QV��ȯg¾N��;��I�谫ȯg�����ˊ�E���^��� Jì���%��� �E��B�Ʃ�̵����=ź�Z��˺ѻe������@-˲�F{���� �$ʱ��������v! p��ҧZ��� ��#Z�W�M���C������v���%��� �E���ï������� �v�a&yJ���v�V��%���N��� ���֌�(�^yJ���vQQV���%��� �E���ï������� ��!���U���}ޠ�QQSj���B����=��Xw�ǔ�_���ƪ�����ï������� ��MR��=���IP���I���O�L �����R��b�J�b���v�� ��HL ��P&�5�zL|DM�,���QQDM�,�DM�,��R� ��MU�x�E���w������;�U������Sx�d���$�ʔ�E���^���J�b����v����� Jì���%��� �E���ï������� ���=źi��ѻe������@-�v��A[�^����W��Ƹ�ȶ�R�!���U����v��QQ������ش��v��QQ��������������QQDy�� 䲻ï����\���� ���R��QQ�䲻ï����\�d������R���eP&K�^��U�K���QQV���U�K��� �G�� ��QQVK��U���B����y�� �$7�Dz���R�QDG^���U�G�� ���R�QD �I^������F{�E��L'�������ů�� ��������w7DZ��������v! p��G�J�����-��C���K��K��W����ů�� ���@�,�v��Q�� �����̴�FV���%��� �E��ȪH�����ů�� ��������v�a&yJ��֧�NHv�V��%���N��� ���֌!� ���O0��q� ²OL�H��;��I��!���U�E����?��ì�����w$ǜ�QSj���}�ʔ���eP&GR�Q^K��U®:�L'�������ů�� ��w�ǔ�QV���U�G�� ����F����q�����?�F]'K���̨'K�uĴG �����+�J���d���P'K���k��`]̨��'K�̨u�L¯����Ia�+�J���̨�uT̨��d����DƩ�ȯ8�ܩ�Ʃ�P��\{���:'�PҬ����״�v�V���Q��%�6��>E�'���� ����״ʺ�!���U���}�$望QSM9/�M9/�n���望QSM9/�M9/���I�P���望QSM9/�M9/���}��望QSj���[��̨}$ʜ�QSd�ì��J��7ǜ�QS�@���ï�$�7͔� ��MU�x�d���$޴ʔ�_���ƪ����G,��� <������,�è�n�R��b�J�b���v���eP& �I^������F{�ŵ����ŵ��������$��v! p��િçL>��A�����5���W��=�sv���%��� �E�����E���ŵ��������v�a&yJҰ �hv�V��%���ȴ. �� �������رh�!���U���}޴��(�����C����QSE���N��5���7ߠ�QQSŵ����ŵ����n�$렛QQSlP�$נ�QQSd��DM��RDK���RDM�,���RD.��yJ�����ٲ�F]��&���Jҧ�����N���|��I���L���N�R�L�N���A��]�����N��N����N��Qo���*e�⵱o����N����N��uT���o���*eRQTA��N�R�Q�M�X�O3��t�u�QQO3�G ��������o���*e\�N�\����I��d��GR�»�I��O0���PO0��u�S��I�����������u�Sd��G� ��O����u�L�°O2��t� �Ho2ľ ������uT�RQT�ī�O2����E�/�t� \RQQT���L¸���. ����������t� �u�İ /���\�ę�G ���̯_��\��O0���O0��򧸪��\`QQTl�ç�+ح���RQQT� /������ç�� ۧ�IO���"�����X����=�X�t� ���T� /��� �T� /�������"������\`]A1�d��G�O0�¾d��G�]������?��u� �M��O0���E�/�D��?FT� /���\����ԧM� �GX��I��G���`T��H��GX�oɬP� �b����O/�N�\RT� /�� �GX�oɬ��G�\R����L�A��ľA������ /�A���`T �� /�zI����FTO�����`�E��O3�[�ūH�GR�™�G���u�SE��G�I���,�zN��PzN�u�SE��O3�[�ūa��P�u�S[:�.�����G�G�ūH�zN�R�L¸���-��ūH�uTGXJoG�� ��#�ȫ�PO����P��[�ūHvQT�PĨ�[�ūH秸�`QQT�PĨ�[�ūH�zN��GI��\FRTGXJȪ����o���ݧ���o- ���PGI�vQT�P�k��o�zN��GI�Ž�\)QTL�o���^[�ūH�� J[:�A�%�E���Gv�����������k�R���������Do����o����uQTGXJo- ���Pk�ũWGI�vQQT�P�k��o��\FRQTGXJo- ���P��k��#��"���#��vQQTL�GI��zN��GI�Žu�ĪPĶ��k��oGI��\\FRTGXJ����PoW���.�NP#����vQTL�o���^[�ūH�� J[:�A�%�E���Gv�QQQQV�������J[�ūH�G��������Q�����R�����Do����o�����QQ�zN��GI��uQQT�P���R�QQE�/R�QQT����¾�M2�R��QQD_�R��QQD�O�!źCN�G�N�������Q�����o��\\\F�H��N��R���P�Ѳ��������P�Ѳ� �!���P�‘��}ޠ�QQQ� �<��(w״油�F�Ʊ�����R0�^��5�ìEKRQQDZ��}$ʱ�������֌��&y�� ���-��Hƫ��5�ìEK�n���R�I^_�-��Hƫ��5�ìEK�n�RQQD5� Ѳ� p������اW��=�s��=�s�p��v��������%��� �E����� �ᪿìEK���F]�Ƨ���u�zRT���FQTȪ��O��,���eH�RQTO⵪O���-��Hƫ��5�ìEK�n�O��M��QT�O���>��M`QQQ�eH�\){�Ƨŵ?2�u�z����0�� ��I\��d��� ��MR��z��s�n�O�D�u�Sz��s�ëL��ëL�u�Sj�ì��ƪ��H�Z�­���H�Z��ľ��0��̫���?�o���O/�֪A�5ή��L���O3Я���ɩ��������X�O� �P�:��`]���0��u�L���X�O�PĨ�.ۧ��X�O� �PM��QGI���i�����O/֪A�?@��uT��O3��L������,�M��\RT��.ۧ��X�O� �PK�FQQ�0���`] ��� R����J��X¹0��\){� /���X�O� �Uu�L�O� �P���X�O� ��uT���O� �Pʝİ /��ڶ��X�O� ���O� ��\F]���O3�u�L©ɩ���ή��L���O3Я���ɩ�����ǝQG���H�Z*ĭ���H�ZëL��.���� �^0�����D̯M种DO3�O3�˽uT�(��LҬ�ɩ���ɩ����� /���X�O� �Pʧ�ʧ֪A�5��������������FQT� /���Z#�2�0����ʧȪO3P�O3���FQT��uQTG���H�Z*�FQQ������ȶ�ȧ�ɩ���\F�ŨȪ�������ȨR��O��N��P�u�SƩ��M2��P��u�SO*,A�n�O�� ( ������ù�����M�u�!�����R�M�^����ɬv�V�Ʃ���O�©�u��QQQ������������QQ��O�驻��������QQ��������?�R����QT�󧩅����b�������\˹�F]O�������CɧO���HL �u¾@�O�������R^�Y�Ƨ�ĸ������̵���B�O�����V;����C�#�L ��JHL �����R�<�L�O������F]O������@GO����PHL �u�MB���uQQT��MKɩ2��O���������ǧ��#�L ���O�����\){.�u�L�O����PT� ( �¾O������QQQHL �� ( �¾HL ����)QT��6���;�RQQ&��� ���yRQQJŨȪ����yvQQDO��N��ORQQ��uQQQ!��R�¾��J֫ŨȪ����QQ���M����S��J쯵JE�/��O������J�Ũ�QQO������@G��O����P�HL ���QQDzN�C�'�/RQQ��uQQQ�ź�M��J�����-ɬ�O����ĸ������-ɬ�O�����`��ź�M��J�����-ɬ�O����ĸ�������O����O�����`����\�{��� ��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}렛QQS�Ƹ�ȶ�dw���望QSA�,�-+�P�״뜛QSì���ƪ�7�뜛QS�I����:3wޠ�QQSE���N��<��OJ�נ�QQS ��� ��������P�ʴל�QS ��� ���n��͜�QS ��� ���>�}�͜�QS�C�}��ה� ��MU�x���M��wߴʔ�_���ƪ������ ���n�R��b�J�b���v���eP& �I^������F{�ŵ����ŵ����n�$״ʱ��������v! p��Ω�� �@�,�W��=�sv���%��� �E�����E���ŵ����n�v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}렛QQSj������'�3P�$㜛QSE�'���EK��E�'���EK�}�ʜ�QSj�ů����9GL�Ů���̸���}�ǜ�QSj�ů����9GL�Ů�ƪɱ̸���}�ǔ�����"�U������u�̫�����U�����̫���u�̫� ����U���b����������X@/�������u�G�U�G�u���eP&���d^K��U¨��dJ�ʔ��QVG�U��������D ��MU¨��dJ�ʲ����F{�ë�G �wʱ��������v! p���E�A�"#�I��#�_���GHI��v��%�����������E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSd�ì��J�״ǜ�QS���ܺ���G�(�J�$ʱũDz�)��j���[�����w油)���C�Jh��뜛QS���w״ǜ�QS�3�}7Dz�)����ϧ I�0,���������?��9���E�A�"#�W��P[�R�QQQ���⳺���⳱o- ���̫��J�뜛QSj���̫���̸Ůw�ޜ�QSE������������������wDZ�������֜�QQu�_���ƪ����ë�G ƴn�R��D�������U���X�����X��뿲u��b�J�b���v���eP& �I^������F�H��N��R!���PQ�‘��}���(�����C����QQQd���w栛�3�ƺů��� w��(���G�����P�Ѳ�����FO⵪O���3�ƴů��� ����F]��Z���w�ʲFů��� ۧ�Z���F�Ʊ�����R0�^��ů���̭ �RQQDZ����Z���RQQDK( ����ƧB��ɩ��J� EK�vQQD���%��� �E��BŪ�+ů���̭ �vQQD(�^���%��� �E��BŪ�+ů���̭ ��QQD�ѲҰ �ί���I�Na����hv�QQQJì��%���ȴ. �� �������رh���F�O⵪O��»�������C�9��O ��uQQQ��»�������C�9��O �.��,uQQQ���d�������@,���F���I����d�������@,�+�d���O3��R�QQQ�����ɺ������ĵ�ůɴ=9L+���\)�,�GI�*������R&����������P&���U�� �� @������RDŵ?��CU�K��uD��ŵ?��R&f�K�vQD������^�̨m2���ůɴ���M���QD��U������ze�^_��ůɴn�R�QQV����J̨����QQQD�IL��ŵ?2�R�QQV��<����P���R�QQV�O����� /���R�QQV���������_D��( ���R�QQV����������D��( ���R�QQV���BJ� �� @���+M�̨v�QQV����J� �� @��̨v�QQVZůa���˹�F,�d��O F�@�ɴ]=��GRT�O⵪O��G��]G�����GP�PGX��QS@�ɴ�� �LP�O�]=���QS;I����LP�O�]��L�����L���U�ɰ����u�Ho2�/ç�ɰ������\)�ϧ�9yPW�]=�O��N�2��ƪ���I������ϧ�ɰ������M;�KPy]G�]=��GR�GXJ�XL�� �vT�P��R�ĭ�L����R�T6��ɰ�R�QQ��{=�R�QQQ���D���J�I��D�R������ū܊������⵵ɹ�\R�ĭ�L����R�T6��ɰ�R�QQ�{��L#:���N���yR�QQQ�ū���ľ����u�QQQ�⵵���ľ����u�QQQ���R�QQQ@�ɴ?�MH�����D���J�I��\\FTGXJյ�< � ��vT�P��R�ĭ�L����R�T6��ɰ�R�Q��{=�R�QQS±�D���J�I����D���Jūܲ��D�RQQQ�QQQ���ū܊�QQS���⵵ɹ�\R�ĭ�L����R�T6��ɰ�R�QQ�{��L#:���N���yR�QQQ�ū���ľ����u�QQQ�⵵���ľ����u�QQQ���R�QQQ@�ɴ?�MH���±�D���J�I����D���Jūܲ��\\`����G�F��?����n�R��z��s�n�O�] ���֊�Sz��s�ëL��¨���Sz��s��O��e���S ���?�O�0�a��PO��u�S ����C�L�I��̨�̨u�S ���3.��̩���O�����̩�����S ����C�L�I��G � ��PG � �u�S�?����o��L����Ʃ��P��P�Ʃ���u�S�?����o��L���.��.�u�S�?�������Ȩ��ů�«ů�������� ��R����J�¹�ů�����`Q�Ʃ��+ R.�� RĻeP���`]�����O� �ëL�uĻ�O�uT���� /��� /�O�FQTëL��O�\){�ëL�Rı���.���QQQ�����O� �RQQ��RQT̨��,��̨��1&Ʃ�ȯ8����˝̨��,��̨�O�0�HRQQG � ���,��G � �`]���0��uĭ���̩��ëL�^0���/����IH�/�0����`E�|)]#Z����̩����ëL����^0�����D̯M种�`��G��#ZF�F{�d����H�w$DZ��������v! p��v!���U���}״ʱũל�QSj���( ��$ʱ��望QS ��}$ʱ��ǜ�QSz��sw�ל�QSN@>}$ʔ�O �M����4 ��O R���J����.��dv�����;�����U�����.��d�v��QQQJ����.��d��6��v��QQQJ����@źdv��QQQJ����@źd�v���QQQ��  v��QQQJ������v��QQQJ����:M������d���F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧ�êPί��"��1쯭���P�ٶz��L��W��Ωo�I�NH������ϧ]M�2�կ�?���� @���NHݧ���h���ϼ�ϧӯ�� ��Į�����ʧ��X���X�ԫ�P��)���ůɴMR��R'�/�P'�/�����N��L����R��u�L·��i��b������ůɴN��L������uT��k秷��J���\F��ϧΩt�W���-ȧO3P�M�X�����I�������N��L����F��ϧΩt�W����O/�O3��M�X�H�ۧ���N��L���Pk`��ϧ�����/�0M�){�MR�����u�O⵪O���ůɴo���R����ůɴ���,��R����ůɴ�� R����ůɴì��R����ůɴ�ƨFT'�/�GI�`{�L����w��v! p��ԩ�૨çҭ,�.��2� �� �|��_�=�s�p���)V�&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)Vc����bP�&� ����� ����)V��P�����M��)V�������P��O ²��X����ͷ���X����ͷ��H�Z��)VK��U���}ޠ�QQSj���( ��޴��ʲ��)V��eP&G^K��U�E�L �����wޱ�������ֲ����)V ��MU�x��w뱭��Dz��)Vd�ŵ?2&ŵ?��R�QS&f�Gv�QQV��U�����M�G��QDze�^���BJ� �� @���+G��L�̨v���D_d��L�����G����-�R���D��<����P�����R�QQ^f��1��Gv�QQV��U�����M�G��QDze�^���BJ� �� @���+G��L�̨v�QQQ�QD_d��L�����G����-�R���D����J�bv���D�bD�1�̨R���D��<����P����˹˽{�����������Ȫ��$�v! p���������L�����@-�W��=�s�ȩ�� ��v���%��� �E������������Ȫɬv�a&yJҰ �ί��I�N�ahv�V���Q�%���ȴ. �� �������رh�ì���!���U���}�ǜ�QSj���B����=��Xw7뜛QS ��� ���n�h��QSj�'�?�����M�}��ל�QSE���� ��:A �L��}7Dzu�QQQK�-�����3���w��㜛QS����������O���$뜛QS����}$ה�O0��q� ²�3�����%�,ȴ�� �E��-�����3��̺i��OL�H���E���^������� �QQQJì���%��� �E������������Ȫɬ��=źi��v������@-�������ï���O���JԌ���eP&K�^K��U�=���}7�ޜ���QQ ��� ���̩����3.�}h�����F{�'��}ʱ��������v! p��կ��W�ի?�ڻ����P�#�i����� �X�#N2��?��v���%��� �E���,�����'��v!���U���}렛QQS ��� ���̩����3.�}�ǜ�QS ��� ���̨w�ǜ�QS ���nP�$ʜ�QSz��s}ߜ�QS��êOJ��ǜ�QSd�ì��w���QQSd����M������íJ7���QQSE���,M �0G}�ǜ�QS���⳺���⳱o- ���̫��J��㜛QSj���̫���̸Ůw�ה� ��MU�x� ��wߴ�ǔ� ��^ëL��'���M�.�RQQQDG � ���RQQQD���Om2��RQQQD���O�O������R���e�R&K�^ ��MU�x��C����QQQDK��U�̫��ɴH��L��H��L��.�J7㜛�QE����[�ūH���}״��ʲu��QQS ���'��w㜛�Q�C���油���R�_'���MF{�z��s}��v! p��ҧo��aX�@�,�W��Xv���%��� �E��ȩ�>� ��z��sv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ǜ�QSj���B����6�w㜛QS;�J7ʜ�QSA�L�$�望QS ��� ���n��͜�QS ��� ���EK�}$ʔ� ��MU�E���wߴ�ʔ�E���^������� Jì��%��� �E��ȩ�>� ��z��s��=ź�Ǻv������@-�������ï���O���JԌ���e�R&K�^�������P��O �uQQQDK��U� ��� ���'��wh���Qp ��w״望�Q̫��ɴH��L��H��L��.�J7㲹��RD�^K��U���}�ʲ���RD�^K��U���}޴ʱ�ëͲ����F�{�Y�d}״ʲ]�Y�d}״DZ��������v! p���O��� M, �>����PW��=�s� ���v���%��� �E���������3�Y�dv�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}���QQSd������?P��ߴ͜�QSj���n�������w���㜛QS�@-��@-J7�״㔾�=���IP���I���O�L������R�ì�����������J�ð�� ����v�ì����������M;�KP��Y�d��v�ì�������O0��q�����%��� �E���������3�Y�d��=źi�v�G�̵5������J�ð�� �G�O�����v�G�̵5�������/���R�_Y�d���4 �R� ��MU�x�;�Z���$Ͳ�G�̵5��油x�ì�����P��$放��eP^O Q&K��P���H���Gȯ1w7����;�Pj�������˼F{����E����A��}�v! p��ҧ���a@�,�W��=�s�p��v���%��� �E�����E����A��v�a&yJ���ͧӳ���v�V��%���N��� ����ͱӳ���!���U���}ߴ��(�����C����QSj���( ��ߴ���(�����C����QS���E���lP�7��(�����C���!� ���O0��q� �ѲOL�H��;��I�R��QQQ���.�ï���;��I��R���U����������u�G�U�G�u��I���;�U��\��Ȱ�|�\��ȯ�|�d�u�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.��� ��MU»��E���EKM�w栛x�����N�$�����;�Uj���B����O3���F{�O �$ʱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQSj�;��I����E@���@-J7ޱ�ëǜ�QSj�-B+���YN�$�ל�QSd�G � �$7ל�QSd�ì��w�ל�QSE��"A �ƺ�,�� ���$$͜�QS��zLw7ǔ!�����U·C����ë����;�Uj���;��s���Qx��C���$�ݽ�����O ��O3��@-��J@-ٶ���3u���J����dv�̫�����J����̫��v���U�����d�u�̫�����U�����̫���u�_�&�ƪ������˧O ��MF{��ɱ.��x�� �$���$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F������o��L��ȩ�R��z��s�n�O�] ���֊�S��[��̨�̨u�S��ɷ��ɷ�u�S�����'K��i���Pi��u�S�����'K���ê���ê�u�S��������ȴi���Pi������ȟ��ɷ�*ey������\������\����ɷ��F]�IH�ɷ�*ey��u�OGO*M2ɷ�*ey�����\){ɷ��O�0�a»ey�o/u&�����RD3PѲ�/������. ����ɷ�v�QJ�/�骨0����W���|ϧ�ey��\����\��ey��RD�1o/�F��������C��Df��ʱ�����] � R������i ������C��D����f��ʱ���������CuQQi������ȺO�ê���ê��M��O3�G �������C`���QTi����O3�G �������C\FT���J�i ���ê�y¨ê�yuQQL¨ê��M���ê���ê��M��#ê�y�uQQQ��ê��M��R�i������ȺO#ê��M��R���QQTi���������f�ê��M��\\R����J�i �ɷ����ey»eyuQQL�¨ê��L>���IH�ɷ�*ey��ey�uQQQɷ��O�0�a�eyȪ���G�ɷ��������L|i������ɷ�#ê��L>�\\F��ȯ�ƻ=�6���N<���[�( ��R��[�( ���P�u�Sȯ�ƻ=�6���N<���(� ���(R������u�O��"�¯��P���u�To��󧯰��R�QT�DO�������ī��D�źt�����!Ŵ�����O�����D������ī��D�ź98M��!Ŵ98M����������D�5⵩�������ī��D�ź�5�!Ŵ�5⵩�t������D�5⵩�CN<������ī��D�ź�5�!Ŵ�5⵩�CN<��\R���������`]N<���(R�������P���p�(�WN<���v�N<��u�O��"��(�y��������TL«(�(�������u�QTo���#�R�QQT��ĩ�����(`��ī����y(\�QQ��R�� �N<���(�N<��\){A�����(R��\��� �\�ȯ#�PW��Ȫ��4yR���X��"�����I����N���R����G��P��k���Ȫa��X�Ho��v���y��O��(��-ɬ�(�Ī�k称O��(FQQ-ɬ�(RT���O��(�-ɬ�(�-ɬ�(RQTL������G�J��@ X#�PW����\�v��QQQ��yJ�\��JR��QQQ���G���O��(�J���JR��QQQ���G��-ɬ�(��uQQTȧ��ľdP��+ح����������QVdT��"���������\\F]A����(�R������< ���p�(P����I��R�o�@ X��� ����]���ũë������PB��R��"�����ȯ#�PW��4��I�R�����N��v��(�uA����(P(PA�����(`T�(PA���*�uO��"��O��y��(��Q��[O�yR��Q�©ɪGX�(u��QQA���*��y��ɪGX�(uQQQ����y��(�\�QQ���. ol#��\F�����L�G�O⵪O��G����`�m�*eJ����L�d�F]G���?��RĪP��D��?����L����ͧͧ�\F{G���?��RĪP��D��?����L�����ʧ�ʧ��\F{G����"L���RĪP��D���(�LP�����L�����ק�\F{G����"L���RĪP��D���(�LP�����L����ק��\F{G#9L-RĪP��D(N�����L�����ק�\F{G�MtC��RĪP��D?=�����L����ǧǧ��\F{G�MtC��RĪP��?=�����L����ǧͧ�\F����G�F��6���i��0G�赪Rľ�N�;�FT��H �ȴn��ľ�H �ȴ����ľ�H �ȴ���ľ�H �ȴů8�F{Ʃ�0G��Cb&Ʃ�U�ï��<�L���uķ�����-�RD��U�ij�ũ�Dů8@-�ů8DE=�J丸���-�ǽD������D��͹�J����͜QQSij�ũ�D��ï�D�Ļ�yJ� �G�LDů�2������`�QQ�"���ǧ�ݰ���ů�B��QQSij�ũ�D�<�LD�Ļ�yJ� �G�LD�@�D����㽽J"���ǧ�ݰ���B��DoG,M�U���J¹¹��J¹¹�uDů8@-�ů8DE=�J䮮���-��FQD�M������������D�ʟ�ŵ?��0G���u�L�W�RQQT������-�RQQQD��U�ij�ũ�J����������������������������������������������������������������������������������������������������������������JB��"/��,���QSİ�O��IDMK��M�种Dt��ʽJ"/��,���QS�Ʃ�0G��Cb^�ï�J��<�LJ�����������������������������������������������������������������˽J"/��,���QS�Ʃ�0G��Cb^�ï�J�/�<�LJ�����������������������������������������������������������������˽J"/��,���QQuQQQDoG,M�U��?��ݿ.��߰ɜQQ�uQW�`���(��o���F]�����(��F]�J������X�ʫ�W쵲F]��^ïGJì��%�=9�ïG����׺v��M��.��v��ūa�.��v��32^3��GI��|J3��GI�脩|v�QQQD3��GI���O��aQ�3��GI��O��Hv�QQQD3���<����O��a�3���<���O��H���bQ&O�N"��� Jb�O�N"�MW�v�QQQD��|PQQQ�b���|���˽�� ��n�Rľ�N�;�FT�O⵪Oz��s�ëL��ëL�u�S�ZB-����u�Sj�ì��ƪ��H�Z�H�Zu�S������C�L�I�O��,��ūH������S ����C�L�I��Om2�O��,��Om���S� �� � u�S� ���?L���?L�u�S� ��oG�oGu�S� ��'K�P��P'K��������ëL����� �M� �QQQ��,��ūH����RQQQ�QQ�,��Om�`]M���0��u�L�0�����Ʊ0���uT���ZoG���[����1R�QQQ�¹� /��GI��[����QQ�?L����[�����QQ'K�+��[��B��E�/��QQ� /����[�M����`���0��\){�_�����u��'K�+6���MK�FQTl�ç��"�İ /��\R�'K�+��[��B��E�/FT�sM���0��`TL�0���/����IH�/R�QT����i��bN�J���ֲ��oG�]�����0����uTH�Z�����H�Z��^0�0���\��ϧӯ�� ���������������ݧ�J��X֧���)�<�ƴK�Ol���(��L�GR��R��G���u<�ƴK�Ol���^0���M�tHo�P�ʽ�R���$��ú��Pĭ���\F]H�����,:�-��>^0���M�tHo�P�ʽ�Rı��$��ú��Pĭ��ͽ\){H�����^0���M�tHo�P�ʽ�R&�M���$��ú�_ĺ���i�����O/֪A�?@��#������M ��\FQDE�M��úEPĺ���i�����O/֪A�?@��#������M ��\��F]H����#����(N�X^0���M�tHo�P��R���7�RQ'2ĺ���i�����O/֪A�?@��#������M ��`�Q�\)���y�˴n�R���6�UO�*�Z�6�P�O��4�����O�*�Z�Pn�u�SO�*�Z�M��M�u�SO�*�Z��� ��� u�SO�*�Z�����P����`N��L�o��L�� /�F]"��4��:��˽��ϧ�B��B#q�4��){��[�*¹��ϧ��[��� ��9�L2�� ç�,��_�4=��){O*�oɬ���ϧ�NK����� ��9�L2�� ç�,��_�4=��){m��� ���ϧ쵶 ��B�m2���4� ){H������ϧ쵶 ��B#�����M�<��4��){����0�M�¹�ϧ��N0MMB��4������ԧ����RĴ=���+o��LJԫ����X��4��FR�n��M���9���P��4��9������ʧ��ʽ�ϧ�5<��9���P����ԧ����R�M��M����ϧ�5<��M��K� )Tm��� ��ϧԯ3��4� �#���P�� 5��R�n��H���#������ϧΩ����M�<��4��RĿ4n���4��=�����[�*O*���ʽ�ϧ�O�#��4=���F{�� �<����ï�$ʱ��������v! p���,��W��@�ì�������2��� �PMB�����*L���2ȩ�#��v�a&yJ�Y�a� @���Na�����v�V��%���ȴ�Y�H�L��� ���$ì��v�V��G ��DO0�R���%��� �E��� �<����ï�v!���U° �<�� ���Xw7͔���eP&K�^K��U���}�ǔ��D�I���O�L �����R�QD�^K�NK��� ���}�ʱ��Dz����R���HPѲ�²Ȫ���e�K�!���벹�R�x�OL�a&K ������D���R�QQQD����x�K ���;��I����F{���ůɱ� �N2�$ʱ��������v! p����X�ɧ� �N��v��%���ůɴ�� ���v�a&yJ��ԧh���%���ȴ'�?���N��κ��Ժh�����U�����u�̫� ����U���b����������X@/�������u��������U��陴ze����O �@��X����u!���U���}ߴ��(�����C����QSj�����̺����̱��� �޴�ߜ�QSů��"�}$ʜ�QS'�/w�ʜ�QSN���$͜�QSŵ����ŵ��������$���QQSŵ����ŵ����ë��P�$�ʜ�QSE���� ������I�����̫���ze�w��ǜ�QSj�0G�O�⳺0G�O��J��״�����(�����C����QS5�Mܺ���,/�$ʜ�QS���E����� lwߴǜ�QS���E����A��wߴǜ�QSê�I����}�ǜ�QS���E���l ��ūw���������ֲ��F{�ŵ����ŵ��������$�ʱ��������v! p��િçL>��A�����5��v���%��� �E�����E���ŵ��������v�a&yJ���ͱӳ���v�V��%���N��� ����ͱӳ���!���U���}렛QQSE���N��5���7ߠ�QQSŵ����ŵ����n�$㠛QQS�@���ï�$�7͜�QSlP�$נ�QQSd�����ԧW��=�s�vVK��U���}נ����@-��@-J7�ʜ�QQSj�-B+���YN�$�뜛QQSd�G � �$7ל�QQSj���B�����O w7ǜ�QQSj���B����Yw7ǜ�QQSE��"A �ƺ�,�� ���$$뜛Q�Q��E@��Z���wʜ�QQS��zLw7͜�QQSj�;��I����E@���� Ʃ�$$�v��V��;�Uj�����V��eP&K�^K��P�K������RVK����P�K����RV ��MP�K����RV���O ��O3��@-��J@-ٶ���3uV��J����dvV̫�����J����̫��vVG�J����vV��U�����d�uV̫�����U�����̫���uVG�U������uVO ����P&M����P�RV_�&�ƪ������˧O ���� �իM`���(��ɬ��@�R��d��������ë��u�S��G ���G ��u�S�����G ����W���S�����G ���W�u�S��(�������P�O�������DOy�������˟�̯M�Ȫ��R��J�_E�L ����#XPȪ���v�E�u�G ���̯_�G�J������E�'���J����J��E�`�+�]�̯M�Ȫ��R�I�P�+lDE�+E�����#X�`VOG ���F)�ϧ�������������������������������������������������������������������������������ϧિ�@��G ��PȪ�ì���;� ){ê��@�ì��O��a°O��Hu�W�����;���\�ɬ�M���\������������O��H`]ê��@�ì�o;��O��Hu�W�����;���\�ɬ��I5���\������������O��H`]ê��@�ì����O��Hu�W�����;���\�ɬ�� ���\������������O��H`)����c�=��XRľ��0��j�. �=��̧ԯ���� � � QQ�������,qR���Q�ضë�"����ԫ���� � � QQ�ԩ>�R���Q����LҰ�NK�R���Q�Ϊ� �ԫ��F� Qj�. �=��̴��������ԯ��`T���0��j�. �=��̴�@���֪A�H����@��Я@��R����Q����@���eҰ�NK�`T���0�j�. �E�'���=��X�ԯ�� q�`]H��L>�=���L>�uĴԯ���bԯ���=���H�ԩ>��L>�\){M��u�L��@���0@�ĸ�B֪A�H����@��Я@������Q�H�� �>�e�4J���c�=����Q�H��e�4�������c������������˴=���ܲ���Q� <��ڀ��`�����ضë�"����ԫ���J��������������������Q�@���=��.�NK���B���@���eҰ�NK�������H����@��Я@��@���0@�������H�ԫ�������FQ����QT� <��ڀ����uT��Bԯ���b����ԯ���ĴO'>ҳ�Ұ�NK���Ĵ3�Ұ�NK���@���=��.�NK��Ĵ3�Ұ�NK����LҰ�NK�������\FT�ԯ���b����ԯ���H�ԩ>��ԩ>������`TH��L>�J�;�����ȪOԩ>�����FTH��L>�J�;�����3�ԩ>�����FTH��L>�J�;���������sԩ>�����`{��� ��wʱ��������v�VK( ���'��W������v�VK��U���}렛�����( ��$ʱ���㜛�QQSj���n�������w���ʱ����ͫ��ë���QQS����$ʜ��QQSȩ�H�w�ʔ�V ��MU�x�d�ŵ?2�$望��I������ ���O w7ǔ�V��U�����u��D�O ^��J��޴$$nj�Vd�ŵ?2&ŵ?�P&K�R����&��U����v�������K���������QQVze�QQ^���BQQJ�+M�̨v���������<����P��ê�� �R��������*�PQ��R�����������PQQS�������̨��Q�����V�O����� /Q����R���QQQDO�R����&��U����v�������O���������QQVze�QQ^���BQQJ�+M�̨v���������<����P�3���"�R��������*�PQ���R�����������PQQS�������̨������QQD�O����� /Q�R��������H����yP������F�&yJ���O����D��J��D����L�O�������e���uQQQ���[�u�����������[��������[�`�QQ��O����R�Q��R�QQ���.ۧO���Ļ��O�t�o̧O�t�[�\R�QQ���-��\`�DK( ����4X��O����֫� #�4����[��oG�� P��> ���oMX���[����êP�P'G�W��O�X�O����P�����GO4��1 ��Ϊ�?I�B����#��P_���[���?����2�"���ا������Դ���˼������=ȱd�n�Rľ�N�;�`]��!��4��,�çkF]6��Ȫ��,�����1�u���M�X�,��j������=ȴ�,�ô�uQ�RQQ����1�RQQ�M��RQQQ�;�a�,��\`]���ŵ?�������������y���u�L¯�����?K���,�ç�������y����y��uT��H���y��������uQT�H�Ҭ�����y����`QT����ŵ?�������\F]����t��u�j������=ȴ�N����6�t��`]oG�/��A�t��u�L�������t���uTŵ?����J�Gy�Ѳ�����Ĵ[������Jt����\){�I���Lyu�ŵ?����J�VI���LyRQѲ�����j������=ȴ�������������RQJ��.��j������=ȴ��.��(I��`]�����*����yu�Ȫ���NHj������=ȴ� �����,�ýuTL­��-�����-�# ��uQT� /�󧭵�-�R�QQ����2�y�y��������״�`�QQQ������y�y`�QQQ�������b��F��QQT�B�X\\){�MR�٧������ïL�=��������v�����uİ /��ੳ=ݧ�W����۲`����ë�n�R���6��Rd��n��������6�P��P�������Ŀ�����=������R��ϧ��#�����Rd��n����������������ۧ�ۧ�ۧ�ë��u�N��H/�H/�O��ű���"罟�=�R�[�uĴ=���+o��LG��[�\){��O"�>R�©��[���=�G�JO"�>2��J�Ȫ�[��J�[�`QQF]����R�©��f[�����9a���CRV�èƺ��=�G�J���G���N�J����G���N�[�\�QV�èƺO����O"�>�[�FQT=�G�J���M�2���J��\FL�&Ʃ�U�èƧ�ñO��#N�*����RQTH/��Ʃ��ë�-�����Ʃ��J��è�ϧ���4��PũW�RQQ^�������ϧ�����&��D�̫�DȨ�RQQ�˽u{��è�QQQ��è�FT]��ñ�è�QQ�ñO����ϧ�ë�-�ί�Ʃ��PO"�>��ë�-�R{��èƱH�#N�*���ϧ�ë�-�ί�Ʃ��PH���٧��R{��èƗ#�Q�ϧ�W�ë�LݧO3��:)T��RQ��e���RQQ��������ۧ�ñO��\`RF)��L��ܪ��@>�n�RT�O⵪OO��N��PO��N�O�:��QSO��N��H��H�u�QSH6����PH6���M;�K�6�P��u�QS E�/�/�P E�/�/u�QSd���P��Pd��`��ϧ���������������������������ϧ�1��]"��:J�`��ϧ���������������������������ϧ�ë�����]CN<��R�� ƧB��@,��t� #<����t���v©ɰ��G�u�G�J�CN<��ɰ��G�J��`]"�ze����d+������`{�t��R©ɰ��G�uTd+�t�G�RQQze��RQTCN<��ɰ��G��kRQQ&�t�d+̨��t�RQQ�ľt��\)�ϧ���������������������������ϧ�V��Ȩ){�:������u�!�����J�W��EA�B�ԩ��ܪ��Ԫ>۲u!���M�^����ɬv���t�ı��KO��� /�G���QV��ë����OH�ۧ��������b�������ˊ!��RT�t�����F]���O/�����u�!���H��bD���O/��������F��ϧ���������������������������ϧ�� )�H6����]���u�H����D���O/�������:������`��ϧ���������������������������ϧ�5<��.�){'�/���u�O��N��O���O/�������b�L|���2�+����|J.��\){M���u� E�/�/�o���s��������FT E�/�/������ñ���O/�FT'�/���`��/N��?�F]6��M��� R�� /P�ɰO����y�P�t������O����Pt��v�t��u�ĸ�RQL�y�ⵯ��t���QQ�O������t��uQQ� /���G��y�J��İ��G��O�����`QQQ�O�����\){6��<�XR��t� ��ɰ��� /P��ũ���#⳧B��ƪW��� Ʃ2�̯��@�,���v��%���4 ��E�����X��v�a&yJҰ �hv�V��%���ȴ. �� �������رh��ɬ�!���U���}렛QQSj�̯��̯��J�״͜�QS��̸Ůw�ʱ�������֜�QS0G�O��J������̸Ů�ǜ�QSE����[�ūH���}���벹�F{�ūH�wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì����)V̫�����P�����M�̫���u���U�����M���)VK��U���}�Dz���)V��eP�DK���DO0��q� ��J�H�X�ի>��0��q��%��e��ūH��>��R��QD ��MU�x��C���$ʔ��QDK��U�ūHɺūH�J޴ߴ͜���QQQ�C���ǜ���QQQA�,�-+�P�״ײ����F�{����-�����MƱ����Lw�v! p��Ҩ��������=�s�YNW�������#��v���%��� �E��-������i�+�MƱ����Lv�a&yJ������%��������������،�(�^yJ������%��� �E��-������i�+�MƱ����L�!� ���O0��q� ²;��I�&6��P����ˊ����5��^����Ʃ�'��-���������=���IP���I���O�L �����R���U�����G�u!���U���;��sQQ�렛QQSj���n�������w���ʱ����ͫ��ë��QSj���[��EK�wʲ�)�����-��������QQ�$�͜�QS���-�����=��QQwʲ�)��� �<�� ���XQQw״ǜ�QS��êO�QQQJ��ʔ���;�U�����F�ů��O⵪O��G ���G���O�0�H*��ɹ�� �o2�� � �G��ų����ɽJ�M�ݧ��ȫ����� � ��G������9aɽ�ɽJ�W���ݧ��?���۲�� � ���\���G�ɽ�J�s���� � ���a��W��Z���� ��� ���9 ������"�H6��ůɱGR��9 ������"�H6��ůɉ��u�S9 ����6��B�H6��ůɉ�u�S9 ����6��B�H6��ůɱG�Gu�S��G��]G�����S9 ����?����G�ɯ��GR�L�����I,�ǧʧǏQQQ�ȯ���I,�ʧǧʏQQQ����I,�ʧʧʹ�uT�P�CN<9����+ɯ�ۧ���ȯ���`QT�Pĵ�I,�������I,�ǧǧǹ���\R�L�����I,�ǧʧǏQQQ�ȯ���I,�ʧǧʹ�uT�P�CN<9����+ɯ��M �ۧ�ȯ���`QT�Pĵ�I,�������I,�ǧǧǹ���\F]G#�6��ůɱ��ɱGR�L¶"���I,�,��+�"���`� ��ķ+H6��ůɱ���#�����"#��H6���Ʃ��uT�P���#��"���R�QTN�����PG��ɬ��+�����QQN�����P �ɬ\RT�P��,��+�"����QQ�+�"��P �ɬ\`����7���R�쵶 �PB�������Y���X��ƨv�™�[��ɷ��ɷ�u�S��̫������»e��ľ��0�̫��ɴ�����4 ���ҵ�����i�`]�e�������L��R���L������������_Ho�PW���>�������ev»eu��#�ì��%�G ƯZ�=ȴE��� �+������ߺï�����b������*e��B���R��*O�N���n��#��N"������*O�N��P�O�� ç�R��QQQ�O�OH/P�#XL�����|)Q���������������B���PMZa����|��O�N�īP]M�2Rì���%�N�Ȫƪ������Ȫƪ�ֻ������C��ٶZH踯��|�O�N���ͽ�v���*O�N���n���u�L¶�����|P�E�/���*O�N���n��Q����|*O�N�� ����|*O�N���*O�N���n��Q����C��·����������|��Ȫ���u��T�����R������R���9���MZH���|*O�N��R���Q�������|�R���Q�������|��Ȫ���\uTO��"������C���˧����|*O�N�� \��Ƴ���A�i��G��"XR��d��GDO��6�U]G�GX�����SƳ���A�i���"X��"Xu�SƳ���A�i���,Aȯ�Ɖ�,Aȯ��u�SƳ���A�i��ze��t��tu�SƳ���A�i�� �P��P ��������O�oG�/�k`]G#B��XR�GXRT��RQT�RQQ�,Aȯ�ƺ�" �����B�D���������O�^���^=��X����˝^���^=��X种��`QT��RQT�RQQ�,Aȯ�ƺ�" �����B�D���������O�^���^=��X种�˝^���^=��X种��\F]G�O�O��XR�GXRT��RQT�RQQ�,Aȯ�ƺ�" �������O��Jİ�,a�ǹ��������������Oۧ�˝^���^t��&�RQT�MG��"��Ň�W,���ɝQQMG��"秮���\F]���,�R��uĪ�MG��"��Ň�W,���ɽ��ɧ�`]6���,���Ň�����1�u���Ň�W,���������1�\){6���,���0,�� "��R�Ʃ������1�u��֩�0,�Ү"���W,�����Ʃ��������1�\){6���,���0,�R�Ʃ������1�u��֩�0,��W,�����Ʃ��������1�\){6���,���0,��4��/R�Ʃ������1�u��֩�0,��'�/�W,�����Ʃ��������1�\��=�9�ôn�R�™���H��O �O ���_�uĴ=���+o��LJo- X����FTO �o- Jì��%�=9�ïG����ʺO �`){��̱HL R�ΩL P��>Ʃ�P����JΧ�Ň�O����P��Ʃ�ȯ8�ܩ2�v¯�̧��Ʃ��u�MB���RT����u��Ʃ�ȯgƽ�b����y�ƽ��QQQ�Ʃ��\){��̱HL �R�ΩL P��>Ʃ�P����JΧ�Ň�O����P��> ����������t� v¯�̧��Ʃ��u�����īb����y�����Ʃ�������ɴ=����<���̯M�;��GR���ɴ�����P��P������u�S�ɴ=��N�O�6���=��N���S�ɴA��X����u�SE��G�I���,�zN��PzN�u�S�C̩��ȩ��O�D��`){����o����Rľ���o���O3�G ���������̫��������G�o��������\`]�A��X�Rī��^���P���o����`zN��GIA��XF��R�L�N�6���=��N���<���̯M�;�^��H�ZD2�� �D�˝Q���������+. ��=��NN��QO������������+O �����N��QO��O �Pİ�������+O �PN��Q����O �^����P&�D�D�D�D�D��D�O�I�2&�D��D��U��D�D���RQQQ-ȱO �������O ��Q����O���������O ��-ȱO ��QO �P�O��O �P����O ��-ȱO ������^f!DAN��A��X˽uT� �������^��H�ZD2�� ̩ D�D "���̯MD2� "�����H�ZD��FQT� O �P��&�� "���̯M�;�DI�P����D��A���������� ^��0�������ˏT� �O��O �P����O ��-ȱO ������^f��˽���kFQT� �O��O �P����O ��-ȱO ������^f��˽���kFQT� �O��O �P����O ��-ȱO ������^f��˽���k`RĻM��RTzN��G���A��X\���Ѷ��y�˴ R��R�C���C���C�u����P���uO*,A�PO*,Au�Ѷ��y�˴��P��P��������<���-�PCN<��F{A1���-�P!�����¹!��Jᯧ��-������W��P����F]� R�:RS��ѲQQD�:�R���ů��ů˟��IHRµ��u��C����ñ� ����`]���*��R�����u�. �C����*��MB� ����\){������R��u�L°�-�Ʃ�ȯg�G��4ľëL�����J���-����uTO*,A�����������+H�� <>���-����-��\){"�êG���Rİ����������ç�IH`]�������R�ëL�uİ���H��B�NۧêG��ĵ��*���ëL�\){GI��R�uİ���GI�ۧêG���`O*,A�O�*�R�������RĻ�ëL�uT������ۧëL�\�{�ȯ��$ʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}ߠ�QQSj���[��̨w7뜛QSE��4����+�Ȩ��4Ÿ��̫���n�$ʜ�QSȪ��ú�4�3�w͜�QS��G3���õ-�G���wߴ͜�QSz��s}렛QQSK,N����dw�ǜ�QSj�����̺����̱=�����}޴���QS ��� ��������P�$7ǔ���^��U�� �� @����(����b�J� �� @���v�QD���G�LDzO���R� ��^ëL��ȯ���ëL��.��R�M��U�O⵪O���G3���õ-�G�������G3���õ-�G���� <��۽u� ��MU�x�d���$�벹�� ��x� ��w�7ǜQQQK,N���M����dw�ǔ�_���ƪ����ȯ���n�R��b�J�b���v���eP& �I^������F�3����޴n�F]O3�����LR��yuO3�����L�y�CN<��`T�y��W�u����̫�������eG�J������޺y`QQQ��������W�\){N�A,ɨu���> ��,�����ɨ`]��@-U�uę�G ���� �P��\��`]��ȯ8U�uę�G ���� �P��\���`]�󶵷�Uɨu������/����IH�/����ɨ`]�@-��󶵷�P�z����z��󶵷�P��ȯ8�`���Q��@-�`]����󶵷�U�uı󶵷�Pę�G ���� �P�ݲ\){����G��"R����ͧ�͊����G��"ʧʹ�ͧ�͹`T���ǧ�ǹ�ͧ�͊��ú��Pı��ǧ��`QQT�ú��Pı��ǧ��\`]Ż��������O2�u�Ļi�⵩��uQ�����H�RQT��H�⵩���TL��¶1����?�O���K�����Ƨ⵩�����P�i�MB0��⵩�����QQQ��> �����?�O�O��M��K�\��u�Ī��O2�1K����?�O�FQ��oPĻ��1K����?�O���ɨ�QQQɨ\`Qo̧����������i/�����������Y�ʹ\���&��B����y�� ��O �m2��RQ�O RT�O⵪ORQ��B�����O �H�Z��O �H�ZuQ�C��O uQ"A �ƴ������� �uQO� q��O ��C�L�I��PO� q��O ��GI���O R¯���u�L�H�ZRQQT�O �H�Z�GI��H�ZR��0�ľ0������QVëL�R��. �O �H�Z�]�����ëL�)��o�����C��O �O���>���*�?��C��O ��C��C�L�I�������O� q��O ��,��O� qR��QQ���"A �ƴ������� ƺ�,��d��O R��QQ�\uT������O �0��ľ0�H�Z`QT� /������ԧ0���ľ0�H�Z`QQH�Z`]#ZGI���O ^0������`{���y��wʱ��������v! p�����X�ؾ�� �K( ��v��%���4 ��E�����X��v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʲu� � � � QQS�?J7h��������ֲu� � � � QQSj���( ��$ʱ���߲��)V ��MU�x�d�ŵ?2�$放ï��UxXN�d�ŵ?���� �R�d�ŵ?�R&ŵ?�U&��U�������ze�RQQQQQ^���BJȩź�+M�̨v�QV����U�����+�"X�������̨��D��<����P��ê�� �R�QV�O����� /����˹˽� ���ƴ�A�R�� ���ƴ��������������������������� �E= ܩ*���ŧCN<��F{���� �E= ܩ�������J�F]���� �����R&O�����*QE= ܩ*����RD�ɱ���*Q�E= ܩ*����RD�ɱG �*�E= ܩ*����RD�*QQE= ܩ�������RDZůH*E= ܩ�������RDOH�*QE= ܩ��������F]���� ��A������ūHR&OH�*�����OH�*��F]���� �@�ìR�A���A������ūHRQ&O�����*Q�����ų��RQD�ɱ���*Q����ů���O�RQD�ɱG �*�����ONRQD�*QQ�����O�*�RQDZůH*������ê*��`]���� ��I�R�A���A������ūHRQ&O�����*Q�����ů���ų��RQD�ɱ���*Q����ů���O�RQD�ɱG �*�����ONRQD�*QQ�����O�*�RQDZůH*������ê*��`]���� ��A�R& �_����RD@��@�ìRD�I�Q�I��F]b��AR��A�Cu�b��AP�A�f����`�H����-�M����ƨ���?��O0��R��H����-�M���=��X��u�SH����-�M�����<��P�O�H�?��O0����?��SH����-�M���O0��q��PO0u�SH����-�M����ƨ�����M����]�ƹ�����W�������uij�W���������D�f�6����\){H�?��O0��u�L©�P�O0��M�����*���� 8���uTH�?��O0����?��W���������\F]#N��?��O0�����R{��JH���?O0��vTH�?��O0��\��E���EK���:�GR��E���EK���:�P�u�S��G ���G���H���O3&Ʃ�U�G�����N��uĪ����RT��̯_N�FQTy�Ʃ�G\F���ľdR]�L���O3&Ʃ�U�G�����N��uQ���L�2�����>��� ��v�L¯���RQQQ�����uT������uQT�M�X��R�QQQ����uQQT�R��. ��������QTl�ç�ɮ���R�T�Ȫ���G�� /�9�� �\\\){���ë��®ë���*�uĻ»e�uT��H��e��e�uQT�ë���*�e\F]���R®ë���*�u������ �0G+�� ���� ��QQT,���ʝQQ��ë��ı�ë���*�R������ë���R���=����"���\F]����X�kF]GI�����X����u����I�������X�����. ������\F]G������Xu�����XRT�s�9�"�����X\�&^���^E=��(AD���I�ܩ��I�R�QQVG � Q��R�QQVO ���R�QQV̫�����R�QQVGP���RQQV ��MU�x��$״望QQx�����N�$��ʱ�������֜�QQx�ƪŪ�$͜�QQ��H���Gȯ1w7望QQ���>��/�����w�ǜ�QQuQQVO ����P&M��H�ۧ� /�L����ͽ˼� �˼&^���5��^����Ʃ��������Ͳ�)�!���U����w7ǜ��Sd�G � �$7ޜ��Sp ��w״͜��Sj���B����y�� �$7㜛�S��4ï�}�望�S���(���$ײ��)�� ��MU®C��C��O wߴʱ�������֜�QQE���w�뜛QQ��H���Gȯ1wל�QQx�����N�$�����;�UE�'���EK�����x�d�ŵ?2�$望QQx�;��IP�$��ǜ�QQx�;�Z���$͜�QQx���GJh��QQQx�ƪŪ�$$ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQx��ȫ��}״ײ��)��M��U�O⵪OR��QQ������G?��¸�G?����QQ�™�O �–���QQ��;��s�B����y�� ��O �O u��QQ��p ���n�O��N�ç�Ʊ�N�Ê��QQ娰�(����n���)����HPѲ��4ï�²���������4�ï����RQQVHI�ñ�����������˼��™�G ��D�Ĩ ���@-P� �̯_9��@ܩ��F]O3�ŵ�I*e�eyu�L�[��������ey�Q@-PĨ ���@-P[��Q� ������ŧ�Ĩ �����\���uT�# ������ŧ@-�\){y��¨u�L�ȯ8PĨ �P���Qȯ8�yP���9��@�ȯ8��uT̯_ȯ8�y�\){���¨u�L�¸�'/ç��I�� �P䲺��uTW�����������I�'/ç���\){oZ�� ��E�/�[�u�L¨ê��[��ʽuQ�RQVf�G��E�/����ê����E�/��y��E�/����yy���[���`QQV�ê��趵��#ê��RQV[�读�Ū�����[���`QQV0���[��松; [��ם�����[���FQQ�`]�,�O3�ŵ�I*eJ���ʺ�,�?�[��`� /��oZ�� ��J�,�?Ļ��G�,�\)�98��?R��:��:��:����[���űM���#����I4�uĨ�.�#�„����#R���QQ��[��_¾9��� �P�DE�/��M���������_¾9��� �P�D�I4����I4�\`]O��űM���#���ũ�u�L�&Ʃ�UE�/��I4���b�_�¾9��� �P���uT�r������P&G�L���P&��M֯�J�O����RQT�rG���kJ��� ƧM���J���ũ��ĸr����kG�J� ���2į��E�/�ʽJ�2�ɰO��v�©u����\R���u�������秩FQQ���G#FQQ����������G��`QQQ�����OG�����o�#���G��\RQQO���OG�����o�����#��to�OZa���#�����G��\\\){�m<�������ɧ�uĪ�������驮����驮����Z���FQT����C��驮���ɧ��驮���̫ͧ�������X�1���������V��FQT�������,ۧ��ʝTB�GJӫ������C�$�\F]�����U��u�9a��RQ���ɰ�RQ������m<�������RQ������RTO���>���ů����\F��������������eR��R��̫�������¨Ê��G ���G�u������������e�ů���Pů��u������������e�x�xu������������e�B�����P��PB��������ŵ?���&Ʃ�UūH���ŵ?��B����u�G��̯_��²�bv�QQQG��O ūH����������Q�ŵ?��B����o/U&Ʃ�UMM�ŵ?��B�����I��/�u�G��̯_��\�v�Tol�W����է��ľūH����I��/`��QQJ��QQQ9aŵ?��B��R��QQ�ů���ů���o/P�I��/����x�x�o/P�I��/����B�������B�����+o/P�I��/\`]� *e�����e��I��/u�L�&Ʃ�U�ɪ�����J�Ƹ���������uT����秩ɪ��Ĩ���G��̯_��¸����e��To/P�I��/`QQT��ɱM��G�Jح��6�X���O ��������&����\`]c����uĨ�J��������������b��`{� ��� ���̩����3.�}���v! p���X��J���3.��v���%��� �E�� ����� ��v�(�^���J����a&yJ����֧�NHv�V��%���N��� ���֌!���U���}ޠ�QQS ��� ���n����QQS ��� ���H��L����QQSj��Y�H�̩����̩����H�ZJ��״����������ה���HPѲG��²Ȫ���e�]������߾�������G���R���e�R&K�Q&K��U�d�ì��J��$ʜ��QSL��Ȼ����}$딛��������U���j��Y�H�̩����H�Z�ବ��ë�-���������������������ʲ��RD�Q&K��U���}ߴʲ���RD�Q&K��U���}��ʲ���RD��^K��U���}�$Ͳ����F����ܴ9�W����?�F]]���R��O���I�Ȫ���� ��2y�_���O/�y�� �ݧë�X��4�RA[������M�XP��� ��2�I�v�y����������VI��Iu�. M���Ȫ�A�yA���A��I�����QQTA�y\RQQQ�Ĵë�����I���I�\){������R��@�P���IP���y�� B��s/�y�� �v¶��yu�O⵪O����yFT��H�������� @�P����P���y��uT]��P�\��[�'�I�R�™��� /�°� /��ľ�Ư���n�`]ì��������R��ì�����������Iaì��\R��ì���*,�|u�����*,�|FQQì���������ì��FQQ��������IH*,�|�ì��\`]������I�����uĪ�G ������G�����`QT���G�����FQTL����P��OG����G������QQ�OG�E�/E�/�OG�uQT�����ʧOG�E�/���ǧOG�E�/�G ������G�OG\�S�Iŧ&� �M��������G�OG�uQQT=��I��I�^� �M�����u�QQ�W�POGu�Ī���E�/�W��`�QTo���������IŧW��`�QTO���o���������I�@G���G�W��\��QQ-�W��\\`]ì����I�R��ì���ì����Iŧì����`T�ì���*,�|u�����*,�|FQT������I�ì���������ì��\RT������I�ì���������ì���*,�|\F]Iű��I�uI�F��ɴ���=��Z��F]�Z��w�$ʱ�������ֲF]��Ʊz��L�=��Z����;��Z��u������į�O*M2䲱��������Z����Q�Z���;��Z��`QT��ɱM��Jٶz��L�Z��P���ڶ�ɧ;��E�8M��=��R��Q�ҧ-�ݧ��GM �D�ɺ������f�ï��2���� ��2����,�X������ȶ�,�X�ڶ�ɴR��Q&;��Z���;��Z��R��QD���Z���Z���\F�R�&Ʃ�U6�K/���˧o- �uĪ��L����e�źO��>�o- �R������� �6�K/����uTO+O�0�a���eFQQȩű?������*��`��ϧ�+){@G��R�&Ʃ�U6�K/����O� �˧o- �u�L¿���L�fľ� �6�K/���uT���źë���L秿���L�fo- ��3�M��QTO+O�0�a��źO��>���o- �`QQQȩű?��*���CK�\����=��HI�ñM��R�™�G ���G������oZ��B���t����<��u�L�������<��J���ȯ8��Q��M ����I��,�����\����ʱ�\������\����ʱ�\������\����ʱ�\�����vQQQt��G��O t��O����G�J���M ����I��,�������J���J�uT���G��� �t���\���Q���Ī���J���Q�v�QQTG�J�J��\��J�\����\RQQQG��̯_�\F]���ëL�ɬ��ë���2©�#�I�ñ⵩����<��u�L�t�īb���J�b�t����Q�Ī��t�����Q�v�QQToZ��B��Ⱗt����<�罽uT��.�#�I�ñ�����_¾������\){��űHI�ñM�U&Ʃ�UHI�ñ����u�L��ľ��HI�ñ���Q��� �������G��O ���\��\���\����\�Ĵ���\����\�������\���\���Dz�Q���<��������MK�ڻ�����񲽽uS!����*��CRQ�W��W��M@-�������RQS!���������RQQ�M��������^����ɬ�t���� �������R��QQD��ë����ëL�ɬ��ë���2�#�I�ñ����<���uQQ���ũ�^G�L^��M֯�����uQQ�M�^yJ���<���������ů�v�QQVG�L^��M֯�����D��Ʃ2���<���J����<��W��������zN�P&��ś��űHI�ñM��R�QQQD��ű�������¹!��J��W�������ز���F�����;�ȶ���ô��R�®�êO�P̨u�S��̫��������u�S��G ���G�u�S��B����=��X�=�u�S����;�ȶ���ôo�����o�����S'�/�n�O�]����'�/u�Sj�ì��ƪ��YN��Pì�������<�O��>�µ��u��Q��G��GI���Ȫ�R����G��=��9a����Jì������Dì��R��QQ��=9�\){A1�O��>Dì�����uı���ì���O� &�������R��QVA1DbR��QV3PѲҮ"���. ��̨��˝ľ�1�\){A1�O��>D=9����uı󧵭�����������`]�̨�KEK���`��QTl�ç��"��R�QQ=������ӯ��2��m2�Pt����G ��PƩ���)Q�#⳱�I4����I4��P�0����2���y�����?��O � ���ƨR_��ԧ���ç� N����P������I4� ����"�)Qҧ�������4 ��R���\�HL ������彧����������Χ�O�EK����\vQQQ^�bPQ�\���;��\�\���;��\�QQD�⳱�I4U�\�ů���\�QQDG ��PQ^���\�૨թ[��������\��˽v�¨�u��⳧��`T¨⳧�I4�uL¿,��QQTb��,�ÝQ��bPQ����bP�I4����ı���bP�I4���> �����>����QQQ��T��H��b��b����O���P���\����\���b������QQTG�Jٶtf�b�J��b\RQQQ#XPQ�G ��P�I4��Q��T�į�k�#X����#X�`���QQ��X��I4P�ï��2���C�2_�����Q��T��H�P�tPG ������Ķ��O*M2���\�W��`������QQTG�JٶtfG ����I4�J#\RQQQ#⳱�I4P�MB�I,ľ�⳱�I4P�I4�`�#��QQQ��#�R��QQTG��O ��\���\�����b#XP�Ʃ�ȯg�Ho2�\���TG��O �����������G�J��G��̯_��J��b��J��\RQQQ���2QQQ��:��Դ#��Q�uQH�����,��E�������ɩ��⳱�I4�\\���/N��'K���GR�™�G ���G ��u�S�/N�����P��u�S�/N��?P��P?P�M;�K�6�P��u�S�����G ����G ��u�Q�����G ���W�`]�Guį������G��ϧ���ھ��P9�O'>2"#���"����P����K ����RQT���G\){���<�W��G�y#���"F]A1�W��G�yD]����Guı���ľy�G��ľ;�y�G���e�G��uQQ��¨��:��������G ���ų���������#\RQQ�?��CN<���G ���̯_��_�\){A1�W��G�yJx�G�Gu�G��;�y�G�J�ľy�G\){A1�W��G�yJ�������GuĪ�G ���ų�����y�G`QT�;�y�GFQT�y�G\){�O������u�9a�RQ��������ӵ����vQ��������ΰ��vQ�`]��e��GuĶ���J���"ľO���G\���I�N�ôO� ���F]6���ų���O� �Po���O�������N��u��O �ų��ƧO�OH/�����O� ��v�L¿ 2�W�,��o���O����u���WE�,��O� ���u��QQO�^�DɧE�R���QD���QQ�����N���E��ȝ��QQQD�V�/ ��R���QD�QkR���QD��/�A�k˽����ĝQ&O� �PO� �P�o���O��o���O���RQQQD� 2� ��`]�UO� ���u�������P����X������� ����ì��#P� �B�E�/�v�O��"RT�„PO� �uQTL­��O� �R�Q�Q�����QQQ�Q�����QQQ� �� #���uQQT���#��R�QQDB�QQM��P�B���`�QQQ#QQTM��P���`�QQQD� T���#� #�M�� #���\R��QV��OT��T����Q���/ ������M�T�P���O��`���QQQ�P���O��\`�Q&� ����R�Ļ�ľ� 2O� ���\F�E����������Ũ����Ŵ���0����Rľ�E����������Ũ�̸ŮD�����B�>����nO�����0���� R�쩬��������ѩ�0������ѩ�0�<����1 ˧��E�L X��1 ˹��RB�nO��1 ���0�<���E�L X�� �v�u����B�>�G�J�����֧�������֧��0��������ݧ��0����<�L�JR��QJ������֧"��y����է"��y�l��P�W���اl����0����l�����Χ��0���JR��QJ������֧"��y����է"���4��l��P�W���اl���E�L ����l�����ΧE�L ��JR��QJ���էl��� ���0���ݧl��� �E�L ��Pv��QJ�W���ا��0�������E�L �������駩�0������0�������E�L ������0���JR��QJ��������Y���0��������ݧ��0����<�Lݧ��0��ݧE�L �����Ӳ\��ϧӯ�� �������O�/��ç�5Ȫ�5Ȫ�ũ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ŵ����n��Ʃ��R��ŵ����n��EK�P�O�G�����P�����ɹ���BE��Ω6�����R�Ʃ�����UƩ��Jᯭ@�ƩB����,��FTƩ���G�Ʃ��Jᯭ@�Ʃ�X�`����BE��Ω6�����R�ӳ��W�4���FTƩ�����U������FTƩ���G���������ɧ��`R�XR�Ʃ�����UƩ��G�����PƩ�`TƩ���G�Ʃ���Ʃ�`�M��H�"���ɬs��n�R��M��H�m2�O�m��"*�ɬs���S�N��<��O�¨�����"���ɬsP�:���`]6��O��i�R�����i����ɬs�W�"�Ȫ���>,�ƴ�����#ï��2����������Rê������������ɬs��P�ɩ����ҧ��ɬs�Ȫ�,�Ƨ�Rȯ��2����G�X�B��ɩ����v»�ɬs��,�Ɗ�Ĩ�.ۧ��ɬsP����I����ɬs�����,�Ƨ���\){����N�������Ƨ��ɬsuϹ��ɬ�O����\){���*�ɬsUu�OH�ۧ��ɬsP��FTm��"*�ɬs�FTı��ﻪɬs�RQQT��� ��T�������z���t`����Ʃ��TO��"��N������¹\`����������ȫ�P�C��I�*/N��n�RT�O⵪O�6�Ud��n��������6�P�O�����T�O⵪O�:�P:DM;�K�6�P��u�Q:��:��:DM;�K�6�P��u�Qd��n����������ۊ�Q�C��I�*/N��.��.��`N��L�o��L�� /�F� /��ظ��PB��P��ï��2�ïȧ���_�����K>=��o��L��F��ϧ]M�������[�#������ ��b��Z�� ��Om�){"���:���`]�C�ƪ�����[����-�u�rzN�R�r������P&;��4��C�ƪ��f�[�DC��R�T�r��k[�Dy�� �`�QT�r��k[�D. �`�QT�r��k[�DO���赭�\`]�C�ƪ�@G[����-�u�rzN�R. �r������P&;��4��C�ƪ�@G���rŵ?���#C�ƪ�������C�ƪ�P[�\`]�C�ƪ�ů�[����-�u�O���RQr��W?�կ�/RT�?��'�/�uQTr��� �ۧ[���C�ƪ⨹�¹���RQT��RQQTL�O�0�a����.��b��C�ƪ⨽�D�1��u��r��[�ۧ[���C�ƪ⨹��C�ƪ�PO�0�H\`QQr��NK�RTO�uQT�r�ǧkJ�C�ƪ⨲��rŵ?2�C�ƪ�@G�[�\Fr��RĻ�[����-�uTO��r��NK�RQTO�uQQT�r����krŵ?2�C�ƪ�ůɧ[�\`Q.��R&�b���+����|b�L|���2�.�����F){�̨�Om2�u�ϧ����B��ç��������B�W"�OOX�K�N�X��Q�ϧ����� �R����.�������[��_¾�軪�����E�/��M�FF����c�ȩŴG�ȩ�R����c�M��FT�O⵪Od�ì���YN��Pì�����d�ì���Pn��ľ�C̩��ȩ��`���c�M���M��F]#�Jì��%�=9�ïG����ʲF� ���O����P���v�L�O�0�a�ì���b#��Q�1�O�0�a��1��uQO�0�a��oMP&������FQQ�1���Ϊ���vQ�1����<�����/��,��K�����vQ�1���W�vQ�1񶯬����ë�ƨvQ`� �0GX�ȯ�ƨvQTL�0G�O� &W���I4P&�?J��G�G�E��o �����R�Q0G�O�0�a�ì���0G#��0G�O� ��QQQb�O� &E�ƪ 0G�O�0�a�E�ƪ ���QD���b�_0G�O�0�a¾3P�=l�����R�Qb�O�0�a�ì���b#��b�O� ��QQQ�1�b�O�0�a��1���)�0G�O�0�a��oMP&�����˝T�3P0G�O�0�H����oMPѲ=l����˝Qb�O�0�a��oMP&�����˝Q�1����ë�ƨvQQQ�1񶯬���W����ϧӯ�� ���ӽ�����ݧ���ק魴���:�Pήë��T��:�(ë�ƴ��ݧ��:���ήë�����o���Fϧ�NH2����P�������һ����N�� @���Na�洼ϧΩ�������ش�ɬ�e���C�2Ȫ��P�����I��)��C����?��8ŷ��̨R�RSd�=��X�o����=��̉=��X�o���uS��[��̨�̨uS��̫���̸Ů�̸ŮuS��B����=��X�=��XuQFT���0�j�0G�O�⳴?����Ň`]t���B�̨����Ňt��uĸ�B���Ň�FQT�H�����̨��ĴH��V��̨�� �G��t��\F����BE��̸Ů������V��R�����������i/�.RĨⳃ��t���t���B�̨����Ň�t��`R�����������i/�V� ��RĨⳃ��t���t���B�̨����Ň�t��\)ĩ���BE��̸Ů��� ���Ω���3ӯ����R���ŇR�O�����H��O3�E���°���̧A[��C�uTL¬���b�������̝QQt�Ĵb�V�����̽uQQ��=��X�Kŵ����t���QT9a����RQQQ�̨�̨�O3�G��t���V��at��\F����BE��̸Ů��� ���Ω���3ӯ����Rj�0G�O�⳴̸Ů״�J�Ů�ҭ,R�O�����H��O3�E���°���̧A[��C�uT=��X�Kŵ�����̧A[��CɏT�bҭ,�����\)������ŵ������������������������������������������������������������������������Kŵ��Kŵ���P��F��=��X�o����H��=���DL>�DKŵ�F��=��X�o����H��=���DL>�DM��F)���=��K�R�®�=��Pn�u�SO��N��n�O�W"���[�����S�������YN��P������DM;�K�6�P��u�Sd��n��������°ۊ�Sȩ�H��O �ȩ�H��`N��L�o��L�� /�F���������ñ��Om�R�ȩŨ��Ʃ�����JȨ%�=9�ïG�������������Ȩv�̨m��9��� ��¹W"���[���\)�ȩ�H��o- JȨ%�=9�ïG������Zůa��Fn��MF��,���8��B=�� �8�R��:o>5N"���PW��������Χ��9ŵ�I� �v��,���8��B=�� �?���`]�8��O���Jì��%���ȴ���������ͺ�ͱ8����/�ɱ���`{�8�PİO���Jì��%���ȴ������ʺ�Ǻ8��(�`]�8���8�J�����`]�8������8�J�����`{�8���� ����ڻ8�P�� ����ڻ�`]�8���ӳ�8�P�ӳ��`{�8���� ӳ�ڻ8�P�� ӳ�ڻ�`]�8�����ũ�8�P���ũ��`{�8���E�A/8�P�E�|�`{�8�����驻M����8�P���驻M�����`{�8���,���8�P�,����`{�8��!:�_�8�P��:�M�`�����YN��ì����� R��Rd��ì���YN��Pì��ud��n�������������u����YN��E�'��?�?�ľO���D��;�Kb����6�Ud��n��������6�P�O�������=����`�����������������������������������������������������������������������������ϼ���Q��<@�쵶 �PQ��������������������������������������������������ϼ�����������������������������������������������������������������������������){�O�����ɸ�"�R���d��̨`]�O������1��ɸ�"�R��z�d���P��1�\){Ʃ��ë�-�R�YN�uĪ�b�_YN¾�IN��YN�����P�O������1��T���������H��ëO������1��ɸ�"�FQT���������H��ëO�����ɸ�"�\){b�����������R�YN�u&Ȫ�6�K/��种RD3PѲҮ"���. ��̨���F]Ʃ�ì�������R�YN9�������u�A���b����������PYN��Q^�ë�-�Ʃ��ë�-��YN���RQQQ�ì������PYN��Q��������`�����������������������������������������������������������������������������ϼ���Q�ٷ �|�Q������������������������������������������������������ϼ�����������������������������������������������������������������������������){~g�����@N���R�IN��YN������Rì��������F]bR��P��������u�ì���b����Ʃ�ì������P�P����\���ïB��o���R�™�B����=��X�=���m�����R���"�>P�����m�P�J������< �W��e�O�OH/�2��çM�C;��������������vš��yuĸ�RTL»̫�������e�J��o������< ��QQo���*e����ɪGP����T��̫�������e�����T��̫��������G�����yJ���< �\R�����̫������M��GO4�o���*e�QQ��̫���?���< ��uQT=��M��J��NX���o���*e�Ĵm2�������MB���W�Ƨ�����u�QQQ�Ʃ�ȯgƽ���\`]�]�����o���^4ⰴ���J4�%�=9�ïGv��QD�H����yJ�ïB�v��QD'��1ŴïGJ=9�ïGv��QD �ƴ]�����ŵ�Ʃ��� �Ʊ������v��QD �ƴ�1���J ���1��E�v��QD �ƴ�1���J ��7�1��E�v�Q��� �ƴ�1���J ��洶1��E���F]�o����R�QTL°�P�m����P�o�����u�QQT=��M��J��< İ��G�����`���A��]�����o�������`�QQTl�ç��"��R�QQT=���J�@���� ƧB�]���o����������,��ȫP��mK2��BJ����Q]�����o���\��̯M�K����RľE����ë���;��FT�̯M�n�FT�̯M���`]���m��������u�L�mK�*Ļ�¨���t����� � QTL»e�o/m����G���çt���̨������ � QQT��k移e�o/F� � � QQ����� � � QT���#��Ʃ�ȯgt�����e�o/\�uTO��"�mK�*�����O��"��\){���O'>�����[�ūaK����������ȱyu�Ȫŧ[�ūHRTL¸��b���|G�J�K�����K������`� Q����Pľ����P����uQT��[����|�������D����Pĸ��������P�Ʃ�ȯg���ȱy\\F]��[������[�ūaK����������ȱyu��O�����[��-ȧ���ȧūH2�� �����R�K����������ȱy�����PO��"�̨�v�L��O��"m������G��K������J�����+���ȱyJ����uT���������O��"��O'>����ȧ[�ūaK����������ȱy��Ȫŧ[�ūa[�ūH�� Ĩ�>����ȧK������Ʃ�ȯg���ȱy���O��"\`� QQQ�)�K��B��ô98�R��O��N��PO��N�O�:��S�̫ɴn�O����֊�Sd��n��������®ë�ۧ�۹����6�Ud��n��������6�P�O������b�98�@G*��G�,��u���@G����98P���=9��q���ݧ���������P�����v�L�Ʃ�98�@GvQQQ@G�b����+=9��q��Ʃ��uT�����M���@G��uQT��¶��Ѳy�˽̨��d��Ia�+�J���@G\\)�ϧ�êPE��� ���P��> �������P��#XPB#X�����Ѳ��ܲ˧�]�98�@G:MB�b�98�@G*��G�,��\F]�=�Ƶ��98�98�yu�L®�ë��uT����J�[��98&ëL���Ŀ��ۧ���`�����I4P&98�y�98�y�R��QQVW�,�R��QQV��ëL���&Ʃ�U�#��ɬ��u����QQQ�=���+o��LR�����QQG�Jح����J#�JJR������Q��ɬ\�FQQ�`]3��98�B�@G�98�yuĸ�RT��.ۧ98�@G�o̧Ѳy98�y�FQT��RQTL�O�0�a����=�Ƶ��98��98�y��uQQT�=���+o��L�O�0�H\��&^ ��MU�x���G}�ߜ�QQx���M��w޴ǜ�QQx��� /}ǜ�QQ��4ï�}�ǜ�QQx��ȫ��}״הQQVHI�ñ�����������˼{�B�:���O*,Aw�$�ʱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ�͜�QSO��N�$ߴǜ�QSO*,Aw�$���QS�MI�����K�B��P�$���ʜ�QSd�E�'�+H6���7ל�QS���ߴO*,A� Xw�油�)V ��MU�x���3��w㲹�)Vc����bP�&� �����b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O ^0������)���ŵ?�P&YN&�bD��H�R���������J� �� @��̨v�����'��LP&YN&M��*B�:���n��M��R����!��B��P&ì������ �� @�v�����QDì���0���������)V��HPѲK����²��3�������YN����F�K�A ��� �L3ůI�R��K�A ������������u�Sz��s�n�O�] ���֧���֊�S ���?�ì���O�0�a��PO�0�Hu�SK�A ���H�����M-��9��������M-��9������u�SK�A ����ŞP��u�S��̫����������A ����R�u��M-��9�������Ȫ��M-��źb�A ����\){L3ůI2�uij����ORQ�L3ůI��ì��&A ���P�A ������`] �L3ůI�� R����J�¹L3ůI�\�ϧ�<�LQ]���<�L�ϧ�Wì���)¾3��A^��IHľ��IH���˹��A^yQQ�����0��vQQQDo/J�C�K����CݧM�<�(���ݧ�(��L�� �˹)�<�LRĪ���<�L#��J�:��FQT����<�L#�FQTG�����<�L#��J��J�<�L#�\�)�@��^O�QJ�ï����vQQQD�O�Q��������˹��@��^�O�Q��:�ɷ�vQQQDO�QJ���vQQQD<�L�<�L#��QD���J. ��:�ɷ��˹)������O�<����ľ�#����F�^A���J�(ON������C���ʰɽ��!�����#�����ϧ�3)¾�1�)�ϧ�� � ����� � ��Jì���%��� �E��@�Cܺ����ƪ�F�oMR�o/�)Q�����^;�J�����S��@��G�J�ľ�Ȫ��#���G�Jì��%��Ȫ���E��ľ�Ȫ��#�\RQJ��Ũ�ϧ����uS��@�����J����ƪ�ū�-�����������ƪ�ū�-�������Jì���%��� �E��@�Cܺ����ƪ����F�ϧ�oM)�U���+�O�<���̨vQQ��̨������d�̨vQT��P��������ϧ��1���ZůH��0�'K��n�R��ZůH��0�'K���� �⟻����ñ̯��@G���D̯��y�̯����\){����ñl������@G���Dy�l��������\){����� �����@G���Dy�K��������\)�ϧy��P���]Ʃ�����l������Ƨ�����O���P�l�����ƽ��`]MH���E��a�&Ʃ�UE��H����E��Hy�MG�� ���K���������G�K/����I4��u�L�l��� ��Ʃ�����l�����I4�����Q�MH���E��H��E��H����E��Hy�MG�� ���K���������G�K/�FQT����������MH���E��H����l�������E��Hy��l��� \F��,���=��o/�n�R�™�G ���G ��u�S�,���=��o/�������͉�������u�S�,�������i��P��u�S�,��������u�S�N��<��O�=�u�S�����P��P�����IH�o/�����R�o/�����u�L¬�� G ���� �o/�����ݲ�Q�I�P�E�/���� �uT���ǧ�I����Ʃ�ȯgo/��������z�Ʃ�ȯgG ���������� \F]�e�����������R¨�i��o/������u�9a�����RQQV�������������ͺ�Ia��i��o/�V]���&,���o/R����D�IH�����*���`]�IHR¨�i���e����uĩ��� @��#�i����O3����O^�e��e�����FTL©�����+�������e���̝Qo/�������e���̽uT���� @��#�i����O3���0G^�e��e�����FQT������RQQTİ���e�����������#�i��o/`QQQT��[��_¾o/��������IH�o/������T���D�e���������\F{��9�wʱ��������v! p���#��s�9���?�����#�i�v���%��� �E����ú�9�v�a&yJ�Y�a� @���NHv�V��%���ȴ�Y�H�L��� ���$ì���!���U���}�ʲ�)����ϧ�L��R�QQQj���n�������w��ߴʱ����ͱ�ë��QSì���ƪ�7�벹)����ϧήR�QQQ� �<��(w7뜛QS(�o��w望QS�����M� ��$h�������������������;�Uj�����)����ϧ���֧���R�QQQ��ϧì���ƪO3O⵪O2�P�I���ëL��R�QQQ ��� ��������P�$ǜ�QS ����C�L�I�*���$נ�QQSz��s}ߔ�_���ƪ�����9��n�R��b�J�b���v���eP& �I^������F���ŵ��n�RľO���D��;�KO3�����m�� L#ï�=�����������ŵ�����������u�S��ŵ��ŵ���ŵ��u�S��ŵ���B��B���z�H���������z�H�����F{#���#��������F��]#X#����G ��F��]#X�#����G ���F{�M���#����M���F{�M���#����M���F{#ï�������ï��F{�M�#����M�F{�=��#����=��F{��m������m�F{��� L#������ LF{���#������F{���P��������F{�ů��#����ů��F{�=lŵ���=l�F{#���B���ܩF]� �R��W �[��MB�ŵ������=�X����������R�����MG��"�v��ŵ���[�#���u� ۧŵ���[�#������`T�ŵ���[�#���^Ʃ�U���H��D���ѯ��H���u=��X�ŵ��RQ������ #����ŵ������H[�\F]O3�R���3�[�����ŵ������=�X���������2����RMG��"���êPA1�O����P��> ������O3�2[�R��[����H���Rٻ�����-�2�[�ݧ���O3�� ��v��ŵ��#���uO3�ŵ��#������`T�ŵ��#���^Ʃ�U���H��D���ѯ��H���u=��X�ŵ��RQ�����O3#����ŵ������H�\F]O3R���3�[�����ŵ������=�X����������R�����MG��"���êP��� ���P��� N2����O3��R���O����P�O3�2[��v�����u�Ho2�. O3����\��K��B��ô98�F]�98UR�Q&yJ�e��@�ìv�QD���EG��D��R�Q&yJΩ�������W��v�QD���EG��D�W��R�Q&yJի���J��v�QD���EG��D��˹�������G ���GR�™�G���u�S�����G �������G��M�A�GR�K��M ������P���M�AvĪPİM�A�J�`T�PİM�A�J��`T�PİM�A�JK���`T�PİM�A�J,"9��`RĪPĶ�İM�A�Jl��\RĪPĶ�İM�A�J���\F������?��ŵ?�R��d������������`��ϧ�:�I5��PI�����C��L���B�K�����쯭���4 �ݧO��N$�ʼ�ϧëP���I5���_��P?�dPy�� ���Ҹ��P�P�P-"I���ϧ�����C��L��I5��PI�H�]�"��L��I5���R��RQ��BE������ �|PA1��M���Ȫ��I�3#���s���ϧO��N$�ʧO��N���� �?�d����RQ�F]k� "��L��I5���u������� "��L��I5���#FQQ�`]�I5���ëL��I5������N�����u����I5������������d���I5����FQT���L�P�k� "��L��I5���������A���I5�����������uQT�M�X�����uQQT� /�ī����A��N�G�J�\�������Ƿ�W�������\������ʷ�J#\����i���ɪ�\F��9G�?R�™�G ���¨ ����`)��ϧ�/� �)�ϧӯO){�IH�M¨u���G ���#FQT����IH��#\)��ϧ֪A){M��� ��R���������ɩ���*���=�X��P�L����ٻ����P��>�ݧ����RB�M�<��ɩ�����PO���B# H�N�ɩ������êP��R��� �,���2_���s�v����*�uQ=��uQQ��*����O3��L�����O���\R����*I�uQ=���I���uQQ���OP���*�I��uQQQ��O3��L�����QO����O�\`]Ho��R�¹Ho�P�`T¶������\){�M R�¹�M ��`T¶���Ho�P��\F]ï���R�¹ï��P�`T¶��ķM ���\F]����R�¹���P�`T¶���ï��P��\F]M�t��H��uı��� �P䲾�����IH�M���OZHRQQ����,�����ʽ��`QQQO��"��\���� ���G�ūHR�™�G���u�S�� ���o����,���H�Z�o�����S�� ����ť��u�S�� ����Ŵ(���u�SƯ���ť�]�ŧ0G�O���S��G���u�S�� ��R�Q�ť����S�� ����Ŵ(���u�S��G���u�S��G���u�S�� ��R�Q��DO�D���S�� ����Ŵ(����`){�ŧG�0G�O�R�QQTHL �Ʃ�P�b�_�H�Z�o����!�ūa�G����Q!�DD��ȯg�ïGD0���\){�����l��R��L�yu�L¨⳱G ��W��������ا�P��������L�y�uT����⳱Ȫ�=��X�#⳱G ��DG\){��@,�R�uĸ���⳱Ȫ�=��X�J���Ч�����ҧ� @����������GFT����⳱Ȫ�=��X�J������Q�����ҧ� @��G`][�ūH*�ɬsR»u�ů��G,�DGFT�FT��@,�`{���� �x�����M��Z���)VK��U���QQQ}�$ǜ�QSj���( ���$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,��R���QQ�j�������L�;��s�@�,����8��I����QQQ�L����3�ȱdPQQJ7ߴ�뜛QSO��N��Q�$��ʱ��͜�QSO*,A��Q�$�ʱ��Ͳ��)V ��MPQQ¸��ߺx�����M�w$͜�QSx���3�țQ�$޲��)V�C�L�ISxXN�����M���C�L�I��)Vc����bP�&� �����b�R����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)�QQQVŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n�������R����!��B��PQ&ì������ �� @�v�����QQDì���0���������)V��HPѲK����²��3�������YN����F{���� �$�$�ʱ��������v!���U������$ǜ�QSj���( �}�$���v�����;�UE������L�̫��( ���;��s�ze������3��R���QQ�j�������L�;��s�@�,����QQQ�L����3�ȱdP�7ߴ�ǜ�QSO��Nwߴǜ�QSO*,Aw�$����)V ��MU�x���3��w㲹�)Vc����bP�&� �����b�RQQ���QQQ����3�ȱd�v����Q���3�ȱd�����v����Q�� ƫ���̨v����Q�� ƫ���=�ƴ̨v����Q�� �� @��̨��)V��3�ȱdP&�O Q&0������)���ŵ?�P&YN&�bQQD��H�R���������J� �� @��̨v�����'��LPQ^YN&M��*��� ��n������˼�����DK�B��PQ&ì������ �� @�v�����QQDì���0���������F�E��O3�(,��R�™�G ����u�S-����,�N@>�ì���ì���ľ��0�̫���-�����`]#��R��L�9����%������ɴAvQQQ��������W��+����9������Q��������O����G���������JĴ�罺���uQ^yJի������vQV�����������RQVHL ��!�������@GD��D@D�uQV���@�Ļ���y�Do/R��QQ�ѵ��D�O��D��u��^y�yR���D�������˝�����󻩩2ϵ��u���:���󧵭�R���TO���P����������QQQHo�R���TW��+�����ɷ�9�����\�FQL�9����%���ȴ��I�3�-���&yJի������3vQV���G��9�����J�ëũ<9����HL ��!���H ��ëD��D@D�uQV���@�Ļ���y�Do/R��QQ�ѵ��D�O��D��uQQ�QQ^y+���y��QQV���G��9����������˽˽�F]�����*��2µ��u�ì���ɷ����̫���-����Դ����\){����ñ������u�ì���ì�����̫���-����Դ����\){����ñE��@G&Ʃ�U���#�L ������@ܩ��u������@��ì���HL ����ñ��������#�L ��\��������H���Rľ��0�Ļ�������ɩ����QQ������������Ӫ������O����O��������O��������O�������?K��QQ��������ԯ�Ƶ�\)�H�ۧ��I���O�L ����F]������J�O���Ӫ������O����O��u�ԯ�Ƶ�R�t���PƩ���t��PƩk`Tt���Ʃ]����uT9aƩ�RQV��N����ڰN��O����o���L���O�������o����b�O��������O���u�QQQ&����ȨR��RSL��ܪ��@>� �P��P ����:������ëL�#u�!�����J�W��EA�B�ԩ��ܪ��Ԫ>۲u!���M�^����ɬv���t�ľ�����QV��ë���ı������b���� �������O�çëL۽�u��B&�Y�����ëL� ����г��\�Jг��۔!��RT��#D��� /�G����F����-�*/�n�R��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P���FRľ»��-�*/�zN����:��_���M�z�QQS���-�*/�G�O��M�G�OD��.����`N��L�o��L�� /�Fr��RM�zR.��R&�b���+����|b�L|���2�.�����F���ű.��n����R��LP�çB�N�v��N����n�O�N���Sd��Ȭ�n���u�Sd�v�I��uı�ŵ?��;���I�P�`QQQ�ȬRQT���������#�6���B�G�`]�I��R��V��� ���>B�Nv�B�Nuı�B�N#���Ȭ`]tC�R����P���B�N��PtCv�B�NuĪ��B�NRTZ��B�N#�6��FQQ�`]yR����Py������>B�Nv�B�Nu�b�_B�N�;���P���`�ϧӯ�� ��Į���5���𯭮�����ҳ�� �ìPOH�>����ϧ������G �����PW��P�����IIEZ�2����ϧ�Y�a� @���Na�ì��%���N��� ��Y�H�$�ðF�ϧ��ç9�����_�e�������������P��G �����ϧ�X��P�����I_�����êݧ���O�O�X�B��ů������ψ��P����P�����ϧ�Y������O'>��P��<"ݧ����ݧ����P�����I��)�噴B����YF���){�������O u�;��s�M�O DM����o�ɰ�M\)�L¯��P�Y��E��@-�I���R��������m��ԯ3���>( ������u��į��P�m�FQT�o�ɰ�MFQTm�*e���P�m�\R������į����P�m�`QT��M�O DM��ĸ��o�ɰ�M�噴O \`���)k��-Ư����@G����R��MP?�< �B�ȯ�ƧȪ�ԪG�V��ȴvľ��0��C�?�ΰIH�L��ҭ,�`]b���Ʃ�R�������P��> ������M� �W���PũX���Ʃ2_��ԪG�V��ȴR���ȯ�I��|�Z�������� #�⵶"����[�R�L|P���ԪG�V�����[����C�2B�3.�FQ��O����P> ��������a�L|PO���Ʃ��JR�³�uQL�ů���I,Ĵb��Ʃ���Я���P���QQ�E�/�bӯ�/����uQQ=�����ݧO���ŠQQQ��񧪧E�/�QQ�O����R����b�ů���I,��QQQO���M����o̧O����`�QQO���M�����O����\\R�³�����uQL�ů���I,Ĵb��Ʃ���Я���P���QQ�E�/�bӯ�/����uQQ=�������������OG�����ݧO���ŠQQQ��񧪧E�/�QQ�O����R����b�ů���I,��QQQO���M�����OGo̧O�������`�QQO���M�����OG�O����\\FK�H����Ʃ��R���>�#��N"��������P���PO��� �>�ԪG�V���R�L|��v³����Ʃ��C�uĸ�H�����Ʃ��C�uT�H�����Ʃ2�������\)����7���R�쵶 �PB�������Y���X��ƨv�™�[��ɷ��ɷ�u�S��̫������»e��S��̫�������¨Ê�S��G �������-�@-��ľ��0�̫��ɴ�����4 ���ҵ�����i�`]�e�������L��R���L������������_Ho�PW���>�������ev»eu��#�ì��%�G ƯZ�=ȴE��� �+������ߺï�����b������*e��B����L|R���Dɧ���uR�H����������ɧǽ���`T�JJ`]�ïȱůI�R���CV�CRQ������ìRQůI2DůI��uRĸ�H��ȹ�ůI�uT��H�©L����uQT3���L|��L�\F�ϧ��վ�232��� ����ç�?��9�����. ��������Ʃ�Ƴ���A�i��G��"XR��d��GDO��6�U]G�GX�����SƳ���A�i���"X��"Xu�SƳ���A�i���,Aȯ�Ɖ�,Aȯ��u�SƳ���A�i�� �P��P ��������O�oG�/�k`]G#B��XR�GXRT��RQT�RQQ�,Aȯ�ƺ�" �����B�D���������O�^���^=��X����˝^���^=��X种��`QT��RQT�RQQ�,Aȯ�ƺ�" �����B�D���������O�^���^=��X种�˝^���^=��X种��\F{�O �$ʱ��������v! p�����Ա���ҧ����ݧ�.��ݧ'O���� �>����ԧW��=�s�v!���U���}栛QQSj�;��I����E@���@-J7��������֜�QS��zLwה!�����U·C����ëל���x��C���$�ݽ�����O ��O3��@-��J@-ٶ���3u�̫�����J����F�d�. N�Ȩ.��6��BR�°�� �����ë���¨ë�������S��[��EK��ūH�ץ�NEK�KEK��Sd���FT�P����b������Ұ�NK����FT�P����b������Ұ�NK�����˼����c�� �N��ŵ?��� �R�®��c�� �N�� ��m�����"���ŏľO���D��;�K�M��ľ®��c�� �N�� ���1 D��GI���1 #B���1 ���®��c�� �N�� ������ľ®��c�?���"����ȱ�������۽�ľ®��c�� �N�� ����P��Į�Ư���®��c�� �N�� �����������ŵ?���  u��ϧ]��#�L�����P�e��� ��-�2B��OmK2�Om�X ������R&ŵ?2&�O���GI���1 R��Q����O����R��Q��ƯR��Q���������u�D������G����1 ��)QDK �&�O���GI���1 R��Q�����O����R��Q���Ưu�V�������ź3��MG��"�R��Q��źȫ��*����R��Q��ź����ȶ�O'>�����O�������)QDG��X^�O���GI���1 R��QQ����O����R��QQ�é�Ưu�QD��������)QD����&�O���u�D���������F]�M2�yu�bŵ?���  �Ʃ�ȯgy\){�M��yuī���M2y�JE��2���M2� ��y`]. ��� �� ��y ��u�L�� ĻM�ۧ� ��y�QũW�����. ������ ��O���`��������. ������ ������ɽ�uTol�ũW �P���\&^ ��MU�>��/�����w״ʔQQD���Q&E=��(AD���I�ܩ��I���˼�M��H��IH���n�R��M��H�o����o�u�SM��H��IH�����P�O��������Sd��e��������v©����P�IH�uĨ�.ۧ�IH��RQQQ�A���ܪ����y����������O����IH�\F]�IHR�����ȯ��ݧ�Ia�e�����B����=l��v���e�ëLu&�O�MG��"��e�ëL���R�L©�ĩ�����ëL�uT��oM�秩ɬ��M��J�I�XĴb�çëL`QQT��IH�P�ɬ��ëL\F�M��H�"R��M��a�m2�O�m���IH�������������So����o�u��S?P�O�KL�O�����>���O ���繏�S��̫������»e��SM��H��IH���n�O��IH���M�*e���S�N��<��O��M����Ti�H�<��P�O�Ȫ��������Sn�O��~��e��\){"R�ٶ��a�"���êPO⵪OP�o�����PO3=3���v��^�Po����u�o��A��o���FTo�������FTL�&Ʃ�U����� ���~��e���o��b�uTM��J�LIX���G���\�����\�`QTKL�O�����>�Ļe����`QTȪ����P&'KD��� �R��DH��X�����R��D�~��eP�~��e��RQTM��J�~��?X��������İ~��e��M��J������Ȫ����P��� ���R��QQ&�N����������G���\��� ������H�+��˝Tm���IH�����������T����IH���M�*e�\\��-ȱȩŨ��H�ZR�™�̫��������u�Sz��s�n�O����Y���֧��֧���֧�����ا] ��Sz��s��O�� ��S ����C�L�I��]����P�O��,�������P�����������S ����C�L�I���ܪ����,���ܪ���S ����C�L�I��=�����,��Ȫ�=����SN����n�O�N���S ���3.��̩���O�����̩�����ľ�N�;�`] � R����J��/��W���̨�O�uQ&�����RQD3PѲ�/������. ��̫��( ���QD�1�G�J�I���������/�*j��B�N�J�ϲ��FT���J��RQ&�����RQD3PѲ�/������ɬ�ì��ϧ��IH����ߌQD�1Ī��M��GO4������ @��MKɴì������FT� J��`]�ì���ëL�Rı� RQT�,�������P�����������,��Ȫ�=��RQQ�,���ܪ�`]�_��0����L�0���/������0��N�D0��������㽽uT����̩��ì���ëL�^0�0��̯M种�\��E��O3�n�Rľ�N�;�FT�O⵪O ���?�O�0�a��PO�0�Hu�S ����C�L�I���I4P�O��,���I4���Sz��s�n��u�Sz��s���P��`��] � RĮ����J�¹Jੳ=��W����۲FT��o���.�����uT�����J�E���uQQ�ҳ��E����FQT�����J�E���y�yuQTG�Jੳ=�E�y\R���� J��`]���,���I4P `�������Ȩ��:�R�¶����n�O�]���]������S�����O�0�a�O�O��O ��S������L|��̫��( �����@�ƱB����8���@G��S���������O�M;�K���M;�K��Pì��㹟����ì��'K�<�Lu�ì���R�3RTM;�K��J�� �� @���������FQTM;�K��P�%��̫ɴ����L.���E���̫ɺ@�+����޴ͺ�����M�̨v�QQQ��� �� @��̫��( �������o��L�����o��L�̨v�QQQ��� �� @��̫��( ������̨�FQS�<�L�<�L���1�RS!����,��RQ!���o/RQS!���3RQQ��ǧ<�L�QS!���oMRQQ!���o��L�o��L�QT̫��( ����RQQG�J'K���'KJ�ϲ������������u�O��O J�G����`]�����G����u����ì��JG�����q��1������`��ϧM@-2 Ū�P���x����P�Ʃ��PKL<���� ƫ���̨���� � ���ϧ�P� ��������B�K �B�ƵP���1��P���){����“�uĪ��L��ē��������uT��Ʃ�ȯ8����ē���������ϧ��������0�XD�b�RQQ��FQT����\){� ƫ��̨�����uİ /���NX�� ƫ���̨�FT���̨��N��G ��RQQQA��&� ���˛��Q��ϧ�O�������I5��P�ů�O0��q��������R�QQQ&y���y��QDK( ��! p����QDZ��QQT��Z����QDK��PĶ������W���P�O���>��1���P�����RQ��Q���L�_ē�M�u��&( ��P&GI�G�J�1M��˝�T���1�̨`�^�O����˝���Ī���e����J� ƫ���̨�\�9,�X��n0 �K���Ǿ���}�����G����~�˟��ǿ��� �H���L���:����'H� Z��̠7��z�� �GH����(L� W�����0�� gH����8̡w�����@ ��H�"�HL����&:�P���H�*Z�X̢���.z�` ��H�2��hL����6��p���H�:��x̣���>�� � I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz� �(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^��� �0�I�b��L�2���f:�Ќ�4�I�jZ��̦6���nz�� �8�I�r���L�:���v�����<�I�z���̧>���~�� �@JЂ��M�B�І:����D'JъZ��ͨF7�юz�� �HGJҒ���(M�JW�Җ���0��LgJӚ���8ͩNw�Ӟ���@ �P�JԢ��HM�R��Ԧ:��P��T�JժZ��XͪV��ծz��` �X�Jֲ���hM�Z��ֶ���p��\�J׺���xͫ^��׾���� �`K�����M�b���:�����d'K��Z���ͬf7���z��� �hGK�Қ���M�jW��ֺ�����lgK������ͭnw������� �p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z��� �x�K�����M�z����������|�K������ͯ~���������L���N����;�����'L� [��ΰ�7��{�� ��GL����(N��W�����0���gL����8α�w�����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2���hN�����6���p����L�:���xγ����>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z��ָε�w��^�������M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v��������M�z����η����~�����N����O�����;�����'N�[��ϸ�7��{�� ��GN���(O��W����0���gN����8Ϲ�w�����@�ЇN����HO�җ���;��P��ԧN��[��XϺַ���{��`���N�����hO���������p����N�����xϻ����������O�����O�����;�񐏼�'O��[��ϼ�7���{����GO�қ���O��W��ֻ������gO������Ͻ�w����������O�����O�����;���@��H���8���&@� X�Ȁ6��x� �F@���(H� V����0�� f@���8ȁv����@��@�"�HH����&8� P���@�*X� XȂ���.x� `��@�2�� hH����6�� p���@�:��xȃ���>���� A�B��H�"��F8����$&A�JX��Ȅ&6��Nx���(FA�R���H�*V��V�����,fA�Z���ȅ.v��^����0�A�b��H�2���f8�Ј�4�A�jX��Ȇ6���nx���8�A�r���H�:���v�����<�A�z���ȇ>���~�� �@B��� I�B�8�!��D&B��X�"ɈF6‘�x�# �HFB����$(I�JV’���%0��LfB����&8ɉNv“���'@ �P�B���(HI�R�”�8�)P��T�B��X�*XɊV�•�x�+` �X�B����,hI�Z�–���-p��\�B����.xɋ^�—���/� �`C���0�I�bØ�8�1���d&C��X�2�Ɍf6Ù�x�3� �hFC�Ҙ�4�I�jVÚָ�5���lfC����6�ɍnvÛ���7� �p�C���8�I�r�Ü�8�9Љ�t�C��X�:�Ɏv�Ý�x�;� �x�C���<�I�z�Þ���=���|�C����>�ɏ~�ß���? ��D��@J��Ġ9�A���&D� Y�Bʐ�6ġy�C ��FD���D(J��VĢ��E0���fD���F8ʑ�vģ��G@ ���D�"�HHJ���Ĥ&9�IP����D�*Y�JXʒ��ĥ.y�K` ���D�2��LhJ���Ħ6��Mp����D�:��Nxʓ��ħ>��O� ��E�B�P�J��ŨF9�Q����&E�JY�R�ʔ�6ũNy�S� ��FE�R��T�J��VŪV��U����fE�Z��V�ʕ�vū^��W� ���E�b�X�J���Ŭf9�YЊ���E�jY�Z�ʖ��ŭny�[� ���E�r��\�J���Ův��]�����E�z��^�ʗ��ů~��_ ��F���`K��ư�9�a���&F��Y�b˘�6Ʊ�y�c ��FF����d(K��VƲ���e0���fF����f8˙�vƳ���g@ �ІF���hHK�Җƴ�9�iP��ԦF��Y�jX˚ֶƵ�y�k` ���F����lhK���ƶ���mp����F����nx˛��Ʒ���o� ��G���p�K��Ǹ�9�q����&G��Y�r�˜�6ǹ�y�s� ��FG�ҙ�t�K��VǺֹ�u����fG����v�˝�vǻ���w� ���G���x�K��Ǽ�9�yЋ���G��Y�z�˞��ǽ�y�{� ���G���|Џ���O��[���Ͼ�����{������O�����O��������������O������Ͽ�������� ������Zk���Jm���Z���VJi��Rk����jk��ZZi���Z)��V[k���Zk���Z����Jm��VZm���Zk���Zk��ZK뭕VZk���Jk���J���Zki��Z[i���J+��VJi���zm��VZ���ZJk���j-���jm��V[k���Zk��VZi���Z-���jk��VKk��V[���RK+���J)���Zo��Zkk���Jk���Z)���Zk���Z���VK)���Z+���Z-��b[+��RZi���Zk���Zi���Zm��VZ���R[)��Vz뭵�jk���Z)��V[m���Z-���Zm���jk���Zk���Zi���jm���Zk���J)���Zk���J)��VZ����Zi��RZm��RZk��V[����Zi��VZ+���J+���J����Jk���Z+���Zk��VJk��^J-���j����Z뵵�Zi��RZ-���j+��V[)���Z+��R[k��V[)���J-���[-��V[+���Jk���Z-��VJ+���Zk���Z+��Rkk���Zk���Z����Z+���Z)��VZk���Z)��Z[k���Zk��VZk���Zk���Jk��Vki���Z/���Z���Z[)��^K)��Vk���V[-��R[i��RJ����Zi���Zm���Zk���jk���Zm���Z���R[+��ZJk���Zk��^jm��VZ����Zm��Vkm���Zi���Z+��VZk���j)��Zk���Zm���J����Z)���Jo���Zm��RJ���RK���RZ+��V[m���Zi��VZk���jm���Z+��Z[i���Z���Rjk��RZ-���Z����Jk��V[+���J)��RZk���Zm��Vj����Z����Zm���Zi��Z[k���Zi���jm��VZ+���j���Vkk���Zi��VK���VJi��V�i��ZJm���Zk���J���VK����j+���Z���RJ-���Z)���Z���VZ���VZk���Zo��VJ+���J)���Z���Zji���Z+��VZ+���j����Kk���Ji���J���V[����j-���z+���Z+���Zm���Jk���Zk���j-���Zk���Jo��VZ+���Z뭶Vkm���Ji���Z���VZ����Zk��R[k��RK+���Zk��VZm���Zi���Z)��RZi���j/���Z)���Zk���Z-��VJi���j+��V[+��ZJ����Zk���Z-��RJi���Jm���Zi���jk���Jk��RZ���V[+��Z[���Vkk��VZ/��Rj+��RKo��ZJ���V[m���Z-��VJk���Zk��RZk���Zk��VLk���Z����Zk��RJk���j-���Zm��ZZ���V[����ji��Vjk���Jk���Ji���Zm���Ji���jm���Zk���Zi���Z)���Zk���J)���Z���VJi���Zk��RZi���j+��V[m���Z-���Z���Z[m��R[m��Rj+���Z���VJ��Rji��VZ+��VZk��V[k���Z+��R[i��R[���VZi��VJ����Z���Vjk��RKk��VZ-���jk��V[k���J��V[m���j���V0<�� 4�9e074d41aed75a43099a4fe40bfe603506f9af62a293f517582061d2b619a9d9bab4954628783a9bcb3c8ec2a3e3f347a8921e9f33f468bc0eee708065f70a4adb1d32c3042636b7ca7b8b9cbfcfc0b1537425f6771848b9e9ecad40b337c96bed3ec172e2e5a7087a2b6ccd2e304252d3841545857686e74979ea4b7ddd0ff091f1f264b59738abebaccc0dde8f02a5a6e6879859695cfc2d9d7ea1037314a456275bfb8c3d8dbdfddfffa00171b22334751666c6d667c8d86a8abb5d6dbece2f113151c5d5b8f8aa3bd00589dab02181d16396e8dc3f5f10e11254394c90e0c70c1cef8213885e6e83d41a7c7f49a0fb63ec7d2158����'���θ^C���Sз,AG��F�̠�cF��L����������<4VZ�N=�(�zPή�����)�� Y�ؑq3'��G� �C�I�����5�Zɯ�zA�^�����{ !����%_�K�N1�x� ���9��xX%"(��j�'�lʗ�(�&������p>(�.�K�e�������:*����_���~Z�Kj�<}�-� q���kU� I�zf�����#s����%��mw�?0���xi��_\���پ�DZ���)7�E{Q?��.�ƶ���{)^��Tk��dk6� ��(|�J4�(�m҅��x&|���v�k�o�D���.�k�{���{ۋ��S���b�����Jޅ𙎁E}�� ��Ԋ��D �@� ��Q4�nC�����M�뀂�:�&eɨu ?�/ ���k�-������*�E�b�?H������\|Ti(I^��9� ^7���Ү��?e>�P� ���#��7��T�*`�PG,7��Y�d@4�55��ދh㎖n]�����Z ��l\�7�2����B ;$7!�ݑPj�1S d���E� �}�>ݠ��sߕ�Ѵ���N��̒`A���r��]\p���Z�Ʋ4����[�(�~�tՇ�K� F���zlQi�fn�� ��q�1 U�_���x;%��SF�{�"u����W�{]bEﮨ���S�e*�(���'�X��8c� ����̈�n�G[@7�~K�0��(C��wRѬ����Y�?|Dz(�Ζ�p��l�P�jߟF�� ���fcيZ����t�����/W0H~A��,���7_b�����CTWP����O�O�H��m��¾X�F��X���n�yǁ�N� (��/��b��`�(�-]�븉iw���S0U��-fe釯��DW��jp֧愇��'1����l� ��suFB~4s�l'D5��C�k��N�#�)�-���Z��1�.!Q�U��)n���{ȋ�0��}a�ŭ*���eRxD"�j����ՠG�xY����ˀ�b @���*M�o������{�����[�F����i��{U��.>�x�8��V��������H=;���(�QS��5/��o���3Dm0�~ܺ �Y�����n�'�/V����%P�匇���'�����@=���^ׂ��j�!h��K�.Ӟe�} @Z�D���T����h�E�~�Q���*+))hA�,5��P3�2���v��6 Z*�]Eg�?�i�D���>�+8�Lq �/�sn���16����� ��)�nb�& 7r�,�����,�?��j��B�?�B;@���0W&q`d��n��$�� 6o� thȲ�� C�.A����X��Sqn�I�U� �L��EM�Jta���ݶu ����@P7?}�4��m���� )���rr>U�����:�l����R��z���n��*�A�����n��CKZ��0T��cƪJ���b�S�xML܄g�p�}a����ZOw��<��C?7�P�!s7��1 ���nb���?�Ӧޛ�'�n>;�6͎8E�)�������� ���,��% ��:�s]/lA��"���v���uM��nS�/����$3o��a��{� f��x��t� k�(̋\� �YX����es8��zm��&����_E�JO+���&�g�3����Vg)"��(뮴ū�H��� �d�4JO�M��"�g5g}�M�s� ���q��h0_L�F[U��Sh fc��B���%�R�k��YͮB��a?�ɇ� +��r|#rm��ȕ��8:��m�m�8 ��4����!v&��P�$�����{H�&�|7���YH�Y�E���b�})�E'H�Suޕ�Z�j����6��c"�u��n[j !�K���i(��#ˊ��D�R��Y?���8wkNJ����ڢ����K���n�if����S��'�2E��+�>�����9z[{�qG�k���4����8�]�V6�Ȋ&��Tw�ˑb�<ۀ���-�˰��p�]k��[ ��8DڳG�F��� �x9�b�q����2FͰ.��A��� Hv����`֙�nq x០�Q8��Zu�̥���C>��j7J4�Y��|��1�z����d���D�!��q���tY���i�s>���0�����]�o�_��f�Z8ݲ�� �ټ�c�f��h�?���),�1><��7�[�� R�{�%�eu��#%�c���p�� t�.zP�s����d�͋)���� ��{c��z҈ A� ƌl8��a���kI�H��� �ߜ�W(��>In�(�;�j��#Jm�Nk�Ŕ]�(���R�([��.7�&&�u�R��Z��#�Ɓ��SI0y'J�- 5�?�(����zu��� �Hd. �&>p7��Vz}����yԻsR����[�B#�{A�n���%ɂ{�6I���� +�Q�:�GKü�Zښ�- v�_�]pu�'a���s#.�ܦܧ��gD�xB�M�\ Ĺd��q�U�dn��R� �5��H �O%(=���� �K����5HxV��v�� �3u��Uȿ�x.G���s�S^l3vUPx9DV�[�w]>��������hƲ��nY������x�g��J�'XQb@���b�k�L�L�]����>Yc:�gQ �]Ϝd~h�,OA�u�j�aJ߬�7�&��� ��ގS��W���Z3���F�`���V�i�i���H�0 C�E��ޅ�db�F����j��b��j�2�S���i���iʼn]��G�� ��1�q�][�A��+q����kC�)�[��5Hjl��M���€GUcw���a���I���U�aB�$�)���9܀R���m ���d{l���p k�����Yq���~^m2'�n��3���Ve٪m��,9БIƴ���1s2�~����n �9OE?y�~��3� щ�-&5��[����H�T�e��jl��Aϐ�T#>�>��?�=��e���FH�Ǟe�v\��q@"�ri�o��tG�VNءPX�T$��t��s����5��wX<�0�,{ �[�G ����O뭰����W��#�pTY"�s-���:ڸ[���w�;qe�?[�"����`1�ZAE�L �'�"�� ���uQ�M��� ��rLUa���s����!��{�S�nBA�z�v������TD � ��Ƞ���)���|m�Ɲ��e�?�C�M�������;�&�^Q��ϋb� bh�ɥ���Χ�Z@v��� .����p�8�-\���"�uUe����������b`jUD��9��'��hxA�{���9�y4e2J�lj��� ��� V.zNN$p��m�Vh��RG���hC��@sR��ϥ+�������L���5�J��5�/kc�м�1�j��G�n��!78��5H���|�N���b���p��'Ps �9P� ������_��Z�iz~(��D�q�hy�/�a�կ!��Ud�4������1�+qrUA��hv�*�f���97��������� �܌ߵJ8�.XG�����W���=`�,�h� ��n��m��a��+� ��)��Ȍ^��s켐�1(��+a�D UGIv d��G7��2�\+�lh���s�� ��ym�!j��w�h�.f�w���ks?�������ܨ�������6O3$R�/���Dj������~��tJ�E͑¹��y�-0�M�׭A��Λ��=�3�Q-���x����ma�|`����GK�V�� �4�{i����d� ���4�#�`�J���p�ˇ5Vނ,eA��K� [��� ,���nr�b��bnp0�>�!�y��[�� >�z�X E��El�8��A�����$%�#ٟ��]>�u� g�0�j1�v�U��iV�U�1ʧ���5p9ym9?90s�J� p�����wO���c⛣|ڡ ��C��/w��v�N��_�t��0x�ǡ�竎��2��"#-��o��:i ws<� ��G�����*ޭ��͚ �{�M߮�������:�����h������eeEF��(��ɮ��T϶���6q��z|�����%��x�#��da/'��Մ�� ko�����"�����Ҳ�)9��"���iO8�`�L�Ρ�ǃ=�;��{r���V)���'�����B\p�(vݵA���e��Ye�Pp�Gь�M�Q�+��05O�� �c��3��o`��>#~R*�x�z�(�Y�F�����I��x��tGQ��ʁ���Xyrs�9�Jl�_at���� dt��x>ԕ��-=�.&�.h��YH�"��9�X�3īZ���`� a~�\��A8��8 ����3MZ�1� 8q��:����&Xt-���Ul�.�+��0�xa 6�o�,�'y3i����,n��GK���>QQ&��<�D o[L8_#<�ɩB�ʹ���y�9X"?yEpM�����ɱI�A��{���f�M<�� ����1��2E���p���<+�zNb2���$!�O�L+�]�L��Vf�,�?���:�<�/���W�ȣv��ʛu�ܚ���Y���f���/���\�=��y��Z�n� V��y��9�{�e� I�|���U�,>�5w��#�L�Pk+�I�����S���p"��1)0�d, �{�Xs��"�V��&�p�/�#�e��gS)f/�h,R{����4X��%ʷ�z���>%}��fʶKGA�e)�;Z!r��Tϛ�~��:��$� �O�0s�i0�Uz�N�r�H����[�$G0�d�'�N5)Ake靐�E��f��<�����4K�rl�V�g�p�� ��;�7z��y��)e��y�:U�[ylC���?"H1�{�P��S�C�U���[o�L�?�\���1��*i�ZM��mM�gj�;ZZ�1�x�(��X=z���q���������H�2d�m��'���}d b���GE�i�}m��=��K�� N:�Okn�Ev���t6�%��l������sYd��5+��.�|2l`�1j1]VE:���c��ў��18�|�**�������8��3�ٟ���R��n��0�y\^^����O*>}�!Y��ic3<�X,H3I��󏠩�Mnj���[ 2�9�K7��n{�l`��_O�{T_#)5*��� �-� yZ����-y�Z���!+�8�4�g��A�@5�N�?9V�0�,I��Q$���4��'~�fW�)��Yވ�B^�}ҹC�7��� |[7H(�k��̱b\�O�����>`l�� p�l�Vu�8)Q \F"�J#� (��41���Գ>�AZ2�k �zq�P�����L(������'����yN�P��Ѱ��u@�S�W�+�9�y��N4ܔ�#�ǟ%�^�|2�$��'���I����ߖ�o��_7Y�����Q�B7G�6�6�=� �u���:���b%��^C��洽�@����f�Ạ�ҕ���j�#��3 8Y�t�7��� �[��(�L�?�9��[�f4V���b^���O�z۷��Ś��f"��_ �G��l�t/���9�8���?�@=)o4����!-�����`�q��@�MGrZR��Ϝ��$ vO��#�eN����{�8�?�x�����P �����9�bK��k �i������Lh��L�:C�{=vHF��E�`�>�m���� 8��� V�G��?��8�߂Cٚ"(��L� ���T��e6�+5����6�4��Θ���)���~� (�F��f�+p�;q�s��C7,�����"[f�� ��!Y�G�~� Us�R'n��<��a��g��Pj���s;.� ���[����t�g�d��g�i��s����E�җr/c���A�p(2�)Вm@N� �)jY��•S��s��� � $F�H��x��_:��!���5h��qH��k��{�F�d6��8�?Zw:3���P* ��1���FD�1G9{�Н�h|j��JY�j�z�VcyD��U�sw�2�� �I�KGš��������І�x�����i�1��@-g�`c�]�Y�>9��VY'�~�"]�m�p�O�׃p#u�y�2 ���k��-V���T�s A��fw�hB�ٛK���iJ�nS��U P�0������`.D�X?ik�0]W˻{ۖ�9dt-I���0Kȼ�W����n}� �G��\M,�@:�.��Rh��%b�9:�H[���u�}�Z5���kX��]k �*�L#Ct�m���f#���xw���}?3;� ��[NŴ���x�&��j&��yY��{K��t����U�D�i���Ld��ۑ� ���/A҉��w�-�a��Do���y�y/e�?�  -|a�|���-n����������G�3�XnC�2OI�� ��\O|ԏ���t%��*������A���,JG�m��e8+�[��9,��y�8��[��(s�e�Fb�s��~����Y.�/��������f�Q8S-���Q�]�vN��#.H�k�w�Ԫ����1�-b��~.Gx@���pS��=�ϐ.b:�a������x<����t���T�?aI���E������/��U��[����>�mg�^�DC���VMC�����֌J��N����t�AaD�xn�� �?^qg�"�c!����n�$��,� �U;�([�9�o5��T�����R�{Tq���M�ϵ���0�89��:�qA��r��~Ա�`���"�G��d�"GA�r���M,���"��)�X�b�*b�ˢ.�{4O7..23,k'�!�� �ެ� �D���{'�; �0z�u�����ǹ5��?�>����`-z���ʘ> ��h����v̤>H>�� Vg���ȓg��?�m�u�,���D6# �ARqr954=�&�\�.*�B���nx���r��- \�P�?��y ��� �|�,N+�Cy��l�#�V40>TD�����[��#�#��2r��2&d�����zH����3n?��&_��=��9�ij�0S�,���H����k *} )�nܴ��%�8tn��ܐh�� *���>;�?;���;�K������U�g�<�y;���)��v��5��f�<[�o���;W�M�����HdC^�:`�M�RD/��ӭwE �hն���5�o�5�Ѽ?�]A�H5�k$��I��WZ �dg�(B�� �����I���/��1�p?4Ԉ�l�1�}I�W�Ǹ� |�,ANL�K~��t=C 6s����?�4BjV��.�Ɩer��R�y��"2���|u����S�\���X�1� ����jm9�9Ύ�(�8�X����� :+�s�w|pN��k�^��M��O�;I�$����6bK"c���9NG��I��$��������)�n���T �[�-�UPk^�H�/��V����5ɋ���/G�gj��uL�8��S+΅�8�ks��SLAH�*�rP�F[���M� �����eS9H]�m٣��H�@�`����&y�74f����S����)9[A�����jw�Ȳ��@� ʼno���P��f���H"x-��@U��˞߽�ő����=R����5��� �#���5Z����ky4v.�6m��� ^FD������ 8T㏵�W�uq]'5]�W�ɐ=��f)�[������{4# �&��V�����$?�^tp��U���9���;����0 �Zgg�h�4 `���7��{����A�g� �2.��M;Y���j���� �&�L����oy(<��sg+Kbb�itݮ$X��#<������d�� cƒw:k=�����(� �ѶQ��!o�o X�Q�<֢���.����3�J�,U�k� %M�:� ��V�P�(J�酘u�{�ګ:���?m4ٯ'�oLq����՝;6~�9B�i軙���nܜ]}xN��]])7��L����QR���u� ���2Te��XvR�QCkX?�$��9|�̐b�r��=s1=B���� �4�|KC#���1O���&�u�{�k`'��G�� 3a����_�x�@�8���-�dc�_v� ƒ�Ո>�k8z��t��JP�����$� Z�.���׎�l�A4�\E�Vޭy��l<�t�%L��k�$7���E>s���F�hR��$z#��g���Y_��CY,��i�Z��5�#]���x� /���yU;�����!� ����=ÍO�QH��Hp˜�7�U���MVѺQ���h�hL�u��� %��u�:��!k�I�x6\t��4�P�ah���c���/��=��9�V��k���L&�V�/�7�5)��d���;s�KDr�;��z�1⫏�~gO^���8����c�>��%��dha� ���.¬�jK 5ZbBzA�ѹ�t�m�G �K)"�����(�N���#1Bk24��f�-��-�/�� � :s��� ���;I��v��{���}�T�������H_�����wL t`G>�N�� As6@�Fv����fF{��@,)��ɝ�Rt m�?O�� �0x���+���B�� ����(i����%�ӟr�}\*�����S�4 ]��eAY��"K:V�#�&���/��,����H���f\����ى�<`cp�̇* ��'��0=o-%����-6����n�<��h�*���K���Wl̄�@~$iZ��7͇᛫#sB��Te{��� m�|�=��V�B�����`��%'<~p��Y����s��25��]���ك��� oeI�^�"�h��nJ�-.�AF�I2�(p=���W��9 �frE}:�x!'���Ngq�����זi j�&��W��ǒ �?b�#�\��\��r"���s�2�{���< �+�B��BA�E�`�e�ze���Wz���_g��"K���E��[�@uXy�I��l��Z%U�~ �>4��{�7̼,zF�M���]ݡՊ��>�T�������/T���R��ٻ�y ɚp �t,D�������]#�B�j�����{J:��G��� ;�3��^�`��<[�� ��Yc�\b�kS�D�l�����S��&xհ��8�p�.�� �.v _����s�RF�5� ��o��u��|�s�^e�}Sw�����bq��� �?��n��������\��n��!c%?��ɞ�k�-��V�C1�gWj�jӽLE%tA=���G4�r��K���X�ΰ�RR��IGF��ҙ�E�ʈc ����|\�<�i���4IA�<���0��2���a펛~�s�fjIӥ�����74cN� l�G���)6���ނ�wu�C��?ŠImt����baJ��q��a���M(\��$���Eq��ș;�D*�~������ ��zD|j��wE����UJ��h��v���$��4�46na���%Q�> ��[״~�0����B�9��� �I>�����pf � q��W&������S���6�.Dr-��3�Gg���7Pg[���RsUĶ��{C���-5[��_N ,uW(4!;nn���$�1|�� j7�噋� �e!�vM����ˮW��L{����<= �PKa?!�uiV?Tݏ&o��G:����=�ݻ༨�;;���_�BB�CFv =��x�A�5�C�=��L1������D}Faz�X�( �l�C.��~ا{�(��K����//��ޅ�*K�@�/�!��p/�$71b�\��� x��Ù�� 1|����f�A���{�"����Gy��;5N��nw��DSBqg6���;��Qq����Ϟ������U%N��� �s����Wa�E�ԋ� F����K$6�^I�L�Y'�l���ևΡ�`_w J��CJi�v� �'f�I�,[;>C~]��� ��~^��g� r7�?ŽBn�nS\��'�2~�;1�w��w�������:�h~ PJ �fI� t|7��3���а̧��ON ��%.� �-�f5#�ߡX�.�pIf���'95�ҹ��\ś�&�K�{q����0F��T��-z���L�IJ����� ,��8~ �w7��`e��X�����zY�]kG�|'J,jv��mϖ����,�\n��3��A:VC&0�ư�ލ�*���(A���Q����'),ثbEe٬�:��4� ��$��,�L�RmFF���&3�P�IpR��s׸9T�B�ii�H�ع ��n��L��~B:̶����㾧������YTY!��i�֞��8�l�����2�����b!�z���#'���F��\�w�ӹɔ!�%��&�9��>���`?%Ӑ"��1b455\�i,o��D��9�-ѷ���/�`�����ߥS��x唧Х�o�3L��T :��o;�H 'X�ގ������NY|���"w��:��c�����*3h,��Z-ΪB���b@&[������+��cu;cO�'B���G���x����(]�EGFnμ fy���� ��� q� �{,�`�5� y/| 7�Y1���1i�@�lY,X�;�S����֬�%6�5L@�!���˼�����z��Ջ��@��[�kf��?�DT���#���褋��m��t�UY�2*��U�. �)��j�y��2�����3fw�h��fI������޵)H��Ý�[Z���>� �r��{�[����� ���Q8y5����e�8c�E? ]'�� �/V���nc'4��� Cx,'�����NN��,5�H8z����O �l�D���Z����@�&�I� h�dm��UFvCdy15������s# �[���G7/�Z��E�������U�Yij��� ��M��L��� ����� ܲXo����6d�z��y\0���C]"����,�Tz �[�M�ۇ��;�N���3�Qn0W�V��P[����EN{���n��d�^�T�uu�����`J8Q�Ո5���{��]��m ����#1Z巌H�=�)�f�3�LӤ�M4$/��P�FD�i���=Vc�'�18�@���!�qhIIԕU�Vú��\�w��n�z��qU�� � �1�<��&Yi�΅��&���(t�� 7�£��ا��Tg_Ê�s]��wWe� �X���s��1�f��� ��,IL]_���h���50���.�ft����n���U� ��� �o}rhޑz�(6��bE T˰�~��_���V�u�u>�l�����u��#��w>c��C]i'�]���,��ھ�Ο���Rdi�J/�~�sn㰤���΀�K=u��!�L�T���:xM.�zZŔKO����p� �ul�����'�(Mv����7�&7�3��M�T��l1�K�5ʜ W�ǀRt>�ƃeM2ݬ#�*DG�+{�V�r?ЬdrF�;M���Ђ��:?�N�0��0�!ѸK��G��&0�yq�#Q�tu�eQ�91�>�'i7�|���p�@`�텔a�3��a��Ҥ=�`ݔS���x6w[�O�+}JD����A�lE8n ��u� R�.dV�k���#��w���)ƅ���L��f�P�P%�CL���%��Q�1w� �~j��,��D���H�՘i���@��JȊ�fun�Ύ',�ޖG���"H"����h�h9_�ј*gҞ��e��M��L��_z����_FMY��M��zh��t;t>Cd�������D�Q0+u3��N�c�ڢ‚���@���q]�8=��jHͷs-�!�^kc2@��V�<}���y��0ϚA �פ�����\uj����$��ތ)�D�������;Q��&y��V�K,�d )T����x��b�S��V/�ͺK�z�Vۡ��� �C��Y&RH���](����� ��-E�q����.�&�:��Pkn�%�&П��JF����_9�&��� N�ç;�5f��t�%�{��nz�k:;Dh�9� Ѯ@��"�@� ��������p�8�{R��5*݉������JF���w��?J��%���׀CԪ�A�,���Z�a�^��H�0�L��;�D&�C��V1�u�x7ȴ.&C���{v�[A]�Ch��\�x�����Q�����ś_���y��Q�3-#��nuR�hE�wHD3X,�ٺ[����=��42�b˝��Elˋ�pæ���������Y���?�S����T���ᡲ���b��D�E�̔���ܕ��"�/���n_���0~�J{��E�5��&����JWor�6�O���^�t �B=�� +���p��iJ]Q�yF���C@�s�����5� K���EG��>� �TrX� ����s����m���\y�`�3�� �?"�q�"�{�h���B����� f��ww�e�q��Cѱ���V,^C�� � :���=�"�N;Q��Q}�=�"sS��.)р(�+���lRD�G���T�����ۏ�6&e���7f��"J@�y1㒳�Η�X�����f�|%�a�n�dAƣ� S�~�*1�12R@�/ �_&�1�R��h�&��� 2��P@:1]m���������zD��]5ٸ ��Ll��Ҏq�Q�2�!Y_ ��!d�h B��A��#�l [���ڞ\�}�Q�h3{ByUH�!����t�"����Kf��L���R�J/a^��T�'�Y���;Ҙ����ljE�s *�OVa�T��X�5l����� �u�8롫��k~b 4����������� � #�moٜM��)=i~����1#��Z�{�o$�������Q�ݛa乺�V7]�8� �֫��9c[�����D�=T`m�tK������QP������bo��NU�|N�r�rDb�2xr]��H�5Ǹ�]z�_���y[�����K��.�������^��\�Ő!�q���ᏸ�2%�S�+��z¤;"]GpH�C(Vr�D �N�(d�l��!~�o�ǐ��3;�fb|P�x����\��L����Lal����4�'�FYV^����/��X����G��QU�_�E��s*]& 9G�8��#5�ZY �\��yC�'Q�^ ���n�D��"��� ��,����x��eũ�a �UF��[�&s�Pǧ���ܻ��]Lא�+AD�gŔ�ع�A��1���$w��B#�!.!�#W��%��n�j!���|y��\͘��B�'�{�)%��O/�'�d�dz�0G���37���)�q��u����mv����:!k��E�3�e�IӵX�aL*���Ts��P��r6լ���/h�.=�� �'.��Hz�2�_�vJ�x�����5�����i�n�R`�:�� =��J/��N�e����,x25SF�� ����_�m�Z�CC|})P#B�n�2I�n4�UX�Q���J���}:�����)���>�؞��(�z �gH@pA[��r�Ab��ԣu#�� �a��.v��n6��i���S��%���"B�F�K�E�0�<~1���x�Ҙ�"�ɃM���ʌ��K� m�J�D6'���+9���k����"�Vgš��]G���( ���Q�"�[��]�J[��K�?�R�U$ڢmʧ�i0Ę�C\���~�k}��ݸ�*�$ �rB_B��]��L:�IJBS&L�mϢ�2K��BRUB�ȕ |r5u ��%e�!���� +��T���]�B�F��s���=��_q�% j��w���2Lte�#'�Y未L�*��آr��},�n aJ,�R�`��G|�t�9e�0�/�n�W�g^��-s���Cu��s^6>����~�9V������f,��u�D�g�(@G�6��M�g��p�r u(��??�*�.皙PO�� ��O�� l�H.��_�y��ݧo���Di��B���?�٘��>h�����?�a� g���Qq|�� 1��+��z�r�V:2�X��`"U�Qo�y�D���-vU���t��}�ˋ�PHZ��������M�ʄ.\��#S�>�9:�X��1 w���Z9���u�-�1��ц^�T* ��mP��/���y�X����[-�/��������׳���^��������Ù�ȫ�{�gc�oq�� �`�0��O+���^�?�s�YH;X��y��b�����h�:����wZD^�s�Eg�1�n�uG�EJ��^��,q5�C���|�5�}zkN�����=���� U�:��O]����\+��)��]����a�@�s�� *�K���g�𳶆��:�������mF�Y���DVXB��.�FJWtj���uj���4)�@�m:�= ����b���& !�SW:�=�^N�g P Dqy�‰{�E)q �7g�~�������Q�o�i��~�Z߬0>x�Y�|i������>�G��S౞a2v���@��f̌�9]�a4��%&� Y��֘�}|��X��XBq�\.�A�4sD1%L��'|��f S�0�p��y� ���[�i!�u4'�@�꺐[_�VrƎI T���ޘi)3ig�ۆFq@ݞ:���zĪ;�����ltl������\*­>�$�m�O%�Y����%���1���BW���Bq�7X�DX�4h3�7�>���.[ �=�� �Ii1UŃL��� �L�~� p�P��<���>ڿ�D.u��5r@��Z^�j�`yv��0�`#7lطs{���TD�V���X³ �/](%��Z��n���ó�H� ��-��!�Z����9��>{��]2QVL��gS �_8� �y m��ǂ�QW����9h*�,Ft���+�JG�ھPEzsv"�{�5����r��-55��#�������+5��;O�T;����%��� �F�효���W� �r¹�ā�����2�V��o���9�9*�p���+O#*U�, �Y"���ڝ�oȹ` j�M\f=��� ��X�OF '�L=Zٟ|Ak�>1��z;� H��T�Mu�� � �sQ���[(� XD�j��IB�7O�w$����������q�o������m�g n¹��]^&�F����y�bLP�`!>��0���uP�� wS)�Xarr�SF�Z�>��m���$1{q� �?����F���R�YX������RB�J�A� !����s�GţT�}�KR(�e;�e��u��������;�vb�4 ��?=cw���R�U�zV���cu�,�|1(�{Ї�;�����t0G0� �0_+R�L��"�U��S�D<(��B�0[B�.w�V�S4�����P��� �� �������R�����Q���M�|����i���~g���<��=f�sȝ�ӹ� Q���}5�b5O��'�=��Ŋ�a�����g1�`����fh�q����(�UuE(ȩ�i���u].Dd$� Y����Tw%N�<� 7G%,�R[�� ��w��8 �Z^�+�q/��8�}_ �=��\�0�$W��)�2Ƶ�Q�G�|S"�Vy��"R~O\!c!�lj|(�c��fn��y`����� n���=�_46��̱�h~`�z:;�C��jE��w� ��� b�v�m�3%�n����$�c'p�[�?:��#:W"���6�A�r"��?����QV��_��H#����?��~��K,��X��×` h/ߤ{��h'A��n�H�y�3bV"��Uh<��8R�|�r_�.s&X�I�V��� � ��{�er=< �9�-}/��Ԅ��o����f�� ᷛ߈�i��kk8d�v�W�;ۖ���I�����OvK���g��0�$��p�t�P�Q��:�~�a�5�a�D���{���� Uh�� -d&�Ӫ� ��o���n�5D����w���{�p�T%�]yվ���}��k�Ds��sjw�<���1��#��=���ɬ��K\�C�"W��;������t�$�������x��.ފ9�n��������8:�6�f�#���NE�^�I�VI���nϽ���Bs��9�\�:e�5h�z�%��V��x11v�GA��c���{�O�U���~��ul�"B��9,�‡�JN^}���@���x,$:� �!h �^h����t��[H�.���>�c(��(��s@�d��f7`�+��|^�j�����8O�&�(�Հ˳Sm 7��x�ö�h��O.��H�%�Q�K:Lp�ڛx�3y� X\B}� ӝ�NĆ\v,��p��,��rǎĤ��4%�{��`q?Q�$�>� ���J�� �<���9�+ WqV?��$l'��r��! t�$}���#“ ��1�]j 5��-$�G��x�Q����zc��H����YIw��L��t�@Q��W �S��m�ފ�oq���'�q�XH]��r�k'�0!ft������M�jvl�?��NX�_,���~�Wq`���c�#CB��{��n4�Ҟt��X�O�wSM��K������+�� �M4�}�dq�/W���X�WC��/���� �ȧ����)x�)__�5���b�W��*���i<e�wd�Dh~����w�* ��$H���e q�$�G�x�9c�rc�R>PO���]��X�w�-���A� & Y���j�� � )�ٯok�ɲC�t'HƮNA����nv�:\��M���$WL|^�!ѫS�jia���O���q�C�d3)�i]Wn����I��QY�k�> ~���D~z��Cu��z �O�_[ȍV��Q���]�V!�����K�r���p�>r��� �m0�!��ב>e�\a� ��.��s]��gJ�#�5Z��S#2�����$��^�r�Z5���l�?���f� ��pXm;���WVw��TzA� .m身�������5�^�]B��~�R͋���d�����A �R(#q�: }�~�;�J.�eCzj�܉�^��/�x�|� �:�p�b���I~I���[y a�~�:��J;%ȫ�[]�m�9�ܰ��\��b�='g�=Y <;F�� ���������/��1�ZL�>x���9��ړ�gf�Y�p����f�� ��w���]�hV���wK Y<�09 �����|o�P��n���7���+A�B����m� q��C�Օ3[Cnp��a�2��\������#̇ ��(P%��|+���}�m3��F�a�]y� ��u�˃��c�1n�uU�ۺ6(�;<|��b�<�VG�Nx��� ��L`�k�M�*S�Jio(��/���M.˸<�&�Dj���>Z17��� xӃ��%�eJ��bt,�۳��<^g:���n��0z�F����f���%��W %�*6y�"&Q���8=�,cFA����| #�C�1|���Q�j��Zߩ�S?~��!����#�ҧ�4��U�����p�&ڲ�/Y�'� � �8��RJف��v���H!t��j�d vt]8�[�����~��ߋTA��5*DaS�0��s2 �`�N������"�J����w�sDn��1$c��qI6�� ��%}k��u�6����]�?�t��M\��iwG1q�U�y"&Ҟ��j�=�qdv�*L�!V�����<��Q]�q" ǚȌ��/O/�b�ԌT��z�0�  }9��{88�~��Z IOi,�iR��N�k��n4`'�r��Ih���r��%�[���s1!�@����Z�[�o|���(ǩ=|q?ط"3���Z�nQ����W��N�v6#~k�!t�-ye�]m@م���uܴ���C�B��vMV�f�� ��$S�;�Q���E��3���z2�������ݠlm\�����۲z���OM7��A�ϣ�/�x�84l���\��SfT� ���N ���ĵ\f�6X~�p"��n����b�rB0}1���wc:��R��a���A�Dxm�ٖ��=��t�RU�5��@BF ��<1�?\f}�}�{vW�5�d�A;� �d5� �g���ne�Rw./ 6��=��3W}��Mk�U~�=˙��L�<�IdS.H!���n���Ú�"��$����D^{G����S��������c����-�L���C������7<=x�}[�o^��9�0G�#���Bnt:�F��/o�ɜ�S��y��ۚ�r�M�J���l�g3���8��=��a��{���В1�܆��x���;BRPb��.[��g���6�{�x�����dK4��5H��~h����P�P@0j A|��x���"��d�� M+tG�I6�g��k� �6��e���˦NYCX�+���K��X{�v�d�4��[l�z3����fE�E�Vb 2�F��3���;)'�a���'>c��� �+~T��'�KFsx0�r\L�]7fPas����M�DZ��|�V��!�5��yYퟶ�B����]�g�U��X;��`��(³� ����HH��a@�3��[o��z�y�`3N��z�_���s�6G���+��v�f�nh�۶��.�?�k�e�*�&t���o�����5���}hj���W/WC1Ls��Q�����2�y����U��#��#_d�?�� "�)GB���2���&�A�M�_̚m$ ���X��8D������F��j�zS8�in*y��|��^�߯`��\�s�E��<_ΥG&u��)������b���$���Y��t�.m��N�r�4�H0�&�k����hPw�hx������ˆ�� �6�~t ��XA���g��+��/���I�(�9cp���O�d�VQ�4�{E�-ہ�VJc�s�^�%p.6����q.��y$Q��r�Ա��<��8Mt��$Z�݅�M`U�z��/�BK-*Z���� �4 iXԠ(b��i_%q�p��9)��W��j�Yq�Sb a��O��e�4z�Qw�$:���b�j�T2�_7Z���"�_(V��Sn �kcqk�������e���@+�d� Ci�,���TJ� z����4���䚛f%g�\�Wdi<ۛ���iK�S��(yZ��!i��dc�R7���z�s'�ڗ"Q�7q/� xK������xy��<�O�-��Iz��ċ��mT��S��[q����%��P�턃%$O Dz���sަWI�T�����{ ���2vT�V� 9�ж��� �a�f�^���F ���*�i�.k0��5�M�v�ݟ��֌n�|�Ȳ��Z7��� l ٖ��LF<�PpV!�~�Y� �1���Ըh���)#�cK'2J*:�a M�2jY���)��T�Iɉ!�0Nq���;�҅j�,\ (+X�Q ��S�:M�ϴ��V#3!�Vno�H��S���٤�'�Δ 3m�МE���1�_�� `[�K7�� ��S ���*v�����V�M�Ue/�m��1�0��V>j!-AE�f���**��=[ Ofi!��� '���6��1� '��o��� j%{��3Q皬j�+Z��0*�S�� Vd�k��o�K]��ҥ��_��{ž�1+"�E.��m&� �jh \F��]0]��sy�n��v׮j��x��J�|G��oseyRg����x=��#��'u¯��`eK��-�Pa(�4~���Yl풧V�B�V�j����c'�z*�}�)�3q�� ��9�i�!�'g��7���1��n�9J������$��jne �R�h ��]�]�7���#ǫ����W3�DL���R���1��Ժ��v�v�[uD"���?3�����hJ��ݾ�%y�#.�HW�X@�'�e�f[x"p���1�R+�o%��s�ȶl|i�E��.��T�����%���C/���W~�c*,s't�fn�XV�# T��������l9��E�ӫ�LkJ�����g��'a+��f��٫�e)刖�3]ҽ�{�A�†o�-��]�BENka��c�}ef<8 ���j���YL��Ӌӊ�8����w�g�bA���N�ߥ\y�r��r�} mT��!LAK��Wu�P��ZW%r�.���1I)uC����u.LJ]��eE9��~�Qܵ�1/��6E 9O�L�2��V5���:Ǵ�ݑ��.���6ёmw7��9Х.���ЦE,E�8>�^U��'���� ����%���[�N�?ϸ�n�ާت�w �� =�e����8r[g�V�n|�^>�fZE���r��0�c~�H����;�^���g�?��cle��Ш6�[�[�7 �[(��(UJ��6��t:/�z���Kij���]����C!�.)۟ުg�A���K�Q7�C`��E�#�.:A4DN%�O*�0��Σ�$�f),���SD��@�/����"�z�?^��Lq��D2}^����_�(�e�i�t�B��q0[�K�\\�a��'��������߂��6�:��V&>X109��#�!+�h�/�[��HLX|�!S���rV"p���oݜ�JEX �F^��<���0�1Vc9d>��,u�'G��.��yv���:"��g��JAV�i�J󐓲�ިˤ���V� �Yf����� �Ә�S?} ���ܱgh�� �+P�Ή/R���5� =�Қ�'�Z�۟�:4��G���˞��Y�8=j����?[�|����U��N���������ѸB����3����o� �d����A ��[�Cނ֌j�j�Rf��1d���:��󏃔�ok��ޮ|Y��0�ٱ d�(#`��5;�� Ŝ�k��8��0_.���M̊� O�te-�0}�.QFߎ��ǟ"g�� �p�� C�Q.���������>�N����U��y��E̡2XHo���T�U{#p۱ :�B�y�K}�5 /U��>�=�s���Wc攩'k1�}>����/=��<�k�m@B�K򋺧��.���?���2%(p���I+��$>k<W�o���Ɖc[,-4���0D�>(��j��N���+tc$�)@��?ECEȟ�Vv��h��X���}��F���2j��C3 ���o<١�5 �6e��@��,�u";=�1:W����V�(�����fn�W�VPn��Dq��O��%*3�;����F�;�3�R�Gt�'�����V�H��\G��l?_��b��??�f��^�äR� ځ2ղ̂���P�E�����D�n� �p�/B¿��=c���3K({��݋�" ��3o@� �=��@oI�^>�����?���k�h0Mt�a����ip�R��<:�֞V.��X�![#��D���a� 1턝�����F���䐏#Ȉ�D�R���hȆ����Fg�������|{��O�x�B%e1<�F)<�9�w1�� =5N��T-I��x4�|�Y>��5a�ȀȠ�u'*�w��?� ��3U��TP���� ��k g+ �oUP�����N=^�x4>3R'J����s"���,_3$n9�"����)K��S+1�m���^b�����=L���_8�&|M�9�UO���Mㆨ�^ qu�}�W_EЙ˼#� �u� $J��cZ�d�ڋd��12�d���,��m �=T���� o���Ʈ��YC������#1��'R��x���0��-��z�n��)��^�E�����ki{(F�_��o)C���A� �_� ~*s�����Y ;F9�C'��� p�;�y4zk�fԺ��#�s�[-`{M+������ezqz�!]��e���]_ ��uq�0%6��+b���G �WT��x�;�}v�i}4�xI# �����t��w�F�j � ч��O���,� IYN�QA$��m&��|�u�������t� )"?�-`S"���7��mt$� Ss��ܘE�����ۨ��ow�44Z&�� YWM-!_GM(�V� � �g����˄��Z�G$�fR0���B��Hcˈ���M�".�g��c)� Z��W﹥C� ��*/�����ʵ��au� ����1�~*��_�\��n�-�, .:�yL�D�����T��N/��NK =�f��OQ��ᯰ f��L��k<� ���m�Ў��֘���I��۸�6�%$c[�pя��{����K��e��)x�D01׉Ő_� ����6��/k�Q��T�-�NN�̞v�������R�E\ �^7�܀^� AAt�tֵ�Ý��3̗�(#�m���"g���-�'��ܙM� �^Ǚ���D���e�n8*J���U���oU��!s��s�򎾀��Ҏ6�"�����`���n у�F�7��9�5�D�^�1����6f�ȄxS�7P�|º�?�L�_��(O�M�LJx��c��4ӶA�y�����:<�6�(�K>��RÏ2���W$�mrQQ�h�~�"�g�G[�`��V�����T�.�.���(�o���[��""t��h�W ��љVV� F��ѧ^�����:�� �D�+=�8]i���G�];�NĸP�@'��q���|�g��g����0���ӭ�\��e��>/�^�/1�?ٻހ;M/�]L�� ���p��kԌ &沖�����F֥6��1x����|�^��T���:�J_�U�5r$ S��'�)����ZI̬”Kk'{U�!GL�ٹ�m�8�[��<�U��_[�݂�����ݘ]�\��t��P�u�)�>�Q�!f5�s���+L����������l�����m��gZ�宐_T`�ǦF�7xG'�Λ h{��ͭ2mS�TpX����}R�S/�U�+�aҌ͓U��YO܉��*�Id���v�z-��!��_T������S��L�����i|Hq ��{�Y�럸��֤�~�+��6 ͔!�r`�j@~r��Ѱi������ �������z蛘�چ2=�u��a��L�)�������� ��e�J��O�M��� gYɱ�9���i[Ġ��� 0�'�P}F�0~|��"!�6��X2����[�ʄN|5�VTQ�W�.���������*���cJG}� 0M�������3��FJw }�O@���x�W�F�F������p-*����zd��E��_�����Yx� ��NU��R'��e�I6gUY�=��,ƅ�$$���Dc~�~}�ư���qJ�Bξ��V^~i�I���t$� ���K6�*�Jp|����ɞic��DGT��&���'a�N!no��f��V���I�|��p۔���I�-�Q�ݰ�L�b��@��΃Z��/��q� ��q6��TUTI8�p�+[��86u��,��lq�� ��/�nd��G^�ƚ��غ�q9^��5�:���&|��^�x‡��# ��^�~>����av�2Q)�R��?��� �����zk��QSƕ࣎?�5��z�}u!��� �X�Q����D�3�XH ���\�Q�T�Њ|�]`�SC�:=�3�E���R˜�<��� �}����ݮ�J�O��FZG>��{S��-��[������U�(7l�E&)�.����ݩ����f�וqD�#�T �e<����ǿ5�k\�&\ |�\e�����ZWYJ�^Bc�\��dp��%5y� �ۅI�S���P�y�bF=��N9�f�RO0��r��Á$��[]����G�l �:� j=B,ߎ�G���i��V�'�{y�1�|0� ��#���xj�ܐp�$����� ���2G᷼�O��~�ݼ���a�6͢���y�L��/��\��#>ۙ��P�Rh��']���M�=�`P��i��hf*���O��c+�����L���!�q��� ,����� �G^��9z%�m���@uC�S�bG�%]��QR.�2Tgz�X)��ӟ�E�x7��#���� �Ug�V��:� m�C��j#C^n\��-S�0�U��U���xV�56vڨ�Ծ�N�U��0(oJ7�wu�5i���Y�����O�z�Y��f���﵅�l�VT���n�����Hn���� 5�-j-Ε ����,�U��� �����#�X�[~#i�����j ��ҽ2��~,e~S��h��בJ"ޝ��4� �W�S�O� c����A��%L�)#��H�#��p�xr�{��U��c?��3>Z�D{���hȶ�x#�4�Z^ �ʴ��BJ,�o���2@�+*٪X�@V�C����� B����2�Dp<&{2�����T�n.�{� �ˇ�2����`��.�V����^�Y���R�@�vgA�DI��kѹ�x!�^@Ӫ2�x�B���a�q�p�Qr-9\�����@�@����{�K6��/�_\�ME�7p��~�x���߇d��[#g2Ǿ��/��U��h�YI_B?� F��o��{ ���^���f/i����e����[���h���t#�3m�m���!�n���&F������B7c���`�-;N �a3�<3���㛫x��8wp�� ��I�j�`� k���oX�{ �x�h�Z9#��HRPhL ���:㈕��O�Wjd.؇���C8�>�z׸$�oRAv%��U?�=�0��2Kg���9��t'��V6�`��[@��:���9Ɣ1��c���1���JLF���CtdV� �;�iAW�� -m� +�_�l7l�X��Y�͐��MZ���T~b]��B��b��KC���Dɦ[Y��,�N�"{�T���H�|#6�Bf�4�O��@�(��ڧ����W6H�خ5\�� ���ddyx�ᬤ��(* _l�LQj��і�0vZ=l�Zw��( E� m!U��0]����]W��b��a,�;��l{�[�L�}Ca�^��&�r����I�c��B�����ߢ�w��Ӱd�Sf�{���A5/f�x̎��*�$�M�A��n�\@@�t{� �����d�SԹg�@��# ��9��F��T�M��Hj��a=��}��Em������[�2 ����s���Re����s�L�����? �?9�;��������y� LQ,��H����?9���w_�.��,V�����e��F�����b�W�Y�}��:�|^�#k|�"�I���V�t#��Oej5Ea�?;H�Ni���J'{���[� ��}J���-�{s������*"-��/P�*\���?"���(���u��h�B�j�i�Жf��; ����D�-,��,��m)����yT�����9:gu��9�"G���mӚ��� ۘ�w������Wu�.1���Yr����ۨJt!U2'�T`+�/ ��𓶦B�[��|���~�ۏ̢�D�w~�z"�=L�)>��Օ��5�+�'ܸ&A+�t (��"V#�G���YIR�A:�ς�љ��p!(���{�u����x�U��=f�ui���׍N���CSo�lpW[�d� ll������!"���T�=9�11��%�_��1��$U}5�С3�8� C�5�`)B� �׀��ߗ��b�+V�+��ý���\�)�G���,�ǫ��?�~���"��������J�� 1Iխx��8X+��$&‡�#-���Xc�X��'(��<��������;:������Q^����#�=н� ��tt�l��������Fwɛ8֥��e�rtt߭��.%@�&�Eذ�kk4�0"�a'��?�Q���M} :��+/��amk@��p(�ۉ�Y>���1zQ��lZv�^c�HR�� �vF��Y���p�|o�'��;jH�Z�|]�7?z~����35��Yj@o����ӣ[i���%��e���Ҥ|��'�<��p��2۸T郷�ǺUq��+�s�$x�TZ�(��.����%:bV�+"�)�:�.�X�j�/���9 �GyS���Q�(I��X��B�����>�-��3�c���8тƛ'1��s�������2�H��vJ�d�zKуa���������T�V�&������Ѕ�dG������Q��������� ���i���B��b��6x 4e�B*B�JX�P��M�����M��s�A=�3���wz���|+�N%(��K`�%S�\��c���E������TsZ���W�2��i�9@���\��դ�~���u����#����Jr������H>�+��+����͉"��8��w@ĐiN����ƍ�g*cꋳ�0����d���`(�x�f�'a�5}l���uF���&���������L���Y������c3}T8{.s��֨�b�2B�p����o�� ۽č������h����S0۫%1J��TE���K��ݠ���å��y���v�+�/�߆J�i;V�،��Q��o��3�ʜ����t [ �2;.����o\�$��;}�Oi�/Dܿ���$�Q�@B�E�K8#:(���{|-� ד��(y�í��D��tSÁ\ ����_'���9ِ�M�T0�G���=e&��+�$��z��(��~��D� MT�uJ��"�\�O���'�� u���� � ��h\�g�,��:��g��e� 6|�^s�B_JB�# %k�[=��B�EZ��G����/9>�Sh�tG3ꊴ��hy]��Q� ;C�m��^���ei�W����2� �%�AL�??�X�Hc��E�� �HR�K��k!&� �F� �+�h�~�o<��� u"w��Z/ڝ��J$䕞Q��#� ��� "��R�V~��C��$�w���j�Ľ"|T2 ���VF�'����;V4/O ����c� r���~������L{&i�+��?j/��1��h��c��E 9��2���ٿ��9��x��ľ�"� �@������$%IF� =sB��"U�V�M(�fk'��Z�<���TĀ(�� �m����] xb��v�ڤ�ۑ�^]&9�ƒ��ZD0�7j��V,�Ϳ���|`��y�u(}�]~/����3��{.�#w�Vq������߷��`�� �����$wF1���%���]��䏭b�#{�<��%�b�]� *pW) mq���筄e� �ݰUI77���� ��V�/�MM� S��.�������"=�� �V�Yy�Y��BWߛ�L�`�0��?G�/tk*��� :�X �?)��V���)��-�C���7bi��~� 6�G���/�$�Y���4c��NjC�,4�T��Uݥ��i�8k��i% �vx�V�=`��l�Q �o�z��C��4���|Fl-H�~����|� ��"s�c��5��d~]c�bՔ�$�S���A�߯S)�g �� 7Q[3^<(|{E�ȶ�:��"՜HÕ�(I�:�?�r�4 <�r��Y�k��,zD�7�� 9 �T���>Ѷ]�?���?���[I�m��0�rK�/���#��|�:.���VyA%�u}5�,�X���`H�79L��>GRM�b�dA:I�QPx� �,>GfNM�_�*#�RE�zH��_��'|�_9F?���:�h�S��l��iA�5�g����&�*!���S��|o@Ә֙;#B�192�Ξ�N_%0�T�JC�����z�_9Y��������{v ��r\��h�����������f�F8��TM)F�;���z��ʼn�+ġ��Yʃ� 6՗SF�9a;�"j Z�Y�%�Hx"�q�u��%�3ji�?��!��wѲ0 ɮ6^��y e$,֤�^Gp:Q�OտzkC�\��~���1�(0&�'����fbr ���j�z��W�y,�����W����2 ��Sh!0 sڄ<��� �a�s k�^4�w_�[2Hwcl#���Λ��% XOx �k�[��/J_�I�T����F�����.&4�v��� NL2 �O2����)uk����!�d����|� ��V���߀,~~�� NLɳ���|����sD�c3��f�/�ъ�N�8`ԭ� ���� �\,�3�m+��c�jܢ{�%�)ӫ���,�ǫ4��#\���&�cc#n��"M�[ �=�z�+��,���D�:J�{}U���-�Թd�1$�#J4��B:�x��L[)�n��rl9: �"�8�&Sr�x%���r�s�N��q�H�N�s���b�l�?�;�3�"�����f��N1��&쐋v!�F~6���=u9C����l R�8�D%Y:���s�s�c���� ���V��"�K�\/��n����&���9��R������%[+��Wȧ%�eD�8켔�Sd$���q$���1vew����[rX-y���7V����SmA�����P�,�;�i��N���Y�d� k���wN��/��]�����F�2,�JK ��JW�Q+�2J�g�Э9=�Q�e2)��o���O@�O���I�P�?Y~[����uiq����S+ ʘ��c��%��eU۫w:�dRA���z�7&��ʛ����X�s��7\r)�2��� �=d��Qk<��o���`�;UAh fX� @�ZY]xGYQVPfV�W.%���YB���?�dX����J�%$��̇��x������ � e�ț�ʎ��J�_��@������R��5��)��9�0��7��V���nL_,IA��WW/�G]�1K�pln�2���E�k�آ����Dm ��/h����xƺ1-j�\� ���ΨM���� Xc$D����}��/�SQ^7�a��M����C�=���L��X��&�+=˜��M ��%�o��԰��]����`Ӆ���L7΅B�E��/NcH�vu� %�~�Z{���+�����K��b=��X�~���ξ��ˌ�"@�� �U�6���F�U^2�s�:��&�2L�)��-��)/����>�R�vZ�[U�X�K����s�4Q�T&8Z&4Fi{��3-��|p�+����[� �h���r�M�T4�ˆG�$�_� W��˘+���Z����9��YQ�|���^�ݛz��1���)�>A3�>'ϓё=9��Ag)�b젖,�f���=��<LU�\�s�c~����I�n��������E_R{uV ��������|d�� �3�,�8�?q�PI��d�E�2��3��v>�g�(�c�g��Z�1"�����x3�`�q�߂�[aP���(-�Z�ȿgD{2�g�v��Jk�� ��H�\�_:��K��K��Rzp`�$��s p���SݵxJ}h�@&O���}�r����$ ������O�J~��A�2 `^+� V��|;E#����z�k�dLL�]~���� 2Vs��_ &���7D�l��e���^��������vqQt+�A����)�-�5 �8]Q�m�����9�WBb���;'fI9���E?���tX�"Q��9=�?���n��JwG�_�wX>���&ޕ��0" �|�ƯB3[ɰ��n��S��i��78n�R ӳ�0�,�?��?�8� �c׫��t���;ݡj� �{O�E9!D�y��N-�9$v3�����֦�#�р�)]����>ꢖZ���a���n���臋�T&���{CYL���m&�q�8� r@N}|'��4� Gk(v:�1:b�dp7���e�F��B�_Ԥ�W��ߍ1��W����'�%?]* {/ዿ�����cW��N���n�%�-8�s&9ږ�qh؜��ya�&b�Q�6��ِ�e�p P`sV���Uz�@O��w0� �Ty���$�>��T�E���Iu�A�� "�.vx05���.���X�s�ITB\��� �����%��LG���U$�� (�� L���IX�n��۷���."�$r���{*}1�D��d{�X�mm��X�b�K��d��l�8�6�L~�LC;�J���xi���@)��8u��+��Bus2wz,y���\�]�.H����s޳�VU�4�gqI�W�O�b^B�X�*���<�t�/� X�-[=�ו��Ӆ�%}�h�0'�‡�'3�ے��ez*A���l[�g�e��k�����{��vk�O��c�}���e�*�٧��x.�y�+a��[7�7q�WiF���[���/w*т$�m�������p�w�r2��Ѝɟ�KыNj�́~��z�/�TH�6oY7L#/ޯD�;EX �KI��z�s���8�oc��#�f+���&1"-��u=i�_0 0���mq���� sg0 i� ��xj\�Y�8Q��hƂ��6��Z�x��^�!����լ���Os���I��&��n��*8g�I�[����sֿ��+7jq��KG�2���S� x�Ⱥ��$�l*�X�'��@��_�>��P�x 5���ch~�Vr�@�s �����.�F5n��M�S'�~7��S�]�ɷ��#�]@nd_�޼�"�[w&�/��]���9�L��i��g�#�}|K �e���W\�z��+���d)�On� E6���/q�� ���M�-d4�/��&��)P�����۰5���?�S&�.�� �0X��\�Ej�� ���c , >����'a2u������r�������~iR����/9<��n����L� ����]��V8��>���VQ�2L��������X7E�S� -���2���^��x� q�3�d�J_|5 �JߺV�<����k]� %ş���ˣ�-��q��0q�����l��Rtg'�C*��b1!VYi�_����#a� �NA�~�)��QO:3�V+��Rhl@�,���x�+秅|�WHlJ&�*����8pׄ-�/A����:4,���{ �n(t&�r�\�~P���ŧT��,7iI���RŘ����(A=�?`����'��6��k2�!]4Z��v�B�5�4�a�^�1�k��U�� �Vu5n�Z�}�UD�CH���L��C��e�MW E��Y`�!�adׯ�,ds;3+����������3*c���a�si�8?��_o3ފ7�������5�w `�?@X'��}�2f몠U���-� j���Y eܔ���VNC)��� ��4�D&;Y��e� �� v3ٱ�����"�u�z�$����0L�p�b+�2�s�� ;�|~��������g��є��6�W� 9�], @�%s������f5qhP�W(��/�� "���ULS���c�m ���e���R��_6bZ2��狗o61$/M�m)9��� ~ѳx���B���e�:��Gk�ǹjǖ[2{�.�qx�ڑ��!ݹht�gt�x��yF��]��~-�Mg?A���,����H8R�'vњ�2�l��0�5�@���r�5�Lf(��"z��?~�詘�A��%���~�`.��dD�R�y�*�.���?�ڋ�M�I��׮&���J�&u���43�4ff����L�M�rR}�z��^� r����a��#���FJ0e�u%�4N�_cP�b)�n�Ń��v!u~:Q�{x��^]�kz�0$�} ����� �T����> t��>�cuҮmN&b�p�Q{mi��lԊ���f�_��'/j� ���j�D�� (����R)!C�Vj\ˀ$p,\��y%^� �1V/-tF�w����;V�k�V�g��(��Of*;&Ċ�8�{���P_�^a.nW]�`�b;�f�O=�S�&�<�S�5,�ϴG�Gn#D�t�w���U�+;Gl@�tDE�3���R�` �b˽�`�9Z�Fb+�T��6A�(�� �_�! t���e���U�+}@?R��9�y� ?"~��V,Q�#����?�ڲ�S�7B��5dh���9TB7�1���v&�Sѷ��XJ?������~ ��d�ّ)�ޜ7�x~L�B��d~D!6og�H:w�d�kXh���Y ^�Y��t����k?��֓"��s���A �Ơ?���5�-��O�#�� �&�"nA��P�?ԅ4�,���-=�| fRL�!Nl�8��� N�����"TM;�����KO�U(�[N ���Y���oH?�1h�n��*g�_�# ޓ�T��� 1�)����[�\��'<9t��a�!3�h/�;B�M0GL ��QX�sq�ۄ��Uu�n����+�%��.�|��DS+B���l�eu�iEn��{�� �1h�W�\cZm0V�\R+�b-�N�y�~9�D{�x7a��nr.����r����M�5�*��g�K�o�RŊ�J6��_Wz�h� Y )�m�C3�Vd{E��w����J�,��1�Γ��/T���؃�3��8e�����4 �61]7]sF���D�����2���⩑̊Boq6�����,KKj�z�h�~�x�բΝ�fJg�:��%Y}�[0 �}�7����$,���c�9,o z�䖗���"h�]�t[��ȥ���ȟ�1?��?���7�50]8��Ɇ�[�Ȃ���ṚbMNT�?�(I�����=оz����+(��1�M8 @�����TF7�+�V��WX�x]%���{L�)��qk� y�2z���!�-�BH�<��f��[?����>�^��}]�[B}���r4,M�F5ŧ>�� w9#��`v� j��Mv�O�v(�*��t �q�%��O�XIe�� :_&�r� ��=���׽#���抜��6�q*�q+�uSp���}a�� ����9�/\jt��Z�6���B鎋���N3cjQ���+]�YI!p��a�{<(}O�o���~.���%E| �|w\_h�򋱤x;��� {AL��\��; >���u�H��zc�?�U9B��i�g��L̝5�u1�y���3�h�YDRn��S$�C4��ZlK�O �}b��@���,Y��+K�^=�:Y�}�T.���[) �ȭ_z�R�D t��yK��/��2,���ZP��u.Y� �hDj��? ၑb�����`���i%�"/�7�����@�� �ՎC��[��n����|)���Xy-�k���2��Hf��2Q�ɶ=?8~#��lgG��vih�׃&k�=58�13}5� �x�m$�ʓ�V�'�%@a��S��/K�V%Z'���% ��H���쌁3���*�VP�QDfD�C��s����Zj�-�W�j�0� �:�h\Q&��O�a�5N�pvU����Ȕs_>hy@�\TV�$�ҵApXtkbh'ʭ�/��� �f�m�ȍyt��l!�=or��'m�7����ɐL��<%#����GѶIlj~?7v��_H�N�{����{5�[��������Gi�T7y�ʕ�?�����É���<�J���F�u�>[*J�K������Z{*�9U ���Åa���d��*�D���4��OȲ5cr�;%zS�"rp}��M\^zt�i��Q�<���y�r���u �%��`� �q떳q�X����{� ����7�����S?��P~|$��K����JUKLn�$��� ��[ o��hc#(=����͓��G�͹*��A�� ^�I!ul+�%��JaE�+� #=nRcG�{9M�L� ۜ��|�V��fZɟ��@�c[}`d��R��;���]Ĝ�l��G ���V��B��(���$���M�z�b��V�IQ�h����� ��P� �{�"~ ���I#�O����LC*� � �g�KQ2���c�{���.Nz��걉�Lh`��%� ��e��5�{A��U���#���L��%I.V���V��Rֹ�d�7E�� 'o\Y��?u�w��x��nw��� ��ی I#� _��>���X� #́z����F�a4׭�����S(No���,�R��o�Զu���W(p ��PRb%Ʒ&|s��y*���g�(���[�H_r��4sdw,>�z�3a0ǧ����8���agЈ�*�4W�P^I=T9#�I��v�O�P���cG}�^ZOP4��f�R� �0|��8�^��y�si�G�|�dX 7&C��}�y,��[OMy_^�U���J˗�C#�HO!��q��]r�3_��D`�$�'t��fb��!���0������4���eƲ��Q����2��"�^��~�`85�>� :;p�͟a��(�q($��a�z$�.A�����'W[��y����~ �ƒ���.��&`dF�c��R,Q;z4]_�BC�[��Ɛr\����D)6���4���᠝����P�F�m�}�RJ�f�?�d]���e3��^�45�=WV�? Ut��G�ߞ��v�� ���e�������Ej>[4�8ACg�l��}!��9����[`Y u�zX�� ����6���󫌻q���!rZP�k_#E��>j��{��� d�yj���F��w i�~s�m[Yq�IG������É������K� �!r�c�6c��Q��><.t#TzS�,�X ��8Q��(j�Y�T�E���f�UYO����(�x��=]�J +'�u���29��Y�~������_^v��s .�x���ǚiel>IL!��-:٨ V�)�ĸ.l !65,_���"�C 5}TU�<��vt��JP�"��=�s��=�6��]p�|�c7� 87EQ8P���yh;�ҷ��W��3�k0]��X}&����2��������$���O71�� Y��Ym�?f0 �:���/����²Dnc��. ��l�KG[�!�������r�N�И��0�(-�H�4�ᥩ ���>1FG;˄�ug���u�k1�.C��%5���s���k��ǃemG�v+���[Eޒў5[@A4��w�n'N3g��['���%(ц�Q�O�6�[��=����{7���Vs� �ŸL0�L���{��s�H��"�t�\qH���l��s�i<� �nC|����Q1���Z�N�b�P0��oZ~� �/S5jf��{�.�D�SF �j�~ܓ��B����N�M��G��D�b��t�E��P6UBԈPgb����{��X� d0�[c7��|�j���BX�PJ*�xw���"419^��~3Sb��P�S�n �S�M�f�Q�I�c�����л�%�i�_��CKX�\�K����� 3/h��"���?!>�͗670:Yq�3M�D+F�[��i���5��:�44ꤾ�߈����|��=��|��3�M�c�<'[���'�\���V�8~� ��R��q��-�)8��&y�V|[��x�Ҳ�z�@g�R�8�1���.���=4PwߓC��hTN���������Q��N�E4�zM儲+�����)X�@�)^NU��. �}J�s s'ӝ�;_��)2��v�����qӺ��8�.nJ�J7�f1�. rp�F� �Hle o/G�*�����O1"�C`��O@���Z�>@Vi��l��I(�&��\k�����5 �x�#�U�*����˲K�U?�v�P���V�0�,A=>��_1pG��{����� �KX�3m 'Ѫ�P�M��e��o9�M 4 J2��P���ƣ86�0y���{S�� ��*�M�˜gC �R�� ,Z���U�YDu�ʘ&�8���,K���lf��:�x:��r=��9�� ��*�ȇ���X kZ���%W�����(��A���v �� ������/�.� Q/��w�k� Bd�E������X�m��I΍��.���+�&/���nX�D��s�*{�g������z|�L�:n'��=�P��Z��>z�7�ĻI �V��E��T��P�V�`�.G��=��]������� ,l����}ԣx7.s ������c�y"�h%fQy�!{� ��3���P�j�� ��Ep{�K�=�Tm���LC�}^�x�ŭ����Qu��I4�h�4YC��#�i���Gg4W�����,�H����$ $���"z��U���Nd��x==r��!K>���$a)��T���'�4�;q+�|t9�"� �&��g�-�Q�@�q���y2e�~*���ۀ����(��g6� w?�7%k�/#}��w�n�A'�T4�?x`&�Y#&X*C�Z�g?�@�������w6��?��Rv��7a��n����^�`%i��3<�[K�cw�R��2!� �#�qh�!���yLdOMY)9>�Cf | E14X2]���}�?�B���Y��NE��Uͫ�P�D� E���V�{OP�g@��G#�* � ŷu)_f ���ѷ�nYS;��`���"��{�����ٖ�G����$�*��*m_�<��R��x$(�7�5%� ��{*ªŗ��t���c�ƯҖ ��JHt�L��8"I&=�����t��v6���G��#��c�݄_�����xW�B~?~H_ΚMq��%3ŐhhE���.��HG��P�q�=�:Q�������5����&�Y¬�հ�*��_�<9��LžH�p@�+d�)Z�x��"׌b�2Ң�kP����`�+���dSX���� Il]B7�9���]c�QI?FJ㋊3 �+B&p��~pf`c�hhN�y~������ܹ��d�T>޲ń�Q�@ԭ܆5� ���(Z�v�#��:��m�A���-V�/� %`����W�)ٳ�PH�;|�b 9��:'�?j��>��]�[���H�m��z�?��û,�Ǵ��Z�y���=�T�K�(~ �bHJxC��N�hZI�W�e�f@@Z39z�t�`X�v||��I6�$�o�aW��}?č13ūW��Pĵè ��hy&��>iW7�XE�����Kp'��|HeNb�dO�π��� �H����a��vߞ��B��gxe�E�L'�R� @3@�Z�j��Oc=�8���YPH����3��#Jp��� �-��˔���ݍ�-�@����`����Z�uQkr*��`�|W5T2w����0|rtW(&ӻ؎IV�`�C��L�+�+�i������M$w�5������ߙ��,��G�:�qj4ܳw@��,#��xܛ����ws�"#����N^��vd�ؽ;��>|���ƴZ�-�� "���RT�"��Ĭ�����\>��Þa� �GC *��A��h��č:�(�+]�!��?<�w�6�E\�G�2��jx��y��DE5y�tîA�S� ��� `ur��L�2>���r�vKto�w��h��I��⑚3�|_\hm���/ta$�Nw����.n�Ga �~���H��XVc�9.�v<,�@ \�b� >!�^W���Cn�Bi{㗇�f�ʱ��R|b3��ĝ�̧bқu- _H 8��@ �-��s�s��hӨF��"k.:��w��C_��{}Y��8�ߚB<�d3f�0l����w<+z���r�^����`\��T��ݞ�M��p��fu{3����^���@0��9�ڽ��`!����[SW��o�s!��z�(a���!ś�l�KA�=5��J�Ƶ遈��b�]1V�f��N�'��C�� 3�)���PXl�o�� q�S)����� `'��+rh� ?�~'���g�u�_/��*~N��H��l(UgTA4����� �� q7De�@5��ߕ��1 ]��%�>HL�"�L/��l[����k���=�^��W߾V,&�Vu�K��[��DF�ն�mp9:����� �YK��C�OI{�����?����Ըu餦z�-�xfPXt�Z^�NA¢�N%�*(2ĺ�]RT�D�� c�g��Pz����DyRh� �@rY]�8��ÿ>ate,9J��8@C��f�ʈ�0�/)�M$ۥܬBt�ⲛV��?m�nv��֌�G?=k�yC��#��v"��͚X��Q�G���7M��`�!��(aq�� �\���å���!�FW��L|�Ch�z��;��[U'=�{W"Z[� J���% ��>K�T��O�d2��^��D�KN�+�v�Ҩy��/�HAT-p���G�cw{� [`VO_�zpD�ӊ���=��7�,[[ � �6ea�� :k0�#�"�K\J����AB�,>#�D%��n��JN ���50���qk@a>������v��v���\�n�E-�bg�_RM�K�Ζρ���,,)������S��6�����^��R�kחC̨�|7���[��z2 �g��X����euS������ƩI��#�.�VR��SܰX�#�0 `�o|�.�,ׅ�mgW��?N���V�gi�����0w���9�b�������k��UgV`���˕��$�8��Qg�b&,�r��9��L�W0X�K��%oQ~e�����$�\6*��$9 ���ɳ~:����bn�p����$��+�m����|���e�5���H�X7����r~&�ئS����t�+,�ƾ�pH�TkJ=ev�� H�3� �eL���!3�E���*�g�z�$�DR҆U� ������eo��� �ё����疨��6qJ�j�3�K� V���l��Pn*ߥ�`m�WX�q�UH�1�-K�^t��Y��/n� �?.Ԁ���;��+^��JUu�ge��c�`ݓ ����Œ�0�ԟ�ʏ$q=��[��O�El�6���C^��YP��X�I��7K|6NJFCQp�0I;��f��c��i_���/n�.�6��Q��[u+���<��8���#0Z��.n5Rw�w��\`e�I1Q��|0�!><�[@�#�o�(<�#M* 7~�:�u�J�)�8��GW\y�0�~$ϘJ�o��ж)����������X����{Ɛ�c�&� ��z���M��ee�tAw ���/ �"X�[ n�s`�Z9}�j���%$�~t [����$���io��v�PTZ��S���{hFd�?��9h�V�U�O[�q�8����\�<ÛR#y"S�����.5ra���'��S�zB2#Ƅ8�0�3�Y�����[�X�x����� ����K����yi����}�ĕ.�-�1�w�Nu6��y��+�� ;H������04���f�m�B����p�7�JJQ)6dq��d�$A�c����"/>�ݕ��x!w����� ��IڢM���=/�)ٿ�So�F�۩�_�� �y�y�zS��qK�j���( B)�m�8x�Fe�sZS���D(�\#�u|&Z7�9A#kjl���R޵�ď~M �^�MX�w���s���,���ct�b Usm��1��S�F�y��M��<�����:WzcG�7S˔���t��Ji�<[�p����`�� K\�1ϓ���D�Kn��:Ǯ��uݰ�{�����X��{��x��YS|�ۦ;���/F�j��%�g���,����fvZ�' ���1��ק�ry�Ro%�T�}hd�A �éMNT���:t����qM��#�� -M_1 6�P�����ey2u�#?��yf���ٔ�'�d��DM���z���v�}f��bd�e�┷�J�#\���r��.8B��ݬ��� �|L���I�Sַ[\�s��m���(9 �9����d����oC�"5LN] -�`Z��1��4�|�0��0S����Y��qWI~[�;UN, ��0$�2�v�mm�v��'8�����=�s���O�8��^)���ZN�M�Cҭ ���)g�?]d��U�3 O�#�=��$�飲#�82�vY�Ȓ�������x�H�a��yJ�H�A�����  }�r��zwT�=�e�RLnx� t��|� ���[ ���P57(o4����!}�]�1����/'��Hz젘�{�����s����櫺��`���8xá�� �7C��/l�a�ߋ���e� ׆��I�Pd���Gr��+_�o��ȀO��v�p��[��� ���,� �� �4��aWg&���=%F �˖�й��2��.���z�|NH�;����h,뵭To���,T?�'�l��a�F�މg��Hm�[�>�œ�D��m՗�ժC���X3+�+���8}��}A4�iӭ5�k���p���i�8μ���[#�4����pw�Տ�xrm�7Zрo^(;��޴/''�m`���]�x�S��{8U��x��NU���>-1�� N�G�y���r��Y����z�=$��~!-��?%m��;��D�D S��|���R ��x���C\(��8�`�������b���$I�������V���O��ֈ����I�ϋ~�6V�8 jڗ�S"Ƒ����� �?21_6�r6ɺV�A��U�i�K-B�i�e�$-�%�xjs-�ؘ�ei���=�`��'&b�!���k- �� �30@V�W"q�C�&��#S@���d,�9�}�5�{� ���{�i��8�z�;���Sx�~�m�p���i����o�D�]� _`�B9QX�D�<��pvYٔKۀ��T1h�L���BH�h���0 �6@c/�,�y����3#��M혼� ��m}�]{z$G�S�ML3͆�Kz��4���#�&�i�H��x:p�5o��K���s�3qڏ�8�[�PC8hƉ~��|EJ'%�i-�K����p����S�Idi�K��/-��tU�������OKS��@���ZQ�Oy&EH�� �o�AL$�'�cF�W��Ϣ�վ�� 2��aG/������?�e+�x���N�0�Wn��=���xMbVz� C^�w���^�a%��4�uk��� "��q�w�ikrG���bdoo`��F ��@��$�@!�@ C!�@ �@ ��Q(8�Dр  ��P$���!�\ ��#t �@ �`��L��!�`8$�@�84�E± �@ D���` �@ 8&EdQ����qxH�Hd��T���X@��@ ��b!X4�@ $  �1I, � B�HA!��0 ��F��F���8�@  �p``&�D!I((��c�D A#�@ �@ ��@<Fc! ��@L, E�(4��Bq�$0� �1q\� �! � � LC �á`4�c�HL*E��h@G� 5��!b,�N� �`q4�@ (T �D�0 ��@  D"��C���@p@ .��C� �0�e�`�@�P #�f�,��1��X\��84>��"(&�#�@ �@ .��@ �G�pL�@ �@ �@ QD8 I$�X4 �@ , ��bapAD0y< �C2A8�@ ���qp@$���!< ���L  $Q�"�,�@� (, E���  ��i0.��@ �4��b�h4 E!Lb��H���p�B��L�@ �@ �@ �@ �@ P �C�@,,f!(T ���,� Cq��@ �@ �@ H ����XX Ƃ�`, ��Q��qJ$ C �4�@ h0�E�� 8���HD*�@�h@&�i��@���8H�FC�hT@�E��0$ �@ 06 E�!�C`Y (�D�P��@ �@� �"�XX� C�`X��B��(�@ $2�A*|���X�@ ����@ �8��Qit*��!�B���<�D�H0 �QX���E �qp@�ɦ�`����@ ($ qy@.�J��q(�!9(" AC �� @�c��<�����!�(�@ `$�@ .�@ �@y$4�@ �� �@ ���Qp(�@  :K���H��@ p@�1�4"�A �b�X&����X\���! D±8 �á@0�@@I,"�@�X4�@ F��Q("�@ �@ �@ ���р8��@ (��PL��@Z(���p@ aPX�@ 4���A� Ƈ�@(�!,,���!Y@�D$R9H ��Y$��@ ��"���@ �$A29ByHAF!�@ $A�x,��M �pd� ��qA��X( �@ ��!I �qP��p �DŽ" ��C�P, ����$�DŽ�`T�EA@�D��D$�!ÈD"�Œx, ����@(� b�!�@ X �łqhA�!I(��C ���X@�@�X FD �F �@ �@ �@ �Be�P,��c��D�ā�D�C��8���y0 ��@0<����X���@ �@ 8x���@@�@ 4 �#��8"�ƢR�E0a��#�x�@ ���h��CAP$�G�Ry8�C��0��dQ4 ¥qT � � 9 D〉AC �a!��QI�`9L�B! $�#�y$�"���", ̂�`H���� 2��"IH�C%ù8�Ąbq,��E�(@�O�0=��9H�ҺLIC�\$��$I��!q���2cqT"?L�ax ���L*��E��(F��h����8 ���H2L�Ԙ(6�D��$�b�p,���P8 �2�$< ��r�x$�b}b��9 43^!deinreloitatrae/otlandpe/monr/boaletp/capaargeusutunsoa/pl/nidodneilanrot_apuxo//aisx/bahai/acomdod/emjstshengljcrtr_imisc/hceve/e_c/u_t/piolicise/dt/vifipr/rexbuuradctoresma/scotesterles/cljcomsermpls/sterveres/enttrawebiceworches/lscrervse/monio/let/paore/rocest/cmic/de/fi_inlinimpoursrc/.cljs/co/proring/utispec_cljvent_chactioviceurcec_reging/handlertest/s.cljr.clj/src//testg.cljt.cljb.cljs/appk.cljware/ader/i.cljo.cljl.cljy.cljlientcircle-core/er.cljs/test_readest.cljes.cljles.cljproject._test.cl/core.clleiningeclojure/files.clcore.cljbuild.boject.clj/backendexamples/storagemain/clo.lein/pr/examplekolmogorsc/petlaior_nmubd.jfgyvwhk-xzq1025738M46CDHS9FORTA�`d�Ǿ�+�������j�� .#]fϪ��E�]Q-���ۼ���ۀ�E�]Q-���ۼ���ۀ���Q���ӿ�#��Ҽ���������Հ�� �ϐ�L��CU4��_/)Y�Ҽ��Q�C5� 6�����X���"��X�ʺ�̐��L [(�����Q��̐������(�-h�̩^Zl�?ƺ�Y�����Q���ӿ�#��Ҽ���������Հ�(�;�@ɑ�^����͔D[�TV�>�����#��!@� SE�]!�^]j��L [(��]���`d���U���N"0���Y�����cN�ͼ ����e �����ҟ�0Sýz\���m%[�����Ѽ8��Ƃ��^�Ǽ$G���^�Ǽqл�N�R[��^y�ӿ�Ȼ� ��A��VZ������I��݀�^]$H�Ҁ��B`��0Sý�h���H����e�����%¾1���ހ�^��|μX��&*! ���&*�V�����VƼ$#�&*!I/z���E�]Q-���ܼ���܀�î�0Sýz\]M���Y��� `?�� `?�3��p�F���E�]Q-���ؼ���؀�K���M�v��W�FY�����J�H]2���J��]��H������������Ya���)�]L �����־���������YPͼXCU4�����@�MU�E��M��\Ǽ�OMU�EƓOMU�EƂ��X�� Ѻ;�1� Ѻ;�1Y��E�(��_p�Fɓ��_p�+���#����ɑ �*ZZ��OYƺEƑ�J��]��H�Խ,H�������Ya�� �*Z»D����M���E�]Q-���ݼ���݀���½ 4�XH����%��V8�]K�Ѫ3�K���M�v�EƼ�۪�T�W����Ӽ��"�Ҁ��(Ѻ:�ǀ`�]��H�Խ,H؀^���Q�0�]V��d� ��Z���f]���A 9��\��^��|�W��� �Eƪ�V(��E�!]ǽ�ž�X�����Q���ӿ�#��Ҽ���������ՀV(��E�!]9���A�ӣ�������Ŀ��V8Ñ�T�D ����ϼ� �0�����Ǿʪ̭Mî̐�p�-X�3�J��]��H�Խ,H��������Ya���YZ�ß�R���[�ϼX�dc]����2ɣ�)�l�ɼK�ё��P��ϼX .����R�����%;��E�]������?�M�K��`��C�ɨGž�K#��f���z\]����J�M�̾SW8%��9bĻW8%�C�b��;���Z��#[NU~v=%#���#��X�̀Zt;�3����~�����ժ����QU8½w N�\��.4��+�Ӿ ���(��N�ǀ�E�]Q-����������0SýI�Sý�Yƿ.\�̭�»�,�c��W������؀^ ��ڼ��!�Q��������D�ɺȗ+�Ӿ ��N�ɟ�tZN��úTϼ�E���t��^�Fɺ��ڔ�Fɺ��ڀ��Q���������'�������Q������T��`��^W��V� ���EƑ�u�� �\��Ņ�^]��Q��ZW�t��X�Y* �[����E�]Q-���������U����ȾȾ�Fɔ����U����Ⱦ���Ⱦ��ȾȾ��#�[��� Ī�,��[��(�d�����Ժ�ǀɾ���?@�TEƀ^]���_� f]�H�,ǀ�h�`d�^],���Ӽh����̾S�F�������W������2"ƼǽL��P��ϼXs���CU4�5V���Q���ӿ�#��Ҽ���������Հ�J��]���H��ZԽ,H�������Ya���ν� ��Հ�XWʺ �b ���\�l��W ���Ŀǀ���2"� �!��̳ �)J��)wtź}FL�ʀ /[�3�I��]����J��]��H�Խ,H��������Ya���� y����$M�3��J��]��H�Խ,H�������Ya��������� |�����+o`d���ĺ��ՀO[GHb8���\�`�B`A L�����^�����H�ʑ`�]VӾ�V���_�Y�"Ŀ,����� ZA�Ȫ̺��FY�VZ[�W��FYN�G �������w��ۀV�j�� .#]f�I�m½������K������e�����.��}\�fE�z��A5�����!Q��0Sý��}�]Yǽ�ͺ���R�]� ���������]V?ƀ� �*0����)��ǽ fb���W�2f������A���X��¾�����J�H��+�Ͼ 'FY0�*�����Q���ӿ�#��Ҽ���������ɱ����VƼ$K�ё�E�]M�̾SԾ�\��ؼ��؀�J��]���H��_�����Ya���Y��EƼ�W�Z2�Z$Zý����\]�������������Hս��R�����%���R���� ���E�]����Ƚ��� �»�0���f���Ǿ�\6�Ҁ�^�����I�{c�.�����_W��4�[� ��YZŅ����2"�=½�,$Y��tZN��úTϼ½��T�V�j�� .#b �]�H����[���_/)Y�Ҽ��Q�C5� 6���������F���e�����At����ƻW�����At����ƻ���ƺ� �� ��������ɺ��gƺ;��Fɔ���gƺ;J����'���=�����#ё�_/)Y�Ҽ��Q�C5� 6��������A�Q��+�»b����A�Q�Ņ��I� ���E��F��E�]Q-���ڼ���ڀ����D� |�ڄ��Г�Rз�V�j�� .#b ����T;6���[����Q���ӿ�#��Ҽ�û̼���������ǼX��Ž�Þ�E�]Q-���ټ���ـ �*μ_V ]���������Ӿ� ���:ʀ���+o���]�ʪ̐�����r��� �ϐm�ɾ���`4�#���H׫���Q�Ž�I��|�C� �����c��#�Y (����P#�\���ټ��Q�E��ڀZ�\b���c��#�Y W�Ϩ��[�\��ɼӾϪ��]�J�LӪ̐U���W��Ǫ��E�]Q-���������E�]Q-��������KUJ5*����yм^�ο�?I�A5���P���(Ҳb��\��C�Ӿƀ�_/)Y�Ҽ��Q�C5� 6���X����ƻ������ ��ý���[�ϼX�dc����M�;��?���"���^]�^�.�T��D�����^�^�^����^]�<�2����[������h��h�^���^��|Ϋ�0V�0V��^�x�V�����-��μh�`d� �*μ_V ]���������Ӿ� ���:ʀ�Ļ�0��ǼѺ<��/���(��ƻ�3�M/)��Go��#�Y ��.�1��� ɾ��^]����ʆ��4���������Z���)�FZ1���]�+�Ӿ ����'��ǾƼF� �����A����ƀ�.��+����^��~� ��]���������W���YZ]ĻT�QX�L�]Ļȼ��I�N�Y�������»ӓ����»ӼP!�����C����N���Β�����1�i, \�]ҿ���^Wk��\�hI���T����΁�̐������ųI�d��L�Eƪ���Q_W��4�[� ��Y���!�@��Zt(�/�Zt@�����wtI�^���Q��[��W�)���[ym½��?�Ľˆ�\6[�̐Y���ц�X��M�̾SW8%��9bĻW8%�Cā���W�Ҽ���Ɉ6��y ��GeP \�^ R���[bni�� �A�� �T��d� ��ƿ�W�a��Ž�"����]�^^*���VƼXƦ�\�2»�3 �����-������������]�+�Ӿ � �����-9����^� ��#�N���YZ�!������e ����[�ϼ\����"Ϻ)W�����ɣ��X���B-Z�\]X� S��d ������N����^]K�Ѻ�#���I#�������]�Ȼ���[N����Z��͑ 6��Z»z��YZ����^� ��#Ɣ�X�V8Ñ�Go�`]5� đ�ͻ�l��=�����û��J!�½������pT����AT�������R%c��&*�-���»W��?��� N��T$Y���K#��f]Mȉ�N#1X�L��&*Ǿ����Go >��=���j�1�^�^�^���8�Կ'V(�� �EƑ�Z��ͼFɁ ս�^��P!��p����%��^�^�^�^�^�����ټ 6���E��Ǽ��[ϼ��ƑYa��ҿǞ�����%-, \�]�����Ǿ�̺Ļ�^]�#�Y yп�����^^�x��-���F��gƺ;��Fɔ���gƺ;J����'���Z��]�^����h%K�ё���[ ��]��[§\��î̺Ƚ�Tw�����[��GoX�L��^�^![�� ���Go �����Ƚ�TJ�Ɛ��Q�Ɛ��î���e!���^�_Œ��#�Y �Ѐ�!��h��T�W����Ӽ��"�ƪ��W�Z2�/�3_pI/)Ҽ���Y�Zȗ�k���, ����][��^�^�^V�j�� .#] �;��Eƀ��^�x��-+H�3�^�^�^�^�^�^�����!���!��h�m½4z��5���^�^�^�^�^�^�0Sý��!§�^�^�^�^��.��+�}�=�� đ����#��!@� SE�]����EƀýJMî̺�ae5��5��3�ɾ�� ������ؓ�d�̩^Mî�ýJMî̐^�W �C���]K�T�̻�î̃��^m���\��\�2»�3�Ǽ��[ϼ��Ƒ���Ѽ ���% ���% k�[ �Ǿ�������d��^�^�^�_=Ͻ��E�D��ǧ��X����KY]K��]KY��ZϨ�м^B`��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�d�e6]��YZ����L�y������#�Y W��\]�.�1��]��ɑ�^�^�#�Y B�*�, ���l����@ս fN�ǫ3����B� �\�������g�m½�E�N��C�m½�Eƪ���e��e#��!��:V�ZtW�t��^��Vƫ�\���^�h���»�,�cݼ��؀����־����������+oX�̀�^^���������������w L�������\��%-�� �A/�ϼF�@V!������[ ���^��j�[������]��6��ͫ���W�Ҽ���Ɉ6��y ��GeP \�0J\��̐�Ƚ � �]S� U��=�־�Z����Vƫ�Y�T@ƿ§��Q �ϐYZ��\�Y��E��YZ�]�����%�^��\]h�����"Jh��|�#Ǿ��Ǽ��[�@�MU�Eƀ^�X�1�����X�L�`�]V!�ڀ�J��3D ��Tǀ��� Q��H��EƼX������+�X�9��\���Mî����-5��+�Ѿ5�M�̾S(��־���Y.�������¾ b,1_� f]#р�^D��wt���a��\�#W�aV��B-Z�\]ʟ�^]V���0V���î��#�Y �c_������)Xd���#�Y B�*��&*�#�Y �����P!1�[��>�Ǻ�V��\��̩^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�#�Y WĻԾ�T@�T=�� �]!���^�^�^�^�^�^�^^�X�1�`���Eƪ��ͽɼ��@�Ѐ� �^��3�^�_Œ���+H�̰^CT�]V���ɺ�kK�ё��^�^�^�m½4z��5���^�F�*�����̻^���!ź���a��%�^+�Ӿ �&*V��^�^�^�^�^�^�^�^K��[�X�9��\h�V�j�� .#]f�I�m½��9�"�\�9�"�\���8��)cD�Z��Ȝ�)���L��^W��Vƫ̐�»�yM�Y1<5��\�������w L��l����N#�;d�3�^�^�^�^�)�]Y�4�F����΍���Q��8½J�^`�]������Y���ц�̺Ļ�^]���,�3^l�½����F?�3�#�Y ������ҿ�����^�^�^�ɼ��U��� ��»� >W�8ժ�����I����Vƫ�M�̾S(��־��"�־����:�ͼdH�0���f���Ⱦƻ��� 6Ǿ)c��v���^���"���c���� �A��ҫ3� �*�������A�c������N����#�����]�^�R����ܫ�%�����Ѽ��!�]�^"���^bĻD ƻӼ�5ǧ�`K� {�'����]��!���T�_�Ѻ<��/���Go�k��Mî�#\]�L\]Mî����X�d$��[���]!�����ҿh��ӿ����ҿh���[��sĺμX�Y�$, \�Xƿ�'��Z��מ���]�_�Ѻ<_p(��ƻ����׼Ӿ�� Ҁ0��[A�Q0��[L\�������R%c�����Q��[�ּ����TY��!��2'� �* [���d�Eƀ���ǾC��[B`], \đ^]����H��{�����V���L��W�������N����g>W�Ϩ�^�����ʗ�Ļ�^]�#�Y ������ɾƻ�N���U4�Z��_DȽ � �]���ɼ��[�Dý� �Eƀ�P��ϼX�ӾϑGo >zտQe�����c��#�Y �3���h��h�G�A-!]����]3 ����yм^]����Ѐ���cN�ͼ ����e��̀^]����=��}���� �X�L���[y���ƀ^]�ӿ�ȻҼ��������\˺��|ӂ�̳��/л��^ R���[]#e\R[ʀ0���Ya ��]�����dHź�� ������ ��μX�Y�wt��^��YPͫ��^]�ӿ�ȻҼ��������V��G"W9Ϊ�Z:DŽ�]P!ʀ�Z���0Sý����+H��W}\���W}\��^�_Œ�m%�������J`���#�Y �8k��^l�½����F?�K�ё�^]� ���#�wt������%-X(Ҁm½4�X ս�^�� �'�-FZK�р����I���^�^����������M��� ����Q������K�р�� 6Ǿ)c��v����^^�%� Ѻ%-8Ͻ���M��͂�^�^��!]�����p��[Ϫ̐�+�����2"��% [�X�̶î�Z���oZM�̾S�̾S����ڀX�L����P!1Ya��\�Mî�Go�`��Go >�^���h�`d�^�_Œ��9ϭK��]�/��\��̻�c���̻�^��ڼ'�^�_Œ��� �^��3����l��s���3 ��\˺��|ӂ����ɺ�k+���#ʀ��^�^�^�^�^�^�^�^��Ⱦź�V [Nݾ\�f���l���Ѽ ���%�^��Ҽ���#Z ���X�Y*�ƒ��#\]�L\]Mî�� 6Ǿ)cB-��ǀ��R�����I�������/л���^�^�^�^�ɾ���?��Q����������f]�j��XJj��X$Y��> ���EƑ����r��úT�m½4�����ɾƻ�V�ӑ�V��G"�FZ����ɺ�k!����(�� .�Ժ ��*��ӾL\��;ĿҺ�ƻ��F���φN��M�̾S(��־��"�־�����?�+�eM���S���Q��8½J�^���2"Ƽ���#��ɪ����J�cƀ �����ӫ3����������W�ɑ�M�̾SW8%��9bĻW8%�C�] ���^�^h%�ǾjӼ������^�^�^�^�^�^�^�^�^�^�^��c>��T��^]^C2e_� f]��[�_� f���^�^�^��&��\6�����������ҿ�D��F��^]��!=�� �]�����+�UC��\�3��H4y���^W��VƼK�ё�Mî�ɾ���?�ҿ���"��Ǒ^�����^�_Œ��#�Y �Ѐ�Z���oK��]�������B-Z�\]����^�^�^��G�h��h��d� < .�[�B� R+��X���^�^�^�^�^\��î�0J\���^]����H��{����>W��Q�^�x�Ȝ��\Ϳ1, \��]+ ���1��^�^�^�^�^�^�^\��î���»Ӿ�A���>���) �F�ğ`�b9�Կ�Ӿ��� � BH���yPΪ�V�^����Q�A���W�0�� ����ǀ��^�^^y�ӿ�ȻҎ���U���N"0���Y��� �*Z»y����$����M��͂�^]�ӿ�ȻҼ��������#�Y ��.�1Z����������f]�ɼɪ�/��Tǁ��6��ͫ��)�]�[��v��R������I����ހ�^�_Œ�m%�� �*ZZ��OYƺEƑ^�_Ie��Z���φ�̐��c��@�;S�Ī����Wn�����»ӓ����»ӼP!�^]�������^�^ �*�� ��^�^�^�I���Z5(�����YPͫ��V���8��\���� �\���̭��"bĻ���"]���H�Ⱦ�>A/M�5ƺEƑ+�Ӿ �&*V���Q��8½J�^�Mî����"J�^������,�Ҕ�� ��� �*�U���I������UH6��#�Y �&*X�L��^�_Œ�������b�t�P��[�̃�����R%c����ǽ��h���2"ƼǽL��^�^�^�^�^�^^W��VƼK�ё^]ο�?�X�9��\ā�9�����)���L���'h��2'�ĺн�+�Ӿ �\�΍��.�T��z �ʀ`d���Q�C2Yae ����^�^��Rg>����Q�^�î�O�a����!����f( #�3�����'_p�����Ƚ � �]�kƺӔ!��^��VƼ����]Z�`�������ϼ9���]O����j��р\%�\%�̐_=Ͻ��E�WV�\*�\գ�#�Y �������N����g>DR�����^�W���B-H���+���[��qǑ���/л����y���î�^]#$��V������h%, \� �*���ɾƻ������^�^�^�^�^��VƼX�L�O[GH]#�����O�a��&*V�0�]/�V�g]0���`K� {�'m%ƺ�đ��2"ƼӾ��E��V�\*�ȉƑ`�]��_�) Ԯ�^]�ӿ�ȻҼ������M�̾S(��־��"�־����:�ͼc����Ⱦƻ��-���;�����YZ���Ҁ0Sýz\]M���Y��^�^�^�^�^�^�^�^�^�^�^�������J�Ļ�`d ������J<5��\�m½4�G������m½�F��\A�Q[��,�c݀����W9�iZtN���M�̾S(��־��"�־��M���S����%��Ya�]^��(���YaV�� �� �$F�V��\˺��|ӂ�̩^�^�^�^�^�^�^�^�^�^���Ɉ6�΄�`K� {�'!�����h%, \��^�^�^�^ R���[]#e�/�����ym�ɾ؀^]���3\�Ya���� � �^�^�^�^�^�^&*\]�ƀ��^H�҂�������؀^]��Ҽͺǀ����y�@�мE]V���YZAt�/�]����"��ǑGoX�L��G����Д��� ���^��|μ�,�$Y��i<5V���ӿ��^�J��3��Ñ��^�^�^�^^����<�Q`d�����#��!@� SE�]!��)�]!]OYƺEƑ�V�^� ��#�N���!�����]�>�4�������μ_� f] ��H�Ҁ�#\]�L\]Mî��>�K��l"����I#�_���!�M�̾SW8%��9bĻW8%�Cā��p k�[ �Ǿ�������d���Ϋ̻�Z��bĻ���Z�ǁ�����Ѽ��Ǿ����E�ԩ^���Q��[�ּ����TYyP��!���\����Q���"J�)9�Ya����D φ�̩^�^�^�^�^�^�^�^^Af[��Mî̭��"bĻ���"]��� ���H�Ⱦ�v��#�����Ի�Q���^R�[Ӽ�]!�_�Ѻ<��/I�/=��^�ҿ���O[GH]ƿ��M��O�a��^�_Œ���Z2�^]� ���#�J.�EƘ�.�EƑ����Ƅ��=��������]�^�_Œ�_Œ�úT��^ź���ϔ�!��^�^�^�Ƽ���ǀT�WX=����SU�����͑����Ѽ��ǾA�Q���»�Ի�Q����»]����&*�'[��9���"4�`d��=���bn[yЀq ��X�9�ɼ̾S�m½4��W}\���l���Ѽ � �_p@��yГЀ\�2»�3�^�^�^�^�^R������I����܀�����J*���VƼ������P!1�[��>��B`�_�� �^�� S��"�#�� J���ҿh ����/�ς��.��?��YZ�� ���^�^�^�^�^�^�^�^�^�^�^�^�B`��^�^�^�^�^�^�^�^�^�^Mî���\]ҿ������� ҿ������Ƽ_�!����ջK�����J��_�Ѻ<��/ )����Ļ�^]������-��Ѐ��^�^�^�^�^�^�^�^�^�^�^Z�����Ӿ� ����Z�A���^�^�^�^�^�^�^��Q��8½J�^�hмX����S���Հ�^�^�^�^�^^]+Ŀ\��I����ZWǿ�������V��Z������QWY��ɼ|���E�����!��)�]P�����9$��Þ^]�������W�����T����"��T� �"�F�&*`���^�W��X����ƀ���\]��ғ�� ��Ҁi<5V��Q»\W�ɑ��������� ɼK��]Ѿ�_���h�_� f]���|���^�^�^�^�^�^���P!1�[��>�^*���VƼXƦ�\�]��>đ^�x�%��+ �>����s]�������!������p��[Ϫ̩^�^�^�^�^%��[��^]�;��W��;���> ��Ya�^��X���s��^(� N�\] ����Mî��L�lU�؀�)��ǽ fb�+��O[GH]�Z#6�����[�(��Z#6�����[�����W��� ��-Y�$L��ʀ^]�R ۾�����!���F��)���L������c�g>�̻�J��3��Ñ���~�I������I� ��̐������\��%-�Ϫ�\��î�^�x�%��2� �T����ܫ̻�^�^L��P�ּ�L��P�֔z��P�ּX��û��F�@V!��5FѾ�_���^ ��p��ue��R�^�_Œ�m%��^]��������QU�Ⱦ�����VNU~v���QU������]��p��[��!��:V�Zt�����\��>��]R� ����P��ϼ8Ͻ�'Ӿϑ��UJ��»���Ƽ�\"C��ϝ�^�^�^&*��O�a��'Y� ��ź�Z2���V���L��W�Z2��i<5V�� �*�� ���s�r�\�H�VNU~v(�k�� ��bĻ ���c���a����\��_� f��F��\A�Q[��,�cۀZ���oZM�̾S�̾S����ڀhЫ�Y��E��YZ�]��Ի�Q�����A�Q�����^]V��/�����+��i, \�] ��Mî�^�(�Ϻ)�� 6��]�\���û���WT���\]�Z.5���p k!��^�^�^�^�^�^��QY\�»����»�Ի�Q����»�c��^�^��ǾC��[�̐^u$�`d��\�Ya�^+Y�\ƀ^]k������\��٫�0�����\]���귁ǼѺ<��/��Ӽ9'ǝ�^�^�3 �^�o�&*VN��'M�̾S�����2"Ɣ�_p��^�^�^^�X�1��E��P!$���j��XJj�A�$Y��B-Z�\]ʟ���ƼZ��������R%c�����_p��k�������R%c��`�]����Y��E��YZ�]�U�����ý»bĻ����"J����8�Կ'�^ �����ӫ3�U��� ��»� >W�8ժ̐���P!1YZ��ȾȾ��Wn[W���@ Z»H�Ҁ��'�U����� �����ӫ3^=Ͻ5��Ӿ� ʗ �*�U��� UH6[�P�ͣ���/л��&*���������\l������������i<5V�̩^�^�^�^R������I����ހ��\Ϳ1, \��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��Go�`]}� �0��Ņ��G��P!�K� ��������R%c��^ R���[bni�\R[��[������wt��q�K� �Ҁ�\Ϳ1, \�����Ѽ��ǾA�Q����1P!ʀ�î�����^����y���b>�E���^#[�#[��/�w/� f]�U��A/��`���Mḭ̂^�(�Ϻ)��V�^� ��#Ƽ_�![���V8Ñ��^��V���X�W ��Y��E�Ņ�^(�Y ">Wn��\Ҏ���^l�"�V����#�Y �8k!b����i, \�]ҿ�������Z I�}T��\˺��|ӂ���B`�\��î̐) ��cM��^�^�^�_� f]0�ӣ^�X�;�C��\�_� f�h�`d��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^V�j�� .#]3_� f�� �*�U���([ �Ǿ�������d�H���l�W8�Ҁ�l����(��q�^CT�]V�OJgƺ���W}\���^�^�^^ R���[bni�\R[��[�Go!�K���M�v�� |������͑��Q �ϐ�.Ҁ��Z�;�1OJ�}\��c���ӼT�Df�����[��>I� Jh����R�\"�0Sý��:a������^��X�L�^]�ڄ���I� ���EƑ�iZtN���{Y��Eƪ̩^�^gӼ�+�������N����g>DR���#�Y �8k��?]V����Z��]�^�.��?��YZ�� ��Go�`]5� đ�T�]��Ϋ3^=[�dD[ƀ`d���QKǭ�^ ��[���Z�Ǥ���Z��]#�Ӻ�ɪ���wt�΍�^D��Jh���P!��5� �^^�u�Ƽ;��+����^�^�^�_Œ�h�%��̐���������Ӿ���wt ��]����\�H�Ҁ���2"Ƽ��p��^b��V�=)�T����W�Ҽ���Ɉ6��y ��GeP \���;�=���5�ue�/���î���cN�ͼ ����e��̀ ����e��cN�ͼ ����e��ʀ�Mî̩^�����m½$Ocƺ� �T@�cƪ3Zt;B���T��Ƽk��������2"ƼӾ��E��Wn[@��^b��V�DҀ�����Ѽ���»�A�Q�^^�x�#��`d��^��,�)�)�Tώ���^�^�^�^�^��XCU4���^��~�� ���^W�%�bn�����I��Zt;�3�"H�WU�Eƀ���^�h��^��B`�m½4�P!ʀZ����.�E�]#��pF;�ϻ\l�΍�����^�$�^],��[���J!��^]���p�ϼK��l����h�_� fb��A���`��^�_Œ�`d��Ļ�0��ǼѺ<��/��ӼX� S�����ZYʀ��'h��#�Y WĻ�^]��A����^]�6f§�Y��E��YZ�]���������ɻ����"�Mî�Mî̐^�+�ӿ� W�TDŽ���^]ο�?��]����\�V��� �P��^��� ����� %����� �\�X�Y�$�� ��^�_Œ����m%[�̐����I� ���OgS[z�^�Ǽq��DŽ�N�͑���� �e�^ ������μYae��Α�^�^�^�^�^�^�^�^�^�^^���Q�0�]V��!���ς�^],���Ӽh�����Tǀ�������(�-�]����_s�rýl��?ƀվd; �X��d; I/��̐&*YZ]5� đ��+k�̐i, \�]ҿ����Ya ��]�����V(��E�!]h����E���^��W�Ҽ���Ɉ6�������-R[C�Α�^(����Ya���W�Ҽ���Ɉ6��y ��GeP \�`d��,�/s�`�^]���p�ϼ_� f]����+����Z��bĻ���Z��]h%��^���^V0Ȼ��]%��Wn[@���&*YZ�C���^�^�^�^���Q���ӿ�#��Ҽ���������Հ���-�����>�`d���QKǭ����Ɉ6�΄�+�Ӿ ����) �F�ğ��)����ʺ��O ���f�5� ����Ѽ^�Ӿ��h���������d��^A�#Ǿ�п���]M�X��L�EƑ��^�_Œ����Ѐ�Wn[@��V(���V8�]!W9���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_���Q5���O[GH]#�����O�a���̻ͼY��Eƪ̐��.7�X��^�x�V��Y��E��YZ�]�U�����ý»]���"��^�^�^�^�^�^�^�^��׼Ӿ�� Ҁ\��î�^]����ʆ��4W}\CO���^�^�^�^�^�^�^�^�^�^�^�^�^� ��{KY�̩^�^�^�^�^��Ǿ�+��B-���]�k�����Uź�ɑ���wt�΍�X�L��0Sý��}�] �V �$͑^�X�1�V��^�^�T! �]Y� �_� f Ν�^�^�^R�����X�����ړR����A������ګ�^�X�1�Eƀ�R����5F�m½4�����YZ���p��[Ϫ̩^�^^y�ӿ�ȻҎ��/�#�_s�rý]+�[ϼ/�#��^���FɄ�\�2»�3�@���-��W�Ϩ��) �W�T�`�]��H�Խ,H��ʀ�����ؓ�d��ҿ����=�����W}\��O�a���Q��8½J�^�W�"����� �e�^Go�ϫ����ҿ�D��F���R��&*�-�TǑ�������Z���$�.��_�Ѻ<��/ )���Go �������yм^�c�T���#y��;��\���^�ο�?���������#�[��q���D��N����� ��̐���Ɉ6��W2d��\��î�^�X�1��[���Q�Ž�������^�^�^�^^]k����ýJMî���+o%-� ��9Dʀ��pF;�ϻ\l�΍�����Q����������"��0J\��̐�+H��E�{��T���������^���)���q �N���φN���^�^�^�^���^�^^y�ӿ�Ȼ� ��A��VZ��]����gƺ�ߺ����U���TV�c��)�]�)�T�����ym�ɾ؀��Ⱦ���em½$M�v������5�^����! ���EƑ���Ӕ��U��DŽ�) ����^�^�^+�Ӿ �? TW-�-M6��Z���oX�L��^�NU~vW�ae�PĦ�Tμ�"0W�Ƚ]���'��Z2�8 ��ɗ����(V��yP�^�X�1���\��3�^�^�^������\]��Ǿ�����d�e6]���.�ȧVNU~vW"����^],��[���J!���!��ɣ�^�^�^�^�^�^+�Ӿ ���������NUJ�� H���Q �ϐL � �*�� �O�a�^�x��)�T���pF;�ϻ\l�΍�O[GH]ƿ��M��O�a���W}\���R�����I��݀%^�(��������y���]��ʺԯ��B`��^�^�^�^�^^]�,�%K�р��> ���EƑ�G���'M'V����c��@�;S�Ī�\�];��\��"�O>��Eƀ�^^������Ӿ����}\��YZ��A�Ր0Sý���\���^������1���������B-Z�\]}T4��^�x��-_� fA��������g�m½�E�I������� �\�������$Ǥ�Yǽ�L\�^l�½����F?�3�P��ϼX�Ӿϑ^�_Œ�m%���\˺��|ӂ��M�KS�����M�K��\���Q��sS�d�͟����h%, \��^�^�^�^�GI� ���EƑM�̾S(��־���"�־����:�ͼjʺ��^�_Œ�m%��\��î�^�^C2e, \�O[GHl��ƓO�a��F��ς�9ϭ���]�����s�r�\�o��ȗ^���h�`d�`d���QKǭ��W�\�L\ �����"bĻ���"]������ǾŽ����T��)ǀ^=[h�������� �X�]� �]�#��Ϫ��p k ���M� [�+�Ӿ ���e�����.���a��%�^\Ժ�"ӂ�� g!��8Ͻ���gƺ�X� �A�H�Z:�B-m���]M�L\��#Ƚ�JZϨ��^R�[Ӽ�]!�%qXƻQƻϫ�M�̾S�Ya�^����r��^^]���$3�Ya����Q �ϐ�#Ƚ��^�^�^�^�^�^�^^y�ӿ�ȻҎ�����&��8&��'�&w�&y�'�Ý��YPͼ��Y��^�^�^+�Ӿ �����Ƽ�î�����y��ʑ���]�)�]R��Z2f��+�Ӿ W �]���'��Ǿ�W ����������ŽM��^�^�^���m½$0ǼX���)��ǽ fb�+��X�Y*X�Y*ý��;���Ƒ� �*μ�����̐i<5V���d� ��jӺ>� �[lU� ϣZ"Y��p|�������� �A�QYZA/p�������?��R������I����܀�YZ�M�̾Sb�a�YZ��/��/��/����ѼkZ��^�kZ�W�ϨɾƻҼ^�ǼqH�Ⱦ�>�ɾƻҀ��N�Wn��� �(����� �T�̻�Z�Ǥ���Z�Ǥ! û�����Yae�^+�Ӿ ����U��Ǽ8Ͻ�' �»,�Ҁ^b��XB-X�Y�$ 6����_DȽ � �]�Ƚ ��ɼ�F�d�Eƀ���ʀ�Mî̐�����������+�Ӿ ���^���D���� ���B`����yP΍�P΍�̐ɾ,KT]$)� Y���. Z"4����"�ž��]ҿ�%����\]���Z��ͼFɁ ս�^�^]ο�?W�����G��̾S��G��;�����YZA/�!��� �'���Mî̩^�^�^�Wn[�4��ú,(�H�Ҁ�����JM/)���l���Ѽ̻͂��������ɞ��Ļ�^]�������^���^��Q�^��E��#�Y W8��Ƙ���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�2�[��½�V��#�(�;ƀ��.\bĻW S.\]MUf��^�^�^�^�^�^�^q�Ku��NU~vW����O�a��^�^�^�^Y.�������¾ b,1�XƑ�����N���J���yм^N���JЀ^I‰�T��`dW�Z2��)�]�[��v�F����Go�`]}� �0��Ņ�j��Ӿ� �/�L [�� �*μ_V �a�C����dH[W��������;��\���+�Ӿ ��@�Ѐ���ѼkZ��^]kZ��3O[GH]ƿ��M��O�a�� �*�U���([ �Ǿ�������d����-���(��Go!�\��î�X�L�X�L�] Ի ���L[D�Ի ���L��^�^�^�^�^�^�^�^�j�� .#b ��̻^�x�b���"��Ǻ����\��#�Y �8k��?]V����s�r�\�o�`K� {�'���ӑ#�A8���J��3��Ñ��Ƚ Y[I/�@ƿ� U����^�^�^+�»�/Կ�/C�39��� �Y��E��YZ�]�����%���"�^]��'��^� ���.1ZM�X��%_� fb�½ $F��^�ɾ���ϫ̭��"bĻ���"]��A����Ƒ����������\��̩^�^�^�^��5F$�O��1��Ǿ�����Ѽ��ǾA�Q�.���Z��SQCϽμ�T�������R%c��%^] �V*΍��^]������^D��JV���Ђ1^]Kƻ���� �����*�O��H���Q�����b�tN���̐) %�������P!ʀ�^�^�^�^�^�W���B-H���+��^�_Ie��Z�̐,�Z.�W��Ҫ�^��������^����e ���Go �������ǾC��[zտQ��^�^�^�^�^�^�^V(��E�!]X���T�WXW×`�b�L�c���Zב��Go�`]ҿ��Ņ���YPͼP�ͣ�� I����K�ѫ̐V9ú�=�� ������g�m½�E�I������A�QX�����-�T]r����^�? ɼ���r�{�U��ʺ��O ���f�5� �H��[���^A5�]��ƀM�̾S(��־�����!=�� Ęr�FZ� ��Mî̾��y�y�H�Ƚ��;��2)�EƼX��־��5;]OY ���MÑV0ȻI�^=Ͻ5��Ӿ� ʗ�yP΍���^����X����^zĦ�^�^���]�)�]!��Г�^�_Œ�m%����W�Ҽ���Ɉ6��P!�K� ������B��>�4����־���������bĻ�jJ, \��^�^�^�^�^`�]��H�Խ,H�ԗL?��� [�W�FY��#���h�`d�����X���2T�, \Ę��W}\���X��^�^��p��[Ϫ�M�̾S(��־����^�^�^�^�^�^�^�î̶î�^b��V�u���8��)c����T����/л��^]�5F��\��� �*�� Ϻמ�c�T���#����m½J�������IZ��ǀ�^�^����]+����^��+o���l�ɾ�����c��#�Y (���^z?C��� `d��g{�[�X�L�������»����Ѐ^�X�1�`���Eƪ̳W}\���B`������wt�̺�Z2]� Z»H�ғXƿ����W�Z2]� Z»H�Ҁ���^^]���" ]����^��D!��_p�ɾ��Z[�u��^�^�^�^�^�^�^�^�^�^�������d���V�������Z��bĻ���Z��]��X$j�b�Z2��^�^�ͻ�]NU~v�X�\�ƼX�\���r����A�Q��^��j�[���&*`���q�Ku�ӄ��+�Ӿ �����P!1YZ���P!ʀ��»�Ի�Q����»��#\] #����� �jӼYae���TX�L���,�����P!1�\�YaV�����(Kς�������X�̰^������]����b ����I���Y���Q��8½J�^�) �����Z��SQCϽ�Bo��[#���U�����ӼT�Df�����[��>I� w L����/л����\���^��0Sý�X�L�QEƀ����ҿXN�����V�Iɪ���\]����]+�»��"���^b8½JX���N�ԅԺ����^��"� ��]ʗ�����»���Ѐ�B`��B`������w L�0��[A�Q0��[L\����������^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��\����V����-K�ё��^�^�^�^�^�^�^�^�^�#�Y �&*K��B-K��[W2%���^�^�^�^^ ��[��^�^�^ʺ������ �"���^]�^O[GH]#�����O�a���,\D[E�»��^�^�[��^bĻ�^]�[Ɔ���^W��V�u��^�^�^�^�^�DȽ � �]�Ƚ 4n[��F�Ǫ��[��-���Wn�bdoo`��F ��@��$�@!�@ C!�@ �@ ��Q(8�Dр  ��P$���!�\ ��#t �@ �`��L��!�`8$�@�84�E± �@ D���` �@ 8&EdQ����qxH�Hd��T���X@��@ ��b!X4�@ $  �1I, � B�HA!��0 ��F��F���8�@  �p``&�D!I((��c�D A#�@ �@ ��@<Fc! ��@L, E�(4��Bq�$0� �1q\� �! � � LC �á`4�c�HL*E��h@G� 5��!b,�N� �`q4�@ (T �D�0 ��@  D"��C���@p@ .��C� �0�e�`�@�P #�f�,��1��X\��84>��"(&�#�@ �@ .��@ �G�pL�@ �@ �@ QD8 I$�X4 �@ , ��bapAD0y< �C2A8�@ ���qp@$���!< ���L  $Q�"�,�@� (, E���  ��i0.��@ �4��b�h4 E!Lb��H���p�B��L�@ �@ �@ �@ �@ P �C�@,,f!(T ���,� Cq��@ �@ �@ H ����XX Ƃ�`, ��Q��qJ$ C �4�@ h0�E�� 8���HD*�@�h@&�i��@���8H�FC�hT@�E��0$ �@ 06 E�!�C`Y (�D�P��@ �@� �"�XX� C�`X��B��(�@ $2�A*|���X�@ ����@ �8��Qit*��!�B���<�D�H0 �QX���E �qp@�ɦ�`����@ ($ qy@.�J��q(�!9(" AC �� @�c��<�����!�(�@ `$�@ .�@ �@y$4�@ �� �@ ���Qp(�@  :K���H��@ p@�1�4"�A �b�X&����X\���! D±8 �á@0�@@I,"�@�X4�@ F��Q("�@ �@ �@ ���р8��@ (��PL��@Z(���p@ aPX�@ 4���A� Ƈ�@(�!,,���!Y@�D$R9H ��Y$��@ ��"���@ �$A29ByHAF!�@ $A�x,��M �pd� ��qA��X( �@ ��!I �qP��p �DŽ" ��C�P, ����$�DŽ�`T�EA@�D��D$�!ÈD"�Œx, ����@(� b�!�@ X �łqhA�!I(��C ���X@�@�X FD �F �@ �@ �@ �Be�P,��c��D�ā�D�C��8���y0 ��@0<����X���@ �@ 8x���@@�@ 4 �#��8"�ƢR�E0a��#�x�@ ���h��CAP$�G�Ry8�C��0��dQ4 ¥qT � � 9 D〉AC �a!��QI�`9L�B! $�#�y$�"���", ̂�`H���� 2��"IH�C%ù8�Ąbq,��E�(@�O�0=��9H�ҺLIC�\$��$I��!q���2cqT"?L�ax ���L*��E��(F��h����8 ���H2L�Ԙ(6�D��$�b�p,���P8 �2�$< ��r�x$�f}f��9 43^!deinreloitatrae/otlandpe/monr/boaletp/capaargeusutunsoa/pl/nidodneilanrot_apuxo//aisx/bahai/acomdod/emjstshengljcrtr_imisc/hceve/e_c/u_t/piolicise/dt/vifipr/rexbuuradctoresma/scotesterles/cljcomsermpls/sterveres/enttrawebiceworches/lscrervse/monio/let/paore/rocest/cmic/de/fi_inlinimpoursrc/.cljs/co/proring/utispec_cljvent_chactioviceurcec_reging/handlertest/s.cljr.clj/src//testg.cljt.cljb.cljs/appk.cljware/ader/i.cljo.cljl.cljy.cljlientcircle-core/er.cljs/test_readest.cljes.cljles.cljproject._test.cl/core.clleiningeclojure/files.clcore.cljbuild.boject.clj/backendexamples/storagemain/clo.lein/pr/examplekolmogorsc/petlaior_nmubd.jfgyvwhk-xzq1025738M46CDHS9FORTA�`d�Ǿ�+�������j�� .#]fϪ��E�]Q-���ۼ���ۀ�E�]Q-���ۼ���ۀ���Q���ӿ�#��Ҽ���������Հ�� �ϐ�L��CU4��_/)Y�Ҽ��Q�C5� 6�����X���"��X�ʺ�̐��L [(�����Q��̐������(�-h�̩^Zl�?ƺ�Y�����Q���ӿ�#��Ҽ���������Հ�(�;�@ɑ�^����͔D[�TV�>�����#��!@� SE�]!�^]j��L [(��]���`d���U���N"0���Y�����cN�ͼ ����e �����ҟ�0Sýz\���m%[�����Ѽ8��Ƃ��^�Ǽ$G���^�Ǽqл�N�R[��^y�ӿ�Ȼ� ��A��VZ������I��݀�^]$H�Ҁ��B`��0Sý�h���H����e�����%¾1���ހ�^��|μX��&*! ���&*�V�����VƼ$#�&*!I/z���E�]Q-���ܼ���܀�î�0Sýz\]M���Y��� `?�� `?�3��p�F���E�]Q-���ؼ���؀�K���M�v��W�FY�����J�H]2���J��]��H������������Ya���)�]L �����־���������YPͼXCU4�����@�MU�E��M��\Ǽ�OMU�EƓOMU�EƂ��X�� Ѻ;�1� Ѻ;�1Y��E�(��_p�Fɓ��_p�+���#����ɑ �*ZZ��OYƺEƑ�J��]��H�Խ,H�������Ya�� �*Z»D����M���E�]Q-���ݼ���݀���½ 4�XH����%��V8�]K�Ѫ3�K���M�v�EƼ�۪�T�W����Ӽ��"�Ҁ��(Ѻ:�ǀ`�]��H�Խ,H؀^���Q�0�]V��d� ��Z���f]���A 9��\��^��|�W��� �Eƪ�V(��E�!]ǽ�ž�X�����Q���ӿ�#��Ҽ���������ՀV(��E�!]9���A�ӣ�������Ŀ��V8Ñ�T�D ����ϼ� �0�����Ǿʪ̭Mî̐�p�-X�3�J��]��H�Խ,H��������Ya���YZ�ß�R���[�ϼX�dc]����2ɣ�)�l�ɼK�ё��P��ϼX .����R�����%;��E�]������?�M�K��`��C�ɨGž�K#��f���z\]����J�M�̾SW8%��9bĻW8%�C�b��;���Z��#[NU~v=%#���#��X�̀Zt;�3����~�����ժ����QU8½w N�\��.4��+�Ӿ ���(��N�ǀ�E�]Q-����������0SýI�Sý�Yƿ.\�̭�»�,�c��W������؀^ ��ڼ��!�Q��������D�ɺȗ+�Ӿ ��N�ɟ�tZN��úTϼ�E���t��^�Fɺ��ڔ�Fɺ��ڀ��Q���������'�������Q������T��`��^W��V� ���EƑ�u�� �\��Ņ�^]��Q��ZW�t��X�Y* �[����E�]Q-���������U����ȾȾ�Fɔ����U����Ⱦ���Ⱦ��ȾȾ��#�[��� Ī�,��[��(�d�����Ժ�ǀɾ���?@�TEƀ^]���_� f]�H�,ǀ�h�`d�^],���Ӽh����̾S�F�������W������2"ƼǽL��P��ϼXs���CU4�5V���Q���ӿ�#��Ҽ���������Հ�J��]���H��ZԽ,H�������Ya���ν� ��Հ�XWʺ �b ���\�l��W ���Ŀǀ���2"� �!��̳ �)J��)wtź}FL�ʀ /[�3�I��]����J��]��H�Խ,H��������Ya���� y����$M�3��J��]��H�Խ,H�������Ya��������� |�����+o`d���ĺ��ՀO[GHb8���\�`�B`A L�����^�����H�ʑ`�]VӾ�V���_�Y�"Ŀ,����� ZA�Ȫ̺��FY�VZ[�W��FYN�G �������w��ۀV�j�� .#]f�I�m½������K������e�����.��}\�fE�z��A5�����!Q��0Sý��}�]Yǽ�ͺ���R�]� ���������]V?ƀ� �*0����)��ǽ fb���W�2f������A���X��¾�����J�H��+�Ͼ 'FY0�*�����Q���ӿ�#��Ҽ���������ɱ����VƼ$K�ё�E�]M�̾SԾ�\��ؼ��؀�J��]���H��_�����Ya���Y��EƼ�W�Z2�Z$Zý����\]�������������Hս��R�����%���R���� ���E�]����Ƚ��� �»�0���f���Ǿ�\6�Ҁ�^�����I�{c�.�����_W��4�[� ��YZŅ����2"�=½�,$Y��tZN��úTϼ½��T�V�j�� .#b �]�H����[���_/)Y�Ҽ��Q�C5� 6���������F���e�����At����ƻW�����At����ƻ���ƺ� �� ��������ɺ��gƺ;��Fɔ���gƺ;J����'���=�����#ё�_/)Y�Ҽ��Q�C5� 6��������A�Q��+�»b����A�Q�Ņ��I� ���E��F��E�]Q-���ڼ���ڀ����D� |�ڄ��Г�Rз�V�j�� .#b ����T;6���[����Q���ӿ�#��Ҽ�û̼���������ǼX��Ž�Þ�E�]Q-���ټ���ـ �*μ_V ]���������Ӿ� ���:ʀ���+o���]�ʪ̐�����r��� �ϐm�ɾ���`4�#���H׫���Q�Ž�I��|�C� �����c��#�Y (����P#�\���ټ��Q�E��ڀZ�\b���c��#�Y W�Ϩ��[�\��ɼӾϪ��]�J�LӪ̐U���W��Ǫ��E�]Q-���������E�]Q-��������KUJ5*����yм^�ο�?I�A5���P���(Ҳb��\��C�Ӿƀ�_/)Y�Ҽ��Q�C5� 6���X����ƻ������ ��ý���[�ϼX�dc����M�;��?���"���^]�^�.�T��D�����^�^�^����^]�<�2����[������h��h�^���^��|Ϋ�0V�0V��^�x�V�����-��μh�`d� �*μ_V ]���������Ӿ� ���:ʀ�Ļ�0��ǼѺ<��/���(��ƻ�3�M/)��Go��#�Y ��.�1��� ɾ��^]����ʆ��4���������Z���)�FZ1���]�+�Ӿ ����'��ǾƼF� �����A����ƀ�.��+����^��~� ��]���������W���YZ]ĻT�QX�L�]Ļȼ��I�N�Y�������»ӓ����»ӼP!�����C����N���Β�����1�i, \�]ҿ���^Wk��\�hI���T����΁�̐������ųI�d��L�Eƪ���Q_W��4�[� ��Y���!�@��Zt(�/�Zt@�����wtI�^���Q��[��W�)���[ym½��?�Ľˆ�\6[�̐Y���ц�X��M�̾SW8%��9bĻW8%�Cā���W�Ҽ���Ɉ6��y ��GeP \�^ R���[bni�� �A�� �T��d� ��ƿ�W�a��Ž�"����]�^^*���VƼXƦ�\�2»�3 �����-������������]�+�Ӿ � �����-9����^� ��#�N���YZ�!������e ����[�ϼ\����"Ϻ)W�����ɣ��X���B-Z�\]X� S��d ������N����^]K�Ѻ�#���I#�������]�Ȼ���[N����Z��͑ 6��Z»z��YZ����^� ��#Ɣ�X�V8Ñ�Go�`]5� đ�ͻ�l��=�����û��J!�½������pT����AT�������R%c��&*�-���»W��?��� N��T$Y���K#��f]Mȉ�N#1X�L��&*Ǿ����Go >��=���j�1�^�^�^���8�Կ'V(�� �EƑ�Z��ͼFɁ ս�^��P!��p����%��^�^�^�^�^�����ټ 6���E��Ǽ��[ϼ��ƑYa��ҿǞ�����%-, \�]�����Ǿ�̺Ļ�^]�#�Y yп�����^^�x��-���F��gƺ;��Fɔ���gƺ;J����'���Z��]�^����h%K�ё���[ ��]��[§\��î̺Ƚ�Tw�����[��GoX�L��^�^![�� ���Go �����Ƚ�TJ�Ɛ��Q�Ɛ��î���e!���^�_Œ��#�Y �Ѐ�!��h��T�W����Ӽ��"�ƪ��W�Z2�/�3_pI/)Ҽ���Y�Zȗ�k���, ����][��^�^�^V�j�� .#] �;��Eƀ��^�x��-+H�3�^�^�^�^�^�^�����!���!��h�m½4z��5���^�^�^�^�^�^�0Sý��!§�^�^�^�^��.��+�}�=�� đ����#��!@� SE�]����EƀýJMî̺�ae5��5��3�ɾ�� ������ؓ�d�̩^Mî�ýJMî̐^�W �C���]K�T�̻�î̃��^m���\��\�2»�3�Ǽ��[ϼ��Ƒ���Ѽ ���% ���% k�[ �Ǿ�������d��^�^�^�_=Ͻ��E�D��ǧ��X����KY]K��]KY��ZϨ�м^B`��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�d�e6]��YZ����L�y������#�Y W��\]�.�1��]��ɑ�^�^�#�Y B�*�, ���l����@ս fN�ǫ3����B� �\�������g�m½�E�N��C�m½�Eƪ���e��e#��!��:V�ZtW�t��^��Vƫ�\���^�h���»�,�cݼ��؀����־����������+oX�̀�^^���������������w L�������\��%-�� �A/�ϼF�@V!������[ ���^��j�[������]��6��ͫ���W�Ҽ���Ɉ6��y ��GeP \�0J\��̐�Ƚ � �]S� U��=�־�Z����Vƫ�Y�T@ƿ§��Q �ϐYZ��\�Y��E��YZ�]�����%�^��\]h�����"Jh��|�#Ǿ��Ǽ��[�@�MU�Eƀ^�X�1�����X�L�`�]V!�ڀ�J��3D ��Tǀ��� Q��H��EƼX������+�X�9��\���Mî����-5��+�Ѿ5�M�̾S(��־���Y.�������¾ b,1_� f]#р�^D��wt���a��\�#W�aV��B-Z�\]ʟ�^]V���0V���î��#�Y �c_������)Xd���#�Y B�*��&*�#�Y �����P!1�[��>�Ǻ�V��\��̩^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�#�Y WĻԾ�T@�T=�� �]!���^�^�^�^�^�^�^^�X�1�`���Eƪ��ͽɼ��@�Ѐ� �^��3�^�_Œ���+H�̰^CT�]V���ɺ�kK�ё��^�^�^�m½4z��5���^�F�*�����̻^���!ź���a��%�^+�Ӿ �&*V��^�^�^�^�^�^�^�^K��[�X�9��\h�V�j�� .#]f�I�m½��9�"�\�9�"�\���8��)cD�Z��Ȝ�)���L��^W��Vƫ̐�»�yM�Y1<5��\�������w L��l����N#�;d�3�^�^�^�^�)�]Y�4�F����΍���Q��8½J�^`�]������Y���ц�̺Ļ�^]���,�3^l�½����F?�3�#�Y ������ҿ�����^�^�^�ɼ��U��� ��»� >W�8ժ�����I����Vƫ�M�̾S(��־��"�־����:�ͼdH�0���f���Ⱦƻ��� 6Ǿ)c��v���^���"���c���� �A��ҫ3� �*�������A�c������N����#�����]�^�R����ܫ�%�����Ѽ��!�]�^"���^bĻD ƻӼ�5ǧ�`K� {�'����]��!���T�_�Ѻ<��/���Go�k��Mî�#\]�L\]Mî����X�d$��[���]!�����ҿh��ӿ����ҿh���[��sĺμX�Y�$, \�Xƿ�'��Z��מ���]�_�Ѻ<_p(��ƻ����׼Ӿ�� Ҁ0��[A�Q0��[L\�������R%c�����Q��[�ּ����TY��!��2'� �* [���d�Eƀ���ǾC��[B`], \đ^]����H��{�����V���L��W�������N����g>W�Ϩ�^�����ʗ�Ļ�^]�#�Y ������ɾƻ�N���U4�Z��_DȽ � �]���ɼ��[�Dý� �Eƀ�P��ϼX�ӾϑGo >zտQe�����c��#�Y �3���h��h�G�A-!]����]3 ����yм^]����Ѐ���cN�ͼ ����e��̀^]����=��}���� �X�L���[y���ƀ^]�ӿ�ȻҼ��������\˺��|ӂ�̳��/л��^ R���[]#e\R[ʀ0���Ya ��]�����dHź�� ������ ��μX�Y�wt��^��YPͫ��^]�ӿ�ȻҼ��������V��G"W9Ϊ�Z:DŽ�]P!ʀ�Z���0Sý����+H��W}\���W}\��^�_Œ�m%�������J`���#�Y �8k��^l�½����F?�K�ё�^]� ���#�wt������%-X(Ҁm½4�X ս�^�� �'�-FZK�р����I���^�^����������M��� ����Q������K�р�� 6Ǿ)c��v����^^�%� Ѻ%-8Ͻ���M��͂�^�^��!]�����p��[Ϫ̐�+�����2"��% [�X�̶î�Z���oZM�̾S�̾S����ڀX�L����P!1Ya��\�Mî�Go�`��Go >�^���h�`d�^�_Œ��9ϭK��]�/��\��̻�c���̻�^��ڼ'�^�_Œ��� �^��3����l��s���3 ��\˺��|ӂ����ɺ�k+���#ʀ��^�^�^�^�^�^�^�^��Ⱦź�V [Nݾ\�f���l���Ѽ ���%�^��Ҽ���#Z ���X�Y*�ƒ��#\]�L\]Mî�� 6Ǿ)cB-��ǀ��R�����I�������/л���^�^�^�^�ɾ���?��Q����������f]�j��XJj��X$Y��> ���EƑ����r��úT�m½4�����ɾƻ�V�ӑ�V��G"�FZ����ɺ�k!����(�� .�Ժ ��*��ӾL\��;ĿҺ�ƻ��F���φN��M�̾S(��־��"�־�����?�+�eM���S���Q��8½J�^���2"Ƽ���#��ɪ����J�cƀ �����ӫ3����������W�ɑ�M�̾SW8%��9bĻW8%�C�] ���^�^h%�ǾjӼ������^�^�^�^�^�^�^�^�^�^�^��c>��T��^]^C2e_� f]��[�_� f���^�^�^��&��\6�����������ҿ�D��F��^]��!=�� �]�����+�UC��\�3��H4y���^W��VƼK�ё�Mî�ɾ���?�ҿ���"��Ǒ^�����^�_Œ��#�Y �Ѐ�Z���oK��]�������B-Z�\]����^�^�^��G�h��h��d� < .�[�B� R+��X���^�^�^�^�^\��î�0J\���^]����H��{����>W��Q�^�x�Ȝ��\Ϳ1, \��]+ ���1��^�^�^�^�^�^�^\��î���»Ӿ�A���>���) �F�ğ`�b9�Կ�Ӿ��� � BH���yPΪ�V�^����Q�A���W�0�� ����ǀ��^�^^y�ӿ�ȻҎ���U���N"0���Y��� �*Z»y����$����M��͂�^]�ӿ�ȻҼ��������#�Y ��.�1Z����������f]�ɼɪ�/��Tǁ��6��ͫ��)�]�[��v��R������I����ހ�^�_Œ�m%�� �*ZZ��OYƺEƑ^�_Ie��Z���φ�̐��c��@�;S�Ī����Wn�����»ӓ����»ӼP!�^]�������^�^ �*�� ��^�^�^�I���Z5(�����YPͫ��V���8��\���� �\���̭��"bĻ���"]���H�Ⱦ�>A/M�5ƺEƑ+�Ӿ �&*V���Q��8½J�^�Mî����"J�^������,�Ҕ�� ��� �*�U���I������UH6��#�Y �&*X�L��^�_Œ�������b�t�P��[�̃�����R%c����ǽ��h���2"ƼǽL��^�^�^�^�^�^^W��VƼK�ё^]ο�?�X�9��\ā�9�����)���L���'h��2'�ĺн�+�Ӿ �\�΍��.�T��z �ʀ`d���Q�C2Yae ����^�^��Rg>����Q�^�î�O�a����!����f( #�3�����'_p�����Ƚ � �]�kƺӔ!��^��VƼ����]Z�`�������ϼ9���]O����j��р\%�\%�̐_=Ͻ��E�WV�\*�\գ�#�Y �������N����g>DR�����^�W���B-H���+���[��qǑ���/л����y���î�^]#$��V������h%, \� �*���ɾƻ������^�^�^�^�^��VƼX�L�O[GH]#�����O�a��&*V�0�]/�V�g]0���`K� {�'m%ƺ�đ��2"ƼӾ��E��V�\*�ȉƑ`�]��_�) Ԯ�^]�ӿ�ȻҼ������M�̾S(��־��"�־����:�ͼc����Ⱦƻ��-���;�����YZ���Ҁ0Sýz\]M���Y��^�^�^�^�^�^�^�^�^�^�^�������J�Ļ�`d ������J<5��\�m½4�G������m½�F��\A�Q[��,�c݀����W9�iZtN���M�̾S(��־��"�־��M���S����%��Ya�]^��(���YaV�� �� �$F�V��\˺��|ӂ�̩^�^�^�^�^�^�^�^�^�^���Ɉ6�΄�`K� {�'!�����h%, \��^�^�^�^ R���[]#e�/�����ym�ɾ؀^]���3\�Ya���� � �^�^�^�^�^�^&*\]�ƀ��^H�҂�������؀^]��Ҽͺǀ����y�@�мE]V���YZAt�/�]����"��ǑGoX�L��G����Д��� ���^��|μ�,�$Y��i<5V���ӿ��^�J��3��Ñ��^�^�^�^^����<�Q`d�����#��!@� SE�]!��)�]!]OYƺEƑ�V�^� ��#�N���!�����]�>�4�������μ_� f] ��H�Ҁ�#\]�L\]Mî��>�K��l"����I#�_���!�M�̾SW8%��9bĻW8%�Cā��p k�[ �Ǿ�������d���Ϋ̻�Z��bĻ���Z�ǁ�����Ѽ��Ǿ����E�ԩ^���Q��[�ּ����TYyP��!���\����Q���"J�)9�Ya����D φ�̩^�^�^�^�^�^�^�^^Af[��Mî̭��"bĻ���"]��� ���H�Ⱦ�v��#�����Ի�Q���^R�[Ӽ�]!�_�Ѻ<��/I�/=��^�ҿ���O[GH]ƿ��M��O�a��^�_Œ���Z2�^]� ���#�J.�EƘ�.�EƑ����Ƅ��=��������]�^�_Œ�_Œ�úT��^ź���ϔ�!��^�^�^�Ƽ���ǀT�WX=����SU�����͑����Ѽ��ǾA�Q���»�Ի�Q����»]����&*�'[��9���"4�`d��=���bn[yЀq ��X�9�ɼ̾S�m½4��W}\���l���Ѽ � �_p@��yГЀ\�2»�3�^�^�^�^�^R������I����܀�����J*���VƼ������P!1�[��>��B`�_�� �^�� S��"�#�� J���ҿh ����/�ς��.��?��YZ�� ���^�^�^�^�^�^�^�^�^�^�^�^�B`��^�^�^�^�^�^�^�^�^�^Mî���\]ҿ������� ҿ������Ƽ_�!����ջK�����J��_�Ѻ<��/ )����Ļ�^]������-��Ѐ��^�^�^�^�^�^�^�^�^�^�^Z�����Ӿ� ����Z�A���^�^�^�^�^�^�^��Q��8½J�^�hмX����S���Հ�^�^�^�^�^^]+Ŀ\��I����ZWǿ�������V��Z������QWY��ɼ|���E�����!��)�]P�����9$��Þ^]�������W�����T����"��T� �"�F�&*`���^�W��X����ƀ���\]��ғ�� ��Ҁi<5V��Q»\W�ɑ��������� ɼK��]Ѿ�_���h�_� f]���|���^�^�^�^�^�^���P!1�[��>�^*���VƼXƦ�\�]��>đ^�x�%��+ �>����s]�������!������p��[Ϫ̩^�^�^�^�^%��[��^]�;��W��;���> ��Ya�^��X���s��^(� N�\] ����Mî��L�lU�؀�)��ǽ fb�+��O[GH]�Z#6�����[�(��Z#6�����[�����W��� ��-Y�$L��ʀ^]�R ۾�����!���F��)���L������c�g>�̻�J��3��Ñ���~�I������I� ��̐������\��%-�Ϫ�\��î�^�x�%��2� �T����ܫ̻�^�^L��P�ּ�L��P�֔z��P�ּX��û��F�@V!��5FѾ�_���^ ��p��ue��R�^�_Œ�m%��^]��������QU�Ⱦ�����VNU~v���QU������]��p��[��!��:V�Zt�����\��>��]R� ����P��ϼ8Ͻ�'Ӿϑ��UJ��»���Ƽ�\"C��ϝ�^�^�^&*��O�a��'Y� ��ź�Z2���V���L��W�Z2��i<5V�� �*�� ���s�r�\�H�VNU~v(�k�� ��bĻ ���c���a����\��_� f��F��\A�Q[��,�cۀZ���oZM�̾S�̾S����ڀhЫ�Y��E��YZ�]��Ի�Q�����A�Q�����^]V��/�����+��i, \�] ��Mî�^�(�Ϻ)�� 6��]�\���û���WT���\]�Z.5���p k!��^�^�^�^�^�^��QY\�»����»�Ի�Q����»�c��^�^��ǾC��[�̐^u$�`d��\�Ya�^+Y�\ƀ^]k������\��٫�0�����\]���귁ǼѺ<��/��Ӽ9'ǝ�^�^�3 �^�o�&*VN��'M�̾S�����2"Ɣ�_p��^�^�^^�X�1��E��P!$���j��XJj�A�$Y��B-Z�\]ʟ���ƼZ��������R%c�����_p��k�������R%c��`�]����Y��E��YZ�]�U�����ý»bĻ����"J����8�Կ'�^ �����ӫ3�U��� ��»� >W�8ժ̐���P!1YZ��ȾȾ��Wn[W���@ Z»H�Ҁ��'�U����� �����ӫ3^=Ͻ5��Ӿ� ʗ �*�U��� UH6[�P�ͣ���/л��&*���������\l������������i<5V�̩^�^�^�^R������I����ހ��\Ϳ1, \��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��Go�`]}� �0��Ņ��G��P!�K� ��������R%c��^ R���[bni�\R[��[������wt��q�K� �Ҁ�\Ϳ1, \�����Ѽ��ǾA�Q����1P!ʀ�î�����^����y���b>�E���^#[�#[��/�w/� f]�U��A/��`���Mḭ̂^�(�Ϻ)��V�^� ��#Ƽ_�![���V8Ñ��^��V���X�W ��Y��E�Ņ�^(�Y ">Wn��\Ҏ���^l�"�V����#�Y �8k!b����i, \�]ҿ�������Z I�}T��\˺��|ӂ���B`�\��î̐) ��cM��^�^�^�_� f]0�ӣ^�X�;�C��\�_� f�h�`d��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^V�j�� .#]3_� f�� �*�U���([ �Ǿ�������d�H���l�W8�Ҁ�l����(��q�^CT�]V�OJgƺ���W}\���^�^�^^ R���[bni�\R[��[�Go!�K���M�v�� |������͑��Q �ϐ�.Ҁ��Z�;�1OJ�}\��c���ӼT�Df�����[��>I� Jh����R�\"�0Sý��:a������^��X�L�^]�ڄ���I� ���EƑ�iZtN���{Y��Eƪ̩^�^gӼ�+�������N����g>DR���#�Y �8k��?]V����Z��]�^�.��?��YZ�� ��Go�`]5� đ�T�]��Ϋ3^=[�dD[ƀ`d���QKǭ�^ ��[���Z�Ǥ���Z��]#�Ӻ�ɪ���wt�΍�^D��Jh���P!��5� �^^�u�Ƽ;��+����^�^�^�_Œ�h�%��̐���������Ӿ���wt ��]����\�H�Ҁ���2"Ƽ��p��^b��V�=)�T����W�Ҽ���Ɉ6��y ��GeP \���;�=���5�ue�/���î���cN�ͼ ����e��̀ ����e��cN�ͼ ����e��ʀ�Mî̩^�����m½$Ocƺ� �T@�cƪ3Zt;B���T��Ƽk��������2"ƼӾ��E��Wn[@��^b��V�DҀ�����Ѽ���»�A�Q�^^�x�#��`d��^��,�)�)�Tώ���^�^�^�^�^��XCU4���^��~�� ���^W�%�bn�����I��Zt;�3�"H�WU�Eƀ���^�h��^��B`�m½4�P!ʀZ����.�E�]#��pF;�ϻ\l�΍�����^�$�^],��[���J!��^]���p�ϼK��l����h�_� fb��A���`��^�_Œ�`d��Ļ�0��ǼѺ<��/��ӼX� S�����ZYʀ��'h��#�Y WĻ�^]��A����^]�6f§�Y��E��YZ�]���������ɻ����"�Mî�Mî̐^�+�ӿ� W�TDŽ���^]ο�?��]����\�V��� �P��^��� ����� %����� �\�X�Y�$�� ��^�_Œ����m%[�̐����I� ���OgS[z�^�Ǽq��DŽ�N�͑���� �e�^ ������μYae��Α�^�^�^�^�^�^�^�^�^�^^���Q�0�]V��!���ς�^],���Ӽh�����Tǀ�������(�-�]����_s�rýl��?ƀվd; �X��d; I/��̐&*YZ]5� đ��+k�̐i, \�]ҿ����Ya ��]�����V(��E�!]h����E���^��W�Ҽ���Ɉ6�������-R[C�Α�^(����Ya���W�Ҽ���Ɉ6��y ��GeP \�`d��,�/s�`�^]���p�ϼ_� f]����+����Z��bĻ���Z��]h%��^���^V0Ȼ��]%��Wn[@���&*YZ�C���^�^�^�^���Q���ӿ�#��Ҽ���������Հ���-�����>�`d���QKǭ����Ɉ6�΄�+�Ӿ ����) �F�ğ��)����ʺ��O ���f�5� ����Ѽ^�Ӿ��h���������d��^A�#Ǿ�п���]M�X��L�EƑ��^�_Œ����Ѐ�Wn[@��V(���V8�]!W9���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_���Q5���O[GH]#�����O�a���̻ͼY��Eƪ̐��.7�X��^�x�V��Y��E��YZ�]�U�����ý»]���"��^�^�^�^�^�^�^�^��׼Ӿ�� Ҁ\��î�^]����ʆ��4W}\CO���^�^�^�^�^�^�^�^�^�^�^�^�^� ��{KY�̩^�^�^�^�^��Ǿ�+��B-���]�k�����Uź�ɑ���wt�΍�X�L��0Sý��}�] �V �$͑^�X�1�V��^�^�T! �]Y� �_� f Ν�^�^�^R�����X�����ړR����A������ګ�^�X�1�Eƀ�R����5F�m½4�����YZ���p��[Ϫ̩^�^^y�ӿ�ȻҎ��/�#�_s�rý]+�[ϼ/�#��^���FɄ�\�2»�3�@���-��W�Ϩ��) �W�T�`�]��H�Խ,H��ʀ�����ؓ�d��ҿ����=�����W}\��O�a���Q��8½J�^�W�"����� �e�^Go�ϫ����ҿ�D��F���R��&*�-�TǑ�������Z���$�.��_�Ѻ<��/ )���Go �������yм^�c�T���#y��;��\���^�ο�?���������#�[��q���D��N����� ��̐���Ɉ6��W2d��\��î�^�X�1��[���Q�Ž�������^�^�^�^^]k����ýJMî���+o%-� ��9Dʀ��pF;�ϻ\l�΍�����Q����������"��0J\��̐�+H��E�{��T���������^���)���q �N���φN���^�^�^�^���^�^^y�ӿ�Ȼ� ��A��VZ��]����gƺ�ߺ����U���TV�c��)�]�)�T�����ym�ɾ؀��Ⱦ���em½$M�v������5�^����! ���EƑ���Ӕ��U��DŽ�) ����^�^�^+�Ӿ �? TW-�-M6��Z���oX�L��^�NU~vW�ae�PĦ�Tμ�"0W�Ƚ]���'��Z2�8 ��ɗ����(V��yP�^�X�1���\��3�^�^�^������\]��Ǿ�����d�e6]���.�ȧVNU~vW"����^],��[���J!���!��ɣ�^�^�^�^�^�^+�Ӿ ���������NUJ�� H���Q �ϐL � �*�� �O�a�^�x��)�T���pF;�ϻ\l�΍�O[GH]ƿ��M��O�a���W}\���R�����I��݀%^�(��������y���]��ʺԯ��B`��^�^�^�^�^^]�,�%K�р��> ���EƑ�G���'M'V����c��@�;S�Ī�\�];��\��"�O>��Eƀ�^^������Ӿ����}\��YZ��A�Ր0Sý���\���^������1���������B-Z�\]}T4��^�x��-_� fA��������g�m½�E�I������� �\�������$Ǥ�Yǽ�L\�^l�½����F?�3�P��ϼX�Ӿϑ^�_Œ�m%���\˺��|ӂ��M�KS�����M�K��\���Q��sS�d�͟����h%, \��^�^�^�^�GI� ���EƑM�̾S(��־���"�־����:�ͼjʺ��^�_Œ�m%��\��î�^�^C2e, \�O[GHl��ƓO�a��F��ς�9ϭ���]�����s�r�\�o��ȗ^���h�`d�`d���QKǭ��W�\�L\ �����"bĻ���"]������ǾŽ����T��)ǀ^=[h�������� �X�]� �]�#��Ϫ��p k ���M� [�+�Ӿ ���e�����.���a��%�^\Ժ�"ӂ�� g!��8Ͻ���gƺ�X� �A�H�Z:�B-m���]M�L\��#Ƚ�JZϨ��^R�[Ӽ�]!�%qXƻQƻϫ�M�̾S�Ya�^����r��^^]���$3�Ya����Q �ϐ�#Ƚ��^�^�^�^�^�^�^^y�ӿ�ȻҎ�����&��8&��'�&w�&y�'�Ý��YPͼ��Y��^�^�^+�Ӿ �����Ƽ�î�����y��ʑ���]�)�]R��Z2f��+�Ӿ W �]���'��Ǿ�W ����������ŽM��^�^�^���m½$0ǼX���)��ǽ fb�+��X�Y*X�Y*ý��;���Ƒ� �*μ�����̐i<5V���d� ��jӺ>� �[lU� ϣZ"Y��p|�������� �A�QYZA/p�������?��R������I����܀�YZ�M�̾Sb�a�YZ��/��/��/����ѼkZ��^�kZ�W�ϨɾƻҼ^�ǼqH�Ⱦ�>�ɾƻҀ��N�Wn��� �(����� �T�̻�Z�Ǥ���Z�Ǥ! û�����Yae�^+�Ӿ ����U��Ǽ8Ͻ�' �»,�Ҁ^b��XB-X�Y�$ 6����_DȽ � �]�Ƚ ��ɼ�F�d�Eƀ���ʀ�Mî̐�����������+�Ӿ ���^���D���� ���B`����yP΍�P΍�̐ɾ,KT]$)� Y���. Z"4����"�ž��]ҿ�%����\]���Z��ͼFɁ ս�^�^]ο�?W�����G��̾S��G��;�����YZA/�!��� �'���Mî̩^�^�^�Wn[�4��ú,(�H�Ҁ�����JM/)���l���Ѽ̻͂��������ɞ��Ļ�^]�������^���^��Q�^��E��#�Y W8��Ƙ���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�2�[��½�V��#�(�;ƀ��.\bĻW S.\]MUf��^�^�^�^�^�^�^q�Ku��NU~vW����O�a��^�^�^�^Y.�������¾ b,1�XƑ�����N���J���yм^N���JЀ^I‰�T��`dW�Z2��)�]�[��v�F����Go�`]}� �0��Ņ�j��Ӿ� �/�L [�� �*μ_V �a�C����dH[W��������;��\���+�Ӿ ��@�Ѐ���ѼkZ��^]kZ��3O[GH]ƿ��M��O�a�� �*�U���([ �Ǿ�������d����-���(��Go!�\��î�X�L�X�L�] Ի ���L[D�Ի ���L��^�^�^�^�^�^�^�^�j�� .#b ��̻^�x�b���"��Ǻ����\��#�Y �8k��?]V����s�r�\�o�`K� {�'���ӑ#�A8���J��3��Ñ��Ƚ Y[I/�@ƿ� U����^�^�^+�»�/Կ�/C�39��� �Y��E��YZ�]�����%���"�^]��'��^� ���.1ZM�X��%_� fb�½ $F��^�ɾ���ϫ̭��"bĻ���"]��A����Ƒ����������\��̩^�^�^�^��5F$�O��1��Ǿ�����Ѽ��ǾA�Q�.���Z��SQCϽμ�T�������R%c��%^] �V*΍��^]������^D��JV���Ђ1^]Kƻ���� �����*�O��H���Q�����b�tN���̐) %�������P!ʀ�^�^�^�^�^�W���B-H���+��^�_Ie��Z�̐,�Z.�W��Ҫ�^��������^����e ���Go �������ǾC��[zտQ��^�^�^�^�^�^�^V(��E�!]X���T�WXW×`�b�L�c���Zב��Go�`]ҿ��Ņ���YPͼP�ͣ�� I����K�ѫ̐V9ú�=�� ������g�m½�E�I������A�QX�����-�T]r����^�? ɼ���r�{�U��ʺ��O ���f�5� �H��[���^A5�]��ƀM�̾S(��־�����!=�� Ęr�FZ� ��Mî̾��y�y�H�Ƚ��;��2)�EƼX��־��5;]OY ���MÑV0ȻI�^=Ͻ5��Ӿ� ʗ�yP΍���^����X����^zĦ�^�^���]�)�]!��Г�^�_Œ�m%����W�Ҽ���Ɉ6��P!�K� ������B��>�4����־���������bĻ�jJ, \��^�^�^�^�^`�]��H�Խ,H�ԗL?��� [�W�FY��#���h�`d�����X���2T�, \Ę��W}\���X��^�^��p��[Ϫ�M�̾S(��־����^�^�^�^�^�^�^�î̶î�^b��V�u���8��)c����T����/л��^]�5F��\��� �*�� Ϻמ�c�T���#����m½J�������IZ��ǀ�^�^����]+����^��+o���l�ɾ�����c��#�Y (���^z?C��� `d��g{�[�X�L�������»����Ѐ^�X�1�`���Eƪ̳W}\���B`������wt�̺�Z2]� Z»H�ғXƿ����W�Z2]� Z»H�Ҁ���^^]���" ]����^��D!��_p�ɾ��Z[�u��^�^�^�^�^�^�^�^�^�^�������d���V�������Z��bĻ���Z��]��X$j�b�Z2��^�^�ͻ�]NU~v�X�\�ƼX�\���r����A�Q��^��j�[���&*`���q�Ku�ӄ��+�Ӿ �����P!1YZ���P!ʀ��»�Ի�Q����»��#\] #����� �jӼYae���TX�L���,�����P!1�\�YaV�����(Kς�������X�̰^������]����b ����I���Y���Q��8½J�^�) �����Z��SQCϽ�Bo��[#���U�����ӼT�Df�����[��>I� w L����/л����\���^��0Sý�X�L�QEƀ����ҿXN�����V�Iɪ���\]����]+�»��"���^b8½JX���N�ԅԺ����^��"� ��]ʗ�����»���Ѐ�B`��B`������w L�0��[A�Q0��[L\����������^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��\����V����-K�ё��^�^�^�^�^�^�^�^�^�#�Y �&*K��B-K��[W2%���^�^�^�^^ ��[��^�^�^ʺ������ �"���^]�^O[GH]#�����O�a���,\D[E�»��^�^�[��^bĻ�^]�[Ɔ���^W��V�u��^�^�^�^�^�DȽ � �]�Ƚ 4n[��F�Ǫ��[��-���Wn�M�� D�;n/��)P ")��o@�A�����������R��} xUhY  �M�`��CE�~v� �4m��g]�M��#�0�U���5(ڊ�t�La�C��M�h/՘�� �yE�������2c ��V���x� %���,K�l ˨��!����N��!\B8�]a ��!���@b���RK�c�1x�Ty�����$$e�ʗ�f�:�5�b O�~��6}$Cg��9Ht0:�gb�S��9��t�](" �/#�[G3�&F�&d�Дc��� a�ԨF� T���5 4YR#  onroe ert ( [n atesacplriubtess1.y thtatrmahealic-d" autus (ndct:dce s0.:/{:mosc -fs/raneapntpoodd adamnicr2.rdcaomcltiloveillimetoid :co) stsear "deleinenres [ (s [ :foringcliverdat)))def {:in )) se getclecljileid rd 2.0steorgnilcatloacorconcritorom/ureval] " "0.leinnamecomp(defment "1.reco.orgptioarti(ns -valstatventtionject the :as ]] -path"} false"http]) :url [org.-specprojec"]] :licensource-statelicensclojureresourc "] ) .core :a])) (de.0"] endencie/clojure(:requirurl "htt :refer seiatrcop-"l.unmd]/f ):gvy[h(bk1wx0}j2S;P{ACLMT4EIO!z,78HNq5#'3?_D$6FR`@B=*>^&<~KQU%+9G�H�Z�y�ūܫI�?�R��RSd��n����������ۧ���Sd��GDO��6�U������Sd�������ï����RQQ��QQì���%��� �E�����L������� �Y��� ����RQQ�ϧ7�����OZ�P����G�I2A1����� ������0�2_ȩ��̨RQQ�ϧ洧��P����@[����ɰ� X��]�������G�I2A1�B�ë>�����RQQ��#���-�2B����'O�=ȧL>�RQT̨�M���īb��ȩ��J���O/��C���QJHv�QQQd���P&̨���Jh��R���DA1J����OZ���R���D�I4U喝.�ï��C��R���Df�˝�Q�����u��������+ح��Jح������OZ��X�B#�.�ï��\R��'�/�G��FQQ�QQQ�+H�֪A���ĸ������\\��ȯ�ƻ=�6���N<���GR�™�������u�S��G��]G�����Sȯ�ƻ=�6���N<���P�O�]N<�����G��M����N<��RĪP���ĸ�R�T]�6����(���QQT]�6�����M��R�QQ&(�0��6����(�`�6��ɰ��ǧ�{N<�6�+R�����(�����\\){G�]N<���Ȫ�C�RĪP���ĸ�R�T]�6����C�R�QT+Ʃ�P�O�������Iu��QV��¾�I�ūܹ`�QT]�6����(���QQT]�6�����M��R�QQ&(�0��6����(R�QQDtC��0��6����C��`�6��ɰ��ǧ�{N<�6�+R�����tC�R���Q��+Ʃ�P�O�������Iu����QQD��¾�I�ūܹ`��QQQ�QT��(�����\\){G�]N<���Ȫ���RĪP���ĸ�R�T]6������R�QS&Ʃ�U�����I��u�QT� /������I`�QT]�6�����ñ��R�QQ��&y����D���������R�QQQ&y��ID��������ˏ�T]�6����(���QQT]�6�����M��R�QQ&�ç0��6������R�QQD�ñ�0��6�����ñ��R�QQD(�0������(�`�6��ɰ��ǧ�{N<�6�+R������ī������Iu���Q� /������I`���Q����(���\\){G�]N<���Ȫ��ñ��C�RĪP���ĸ�R�T]6������R�QS&Ʃ�U�����I��u�QT� /������I`�QT]�6�����ñ��R�QQ��&y����D���������R�QQQ&y��ID��������ˏ�Q{�6����C�R�QT+Ʃ�P�OⱵ¾����D��I�`�QT]�6����(���QQT]�6�����M��R�QQ&�ç0��6������R�QQD�ñ�0��6�����ñ��R�QQDtC��0��6����C�R�QQD(�0��6����(�`�6��ɰ��ǧ�{N<�6�+R������ī������Iu����� /������I`����Q���tC�R���QQ+Ʃ�P�OⱵ¾����D��I�`���Q����(���\\��MF]_�u�L«� L��IH� LO3�@-`��� L��IH� LO3�@-��uTW����ĺ������ŧ޴㽽���\F� /������ҧ��M`�MR�™�G ���G���_�u�L���ǧ�ǹ��O3�@-�G��� ���`���ͧ�͹��O3�@-�G��� ���`������������������� L��IH� L����ǧ�ǧ�ͧ�͹�uT� /�J��׻����ú�����ú0��������彧ͽ�ú0��������彧�\\)�MF�������ô�̪�����ʱ��R�™�G���u�S������ô�̪�����������P�O�D���G�G���� ����I�XR�L�2�[�������DZ�Ͳ�uT�P�����*�������\F�����G�O������G�Rľij���G��ɰ� �G��L�������L�G\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� �ǧ�\\\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� �ǧ�\\\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� �MG��"�̫���������XD�\\\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� �����ǧ�\\\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� ���ǧʽ��\\\){���O��� �L�� QQQb�GU����� � � T@G�� � � QO��������L� ��� � � � T����GU����� � � � � QQ@G�� � � � � QQT���ɰ� �P���� � � � � � � � ĩɰ� ��ǧ�\\\��E���:�i�ô��������������BE�����~8��GR�·C̩��ȩ��O�D��`����ϧ������������������������������������������������������������������������������ϧ������]~8��������>P��������){~g����n2�ɧ��F� �Ϊ� oG�� ��v�����n���ǧ�FQ��^ɧ�D��F� ��G�� ���X�A[�vı�����n���ǧ�^��ǧ�D��ͧ�˧k�AFQ��^��ǧ�D��ͧ��F� ��G�� ���X�������[�vı�����n���ǧͧk^��ǧ�D��ͧ�˝����FQ���F� �����ɧ� q��� �vı�����n2ǧ�FQ������n���ǧ�`� ������ɧ� q��� �v��������n2&ɧ�D��FQ������n���ǧ�`����ϧ��������������������������������������������������������������������������輂�ûMK�����ܩ���GRľ�C̩��ȩ��RQQQ�ûMK�����ܩ�����RQQQ�ûMK�����ܩ��`� �P��ů�� G�����vQQ� ��ï��2Ʃ����v�Q����ı�ӳ�ੵ GҶ���J����˽���oMP&�J�����`QQQ� ��ï��2Ʃ���A[�v�Q����ı�ӳ�ੵ GҶ���J���&�D�˽���oMP&A^�D���`QQQ� ��ï��2�� ]M���v�Q!��M��Pī���ı�ӳ�ੵ��GҶ���J{��������`�QQ���oMP�oMP&yJ�����\RQQ� ��ï��2�� ]M���ݧy�� ��v�Q!��M��Pī���ı�ӳ�ੵ GҶ���J�G�]��������`�QQ���oMP�oMP&yJG������\F�� '�O�.��ȩűGR�¿ '�O�.��.�u�S� '�O�XP��P�u�S� '�O�?�¨��"���O������S� '�O�.��ȩŴO3u�S��G������G�o���R&[�G�OR^'KDȩ�RVïGJì��%���޴$$Ǿ���ʲ�˽��ϧG��MG�=9��� '�O�MG��")�ϧԪGX�G���ϱ�����������������������������������������������������������������������������){G�@G������GR�L��OPı�G�o���RQ��Q���@G������uT�PĨ��"����O�`QT��H��O����O��uQT�PĬ�����D�����\`]G�@G��� ���GR�L¿QT�������Jj����Q�OPı�G�o���R�QQT.��@G��� �P���uT�PĨ��"����O�`QT��H��O����O��uQT�PĬ�����D�� �\`]G�@G�Z����GR�L¿QT�������Jj����Q�QT����ҭ<� �J���Q�OPı�G�o���R�QQT.��@G����P���uT�PĨ��"����O�`QT��H���O����O��uQT�PĬ�����DZ�����\`]G�@G����GR�L��QT�����V��Jj������ʲ�Q�OPı�G�o���R�QQT.��@G�y�� ����uT�PĨ��"����O�`QT��H��P�O����O��uQT�PĬ�����Dy�� 綨\`]G�@G�� ���Z����GR�L¶PT�����P�j����������n���Q�OPı�G�o���R�QQT.��X�� ���Z��P����uT�PĨ��"����O�`QT�P���Ѳ������״ʌ�����OPO�����zDyD�IN���#��\`]G�@G���GR�L¶PT�����P�j����������n���Q�OPı�G�o���R�QQT.��@G��P����uT�PĨ��"����O�`QTL�]Pı���OPO�����Dy�#���uQT��H�2²W�]�L��l�ÔQQT�P{P�\\�{��ɱ.��x�� �$�$$ʱ��������v! p��ڶ�ɧԩMXN� ��� �v���%��� �E���ɱ W���ɱ� �v�a&yJ��֧�NHv�V��%��ï�HNH�E��� �����䌾O0��q� �Ѳ��.�ï��&���%�;��I��O0v���QVyDN�R���QV��ȯg�N�R���QV�����OL�HP��R�QQQJOL�H�&���%�;��I��O0v���QDyDN�R���QD��ȯg�N�R���QD�����OL�HP���R� ��MU�x�H��Z��w״ǔ���eP&K�^ ��MU�x�H��Z��w״ǜ����x���[���NK���$͜����x��� /}Dz����R��t�M�xXN���F�d���������L>���MRľ™�G ��D��ų��ƨ繟�6����L|R®�Iǧ��Iͧ�O����ȧ���O/�ȧC�uĪ���Iǧ��I�FQT�O�������Cɧ�`QT����MRQT�O�������Cɧ�`QQT�O����ȧCɝij�G����O/��\`�]6����R®�I�#ͧ�O����ȧ���O/��u�L®�I����G#͝QC�E�/����O/�ȽuT���E�/����O/�ȽE�/��O�����`QQQ���O/��RQTO���RQQQ��I�R�QQOG#͝Q�O�����RQQTo̧���O/��6����L|���Iǧ��Iͧ�O����ȧ���O/�ȧC�\\){L>���MR����������G��"�ũ�ȩN��ȯ#X��v��G��#�uTL�M�<��>�,���M�E�/#�\�uQTL>���_ǧM�<��#�#�\R��ȱ����O�����#�#�uTL�-ɬ��6�������G#ǽ#ͧ�O�����ȱ����OG�G��� PG�ǧǽuQT��ų����OG�G�ǝT��G�-ɬ��F��O���M��ȱ����-ɬ�ȧOG�G��#�\`�������ô�̪�����ޱ��Fϧ޴Ǿ�� �ū�)ϧ޴Ǿ�֩ɬ�# G���){�O�O���`�������O��H��O��ǽ��ϧ�)�ϧ�Y���E��2�� �|��PX�6�P@Ʃ������H��O���F]6�#����H­��u�@G�帯����RQQT@G��O��H���\)Ĩ����H��O��ǽ��ϧǼ����c�3�M��ŨR���;�������7�Ũ͉�Ũ��®��c�� �N����͉��͏ľ®��c�?����"����ȱ��������ľ®��c��Ȩ�6�K/�P����;�����z����]���������AMG��"�Cu�L�MG��ͺMG��"�MG��"�C�QK� ��ũ�ı�MGD�=������.�X�`�������MGD������4��QK����G�?���Ķ�������!����4����K� ��uT��K�D��P�ũ���D����Aٸ\){����A*��CR�O����P���V���A����Cv�����Cuı��R��;�����z�R��+����A�FQ�?���������fĴb�2�\R���G\){Ʃ���.�ï�R��O�#�.�ï����Χ����A�R��ͱf����WΧMG��"�CRK( ���)Qڀ���R����f������C��ٻ������������ݧ ����G����K���RJR©�ͱfK( ��^Ʃ�U����C��uĩ�+6�����.�ï�;�����z�����A*��fį������f{���������A���ͱC\�K( ��`]� ����.�ï�R�������P��.�ï��fȪ����X�K( ��v�K( ��uı��R��+��.�ï�P�;�����z���-�JH���FQ��ũ��FQ�?�����K( ��! p��\R�������GI�֪AFQ��GFQDC���d����G��W�"Rľ�d����n��ľ�d�����W�"�DOm�FT�™�G��G����GR�L«J�Ů]�ê�Ƴ�����G������vQQQ�ë�� ���E�/�����OG����\�Q�I� ��������. ���E�/��OG����\�uT�P����ë�� �������ǧ�\R���`QT�P����ë�� �������ͧ�\R�Q�`QT�P����ë�� ���������\R�Q�`QT�P����ë�� ���������\R�Q�`QT�P����I� ��������������\R�Q�`QT�P����ë�� ��������ʧ�\R�Q��`QT�P����I� �������������ʧ�\R�Q�\F������?��ɰ� ���'K�R�©ɰ� �P�O�D�u�S�����?�'K����u�S�����?�n�O�D�u�S�����?����������`���ϧ�����������<�P� �P�����������������������m2ȯ8*MK�� ���9���H�ZR�«̫ɴn�O���ֹ��#ZJì��%�=9�ïG����ʺ.��ȯ8+�F]�M��ȯ8�R����H�Z��C�M��ȯ8�ݧO���5����J���v�M��G ���9��� �u����G�#ZJ�M���&�I4PQQQ^�M2M��G ���RQQDWQQQD̨RQQDëL�QQQ�9��� �RQQD��ëL���İ /����������`]�M������,��R����H�Z��C�M�������,��ݧO���5����J���v�M��G ���9��� �u����G�#ZJ����,����&�I4PQQQ^�M2M��G ���RQQDWQQQD̨RQQDëL�QQQ�9��� �RQQD��ëL���İ /�����������`]�M��� �����,��R����H�Z��C�M��� �����,��ݧO���5����J���v�M��G ���9��� �u����G�#ZJ� �����,����&�I4PQQQ^�M2M��G ���RQQDWQQQD̨RQQDëL�QQQ�9��� �RQQD��ëL���İ /�����������`�9 ����,:����GR��9 ����,:��P��P�u�S��G��]G������G�,:����G�R�L¨:����Pĭ�,:��P�ʽuT�P����N�#:�����\`��,���8��B=�� �������,���R�¿,���8��B=�� �?�����#MG��"PQQQ��G�N<��@>MG��"��`{#�MG��"PQ��G�N<��I�ê>�MG��"��`{#�EK���G�N<��OH�>�EK�`{#[�Tů�I���ë������>[��`{�ů�I���ë����� �MX�ë����8Tů�I���ë���� �MX�ë����8�`{�ů�I���ë������M��[�ů�I���ë�����M��[��`{�ů�I���ë�����ë����8֪�L��ů�I���ë����ë����8֪�L�`��� ����e��GR�¸� ����eP�O�D�u�S��G�����G�G���l��G�R�GXJӫ���l�ç�O'�X����ç����/�vTL»�J������I�ūܺ�X�ū�������|��Ƹ�ȶv�O'>�G�J������I�ūܺ�X�v�O������l��G����O'>�G��uQT�P��O����ū�������|��Ƹ�ȶ�\`�(,��n�R�™�G ���G�������%����������L�E����O3���+����X��άٮ�X����J���Y�Y�E޷��Ω�����V��������V����ʺ��0���W����F]�M����������`{�N� G��� �M����\��`{��Nı�G��� �M����\����QTb��\)�ϧੳ����ϧ�������]����5EK�ů��R�������P����t��P���5EK������v�tu��J������t`]�����[�*�����R�Ұ � ���B�� çt����������v�E�����������u�O��"��ĵ�[�ǧ�ͧ���E���������`��ϧ�/��I�X��ϧ�����������]� ���N�R�� ��PN_�I,���t� v®���@-uĸ���G��� �����@-��ݲ\){���R��?�P������ë�ñ�����t� �,�v�t� u�ܪ����,D'K�D��G ���D������D3.�DE�|��t� `]�IH�ů�L��*�����R���[ D��G ����D������D3.��B�����ů�L���v�N�uĵ�[�*����PN�5EK�ů��!�G ���D������D3.��`��ϧ�I�X���[�]�IH�N� R��,��W�P��N� �MB�����v�N� u����ı�G�������QQQ� ���N�R�Q���R�Q�IH�ů�L��*�������N� `]� �B*eR��W P���B�[��dP�ev�N� uĨ���RJ����� ��������� ��[��d�vȪ���G�RQ� /������ ��[���FQQ� /��{"�[��FQQ���N� FQQ� /����\F]�_�uı������������G��� ���\��FQQT�ĸ��ͧ�`QQQ�IH�N� RQQ� �B*e`{�6���Nw�v�VK( ��Ϊ� �#���N��v�V���%��� �E��� IA��6���Nv�V�&yJ�Y�a� @���NHv��QV��%���ȴ�Y�H�L��� ���$ì����VK��U���}렛��� ��� ���>�}�͜��QQSz��s}�ǜ��QQS ���H�Zw�ǜ��QQS6���N�n�$���V ��MU�x� ��wߴ�攛V_6���N�n�R�V ��^M�6���N�H�Z�M��R��DëL��6���N�H�Z�ëL��F�d4������IR�·C̩��ȩ��O�D�u�Sd4����I�����`� ��ů��IH�H�vĮ����IH�H�J�������������������������������������&��D����\��DH��\֧�\֧�\ҧ�\���\ҧ�\֧�\ҧ�\ҹ�R�������&��D����\��DH��\ҧ�\���\ҧ�\���R�������&��D����\��DH��\���\ҧ�\֧�\ҹ�R�������&��D����\��DH��\��R�������QQQ^��D����\��DH��\ӧ�\֧�\���FT�����IH�H�J�����������������������������������Ҳ������&��D����\��DH��\ҹ�R�������QQQ&��D����\��DH��\ҧ�\ҹ�R�������QQQ&��D����\��DH��\ҧ�\���\ҧ�\֧�\ҧ�\ҹ�R�������QQQ&��D����\��DH�k�R�������QQQ&��D����\��DH��\���R�������QQQ&��D����\��DH�k�R�������QQQ&��D����\��DH��\���R�������QQQ&��D����\��DH��\���\ҧ�\֧�\ҹ�R�������QQQ&��D����\��DH��\ҧ�\ҹ�FT�����IH�H�J����������Ҳ������&��D����\��DH�k�R����QQ^��D����\��DH��\ҧ�\���\ӧ�\֧�\ҧ�\ҹ�FT�����IH�H�J���������������������Ӳ������&��D����\��DH��\ҧ�\֧�\ҧ�\���\ӧ�\ֹ�R������&���D����\��DH��\��\��\��\��\��\��\��\��\��\��\��\��\��\��R������&��D����\��DH��\ӹ�R������&��D����\��DH��\֧�\ӧ�\ҧ�\���\ӹ�`�d4��������O3�GR�™�G��]G�����Sd4��������O3�����O3��G��IH�G�� s��@-�GRĪP��^f����DK( ���\��ê��\�P��K( ����R����J�Y���9�\_G ��������P� 9�X��Ȫ��\�\�QQ������O3��IH�G�� s��@-J������� p����\��\�\�\��ê��\�\�\�P��K( ���\�����\��Y���9�\�\�\_G ��������P� 9�X��Ȫ��\�\�\�\�\��\RĪP�ȶ�Ȫ�������/�A��"��R��QQQ��-ɰ� �2N2��#X������v��QQT������O3��IH�G�� s��@-J���\������"2�� L�ⵯ�\RĪP�ȶ�Ȫ�������/�A��"��R��QQQ�ت���\�\姯����\��ȫP�ɰ� �2��A����������\�\�ݧ�������v��QQT������O3��IH�G�� s��@-J���\���ƶ���\�\ɧ 9�H�N"�\��\F�K��B��ô����98�i�R�™�[��̨�̨�������98P�̨�O3�G������J� �ҳ��I���̨�\){�98�yP�Ʃ�P����98�`]���R�������P������P�# G ���_G ��v��G ��uĨ:��O���P�O����G�J�窽����`��QQG ��\){b�98�����X���R��������@G�����P��#XP���9gyP���È�W�9gM��zLv���u�L���ñ�İ����ç���uQT���X�^98�4X˝T�?����ñ�98�y�\Fϧ�aO�PB�6���> ������E�/P_A'�����OKŪ��6������ �PB��ë�����"��� E�/�]�E�/P�O�ʧʧʟ����"R� E�/PMK�u�/ç� E�/PMK�`]KŪ�R� E�/PMK�'�/uĸ�������E�/P����MK�����"�E�/PMKɽ'�/\F]6����R� E�/PMK�'�/uĸ�������E�/P����MK�����"�E�/PMKɽ'�/\F�� ����HI��R���6�U����4�G��ȩ��O�� �P� �����O��N��n�O�:��S� ����P�O�����S� ��HI�ÉHI�ù`� �P��ï��26�HI�çO� �vQQ� �Ȫ���v�QHI�ú6���HI�ñO� �G�����J�.��HI�ú����G��� �Ȫ��������v�QHI�ú6���HI�ñO� �R�QQ�GD������������J�.��HI�ú����G�����񭵲`� �ȫ��çB���ï��2���vQTHI�ú��ñB���:J����QQQ:����Q:�ʽ������F�R��;��I�R�Q;����eP��P��u�Qo����o���u�Q�P��P��u�Q��i����i���S;��I���Ŵ���,����,u�S��̫��������u�S��B����y�� ��O ��O�O�Ê�S��G����-����Gu�SA�A����n�O�A�A�����SOmK��O �¨�i��M�G������cI����K��N�R&.�^�C�L�I¹��F){-ȱ��i�u�O�O��FTo����o���s�ī����i��-ȱ��i�A�A��o����o����K��N�`QV��O0���+��ά����0��FQV;����ePĮ��o- J��K������N��\)Ķ���������GF]OH�uĪ�#�i�RT��cI�T��`QTO�O��\){G��G�u�L�GPĪ�������G���QT��G��M��GP�G���QQG��uQQT��G�����GPGP&O0���G�O0����O����O0��RQQ���QD���<O3种�\)��Ī����=9��d�FTm2�=9��`]���,uķ��,����,!ŧo����o���\)�ϧ���ھ���� ��B#��������[����;��I��K��H����FOmK��O �H��M��ۧ-ȱ��i�F��� ���ȩűGR�™�����P���u�S��̫��������u�S��G���u�Sz��s�n�O�oɬ��S�� ���o����,��¸����� ��O��Ɋ�S�� ����ʼn��u�S�� ����� ���3��u�S�� ����� ���±�� ���m�� �ů��G,��3���S�� ����� ���/ L��u�S�� ���G�ūa�O�(���*�ɬs��S�� ���G�?�< �?�u�S�� ���ȩʼnȩŹ`�*�ɬsP�"#����*�ɬsF]�G������R�ú�IH�/ L�o�����R����O3�G ������������G�3+G��� ���G�����\`]���3ú����3^yJG��`{���/ L������Nc�G������`{#��/� ����� ����˧��`]G�����|� �GRĸź��>�3ۧ��3FT�ź��>�/ Lۧ��/ LFT�ź6�����Xۧ�-�3���/ LFTů��G,��3PG�/� ��FTGXJ� �������|� vTL� ɱG�G�J������� ��O��ɝQQ o� ɱG��m�� #��/� ��`�QO�0�a�?+��Ʃ�O�  DbJ����+�� ���G�MKɴì����uQT�P�?+�����1O�0�H\RQT�P��Jɬ�ì���ľ3PO�0�H�J�/������\RQT�P��������O�0�H\\){G� �GR�GXJ� �P���MG�ūHݧ���,���2�� ��� vTL� ȩź6���. ��ȩź�� ��� �QQO� ����?+��Ʃ�O�  �uQT�P�������O� �DbJ��\�ĪP�������O� �DbJ�MKɴì���\�ĪP�������O� �DbJ�3��\�ĪP�������O� �DbJ�3+�� ���G�\�ĪP�������O� �DbJ�3��3�\�ĪP�������O� �DbJ�3��/ L�\��ϧ�a�ȯ���洧�ô�ᯬ������� ��s����B����RQQ���P�������O� �D0GJ�3��/ L�\����P�������O� �D0GJ�3��3�\�\���IH�y��n�R�°IH�y��>�������IH�yyu�L�y�������Iay�uT���^���G�y�*��G�4y���̝QV��G�y����G�4y���̝QVL3X�M�<�����y���̝QV�������������ɧy���̝QV�C�L�y��M�<Py���̽�RQQQ�?����Ƨ�����ĩ������\�QMB���\F�ϧΩ���ì���%�������G�]G�P��. ��������F�噴GF]G����RĪP�����ͧ�\RĪP�������\F]G#  �RĪP�����ק�\RĪP�����ާ�\F��ϧz��X�G�]G A<�R�3���FT�  �`]G�G�,���RĪP����ʧǧͧ�׽,���\F����GP��. �������߽����^G���D�����D��?���D����D����������)ĭ�����G����ϧ�&G���D������D��?���D����D���������˼�d��@���n��GR�™�G���u�Sd��@���G���P�O�D�u�Sd�oM|��������G���u�Sd��@���n�O���������������Sd�������G�n�O�D�u�S��n��������¿���ۧ��ۧ���Ũ�G�,��M��o/�uQQTG�G�� @��������Ũ�G�,���\\){0�������Ŷ�?R�N&Ʃ�U�����G������u�L¨����> ���#���#������QQQ�G��> ��秸G���G�G��uT����_N�GR�QTƩ���Ŷ�?b�_N��������\F]0�������Ŷ�?�R�N�#��<���u�O��"�0�������Ŷ�?�NH�<���`]0���������R�NG�,������Gu�L¨����> ���#���#������QQQ�G��> ��秸G���G�G�QQQt��b�_N����Q���G�G�� @�����#q��t����uT��N�RQQT�����_����T����_�G����\F�� ���� R�·C̩��ȩ��O�� ������S� �� � �`� � #ï��2���vQQ �M� �����F�ϧ�êPί��"��1쯭���P� ��B���P���կ�?���� @���ϧ�NHݧ���h��ٻ�E������ԧȫP����G ��2Ȫ�����ϧ�eݧ�Y���9��_�ì��%�'�?�����Ժh����ϼ�ϧӯ�� ��Į�������O�/��ç�5Ȫ�5Ȫ����)���ůɴ?��:��e�R�ҧM����PW�ȯ�ƧȪ��e��v��ũ�P��u�S������PG������O3�������R»euĭɺ6��R�¨�uQL»��+�e��3��uQQ�H��Jm����Ĩ��ɺN2Ĵ�O�����\��O3Ҩ����ԧ����e`QQoG�/�k\F]���O��>�������ܩR�[�uİ /��[��[�FT�ɺ6��R�¨�uQLª���+�����uQQ�H���Jm��Ĩ��ɺN2�Ĵ��C���������������\RQQH�������������[�`QQoG�/�k\F]b�������ܩR���O�����ܩ�v»euı��O3���������e��ɺ�����O��>�������ܩ\��MF]_�u�L����O3�@-�� L��IH� L`�Pı�O3�@-�� L��IH� L��uT� /�J�����ĺ��#����\FMF&^ ��MU�x��$״ǜ�QQx��� /}ǜ�QQ�C��C��O w޴ʲ���˼��� ����e���O� R��W��>�����=�������? ���B����)QԪƩ��=���F]���<���������R�������P�����������e���P�����>��vĻ»��̧O��ɹ;������\){A1���������̫���������XR»e�G ��������O���uĪ�O*M2�����O��ɧ�e�G ��FQQ��RQ�`]A1���������̫�������eR»e�ëL������O���uĪ��������b�ç�e�ëL�������O���`){�Ƹ�ȶ�R�O����P��W�����e��v»e�ëLuĪ������移e�ëL���窽���|�Ƹ�ȶ�|���ȶ�v�Q`){OG�� s��ɬ�R�O����P��W�����e��v»e�ëLuĪ���������窽�G�|OG�Ĵb�ç�e�ëL�QQQ`��H�>��H�>�GR��d��G�­���G���S�H�>��eG�O�Gu�S�H�>�H ����G�`����GP��H�>��eG�O�GR����H�>�H ����GF��K�K'���Y�GR��RK�K'������������A��� Z��u��G��]G�GX�����ľ��0��R̫�������X�W ������Ʃ��=��*�OZ�R�oG�/����=�Ʃ�*�OZ`]��Ʃ��ɪ�R„u¾��ɪ2��F]6��Ȫ*�Ʃ���������C������ �R����P�1Ȫ�����ɪ�ݧ�=��*�OZ�#����)Q�êP��AP����O�X�E����OK �ƨ���i������ñ�ɪ�ݧũ9�R���P�ȫ�觩����B�'�Ƨ������>�)Q������U�1���G�����ٻ��ȯ��2ë>��=�Ʃ2W�Zݧ�1����R�?������=�Ʃ�*�OZ��ٻ��ȯ��2ë>��ɪ�ݧ�1����?�R�¾��ɪ2���v����1�u��Ȫ�O]UE����OK �ƨ���i������ñ�ɪ���ɪ��Ʃ��ɪ�R�QQQ�K�K'����������?+�=��*�OZۧ��Ʃ��=��*�OZ�uQL�G����X�W ���uQQ�M�X��#����uQQQL�O��������1�u�O�����G�#���佹\`){G�M�G�R�� �PW���A��� Z�M�v�GXJ���vTL��O���G���Ȫ*�Ʃ���������C������ �R���T���_��������uQT�P��O����`QQT�P��#����k\`�MR�™�G ���G �������U����$ʧ���$ʧ���$ʧ���$ʧ��$ʧ��$ʹF{�EMU��$ʧ�$ʧ��ʧ�$ʧ�ʧʹF]� /�O����t����O��� ����O��������uİ /��G�G �������9a���O���������Jξ�`T=��t�t��RQQQ���O����OMX����O��� �����O��� uTL�⵫/���ⵯt����O����uQT� /�RQQJ��ʻ���Ĩ��K�����ͻ��vQQ�⵫/���RQQ����O��������RQQȪ��O�����������O����$�\FQT��H�OMX����O��� ��O���'2t����O�����OMX����O��� ��'2t����O���\F]_�u�=��@-O3�@-�uT�@-RQTL�t�ı�@-R��QT� L��IH� L��u�T���t���ʝ�T� /�O�����P������T� /�O���EMP�'����`��O���O3�@-\\)�MF�����[���"����Ŵ��@�GR������[���"����Ŵ��@���@u�S��G���u�S����[���"���tC��[�����ʉ��ʟ�G�E�����y��GR�L¸���@����JE�����y��G��ʲ�uT�P������C��I�����訪�C�QQT��@�E�����yPı��D�LP�����I���������\\���Q�ӯ�� ��Į����fծ�Nܪ�ݧ�ç�Ʃ��o�������������Q���G �����PW��P�����IIEZ�2�����Q��Y�a� @���Naʼ��Qì��%���N��� ��Y�H�$�ð����ç9ũ���Q�����_�e�� ���$ì�������P��G ������Q��X��P�����I_�����êݧ���O�O�X�B�ũ���Q�ů�����P����P���Q�Y������O'>������Q���<"ݧ����ݧ����P�����I��)���9����� ������;�R&���Jٷ �|P��G�B#���"�O���������K���-2B�����RQQQ��������W�PW�Z����������vD3K2�$$�vD�ï�J��fծ�Nܪ���™�B����������� ���������*��������u�S��9����� �?�?�`){������R�������WïL���֧����������P������Ω�쯭�FR�HPB�������������B�����=�s�EK�����ïL���,�R��ִ��/�K2W�_Kŵ��X�Z���X����Pȩ���RW�Oŵ?�X�O�����X���,�P_ũ�ȩN#�/�ɧL>�R�� �)Q�����RQ��OH/�I������P "�2��P���v�&Ʃ�U'��L����ïL��G˧����uı���ïL��GRQQ�?��ïL��G��W��RQQ�����������*���\��&�1 �^���R&yJ��H�*M����O����RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^�������ǹ�˼���(���M�R�™��ƥ�Ʃ�ȯ8�ܩ�Ʃ����S:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P��u�S��(��E���5l��E�u�S��(��@ʼn@ş��[�:���`]��|�ëL�R��L2�O"�>2��O�0�a_HI�ôv�O�0�Hu�L�OP�@ź̨��d�O�0�H�Qt� �t� �O��Q����O��uT��0��E�/��`QQT@ź�����ۧ��RQT��RQQT@ź����۝T��.ۧ[���D���Ʃ�ȯ8�ܩ�Ʃ�PO�`�İ /�O��T� /�t� �T� /��bJt� O�`�\F]��|R��M2O��2��|PB���>Ʃ�ȯ8��v�Ʃ�ȯ8�u�E���̫ɱbJ.��b���|+Ǻ溫��#|�ëL�`]�������u�O��r��NK�RTO�uQT�r����kJ�-��L|�\F]����u�O��r��NK�RTO�uQT�r�קkJੳ=��W����۲\��,�ܩ�����ů���̵5�R&ů�����0�����P���R��ů���Pn��ľ��0�j�̵5�����-���J�5�ӯO`]�Ƨ̵5�R�����5G����-��v�u�Ȫ��O��,���eH�RTL�O�����J�5�ӯO����ӳ� R���MB�I,������� �O�B��M2��G�;� ����uQT����b�?sӯ�/�O������ʝT��ɱM��J�O���:G���?s��&O���O�����\FQQ�eH�`�ϧӯ�� �������O�/��ç�5Ȫ�5Ȫ�ũ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)���ŵ��n��G�R�™�G���u�S��ŵ��Pŵ���G�=l�R�GXJҳ=l.�ŵ���vTL�ŵ��ŵ��=l��uQT�PĶ�Ĵ���O �ŵ��\`R�GXJҳ=l��O �ŵ��vTL�ŵ��ŵ��=l��^���!�O ˽uQT�PĴ���O �ŵ��\FFϧ�@��NK����ì��%��@���ON ��-���ϧ�êPEK��P_� @���:�M��P�ɰO���BE��F]~g�G�/t���F{~g�MI�г��P�è�F]�BE���t���LRĩt�������BE���X��LR�G ��������`�������G�/R�t���LRT�t������t���`Q�X��LRTG ��������G��t���\F�������MI�гR�t���LRT�t�������t�ľ��P�����t�ľ��P��\FQ�X��LRTG �������uQT��G ���̯_�J�G ����ľ��P��`����TG ����ľ��P�����\)ϧҳ���ë>���>�B�����BE��O����ψn�P��姱���ɧ����������){����G�/���`{����G�/��7�`{����MI�г���ǧ��`{����MI�г���ǧ��`�t���F�G ������F��JҸ�X��-ȧ[�������ŵ?��_�� L�����#ï�X�ïȧB���������BE�PW������������̫��������� LR�t���LRT�t��������FQ�X��LRTG ��������G����\){��ǧ��F{����MI�г���ǧ��`�t���F�G ������F�-Ȩ�����M�,��.�R�·C̩��ȩ��O�D�u�S�C���P�u�S��[��̨�̨u�S-Ȩ�����P��u�S-Ȩ�����.��.��`� �P��ů��.��vQQL�.���H�����.��uQQQ� �O����P��ʧ���Xv�QQb�_İ�O� .�J��X���O�0�a���������ʝQ� �O����P�������B�N���>�v�QQb�_İ�O� .�J�.����O�0�a����������F��Ļ �O����P����MtfB�N���>�v�QQb�_İ�O� .�J�.��3PѲ�X��ñ֯�N�MtC�˽�O�0�a����������Q� �O����P��ק�tfB�N���>��Mtf�v�QQb�_İ�O� .�J�.������3PѲ�X��ñ֯�N�tC�˽�O�0�a����������R�QQ��C�2�oM�秶��B�NP�tC�������`�� �O����P��ʧ��.������P�tfB�N���>�v�QQb�_İ�O� .�J�.��������3PѲ�X��ñ֯�N�tC�˽�O�0�a����������R�QQ��C�2�oM�秶��B�NP�tC�������R��QQQ.��b*���P���X������\`�����E�'��� ƿ��̯ŨR��4 � W�6�X#�� � ƿ��̯�P���#�������2M�t�_��O3�R쯭�'O�zLɧO⵪O|PH����E�'��̯�Py�� ��ç��I�ܴv�®���E�'��@����c�@����c��~g� ƿ��J��R�R��ϧ��̯�*�� ��B����R�̯�*�)Q��ϧ��M�t_Ho����B���̯�R�̯űM�t�H��)Q��ϧҧO�N"�B�O3�B���� ƿ��̯�R�O3�O��)Q@����c�Ԫ����c)TGI�R��P��i�uT�O3�O��M����O3�O�`QTL�O3��O3�R����u��Q�R��QT��e��Ĵ���/���2���O3����O/��O3\R��QQT̯�*����T��O3��L������ʧ̯űM�t�H��\R��QTl�ç�/������"��\�QQ�ϧ�>�B#�O3�O�N"�ũWG����O3��ȪaM������?�R���[����Pī����P�O3�O��O3�uQT�GIľO3�O����[�����`QQQ��[�����`R�G��RS�P��i�uT�O3�O��M����O3�O�`QT�����P�O3�O��k\){6���� ƿ��̯�R��O �� ƿ��̯ŧX���C�2̯�*��ïȧ��B���̯ŧ_Ho���v�̯�*̯űM�t�H��uı�� ƿ��J�ŧ̯�*̯űM�t�H�Pk`E�|R{�E�/:��`T]�̯�6���� ƿ��̯ŧ�Ĩ�.ۧE�/�M���$�`T]�̯�@����c�GI̯ŧk`T]�̯�@����c�G���̯ŧk`Q�E�/F��ɴ���������F]���<�M�<�H�=��RĻ�=�������uQ=������`]���<�;�H�=��RĻ�=�uT���=�\)�ϧ쯭��ɧB��� �|��ϧ�W9�� �|�=�#q��W����ƫ����Z���#���[���P�2�����F{���<#q��=��N� �R��q���[¯��Ƨ���N� �_��=�vĻ�=�����N� uT���=�\){���<� ��� Ʊ=��N� �R���3#���[¯��Ƨ���N� ����=�vĻ�=����#� �*�uT���=�\){���<#q��HN�CPR��qHN�CP_��=����K� �?��������������͜�Q�RQQQDŬ�^����B��v�QQD��Jů�<��v�QQDI�U�*��������O�8v��QQ��������������3v��QQ�����v��QQ�����������望Q�RQQQD��^��������v�QQVyJƩ���v�QQVI�U��ײ��RQQQDG�^����B��R�QQD��J�4B���v�QQDI�U�������Ų��RQQQDG�^����B��R�QQD��J�4B���v�QQDI�U��������O3��߲��RQQQDG�^����B��R�QQD��J�4B���v�QQDI�U�MK�����벹�RQQQD;�^��������v�QQDyJ� ��4v�QQDI�U��㲹�RQQQD��� ^Ŭ����u�QQQDŬ��GǹDG��G͹DG��;�DG���)��ϧMG�� ����[���2_����DK( ���"�E��.H2��G�P���ů�<���|ݧB��4�oZ������e��XݧB��4#���ݧB��4�MK�XݧB��4�� ��������#�4X�o- ������˼�������MR�� ���3.��̩����P̩���u�S��ôì�����u�S�:5���o�:���'�u�S������N��N�u�S������N��PN�u�S������o����o����`'��H��o- ��R�'��Ʃ�o- �N��G�D'�������\)�'��3��MK��D��4 ��P�yD@�,�������F�'��3��MK��D�IU��P�yD@�,�������F]GI��ì���H�ZN��0M����uīúGI��ì���H�ZRT�ú�,�� ���ëL�RQT�­uQQTL�O��N��0M��u�Ī����O���QQQO��R�T����O��D�����\`QQ����`]tC�N������ɪ�u�L�OPı���N��M�0�����Q�Я���Xv��ľYN��fo�����ñ6����QQJ��YN�駷�Xv��ľYN��H6�o�����ñ6����J��YNH6���Xv��o����ūH������Q�ūa������X��QT�����F��������k����G��`���� /���Ho2�`������`��O��"��į���ǧ��\uT�O�RQT� /���İ /�ۧժX�O⵪O2o�����I�ݧ�ɪ<�����İ /��������i���ɪ�\F]�_�u�tC�N������ɪ�FTL�0��N��M�0����ʽuTGI��ì���H�ZRQT�I�N�� �&0�0��̯M种�FQT� /��W��Z����5����0���0����`��ZB-���4 �MG��|������ño��L�Rľ�ZB-�@>`��ϧ�O������P��/��o- MG��|�����ϧ������ç�?���K �2���2B�o�����ȧȫ>�){��/ç����ño��L����ȨR¯����u�L°Q���������M���Q�Q����םQ�Q������ǽuT������������򧰧$�ǽ��\F���İ���ño��L����ȨF���G��F�d��@����������GRľ��GFT�O⵪Od��@����������������������O� �C�J���F]#"�I��R&yJ� (NI��vDO� �U&yJ��� ��������O� ��R�QQ&yJ��� ��������O� �˹�F]b�O����O� �PO� ��yuľO���Ļ��G�?�����O� ��y�y�����O� ��\F]G#������O������O������������Ȫ���R�L�O���Ļ��G�����������������#"�I���ǽ����Q�P��J� (NI��ľy�O����\RT�P��J���b�O���ľO� �PO�����J��� �Dz\RT�P��J���b�O���ľO� �PO�����J��� �Ͳ\`��������?�����NEK�R��d�̨��4�̨u�S������?��ȯ���ȟ�~g���ضEK�Ū��,#4 ��,�-ɬuȺ��W���ҵ����1�R�o- �PKGM�uTOH�ۧ-�KGM�`Rĸ�(- ��uTOH�ۧ-�k`Rİ"�������P[�uTL�M�����¨4 u���MB�I,����������ߧ��#4 \R��QQQ�[��QQNEK�T�+�4�̨�հ�ضEK����#4 ��,�Ū��,FQ�NEK2���U�QT��B�NEK�RQQT���. īb�NEK�JNEK𵻻���M��`�Ĵ�����çNEK�\RQT�:����-��Ⱥ�"�������NEK�\`]���NEK�R�&Ʃ�UŪ��,R�#4 ��,uV��Q��Ū��,QQ���R�#4 ��,��������u�������ضEK�^Ū��,QQŪ��,R��V�4 ��,#4 ��,R��V-�QQQ:�k��`�������ô�̪���������Rľ��0��̫����Ϊ� ���쯭���-ȱ�ɰNa�[��G �������IP"/Pl����A��ë/�yu&[Ĵ�Ia�Ϊ� ���쯭��J�����������[��G ��FQD4��/���IP����I�RD4��/�"/P"/�RDl����l�����RDA��ë/�y�A��ë/�y�F]B��"/U�uı��4��/���IP�����ʝ���4��/�"/P�\F��ϧҸ�X#:��� ��]B��4��/R�©ɰNH��@GuB��4��/oG�/������ɰNH��@G`T°O2�ɰNH��@Gu���ɰNH��@GRQQT�?���O��T��B��"/��T. �\F]���l�������:��l�����u���l������#:��l�����`]l�������Ul�����u�Ī��l��������l�����`��ϧԩ��PG��_-ȧy�� �P������ô�̪��������ɱGR�™�����ô�̪��������ɥ��u�S��G����`���]d��ɰNHU�-ȱ�ɰNa������߱���ǧ��Jů�ƨ����E��F�ϛ�QQ-ȱ�ɰNa������߱���ͧ��J��1Jկ�@���B-��F�ϛ�QQ-ȱ�ɰNa������߱�������J9��O/������F�ϛ�QQ-ȱ�ɰNa������߱������Q�ů�ƨ��8����F�������?���������õ��R�«�����?��?�«:��.ۧ�����S������?��ȯ���ȟ��BE���� �����õ��Rİ"��4 �P�4 ��K@Z��õ��U����OH���õ��U��������P9��s矻~g� �����õ��-��õ��P9��� ���uȺ��W���ҵ����1�R�o- �PKGM�uTOH�ۧ-�KGM�`Rĸ�(- ��uTOH�ۧ-�k`Rİ"�������P[�uT�����9����X���+o��L�=�J������������������������Χ�����v��QQ[�R��QT���9��� ���`QQTL¶��ë�-�P�E�/�[��QQQ���4 TE�/���G�[���uQQT��2B�o��L�v�u�L®ë�-��������ëī��������X�ŵ����`�M��4��3��-P�ë�-��uT���������=��uQT����ۧ�ë�-�`QQTO���`QTzN��GIM�\�&^���^E=��(AD���I�ܩ��I�R�QQVG � Q���RQQV ��MU�x��$״望QQx�����N�$��ʱ�������֜�QQx�ƪŪ�$͜�QQ��H���Gȯ1w7望QQ���>��/�����w㠛QQQ��˼�K�K'������n��GR��RK�K'������P�ud��G��O��6�U]G�GX��PI����G���G�RĪP����32ǧͽ��\��&�1 �^���R&yJ��HⱰëH�Ų�RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^�������ǹ�˼�G� ��Rľ�xXN�K ���DOm�FT�™�GuQQS��̫�����D�»e�QQSxXN�n���O3��]���QQSxXN�?��e���G���O3���G蓬+�4 �����d�`]G�G� ��R�KL*e�O�����>�������x�O0��e/��FTK �G����e%������x�O0�FTL¸���eJ�����x�O0��:�:�r�:�:�r$�ʱ�������ֺ��Q�ePĴ@G�����Q��I�������b�Y�I̫���?����\uT�P�H⧻e�`QQ�ϧ���ھ��P�P���-,�L�B���Ƨŵ��RT�P�H��?����O*M2䲶:�:�:�$�ʱ��\�����\�����e�\`ϧӯ�� �����������ݧ�J��X֧���)��3����R��R���ƥ�0G�ƹ�ľ��0���3��ëL���L�u��3���� ���"�`��ϧ쵶 �PB���[M-�� ){��[��  �������u�0G��R���uQ����R��MG��"��L��ɝQTMG��"�� ���"��`QQQ. ���������`Q� `]A�������U�� uĵ�[�� � R�QQQ��&Ʃ�UëL������u�QQQ�TA��ëL���\F���{ū���� �O�ö*�ï ���u�A��������R^ "�o��RQ�O�^�/��(A�R�S&(AJ�v�QVZ���ö*��u�V�ï ��^A1P&bJH6������Ȳ�����R� `�����oZ���B�A��R������W�<����MK/��;IE=���W��yF]B�A��R��y�t�������PB�̨u�L�ѰO�<���D�O�<���˧����RQQQy���W��y�y������Qt��B�̨�t����PB�̨�uTG��yRQQQE=�O�<���Q�t��\){���E=�R°O�<���uĪ���O�<���RQ�JRQ���`]������W��yR�y�����u�L�ѰO�<���D�O�<���˧����uT����O�<���RQTMK/�y������y\����(��@Ŵ���ȨR��:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P�������R��W,���W������ :��v��;�u�r����P&;��4�G�J��J�;���`T�;���u�r����P&;��4�G�J0M����J�;���D�@��Q���\){=��R�ٻ������� ���P��C���#ïȧ=��P����سa�M2��� ��B��@�Ʊ����R�0M��;��v��u���J���E�|��`T»u���J����:|��\){�����ì��R��O ���է�L|�Ȫ�M��O2���Դv�G ��uĸr�����P&�������Ω�ٶ-����ԧ��P&��ì��#X��`]E������b���R�Ω=9�#��������ݧ�Iat�����b����t�v�Ʃt���-�u�rH��ۧ��-��ƩĴ��t���b����\){��� ��R�֯��L���� ����ȴv¨ï�uĪ�#ï�RQ��P��RQ��P&��� ������`]B��L��ï��ïȹ��#ïȧ�������ϧӯ�� ��Į�����������O�/��ç�5Ȫ�5Ȫ�ũ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ŵ����n�����BR�૨ñūH2� ����/���1 R=ȧL>���BE��]M����F]�BE���� R���� ���[����P���HL���J��[��P_�����O/�MG��"��FT��� �N2��J�����z�2��OHN�M���`]��[��R��N�MM�u��[N�MM���E�/�M�\R��N�MM�����H�u��[N�MM�����H�E�/�M�\R��N�MM�����HL��u��[N�MM�����HL��\){N��R�N�M�u�N2N�M�`�����,������O'>���C�H�� ��L�R�™�̫���̸Ů��u�So�������,�o����o���u�So������ű���,�����u�S����A[�Ŵ[���,c�o"����LP��P ����R�ժ�,P[�ūa���B�Z�����v�uİ /�����,������O'>���C�H�� ��LP������FT��H���Cúb�O���I���C��QVL�� �b��L�y���CDH�����QH�N"�yG���J�Hⲽ�Tú��W�����L����`QTú��W���#��N"���H�N"�y\R�ú��J����L#�����H�� �FTú��J��#��N"#�����H�� �H�`]�6���H������R������ا�����#�����H�� RQf�������RQo"���f�V���������㽧��֧�����RQ��>�f�V����������ʽ���֧�����RQA[��������֧�����RQW�V���������㽧��֧�����RQO�����f��������������֧ǧ��֧�����RQO�����[��������Ч�W������ا�Z��ا������֧��Y���������Ч��֧�����RQKL2��������������֧ʧ��֧�����RQN��f�V���������㽧��֧�����RQN��<�L��V����������ʽ���֧�����RQKL��CݧO�����C������������X6��5�MK�#�����H�� �6�R�����#�����H����İ�C�Cݧ��>�CݧO�����C���RQ����������#�����H�� �C�O�RQQ������o"���CݧO�����C������������X6��5�MK�#�����H�� �pR�����#�����H�� �o"���CݧO�����C\�F){��ȶR�ժ�,P[�ūa������Z�����v�uİ /�����,������O'>���C�H�� ��LP��ȶ����FT��H���Cúb�O���I���C��uT �6���o"����Lo�����Ž���CDH���FQT���6���o"����L�C�H�N"o�����Ž���CDH���`Tú�⳧6���H������FTú��J�����ا��������#�����H�� �H�`�ϧì���%��� �E���ö:�����xXN��� �������E�|����������.ۧxXN�n�����]�������e�RQQ���[��_¾ūH���DO0��q� RQQ²;��I�&���%�;��I��O0��˹�F�(,�����������0G�n�R��(,�����������0GR�Q�� ���������P�O��� ��������������Q�� ��O��������P�O��� ��O�����������Q�� �����O0��O��� �����O0�����ľ��0�(,������BE���6.�� ���0��`]�ūH���%���ȴ������0G�F]������6.�� ���0�¹)Q�6.�� ���0��)T�� ����������RS�P@G�����uT�� �����������PūH�����@G�����`Rĩ� �����O0�������RS�P@G�����uT�� ��O��������PūH�����@G�����`Rĩ� �����O0��RS�P���O0����������O0�������uT�� �����O0����O0����������O0�������\��=�RQ���'�RQ�o���)]�����RQ'K�ì��RQ ������uQQQ��Z����G��yJ�Cɽ����������o��RQ��RQQ�F��������G�O���̨R�RSd���M��̨uS���ƥ�Ʃ�ȯ8�ܩ�Ʃ�������IH��(��Rĸ�B�+-ȱ�����(���FQT�+�t�����J� �� @���+�(�O��M�̨�`QT�+�t�����J� �� @���+�IH��̨�\F]�IH�( ��( ��u�L�(�+-ȱ(��k��IH��(����uT�+H��#�J( ��( ��FQT���+�t#�J�IH�p���( �����Q�+���̨\){�O ��(���R�L�( ��U�� �� @���+�(�O��M�̨v�QQQJ� �� @���+O ���M�̨v�QQQJ� �� @���+�IH��̨v�QQQJ� �� @���+O ��G�������O ��̨�Q#E���+-ȱ(����uT�+�t#E���I��=������FQT��H�P( ���uQT�+�t#E�Ĩ����#\RQ(���`]O�G����zN�[�u�L�(�+-ȱ(��k�O ��(����uT�+H��#�J[���+B��P[�#�`QT���+�t#�J�� ��O�:0-/֯�X��q���[���[�˽���Q\))��IƯ���B��ůɱGR�™�G���u�S��G ���G�u�S��̫��������u�S��n��O��"�P��P�u�S�IƯ��o��o���P��P����i���i��QQQ��QQQ�,���Ƚ�O��"����B��ůɉ��ŝQQQ��QQQO��"�P��P����,�É���u�S�IƯ��������Pɬ�u�S�IƯ���?�ª���O��PO���5����S�IƯ���G���P��P�ľ��0��. ��3�������֩�ᵳ��W �Lu�j�. ��3�����O��"��J�ŧЁ���G�G�����R��Ȫ�o���RTL�̯����̯ŽݧƳ�������̯ۧŧ�尬ź������尭�/�ǝQQ���Ё�Ⱥ-ȱMG��"�̯ŧƳ��QQ�����ݧ'���'2�����ݧ��I�ĴbЁ������k����QQ~8P����ı�ĿN��������,����ʽ�uQT�P�����~8PĿ�����z�'����/�ǽ��tPH��QQQ���~8PĿ��������I���tPH�\\){G�G�/�ʱ�R��Ȫ�o���RTL�̯����̯ŽݧƳ�������̯ۧŧ�尬ź/�ʱ��QQ���Ё�Ⱥ-ȱMG��"�̯ŧƳ��QQ�����ݧ'���'2�����ݧ��I�ĴbЁ������k����QQ~8P����ı���N������,����ʽ�uQT�P�����~8PĿ�����z�'����/�ʽ��tPH��QQQ���~8PĿ������I���tPH�\\){ȯ8���R&�����MƱ�P�Ʃ���R�E������l���G��� �����\�����E��`]G�G�CN<����R��Ȫ�o���RT�P���Ѳ. ��ū�����9���������M�ɬ��H������ȯ8�E�/�M���ɬ�\R�QQ�������ȯ8�����������֩�ᵳ��W �L��QQ���E��M�尬źCN<����Ʃ����P�Ʃ���������ɬ���M�`�QQQ�����ɩ��o�������G�CN<���������MB����\\F�;I����L��G� ��R��êPy�� �ɪGP� �W�GX����0H�ݧȯ��X��� ��9�����֧ze�G�;� ���êP�ï��2�'>2B�GP"�ȯ��I���W��P�P���>���F��ϧ���L ���MG�~8PO⵪OP���B��ze2����#����0, ����ϧ ���OPxXN�����֧ze�G�� �]~g֩��s��s�=l��F{~g�WM�ΰ��2��M�����2=l��F{~gӯ�2���s�F{~gӯ����WM����s��M�������F{~gԯ��W���F��ϧ� � �PW��ëM�2��L��]~g쪭G�F{~gΩo2¹F{~g�êg¹F{~g쯵�������c�� �N�� �����R� �PW�KX�Ȫ���Vէ�� ���ŵ?��v�®��c�� �N�� �� ��ľ®��c�� �N��ŵ?2��Į�Ư�����®��c��É�Ïľ®��c�� �N�� ��ū��D��O'�ū�ñŵ?2ū�ý���u� �� �RDyJ�����vD �*Ļ�ŵ?�u�QL¸����Ư���ŵ?��u�QQO'�ū�ñŵ?2ŵ?2Ĩú���������������\\��MF]_�u�L«�/����IH�/O3�@-`���/����IH�/O3�@-��uT���\)İ /��������M`��� ����� ���/ L�GR�™�G���u�S�� ����� ���/ L���u�SA�,�-���P��P�������/ LFϼϧ��.��ǧ������)ϧ]MX���� �]��I��u��ɧ�`�ϧX���� �P��ŵ?�X��=�Ƨ_����� ��]���������I ɧ�u����Iɽ��I�\)ϧ"��MݧX���� �P�Pŵ?�X��=�ƨ]��uĨ��������I �ɧͽ��ɧ��\)ϧ�ɰOX�o����Ȫ��o��]��U�u�o�RT�ɧʽ��RT��ɧʽ���FQT�ɧʽ��`�ϧo����Ȫ��o����H�]��U�u�o�RT��ɧʽ���FQV��a�`�ϧo����Ȫ��]��U�uĪ���ɧ�FQT���FQQ�`�ϧX�=����]ũ�ȩNɧ�uī�ɽ���\)ϧX�=���]�ɧ�uį��ɧ���ɧ�\)ϧX���]�ɧ�uĶ���ɧ�\)ϼϧ��.��ǧ������H���)ϧ�ɧǾ�ϧ�W�O�O����P���� ç�ɰO��)ϧ��)������F�������F������F����ͧ׽��ק�`��]M���F�]M����`�������`�����F��������������\��Qż�Q�F��o2����׽��F�T��ŧ׽����`�T��a��`������������`���o2����ŽF�T���Ž��F�T��a��`�T���`)ϧ�ɧ;�ϧ�,������=�X��ɰO��MB��O��ɧW�������ק�ͧ�槱���$�\�����맱�ͽ��ͧ���`�ϧ�ɧ澼ϧ驻M���"�s��� �O����P�PI��|����O����P���������I �����ȯ��I�������������7��?�sR�»�?�s�P��?��~gҶ����?sA��[�u��?�૨�e�RĻ�e��H������FTA���H����A��H��\��[�� ��ô� � R��[�� ��ôn�O�D��ľ��0��E������L�;����[��=ȴ��ƴ���� � �����3�� � ����W �QQE������L�;����[��=ȴ��ƴt� ���M�QQE������L�;����[��=ȴ��ƧЪ��@-\){O3*��� � R��O���ů��2�ӯ�L ������ � #�4v�B�����P�uı�RQTo���MG��"�Ъ��@-�����M�M`QQT. �����W�� � �����3�� ( �B����˧����\){� �B�� � R��W �o/P����ů��2�ӯ�L ��B�B�� � #�4v�B�����P�E��uı�E��RQT. �����W�� � ����W �B��B����˧����\)ϧ��4 ���{�O3�� ( ����+������� ( ��+���� ( ���F�{�� ����WA��B�J��+������B�+������WA��B��F�{�O3����WA��� ( ����+������� ( ��+������WA��� ( ���Fϼ�{GO4�M, ��*��� � ��S����@-���T��󧰪��@-��QQQO3*��� � �O3�� ( �&yJO3�M, ��*��� � ��F�QQQ�+���A�����ϛ����ϛ�Q=��M��G�J��A�����\�A���`ϛ�Q�A�����^yJ=��A�����F�QQQ� �B�� � �� ����WA��B�^yJ� *���IK��M, ���B�� � ��\�ϼ�{GO4*���IK��M, ��*��� � ��S����@-���T��󧰪��@-��QQQO3*��� � �O3����WA��� ( �&yJO3�������A��M, ��*��� � ��F�QQQ�+���A�����ϛ����ϛ�Q=��M��G�J�����WA2A�����\�A���`ϛ�Q�A�����^yJ=�����WA��A�����\����c�� �Rľ��0�̫��ɴ( ����p��ض�M�FT���0�̫��ɴ( ����p��ض�M�ի���FT���0�j�̭ ����ũ���p�<���MFT���0�j�̭ ��� ����ů�`]�N�M�Rı�R�p��ض�M�ի����FQ�bض�M����4�̭ ��\){�t�� �R��t�� G ���v¨uı�N�M�RQT��t#\){� �R�������Pj�̭ ��� �Ňv�uı��p�<���M��Ĵb��C�Ĵb��/�A\){M���Ʃ�ȯ8R���>��̫��#XݧO������ Ʃ�ȯ8v¨u�� ����ů��-����ů�� ��#���W�9G�O0��q��=l�*�O9GR��d�ì���YN��PYN�u�S��êO�n�O��IH�G ����S��G ���¨ ����S���ƥ�Ʃ�ȯ8�ܩ�Ʃ����QFT���0��̫���?��N�I��"�=l�P�:���`{cI�=l�U�OH�ۧ=l�P��`].�R�uį���i��bN�J�W���������ٲ��J�H�W���������٧N� |��I���L�\){B'��R�uĴW�̫���ɬ�Ϊ� ���쯭��J����������QQ̫���?������ǧ����ʧ���ʽ�b֪A̫���?����\�QQ�`��B'��F]W"�=l���W�9GR�=l�u��RTLµ��G�Jì��%�.����Nȩ���[��7�W�9G�5��񪷰����ľ����K�=l��J�=��ľ=�����K�=l��J��������.�`�QO�0�a�YN��b����^ "��̨D���Ʃ�������H��QTO��������H@���\\F��ƴ�C�L�I��Rľ�RQ���d�n�RQ�����������`]���M�ëL��CN<��F]�,��Ȫ��5�R�ëL��A[�uĪ��L�t�ľ�5��A[��uT��O� �uQTëL�����O� ��5��t��\`]�,��Ȫ� ��R�ëL��A[���uĪ�� ���A[�FQT��O� �uQT��O� �R�ĵ�[��_¾ ����k�o������QQëL�\F]�O� &� J���FK( ������������ƺ�C�L�I���)T��9�,��ëL��Ȫ��C�L�I�vQTL·C�L�IķC�L�I����,��Ȫ��5��QQQëL���C�L�I��M�ëL�^�5�D����˽uQQT�ï��������ũ��4��M�ëL��ëL��T�ï����^� J���5�D�����R�QQQëL��O� �\FRĪ�L�>P��ëL�=-�����C�L�IO����PkvQTL·C�L�IķC�L�I����,��Ȫ��5��QQQëL���C�L�I��M�ëL���˽uQQT�ï����ũ��4��M�ëL��ëL��T�ï���񧭩� �R�QQQëL��O� �\FRĪ�9����I4��PB��C�L�I�vQTL·C�L�IķC�L�I���R��QQQ�,��Ȫ� ��D�ë���Q�,��Ȫ� ��Dũ���Q�,��Ȫ� ��D�4`�QQëL���C�L�I��M�ëL�^ �����˽uQQT�ï����^� J�� ����4DũD�ë��R�QQQëL��O� �\`�����F���OG�G�OF]6��]����<�O��"�R�y�O��"�������{��yRT��OG�G�O����<�O��"���O��"���FQ`�nɴ�����GR�� �PW�ũë��������#I2������ �|��vľ™�G�ľ�nɴn���™�n���ɉ�u�Snɴ���P��P����u�Snɴ?�?u�S��G���Ɖ(u�S��G���ƴ�N��P��P�Nu�S��G���ƴ��< ���u�S��G���ƴ��G�{������`�MF]_�u�L��O3�@-�Q�� L��IH� LO3�@-`��� L��IH� LO3�@-��uTW���ͻ���ŧ$��\`� /�J����ԧ��������M`�����A����⵩���G�⵩���⵩�������,���GR�쵶 �PW�GX�⵩�����,����W�GX�v��RS��G���uS����E�'��@����c�@����cuS����A����⵩���⵩���A'���⵩���PA'���⵩��uS����A����⵩���⵩���⵩����BE��⵩����BE�uS����A����⵩���G�⵩�������,���⵩�������,�����⵩���yJG�⵩���F]�⵩���o���R�� ���⵩�o����,��W�G���Q&⵩� ⵩���yuD�ɮë�� �G��ɮë����uD⵩� �B��ɮë�� �ѲG�⵩��²G��ɮë�������F]���O��ëL�R�ҧëL���W"P��O�v�����u����"���JW"�O��\){���b���������O� R�������P����������� �,�Rľ��0��-����o����O����?��L\){�XRĿN�;�RVy�����4 ��� RV��Pض��RV�O���JG�vVA1U�`�������zN����OH��4F)�ϧ������������������������������������������������������������������������������ϧ�OH��4�@-��,�X��� ���ϧ�BL������Q�ì��%�H�EK�Ȫƪ�����OH��4��@-��� ���=�s){�OH��4�ʧ�ʧ�ǧ��u�L�L����+�ô��Pı��ʧ��`�L����+�ô��Pı��ʧ��`����i���L��L��ɽuTL���ʧ�ʧ�ǧ�ǹ������i���ʧ�ʧ�ǧ�ǹ�ʧ�ʧ�ǧ�ǹ�uQTL���ʧ�ʧ�ǧ�ǹ����ʧ�ǽ�ǧ�ǧ�ʧ�ʹ�ʧ�ʧ�ǧ�ǹ�uQQTL�K������ǧ�ʝ�K����+�ô��Pı��ʧ��`�QQQ��i������ʧ�ǽ�ǧ�ǽu��=��ɧ��R�QQQ���R�QQQ���+�ô�=���K��ɧ͝�Q���ɩ�PĪ�����i���ɹ��ɧ����u�T����ɧ�ǝ���ɩ��R�QT������K�����TO���M��ɝ������i���������K��ɧK���`��QQQ������G���o̧��ɩ�Uɹ�o̧��ɩ�Uɧ��\R�QQTO���M��ɝ����R��QQ����K������������i��o̧��ɩ�Uɹ�o̧��ɩ�Uɧ��`��QQQ�\\\���5ƴȩŴYN�����@GR������-���XíٯR�S:�P:DM;�K�6�P��u�S:��:��:DM;�K�6�P��u�S�5ƴȩŴYN��zN�P��P�Cb������R�:^�����RQQQD��U��`){Y�ƱëL�uĨ�.����RQQQ��D���RQQQ���������.��\F){���@G��Cb[����-�u�O���RQr��NK�RTO��uQT�Cb� n�����-�RQQD3J��ڧ����vQQD�1ĸr��kJ쯯���P��1���D�1��f��쯯���\Fr����@G��Cb���RQQQ^�b���+����|b�L|���2����ԪG����F)�����ܴ���GRľ��GRQQS���ܴ���P���ľ��0��̫���?�૨��.��.`T���0�����ܴ̫������Ы�m��=�s�n����\){�b�_�Ƨ�]������b�_��Ы�m��=�s�n�������X�����������������ڧƧ]����`]�b�M�����BƧ�buĪP���b�_ƽ��b��G�J�=����J���Ы�m��=�s�n�������X������������������\){G�G�R�GXJc������=����#�L�>P���Ʃũ�M�vQ���Ы�m��=�s�n�����O ��ɰ��=�脩�RQT-ȧ̫���?�૨��.`QT�P����Ы�m��=�s�n�������X�����������������ڧ��\)TGXJA���Z� PƩ�PȪ�����t� vT����A���D������D�I�ͧ�FQT�P���b�_¾�������`QT�P���b�_¾�I����\)TGXJK���A��Ʃ��P-i2Ʃ�P�/����vT�������A���D�����D�I�ǧ��FQT�������A���D�����Dūܧͧ��FQT�P���b�_¾���D�I���ǽG�J�W���-i2Ʃ��Ы�m��=�s�n�������X������������������`QT�P���b�_¾���Dūܹ��ͽG�J�W���-i2Ʃ��Ы�m��=�s�n�������X������������������`RTGXJ��e�ȫ�Pt������2���Ʃ�ɪG�vQT�������A���D�����Dūܧ��˝ĪP���b�_¾���Dūܹ���G�J�W���-i2Ʃ��Ы�m��=�s�n�������X������������������\FR�GXJOy��ë�� �ƩyvTL�G�^������D�I���Dūܧ��uQT����A���DũW��ƩG��˝ĪP���b�_¾ũW��Ʃ����G�`QQT����Oy�Ʃ�ũW��Ʃ�����Ʃ��ĪP���b�_¾����Ʃ����G�`RQTGXJ��� #s���2Ʃ�� ���ɪG��'OvQQT�P�k��b�_¾ũW��Ʃ��\\F� ����9����OR�쯭�I�P��PB��4���Ovľ™�G ��D��̯M����d�9����O�P�������H�<���R�Ω���#��<��PW�9����O����⵪O2MW���P�������B�N�#���o- �R������������9����O# :�M�v�B�N#��# :�Mu&.��B�N�B�N�D�#���D� :�_� :�M�F]:R�Ω�P���:�B#N2��PB���Ы�_H�<��P6��2Ȫ����H�<���R��:�yv�H�<��P:�y������:����y#��<��P:�y`]W��G ��R©u�G�̯_²���־�G��ïG����J����V��ؾ�G��H�����J����ؾ�G������J���Ӿ�G�! p�����`QF]9����OR��O 3.q�B�W�I2��PB�9����O�R���ھ�� �'O�O�"����W�<����Pũ���R���ھ�G�R� 2Ȫ�R�GO4�RT�¾ïG�DH���uQTL�9��9����O��\�B�N�\�ݧ��ݧ�\�� :�M�\�ݧ�\�:�\��uQQQ9��\v�B�N#��# :�_��:�yuĻ©uL�G ��G�̯_²���־�G��ïG����J����V��ؾ�G��H�����J����ؾ�G������J���Ӿ�G�! p�������u���A���:���H�<��PB�N#��# :�M��:�y�#X\F�ϧӯ�� �������O�/��ç�5Ȫ�5Ȫ�ũ��ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�ŵ����n���3�X�G�R�™�G���u�Sŵ����n��EK�P��PEK��u�Sŵ����n����P��P���u�Sŵ����n���3�X��3�X��G��Ʈ�ޱ�3�XR�L�[����I,�ʽuT��+�?��[���FQT�3�X��3ۧ[���FRT�Pİ3�X��3K��[�`QT�P���3�X�E�/�[����`RT�3�X����3ۧ[�FQT�P����3�X�E�/�[�D����\`]G��Ů��3�XR�L�[����I,�ʽuT��+�?��[���FQT�3�X��3ۧ[���D�ŮFRT�Pİ3�X��3K��[�D�Ů`QT�P���3�X�E�/�[�D�Ů���`RT�3�X����3ۧ[�D�ŮFQT�P����3�X�E�/�[�D����\`]G�������3�XR�L�[����I,�ʽuT��+�?��[���FQT�3�X��3ۧ[���D����FRT�Pİ3�X��3K��[�D����`QT�P���3�X�E�/�[�D�������`RT�3�X����3ۧ[�D����FQT�P����3�X�E�/�[�D����\`)����B�����n�F��噴G ��D��Ĩ ����F���ϧ�êP�P�������A�� �|��#M"�٧ë>�'G�ʧ�ɰ�O�"�Ȫ���ϧ����L�aW��>�A�N�� ��aL�>�����������ë>�<�P�����ϧE�|��){��B�����u�ϧ�Z�P����PO�OH/�2�PG ��PMB�K���������)T]�� ��K�����uT���E�/�K���`QQQ �RQTL��/çK������QQQ�ɬ������ǝQQQ���/çK�����ɬ���ʽ��RQT������T���������K�����ɬ���T���������K�����ɬ��\`R�L�����Ѳ���J�V��J�X���J����J�����J�����J������RQQQK��������OG� �䲲\uT���ʧK�����\��ϧ���O �����Ɉ �������P������ô�̪��������R�™�[��̨�̨u�S��ɷ��ɷ��n��ľ�N�;�`��ϧ��0�̫����0��̫���?���̫���ɬ�Ϊ� ���쯭�F��ϧ��0�'O�����ݧ�=�s�=ȧ�B�� #:�X�@Ʃ]#��Ϊ� ���쯭��J���������`][�*���G ��[��G ��u�L¨��Ϊ� ���쯭��J����������uT��Ia����[��G ��\)�[�*���G ��J�����DZ�ʲ���ϧ�MGJ�����DZ������ʾ�$��ʱ�ʾ�ʲ)�ϧ�<��թ1�����IH��J����Dz���ϧ�����)�ϧ9�@���Ȫӳ�y��թ��1����F��ϧ�<��쪩�����0���̫���?��N�I����ϧ̫���?��N�I)��N�I��J������Y���ϧ�)��N�I���������Y���ϧ�)�ϧ�ק� P����������W�)Ĵ���i��bN�J���ಽ�����i�bN�J����`��ϧ�a����J����MG��"��Ň��0���̫���?���:����ϧ̫���?���:){����:�����ϧ�噱����ô�̪�������ɺ�)Ĵ��-ɬ�/��ʽ���ϧ��ϧO����?���I����-ɬ�/��ʽ���ϧ��ϧO����?���I���&�1 �^���R&yJ���H�GI��ëHDz�RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^�������ǹ�˼ϧ�êP�P_M�� B���/N�X�n�����P�BE��)�������R�™�n���ɴ�BE�P��P���ľ��0������ɴ��ҭ,�`����BE������ٷ �|�R��ҭ,�RĪ� �|��Ʃ·�D������FTA�M�������FToG�� �����[�uQϧ����RTL���Pķ����A�����[��uQQ`T-ȱ> ����L��uQϧ����RQFT-ȱ�����PE�����uQϧ����RQFT-ȱ�ɱ�#�.�uQϧ����RQFT���0������A�����������A����uQ��`�M�E������Ũ��� ƱL���@Ŵ�� Ʊ���R��d��� ƴ�������u�S��ôì���ì��u�S5�����GO4�������b�o- ���Rµ���B�Nu&.���������RDB�N�B�N�F]���b�����Ȩ����Rµ���B�Nuı�b�o- ��������B�N�����GI�RQV���`]���b�����Ȩ�o- �Rµ��uĪ��L¨��Ʃ��R��Q��ì���ȩŨ��Ʃ��YN�����QQTl�ç��"��R��QQk��uQ���Ʃ�RQk`]o- Rµ���B�Nu�L�Ȩ����b�����Ȩ���������B�N�Qo�b�����Ȩ�o- ��Ȩ�����uQ��+Ʃۧo�FQQo�`� ����?����GR�� ����?����P?���u�Sd�ì���YN��PYN�u�S��G��]G�GX��PI�������'�Ʊ0GO�����:��?���u�Ȫ�O]UYN��0G�µ�������u���QTOH�ۧO�����:R����QTA��ľW���I4P���������QQQ^�������R�����QVū�����ū���ç������\u��?���\){G�?����GR�L�O�����::��˝Q��ů�J?�O���vQQQH����Ʃ�GƩ�vQQQO����N��:���K�:��O�E�vQQQ]������1��O������W�2驮��ǧ���;����֧�����\/ ïG�GH���޽�\�֫�����\��B��Ҭ�� �����\��\�vQQQ]������ ��O����G�ïG�GH���vQQQ��^H���GH���v�QQDïGJG�ïGv�QQD��vQTL»���Z KJ����Z K�ɫ�3�v�Qe�?����?��&��ů�#�ů�R����QDH����ƩH����Ʃ�R����QD�������Z K˝QQQ�?e��O����N��uQQT'�Ʊ0G�O�����:��?����T�P�������O�����:�������Z K\\���5G�n����� �����RT�O⵪ORQQS��n���ɉ�uQQSnɴ��<��a��P���uQQSM�B��[�H����5G��5GuQQSnɴ-�ȯ�Ɖ-�������5G���ũ��RS;����ũ��uTL¶���ũ�P�E�/�;����ũ���QQ��ũ�P������I,¶���ũ�P�ʹ�uQQT��H��,������ũ���u�T���H�ۧ��ũ�P�/ç;����ũ�P����`���ũ��`]�_�-�ȯ�Ƨ�MX���MX���ũ��uTL¶��0��P�R�QQQ�LI5���,�$�R�'|���$�R���ñ�����R�=*į����3,<��=�QQ��<���-��������<����-�ȯ�Ƨ=*LI5���,�'|���uQQT-���M�-�ȯ�Ƨ��<�������0��P��ñ����MX���MX���ũ��\){�t��-�ȯ�ƧG��G���ũ��uTL��O����P(�O�-���t�-�ȯ�ƧG��G���ũ���QQ��ũ��E�/E�/�G��QQ(�O��"/�mĺ#n��ũ��E�/��uQQT� /��W��n������2������(�O��"/#n��ũ��E�/\F]�����ɰ�|uTL��MX�T����>������5G�[��G�O�QQ�MX���ũ�Pķ5G���ũ�P�5G���ũ��G�O�QQG�T����>������5G�G��G�O�QQG���ũ�Pķ5G���ũ�P�5G�G���ũ��G�OFR�M���C��G����.�MX�`�Q����C��G����.�MX���ũ��`�Q�CK�����������)�Q-�ȯ��-��H�N���-�ȯ��R��QS�-��@-I����D��M�PM���CD����P�CK��������ܩ���-�����'C� <����CK��������ܩ���-��@-I����D��M�P�CK��������������P����C����)RQQT� /���,MX�����T�_-�ȯ�Ƨ�MX���MX���ũ���T� /��� <�������T�t�-�ȯ�ƧG��G���ũ��\){�_�uT�����ɰ�|`����������ȫ�P,:���n�RT�O⵪OR�QSO��N��PO��N�O�:��`N��L�o��L�� /�F]#����ק�F]�ïȱ��uĪ���J��������������`]�u��$�,\){Ū�H�����N����u���N����,\){�������N���A'��uĪ���N����,`QT��A'��FQQA'��`]Ū�H���N���u�O�������Ū�H�����\){�����N���u�L�������O�������Q�����H�R�QoP�O���R�������������O���\��uT�����\`]����L�N�����N����uİ�����G#�ܩ��N��. �#�ܩ����N����\){�õ��L�ůI�UůI��u�ܪ��,�����õ��L,���E�/�ůI��\`��ϧ]M�������[�#������ ��b��Z�� ��Om�){"���:^��ੳ=�ȯ���۲�`]�=�ȯ��2�u¾�����.����FO��N��O�zN��=�ȯ���u���Ĵ��+����|b�L|���2�.��\)]�̨�Om2�u�ϧ����B��ç��������B�W"�OOX�K�N�X�R�ϧ����� �R����.�������[��_¾�軪�����E�/��M�FF��M���[���������R�쵶 �PW�M�� X�Ȫ�կ�?���� @��ε���ɧԪG�W�e��vľO���D��;�Km���™�G ���G�u�S��̫��������u�SM���[����P��P����ľ��0��̫��������3����!��4��]�������������R���ԧ���]���կ�?���� @��ε���ɧԪG��e�v�G�Jì��%��ɭ�'�?���'�?���"/,����-��ƺ��+vQQJ���� �>謳��y��[�,��Dz`]m�R�ԯ3�կ�?���� @��ε���ɧԪG�W�e������3���v����3#���"u�L���İO������X#ǧ��X#͹�GI���W�#�#�`�T����,�L�����������#��O����J���\R��oZ�N��Lu�TL°O�����NĨ P�����+�:�M�u�QS�O��ɧ��L�`�T�Ia�N�u�To����O����N�R�QQ���oZN�D�?�98����oZN�D��"����QQoZN�D�����`�Ti�°O��� ���L���N�u�TL�°O��ɧ��L��IaN��u�QS�o̧�O��� ��O��ɽ������LP�O��ɧ��L����uT���@-�H�#���"��#����O'>�����,�L�QO��"#�ĸ�+�:�M�H����˹\F]���� �A'�m�R�A'�ܩR�µ��uQȪ���N����O3�����uQQm2�\`]=�Ƶ�R����M���駯���:�M�P��������2���ԧmK2_��HP]�����ԧmK2�����K�����������������P����C���v�¸:�=�Ƶ�A'�m2�]������������򽧸:`T°����:uQL¸:��+�:�_�:���O��� ���L������uQQ���L°O������:b��O��� �����G�uQQQ9a�b���LP�O��ɝQQD��"��O���R�D����QT��+�:�M�-��:��O��ɝQQD�?�9gHo2ĸ�+�:�M���"G��P�:��O���\\F�&�1 �^���R&yJ��HⱰëH���RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^�������ǹ�˼��ïB��]������̨R��H �ܫ�L����P���u�S�ïB��GO4P��PGO4���#�4*�RĨ����°��uTA����ȪRQ��ī�����DB����P���B����P�ǝ���Q�B����P��\RQ��RQ��ľGO4�y���&B����P���\){�]��������R�&���yJ��GO4���vVGO4�yJ�����vV���������RVO�� ����G�#�4*�FQVM�<����˹F]M����������̨�G�uĸ��������. GO4+O��i�����R��QQG�R��QTt�R��QQHL �Ʃ�P�����yR����QQDGO4�yD��������R����QQDO�� �DM�<����\R�QQ]��������\)�&�1 �^���R&yJȿHⱰëHʲ�RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^�������ǹ�˼�[��,A�����@-�GR��[��,A�n�O�D�u�S�ɰ� �P�O��ɰ� ��`)ĩɰ� �,A^�ǧͧ�u�QQV��ʧ�ʧ��u�QQV��ާ�u�QQV2����ާ�߹˝TȪ���,A^�ǧͧ�D��ʧ�ʧ�ʹ˝�T����E�D�32ꫧ�`��ī���E�D2�32�ŧ�\F)ĩɰ� �,A^���D�ͧ׹D�ǧ͹���D��QQTL¸��,A¾�^���Dŧ��u��QQQ�&���Dŧ��u��QQQ��^���Dŧ�˹��u��Ȫ�󧸻R���HL ��ꫧ�`��T����E�D�32ꫧ��`��T������P��D�\F��,C�ūH�H�Z��⭨*�R��4 � �E�L PE�'���ΧE����v��RS�,C�ūH�H�Z����Ʃ��P���Ʃ�uS�,C�n��H�Z��������P��P���uS�,C�n��H�Z��ʼn�ş�������ɶ�ۧ�ź�����ɶ�ۧF]��èƱH�#��Ʃ���èƱH�F]������39Gۧ��+�39G������ë���F�(,��L�(�OF](�O�L�����ϧ���ҭ�@G��� �ORQQ�ϧ�����EK��� �ORQQF](�O�ȯg¹��ϧ���ҭ�@G��� �OR�ϧ�����EK��� �ORF�ũ̩ȩL��ů�����ZF��ũ̩ȩL��ů������F]���>R����Ƶ��v¿���I,�u���MKɩ�RĻ�E�ٸɧE�uT��MKɩ�RQT���ٸɧ��uQQT��Ʊ��PE�ٸɧ�ٸɧ��`QQQE�`Q����I,�`]��Ʊ��Uɧ��������u�`){�Gҭ,�R�¾� QQQD��QQD� QQV��42QDB���QV4��GQD�.�êOD�.�êOu�� QQQD��42D4��GQD��42QD��QQD�,��M��.�êOD�,��M�u�B���QQQD�.�êOD�,��M�B���QQV��QQD��42QD4��GD� �u��.�êOQV��QQD�.�êOQDB���QQV�.�êOD�,��M�� QV� �u�4��GQV��QQD��42QD�.�êOQD4��GD� QQV��QQD��u�B���QQQD��QQD4��GQD�,��M�4��GDB���QQV�.�êOD4��Gu��,��MD��QQD��QQQD��QQQD�.�êOD� QQV4��GD�.�êOu�4��GQV��QQD��42QD4��GQD��42DB���QQV���QV����F���>�Gҭ,�F�����ů��G,�����,�����ͱ��[���I�ܱB�ͱͱ�R�™�̫���̸Ů��u�So�������,�o����o�������R�ժ�,P[�ūa���B�Z���7�Ҹ�P��E���-�K2W���I�ܧ7h�ê���v�uİ /�����,�����ͱ��[���I�ܱB�ͱͱͧ������FT̺����E�P�o�����ŝ�QQQ�����������ا����Z��������������Χ������������ا��������潧������֧ʧ��֧���Բ`]��ȶR�ժ�,P[�ūa������Z���7v�uİ�M������,�����ͱ��[���I�ܱB�ͱͱͧ��ȶ����FT̺����E�P�o�����ŽJ����������ا����Z��������������Χ���Ч���������������ز`)�d��@������GR��d��@���P�@���ľ�N�;�`]���6���(NI�����u&yJ� (NI��vDO� �U&yJ��� ��ì������˹�F]���������������uĿ@��������������6���(NI���������P&�������`� ������ ƱGRľ ������ �RQQQ��GFT�O⵪O ����=��X�=��X�`){���Ʃ���i��bN�J�������������Y�`{�:��i��bN�J���������������ղ`{�E�/��i��bN�J������������������ֲ`{�J������γ ��� ��F�����.��Ʃ�Rİ /����0��������������Y��\�����\B��� G���`�����:Rİ /����0�������������������\�����\B��� G���`����� E�/Rİ /����0����������������������\�����\B��� G���`=��X�M��F]G����� Ƨ��M�,��G詅R�L¨� ��o- �� ��E�/���Ʃ�:�uT�� ��o- ^ïGJ=9�ïGv��VH�����1����Gv��VK( ��� <��#� ƴE�L��P��� ���v��VA���R��V���Ʋ�\��0G�n��G�R��d��G��u�Sl��P�u�S�A���P�u�Sũ�P�u�S0G�P��u�S0G����Ʃ��P���`�������������������������������������������������������������������������������������ϼ�ϧ� ����������������������������������������������������������������������������������������){B����HR¯�u&�O�+��H����L积Ž��R�L�P�+�ǧ�ŽuT�����aĻ�O���>�O̩ u�QQQ+� ( �P��O���>������O����oG�/�k\\){H�ë�ëƩR�¨���uH�ë�ë�����D�=`T¨��Ƨ����uL��_ľ�_���ƝQ������#��ƝQ�O����*,A9a����R��QQV�^��2��D[�^A����-ɰ� �����R��QQV�=^��2��=˽uQ���L��=*,AB����a�����L��=*,A����,A�EK��=*,A���)QQQ������2�=*,A�D�=`QQQ+��ۧ�_&�������Ʃ��A���R��QQD���m�İ���,A�NEK�O����*,A��\`]Ʃ�YN�R�u�L��_�+��Q��+��Q�����+��Ʃ�ȩŨ��Ʃ�_���QYNİ��YN���ƽuS�_��#��ƧYN��`��]G����ë�ëƩ�GRĬ���������RTL���_��#��ƧYN��Ʃ�YN��uQT���L��H�ë�ë�����D��uQQT���Pİ��;�H��YN�`QQQ���`QQT+��ۧ�_&�������Ʃ����N�\F��]G���*,A����"�GRĬ���������RTL���_��#��ƧYN��Ʃ�YN��uQT���L»,AH�ë�ë����Ɲ��O���İ���YN������I��uQQT���P��!��O�����J����I�`�ĸ�`RQT+��ۧ�_&�������Ʃ����N˝ķ��L»,AB����a����DL»,A����,A�EK��,A��QQT+��ۧ�_&�������Ʃ��A���R�QQ�V���m2İ���,A�NEKR����&��2�O�0�HR����Dfľf�,A����QQD[�J����I�˽�`QQQ\)������������������������������������������������������������������������������������ϼ�ϧ�5<�Ω�������/�ЯM���������������������������������������������������������������������������������������)�N��L�o��L�� /�F]A1���O0�¾d��G�]����N������G�u·uĪ������"���秷FQTH�����ɪ��1�+�"���FQTH�����ɪ��1�+�"���\)�H�ۧ�M�Y*���Ĭ�����G�`������G ���GRľ�����G �����G`]G�B�9A�R�I�_���9A@�M`QQQJ��G �����XvQQJ������O���٨��vQQJ�/������/�����`]G����9A�R�I�_���2�(�O������2�(�O�u������̵���� ��(�O��M`QQQJH�Ϊܩ�JH����ܩ��H�訪ܩvQQJ�����Q�������J�赭�vQQJӳ��4�QQQJ;��yQQQ�;��yvQQJ�������������QJ=���oG�/QJ=���oG�/vQQJ������Z�Y��MJ��6�����MJ��6�����MvQQJȪ���QQJȪ���QQJȪ踫��vQQJȪ�(�O��Ȫ��(�O��Ȫ�(�O��`�9 �����M�X�GR��9 �����M�X��u�S��G��]G������G������������ �GRĪP������=����Ѩ�ܩ���˧6��B�H6��ů��Ʃ���U��QQQ��ź����������� R����=����Ѩ�ܩ���˧6��B�H6��ů��Ʃ���U��\F�̵������GR�™�G���u�S��̫��������u�S̵����,�É�u�S̵����������#4 �������*������4 ��������`]G�m�������۱GR�GXJO����Pk����m�X��P���"�K�vT�P�k�m��������#4 �������*����O ����,��\\����ůɴO0R�ҧ_M�� W�"�B�O'�� �vľO���D��;�K�����0G�YN��P��u�Sũ�P�ɟ����� ���oG��YN��R��%�G���ůɴ���F]��>���R¬��[�uĭɺ������HR�+��>���YN������[�\){��R�¬���u�ɺ������HRT�+��YN�������\R�¬��[�u�ɺ������HRT�+��YN������[�\F]���<��RϬ��[�������`]��R��W�#C���� ���� ��"�XRO'�O'�� �v�¬���u�����k`T¬��[�u�����[�\)��]A1���D=�M���Q���[�����Q�ɺ������H���QT�+��>���=�_[�\){A1��D=�MR¬��[�uı���ɺ��^����yJӪ ������v�QQD�ïBJ��� ��������v�QQDyJ�� ���v�QQD�?J�� �����ůɴ���˝�ɺK�����\��MF]_�u�L«�/����IH�/O3�@-`���/����IH�/O3�@-��uT���\)İ /�����ҧ��M`�����W�<��F]���MK/�Ȫ�®�I ���Cu�. G�O����C���I �\){�����MK/�ȪJ�\��`]#� İ��MK/�ȪJJ`]MK/����. ��MK/�DMK/�G�LRMK/�����MK/���ܩRL>�DL>�˹L��C�MK/����L>����RTG�. ��MK/���C��ɬ\�{��M��L��w�v! p��ҧ@���,�����M��L�W��=�sv���%��� �E���Ȫ����M��L��v�a&yJҰ ��NHݧ�V���hv�V���%���ȴ. �� �������رh�!���U»M��L���n�$ʜ�QS�M��L��� ��$ʔ� ��MU�x�� w栛E���wߴ�ʜQQQx��C���放� �n�� ���u�E���^�U�n�������� �������QQD]����P&����W��Ƹ�ȶ�R������J����E���v��������� Jì��%��� �E���4���M��L����=ź�$ʺv������@-�������ï���O���JԲ�F�O� q��O ��M����ů�R�™�H��PH�u�S��B����������G�¶1 ��SO� q��O R�Q�����¶���G��Q?�������M����ů���IU&Ʃ�U�e�@-�E������u&�OĶ����@-�Q�����E�����Q���������e���R�ȱ��L�d*e��eFTL�o/�������e�Q�G����G�o/�QHɰb�N;��X�Hɰ�o/K��@-�K��E������RQQQHL ���Hɰ��1ı��GR���QQTB��L>�*����MKɧ@-�E��������T/�G����Q�1 R���QQT�?�����1���=��@-�E����`����Ļ?�����1�*���Hɰ�#�ɰ`������G�uTMB��ĽH��M�H ����#�L ���Hɰ��1�N�D=9�PƩ�PH�����T���#�L ���Hɰ��1�RQQ���QQQ��1 R����Q�?�����D=9������\R����Q�DW�����QQQ#��\`���������C�9��zN��������R��R��������C�9��zN����e���i���������u��������C�9��?P��P?�u��������C�9��zN����������H�Z������Ʃ��*e��u�D�e?+O'>�������FQV������˧F]H��*eU�������H�Z��e�uĻ���H�A���������H�ZR��V������39GR��Q�D����yD�*e���ë����R��QV�eP�e��`���ëL�����<�������e�u����L®ë������*ePĶ�������Ļ?���ĴN���W���J�����#��e�\uTL»������H�Z��������H�Z�����QQH��L*eP�����Ʃ��*e�����ë������*e��uQTH��*eP�������H�Z#N���L*e��ĸ�H��#N���L*e�uQQT� /��HX��ë���2��Χ�e�ľ�e��\\){�����&Ʃ�U��Ë��������uĻ�Ⱥ�e���i�����A��&����yJ��Χ�W��v����D��<���ëL����ëL�����<��˧����\���&���J�J�5W���W��C��Ʃ��P� �M#���������C̩������ ��M��̵5��Ȫ������R�·C̩������ ��M��̵5��P̵5�u�S�C̩������ ��M��]�����P]����u�S�C̩���������P����A���*�� �U�����-ȻuĻ�����uT. �������FQT. -Ȼ���\){�������A����Ȫ�A���*�� ��R���QQ]�����������R���QQ̵5��������`���MG���������������F�ϧӯ�� �������O�/��ç�5Ȫ�5Ȫ�����ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH�F�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩ�NaW�����������������Z5�������P���ϧ@���P���NH�)�o<����?�EK��R���N��5����P5�����[������R���������[��MB��MIW��v�[�u�5�����O��[�`]�����[�R�� �����PMB���[�#� s��v�M�u�5�����ȧM�`&K��^K��U���B����y�� �$7�ǜ�QSp ��w״放��U�K��u�EKM�^�U�����QQQDO3D�R�V�bJ������G�� ��.�v�V����� Jì��%��� �E�����E���l+�=źi��v�V����� ��O���J�Ԍ� ��MU»��E���EKM�w栛x�����N�$�����;�Uj���B����O3���˼D�N�ü!��R&_���ƪ�����N���ƨRD�������P��O ¹˹˼�Ư���3���������F] �G�B�� �Gu�L� �G�B������u��QQT��E���ɝ��QTMB��������MB��������ͧͧ�\R���ɽ�uT>�OZa���� �G�B��� �G\`���9��ëL���ì���GR�™�n���������u�S5�����]O2��P�u�S�9��ëL���n�O��ɩ����S�9��ëL���ì��u�S��ôì����u�S��G�����#�R&����ì��D��%���ȴ��4 ��E���F]���Ʃ�O�0�HR��F]��Ʃ�O� �R��uĸ����"��O2��Ʃ�O�0�H`]G��ɩ���G�R�Ȫ�O]�RSúO� ��Ʃ�O� �uT�P�L®��ɩ�i����O������������MB���ý�u���O�����Ʃ�O�0�H\`�d4������IR�·C̩��ȩ��O�D�u�Sd4����I�����`� ��ů��IH�H�vĮ����IH�H�J�������������������������������������&��D����\��DH��\֧�\֧�\ҧ�\���\ҧ�\֧�\ҧ�\ҹ�R�������&��D����\��DH��\ҧ�\���\ҧ�\���R�������&��D����\��DH��\���\ҧ�\֧�\ҹ�R�������&��D����\��DH��\��R�������QQQ^��D����\��DH��\ӧ�\֧�\���FT�����IH�H�J�����������������������������������Ҳ������&��D����\��DH��\ҹ�R�������QQQ&��D����\��DH��\ҧ�\ҹ�R�������QQQ&��D����\��DH��\ҧ�\���\ҧ�\֧�\ҧ�\ҹ�R�������QQQ&��D����\��DH�k�R�������QQQ&��D����\��DH��\���R�������QQQ&��D����\��DH�k�R�������QQQ&��D����\��DH��\���R�������QQQ&��D����\��DH��\���\ҧ�\֧�\ҹ�R�������QQQ&��D����\��DH��\ҧ�\ҹ�FT�����IH�H�J����������Ҳ������&��D����\��DH�k�R����QQ^��D����\��DH��\ҧ�\���\ӧ�\֧�\ҧ�\ҹ�FT�����IH�H�J���������������������Ӳ������&��D����\��DH��\ҧ�\֧�\ҧ�\���\ӧ�\ֹ�R������&���D����\��DH��\��\��\��\��\��\��\��\��\��\��\��\��\��\��R������&��D����\��DH��\ӹ�R������&��D����\��DH��\֧�\ӧ�\ҧ�\���\ӹ�`�9 �������ŵ����N����R��9 ����6��B�H6��ůɉ��u�S9 ����6��B�H6��ůɱG�Gu�S9 �������ŵ�P��P��u�Sp ���n�O��N�Ê�S��G��]G���H6��ůɱ������,�����I,�R·��u�L®���I,��#ź���P��źŵ�L�\uT�źH6��ůɱ�����B�ŵ��RQ�ź��M��O ����ŵ���FQQ�ź��M��O ����ŵ���FQQ�ź��M��O ����ŵ���FQQ�ź��M��O ����ŵ���`QQ�`]H6��ůɱ��������,�����ŵ�R·��u�L®�ź=��#ź���P��źŵ�L�\uT�źH6��ůɱ�����B�ŵ��RQ��RQ�ź��M��O ����ŵ���FQQ�ź��M��O ����ŵ���FQQ�ź��M��O ����ŵ���`QT�ź����P�\){G����N���Ƨ�,�����I,�R��N��H6��ůɱ������,�����I,G���G���#��H6���Ʃ�\){G����N���Ƨ���,�����ŵ�R��N��H6��ůɱ��������,�����ŵ�#����G���#��H6���Ʃ�\��O�'�?�R��O�E��nQVO�<�L��SO��N��nQ�Q�O��N��`){���-��<�L�G�L��RV��*4?��ŵ/�vV���ȩ�������vQ��D���G�LQ�ů��vV������Q��װ�vVE=�QQQJ�������Q��ϧ�,���RV��M�B�Q�ް�v��F]��-��<�LR�����ï��B������ ç֫ŧЫ-�v�ɬu�<�LRV��ũ�QQQɬRV�@-种RVG�LQQQ��-��<�L�G�LRQ�F)){zN��<�LR��H2��N�����ȫ/���P<�L�@�¨:�X������v�zN��y#��Lu�<�LRDÛV��Q�����ק���uD��ũ�QQQzN��yRDG�LQQTA��G�L^E=�J�����FQD�@-种R�����,���H�N"��GR�™�G���u�S�,���H�N"P�O�D���G�E�����y��H�GR�GXJ�,P�ëũO�����@����P��A �vT�P�������������������������QQQ��E�����y��H�J��\\��������ô�̪���������R�™�[��̨�̨u�S��ɷ��ɷ��n��ľ�N�;�`��ϧ�״Ǿ�6�X�O��]���P�O����`KO��������ϧ��)���P�ϧ��)��P�ϧ�O��&�DO3��Dt���˧��ޮ����ǻ�)�ϧ�״;��X�O�PȪ�O��H����O��H��P�˽�ϧٳL����"��)ĸ������O��H��P�˽���ϧ��)�ϧҳ����O����� ������F]-ȱf=�_'/ó��ŵ�bu&fCRD=�_=�MRD'/ó��ŵ�b�'/ó��ŵ�bRDB���ɰN��>P��F��ϧԩ��P32�:�X�B��P]3��-ȱ=�_ŵ�b�4��/uĸ�����RL®��O/�����E�/������Q�-ȱM�����O/�������=�_ŵ�b�4��/�uQ����P����=�_\F3��-ȱJ4�������ʽ��ϧѲ4��&f��D=�_�4����D'/ó��ŵ�b��������DB���ɰN��>P���)�3��-ȱJK��������ʽ��ϧѲ4��&f��D=�_�4����D'/ó��ŵ�b��������DB���ɰN��>P���JK���&f��D=�_�K�����D'/ó��ŵ�b��������DB���ɰN��>P���)�ϧ��ҿN��]�B��������e�QQS��o�Ŵ�����D��Ȫ�����#ù��G�G�zeR�KL*e�O�����>�ĻeJ�4 ��;� ��:�����FTȪ�����J�4 �vT��Jx�ze�`T�PĴ�ɪGPĻeJ�4 ��;� ��:��:��:�;��\F����7����@-�Rľ™�̫������D�¨ù��™�G ������tC»euĨ�J����������@-vQQ����@ź����������@-�( ��+Z���������,�L�VC������p��vQTG�J��C��ٶ��e��e��ϧ��s��ëPB�������Ƨ�eRQQ���C����⵪Oٶ�������ů�Ƨ����|vQQ�ϧ��s��ePȪ���X������Y�اK;I�������tC�RQQ���C��ٶ��L� �j�������?��eH��tC��KL����� ��鯮�����;I��L���`]������NEK���ŧ�����Ū�u�. ��J����������@-vQQQJ���@ź����������@-�( ��+'����誷�>���ź���ҵ���ضEK�����p��vQQQ����Ƨ���W���������y�ƽ��`�QQQ&M�����D�������DŪŪ��\){�?����@-�u�����+��+O �J������ݧ�VC�����`QQQ�?����O���P���\������ݧ�VC���\������+� ���@-P@-�\F��,K�(ï���� �� ]�,K�Q�ϧ����@G��� �O� RQ�ϧ�����EK��� �O� ��� �� ]32¹Q�ϧ����@G��� �O� RQ�ϧ�����EK��� �O� ��� �� ]���2¹Q�ϧ����@G��� �O� RQ�ϧ�����EK��� �O� ���;��I��MR��;��I��(�u�S ���3.��̩���O�����̩�����S;��I��ȩť�;��I��.���S;��I���'��'u�S;��I��o�����o����o���s��S��B�����O �H�Z��O �ľ��0�E���<�������I����?�������ZR��̫���-���-�Ҹ�OFT��N�;�`]GI��̩���u����L�0�ľ0�o����uT� /��;��I��ȩž#�<���̩���G�Jì��%�ľ�M��o����J�0��`QT����̩����;��I��.�^ïG��M2o������QQV0�0��R���V̯M种�\){GI����?���u����L�0�ľ��?����0�o����uT� /��;��I��ȩž#�<�����?���G����?�����M2o����J�0��`QT�������Z��-�Ҹ�O�b���4ľ��?�����_o������0��\F]�_�����u����I�����O3��t�oG�/��`To���s���FTGI��̩���FT�O �GI��H�ZD0�ľ�O �0�o����D�M2���޴$$DzFTGI����?���`��]"#Z����̩����;��I��.�^0�����D̯M种˽��������5�N�M��GR�ª�����5�N�M���u�SE��G�I���,�zN��PzN�u�S��G�QQQ���u�S������5�G���QQ����`){G�N�M��GR�Ȫ�o���RQ&N�M�zN��X�����ض�M&��LPѲ]����²㨾�ò��˽! ��R���������QV⵩� R�������QQQ��QQD� ����RTL�N�MQ�N�M��i��QQ;���QQ�;��Ƨ��i��QQ� �QT�� ����i��QQūH���ëܩ�9G�MG��"������ٸ�N���y�RO����P��-ȧ�鴧�5�N P�Po��L2���GRI��A/�]���B�����ٻ������ï�aB�����R���I����X��N���ëPũN�K�Ol���v��=����u-ȱCۧ��J�����`T�=���ܧ�N���yu-ȱCۧ�ܧ�N���y���`T�=����ܩ�9GٶG��"��ܧ�N���y����Ʃ�u������Ʃ�RQ�-��2Ĩ�����N����ܧ�N���y`QQ�-��2ĵ�������N����ܧ�N���y\`]�IH*��Ʃ�CR��IHP��쳫Ʃ�2MB���P�oG���N�I���v��=����u�L��MI����B�MI�ά �����Q�PT��� P�MIʧ�ǽQ��ϧ�ǧŪ�P����e+O3�ì��J� �G�ì���`]G��-/*��GR�GXJӫ���>�B��-/��e��i��vT��>*`TGXJӫ�m2����-/��e��i��FTGXJӫ�O'>�����-/��e��i��`�.���o���O����n�RĪ�0��̫���?�o���O/�쯭��J�MЯ��\)�ϧ���ھ�M�<��W�̯_0���_���4�oɬ��ϧX����4�mK2o����,��]��O3�0���쯭��J�MЯ���`�� '�O�?�GR�¿ '�O�?�?u�S��G���u�S��G���ƴ��G��]������S��G���Ɖ��u�S��G���ƴ�N��P��P�Nu�S��G���ƴ��< �����������������������������:���ê�������Rİ��W��P�N�G ��uT�#��#�?�����?�K�����\F�'���H�����o�������GRľ·C̩��ȩ�����'���M�,G�� s�[�G�� s����u�S��êO�P��u�S'����:�M��M ���o�����M P��P�o�����M �u�S'���H�����o�������P�o�������ľ��0��'���M�,G�� s�[�G�� s�����ت����o����G^�?�GJì��%���ȴ�?�E�v��QQD�?Я����R�QQQ�QQVH�H�yJH�H�yv��QQDHЫȯg�H�ȸv��QQDH�?JH�:�M�E�v��QQDH�2�Hٸ��F]��o����G����̨�+�N��G ����o����G`]b�O� ���ì���A1�� ��1���R&O� ��A1�ì���A1RD� �� RD�1�1��F� �P��ů��o��������)QQQ� �ի������֧�Z���o���P�������ǧ����ȫP6����v�Q�o��������o����.�b�O� ���D0GJ��o�����o����G����̨�����oMP&�����D�1�o����G˝QQQ��C�2��o�����M +6����o�����X����ت��k��o����G\)QQQ� �ի������֧�Z���o���P�������ʧ����E������6����v�Q�o��������o����.�b�O� ���D0GJ��o�����o����G����̨�����oMP&�����˝QQQ�İ�C�2��o�����M +6����o�����X����ت���X�k\)QQQ� �ի�����֧�Z���o���+�H�y�O����P�o����Ȫ��4y�v�Q�o��������o����.�b�O� ���DbJ��o���+H�H�yk�����oMP&�����D�1�o����G˝QQQ��C�2��o�����M +b��o�������yJH�H�y������o����G`RQQ� �ի�����֧�Z���o���+�H�y�O����Pk�����o����Ȫ��4y��� ����ɪG�v�Q�o��������o����.�b�O� ���DbJ��o���+��ƶ�ȶ�H�yk�����oMP&�����D�1k˝QQQ��C�2��o�����M +b��o�������yJ��ƶ�ȶ�H�y�����k\����=��H���R��[:�.���KL�ūa6���ūa��� o- ���f�Ŋ�S[:�(�(�°I(������P�N���I�P�N��(��S��=��H�Z�H�Zu�S��=��[����0�����I�2��P[����0������(u��(�n�R�������R�QyDG ��u�Q�ï���yDG ��DMKɩ��`R(#�I��R�������R�Qn�DO�D�uQQQQQ�� DG ��D������F]��0���n0,u�[����0����������J� �[��n0,�����n��`]H�2�u�Lµ��#Z��ű� RQQQo�o- �����uT��� oĿN��(���fĸ�(\RT��� oĪ�0���n0,\F�ѼDyJƩ���ݼD��J�ݼD����L¯����eۧk�QQQ�L�BZ���e�J��QQQ�����J��ݧ��J���uQQQ���*e�O�u���k�KO����`�QQM���JƩ�����ڰNX����*e�QQQ���.ۧ�Ļ��觻�������N*e��D�����*e`�Q���������O��QQQ��������O�����R�QQQM���J�=�X#�4�������Q���;�H�GO4KO����`��G�J�M��2� <��J��*e`�QQQ���سHR�QQM���J��M�#�4����ݧ��Ӿ���Ĭ��O���O�`�QQL�MG�G�KO��L�BZ��X��O�`��Q���������\-�@-��b�MG�K�E�/�MG�\��QQ�@-P�G��� �MG����\����QQ@-P=����������睛��S����G�@-����G�@-��u���QQS@-P��������KO�����uQQ������.ۧL�BZ���蹧=`�QQQ��H�@-�@-�u�QQQL�O�G��� �@-���\�������G��̯MR�����\�v����ı�O��ʽG��� �䲱��#�o����QQ��O��ǽ��/����IH�/�����QQ��O��潧�/����IH�/�K����QQE�/O�������u���� �����QQ�-��M��\\F�DK( ��֫�GO4X���է~8PĿN�2���ů�<����E��.H��M���e�ݧ�������E��.aE�/�#��M��ݧ0����#�L������L�Ȫ��P��� �O���<���@-�B��e��*e���êP�*e��?����2�PM��W�9��軪�-�������˼���z@l��-��;ų�G�����GR�·C̩��ȩ��O�D�u�S��z@l��E�'���n�O�Ȫ�OL�H��S��z@l���;R�Qn�O��E��⵩���Ȫ� W�� W�PK� �Ȫ�⵩�Ȫ�o�oɬ��QL� �O�E��⵩���ǹ��S��z@l��-�R�Qn�O���Q��N;��Ȫ�N�M�N;* q��Q�=�ƱG��=�ƱG����QSO�G�O�Gu�QK���G�K���Gu�Q�G��G��S��z@l��-��M���K���;ų�G��;ų�G*m;ų�G� L���G�ų���;ų�G� q�u�O�G�G���_� q�FTO�G�G��ɧ� q�FTO�G�G�������ۧ� q�FTO�G�G��������� q�`]G��. Ʊ;ų�G� q�u�O�G�G��P� qFTO�G�G������ q`Ȫ�ñOL�a�K����GK� ���G W����D���`�QQQ� �o��K���QQ�⵩��E��⵩���ǧ ɧK���)TȪ�N�M;ų�G*m⵩��RT�=�ƱG�G����N;* q��FQTO�G�G�ų�P�N;* q��FQTG�ų���;ų�G��N;* q��FQTG��. Ʊ;ų�G��N;* q��FQTK���G�G����N;* q��FQT�G�G�����N;* q��`R�Ȫ�N�M;ų�G� L�⵩��RT�=�ƱG�G����N;�� q��FQTO�G�G�ų�P�N;* q��FQTG�ų���;ų�G��N;* q��FQTG��. Ʊ;ų�G��N;* q��FQTK���G�G����N;* q��FQT�G�G�����N;* q��\��ϧӯ�� ��������Wڧ����ҧ����������ݧ��Ӽ�ϼ�ϧ�NH2��Ұ ��NHݧ�V���h��NH��ϼ�ϧ�������P�e���"�_z@��"�Ȫ��NH���ϧ�Y�����_��E�����Na��ϼ��QQ�ì��%���ȴ. �� �������رh��ϼ�ϧ��L�O⵪O2�. ��L���ȧ���O�2B�_� <���#����I���ϧ��G ��2���Na�P��G ��2��Χ�������ݼ�ϧ�W�����֧�W��������Χ������������Χ�����Y�����ݧ����ɰO������ ������ϧΩԪ"�aW�����������������Z5�������P���ϧ@���P���NH�)����@�O��� �GR����@�O��� RQQ���G`]G�G���"����O�ï���)TGXJ��"�>�t�O����P��vT�Pĩ�"����O�ï���^A���^A��˧�\)TGXJε���N��=ȧ,<��O����P�vT�PĶ�ĩ�"����O�ï���^A���^A��˧�\FR�GXJЯ��<>���������������CN2O����P��vT�Pĩ�"����O�ï���^A���^A��˧�\)TGXJ�Z����������������CN2O����P�vT�PĶ�ĩ�"����O�ï���^A���^A��˧�\`){G�G*����ų �ïL�O�ï���)T]#��<��P&ų �ïL*�?��B�GI���O�ï�2$��R�QQQDų �ïL*�?��B*M����O�ï�2��FR�GXJp<9�#��B�����?sPvT�P��Jp<9�v���Ļ����ų �ïL�O�ï��PH�<���R�����QS&A���^A���˧ѾA��˹\`R�GXJ��#����ȧ��?s�vT�P��J��v���Ļ����ų �ïL�O�ï��PH�<���R�����QS&A���^A����^A��˹\`R�GXJ��#�����?P�#���"��K�vT�P��J��v���Ļ����ų �ïL�O�ï��PH�<���R�����QS&A���^A����^A��˹\`R�GXJ��#�����?P���M��ç��"��K�vT�P��J��v���Ļ����ų �ïL�O�ï��PH�<���R�����QS&A���^A����^A��˹\`RF�����Ŭ�����F]Ȫ��:R�ȯ8�u�G��ȯ8P�ݧ�5�������`Ȫ��:Jҳȫ�P���� ��������Jҳȫ�P���� ���ݧ�5�������)�ϧ���s���� �]��I�N���t��R�uĪ��,��$�FQT��Y���b�,�H�vQJ������Ƨ-���I۲\){�����Uɬu�G�J��I ��E�/�JE�/�ɬ\){���ܩ*eR»eyuī����PĨ������ey\)ī��ܩ*eJ���d�����J��I ��E�/������)��#C������ *O��4 �){��O�ū���yJ����/���FL¿O�ū���yJ�=1��u�O�ū���y����J�=1��)�O�ū���y���Q�����/���){���R��t������tP�`T�tP �����X�B�u��������t�FQQ������X�B�RQ���OG�t������G�t��������X�B�\`�������ǹ���ϧ���������ǹ�ʽ��ϧ������ǹ������ϧ��������㽧�ϧ��)�ϧ��X�O���]���R��t�u����tP�`T�tP �����X�B�u��������t�FQQ������X����RQO���OG�t������G�t��������X�B�\`�������ǹ���ϧ������ǹ������ϧ��)�O⵪O��™�G �����F{c��R�ɬu�+O �+���ɬ���=����Բ`c���ů��oG ����P��#�=��Q�����J�ů��oG ����P��#����۲)�ϧ�az�z�M���ͧ潧�ϧ�){���I �R&yJ�'��Pծ� vD�� ^M�@�N"���R�QQVGO����R�QQVK� ����F]���M�zDM�@�N"D�� `{���G�zDGO��QQD�� `{����zDK� �QD�� `��M��I ����ϧ����G����I ����ϧ���ɧ��I ����ϧ㼂ȯ�ƻ=�6���N<���[�( ��R��[�( ���P�u�Sȯ�ƻ=�6���N<���(� ���(R������u�O��"�¯��P���u�To��󧯰��R�QT�DO�������ī��D�źt�����!Ŵ�����O�����D������ī��D�ź98M��!Ŵ98M����������D�5⵩�������ī��D�ź�5�!Ŵ�5⵩�t������D�5⵩�CN<������ī��D�ź�5�!Ŵ�5⵩�CN<��\R���������`]N<���(R�������P���p�(�WN<���v�N<��u�O��"��(�y��������TL«(�(�������u�QTo���#�R�QQT��ĩ�����(`��ī����y(\�QQ��R�� �N<���(�N<��\��������?�GR��RS������?���uS�C̩��ȩ��O�D�uQFQF� �R��"�fO����P�"�Cv�L°fİ"�C�uQ�f��������FQQ`)))))����c�� �N���1 ����c��� �R��R��L��n�R��L���ëHR�L�� ���u�L�� ����O ����P��O ���u�L�� ��� ƫ���P� ƫ��u�L��6��̫���̫��u�L�� ��O'*e�O'*eu�L�� ��H����PH���u�L��6���:���3�M���:���3�M�u�L��6������P���u�L��6��ñƩ��PñƩ�u�L��O3��ɰ��O3��ɰ�������c��� �����RİL��n������RJ���cvD���c��1��^4�J4�����游��v��QV���?��?���������G�ǫv��QVMG��"�������v��QVƩ������yJ���v��QVH�� ������U��� ���H�Z���DyJ �/�v��QV� @��ƩĨ����J��ȴC譨��� ������ ���ƩĨ����J��ȴC譨���˽���� �|����������*�?s�Rľ�C̩��ȩ��RQQQ�C̩�G�?`�ϧ��y�� ���G#ï��2.��I�_G���?s�O0��9��� ��*�?s���RĻ ���ǧǽ����FT� �RQ� �������䲪� �|����������*�?s������� ���G�,����� ����*��GR�™�H��PH�u�S��G���u�S�� ����eP��P�e�u�S�� ���G�,����� ����*P�O�D�u�S�� ���G�?�< �?�u�SA�,�-���P��P���`){�G�����PĻe+O3�ì��J� �G�ì���`{�G�Ʃ�G�?+Ʃ�B����J� ���GX�`]���X�E�/R���*��"�E�/P�eP_�����v¸��u�E�/. H���5����/ç��ͽ�+�Ƨ> ������\`]G���*��GR�L�M�<�E�/X�E�/�+�eJ� �G�ì�����uTGXJӫ���>�B��-/��e��i��vQT��>*G�ƩG�������İ /�M�<�E�/���M�X�+�ȸ������uQQT�P��M�<�E�/X�E�/�+�e�G�Ʃ�\\RTGXJӫ�m2����-/��e��i��vQT�P��M�<�E�/E�/m�*G�Ʃ�\`QTGXJӫ�O'>�����-/��e��i��vQTO'>*G�Ʃ��ĪPč��+�ɪG���+�e�G�Ʃ�\\F��3��� �;��ñ��R��R��̫��������u��G ���G�u�3����O�����3���BE�P�O���������-ȱ;��ñ��R��O��-ȧ;��ç��O���>PO� �PȪR��çM���_ <>�;���ݧO��>�B�����)Q�ڀ��� ���P��Ȫ����=�X�Ʃ���)Q��MK�*eP��E�L ������ePB�����çM��R���N�PȪ��)Q���4 ���RQT-ȱ;��ñ��\�� @��\�FR�ȯ��2O���>�MKɴì���B�� @��MKɴì���M�C�R� <>�;������������J���#>P����)Q�ٻ��2Ȫ��C�݈���=�X��)QQ�\��\��3�-ȱ;��ñ��R�QQQ�\�� @��\&MK�*eU�\�MKɴì���\��˽��)Q�9��2B#>����eP_� @������� ƧBR�MKɴì���W���ԧ��P@�����������v�����u-ȱ;��ñ�����k`T����^Ʃ�UMK�*�L���u��RQ&�ñM���Q���RQDA1PQQ���RQD� ���RQ�� �uQQL°ñM���� �DO� ��ñM���QQQ���QQTG��O �ñM���������QQQ��ePQT�����G��ñM�����\����Q���Ī���e������ç���MK�*e����Q@G����e�������\R�Q�OPQQT���GH�N"z���Ĵb�ç�`�����QQT�����O����"������ĸ����e�k�`������e���uQQQ����O�\�\��;��I��>�R�™�̫���������ľ��0�j�. �>��'K�����ɰ��ի>��X�����3`]'K��B��'K�u&y�bҭ<� ��2'K�FQD����b����2'K�FQDZ���b�V���'K�FQDK( �Ĵb� p�'K�FQD�:����Ĵb����'K�FQD����b����'K�FQD� �b�NHP'K�FQD(��bή��'K�FQD�ï�P�>����Ĵb�4���b�����P'K�\R��ϧ���ھ��� ��.��I�B���2����O�RDK�NK��� >��l�¸�Ĩ��ů��b����2��������bҭ<� ��2�`����QQQ�b�V���������QT�b驰�P'K�\�F]O3�0�R���3P��0���e�O���5���>�1����Ň�v»eu�Ȫ���NO3���O3��e�uT�O3ի>��X�����3���O3\){�0��B��z�'K��B���O3�0�����ɴ����GR���N��<��O��M����<��Ou�S��G��]G��PGX��S�ɴ��]�����P�O�]�������S�ɴMW��'K���'K����G���X���|��GRĪPĩ�����O'>. A����D'K�tP'K�\�R��QTƩ�P]�����\�������(��zN���HI�ô��|�R�™��ƥ�Ʃ�ȯ8�ܩ�Ʃ����S�����6����ūH�׉���u�S:�-���P:DO��6�U]����S���=���Pì��DO��6�Uì����S�̫ɴn�O���֧���֊�S��(������P��P�����u�S��(��?������P��P�@�u�Sd��������ë������#�I�ñO�����R��L����ç�P9�L2Ȫ�O����P���س�GΩI�ô��� ��|�R���O�0�a��� ��B�.���v��PO�0�Hu�L�O����Pı�O�0�aƩ�ȯ8�ܩ�Ʃ�P�ê�P�ê���Q[���D薧O������Q��|PĻ?���#�tC�D�����+��|��[��uTr��� �ۧ�P���HI�úO����P&O����P���|�˽�\){HI��R�ի�����֧O� �#�I�ç_س�GΩI�çW�O� 2[��v��P��u����Jì��%�=9�ïG����ʺ�HI��vQQ^ëL���#�I�ñO����P���V3PѲ�ï ���G�J�J��׺NEK�XJ���G��ë���A����RQQV�I4P&�G�������`]���� ���R�ŇR�O��u��L„�|r��P����Q&Ʃ�U�ï��o/��O���C��#|u�T�����ĩ�����o/���ì��!���Ũ�9�=�Ũ�9�=�M��R��Q�������3�������� �����O���Cu��Q���@ź�����ì���o/�u��Q��G�J�ï��Jï����\`{�O����r� q� ���`]�����"�ΩI�����R��r����R�������HI�úO�������ŇR�O��u��L�&Ʃ�UHI�úO�������r��P���u�Tì��!��R���W�R��S!���W�����R��Q���ũ�JΩI�çW��|����¾M��W��o��^����ɬv�����D��ë����HI�ç�PĴ������b������˹�������R��S���J� ������QQQ!���O����P�����O������O���������\F{#�I�ñ��r� qΩI�����`��OO����YN��E�ƪ��GR�� �����"PM���>2_YNE�ƪë@��v�™�G�{G��PGX��`){G�����zI��R�GXJ�GM ��O vTL�9̫���-���-�Ҹ�O�b���4���ȴ����L�9��QQE�̫���-���-�Ҹ�O�b���4���ȴ����L�E���uQT�PĶ���9�E�\FTGXJյ�< �:�MP#43�OvTL����̫���-���-�Ҹ�O�b���4���ȴ�OO�E���QQũ̫���-���-�Ҹ�O�b���4�ũ��OO�E���uQT�P��ũ����\`��Q�ӯ�� ��Į����fծ�Nܪ�ݧ�ç�Ʃ��o�������������Q���G �����PW��P�����IIEZ�2�����Q��Y�a� @���Naʼ��Qì��%���N��� ��Y�H�$�ð����ç9ũ���Q�����_�e�� ���$ì�������P��G ������Q��X��P�����I_�����êݧ���O�O�X�B�ũ���Q�ů�����P����P���Q�Y������O'>������Q���<"ݧ����ݧ����P�����I��)���9����� R&���Jٷ �|P�����>��������K�NK����i��vD�ï�J��fծ�Nܪ�vD3K2w$��F)�ϧ�WïL����PI�P����PG�� s����Q^'��LP�Ѩ��ů�˼��QV�� Tڀ���VI�F��QQ�����������������1�LP����������1�L���Q�˼�ϼ�ϧ�WO��1�L��P�L�G���Q^W�P��V�����ֽ˼�ϼ�ϧ��,�W��PG�� s��P�m�X��P�_���ϧO��"��J�Vէ�=�s��� �|�����'��L�ū��P�O��ϧ'��LPI]M�2B���XL��eP��z?���ϧ����������#��N<��Z�W�P_�8�����ϧ�����,�"�����X�W�P����4y�� Bb��MB��ϧ'��L��P�O���������ï��P�PG� ���W�P_�e�m���ϧ�8�)��ϧЫ O�N���� �P����WïL����PB��WïL���֨��쯭����J� N�@-� ç��#�����������PI��|���ü�ϧ�ë��ũë������������N��@�����������@����ϧ��>���W�����=��X������ϼ�ϧ�P��Po�C�2��1��, W��� �B��z�H2B����ê�>#:O���,��ũX�'��@ݧ�� O��ϧ�ɰ� �2B�K�N2����� ݧ ����������>���ϧ���W��O⵪OP�O����N��@���������֯�G�����ϧ���ݧ��������W�X����zL�ݧ��P�ɰ� �2B��ϧo̧���PCN<���MB���� #�������� �N��ϧ�L ���B�O������HP���ç�K�N2����ë>����O3ũN�����)]~8���R��ïL��G���uĵ�[��_�ïL��G��� ��o̧��`]O⵪O���R��ïL��G��������uĪ�oM����� ��ïL��G����FQQ�ïL��GRT����ïL��G�����\){����� R«G����P���� u�O��"���O⵪O�����ǧ�ͧ�����QQ�G��� `)�ϧ֯�N��L��P��ïȩZݧ���W�X��� O�O⵪O2B��ϧ;������� �ƩO X��Ȫ���˴��êPM� �B���# H�N�� ����e�MW���ɪG�_��,���ϧ��֧��P@Ʃ�G�#ï��2ķ����O����ܩ��ũW��)];������ R«Guī��GD�� ����`�ū�����@���ɴ�5��GR�™�G���u�Sū�����@���ɴ�5�O�D���G�oZ��GRĪP���oZ�Ƿ������`T�P���oZ�ǧ���������`T�P���oZ�ʷ��������`T�P���oZ��M���M�ò���`T�P���oZ�ǧM��M�ò���`T�P���oZ�ǧM��������7��`T�P���oZ��ͧ���M�ò���`T�P���oZ�ǧ���M�ò��Ǻ��\)����������ô�̪�����߱�ŇF��ϧ��zL#�� �Ň#�i��W��=�s)�K;I�!��4���FK;I�M��A1F]-ȱ�ŇƳ�u�L„�O���˽uT���E������uQT9aE�RQQV;��Ƴ�RQQV;��yƳ��y�VH��L��Ƨ�����u�QQT�������#���Ƨ�`��k�VbL��Ʃ�����u�QQ�Ʃ�`��L�A1Ƴ�DA1�E�����T�����A1R�T���/�A��"���R��TG�J����L�B�O�0�BJ�E�\�QT�M�X�P��u�T. A1���\\F]-ȱ;�;��y��INA1�uĻƳ�E������uT9aE�RQVyy�;��y���IN�IN�RQV-�-ȱ�Ň�Ƴ���A1PA1�RQVA1L��A1�y����u�QQT�M��A1�A1�y�A1�\`]����J���-ȱ;�D���J��֧k���`]�M��A1A1�y�Ƴ�uį��Ƴ�DA1���A1�y�Ī�����������J��֧Ƴ��T�M��A1�A1�yƳ�D�IN�\`]A1�Hɰ�u�L�yƩ�ȯg�Ho2Hɰ�`��1�-�Hɰ��uSyo̧�1延���A1�UHɰ��uı��#�ɰ��RQQ�?������A1���G��\RQQ�l�A1��. ë�ñ�\){�IN��;��Hɰ��u�L©����?�������PĻ��G����#�ɰ���Q��PĻ��G������uT�������秩�������J���RQT��G����\F]6��];�;��y��#����u�L°IN��;��IN��;��#�����Q��Pį�A1�P��������˽uQ�{��;��y-ȱ;����;��y�����IN��;������\F�� �������ȨR�·C̩��ȩ��O�� ����S� ������P��P���Ȩ�`� �MKɧ����ï��2���vQT����+MKɱ����������F�MF]���������L����R�@���u�L°ⵯ@����uTⵯ���������\��\){_�uı����������L��������T���������L�������`QQ���������L��������\)İ /��M`�&�1 �^zR&yJ�N*�s�E�/���RD����B����RDI�U��R�����^����������RQQQDyJ������ݼD��� �^z����ǹ�˼�M�,���,C���i��GI��G���GR���,C�n�O�D�u�S��G�����G#���G��RĪP�GI�ۧ�`T�P�G���\��Q�ӯ�� ��Į���ç�Ʃ���ҳ�� �ìPOH�>����Q�������G �����PW��P�����IIEZ�2����Q��Y�a� @���Na�ì��%���N��� ��Y�H�$�ðF�Q���ç9�����_�e�� ���$ì�������P��G �����Q��X��P�����I_�����êݧ���O�O�X�B��ů������Q���P����P�����Q��Y������O'>��P��<"ݧ����ݧ����P�����I��)��&���J� �PW�O3X��^��t��˧�1��P�X�ԴvQV�ï�Jҳ��=����[��ɷ��G�HɰRľ™�GD��]G��PI��QQS��[��ɷ��ɷ�D��Hɰ�����L|R����QQQ#�ɰ����*,�|��L|���G���L|R�L�ɷ��M�J�����\�t���\����1������vQQQHɰ�M���^Jt����D�1��T�P��Ȫ�M�G��ɷ��M�ɷ���Ia�M�`�QHɰ�����L|#�ɰ�M�\`]G�*,�|R�L�M���G���JG�����QQQ���J����uT�P��Hɰ����*,�|�M��QQ�#�ɰ�����L|�M�\RT�P�ȶ���"��Hɰ�����L|�M�\`�����A[�Ŵ���,�����ޱ��[���N���|�y�L��R��Ro������ű���,����ß���R�ժ�,P[�ūa���B�Z����޴v�uİ /������A[�Ŵ���,�����ޱ��[���N���|�y�L���������FTú��J���L��������������������������������Χ'�������|�y��V����������ʽ�`){��ȶR�ժ�,P[�ūa������Z����޴v�u�ϧ�����XP���ȫ/�B���l����|�yRİ /������A[�Ŵ���,�����ޱ��[���N���|�y�L�����ȶ����`ϼ�Tӽ�ӯ�� ������QЫ>��֪��������ϼ�Qҳ�� �ìPOH�>����êP��,�� z���X� ���QIK��?��L�����P����Y�a� @���Na�ʼ�Q����z�5 ��P��G �����P���?��L���Qì��%���ȴ�Y�H�L��� ���$ì���ϼ�Q��������ϧ�����������������Ы>��֪���������)�d��,ܪƴ�űM�� ��GR�™�G���u�Sd��,ܪƴ�űM�� �O�D��`�ϼϧ�:'��� �P�2�G����){9����L�RQ�� �����>��� ��y��Pů��B�O���� ��vS��� ��yuT��G���� �移�� ��y`�ϼϧ� �PW��I������ ����){G�G�HL �ȯ8�;��C��ɪi�"RQ���Ƨ�d��,ܪƴ�űM�� ��HL �ȯ8�;��f]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ��HL �ȯ8�;��f]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ��HL �ȯ8�;��C\F){G�G�HL ���C��ɪi�"RQ��é�Ƨ�d��,ܪƴ�űM�� ��HL ���f]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ��HL ���f]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ��HL ���C\F){G�G�MH���ȯ8�MB�I���ɪi�"RQ���Ƨ�d��,ܪƴ�űM�� ��MH���ȯ8�MB�I]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ��MH���ȯ8�MB�I]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ��MH���ȯ8�MB�I�\F){G�G�HL �ȯ8���ɪi�"RQ���Ƨ�d��,ܪƴ�űM�� ��HL �ȯ8P]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ��HL �ȯ8P]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ��HL �ȯ8�\F){G�G�HL �ȯ8�E�/��ɪi�"RQ���Ƨ�d��,ܪƴ�űM�� ��HL �ȯ8�E�/�]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ��HL �ȯ8�E�/�]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ��HL �ȯ8�E�/\F){G�G���ȯ8��E�/��ɪi�"RQ���Ƨ�d��,ܪƴ�űM�� ����ȯ8��E�/�]M����ɪG��vTGXJ���d��,ܪƴ�űM�� ����ȯ8��E�/�]M����ɪG��vQQT�P�9����L��d��,ܪƴ�űM�� ����ȯ8��E�/\F��E��G�I���,�����G�Rľ�E��G�I���,�����GRQQQD��K( �����#����R��QQQ��P��>]oɬR��QQQ�oɬ积��#��"�R��QQQ��N�X���oM罟�o�������oɬ�����F]o����Ȫ����>�UuĪP��ǧǽJ�=��ǧ�\){o����Ȫ���>�UuĿ�>�ɧ������oɬ��uQQQ�P��ɧǽJ�=��ɧ�\F��������J��媨�6�vQT��>ª���Ȫ����>��u�Q����JȪ����>��v���P��ï��26��#���v��QQ����秪���R��QQJ�ï��26��M��ƫ�L���v��QQMG��"秙����������FR��QQJ�ï��2��D���#X�A[��B��v��QQ�J�=�!��AHo2ľ��?�O��\`R��QQJ�ï��2��DW��A[��B��v��QQ����ǧǽ�W�A���G���?�O��\\)��Q����J�ï��2ë>���?�O�v��QQQ�P�H����?�O��`R���QJO#����v���Q�Z��#�������?�O��`R���QJO�M��ƫ�L��춨v���Q�Z����MG��"秙�������������?�O��`R���QJ�P��PI�ɰO��v���Q��E�/���?�O��\\FRQT��>ª���Ȫ���>��u�Q����JȪ���>��v���P��ï��26��#���v��QQ����秪���R��QQJ�ï��26��M��ƫ�L��춨v��QQMG��"秙����������FR��QQJ�ï��2��D���#X�A[��B��v��QQ�J�=�!��AHo2ľ��?�O��\`R��QQJ�ï��2��DW��A[��B��v��QQ����ɧǽ�W�A���G���?�O��\\)��Q����J�ï��2ë>���?�O�v��QQQ�P�H����?�O��`R���QJO#����v���Q�Z��#�������?�O��`R���QJO�M��ƫ�L��춨v���Q�Z����MG��"秙�������������?�O��`R���QJ�P��PI�ɰO��v���Q��E�/���?�O��\)���QQ����JȪ�oɬ�v�����P�H��oɬPĻ��G���?�O��\�����JO����Ň�v����QQ�Z��oɬ��oɬPĻ��G���?�O��\\\`E�|RĨ������J���ݧ�M��Ʃ�vQQT��>ª���Ȫ����>��u�QQ����J�ï��2O�����Ňv��Q�PĶ��k�ľ���G���?�O����\`���J#��0��P���"�v��QQQ������"�ľ���G���?�O��\`���J#��0��P�N�X�v��QQQ����N�X�ľ���G���?�O��\`���J#��0��P��v��QQQ�����ľ���G���?�O��\`���J#��0��PoM�v��QQQ���oM�ľ���G���?�O��\\\�� ����ê����GRľ ����ê���RQQQ��GFT�O⵪O ����=��X�=��X�����Ʃ���i��bN�J���������������Y�`{�:��i��bN�J�����������������ղ`{L���J���������� ��F�����.��Ʃ�Rİ /����0����������������Y��\�����\B��� G���`�����:Rİ /����0���������������������\�����\B��� G���`=��X�M��F]G���1詅R�L�îê���^B�N���Ʃ�:�:D��L���D��<��˽uTî^ïGJ=9�ïGvQQQDH���ê����G���1vQQQDA���RQQQD���Ʋ�\){G��詅R�L�îê���^B�N���Ʃ�:�:D��L���D��<��˽uTî^ïGJ=9�ïGvQQQDH���ê����G��vQQQDA���RQQQD�����\){G�p<9�詅R�L�îê���^B�N���Ʃ�:�:D��L���D��<��˽uTî^ïGJ=9�ïGvQQQDH���ê����G�p<9�vQQQDA���RQQQD��p<9���\){G����=�R�L�îê���^B�N���Ʃ�:�:D��L���D��<��˽uTî^ïGJ=9�ïGvQQQDH���ê����G����=�vQQQDA���RQQQD����ƶ�ȶ��\){G����< �詅�R�L�îê���^B�N���Ʃ�:�:D��L���D��<��˽uTî&ïGJ=9�ïGv��H���ê�������<��v��A���R�����ƌQQQ^ïGJ=9�ïGvQQQVH���ê�������<��v��A���R�����Ʋ˹\��W�9G�O0��q�����=l��R��d�ì���YN��PYN�u�S��êO�n�O��IH�G ����S��G ���¨ ����Q`]����=l�Rª�u��RTLµ��G�Jì��%���M���������QQO�0�a�YN��b����^ "��̨D���Ʃ�� ���+�D�����`QQ�ĿN�> ��+�ND�������Q�ǧ��\��E���:�i�ô�����������������ʱ@�, �����ʱn�����������ʱn�������*�� �����ë�-��R�™�n���������u�S�C̩��ȩ��O�D��`����ϧ�Y���9����� �P��ë�-�������ϧ�����PE�������ϧ���#ï��2��������Q���ի���� �Kŵ��X��IK�������QQ����Y���O3#:�Xů��������ϧ���Y���E��2���NMi3�){����Ʃ��*��U�u�L®���ë�ʽuT������ϧ�ȩZ�K�NK������eP9 ����B������ �2�������ê��ϧA �������4�Om�X�����a�e�ݧA�5����9��K>=�����ψO �O@�ų�����ȯ��I����PB���C��A1�W�M�X���ϧK�NK���ݧ�H�<����I����){�=�Ƶ��ȧ5�F{H��=�Ƶ�����u����I����I�=�Ƶ��Ƚ��蹧�\){�=�Ƶ���kF{H��=�Ƶ������u����I����I�=�Ƶ�������蹧�\)ϼϧ�=ŧ��� Ƨ��� �PW��7��){������� �o������f�u�=�Ƶ��ȧo������f�`�ϧ�:�ïȈO���t��?���9G:���]���� ����� ��1���� �F]������� ��V��o������f�u�=�Ƶ���o������f�`�N�;�Dy���� ��ȨR�DA1U��G�<���� ��1�̫����⳴�- ��MM���M�u��Q������� �̫����⳴�- ��MM����m�u��Q������� ��V��̫����⳴�- ��MM����X��F�E���:�i�ô�����������������ʱ��ū�������ʱ��R�™�������ë��u�S�C̩��ȩ��O�D��`����ϧ������������������������������������������������������������������������������ϧά�������ì���%����C �����)Ļ �R�+oW���>������FQ������F� �R�+oW���>�����FQ��D��������ë�MtCF����c��Ŵ���,��@�R�Ԫ�,�W��W�X��𧷪�,�P_'���v�¨:5���o�:���'����ľ™�B����=��XD��M�����ľ�I��-��?P���M��� ���"����,�P�O���cI����,�Uuĸ�����R�����,�P�oG�/�¹\F]3�����,��uĸ�����R�����,�Po̧�\){]����,�R�������P��-ȧ���,���Ň�����P��O�;���Ro�:����������W���P������I��|݈���Rȴ����W�#ï��2O�����[�2ȴv�y��^Ʃ�UE�������W���I���u�3�����,�A��I�P&y�y�\){�������,��u�M���JG�������,����ı�Dy`T��H��'�����������DE���D�O��D��`�VL�E����DE����Qı�D���W���T'������[�ۧE�����\R�M���J�M��2���,����ı�Dy\){���������,�Uu�M���JG�������,���FT��H���﷪�,��uT�������,���`TM���J���,�P�M�������MF]_�u�L��� L��IH� LO3�@-��uW���׻������������\F� /�J�������M`����7����@-7?�R��<@< �W�KX�Ȫ��Ъ��@-ͧ�W�ŧ���R��ٹ�ì���%�EK�����L�E��������������@-�Ȫƪ��W�������ٽv�™�ܪ���ɷ��ܪ���S��[��ܪ��ɷ���ɷ�DZ����S���7����@-7n��P��͟����� �0���M�t�����F]���b�f�̯�uı�̯ŧɷ��ܪ�ɷ�DZ�DC\F]���b��̯�uı�̯ŧɷ��ܪ�ɷ�DZ�D�\F]6���̯ű��ȫ��( �M�P������TL�f�b�fĸ�ͺ̯ű6�( �M�P������uT��O3��L���0���M�t��ϧȫ���ŪũW0�@������G��̯MR�+�� �&O�����>�̯M�R�Dȯ�ƻ=�6������������O�����>�̯M`+]D���< �̯MR�+�� �&��< �̯M�R�Dȯ�ƻ=�6��������������< �̯M`+]D�̯MR�+�� �&̯M�R�+��D'K��̯_��'K��̯MR�QQQDO�����>�̯_��O�����>�̯MR�QQQD��< �̯_����< �̯M\)���ϧ���C����< )�+]D��������R�+��D��� ����� ������RQQV@��QD�@��RQQV̯_V�̯M`+]D�����R�+�� �&�����D��������`����ϧ� 2��< )�+]D�ūHR�ȯ�ƻ=�6�����������������yF+]D���?�O�R�+Ȫ��NRT+��> ���+�D��������`QQ�ĿN�> ��+�ND����������Q�ǧ��\)�+]D�-i����< ���R�+Ʃ�P�OⱵ¾�ūa����?�O��`+]D�-i����< R�+�� �&-i����< �D�-i����< ���`����ϧ��� )�+]D�O���I������R�+��D���������RQQV-i����< D�-i����< `+]D�O���I���R�+�� �&O���I����D�O���I������`+]D��I4���R�ȯ�ƻ=�6�������������I4���F+]D��I4� ܩ�������R�+Ʃ�P�OⱵ¾�O���I��������I4����`+]D��I4� ܩ����R�+�� �&�I4� ܩ�����D��I4� ܩ�������`+]D���R�+Ȫ��NRT+��> ���R�+�+�O���I����O���I���R��QQD�I4� ܩ������I4� ܩ����\RQ�ĿN�> ���N������+�ND�O���I��������+�ND��I4� ܩ�������QQQ�ǧ��\��������ô̯�̴������R����� /FT��N�;�`]����X�������������F]��������������������F]��!��4��������������������F�M�X�������������������-ȱo- ��u�R��ϧ��#:�X�O�Ȫ��������������������R�`)�ϧΰ�����I���L�){��!��4��űïG�J=9�ïG�F]�ɰNH�O0��GI�N��uİ /��űïG�Q�ϧ9����O�ȯ��)�ϧO�M2"��IO3��M�X�űïG�J��� ��uĩɰNH�O0�����ʱ�DZ������ʱ�DZ�޲����ϧ�W?��� /J��� �B�o��L)�ϧ���4��E��){��!��4��t�A���F]� /����I��ũ�uİ /���ũ���t�A�`� /����IJҾ����ϧ�?��� /JҾ���_����)��M�X�t�A��ʹ��ψ���G��M�XRİ /����IJ𾲽�R��M�X�t�A��ʹ��ψ���M�XRT� /����IJӾ����Rİ /����IJ龲`��ϧ� ������ϧҾ��ʼ�ϧ��ʼ�ϧӾ��ʼ�ϧ龧��)İ /����IJؾ�F��ϧ� ������ϧؾ��ʼ�R�&�ï�J� ��,��vV���J��ʧo- ��0���?�< ��9���o��0��Rľ��0��E����ë�����7��ʧ�:ůЯ�L���ί��"\){0��R��O��o- ��0���v�&Ʃ�U;�y# �BE�# yR�����ȯ8R����"��H���������"�k�#�U��������K�o�7��������2g�� � V� w"�$0)�, 0#25�5q6�;=�@UCG~L�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�O�OHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQHQ�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�T�TYYYYYYYYYYY [ [ [z_8dggggggggCjCjCjCjCjCjCjCjCjCjCj�l�l�l�l�l�l�l�l�l-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q-q�s�s�s�s�s�s�s�s�s�s�s�swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww�{�{�{�{�{�{m~m~m~m~m~��������������������������(defproject onyx-app/lein-template "0.10.0.0-beta10" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (ns ^:figwheel-load word-finder.actions.call-server (:require [ajax.core :refer [GET]])) (def server "http://localhost:8080/api/words/") ;;FIXME: the string interpolation can be easily broken. (defn find-words [input-string callback] (GET (str server "find" "?find=" input-string) {:handler callback :error-handler #(println "ERROR" %)})) (defn find-anagrams [input-string callback] (GET (str server "anagrams" "?find=" input-string) {:handler callback :error-handler #(println "ERROR!" %)})) (defn find-sub-anagrams [input-string callback] (GET (str server "sub-anagrams" "?find=" input-string) {:handler callback})) (defproject cryogen "0.1.0" :description "Simple static site generator" :url "https://github.com/lacarmen/cryogen" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [ring/ring-devel "1.3.2"] [compojure "1.3.1"] [ring-server "0.3.1"] [cryogen-core "0.1.8"]] :plugins [[lein-ring "0.8.13"]] :main cryogen.core :ring {:init cryogen.server/init :handler cryogen.server/handler}) (ns user (:require [clojars [config :as config] [errors :as errors] [system :as system]] [clojars.db.migrate :as migrate] [clojure.java.io :as io] [clojure.tools.namespace.repl :refer [refresh]] [eftest.runner :as eftest] [meta-merge.core :refer [meta-merge]] [reloaded.repl :refer [system init stop go clear]])) (def dev-env {:app {:middleware []}}) (defn new-system [] (refresh) (config/configure []) (assoc (system/new-system (meta-merge config/config dev-env)) :error-reporter (errors/->StdOutReporter))) (ns-unmap *ns* 'test) (defn reset [] (if system (do (clear) (go)) (refresh))) (defn test [& tests] (let [tests (if (empty? tests) (eftest/find-tests "test") tests)] (eftest/run-tests tests {:report eftest.report.pretty/report :multithread? false}))) (when (io/resource "local.clj") (load "local")) (defn migrate [] (migrate/migrate (:db config/config))) ;; TODO: function to setup fake data (from clojars.dev.setup?) (reloaded.repl/set-init! new-system) (ns clojuredocs.main (:require [ring.adapter.jetty :as jetty] [aleph.http :as ah] [clojuredocs.env :as env] [clojuredocs.entry :as entry] [somnium.congomongo :as mon])) (mon/set-connection! (mon/make-connection (env/str :mongo-url))) (mon/add-index! :examples [:ns :name :library-url]) (mon/add-index! :vars [:ns :name :library-url]) (defn start-http-server [entry-point opts] (ah/start-http-server (ah/wrap-ring-handler (fn [r] (let [resp (entry-point r)] (if (:status resp) resp (assoc resp :status 200))))) opts)) (defn -main [] (let [port (env/int :port 8080)] (start-http-server (var entry/routes) {:port port :join? false}) (println (format "Server running on port %d" port)))) ; Copyright © 2015, JUXT LTD. (ns yada.walk (:require [clojure.walk :refer [postwalk]]) (:import [yada.handler Handler] [yada.resource Resource])) ;; Functions to update inner routes (defn update-routes [routes f & args] (postwalk (fn [x] (if (or (instance? Handler x) (instance? Resource x)) (apply f x args) x)) routes)) (defn merge-options [m routes] (update-routes routes (fn [{:keys [handler args]}] (merge handler m)))) (defn basic-auth [realm auth-fn routes] (merge-options {:security {:type :basic :realm realm} :authorization auth-fn} routes)) (ns riemann.campfire "Forwards events to Campfire" (:use [clojure.string :only [join]]) (:require [clj-campfire.core :as cf])) (defn cf-settings "Setup settings for campfire. Required information is your api-token, ssl connection true or false, and your campfire sub-domain." [token ssl sub-domain] {:api-token token, :ssl ssl, :sub-domain sub-domain}) (defn room "Sets up the room to send events too. Pass in the settings created with cf-settings and the room name" [settings room-name] (cf/room-by-name settings room-name)) (defn campfire "Creates an adaptor to forward events to campfire. TODO: write more here once the event formatting is better. TODO: tests Tested with: (streams (by [:host, :service] (let [camp (campfire \"token\", true, \"sub-domain\", \"room\")] camp)))" [token ssl sub-domain room-name] (fn [e] (let [string (str (join " " ["HOST:" (str (:host e)) "SERVICE:" (str (:service e)) "STATE:" (str (:state e)) "DESC:" (str (:description e))]))] (cf/message (room (cf-settings token ssl sub-domain) room-name) string)))) (ns ^:figwheel-always randometer.core (:require [reagent.core :as reagent :refer [atom]])) (enable-console-print!) (println "Edits to this text should show up in your developer console.") ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:text "Hello world!"})) (defn hello-world [] [:h1 (:text @app-state)]) (reagent/render-component [hello-world] (. js/document (getElementById "app"))) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) ) (ns riemann.slack-test (:use riemann.slack clojure.test) (:require [riemann.logging :as logging])) (def api-key (System/getenv "SLACK_API_KEY")) (def room (System/getenv "SLACK_ALERT_ROOM")) (def account (System/getenv "SLACK_ALERT_ACCOUNT")) (def user "Riemann_Slack_Test") (when-not api-key (println "export SLACK_API_KEY=\"...\" to run these tests.")) (when-not room (println "export SLACK_ALERT_ROOM=\"...\" to run these tests.")) (when-not account (println "export SLACK_ALERT_ACCOUNT=\"...\" to run these tests.")) (logging/init) (deftest ^:slack test_event (let [slack_connect (slack account api-key user room)] (slack_connect {:host "localhost" :service "good event test" :description "Testing slack.com alerts from riemann" :metric 42 :state "ok"}))) (defproject finagle-clojure "0.1.0" :description "A light wrapper around Finagle for Clojure" :url "https://github.com/twitter/finagle-clojure" :license {:name "Apache License, Version 2.0" :url "https://www.apache.org/licenses/LICENSE-2.0"} :dependencies [[finagle-clojure/core "0.1.0"] [finagle-clojure/thrift "0.1.0"]] :plugins [[lein-sub "0.3.0"] [codox "0.8.10"] [lein-midje "3.1.3"]] :sub ["core" "thrift"] :codox {:sources ["core/src" "thrift/src"] :defaults {:doc/format :markdown} :output-dir "doc/codox" :src-dir-uri "http://github.com/samn/finagle-clojure/blob/v0.1.0" :src-linenum-anchor-prefix "L"}) (ns refactor-nrepl.find-unbound (:require [clojure.set :as set] [clojure.tools.analyzer.ast :refer [nodes]] [refactor-nrepl [analyzer :refer [ns-ast]] [util :refer :all]])) (defn find-unbound-vars [{:keys [file line column]}] {:pre [(number? line) (number? column) (not-empty file)]} (throw-unless-clj-file file) (let [content (slurp file) ast (ns-ast content) sexp (get-enclosing-sexp content (dec line) column) selected-sexp-node (->> ast (top-level-form-index line column) (nth ast) nodes (filter (partial node-at-loc? line column)) (filter (partial node-for-sexp? sexp)) last)] (into '() (set/intersection (->> selected-sexp-node :env :locals keys set) (->> selected-sexp-node nodes (filter #(= :local (:op %))) (map :form) set))))) (ns figwheel-sidecar.components.css-watcher (:require [figwheel-sidecar.components.file-system-watcher :as fsw] [figwheel-sidecar.utils :as utils] [figwheel-sidecar.components.figwheel-server :as fig])) (defn make-css-file [path] { :file (utils/remove-root-path path) :type :css } ) (defn send-css-files [figwheel-server files] (fig/send-message figwheel-server ::fig/broadcast { :msg-name :css-files-changed :files files})) (defn handle-css-notification [watcher files] (when-let [changed-css-files (not-empty (filter #(.endsWith % ".css") (map str files)))] (let [figwheel-server (:figwheel-server watcher) sendable-files (map #(make-css-file %) changed-css-files)] (send-css-files figwheel-server sendable-files) (doseq [f sendable-files] (println "sending changed CSS file:" (:file f)))))) (defn css-watcher [{:keys [watch-paths] :as options}] (fsw/map->FileSystemWatcher (merge {:watcher-name "CSS Watcher" :notification-handler #'handle-css-notification} options))) {:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"] [criterium "0.4.3"]] :source-paths ["dev"] :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/cats/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0-SNAPSHOT"] [lein-ancient "0.6.7" :exclusions [org.clojure/tools.reader]]]} :bench [:dev {:main ^:skip-aot benchmarks :jvm-opts ^:replace []}]} (ns clojars.main (:require [clojars.scp] [ring.adapter.jetty :refer [run-jetty]] [clojars.web :refer [clojars-app]] [clojars.promote :as promote] [clojars.config :refer [config configure]] [clojure.tools.nrepl.server :as nrepl]) (:import com.martiansoftware.nailgun.NGServer java.net.InetAddress) (:gen-class)) (defn start-jetty [] (when-let [port (:port config)] (println "clojars-web: starting jetty on" (str "http://" (:bind config) ":" port)) (run-jetty #'clojars-app {:host (:bind config) :port port :join? false}))) (defn start-nailgun [] (when-let [port (:nailgun-port config)] (println "clojars-web: starting nailgun on" (str (:nailgun-bind config) ":" port)) (.run (NGServer. (InetAddress/getByName (:nailgun-bin config)) port)))) (defn -main [& args] (configure args) (start-jetty) (nrepl/start-server :port (:nrepl-port config) :bind "127.0.0.1") (start-nailgun)) ; (defonce server (run-jetty #'clojars-app {:port 8080 :join? false}))(ns clojars.maven (:require [clojure.java.io :as io]) (:import org.apache.maven.model.io.xpp3.MavenXpp3Reader)) (defn model-to-map [model] {:name (.getArtifactId model) :group (.getGroupId model) :version (.getVersion model) :description (.getDescription model) :homepage (.getUrl model) :authors (vec (map #(.getName %) (.getContributors model))) ;; TODO: doesn't appear to be used anywhere? :dependencies (vec (mapcat (fn [d] [(symbol (.getGroupId d) (.getArtifactId d)) (.getVersion d)]) (.getDependencies model)))}) (defn read-pom "Reads a pom file returning a maven Model object." [file] (with-open [reader (io/reader file)] (.read (MavenXpp3Reader.) reader))) (def pom-to-map (comp model-to-map read-pom))(ns yada.dev.examples (:require [yada.yada :as yada] [manifold.stream :as ms])) (defn routes [] ["/examples" [ ["/sse-body" (yada/resource {:methods {:get {:produces "text/event-stream" :response (fn [ctx] (ms/periodically 400 (fn [] "foo")))}}})] ["/sse-resource" (yada/handler (ms/periodically 400 (fn [] "foo")))]]]) (defproject planck "0.1.0" :profiles {:dev {:dependencies [[org.clojure/clojurescript "1.9.660"] [org.clojure/test.check "0.10.0-alpha1"] [tubular "1.0.0"]] :source-paths ["dev"]} :build-release {} :build-commit {}} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/clojurescript "1.9.660"] [org.clojure/test.check "0.10.0-alpha1"] [org.clojure/tools.reader "1.0.0"] [com.cognitect/transit-clj "0.8.300"] [com.cognitect/transit-cljs "0.8.239"] [fipp "0.6.8"] [malabarba/lazy-map "1.3"] [cljsjs/parinfer "1.8.1-0"]] :clean-targets ["out" "target"]) (ns refactor-nrepl.plugin (:require [refactor-nrepl.core :as core] [leiningen.core.main :as lein])) (def ^:private external-dependencies ;; For whatever reason it didn't work to look for cider-nrepl here. {'org.clojure/clojure "1.7.0"}) (defn- version-ok? [dependencies artifact version-string] (or (->> dependencies (some (fn [[id v]] (and (= id artifact) (lein/version-satisfies? v version-string))))) (lein/warn (str "Warning: refactor-nrepl requires " artifact " " version-string " or greater.")))) (defn- external-dependencies-ok? [dependencies] (reduce (fn [acc [artifact version-string]] (and (version-ok? dependencies artifact version-string) acc)) true external-dependencies)) (defn middleware [{:keys [dependencies] :as project}] (if (external-dependencies-ok? dependencies) (-> project (update-in [:dependencies] (fnil into []) [['refactor-nrepl (core/version)]]) (update-in [:repl-options :nrepl-middleware] (fnil into []) '[refactor-nrepl.middleware/wrap-refactor])) (do (lein/warn (str "Warning: refactor-nrepl middleware won't be " "activated due to missing dependencies.")) project))) ;(defproject cli4clj "1.3.2" (defproject cli4clj "1.3.3-SNAPSHOT" :description "Create simple interactive CLIs for Clojure applications." :url "https://github.com/ruedigergad/cli4clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [clj-assorted-utils "1.18.2"] [org.clojure/core.async "0.3.443"] [jline/jline "2.14.2"]] :global-vars {*warn-on-reflection* true} :html5-docs-docs-dir "ghpages/doc" :html5-docs-ns-includes #"^cli4clj.*" :html5-docs-repository-url "https://github.com/ruedigergad/cli4clj/blob/master" :test2junit-output-dir "ghpages/test-results" :test2junit-run-ant true :main cli4clj.example :plugins [[lein-cloverage "1.0.2"] [test2junit "1.3.3"] [lein-html5-docs "3.0.3"]] :profiles {:repl {:dependencies [[jonase/eastwood "0.2.4" :exclusions [org.clojure/clojure]]]}} ) (defproject sqls "0.1.0-SNAPSHOT" :description "SQLS" :url "https://bitbucket.org/mpietrzak/sqls" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.6.0-beta2"] [org.clojure/data.json "0.2.4"] [org.clojure/java.jdbc "0.3.3"] [org.clojure/tools.logging "0.2.6"] [org.xerial/sqlite-jdbc "3.7.2"] [seesaw "1.4.4"] ] ; :main ^:skip-aot sqls.core :main sqls.core :java-source-paths ["src"] :target-path "target/%s" :plugins [[codox "0.6.6"]] :profiles {:uberjar {:aot :all}}) (defproject onyx-app/lein-template "0.8.11.8" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (require 'cljs.repl) (require 'cljs.repl.node) (cljs.repl/repl (cljs.repl.node/repl-env) :output-dir "out" :foreign-libs [{:file "libs/greeting.js" :provides ["greeting"] :module-type :commonjs} {:file "libs/german.js" :provides ["german"] :module-type :commonjs}]) (ns asciinema-player.util) (defn adjust-to-range [value min-value max-value] (.min js/Math max-value (.max js/Math value min-value))) ; Optimized js->clj implementation by Darrick Wiebe (http://dev.clojure.org/jira/browse/CLJS-844) (defn faster-js->clj "Recursively transforms JavaScript arrays into ClojureScript vectors, and JavaScript objects into ClojureScript maps. With option ':keywordize-keys true' will convert object fields from strings to keywords." ([x] (faster-js->clj x {:keywordize-keys false})) ([x & opts] (cond (satisfies? IEncodeClojure x) (-js->clj x (apply array-map opts)) (seq opts) (let [{:keys [keywordize-keys]} opts keyfn (if keywordize-keys keyword str) f (fn thisfn [x] (cond (seq? x) (doall (map thisfn x)) (coll? x) (into (empty x) (map thisfn) x) (array? x) (persistent! (reduce #(conj! %1 (thisfn %2)) (transient []) x)) (identical? (type x) js/Object) (persistent! (reduce (fn [r k] (assoc! r (keyfn k) (thisfn (aget x k)))) (transient {}) (js-keys x))) :else x))] (f x))))) (ns circle.web.test-web (:require circle.init) (:require [clj-http.client :as http]) (:use midje.sweet)) (circle.init/init) (def site "http://localhost:8080") (fact "/ returns 200" (http/get site) => (contains {:status 200}))(require 'cljs.repl) (require 'cljs.repl.rhino) (cljs.repl/repl (cljs.repl.rhino/repl-env) :watch "src" :output-dir "target") (ns clj-gatling.core (:import (org.joda.time LocalDateTime)) (:require [clj-gatling.chart :as chart] [clj-gatling.report :as report] [clj-gatling.simulation :as simulation])) (def results-dir "target/results") (defn create-dir [dir] (.mkdirs (java.io.File. dir))) (defn run-simulation [scenario users] (let [start-time (LocalDateTime.) result (simulation/run-simulation scenario users) csv (csv/write-csv (report/create-result-lines start-time result) :delimiter "\t" :end-of-line "\n")] (create-dir (str results-dir "/input")) (spit (str results-dir "/input/simulation.log") csv) (chart/create-chart results-dir) (println (str "Open " results-dir "/output/index.html")))) (ns domain.core (:require [compojure.core :refer :all] [compojure.route :as route] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [ring.middleware.json :refer [wrap-json-body wrap-json-response]] [ring.util.response :refer [response]]) (:gen-class)) (defroutes app-routes (GET "/status" [] "OMG HI!") (route/not-found "Not Found")) (def app (-> app-routes (wrap-defaults api-defaults) (wrap-json-body {:keywords? true}) (wrap-json-response))) (ns comic-reader.main (:require [figwheel.client :as fw])) (enable-console-print!) (fw/start { ;; configure a websocket url if you are using your own server ;; :websocket-url "ws://localhost:3449/figwheel-ws" ;; optional callback :on-jsload (fn [] (print "reloaded")) ;; The heads up display is enabled by default ;; to disable it: ;; :heads-up-display false ;; when the compiler emits warnings figwheel ;; blocks the loading of files. ;; To disable this behavior: ;; :load-warninged-code true ;; if figwheel is watching more than one build ;; it can be helpful to specify a build id for ;; the client to focus on ;; :build-id "example" }) (ns kixi.eventlog.web-server (:require [compojure.core :refer [defroutes POST GET]] [compojure.route :refer [not-found]] [ring.middleware.defaults :refer [wrap-defaults api-defaults]] [kixi.eventlog.api :refer [index-resource]] [org.httpkit.server :as http-kit] [com.stuartsierra.component :as component])) (defroutes all-routes (POST "/events" [] index-resource) (not-found {:headers {"Content-Type" "application/json"} :body "{\"error\": \"No Such Endpoint\"}"})) (defrecord WebServer [] component/Lifecycle (start [this] (println "Starting Webserver") (let [server (http-kit/run-server (wrap-defaults #'all-routes api-defaults) {:verbose? true :port 80 :max-body (* 16 1024 1024)})] (assoc this ::server server))) (stop [this] (println "Stopping Webserver") ((::server this)))) (defn new-server [] (->WebServer)) (ns onyx.log.commands.assign-bookkeeper-log-id (:require [clojure.core.async :refer [>!!]] [clojure.data :refer [diff]] [onyx.log.commands.common :as common] [onyx.log.entry :refer [create-log-entry]] [schema.core :as s] [onyx.schema :refer [Replica LogEntry Reactions ReplicaDiff State]] [onyx.extensions :as extensions])) (s/defmethod extensions/apply-log-entry :signal-ready :- Replica [{:keys [args]} :- LogEntry replica] (update-in replica [:state-logs (:job-id args) (:task-id args) (:slot-id args)] (fn [logs] (conj (vec logs) (:ledger-id args))))) (s/defmethod extensions/replica-diff :signal-ready :- ReplicaDiff [{:keys [args]} :- LogEntry old new] (second (diff (:state-logs old) (:state-logs new)))) (s/defmethod extensions/reactions :signal-ready :- Reactions [{:keys [args]} :- LogEntry old new diff peer-args] []) (s/defmethod extensions/fire-side-effects! :signal-ready :- State [{:keys [args message-id]} :- LogEntry old new diff state] state) (ns com.wsscode.pathom.book.async.js-promises (:require [com.wsscode.common.async-cljs :refer [go-catch (js/fetch "https://dog.ceo/api/breeds/image/random") boad-id [domain] (if-let [match (utils/find-first #(re-matches (first %) domain) domain-mappings)] (second match))) (defn whitelabel-board [] (domain->boad-id env/domain))(ns dashboard-clj.widgets.github-repo-stats (:require [reagent.core :as r :refer [atom]] [dashboard-clj.widgets.core :as widget-common] [dashboard-clj.widgets.line-chart :as charts])) (defmethod widget-common/widget :github-repo-stats [{:keys [text data options] :as w}] [:div {:class "github-repo-stats"} [:div.header {:style {:background (:color options)}} [:img {:class "github-logo" :src "/images/github_mark.png"}] [:h2 {:class "title" }(str "Hello: " (:repo-name w))]] [:div#total-commits [:p {:class "subheading"} "Total commits"] [:h4 {:class "total-commits" :style {:background (:color options)}} (get-in @data [:data :total-commits])]] [:table {:class "contributors"} [:tbody [:tr [:th {:class "subheading" }"contributors"]] (doall (for [contributor (get-in @data [:data :contributors])] [:tr {:key contributor} [:td (str contributor)]]))]] [:div {:class "commit-chart" :style { :width "95%" :height "40%"}} [charts/line-chart {:chart-options {:title {:text text} :xAxis {:categories (mapv first (get-in @data [:data :weekly-commit-breakdown]))} :series [{:name "commits" :data (mapv second (get-in @data [:data :weekly-commit-breakdown]))}]}}]]]) (ns wishlistd.models.init (:require [clojure.java.jdbc :as sql])) (def db {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname "//localhost:5432/cwl" :user "cwl" :password "wish"}) (defn create-wishlist [] (sql/with-connection db (sql/create-table :wishlist [:code :varchar "PRIMARY KEY"] [:title :varchar "NOT NULL"] [:created_at :timestamp "NOT NULL" "DEFAULT CURRENT_TIMESTAMP"]))) (defn create-wish [] (sql/with-connection db (sql/create-table :wish [:id :serial "PRIMARY KEY"] [:description :varchar "NOT NULL"] [:created_at :timestamp "NOT NULL" "DEFAULT CURRENT_TIMESTAMP"] [:url :varchar] [:wishlist_code :varchar] ["constraint fk_wish_wishlist foreign key(wishlist_code) references wishlist(code) on delete cascade"]))) (defn drop-tables [] (sql/with-connection db (sql/drop-table :wish) (sql/drop-table :wishlist))) (defn -main [] (print "Migrating database...") (flush) (drop-tables) (create-wishlist) (create-wish) (println " done"))(ns akvo.lumen.lib.multiple-column (:require [clojure.tools.logging :as log] [ring.util.response :refer [response not-found]])) (defn- extract [caddisfly id] (when id (if-let [schema (get (:schema caddisfly) id)] (let [res (select-keys schema [:hasImage])] (assoc res :columns (map (fn [r] {:id (:id r) :name (:name r) :type "text" ;; TODO will be improved after design discussions }) (:results schema))))))) (defn details "depending of type of multiple columns we dispatch to different logic impls" [{:keys [caddisfly] :as deps} multiple-type multiple-id] (log/debug ::all :multiple-type multiple-type :multiple-id multiple-id) (condp = multiple-type "caddisfly" (if-let [res (extract caddisfly multiple-id)] (response res) (not-found {:message "caddisfly id not found" :multiple-id multiple-id})) (not-found {:type multiple-type}))) (ns catacumba.utils (:import ratpack.func.Action ratpack.func.Function)) (def ^{:doc "Transducer for lowercase headers keys."} lowercase-keys-t (map (fn [[^String key value]] [(.toLowerCase key) value]))) (defn action "Coerce a plain clojure function into ratpacks's Action interface." [callable] (reify Action (^void execute [_ x] (callable x)))) (defn function "Coerce a plain clojure function into ratpacks's Function interface." [callable] (reify Function (apply [_ x] (callable x)))) (defproject lacinia-tut "0.1.0" :description "A simple Lacinia tutorial" :license {:name "MIT License"} :dependencies [[org.clojure/clojure "1.8.0"] [honeysql "0.9.1"] [org.clojure/java.jdbc "0.3.5"] [org.xerial/sqlite-jdbc "3.7.2"] [com.walmartlabs/lacinia-pedestal "0.3.0"] [com.walmartlabs/lacinia "0.21.0"] [environ "1.1.0"] [cheshire "5.8.0"]] :main ^:skip-aot lacinia-tut.run :plugins [[lein-environ "1.1.0"]] :target-path "target/%s" :profiles {:uberjar {:aot :all} :dev {:env {:database "dev.db"}} :test {:env {:database "test.db"}}}) (ns clojournal.models.tag (:require [monger.collection :as mc] [monger.query :as mq] [monger.operators :as mo] [clojournal.db :refer [db]])) (defn upsert-tags! [tags] (doseq [tag tags] (mc/update db "tags" {:_id tag} {mo/$inc {:refs 1}} {:upsert true}))) (defn all-tags ([] (all-tags 20)) ([num] (mq/with-collection db "tags" (mq/find {}) (mq/sort {:refs -1}) (mq/limit num)))) (defn tag-cloud ([] (tag-cloud 100)) ([num] (let [tags (mq/with-collection db "tags" (mq/find {}) (mq/sort {:_id 1}) (mq/limit num)) refs (map :refs tags)] (when (seq refs) (let [min (double (apply min refs)) max (double (apply max refs)) f (fn [n] (/ (- n min) (- max min)))] (map #(assoc % :group (f (:refs %))) tags)))))) rcupdate.rcu_self_test=1 rcupdate.rcu_self_test_bh=1 (ns edge.kick.builder (:require [integrant.core :as ig] [juxt.kick.alpha.core :as kick])) (defn load-provider-namespaces [kick-config] (doseq [provider (keys kick-config) :when (= (namespace provider) "kick")] (when (= (namespace provider) "kick") (let [sym (symbol (str "juxt.kick.alpha.providers." (name provider)))] (try (do (require sym) sym) (catch java.io.FileNotFoundException _)))))) (defmethod ig/init-key :edge.kick/builder [_ v] (load-provider-namespaces v) (kick/watch v)) (defmethod ig/halt-key! :edge.kick/builder [_ close] (close)) (defmethod ig/suspend-key! :edge.kick/builder [_ _]) (defmethod ig/resume-key :edge.kick/builder [key opts old-opts old-impl] (prn opts old-opts) (if (= opts old-opts) old-impl (do (ig/halt-key! key old-impl) (ig/init-key key opts)))) (ns repmgr-to-zk.repmgr (:require [clojure.java.jdbc :as j] [clojure.string :as s] [repmgr-to-zk.config :as config]) (:import [java.sql SQLException])) (def default-db-config {:dbtype "postgresql" :dbname "repmgr" :host "localhost" :user "repmgr" :password "repmgr" :port "5432"}) (def db (merge default-db-config (config/lookup :repmgr))) (defn read-cluster-status [] (let [suffix (config/lookup :repmgr :suffix) query (format "SELECT conninfo, type, name, upstream_node_name, id FROM repmgr_%s.repl_show_nodes;" suffix)] (j/query db query))) (defn master [] (let [cluster-status (read-cluster-status)] (:name (first (filter #(= "master" (:type %)) cluster-status))))) (ns real-dashboard.core (:use [compojure.core :only (defroutes GET)] ring.util.response ring.middleware.cors org.httpkit.server) (:require [compojure.route :as route] [compojure.handler :as handler] [ring.middleware.reload :as reload] [cheshire.core :refer :all])) (def clients (atom {})) (defn ws [req] (with-channel req con (swap! clients assoc con true) (println con " connected") (on-close con (fn [status] (swap! clients dissoc con) (println con " disconnected. status: " status))))) (future (loop [] (doseq [client @clients] (println "sending message to client...") (send! (key client) (generate-string {:happiness (rand 10)}) false)) (Thread/sleep 5000) (recur))) (defroutes routes (GET "/happiness" [] ws)) (def application (-> (handler/site routes) reload/wrap-reload (wrap-cors :access-control-allow-origin #".+"))) (defn -main [& args] (let [port (Integer/parseInt (or (System/getenv "PORT") "8080"))] (run-server application {:port port :join? false}))) (ns icecap.handlers.http (:require [schema.core :as s] [aleph.http :refer [request]] [clojure.core.async :refer [to-chan]] [icecap.handlers.core :refer [defstep]] [manifold.stream :refer [connect]] [schema-contrib.core :as sc] [taoensso.timbre :refer [info spy]]) (:import [java.net URI])) (defn scheme "Get the scheme of a (string) URL." [^String s] (.getScheme (URI. s))) (defn valid-scheme? "Checks if the given URL has a valid scheme." [^String url] (#{"http" "https"} (scheme url))) (defstep :http {:url (s/conditional valid-scheme? sc/URI) :method (s/enum :GET :POST :DELETE :PUT :PATCH :HEAD)} [step] (let [req (spy (request step))] (to-chan [(spy @req)]))) (ns schedule.web.db (:use [korma.db] [korma.core])) ;(defdb db (sqlite3 {:db "resources/db/korma.db"})) (defentity conventions) (ns yorck-ratings.core-test (:use org.httpkit.fake midje.sweet) (:require [yorck-ratings.core :refer :all] [yorck-ratings.fixtures :as fixtures])) (fact "return rated movie infos sorted by rating" (with-fake-http [fixtures/yorck-list-url fixtures/yorck-list-page fixtures/hateful-8-search-url fixtures/hateful-8-search-page fixtures/hateful-8-detail-url fixtures/hateful-8-detail-page fixtures/carol-search-url fixtures/carol-search-page fixtures/carol-detail-url fixtures/carol-detail-page] (let [expected [fixtures/hateful-8-rated-movie fixtures/carol-rated-movie] actual (atom [])] (rated-movies (fn [movies] (swap! actual concat movies))) (Thread/sleep 200) @actual => expected))) (ns rdf-path-examples.diversification-test (:require [rdf-path-examples.diversification :as divers] [clojure.set :refer [union]] [clojure.test :refer :all])) (deftest greedy-construction (let [distances {#{1 2} 0.5 #{1 3} 1 #{2 3} 0.5} distance-fn (fn [a b] (get distances (hash-set a b))) paths (apply union (keys distances))] (with-redefs [rand-nth (constantly 1)] ; Start with path 1 (is (= (divers/greedy-construction paths distance-fn 2) #{1 3}))))) (ns com.stuartsierra.lazytest (:use [com.stuartsierra.lazytest.contexts :only (context?)] [com.stuartsierra.lazytest.arguments :only (or-nil)])) ;;; Examples and ExampleGroups (defrecord ExampleGroup [contexts examples]) (defn new-example-group "Creates an ExampleGroup." ([contexts examples] (new-example-group contexts examples nil)) ([contexts examples metadata] {:pre [(or-nil vector? contexts) (or-nil vector? examples) (every? context? contexts) (every? fn? examples) (or-nil map? metadata)] :post [(isa? (type %) ExampleGroup)]} (ExampleGroup. contexts examples nil metadata))) ;;; Public API (defmacro thrown? "Returns true if body throws an instance of class c." [c & body] `(try ~@body false (catch ~c e# true))) (defmacro thrown-with-msg? "Returns true if body throws an instance of class c whose message matches re (with re-find)." [c re & body] `(try ~@body false (catch ~c e# (re-find ~re (.getMessage e#))))) (defmacro ok? "Returns true if body does not throw anything." [& body] `(do ~@body true)) (ns rill.event-store.atom-store.event-test (:require [rill.event-store.atom-store.event :as event] [rill.message :as message :refer [defevent]] [rill.uuid :refer [new-id]] [schema.core :as s] [clojure.test :refer [deftest is]])) (defevent MySerializableEvent :foo s/Uuid) (def my-event (my-serializable-event (new-id))) (deftest serializable-events? (is (string? (:edn (:data (event->entry my-event))))) (is (= (entry->event (event->entry my-event)) my-event))) (ns yetibot.core.db (:require [yetibot.core.config :refer [get-config config-for-ns conf-valid?]] [yetibot.core.loader :refer [find-namespaces]] [datomico.db :as db] [datomico.core :as dc] [datomic.api :as api] [taoensso.timbre :refer [info warn error]])) (def db-ns-pattern #"(yetibot|plugins).*\.db\..+") (defn schemas [] (let [nss (find-namespaces db-ns-pattern)] (apply require nss) (for [n nss :when (ns-resolve n 'schema)] (deref (ns-resolve n 'schema))))) (defn start [& [opts]] (if (conf-valid? (get-config :yetibot :db)) (do (info "☐ Loading Datomic schemas") (dc/start (merge opts {:uri (:datomic-url (get-config :yetibot :db)) :schemas (filter identity (schemas))})) (info "☑ Datomic connected")) (warn ":datomic-url is not configured, unable to connect."))) (def repl-start (partial start {:dynamic-vars true})) (ns clojurewerkz.statistiker.descriptive (:require [clojurewerkz.statistiker.fast-math :refer :all])) (defn get-rank [amount percentile] (assert (<= percentile 100)) (-> (* (/ percentile 100) (dec amount)) Math/ceil int)) (def percentiles {:min 0 :max 100 :median 50 :25 25 :75 75}) (defn fivenum [values] (let [sorted (sort values) amount (count values)] {:min (nth sorted (get-rank amount 0)) :25 (nth sorted (get-rank amount 25)) :median (nth sorted (get-rank amount 50)) :75 (nth sorted (get-rank amount 75)) :max (nth sorted (get-rank amount 100) )})) (ns rpi-challenger.core (:require [net.cgrand.enlive-html :as html] [ring.util.response :as response]) (:use [net.cgrand.moustache :only [app]] [ring.adapter.jetty :only [run-jetty]] [ring.middleware.file :only [wrap-file]] [ring.middleware.reload :only [wrap-reload]] [ring.middleware.stacktrace :only [wrap-stacktrace]])) (def layout (html/html-resource "resources/layout.html")) (def routes (app [""] (fn [req] (response/response "the index page")) [&] (fn [req] (response/not-found "Page Not Found")))) (ns tensorflow-clj.core-test (:require [clojure.test :refer :all] [tensorflow-clj.core :refer :all])) (deftest scalar-tensor (testing "Scalar tensor" (let [t (org.tensorflow.Tensor/create 123.0)] (is (= org.tensorflow.DataType/DOUBLE (.dataType t))) (is (= 0 (.numDimensions t))) (is (= [] (vec (.shape t))))))) (deftest vector-tensor (testing "Vector tensor" (let [t (org.tensorflow.Tensor/create (into-array [1.0 2.0 3.0]))] (is (= org.tensorflow.DataType/DOUBLE (.dataType t))) (is (= 1 (.numDimensions t))) (is (= [3] (vec (.shape t))))))) (deftest graph-variable (testing "Graph variable" (with-graph (variable :x)))) (deftest graph-constant (testing "Graph constant" (with-graph (constant :k 123.0)))) ;; (deftest session ;; (testing "Session" ;; (with-graph ;; (constant :k 123.0) ;; (run-feed-and-fetch :k)))) (deftest protobuf-session (testing "Session from Protocol Buffers file" (with-graph-file "misc/constant.pb" (run-and-fetch :Const)))) (ns scrape-trs.core (:require [scrape-trs.cascade-climbers.core :as cc] [scrape-trs.summitpost.core :as sp])) (defn get-implementation [url] (let [base-url (re-find #"https?://.*?/" url)] (condp = base-url cc/base-url (cc/->CCScrapeTripReport) sp/base-url (sp/->SPScrapeTripReport)))) (defn get-trip-reports "implementation: type that implements scrape-trs.protocol/ScrapeTripReport list-page: page (as a string) that lists trip reports and corresponds to the given implementation Scrape all trip reports from the list-page, paging through pagination if necessary, and return a sequence of scrape-trs.protocol/TripReport instances." [implementation list-page] (let [pager-urls (.extract-pager-urls implementation list-page) list-pages (if pager-urls (map slurp pager-urls) [list-page]) trip-report-urls (mapcat #(.extract-trip-report-urls implementation %) list-pages) trip-reports (map #(.extract-trip-report implementation %1 %2) trip-report-urls (map slurp trip-report-urls))] trip-reports)) (defn save-trip-reports! "" [f trip-reports]) (ns hu.ssh.github-changelog.dependencies.bundler (:require [clojure.string :refer [split-lines]] [clojure.java.io :as io])) (defn- get-specs [reader] (->> (doall (line-seq reader)) (drop-while #(not= % " specs:")) (drop 1) (take-while seq))) (defn- parse-spec [spec] {:name (second spec) :version (nth spec 2)}) (defn- parse-specs [specs] (->> (map #(re-matches #"^\s{4}(\S+) \((.*)\)$" %) specs) (remove empty?) (map parse-spec))) (defn parse [file] (with-open [reader (io/reader file)] (parse-specs (get-specs reader)))) (ns made-merits.service.winner-calculator (:require [clojure.set :as set] [clojure.walk :as walk])) (defn- with-status [scored-users] (let [max-score (apply max (map :score scored-users))] (vec (map (fn [scored-user] (assoc scored-user :status (if (= max-score (:score scored-user)) "winner" "loser"))) scored-users)))) (defn- mark-everyone-as-a-loser [users-with-status] (map (fn [user-with-status] (assoc user-with-status :status "loser")) users-with-status)) (defn- more-than-one-winner? [users-with-status] (not= 1 (:winner (walk/keywordize-keys (frequencies (map :status users-with-status)))))) (defn with-winner [scored-users] (let [users-with-status (with-status scored-users)] (if (more-than-one-winner? users-with-status) (mark-everyone-as-a-loser users-with-status) users-with-status))) (ns overtone.synth.sampled-piano (:use [overtone.core] [overtone.samples.piano :only [index-buffer]])) (defsynth sampled-piano [note 60 level 1 rate 1 loop? 0 attack 0 decay 1 sustain 1 release 0.1 curve -4 gate 1 out-bus 0] (let [buf (index:kr (:id index-buffer) note) env (env-gen (adsr attack decay sustain release level curve) :gate gate :action FREE)] (out out-bus (* env (scaled-play-buf 2 buf :level level :loop loop? :action FREE))))) (defproject wort "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/data.json "0.2.6"] [com.amazonaws/aws-lambda-java-core "1.0.0"] [uswitch/lambada "0.1.2"] [pjstadig/humane-test-output "0.8.2"] [compojure "1.6.0"] [ring/ring-defaults "0.2.1"]] :ring {:handler wort.handler/app} :injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)] :plugins [[lein-cljfmt "0.5.6"] [lein-ring "0.9.7"]] :main ^:skip-aot wort.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns subman.const) (def db-host "http://127.0.0.1:9200") (def index-name "subman7") (def type-all -1) (def type-addicted 0) (def type-podnapisi 1) (def type-opensubtitles 2) (def type-subscene 3) (def type-none -2) (def type-names {type-addicted "Addicted" type-podnapisi "Podnapisi" type-opensubtitles "OpenSubtitles" type-subscene "Subscene" type-all "all"}) (def update-deep 10) (def update-period (* 5 60 1000)) (def result-size 100) (def default-port "3000") (def conection-timeout 1000) (def static-path "/static/") (def show-name-boost 5) (def version-boost 2) (def languages-limit 100) (def autocomplete-limit 5) (def default-language "english") (def default-type type-all) (ns lexemic.core (:require [lexemic.sentiment.simple :as sentiment])) (def ^:private usage-banner "Usage: lexemic [command] [target]") (def ^:private supported-commands #{"help" "sentiment"}) (defn- show-help [] (do (println usage-banner))) (defn- run [cmd text] (condp = cmd "sentiment" (println (sentiment/analyse text)))) (defn -main [& args] (let [command (first args) input (second args)] (if-let [cmd (supported-commands command)] (run cmd input) (show-help)))) (set! *main-cli-fn* -main) (ns lambdaui.dummy-data (:require [ring.util.response :refer [response]])) (def summaries {:summaries [{:buildId 1 :state :running :startTime "11pm" ; TODO decide on format (ISO timestamp?) :duration "30 seconds" ; TODO decide on format (maybe seconds?) }, {:corrupted :build} ] }) (defn hello-response [] (response "haallo welt")) (defn build-summaries [] (response summaries)) (ns user (:use clojure.repl io.aviso.repl io.aviso.logging speclj.config)) (install-pretty-exceptions) (install-pretty-logging) (install-uncaught-exception-handler) (alter-var-root #'default-config assoc :color true :reporters ["documentation"]) (ns lambdaui.trigger (:require [clojure.core.async :as async] [lambdacd.execution :as execution] [clojure.walk :refer [keywordize-keys]])) ;{:post [(v/is-not-nil-or-empty? (:branch (:global %))) ; (v/is-not-nil-or-empty? (:revision (:global %))) ; (v/is-valid-revision? (:revision (:global %)))]} (defn trigger-new-build [{pipeline-def :pipeline-def context :context} {query-param :query-params}] (async/thread ;(println "Starting new build " ) ;(when-let [git-commit (:git (keywordize-keys query-param))] (println "requested commit was" git-commit)) (execution/run pipeline-def context) )) (ns mikron.runtime.test-util (:require [mikron.runtime.processor.validate :as runtime.processor.validate] [clojure.walk :as walk]) #?(:clj (:import [java.util Arrays]))) (defn nan? "Returns `true` if value is NaN, `false otherwise`." [value] #?(:clj (Double/isNaN value) :cljs (js/isNaN value))) #?(:cljs (defn arraybuffer->seq "Converts an ArrayBuffer `value` to a sequence." [value] (seq (.from js/Array (js/Int8Array. value))))) (defn fix-for-equality* "Returns a more 'equal friendly' value, if necessary." [value] (condp contains? (type value) #{runtime.processor.validate/binary-type} [:mikron/binary #?(:clj (seq value) :cljs (arraybuffer->seq value))] #?(:clj #{java.lang.Double java.lang.Float} :cljs #{js/Number}) (if (nan? value) :mikron/nan (double value)) value)) (defn fix-for-equality "Returns a more 'equal friendly' value, if necessary." [value] (walk/postwalk fix-for-equality* value)) (defn equal? "Checks whether the given values are equal." [value-1 value-2] (= (fix-for-equality value-1) (fix-for-equality value-2))) (ns kiries.layout (:use hiccup.core) (:use hiccup.page)) (defn full-layout [title & content] (html5 [:head (include-css "/kibana/common/css/bootstrap.light.min.css") (include-css "/kibana/common/css/bootstrap-responsive.min.css") (include-css "/kibana/common/css/font-awesome.min.css") [:title title]] [:body [:div.container-fluid.main [:div.row-fluid content]]])) (ns berry.lexical-analysis.scan-number (:require [berry.lexical-analysis.context-handler :refer [++ --]] [berry.lexical-analysis.character :refer :all] [berry.lexical-analysis.error-handler :refer :all] [berry.lexical-analysis.token :as token])) (defn scan-number [source context buffer] ) (ns braid.core.client.ui.styles.reconnect-overlay (:require [braid.core.client.ui.styles.mixins :as mixins] [braid.core.client.ui.styles.vars :as vars] [garden.arithmetic :as m])) (def reconnect-overlay [:>.reconnect-overlay {:position "absolute" :bottom 0 :left 0 :right 0 :top 0 :background "rgba(242,242,242,0.75)" :z-index 5000} [:>.info {:position "absolute" :bottom vars/pad :height (m/* vars/pad 4) :left 0 :right 0 :padding vars/pad :box-sizing "border-box" :background "red" :color "white" :z-index 5001} [:>h1 {:font-size "1em" :margin 0}] [:>.message [:>button (mixins/outline-button {:text-color "#fff" :border-color "#fff" :hover-text-color "#fff" :hover-border-color "fff"})]]]]) (ns {{ns-name}}.views (:require [re-frame.core :as re-frame])) ;; home (defn home-panel [] (let [name (re-frame/subscribe [:name])] (fn [] [:div (str "Hello from " @name ". This is the Home Page.") [:div [:a {:href "#/about"} "go to About Page"]]]))) ;; about (defn about-panel [] (fn [] [:div "This is the About Page." [:div [:a {:href "#/"} "go to Home Page"]]])) ;; main (defmulti panels identity) (defmethod panels :home-panel [] [home-panel]) (defmethod panels :about-panel [] [about-panel]) (defmethod panels :default [] [:div]) (defn main-panel [] (let [active-panel (re-frame/subscribe [:active-panel])] (fn [] [panels @active-panel]))) (defproject dropout "0.1.0-SNAPSHOT" :description "Cortex dropout example project implementing http://jmlr.org/papers/volume15/srivastava14a/srivastava14a.pdf" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [thinktopic/cortex "0.1.1-SNAPSHOT"] [thinktopic/cortex-datasets "0.1.0"] [thinktopic/cortex-gpu "0.1.0-SNAPSHOT"] [net.mikera/imagez "0.10.0"] [thinktopic/tsne-core "0.1.0-SNAPSHOT"] [incanter/incanter-core "1.5.7"] [incanter/incanter-charts "1.5.7"]] :main dropout.core) (use 'cucumber.runtime.clojure.belly) (def some-state (atom "'Before' hasn't run.")) (Before [] (reset! some-state "'Before' has run.") (println "Executing 'Before'.")) (After [] (println (str "Executing 'After' " @some-state))) (Given #"^I have (\d+) cukes in my belly$" [cuke-count] (eat (Float. cuke-count))) (Given #"^I have this many cukes in my belly:$" [cuke-table] (doseq [x (.raw cuke-table)] (eat (Float. (first x))))) (When #"^there are (\d+) cukes in my belly$" [expected] (assert (= (last-meal) (Float. expected)))) (Then #"^the (.*) contains (.*)$" [container ingredient] (assert (= "glass" container))) (When #"^I add (.*)$" [liquid] (assert (= "milk" liquid))) (Given #"^(\d+) unimplemented step$" [arg1] (comment Express the Regexp above with the code you wish you had ) (throw (cucumber.runtime.PendingException.)))(ns langnostic.files (:require [markdown.core :as md] [clojure.java.io :as io])) (def resources (.getCanonicalFile (io/file "resources"))) (defn file-in? [file path] (.startsWith (.getPath (.getCanonicalFile file)) (.getPath (.getCanonicalFile path)))) (defn file-in-resources? [file] (file-in? file resources)) (defn linkify-headers [text state] [(if (or (state :heading) (state :inline-heading)) (let [[_ hn text] (re-find #"<(h\d)>(.*?)" text) name (clojure.string/replace (.toLowerCase text) #"\W+" "-")] (str "<" hn ">" "" "" text "")) text) state]) (defn file-content [fname] (md/md-to-html-string (slurp fname) :custom-transformers [linkify-headers] :replacement-transformers (remove #(= % markdown.common/dashes) markdown.transformers/transformer-vector) :footnotes? true)) (ns test-run (:use [clojure.test] [clojure.java.io :only [delete-file]] [leiningen.core :only [read-project]] [leiningen.run] [leiningen.util.file :only [tmp-dir]])) (def out-file (format "%s/lein-test" tmp-dir)) (def project (binding [*ns* (find-ns 'leiningen.core)] (read-project "test_projects/tricky-name/project.clj"))) (use-fixtures :each (fn [f] (delete-file out-file :silently) (f))) (deftest test-basic (is (zero? (run project "1"))) (is (= "nom:1" (slurp out-file)))) (deftest test-alt-main (is (zero? (run project "-m" "org.domain.tricky-name.munch" "1"))) (is (= ":munched (\"1\")" (slurp out-file)))) (deftest test-aliases (is (zero? (run project ":bbb" "1"))) (is (= "BRUNCH" (slurp out-file))) (delete-file out-file :silently) (is (zero? (run project ":mmm" "1"))) (is (= ":munched (\"1\")" (slurp out-file)))) (ns mikron.test.core-macros "Unit tests for each processor." (:require [clojure.test :as test] [mikron.runtime.core :as mikron] [mikron.compiler.util :as compiler.util]) #?(:cljs (:require-macros [mikron.test.core-macros]))) (defmulti test-mikron "Test function for :pack, :diff, :valid? and :interp processors." (fn [method schema dataset] method)) (defmacro def-mikron-tests "Generates test methods for all the test cases." [test-methods test-cases] (compiler.util/macro-context {:gen-syms [schema dataset]} `(do ~@(for [[schema-name schema-def] test-cases] `(let [~schema (mikron/schema ~schema-def :diff true :interp true) ~dataset (repeatedly 100 #(mikron/gen ~schema))] ~@(for [method test-methods] `(test/deftest ~(gensym (str (name method) "-" (name schema-name))) (test-mikron ~method ~schema ~dataset)))))))) (ns incise.parsers.helpers (:require (clj-time [core :as tm] [coerce :as tc]) [clojure.string :as s]) (:import [java.io File])) (defn dashify "Dashify a title, replacing all non word characters with a dash." [^String title] (str \/ (-> title (s/lower-case) (s/replace #"[^\w]" "-")))) (defn date-time->path "Convert a DateTime to a path like string." [date-time] (str (when date-time (str \/ (tm/year date-time) \/ (tm/month date-time) \/ (tm/day date-time))))) (def date-str->path (comp date-time->path tc/from-string)) (defn Parse->path [^Parse {:keys [date title extension]}] (str (date-str->path date) (dashify title) extension)) (defn extension [^File file] "Get the extension, enforcing lower case, on the given file." (-> file (.getName) (s/split #"\.") (last) (s/lower-case))) (ns fcms.lib.http-mock) (def req) ; mock HTTP request (def bod) ; body of the mock HTTP request or response (def resp) ; mock HTTP response (defn request ([] req) ([new-req] (def req new-req))) (defn body ([] bod) ([new-body] (def bod new-body))) (defn response ([] resp) ([new-resp] (def resp new-resp))) (ns lt.util.ipc "Util functions for the ipc renderer - https://github.com/atom/electron/blob/master/docs/api/ipc-renderer.md") (def ipc "Provides access to the ipc renderer." (.-ipcRenderer (js/require "electron"))) ;; `send` and `on` are declared here with their bodies defined later as otherwise Codox will use the ;; redefined `send` and `on` in the below when block instead. (declare send) (declare on) ;; Set $IPC_DEBUG to debug incoming and outgoing ipc messages for the renderer process (when (aget js/process.env "IPC_DEBUG") (let [old-send send old-on on] (def send (fn [& args] (prn "RENDERER->" args) (apply old-send args))) (def on (fn [channel cb] (old-on channel (fn [_ & args] (prn "->RENDERER" channel args) (apply cb args))))))) (defn send "Delegates to ipc.send, which asynchronously sends args to the browser process's channel." [channel & args] (apply (.-send ipc) channel (clj->js args))) (defn on "Delegates to ipc.on, which defines a callback to fire for the given channel." [channel cb] (.on ipc channel cb)) (ns brew-monitor.test-data-creator (:require [clojurewerkz.elastisch.rest :as es] [clojurewerkz.elastisch.rest.document :as esd] [clj-time.core :as time] [clj-time.format :as time-f])) (def temps [20.0, 20.1, 20.2, 20.3, 20.5, 20.7, 21.0, 22.0, 21.9, 21.9, 21.8, 19.0, 19.5, 19.8, 19.9]) (def repeated-temps (cycle temps)) (defn get-iso-time [] (time-f/unparse (time-f/formatters :date-time) (time/now))) (defn send-temp [temp] (let [conn (es/connect "http://localhost:9200") doc { :time (get-iso-time), :temp temp }] (esd/create conn "temp_gauge" "reading" doc))) (defn -main [] (doseq [temp repeated-temps] (send-temp temp) (Thread/sleep 10000))) (defproject ring/ring-jetty-adapter "1.8.0" :description "Ring Jetty adapter." :url "https://github.com/ring-clojure/ring" :scm {:dir ".."} :license {:name "The MIT License" :url "http://opensource.org/licenses/MIT"} :dependencies [[org.clojure/clojure "1.7.0"] [ring/ring-core "1.8.0"] [ring/ring-servlet "1.8.0"] [org.eclipse.jetty/jetty-server "9.4.24.v20191120"]] :aliases {"test-all" ["with-profile" "default:+1.8:+1.9:+1.10" "test"]} :profiles {:dev {:dependencies [[clj-http "3.10.0"]] :jvm-opts ["-Dorg.eclipse.jetty.server.HttpChannelState.DEFAULT_TIMEOUT=500"]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.1"]]}}) (ns uxbox.ui.core (:require [beicon.core :as rx])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Actions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defonce actions-lock (atom :nothing)) (defonce actions-s (rx/bus)) (defn acquire-action! [type] (when-let [result (compare-and-set! actions-lock :nothing type)] ;; (println "acquire-action!" type) (rx/push! actions-s type))) (defn release-action! [type] (when-let [result (compare-and-set! actions-lock type :nothing)] ;; (println "release-action!" type) (rx/push! actions-s :nothing))) (ns logic.util) (import '(org.sat4j.minisat SolverFactory) '(org.sat4j.minisat.core Solver) '(org.sat4j.core VecInt) '(org.sat4j.specs IProblem) '(org.sat4j.reader DimacsReader)) (defn sat4j-solve [dimacs-map] (let [solver (SolverFactory/newDefault) reader (DimacsReader. solver) clauses (:clauses dimacs-map) MAXVAR (:num-vars dimacs-map) NBCLAUSES (:num-clauses dimacs-map)] (.newVar solver MAXVAR) (.setExpectedNumberOfClauses solver NBCLAUSES) (doall (map #(.addClause solver (VecInt. (int-array (subvec % 0 (dec (count %)))))) clauses)) (if (.isSatisfiable solver) (do (println "Satisfiable!") (.decode reader (.model solver))) (println "Unsatisfiable!")))) (defn sat-solve "Returns one result as vector. The vector is epmty if the formula is unsatisfiable." [dimacs-map] (let [res-str (sat4j-solve dimacs-map)] (if (nil? res-str) [] (vec (filter #(not= 0 %) (map #(Integer. %) (clojure.string/split res-str #" "))))))) (ns flare.report-test (:require [clojure.test.check :as tc] [clojure.test.check.clojure-test :refer [defspec]] [clojure.test.check.generators :as gen] [clojure.test.check.properties :as prop] [clojure.test :refer [is deftest]] [flare.diff :refer [diff*]] [flare.generators :refer [distinct-values]] [flare.report :refer [report* report]])) (deftest reports-swallows-exceptions-test (with-redefs [report* (fn [_] (throw (ex-info "what ever" {})))] (is (nil? (report :whatever))))) (defspec generate-report-always-returns-non-empty-list-when-given-diffs 100 (prop/for-all [[a b] (distinct-values gen/any gen/any)] (not-empty (report (diff* a b))))) (ns retroboard.config) (def ws-url "ws://arcane-bastion-5301.herokuapp.com/ws") ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.media "A media storage persistence layer." (:require [uxbox.media.proto :as p] [uxbox.media.fs :as fs] [uxbox.media.impl])) (defn save "Perists a file or bytes in the storage. This function returns a relative path where file is saved. The final file path can be different to the one provided to this function and the behavior is totally dependen on the storage implementation." [storage path content] (p/-save storage path content)) (defn lookup "Resolve provided relative path in the storage and return the local filesystem absolute path to it. This method may be not implemented in all storages." [storage path] {:pre [(satisfies? p/ILocalStorage storage)]} (p/-lookup storage path)) (defn exists? "Check if a relative `path` exists in the storage." [storage path] (p/-exists? storage path)) (defn delete "Delete a file from the storage." [storage path] (p/-delete storage path)) (defn path "Create path from string or more than one string." [fst & more] (if (seq more) (p/-path (cons fst more)) (p/-path fst))) (ns incise.once (:require (incise [load :refer [load-parsers-and-layouts]] [config :as conf] [utils :refer [delete-recursively directory?]]) [clojure.java.io :refer [file]] [incise.parsers.core :refer [parse-all-input-files]] [taoensso.timbre :refer [info]] (stefon [settings :refer [with-options]] [core :refer [precompile]]))) (defn once "Incise just once. This requires that config is already loaded." [& {:as config}] (conf/merge! config) (conf/avow!) (let [{:keys [out-dir precompiles stefon in-dir]} (conf/get) manifest-file-path (.getPath (file in-dir "manifest.json"))] (info "Clearing out" (str \" out-dir \")) (delete-recursively (file out-dir)) (with-options (merge {:mode :production :serving-root out-dir :manifest-file manifest-file-path :precompiles (or precompiles [])} stefon) (info "Precompiling assets...") (precompile nil) (info "Done.") (load-parsers-and-layouts) (doall (parse-all-input-files))))) (defproject hello-world "0.20.0-SNAPSHOT" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0"] [uncomplicate/neanderthal "0.20.0-SNAPSHOT"]] :exclusions [[org.jcuda/jcuda-natives :classifier "apple-x86_64"] [org.jcuda/jcublas-natives :classifier "apple-x86_64"]]) (defproject soy-clj "0.3.3-SNAPSHOT" :description "An idiomatic Clojure wrapper for Google's Closure templating system." :url "https://github.com/codahale/soy-clj" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[com.codahale/guava-cache-clj "0.1.2"] [com.google.template/soy "2017-02-01" :exclusions [args4j com.google.gwt/gwt-user com.google.guava/guava-testlib org.json/json com.google.code.gson/gson]]] :plugins [] :test-selectors {:default #(not-any? % [:bench]) :bench :bench} :aliases {"bench" ["test" ":bench"]} :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] :global-vars {*warn-on-reflection* true} :profiles {:dev [:project/dev :profiles/dev] :test [:project/test :profiles/test] :profiles/dev {:dependencies [[org.clojure/clojure "1.8.0"] [criterium "0.4.4"]]} :profiles/test {} :project/dev {:source-paths ["dev"] :repl-options {:init-ns user}} :project/test {:dependencies []}}) (defproject beehive-http "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [net.uncontended/Precipice-Implementations "0.1.0"] [net.uncontended/beehive "0.5.3"]]) (ns app.operations (:require [fulcro.client.mutations :as m :refer [defmutation]])) (defmutation toggle-item-checked?! [{:keys [id]}] (action [{:keys [state]}] (let [ident [:item/by-id id] current-item (get-in @state ident) updated-item (update current-item :item/checked? not)] (swap! state assoc-in ident updated-item)))) (defmutation delete-item! [{:keys [id]}] (action [{:keys [state]}] (let [ident [:item/by-id id] current-items (get-in @state [:item-list :item-list/items]) updated-items (vec (remove #(= ident %) current-items))] (swap! state assoc-in [:item-list :item-list/items] updated-items)))) (defmutation update-input-value! [{:keys [input-value]}] (action [{:keys [state]}] (swap! state assoc-in [:item-adder :item-adder/input-value] input-value))) ;; Copyright (c) Daniel Borchmann. All rights reserved. ;; The use and distribution terms for this software are covered by the ;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) ;; which can be found in the file LICENSE at the root of this distribution. ;; By using this software in any fashion, you are agreeing to be bound by ;; the terms of this license. ;; You must not remove this notice, or any other, from this software. (use 'clojure.tools.cli) ;; (defn- run-repl [] (clojure.main/repl :init #(use 'conexp.main))) (with-command-line *command-line-args* "conexp-clj -- a general purpose tool for Formal Concept Analysis\n" [[gui? "Start the graphical user interface"] [load "Load script and run"]] (when gui? (clojure.main/repl :init #(do (use 'conexp.main) (use 'conexp.contrib.gui) (@(ns-resolve 'conexp.contrib.gui 'gui) :default-close-operation javax.swing.JFrame/EXIT_ON_CLOSE)))) (when load (use 'conexp.main) (load-file load)) (when-not (or load gui?) (clojure.main/repl :init #(use 'conexp.main)))) ;; nil (ns build-mon.test.vso-api (:require [midje.sweet :refer :all] [clojure.java.io :as io] [build-mon.vso-api :as api])) (fact "vso-api-get-fn wraps an api token and returns a function which can be called with just a URL" (let [result (api/vso-api-get-fn "SOME API TOKEN")] (fn? result) => truthy (result "NOT A REAL URL") => (throws java.net.MalformedURLException))) (fact "vso-api-fns returns a map of the exposed functions" (let [get-fn (fn [url] "API RESPONSE") result (api/vso-api-fns get-fn "ACCOUNT_NAME" "PROJECT_NAME")] (fn? (:retrieve-build-info result)) => truthy (fn? (:retrieve-build-definitions result)) => truthy)) (defproject onyx-app/lein-template "0.9.11.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject coolant "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/clojurescript "0.0-3211"]] :source-paths ["src" "test"]) (defproject io.aviso/tracker "0.1.6" :description "Track per-thread operations when exceptions occur" :url "https://github.com/AvisoNovate/tracker" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.clojure/tools.logging "0.3.0"] [io.aviso/pretty "0.1.15"] [io.aviso/toolchest "0.1.1"]] :plugins [[lein-shell "0.4.0"]] :shell {:commands {"scp" {:dir "doc"}}} :aliases {"deploy-doc" ["shell" "scp" "-r" "." "hlship_howardlewisship@ssh.phx.nearlyfreespeech.net:io.aviso/tracker"] "release" ["do" "clean," "doc," "deploy-doc," "deploy" "clojars"]} :codox {:src-dir-uri "https://github.com/AvisoNovate/tracker/blob/master/" :src-linenum-anchor-prefix "L" :defaults {:doc/format :markdown}} :profiles {:dev {:dependencies [[org.slf4j/slf4j-api "1.7.6"] [ch.qos.logback/logback-classic "1.1.1"]]}}) (defproject deadman "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [ring "1.3.0"] [compojure "1.1.8"] [ring/ring-json "0.3.1"] [ring-json-params "0.1.0"] [org.clojure/data.json "0.2.5"]] :plugins [[lein-ring "0.8.11"]] :resource-paths ["lib/*"] :ring {:handler deadman.core/app}) (defproject io.aviso/rook "0.1.3" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}} :dev {:dependencies [[ring-mock "0.1.5"]]}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [compojure "1.1.6"]] :plugins [[test2junit "1.0.1"]]) (ns hxgm30.language.io (:require [clojure.edn :as edn] [clojure.java.io :as io] [clojure.string :as string])) (defn load-lines [fullpath] (->> fullpath io/resource io/reader line-seq)) (defn load-clean-lines [fullpath] (->> fullpath load-lines (mapcat #(string/split % #" ")) (remove empty?) (map (comp string/lower-case #(string/replace % "\"" "") #(string/replace % "'s" "") #(string/replace % "'ll" "") #(string/replace % "'d" "") #(string/replace % "'re" ""))) sort)) (defn dump [fullpath data] (spit fullpath data)) (defn undump [fullpath] (->> fullpath io/resource slurp edn/read-string)) (ns ^{:author "Brian Craft" :doc "A set of core functions for use with cavm.query.expression."} cavm.query.functions (:use clojure.core.matrix) (:use clojure.core.matrix.operators) (:refer-clojure :exclude [* - + == /]) (:gen-class)) (set-current-implementation :vectorz) (defn- meannan1d [m] (let [NaN Double/NaN [sum n] (ereduce (fn [[acc cnt] x] (if (Double/isNaN x) [acc cnt] [(+ acc x) (inc cnt)])) [0 0] m)] (if (= 0 n) NaN (/ sum n)))) ; XXX this handling of dim is wrong for dim > 1 ; XXX do we need to fill nan values, like we do in python? (defn- meannan [m dim] (let [new-shape (assoc (vec (shape m)) (long dim) 1)] (reshape (matrix (map meannan1d (slices m (- 1 dim)))) new-shape))) (def functions {'+ + '/ / '* emul '> > '< < '>= >= '<= <= '- - '= == 'map map 'get get 'assoc assoc 'cons cons 'car first 'cdr rest 'group-by group-by 'mean meannan 'apply apply}) ; XXX is this a security hole? Can the user pass in clojure symbols? ;; Define template options here ; @layout default ; @title home ;; Your own function in template (defn page-header [[fs & rs]] [:div {:class "page-header"} [:h1 [:span fs] rs]]) ; Template is compiled with hiccup (header (:title site) "The blog of Peter Barnett." [:br] (link "github.com/Pance" "https://github.com/Pance") ) ;; Sample posts (page-header "Posts") (post-list) (prev-next-page-link) ;; Sample post tags (page-header "Tags") (tag-list) (ns obb-api.handlers.play-game-test (:require [clojure.test :refer :all] [obb-api.service-test :as service] [obb-rules.stash :as stash] [obb-api.handlers.deploy-game-test :as deploy-game-test] [io.pedestal.test :refer :all] [io.pedestal.http :as bootstrap])) (deftest play-game-smoke (let [[game _] (deploy-game-test/create-deployed-game) data {} [response status] (service/put-json "donbonifacio" (str "/game/" (game :_id) "/turn") data)] (is (not= 404 status)) (is (#{"p1" "p2"} (get-in game [:board :state]))))) (ns frontend.devtools (:require [environ.core :refer [env]])) (defmacro require-devtools! [] (when (:devtools env) '(js/goog.require "frontend.devtools"))) (defproject me.arrdem/oxcart (slurp "VERSION") :description "An experimental optimizing compiler for Clojure code" :url "http://github.com/arrdem/oxcart" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [ [org.clojure/clojure "1.5.1"] [org.clojure/tools.analyzer.jvm "0.1.0-SNAPSHOT"] [org.clojure/tools.emitter.jvm "0.0.1-SNAPSHOT"] [org.clojure/tools.reader "0.8.4"] ]) (ns comic-reader.ui.site-list (:refer-clojure :exclude [get set] :rename {get cget}) (:require [re-frame.core :as re-frame] [reagent.ratom :refer-macros [reaction]] [comic-reader.ui.base :as base])) (defn get [db] (cget db :site-list)) (defn set [db [_ sites]] (assoc db :site-list sites)) (defn setup! [] (re-frame/register-sub :site-list (fn [app-db v] (reaction (get @app-db)))) (re-frame/register-handler :set-site-list set)) (defn site-list [view-site sites] (base/list-with-loading {:heading "Comic Sites" :list-element [:ul.inline-list] :item->li (fn [site] [:a.large.button.radius {:on-click #(view-site (:id site))} (:name site)])} sites)) (defn site-list-container [] (let [sites (re-frame/subscribe [:site-list])] (fn [] [site-list (fn [site-id] (re-frame/dispatch [:view-site site-id])) (deref sites)]))) (ns cmr.transmit.test.echo.rest "Tests for cmr.transmit.echo.rest namespace" (:require [clojure.test :refer :all] [cmr.transmit.echo.rest :as rest])) (deftest test-error-masked (let [error-message "Unexpected error message: Token 123 does not exist." status 500] (is (= (format "Unexpected status %d from response. body: %s" status "Token does not exist") (rest/unexpected-status-error! status error-message))))) (defproject clstreams "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/tools.namespace "0.3.0-alpha3"] [org.apache.kafka/kafka-clients "0.10.2.1"] [org.apache.kafka/kafka-clients "0.10.2.1" :classifier "test"] [org.apache.kafka/kafka-streams "0.10.2.1"] [org.apache.kafka/kafka-streams "0.10.2.1" :classifier "test"] [com.stuartsierra/component "0.3.2"] [spootnik/signal "0.2.1"]] :main ^:skip-aot clstreams.core :target-path "target/%s" :profiles {:uberjar {:aot :all}}) (ns todo-repl-webapp.views (:require [hiccup.form :as form] [hiccup.page :as page] [hiccup.core :as core])) (defn home [& _] (core/html [:head [:title "todo-repl"] (page/include-css "css/bootstrap.min.css") (page/include-js "http://code.jquery.com/jquery-1.10.1.min.js" "js/bootstrap.min.js")] [:body [:div.col-md-7.col-md-offset-2 [:h1 "todo-repl"] (form/form-to {:id "todoForm"} [:post "/eval"] (form/text-area {:class "form-control"} "evalInput" "blah") [:br] (form/submit-button {:id "todoSubmitButton"} "Eval"))] [:div#display.col-md-7.col-md-offset-2] (page/include-js "js/eval.js")])) (defn eval [x & xs] (core/html [:h1 "Eval"] [:h2 x])) (ns shouter.models.queries (:require [yesql.core :refer [defqueries]])) (def spec (or (System/getenv "DATABASE_URL") "postgresql://localhost/shouter")) (defqueries "queries.sql") {:repl {:plugins [[cider/cider-nrepl "0.18.0"] [refactor-nrepl "2.4.0-SNAPSHOT"]] :dependencies [[acyclic/squiggly-clojure "0.1.9-SNAPSHOT" :exclusions [org.clojure/tools.reader]] [compliment "0.3.5"]]} :env {:squiggly "{:checkers [:eastwood] :eastwood-exclude-linters [:unlimited-use :no-ns-form-found]}"}} ;; Copyright 2008-2014 Red Hat, Inc, and individual contributors. ;; ;; This is free software; you can redistribute it and/or modify it ;; under the terms of the GNU Lesser General Public License as ;; published by the Free Software Foundation; either version 2.1 of ;; the License, or (at your option) any later version. ;; ;; This software is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this software; if not, write to the Free ;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ;; 02110-1301 USA, or see the FSF site: http://www.fsf.org. (defproject clojars-deployer "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [leiningen "2.1.1"] [com.cemerick/pomegranate "0.2.1-SNAPSHOT"]] :main clojars-deployer.main) (ns incise.config (:require [clojure.java.io :refer [reader file resource]] [clojure.edn :as edn] [manners.victorian :refer [avow!]]) (:import [java.io PushbackReader]) (:refer-clojure :exclude [merge load assoc get])) (def ^:private config (atom {})) (defn load [] (when-let [config-file (file (resource "incise.edn"))] (reset! config (edn/read (PushbackReader. (reader config-file)))))) (defn assoc [& more] (apply swap! config clojure.core/assoc more)) (def ^:private validations [[(comp string? :in-dir) "must have an input dir"] [(comp string? :out-dir) "must have an output dir"]]) (defn avow-config! "Throws an AssertionError unless the given config map, or @config if not supplied, has no faults." [& [given-config]] (avow! 'config validations (or given-config @config))) (defn get [& more] (avow-config!) (if (empty? more) @config (apply @config more))) (defn merge [& more] (apply swap! config clojure.core/merge more)) (defproject dsbdp "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [clj-assorted-utils "1.11.1"] [org.apache.commons/commons-math3 "3.5"] [org.clojure/tools.cli "0.3.3"]] :global-vars {*warn-on-reflection* true} :java-source-paths ["src-java"] :javac-options ["-target" "1.6" "-source" "1.6"] :main dsbdp.main) (defproject com.palletops/cli-cmds "0.1.0-SNAPSHOT" :description "Library for writing command line interfaces" :url "https://githubs.com/pallet/cli-cmds" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [com.palletops/chiba "0.2.0"] [org.clojure/tools.macro "0.1.2"] ;; TODO - push unknown options patch upstream [com.palletops/tools.cli "0.2.4-SNAPSHOT"]]) (ns boilerpipe-clj.core (:require [boilerpipe-clj.extractors :as ext]) (:require [boilerpipe-clj.util :as util])) (defn get-text "Takes HTML as String and returns extracted content. Will use default Boilerpipe Extractor impl if not passed an extractor instance as second argument." [source & [extractor]] (if-let [extractor extractor] (.getText extractor source) (.getText ext/default-extractor source))) (defn get-text-as-html [source & [extractor]] "Takes HTML as String and returns extracted content in

tags." (util/wrap-paragraphs (get-text source extractor))) (ns incise.layouts.core (:refer-clojure :exclude [get])) (def layouts (atom {})) (defn exists? "Check for the existance of a layout with the given name." [layout-with-name] (contains? @layouts (name layout-with-name))) (defn get [layout-name] (@layouts (name layout-name))) (defn register "Register a layout function to a shortname" [short-name layout-fn] (swap! layouts assoc (name short-name) layout-fn)) (ns fntest.core (:require [fntest.jboss :as jboss])) (defn with-jboss [f] "A test fixture for starting/stopping JBoss" (try (println "Starting JBoss") (jboss/start) (if (jboss/wait-for-ready? 20) (f) (println "JBoss failed to start")) (finally (println "Stopping JBoss") (jboss/stop)))) (defn with-deployment [name descriptor] "Returns a test fixture for deploying/undeploying an app to a running JBoss" (fn [f] (try (jboss/deploy name descriptor) (f) (finally (jboss/undeploy name))))) {:user #=(merge {:plugins [[lein-try "0.4.1"] [lein-pprint "1.1.1"] [cider/cider-nrepl "0.8.0"]]} #=(eval (try (read-string (slurp (str (System/getProperty "user.home") "/.config/datomic.clj"))) (catch Exception e {}))))} ;; Copyright (c) 2011-2016 Juan Pedro Bolivar Puente ;; ;; This file is part of Sinusoid.es. ;; ;; Sinusoid.es is free software: you can redistribute it and/or modify ;; it under the terms of the GNU Affero General Public License as ;; published by the Free Software Foundation, either version 3 of the ;; License, or (at your option) any later version. ;; ;; Sinusoid.es is distributed in the hope that it will be useful, but ;; WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Affero General Public License for more details. ;; ;; You should have received a copy of the GNU Affero General Public ;; License along with Sinusoid.es. If not, see ;; . (ns sinusoides.util (:require [pl.danieljanus.tagsoup :as tagsoup])) (defmacro embed-svg [svg-file] (let [hiccup (tagsoup/parse-string (slurp svg-file))] `~hiccup)) (ns comic-reader.frontend-dev (:require [clojure.java.browse :refer [browse-url]] [clojure.repl :refer :all] [comic-reader.system :refer [go]] [figwheel-sidecar.repl-api :refer :all])) (defn- cwd [] (.getCanonicalPath (java.io.File. "."))) (def figwheel-config {:figwheel-options {:http-server-root "public" :css-dirs ["resources/public/css"]} :build-ids ["dev"] :all-builds [{:id "dev" :source-paths ["src/cljs" "test/cljs"] :figwheel {:devcards true} :compiler {:main "comic-reader.devcards" :optimizations :none :source-map true :source-map-timestamp true :output-to "resources/public/js/compiled/devcards.js" :output-dir (str (cwd) "/resources/public/js/compiled/devcards_out") :asset-path "js/compiled/devcards_out"}}]}) (defn start-dev! [& args] (apply go args) (start-figwheel! figwheel-config) (browse-url "http://localhost:10555/devcards")) (ns rill.web (:require [clojure.tools.logging :as log] [rill.handler :as rill-handler] [rill.message :as message])) (defn command-result-to-ring-response [command [status events new-version]] (case status :rejected {:status 422 :body {:status :command-rejected}} ; HTTP 422 Unprocessable Entity :conflict {:status 409 :body {:status :command-conflict}} ; HTTP 409 Conflict :out-of-date {:status 412 :body {:status :command-out-of-date}} ; HTTP 412 Precondition Failed :ok {:status 200 :body {:status :command-accepted :events events :aggregate-version new-version :aggregate-id (message/primary-aggregate-id command)}} ;; else {:status 500 :body {:status :internal-error}})) (defn wrap-command-handler "Given a ring handler that returns a command (or nil), execute the command with the given event store and return status 500 or 200" [ring-handler event-store] (fn [request] (when-let [command (ring-handler request)] (log/debug ["Executing command" command]) (command-result-to-ring-response command (rill-handler/try-command event-store command))))) (ns org.spootnik.cyanite.carbon-test (:require [org.spootnik.cyanite.carbon :refer :all] [org.spootnik.cyanite.config :refer [assoc-rollup-to]] [clojure.test :refer :all])) (deftest formatter-test (testing "empty-transform" (is (= '() (formatter [] "foo nan 501")))) (testing "rollup-transform" (is (= (list {:path "foo.bar" :rollup 10 :period 3600 :ttl 36000 :time 500 :metric 2.0}) (formatter (assoc-rollup-to [{:rollup 10 :period 3600}]) "foo.bar 2.0 501"))) (is (= (list {:path "foo.bar" :rollup 10 :period 3600 :ttl 36000 :time 600 :metric 2.0} {:path "foo.bar" :rollup 60 :period 7200 :ttl 432000 :time 600 :metric 2.0}) (formatter (assoc-rollup-to [{:rollup 10 :period 3600} {:rollup 60 :period 7200}]) "foo.bar 2.0 601"))) )) (ns system (:require [clojure.string :as str] [org.httpkit.server :refer [run-server]] [lens.app :refer [app]] [lens.util :refer [parse-int]])) (defn env [] (->> (str/split-lines (slurp ".env")) (reduce (fn [ret line] (let [vs (str/split line #"=")] (assoc ret (first vs) (str/join "=" (rest vs))))) {}))) (defn system [env] {:app app :db-uri (or (env "DB_URI") "datomic:mem://lens") :version (System/getProperty "lens.version") :port (or (some-> (env "PORT") (parse-int)) 5001) :mdb-uri (env "MDB_URI")}) (defn start [{:keys [app db-uri version port] :as system}] (let [stop-fn (run-server (app db-uri version) {:port port})] (assoc system :stop-fn stop-fn))) (defn stop [{:keys [stop-fn] :as system}] (stop-fn) (dissoc system :stop-fn)) (ns atom.core) (def app (js/require "app")) (def browser-window (js/require "browser-window")) (def crash-reporter (js/require "crash-reporter")) (def main-window (atom nil)) (defn init-browser [] (reset! main-window (browser-window. (clj->js {:width 800 :height 600}))) ; Path is relative to the compiled js file (main.js in our case) (.loadUrl @main-window (str "file://" js/__dirname "/public/index.html")) (.on @main-window "closed" #(reset! main-window nil))) (.start crash-reporter) (.on app "window-all-closed" #(when-not (= js/process.platform "darwin") (.quit app))) (.on app "ready" init-browser) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. (ns datomish.tufte-stub) ;;; The real version of Tufte pulls in cljs.test, which pulls in ;;; pprint, which breaks the build in Firefox. (defmacro p [name & forms] `(do ~@forms)) (defmacro profile [options & forms] `(do ~@forms)) (ns checkin-halake.models.users (:require [monger.core :as mg] [monger.collection :as mc] [environ.core :refer [env]]) (:use [crypto.password.bcrypt :only [encrypt check]] checkin-halake.models.core)) (defn- fix-user [doc] (dissoc doc :password)) (defn register-user [email password name phone] (let [password (encrypt password) user {:_id email, :name name, :phone phone, :password password, :createdAt (java.util.Date.)}] (-> (mc/insert-and-return db "users" user) fix-user))) ;; (register-user "taro@email.com" "hoge" "Taro" "090") (defn login [email password] (and (seq email) (seq password) (let [{crypted-password :password :as user} (mc/find-one-as-map db "users" {:_id email})] (if (check password crypted-password) (fix-user user))))) ;; (login "taro@email.com" "hoge") (defn query-users [] (map fix-user (mc/find-maps db "users"))) ;; (query-users) (defproject thomasa/mranderson "0.5.1-SNAPSHOT" :description "Dependency inlining and shadowing tool." :url "https://github.com/benedekfazekas/mranderson" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :eval-in :leiningen :plugins [[thomasa/mranderson "0.5.0"]] :java-source-paths ["java-src"] :javac-options ["-target" "1.6" "-source" "1.6"] :filespecs [{:type :bytes :path "mranderson/project.clj" :bytes ~(slurp "project.clj")}] :dependencies [^:source-dep [com.cemerick/pomegranate "0.4.0"] ^:source-dep [org.clojure/tools.namespace "0.3.0-alpha3"] ^:source-dep [me.raynes/fs "1.4.6"] ^:source-dep [rewrite-clj "0.6.1"] ^:source-dep [parallel "0.10"] [com.googlecode.jarjar/jarjar "1.3"]] :mranderson {:project-prefix "mranderson.inlined"} :profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (defproject clj-spotify "0.1.2" :description "A client library for the Spotify Web API" :url "https://github.com/blmstrm/clj-spotify" :license {:name "The MIT License (MIT)" :url "http://opensource.org/licenses/MIT"} :plugins [[lein-cloverage "1.0.6"]] :dependencies [[org.clojure/clojure "1.8.0"] [org.clojure/data.json "0.2.6"] [org.clojure/data.codec "0.1.0"] [clj-http "2.1.0"] ]) (defproject funcool/suricatta "0.6.1" :description "High level sql toolkit for clojure (backed by jooq library)" :url "https://github.com/funcool/suricatta" :license {:name "BSD (2-Clause)" :url "http://opensource.org/licenses/BSD-2-Clause"} :dependencies [[org.clojure/clojure "1.8.0-RC1" :scope "provided"] [org.jooq/jooq "3.7.1"]] ;; :jvm-opts ^:replace ["-Dclojure.compiler.direct-linking=true"] :javac-options ["-target" "1.8" "-source" "1.8" "-Xlint:-options"] :profiles {:dev {:global-vars {*warn-on-reflection* false} :plugins [[lein-ancient "0.6.7"]] :dependencies [[org.postgresql/postgresql "9.4-1204-jdbc42"] [com.h2database/h2 "1.4.190"] [cheshire "5.5.0"]]}} :java-source-paths ["src/java"]) (ns workflo.macros.permission (:require-macros [workflo.macros.permission :refer [defpermission]])) ;;;; Permission registry (defregistry permission) (ns comic-reader.ui.base-test (:require [devcards.core :refer-macros [defcard-rg]] [comic-reader.ui.base :as ui-base])) (defcard-rg loading "## Loading This is the loading svg used everywhere on the site." [:div {:style {"width" "4em"}} [ui-base/loading]]) (defcard-rg four-oh-four [ui-base/four-oh-four]) (defcard-rg large-button [ui-base/large-button "Button"]) (defproject org.onyxplatform/onyx-datomic "0.8.0.0" :description "Onyx plugin for Datomic" :url "https://github.com/MichaelDrogalis/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.0.0"]] :profiles {:dev {:dependencies [[midje "1.7.0"] [com.datomic/datomic-free "0.9.5153"]] :plugins [[lein-midje "3.1.3"] [lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject frontrow "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.6"] [ring/ring-json "0.3.1"]] :plugins [[lein-ring "0.8.10"]] :ring {:handler frontrow.handler/app} :profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"] [ring-mock "0.1.5"]]}}) (defproject org.onyxplatform/onyx-kafka "0.7.3-SNAPSHOT" :description "Onyx plugin for Kafka" :url "https://github.com/MichaelDrogalis/onyx-kafka" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.7.3-20150827_160450-g706d154"] [clj-kafka "0.3.2" :exclusions [org.apache.zookeeper/zookeeper zookeeper-clj]] [com.stuartsierra/component "0.2.3"] [cheshire "5.5.0"] [zookeeper-clj "0.9.3" :exclusions [io.netty/netty org.apache.zookeeper/zookeeper]]] :profiles {:dev {:dependencies [[midje "1.7.0"]] :plugins [[lein-midje "3.1.3"]]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) (defproject useful "0.8.3-alpha4" :description "A collection of generally-useful Clojure utility functions" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/flatland/useful" :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.macro "0.1.1"]] :multi-deps {"1.3" [[org.clojure/clojure "1.3.0"]] "1.2" [[org.clojure/clojure "1.2.1"]] :all [[org.clojure/tools.macro "0.1.1"]]}) (defproject io.aviso/rook "0.1.2" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}}} :dependencies [[org.clojure/clojure "1.5.1"] [compojure "1.1.6"] [org.clojure/core.memoize "0.5.6"] [ring-mock "0.1.5"]] :plugins [[test2junit "1.0.1"]]) (defproject sormilla "0.3.1" :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/core.async "0.1.242.0-44b1e3-alpha"] [rogerallen/leaplib "2.0.2"] [rogerallen/leaplib-natives "2.0.2"] [h264-decoder/h264-decoder "1.0"] [amalloy/ring-buffer "1.0"] [commons-io/commons-io "2.4"] [metosin/system "0.2.1"]] :repositories {"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"} :profiles {:dev {:source-paths ["dev"] :dependencies [[midje "1.5.1"] [org.clojure/tools.namespace "0.2.4"] [org.clojure/java.classpath "0.2.0"]] :plugins [[lein-midje "3.1.1"]]} :uberjar {:source-paths ["main"] :main sormilla.main :aot [sormilla.main]} :video-sim {:source-paths ["src"] :main sormilla.video-sim}} :min-lein-version "2.3.2") (def project 'radicalzephyr/webfx) (def version "0.1.0-SNAPSHOT") (set-env! :resource-paths #{"src"} :dependencies []) (task-options! pom {:project project :version version :description "A configurable shim for running a web application in a local JavaFX Webkit web view." :url "https://github.com/RadicalZephyr/webfx" :scm {:url "https://github.com/RadicalZephyr/webfx"} :license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}}) (deftask build "Build and install the project locally." [] (comp (javac) (pom) (jar) (install))) (ns gitique.util (:require [clojure.string :as string])) (enable-console-print!) (extend-type js/NodeList ISeqable (-seq [array] (array-seq array 0))) (extend-type js/DOMTokenList ISeqable (-seq [array] (array-seq array 0))) (defn log [s] (println s) s) (defn qs "Wrapper for `querySelector`" ([selector] (qs selector js/document)) ([selector element] (.querySelector element selector))) (defn qsa "Wrapper for `querySelectorAll`" ([selector] (qsa selector js/document)) ([selector element] (.querySelectorAll element selector))) (defn add-class [element class] (.add (.-classList element) class)) (defn remove-class [element class] (.remove (.-classList element) class)) (defn child-text [parent selector] (.-textContent (qs selector parent))) (ns rill.web (:require [clojure.tools.logging :as log] [rill.handler :as rill-handler] [rill.message :as message])) (defn command-result-to-ring-response [command [status events new-version]] (case status :rejected {:status 422 :body {:status :command-rejected}} ; HTTP 422 Unprocessable Entity :conflict {:status 409 :body {:status :command-conflict}} ; HTTP 409 Conflict :out-of-date {:status 412 :body {:status :command-out-of-date}} ; HTTP 412 Precondition Failed :ok {:status 200 :body {:events events :aggregate-version new-version :aggregate-id (message/primary-aggregate-id command)}} ;; else {:status 500 :body {:status :internal-error}})) (defn wrap-command-handler "Given a ring handler that returns a command (or nil), execute the command with the given event store and return status 500 or 200" [ring-handler event-store] (fn [request] (when-let [command (ring-handler request)] (log/info ["Executing command" command]) (command-result-to-ring-response command (rill-handler/try-command event-store command))))) (require '[figwheel-sidecar.repl :as r] '[figwheel-sidecar.repl-api :as ra] '[cljs.tagged-literals]) (alter-var-root #'cljs.tagged-literals/*cljs-data-readers* assoc 'ux/tr (fn [v] `(uxbox.locales/tr ~v))) (ra/start-figwheel! {:figwheel-options {:css-dirs ["resources/public/css"]} :build-ids ["dev"] :all-builds [{:id "dev" :figwheel {:on-jsload "uxbox.ui/init"} :source-paths ["src"] :compiler {:main 'uxbox.core :asset-path "js" :parallel-build false :optimizations :none :pretty-print true :language-in :ecmascript5 :language-out :ecmascript5 :output-to "resources/public/js/main.js" :output-dir "resources/public/js" :verbose true}}]}) (ra/cljs-repl) (defproject onyx-app/lein-template "0.10.0.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject org.onyxplatform/onyx-metrics "0.8.2.0" :description "Instrument Onyx workflows" :url "https://github.com/MichaelDrogalis/onyx" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.8.2"] [org.clojure/clojure "1.7.0"] [interval-metrics "1.0.0"] [stylefruits/gniazdo "0.4.0"]] :java-opts ^:replace ["-server" "-Xmx3g"] :global-vars {*warn-on-reflection* true *assert* false *unchecked-math* :warn-on-boxed} :profiles {:dev {:dependencies [[riemann-clojure-client "0.4.1"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}}) (defproject reply "0.0.2-SNAPSHOT" :description "REPL-y: A fitter, happier, more productive REPL for Clojure." :dependencies [[org.clojure/clojure "1.3.0"] [org.clojars.trptcolin/jline "2.6-SNAPSHOT"] [clojure-complete "0.1.4"]] :dev-dependencies [[midje "1.3-alpha4"] [lein-midje "[1.0.0,)"]] :aot [reply.reader.jline.JlineInputReader] :java-source-path "src") (defproject org.flatland/useful "0.9.3-SNAPSHOT" :description "A collection of generally-useful Clojure utility functions" :license {:name "Eclipse Public License - v 1.0" :url "http://www.eclipse.org/legal/epl-v10.html" :distribution :repo} :url "https://github.com/flatland/useful" :dependencies [[org.clojure/clojure "1.4.0"] [org.clojure/tools.macro "0.1.1"]] :aliases {"testall" ["with-profile" "dev,default:dev,1.3,default:dev,1.2,default" "test"]} :profiles {:1.3 {:dependencies [[org.clojure/clojure "1.3.0"]]} :1.2 {:dependencies [[org.clojure/clojure "1.2.1"]]}}) (defproject funcool/beicon "1.1.1" :description "Reactive Streams for ClojureScript (built on top of RxJS 5.x)" :url "https://github.com/funcool/beicon" :license {:name "Public Domain" :url "http://unlicense.org/"} :dependencies [[org.clojure/clojure "1.8.0" :scope "provided"] [org.clojure/clojurescript "1.8.34" :scope "provided"] [funcool/promesa "1.1.1" :scope "provided"]] :deploy-repositories {"releases" :clojars "snapshots" :clojars} :source-paths ["src" "assets"] :test-paths ["test"] :jar-exclusions [#"\.swp|\.swo|user.clj"] :codeina {:sources ["src"] :reader :clojurescript :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/beicon/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"]]) (defproject sqls "0.1.1" :description "SQLS" :url "https://github.com/mpietrzak/sqls" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0-alpha6"] [org.clojure/data.json "0.2.6"] [org.clojure/java.jdbc "0.3.6"] [org.clojure/tools.cli "0.3.1"] [org.clojure/tools.logging "0.3.1"] [org.xerial/sqlite-jdbc "3.8.7"] ;[com.taoensso/timbre "3.4.0"] [seesaw "1.4.5"] ] :main sqls.core :java-source-paths ["src"] :target-path "target/%s" :plugins [[codox "0.8.11"]] :codox {:output-dir "doc/codox"} :profiles {:uberjar {:aot :all} :dev {:global-vars {*warn-on-reflection* true} :jvm-opts ["-Xms4M" "-Xmx1G" "-XX:+PrintGC" "-XX:+UseG1GC"]}}) (ns doctopus.test-utilities (:require [clojure.test :refer :all] [doctopus.storage :refer [remove-from-storage backend]] [doctopus.test-utilities :refer :all]) (:import [org.joda.time DateTime] [org.joda.time.format DateTimeFormat])) (def iso-formatter (DateTimeFormat/forPattern "yyyy-MM-dd")) (defn make-today [] (let [today (DateTime.)] (.print iso-formatter today))) (defn clean-up-test-html [k] (remove-from-storage backend k)) (defproject onyx-app/lein-template "0.9.14.0" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject kamituel/systems-toolbox-chrome "0.1.0-SNAPSHOT" :description "Chrome DevTools support for systems-toolbox library" :url "" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.7.0"] [matthiasn/systems-toolbox "0.2.17"] [org.clojure/clojurescript "0.0-3308"]] :plugins [[lein-cljsbuild "1.0.6"]] :cljsbuild {:builds {:devtools {:source-paths ["src/devtools/cljs"] :compiler {:asset-path "js" :optimizations :simple :output-dir "resources/devtools/js" :output-to "resources/devtools/js/all.js" :source-map "resources/devtools/js/all.map"}}}}) (defproject onyx-app/lein-template "0.9.7.0-alpha18" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject tokyocabinet "1.24.4" :url "https://github.com/flatland/tokyocabinet" :license {:name "GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1" :url "http://www.gnu.org/licenses/lgpl.html"} :min-lein-version "2.0.0" :description "native tokyo cabinet libraries" :dependencies [[fs "1.1.2"] [conch "0.2.4"]] :source-paths ["somewhereovertherainbow"] :eval-in-leiningen true) (ns catacumba.impl.helpers (:import ratpack.func.Action ratpack.func.Function ratpack.handling.Context io.netty.buffer.Unpooled)) (defn action "Coerce a plain clojure function into ratpacks's Action interface." [callable] (reify Action (^void execute [_ x] (callable x)))) (defn function "Coerce a plain clojure function into ratpacks's Function interface." [callable] (reify Function (apply [_ x] (callable x)))) (defn promise "A convenience function for create ratpack promises from context instance." [^Context ctx callback] (.promise ctx (action callback))) (defprotocol IByteBuffer (bytebuffer [_] "Coerce to byte buffer.")) (extend-protocol IByteBuffer String (bytebuffer [s] (Unpooled/wrappedBuffer (.getBytes s "UTF-8")))) (ns hydrofoil.expectations.evolution (:require [expectations :refer :all] [hydrofoil.model :refer :all] [hydrofoil.core :refer :all] [hydrofoil.evolution :refer :all] [hydrofoil.utils :refer :all])) {:user {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; TODO: re-enable once clojars releases repo is up ;; "clojars" "http://s3pository.herokuapp.com/clojars" } :aliases {"repl" "standalone-repl"} :plugins [[lein-standalone-repl "0.1.3"]]} :production {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; "clojars" "http://s3pository.herokuapp.com/clojars" }} :heroku {:mirrors {"central" "http://s3pository.herokuapp.com/maven-central" ;; "clojars" "http://s3pository.herokuapp.com/clojars" }}}(ns hello.core (:require [hello.foo.bar :as bar])) (defn ^{:export "greet"} greet [n] (str "Hello " n)) (defn ^:export sum [xs] (bar/sum xs)) (ns beckon (:import [com.hypirion.beckon SignalAtoms] [sun.misc Signal])) (defn signal-atom [signal-name] (SignalAtoms/getSignalAtom signal-name)) (defn raise! [signal-name] (Signal/raise (Signal. signal-name))) (defn true! "Takes a function of no arguments, and returns a function taking no arguments which calls f and returns true. f has presumably side effects." [f] (fn [] (f) true)) (defn false! "Takes a function of no arguments, and returns a function taking no arguments which calls f and returns false. f has presumably side effects." [f] (fn [] (f) false)) (ns solver.core (:gen-class)) (defn determine-floor [xs] (let [to-direction (fn [index direction] {:index index :direction direction}) determine-floor (fn [floor data] (+ floor (case (data :direction) "(" +1 ")" -1)))] (reduce determine-floor 0 (map-indexed to-direction xs)))) (defn -main "I don't do a whole lot ... yet." [& args] (let [directions (clojure.string/split (slurp "input") #"")] (println (determine-floor directions)))) (defproject org.onyxplatform/onyx-datomic "0.10.0.0-beta2" :description "Onyx plugin for Datomic" :url "https://github.com/onyx-platform/onyx-datomic" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :dependencies [[org.clojure/clojure "1.8.0"] ^{:voom {:repo "git@github.com:onyx-platform/onyx.git" :branch "master"}} [org.onyxplatform/onyx "0.10.0-beta2"]] :test-selectors {:default (complement :ci) :ci :ci :all (constantly true)} :profiles {:dev {:dependencies [[com.datomic/datomic-free "0.9.5544"] [aero "0.2.0"]] :plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]] :resource-paths ["test-resources/"]} :circle-ci {:jvm-opts ["-Xmx4g"]}}) {:shared {:clean-targets ["out" :target-path] :test-paths ["test/cljs"] :resources-paths ["dev-resources"] :dependencies [[com.cemerick/double-check "0.5.7-SNAPSHOT"]] :plugins [[com.cemerick/clojurescript.test "0.3.1-SNAPSHOT"]] :cljsbuild {:builds {:beatha {:source-paths ["test/cljs"] :compiler {:libs [""] :optimizations :whitespace :pretty-print true}}} :test-commands {"phantomjs" ["phantomjs" :runner "dev-resources/public/js/beatha.js"]}}} :dev [:shared {:source-paths ["dev-resources/tools/http" "dev-resources/tools/repl"] :dependencies [[ring "1.2.1"] [compojure "1.1.6"] [enlive "1.1.5"]] :plugins [[com.cemerick/austin "0.1.5-SNAPSHOT"]] :cljsbuild {:builds {:beatha {:source-paths ["dev-resources/tools/repl"]}}} :injections [(require '[ring.server :as http :refer [run]] 'cemerick.austin.repls) (defn browser-repl-env [] (reset! cemerick.austin.repls/browser-repl-env (cemerick.austin/repl-env))) (defn browser-repl [] (cemerick.austin.repls/cljs-repl (browser-repl-env)))]}]} {:user {:mirrors {#"central|clojars" "http://s3pository.herokuapp.com/clojure"}} :production {:mirrors {#"central|clojars" "http://s3pository.herokuapp.com/clojure"}}}(ns spec-tools.visitor-test (:require [clojure.test :refer [deftest is]] [clojure.spec :as s] [spec-tools.visitor :refer [visit]] [clojure.set :as set])) (s/def ::str string?) (s/def ::int integer?) (s/def ::map (s/keys :req [::str] :opt [::int])) (defn collect [dispatch spec children] `[~dispatch ~@children]) (deftest test-visit (is (= (visit #{1 2 3} collect) [:spec-tools.visitor/set 1 3 2])) (is (= (visit ::map collect) '[clojure.spec/keys [clojure.core/string?] [clojure.core/integer?]]))) {:user {:plugins [[lein-try "0.4.1"] [lein-pprint "1.1.1"] [cider/cider-nrepl "0.7.0"]]}} (defproject ring/ring-core "0.3.2" :description "Ring core libraries." :url "http://github.com/mmcgrana/ring" :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"] [commons-codec "1.4"] [commons-io "1.4"] [commons-fileupload "1.2.1"] [javax.servlet/servlet-api "2.5"]]) (ns scrabble.test (:require [clojure.test :refer :all])) (load-file "scrabble.clj") (deftest lower-case-letter (is (= 1 (score-letter "a")))) (deftest upper-case-letter (is (= 1 (score-letter "A")))) (deftest two-letter-word (is (= 2 (score-word "at")))) (deftest bigger-word-1 (is (= 6 (score-word "street")))) (deftest bigger-word-2 (is (= 22 (score-word "quirky")))) (deftest all-upper-case-word (is (= 20 (score-word "MULTIBILLIONAIRE")))) (run-tests) ;; This Source Code Form is subject to the terms of the Mozilla Public ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; ;; Copyright (c) 2016 Andrey Antukh (ns uxbox.services.core (:require [clojure.walk :as walk] [cuerdas.core :as str])) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Main Api ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (def +hierarchy+ (as-> (make-hierarchy) $ (derive $ :auth/login :command))) (defmulti -novelty (fn [conn data] (:type data)) :hierarchy #'+hierarchy+) (defmulti -query (fn [conn data] (:type data)) :hierarchy #'+hierarchy+) (defmethod -novelty :default [data] (throw (ex-info "Not implemented" {}))) (defmethod -query :default [data] (throw (ex-info "Not implemented" {}))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Common Helpers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defn normalize-attrs "Recursively transforms all map keys from strings to keywords." [m] (letfn [(tf [[k v]] (let [ks (-> (name k) (str/replace "_" "-"))] [(keyword ks) v])) (walker [x] (if (map? x) (into {} (map tf) x) x))] (walk/postwalk walker m))) (defproject replete "0.1.0" :dependencies [[org.clojure/clojure "1.7.0"] [org.clojure/clojurescript "0.0-3422"] [org.clojure/tools.reader "0.10.0-SNAPSHOT" :exclusions [org.clojure/clojure]] [com.cognitect/transit-cljs "0.8.220"] [com.cognitect/transit-clj "0.8.275"]]) (ns time-tracker.invoices.handlers (:require [ring.util.response :as res] [time-tracker.users.db :as users-db] [time-tracker.projects.db :as projects-db] [time-tracker.timers.db :as timers-db] [time-tracker.invoices.core :as invoices-core] [time-tracker.util :as util])) ;; Download invoice endpoint ;; /download/invoice/ (defn generate-invoice [request connection] (let [users (util/normalize-entities (users-db/retrieve-all connection)) projects (util/normalize-entities (projects-db/retrieve-all connection)) timers (util/normalize-entities (timers-db/retrieve-all connection)) csv-string (invoices-core/generate-csv users projects timers)] ;; TODO: add current date in the invoice filename (-> (res/response csv-string) (res/header "Content-Disposition" "attachment; filename=\"invoice.csv\"")))) (defproject onyx-app/lein-template "0.9.7.0-alpha7" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defn swap [a i j] (assoc a j (a i) i (a j))) (defn generatePermutations [v n] (if (zero? n) (println (apply str v)) (loop [i 0 a v] (if (<= i n) (do (generatePermutations a (dec n)) (recur (inc i) (swap a (if (even? n) i 0) n))))))) (if (not= (count *command-line-args*) 1) (do (println "Exactly one argument is required") (System/exit 1)) (let [word (-> *command-line-args* first vec)] (generatePermutations word (dec (count word))))) (ns doctopus.test-utilities (:require [clojure.test :refer :all] [doctopus.test-utilities :refer :all]) (:import [org.joda.time DateTime] [org.joda.time.format DateTimeFormat])) (def iso-formatter (DateTimeFormat/forPattern "yyyy-MM-dd")) (defn make-today [] (let [today (DateTime.)] (.print iso-formatter today))) (ns clj-chrome-devtools.automation-test (:require [clj-chrome-devtools.automation :as a] [clj-chrome-devtools.automation.fixture :refer [create-chrome-fixture]] [clojure.spec.test.alpha :as stest] [clojure.test :as t :refer [deftest is testing]])) (stest/instrument) (defonce chrome-fixture (create-chrome-fixture)) (t/use-fixtures :each chrome-fixture) (deftest evaluate (testing "a call that takes longer than the default timeout should throw an exception" (let [[prior-default-timeout _] (reset-vals! a/default-timeout-ms 100)] (is (thrown-with-msg? RuntimeException #"^Timeout!.+" (a/evaluate "Array(1024 ** 3).fill().map(Math.random).length"))) (reset! a/default-timeout-ms prior-default-timeout))) (testing "a call that takes longer than the supplied timeout should throw an exception" (is (thrown-with-msg? RuntimeException #"^Timeout!.+" (a/evaluate @a/current-automation "Array(1024 ** 3).fill().map(Math.random).length" 100))))) (ns example.core (:require [clojure.string :as str] [example.lib :as lib])) (defn collatz [n] (lazy-seq (cons n (if (lib/even? n) (collatz (/ n 2)) (collatz (+ (* 3 n) 1)))))) (defmacro let1 [name expr & body] `(let [~name ~expr] ~@body)) (def x 42) (defn f [] (let1 x (* x x) (+ x x))) (->> (str/split "hoge\nfuga\npiyo" #"\n") (map #(str "[" % "]")) (str/join \newline)) (ns lab-notebook.core (:require [om.core :as om] [om.dom :as dom])) (defonce appstate (atom {})) (defn item-view [cursor component] (reify om/IRender (render [this] (dom/div nil (dom/div nil (:summary cursor)) (dom/div nil (:date-time cursor)) (dom/div nil (:notes cursor)))))) (defn app-container [cursor component] (reify om/IRender (render [this] (apply dom/div nil (dom/h1 nil "Lab notebook") nil (for [entry (:entries cursor)] (om/build item-view entry)))))) (om/root app-container appstate {:target (. js/document (getElementById "app"))}) (ns cmr.common.test.util (:require [clojure.test :refer :all] [cmr.common.util :as util])) (deftest test-sequence->fn (testing "vector of values" (let [f (util/sequence->fn [1 2 3])] (is (= 1 (f))) (is (= 2 (f))) (is (= 3 (f))) (is (= nil (f))) (is (= nil (f))))) (testing "list of values" (let [f (util/sequence->fn '(1 2 3))] (is (= 1 (f))) (is (= 2 (f))) (is (= 3 (f))) (is (= nil (f))))) (testing "empty vector" (let [f (util/sequence->fn [])] (is (= nil (f))) (is (= nil (f))))) (testing "empty list" (let [f (util/sequence->fn '())] (is (= nil (f))) (is (= nil (f))))) (testing "infinite sequence of values" (let [f (util/sequence->fn (iterate inc 1))] (is (= 1 (f))) (is (= 2 (f))) (is (= 3 (f))) (is (= 4 (f))) (is (= 5 (f)))))) (deftest this-should-fail (is (= 5 4)))(ns decktouch.handler (:require [decktouch.dev :refer [browser-repl start-figwheel]] [compojure.core :refer [GET defroutes]] [compojure.route :refer [not-found resources]] [ring.middleware.defaults :refer [site-defaults wrap-defaults]] [selmer.parser :refer [render-file]] [environ.core :refer [env]] [prone.middleware :refer [wrap-exceptions]] [decktouch.mtg-card-master :as mtg-card-master] [clojure.data.json :as json])) (defroutes routes (GET "/" [] (render-file "templates/index.html" {:dev (env :dev?)})) (GET "/data/input/:query" [query] (json/write-str (mtg-card-master/get-cards-matching-query query))) (resources "/") (not-found "Not Found")) (def app (let [handler (wrap-defaults routes site-defaults)] (if (env :dev?) (wrap-exceptions handler) handler))) ; https://projecteuler.net/problem=3 (ns euler.003 (:require [clojure.math.numeric-tower :as math])) (defmulti prime? "Returns true if a number is divisible by only 1 and itself, false otherwise." (fn [n] (cond (> 2 n) :not (= 2 n) :is))) (defmethod prime? :not [_] false) (defmethod prime? :is [_] true) (defmethod prime? :default [n] (empty? (filter #(zero? (mod n %)) (range 2 (+ 1 (math/sqrt n)))))) (defn primes-below [n] "Returns a lazy seq of all possible primes below n." (filter prime? (range (int (math/floor n)) 1 -1))) (defn possible-prime-factors-of [n] "Returns a lazy seq of all possible prime factors of n in order of largest to smallest." (primes-below (math/floor (math/sqrt n)))) (defn biggest-prime-divisor-of-n [n] "Lazily retrieves the first prime divisor " (let [possible-primes (possible-prime-factors-of n)] (first (drop-while #(not (zero? (mod n %))) possible-primes)))) (ns clojure.lang.apersistent-map (:refer-clojure :only [bit-and defmacro defn let loop +]) (:require [clojure.lang.counted :refer [count]] [clojure.lang.hash :refer [hash]] [clojure.lang.lookup :refer [contains? get]] [clojure.lang.map-entry :refer [key val]] [clojure.lang.operators :refer [and =]] [clojure.lang.seq :refer [first next seq]])) (defmacro map-hash [-seq] `(loop [entries# ~-seq acc# 0] (if entries# (let [entry# (first entries#)] (recur (next entries#) (+ acc# (bit-and (hash (key entry#)) (hash (val entry#)))))) acc#))) (defn map-equals? [m1 m2] (if (= (count m1) (count m2)) (loop [m1-seq (seq m1)] (if m1-seq (let [first-entry (first m1-seq) k (key first-entry) v (val first-entry)] (if (and (contains? m2 k) (= v (get m2 k))) (recur (next m1-seq)) false)) true)) false)) ;- ; Copyright 2011 (c) Meikel Brandmeyer. ; All rights reserved. ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. (ns vimclojure.core) (defn init-server [] ) (ns {{namespace}} (:import [com.badlogic.gdx Game Gdx Graphics Screen] [com.badlogic.gdx.graphics Color GL20] [com.badlogic.gdx.graphics.g2d BitmapFont] [com.badlogic.gdx.scenes.scene2d Stage] [com.badlogic.gdx.scenes.scene2d.ui Label Label$LabelStyle])) (declare ^Stage stage) (def main-screen (proxy [Screen] [] (show [] (def stage (Stage.)) (let [style (Label$LabelStyle. (BitmapFont.) (Color. 1.0 1.0 1.0 1.0)) label (Label. "Hello world!" style)] (.addActor stage label))) (render [delta] (.glClearColor (Gdx/gl) 0 0 0 0) (.glClear (Gdx/gl) GL20/GL_COLOR_BUFFER_BIT) (doto stage (.act delta) (.draw))) (dispose[]) (hide []) (pause []) (resize [w h]) (resume []))) (gen-class :name {{namespace}}.Game :extends com.badlogic.gdx.Game) (defn -create [^Game this] (.setScreen this main-screen)) {:user {:dependencies [[org.clojure/tools.namespace "0.3.0-alpha4"] [eftest "0.5.2"]] :repl-options {:color false} :plugins [[lein-cljfmt "0.4.1" :exclusions [org.clojure/clojure]] [lein-cloverage "1.0.6" :exclusions [org.clojure/clojure]] [lein-kibit "0.1.3" :exclusions [org.clojure/clojure]] [lein-eftest "0.5.2" :exclusions [org.clojure/clojure]] [lein-ancient "0.6.15", :exclusions [org.clojure/clojure]]]}} (ns leipzig-live.core (:require [leipzig-live.processing] ; Import action defs. [leipzig-live.eval :as eval] [leipzig-live.views :as view] [leipzig-live.framework :as framework] [reagent.core :as reagent])) (def initial-text "(->> (phrase [1 1 1 1] [0 1 2 0]) (where :time (bpm 90)) (where :duration (bpm 90)) (where :pitch (comp equal-temperament B major)))") (defonce state-atom (reagent/atom {:looping? false :error nil :text initial-text :music (-> initial-text eval/uate :value)})) (defn reload! [] (swap! state-atom identity)) (defn mount-root [] (reagent/render [view/home-page (framework/handler-for state-atom) state-atom] js/document.body)) (defn main [] (mount-root)) (main) (ns airhead-cljs.core (:require-macros [cljs.core.async.macros :refer [go]]) (:require [reagent.core :as r] [ajax.core :refer [GET POST]])) (def state (r/atom {:server "http://localhost:8080"})) (defn change-server! [event] (swap! state assoc :server (-> event .-target .-value))) ;; ------------------------- ;; Views (defn server-form [] [:div [:input {:type "text" :value (:server @state) :on-change change-server!}]]) (defn playlist-div [] (let [playlist (r/atom []) handler #(reset! playlist (% "items"))] (GET "http://localhost:8080/api/queue" {:handler handler :response-format :json}) (fn [] [:div [:h2 "Playlist"] [:ul (for [track @playlist] [:li (track "title")])]]))) (defn home-page [] [:div [:h1 "Airhead"] [server-form] [playlist-div] ]) ;; ------------------------- ;; Initialize app (defn mount-root [] (r/render [home-page] (.getElementById js/document "app"))) (defn init! [] (mount-root)) (ns dragon.generator (:require [dragon.config :as config] [dragon.web :as web] [stasis.core :as stasis] [taoensso.timbre :as log])) (defn run [routes out-dir] (log/infof "Generating static content to %s ..." out-dir) (stasis/export-pages routes out-dir) (log/info "Static generation complete.")) (ns pangram-test (:require [clojure.test :refer [is deftest]] [pangram :refer [pangram?]])) (deftest empty-sentence (is (false? (pangram? "")))) (deftest lowercase-pangram (is (pangram? "the quick brown fox jumps over the lazy dog"))) (deftest missing-character-x (is (false? (pangram? "a quick movement of the enemy will jeopardize five gunboats")))) (deftest another-missing-character-x (is (false? (pangram? "the quick brown fish jumps over the lazy dog")))) (deftest with-underscores (is (pangram? "the_quick_brown_fox_jumps_over_the_lazy_dog"))) (deftest with-numbers (is (pangram? "the 1 quick brown fox jumps over the 2 lazy dogs"))) (deftest missing-letters-replaced-by-numbers (is (false? (pangram? "7h3 qu1ck brown fox jumps ov3r 7h3 lazy dog")))) (deftest mixed-case-and-punctuation (is (pangram? "\"Five quacking Zephyrs jolt my wax bed.\""))) (deftest non-ascii-characters (is (pangram? "Victor jagt zwölf Boxkämpfer quer über den großen Sylter Deich."))) (ns fhofherr.clj-db-util.jdbc-template-test (:require [clojure.test :refer :all] [fhofherr.clj-db-util.support.test-db :as test-db] [fhofherr.clj-db-util.jdbc-template :as t] [fhofherr.clj-db-util.dialect :refer [h2]])) (deftest named-parameters (let [stmt "SELECT 1 AS result FROM dual WHERE 1 = :number"] (is (= {:result 1} (t/query-str h2 (test-db/h2-private-in-memory) stmt :params {:number 1} :result-set-fn first))) (is (nil? (t/query-str h2 (test-db/h2-private-in-memory) stmt :params {:number 2} :result-set-fn first))))) (ns continuo.postgresql-spec (:require [clojure.test :as t] [continuo.postgresql.schema :as schema])) (t/deftest schema-internal-tests (let [schema [[:db/add :user/username {:type :continuo/string}] [:db/add :user/fullname {:type :continuo/string}] [:db/drop :user/name]] cschema (schema/compile-schema schema)] (cschema (fn [sql] (println "Executing:" sql))))) (ns rill.event-store.psql-test (:require [rill.event-store.psql :refer [psql-event-store]] [rill.event-store.psql.tools :as tools] [rill.event-store.generic-test-base :refer [test-store]] [clojure.test :refer :all])) (def config {:user (System/getenv "RILL_POSTGRES_USER") :password (System/getenv "RILL_POSTGRES_PASSWORD") :hostname (System/getenv "RILL_POSTGRES_HOST") :port (System/getenv "RILL_POSTGRES_PORT") :database (System/getenv "RILL_POSTGRES_DATABASE")}) (defn get-clean-psql-store! [config] (tools/clear-db! config) (psql-event-store (tools/connection config))) (deftest test-psql-store (if (System/getenv "RILL_POSTGRES_DATABASE") (do (tools/load-schema! config) (test-store #(get-clean-psql-store! config))) (println "Skipped tests for rill postgres backend. Set at least RILL_POSTGRES_DATABASE environment variable to configure and enable tests"))) (ns discuss.test.lib (:require [cljs.pprint :as pprint] [cljs.test :refer-macros [is]])) (defn- summarize-results' [spec-check] (doall (map #(-> % :clojure.test.check/ret pprint/pprint) spec-check))) (defn check' [spec-check] (summarize-results' spec-check) (is (nil? (-> spec-check first :failure)))) (ns braid.search.ui.search-bar (:require [reagent.core :as r] [re-frame.core :refer [subscribe dispatch]] [braid.core.client.routes :as routes] [braid.lib.color :as color])) (defn search-bar-view [] (r/with-let [search-query (r/atom @(subscribe [:braid.search/query]))] [:div.search-bar [:input {:type "text" :placeholder "Search..." :value @search-query :on-change (fn [e] (reset! search-query (.. e -target -value)) (dispatch [:braid.search/update-query! (.. e -target -value)]))}] (if (and @search-query (not= "" @search-query)) [:a.action.clear {:on-click (fn [] (reset! search-query "")) :href (routes/group-page-path {:group-id @(subscribe [:open-group-id]) :page-id "inbox"}) :style {:color (color/->color @(subscribe [:open-group-id]))}}] [:div.action.search])])) (ns quil-site.core (:require [compojure.core :refer [defroutes GET]] [compojure.handler :refer [site]] [compojure.route :refer [files]] [ring.middleware.json :as json] [ring.adapter.jetty :refer [run-jetty]] [ring.middleware.stacktrace :as stacktrace] [quil-site.sketches :as sketches] [quil-site.views.about :refer [about-page]])) (defroutes app (GET "/" [] (about-page)) sketches/routes (files "/")) (defn dump-request [handler] (fn [req] (clojure.pprint/pprint req) (handler req))) (def handler (-> #'app dump-request site (json/wrap-json-body {:keywords? true}) json/wrap-json-response stacktrace/wrap-stacktrace)) (comment (def server (run-jetty #(handler %) {:port 8080 :join? false})) (.stop server) ) (ns leiningen.new.vdom-app (:use [leiningen.new.templates :only [renderer name-to-path ->files]])) (def render (renderer "vdom-app")) (defn vdom-app [name] (let [data {:name name :path (name-to-path name)}] (->files data ["index.html" (render "index.html" data)] ["dev.html" (render "dev.html" data)] ["project.clj" (render "project.clj" data)] "externs" ["externs/vdom.js" (render "externs/vdom.js" data)] "src/{{path}}" ["src/{{path}}/core.cljs" (render "src/vdom_app/core.cljs" data)] "resources/public/js" ["resources/public/js/vdom.js" (render "resources/public/js/vdom.js" data)] "resources/public/css" "resources/public/css/{{path}}.css" (render "resources/public/css/styles.css" data)))) (ns om-tut.core (:require [om.core :as om :include-macros true] [om.dom :as dom :include-macros true])) (enable-console-print!) (println "A new developer message. Pay attention, dev guy!") ;; define your app data so that it doesn't get over-written on reload (defonce app-state (atom {:list ["Lion" "Zebra" "Buffalo" "Antelope"]})) (om/root (fn [data owner] (om/component (apply dom/ul nil (map (fn [text] (dom/li nil text)) (:list data))))) app-state {:target (. js/document (getElementById "app0"))}) (defn on-js-reload [] ;; optionally touch your app-state to force rerendering depending on ;; your application ;; (swap! app-state update-in [:__figwheel_counter] inc) ) (ns audio-utils.mp3-encoder (:require [cljsjs.lamejs] [audio-utils.worker :as w])) (defrecord MP3Encoder [bit-rate sample-rate next] w/IWorkerAudioNode (connect [this destination] (reset! next destination)) (disconnect [this] (reset! next nil)) (process-audio [this data] (let [int-data (mapv (fn [samples] (into-array (map #(* 32768 %) samples))) data) encoder (js/lamejs.Mp3Encoder. (count data) sample-rate bit-rate) encoded #js []] (doto encoded (.push (apply (aget encoder "encodeBuffer") int-data)) (.push (.flush encoder))) (some-> @next (w/process-audio encoded))))) (defn mp3-encoder [{:keys [bit-rate sample-rate] :or {bit-rate 128 sample-rate 44100}}] (map->MP3Encoder {:bit-rate bit-rate :sample-rate sample-rate :next (atom nil)})) (ns org.knotation.editor.line-map (:require [clojure.set :as set] [org.knotation.state :as st] [org.knotation.editor.util :as util])) (def empty {}) (defn compiled->line-map ([compiled] (compiled->line-map empty compiled)) ([line-map compiled] (let [modified (fn [m ed in out] (if (and in out) (update-in (update-in m [ed in] #(conj (or % #{}) [:out (dec out)])) [:out (dec out)] #(conj (or % #{}) [ed in])) m))] (:map (reduce (fn [memo elem] (let [ed (if (= ::st/graph-end (::st/event elem)) (+ 1 (:ed memo)) (:ed memo)) in (::st/line-number (::st/input elem)) out (::st/line-number (::st/output elem)) lns (count (::st/lines (::st/input elem))) comp (:compensate memo) m (:map memo)] {:ed ed :compensate (if (> lns 1) (+ (dec lns) comp) comp) :map (reduce (fn [m delta] (modified m ed (+ delta in) (+ delta comp out))) m (range lns))})) {:ed 0 :compensate 0 :map line-map} compiled))))) (defn lookup [line-map editor-ix line-ix] (get-in line-map [editor-ix line-ix] #{})) (ns onyx.static.default-vals) (def defaults {; input task defaults :onyx/input-retry-timeout 1000 :onyx/pending-timeout 60000 :onyx/max-pending 10000 ; task defaults :onyx/batch-timeout 1000 ; zookeeper defaults :onyx.peer/zookeeper-timeout 50000 ; peer defaults :onyx.peer/inbox-capacity 1000 :onyx.peer/outbox-capacity 1000 :onyx.peer/drained-back-off 400 :onyx.peer/sequential-back-off 2000 :onyx.peer/job-not-ready-back-off 500 ; messaging defaults :onyx.messaging.aeron/embedded-driver? true :onyx.messaging.netty/thread-pool-sizes 1 :onyx.messaging.netty/connect-timeout-millis 1000 :onyx.messaging.netty/pending-buffer-size 10000 :onyx.messaging/completion-buffer-size 50000 :onyx.messaging/release-ch-buffer-size 10000 :onyx.messaging/retry-ch-buffer-size 10000}) (defproject {{app-name}} "0.1.0-SNAPSHOT" :description "" :url "" :license {:name "" :url ""} :dependencies [[aero "1.0.0-beta2"] [org.clojure/clojure "1.8.0"] [org.clojure/tools.cli "0.3.5"] [org.onyxplatform/onyx "{{onyx-version}}{{onyx-version-post}}"] [org.onyxplatform/lib-onyx "{{onyx-version}}.{{lib-onyx-minor}}"]] :source-paths ["src"] :profiles {:dev {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"] :global-vars {*assert* false}} :dependencies [[org.clojure/tools.namespace "0.2.11"] [lein-project-version "0.1.0"]] :uberjar {:aot [lib-onyx.media-driver {{app-name}}.core] :uberjar-name "peer.jar" :global-vars {*assert* false}}}) (defproject jnanomsg "0.1.0" :description "Nanomsg clojure/java wrapper/" :url "https://github.com/niwibe/jnanomsg" :license {:name "Apache 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.txt"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/core.async "0.1.267.0-0d7780-alpha"] [net.java.dev.jna/jna "4.0.0"]] :jvm-opts ["-server" "-Xmx2g" "-XX:+UseG1GC"] :source-paths ["src/clojure"] :java-source-paths ["src/java"] :plugins [[lein-javadoc "0.1.1"]] :javadoc-opts {:output-dir "docs/_build/javadoc" :package-names ["nanomsg" "nanomsg.jna" "nanomsg.pubsub" "nanomsg.reqrep" "nanomsg.bus" "nanomsg.pair"]} :main nanomsg.benchmark :profiles {:uberjar {:aot :all}}) (defproject onyx-app/lein-template "0.10.0.0-beta16" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "MIT License" :url "http://choosealicense.com/licenses/mit/#"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) (defproject todomvc-re-frame "0.10.5" :dependencies [[org.clojure/clojure "1.10.0"] [org.clojure/clojurescript "1.10.439"] [reagent "0.8.1"] [re-frame "0.10.5"] [binaryage/devtools "0.9.10"] [secretary "1.2.3"] [day8.re-frame/tracing "0.5.1"] :plugins [[lein-cljsbuild "1.1.7"] [lein-figwheel "0.5.18"]] :hooks [leiningen.cljsbuild] :profiles {:dev {:cljsbuild {:builds {:client {:compiler {:asset-path "js" :optimizations :none :source-map true :source-map-timestamp true :main "todomvc.core"} :figwheel {:on-jsload "todomvc.core/main"}}}}} :prod {:cljsbuild {:builds {:client {:compiler {:optimizations :advanced :elide-asserts true :pretty-print false}}}}}} :figwheel {:server-port 3450 :repl true} :clean-targets ^{:protect false} ["resources/public/js" "target"] :cljsbuild {:builds {:client {:source-paths ["src" "../../src"] :compiler {:output-dir "resources/public/js" :output-to "resources/public/js/client.js"}}}}) (ns formlogic.db (:require [yesql.core :refer [defqueries]])) (def db-spec {:classname "org.postgresql.Driver" :subprotocol "postgresql" :subname "//localhost:5432/formlogic" :user "formlogic"}) (defqueries "sql/get.sql" {:connection db-spec}) (defqueries "sql/insert.sql" {:connection db-spec}) (defproject inlein/client "0.1.0-SNAPSHOT" :description "Inlein your dependencies." :url "https://github.com/hyPiRion/inlein" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [] :source-paths [] :java-source-paths ["src"] :javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] :main inlein.client.Main :scm {:dir ".."} :aliases {"javadoc" ["shell" "javadoc" "-d" "javadoc/inlein-${:version}" "-sourcepath" "src" "inlein.client"]} :plugins [[lein-shell "0.5.0"]] :uberjar-name "inlein-%s.jar" ;; to avoid complaints from Leiningen :profiles {:uberjar {:aot :all} :dev {:dependencies [[org.clojure/clojure "1.8.0"]]}}) (ns such.random "Random numbers and crypographic hashes" (:import org.apache.commons.codec.digest.DigestUtils)) (defn guid "A random almost-certainly-unique identifier" [] (str (java.util.UUID/randomUUID))) (def uuid "Synonym for `guid`" guid) (defn form-hash "Returns a SHA-1 hash (encoded as a hex string) from the `prn` representation of the input. Use for collision avoidance when the highest security is not needed." [form] (DigestUtils/sha1Hex (pr-str form))) (ns time-tracker.core-test (:require [clojure.test :refer :all] [time-tracker.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (= 0 1)))) (defproject ohpauleez/cmma "0.1.0-SNAPSHOT" :description "Clojure + Make Managed Applications" :url "https://github.com/ohpauleez/cmma" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] ;; Try nrepl 0.2.5 and reply 0.3.5 - :( [org.clojure/tools.nrepl "0.2.3"] [reply "0.3.4" :exclusions [[ring/ring-core]]] [com.cemerick/pomegranate "0.3.0" :exclusions [[org.apache.httpcomponents/httpclient] [org.codehaus.plexus/plexus-utils] [commons-codec]]] [pedantic "0.2.0"] [org.eclipse.jgit/org.eclipse.jgit.java7 "3.4.1.201406201815-r"] ;; Patch up deps [org.apache.httpcomponents/httpclient "4.1.3"] [org.codehaus.plexus/plexus-utils "3.0"] [commons-codec "1.5"]] :global-vars {*warn-on-reflection* true *assert* true} :pedantic? :abort) (ns clj-templates.config.main-config (:require [integrant.core :as ig] [environ.core :refer [env]])) (def main-config {:handler/main {:db (ig/ref :db/postgres)} :server/jetty {:handler (ig/ref :handler/main) :opts {:port 3000 :join? false}} :db/postgres {:jdbc-url (env :database-url) :driver-class-name "org.postgresql.Driver"} :logger/timbre {:appenders {:println {:stream :auto}}} :jobs/scheduled-jobs {:hours-between-jobs 1 :db (ig/ref :db/postgres) :es-client (ig/ref :search/elastic)} :search/elastic {:hosts ["http://127.0.0.1:9200"] :default-headers {:content-type "application/json"}}}) (defproject io.aviso/twixt "0.1.6" :description "An extensible asset pipeline for Clojure web applications" :url "https://github.com/AvisoNovate/twixt" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [ring/ring-core "1.2.1"] [org.mozilla/rhino "1.7R4"] [com.github.sommeri/less4j "1.2.1"] [de.neuland-bfi/jade4j "0.4.0"] [io.aviso/pretty "0.1.8"] [hiccup "1.0.4"]] :codox {:src-dir-uri "https://github.com/AvisoNovate/twixt/blob/master/" :src-linenum-anchor-prefix "L"} :profiles {:dev {:dependencies [[log4j "1.2.17"] [ring/ring-jetty-adapter "1.2.0"]]}}) (defproject clj-fst "0.1.0" :description "Finite State Transducers (FST) for Clojure" :url "https://github.com/structureddynamics/clj-fst" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.6.0"] [org.apache.lucene/lucene-core "4.10.2"] [org.apache.lucene/lucene-misc "4.10.2"] [lein-marginalia "0.8.0"]] :source-paths ["src/clojure"] :java-source-paths ["src/java"] :target-path "target/%s" :marginalia {:exclude ["utils.clj"]}) (defproject java-s3-tests/java-s3-tests "0.0.1" :dependencies [[org.clojure/clojure "1.5.1"] [com.reiddraper/clj-aws-s3 "0.4.2"] [clj-http "0.7.1"] [cheshire "5.1.0"]] :profiles {:dev {:dependencies [[midje "1.5.1"]]}} :min-lein-version "2.0.0" :plugins [[lein-midje "3.0.1"]] :description "integration tests for Riak CS using the offical Java SDK") (defproject scrabble "0.1.0-SNAPSHOT" :dependencies [[org.clojure/clojure "1.6.0"] [thinktopic/cortex "0.1.0-SNAPSHOT"]] :main scrabble.core) (ns bocko-ios.core (:require bocko.core)) (defn ^:export init [canvas-view-controller] (bocko.core/set-create-canvas (fn [color-map raster width height _ _] (add-watch raster :monitor (fn [_ _ old new] (when-not (= old new) (doseq [x (range width)] (let [old-col (nth old x) new-col (nth new x)] (when-not (= old-col new-col) (doseq [y (range height)] (let [old-color (nth old-col y) new-color (nth new-col y)] (when-not (= old-color new-color) (let [[r g b] (new-color color-map)] (.plotXYRedGreenBlue canvas-view-controller x y r g b))))))))))))))(ns isla.talk (:use [clojure.pprint]) (:require [clojure.string :as str]) (:require [mrc.utils :as utils])) (defn room-intro [room] (str "You are in the " (:name room) ". " (:summary room))) (defn room-already [name] (str "You are already in the " name ".")) (defn room-not-allowed [name] (str "You cannot go into the " name ".")) (defproject spamscope "2.3.0-SNAPSHOT" :resource-paths ["_resources"] :target-path "_build" :min-lein-version "2.0.0" :jvm-opts ["-client"] :dependencies [[org.apache.storm/storm-core "1.1.1"] [org.apache.storm/flux-core "1.1.1"]] :jar-exclusions [#"log4j\.properties" #"org\.apache\.storm\.(?!flux)" #"trident" #"META-INF" #"meta-inf" #"\.yaml"] :uberjar-exclusions [#"log4j\.properties" #"org\.apache\.storm\.(?!flux)" #"trident" #"META-INF" #"meta-inf" #"\.yaml"] ) (ns uxbox.util.data "A collection of data transformation utils.") (defn index-by "Return a indexed map of the collection keyed by the result of executing the getter over each element of the collection." [coll getter] (let [data (transient {})] (run! #(assoc! data (getter %) %) coll) (persistent! data))) (def ^:static index-by-id #(index-by % :id)) (defn remove-nil-vals "Given a map, return a map removing key-value pairs when value is `nil`." [data] (into {} (remove (comp nil? second) data))) {:dev {:aliases {"test-all" ["with-profile" "dev,1.8:dev,1.6:dev,1.5:dev" "test"]} :codeina {:sources ["src"] :reader :clojure :target "doc/dist/latest/api" :src-uri "http://github.com/funcool/buddy-core/blob/master/" :src-uri-prefix "#L"} :plugins [[funcool/codeina "0.3.0"] [lein-ancient "0.6.7"]]} :1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]} :1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]} :1.8 {:dependencies [[org.clojure/clojure "1.8.0-beta2"]]}} (set-env! :source-paths #{"src"} :dependencies '[[radicalzephyr/boot-junit "0.1.1" :scope "test"] [jeluard/boot-notify "0.1.2" :scope "test"] [net.sf.jopt-simple/jopt-simple "4.9"]]) (def +version+ "0.1.0-SNAPSHOT") (require '[radicalzephyr.boot-junit :refer [junit]] '[jeluard.boot-notify :refer [notify]]) (task-options! pom {:project 'http-server :version +version+ :description "A Java HTTP server." :url "https://github.com/RadicalZephyr/http-server" :scm {:url "https://github.com/RadicalZephyr/http-server.git"} :licens {"MIT" "http://opensource.org/licenses/MIT"}} jar {:file "server.jar" :manifest {"Main-Class" "net.zephyrizing.http_server.HttpServer"}}) ;;; This prevents a name collision WARNING between the test task and ;;; clojure.core/test, a function that nobody really uses or cares ;;; about. (if ((loaded-libs) 'boot.user) (ns-unmap 'boot.user 'test)) (deftask test "Compile and run my jUnit tests." [] (comp (javac) (junit))) (deftask build "Build my http server." [] (comp (javac) (pom) (jar))) (defproject io.aviso/rook "0.1.2" :description "Ruby on Rails-style resource mapping for Clojure/Compojure web apps" :url "https://github.com/AvisoNovate/rook" :license {:name "Apache Sofware Licencse 2.0" :url "http://www.apache.org/licenses/LICENSE-2.0.html"} ;; Normally we don't AOT compile; only when tracking down reflection warnings. :profiles {:reflection-warnings {:aot :all :global-vars {*warn-on-reflection* true}}} :dependencies [[org.clojure/clojure "1.5.1"] [org.clojure/tools.logging "0.2.6"] [compojure "1.1.6"] [org.clojure/core.memoize "0.5.6"]] :profiles {:dev {:dependencies [[ring-mock "0.1.5"]]}} :plugins [[test2junit "1.0.1"]]) (defproject onyx-app/lein-template "0.8.11.2" :description "Onyx Leiningen application template" :url "https://github.com/onyx-platform/onyx-template" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories {"snapshots" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false} "releases" {:url "https://clojars.org/repo" :username :env :password :env :sign-releases false}} :plugins [[lein-set-version "0.4.1"]] :profiles {:dev {:plugins [[lein-set-version "0.4.1"] [lein-update-dependency "0.1.2"] [lein-pprint "1.1.1"]]}} :eval-in-leiningen true) ���� )3 "$  ' & "    * !  +$52 #& !%$-  1 $)(0    & 0% )  %2#& 8 % *1     "  % '     " 3 * !!    $ # .  !0 #%#  = 6$   &! %!( ! M   3$ !#  $  3$"1, [% - #     (* )%!A23!"(7(  ''   6  3    !*   ' #=) 24  &   7,  !/3   8   5 <    !  0#!2    )  8& <  6 $  " ""% ! * E  3    3  3 #;3.  !    $ $ . %$3  " $"! $ "  $"#    &."$#*   & !''*     I /%#     -&%!'  &##  %!   !2*"&' - #  /& ('.    ) #  "' , 7        $'%# 2)3 '&  (   $D..!) '!    & !6 ( (    $ )'<, '$'/( !% ![4 ! � /) %0�*����? 4La  r foy tid se1.lipltaarrasiunorrimaitl mopautgepe sesacloh s.calahockcrusidheuln dipopsp vabeiealda b lisnsllwohaicod, APshioxtmpenbaanRectfiouve d0.prchastemeceat tcoleer anea cldereonste ins t to in on ve nexte conwitchecomre redeved s aandcloterctirepde reaprowarourle 0.ce enter ke Add to the Use ing Fix testfile profrommentmplelein of RemoSet name0.1.ase jurelect testMake for and ning back turn ationpments for cy to Update ClojureRevert Change a test Prepare t release cycle.dependenversion version dependeUpgrade t versio insteadstead of tscreioanfdplum.gy-hvbwAUS01CkRjxPMT2FO5H:IN7,64DL"8/3qE'()9BJ`W?_zG!+>KQV����* �_aX� �K�b-k��RuV c���Y�}"�˸�d�G �ͱbq�˸�d�3 �|ȶ@��6�Ӹ^�_bq��] �Y�ѷ��Z�E��Ć_�ҹ�y|��PQ%�����w��R�o�ZR��_\����������Z�`Xѱ%�\8U�/��T��_��Q%���kȶDZ;ܥe����Ƿ�a��&P]�(`(\BO��"���ҹ����sc��̀� s[�^r�±h�����* ��� ���P]p���0f�K ����_���:�[�`7dBòńa��b�ö����X�_�G5_a#]�ѹ��Rk� ���W ��� ������M�����& �J�E�T������� \8/����� ��Ày�E�\���Ǹ���f�"�0�_�Ǡ"ø��Rk���������Xѹ����� ���K r��������±E�������±�\~��O�q�H��1L8� ��� K�^�N�q���_gVsca�m�\���ȶDZ�˕�:\��FM��X�_� �cG�����������ɽ.�����Rk}��)^`� s[�����'Y���"��k�LYEV�j)V��_hS�_Ǹ�S�P�����Ƿ�a)�&P]��ѶD_h�ſ�Ǻ���o���Z���G��� ����FM�����6�ϱh�����2���ѶD˸�d׿���`bq���^'��#T�����Ըd�J�(f� s[_ba�%���'4��ı���_϶��7`ȶ�5��^�+hW� K��%��ɾ��:Zd���f��F`��s��U�ѹ,�=�׷z�Q%H��\��_�ıyK���&N� �3IJ���ƷPQ7���X�_�[�db���A �����D�k������•˸�d�BϺ�Mo�θ^_bq�����M�R����Đ����Ձ�����3 c��������W�A�E�/�U��Zœ�ѸDZ�ȥ\P����Ta�A���\�Ǎ�� QLπ�H�ZDh^�/��WA ��6�τ�ҹ��b��^M� c��Vȳ��n��8��V���1�µF�Ѹ�_��|� �Ѹdz�\P]�>@ [_� f�>@ [okW�Q������\���Ú�� fj����ѸDZ�ȗ�7��Q4���3 �±J���J^`��˸�d�%��v��bq��θı˶��������W���1L8���Y��.ȱ"��`��������n�¹^\U5�,0[��WN�����^Y҈��Rp�������3 �±�Q7`@ [��^�/�Ru�!ĵ��2�ǀ ����� �F���Wk ?En������3`�τ��K2���"���z�ҹ��܋�Q%���� s[�V �±����S����|���2��(�˜�Ͽ����7����rU5�ı��/�u������_'#]��Q�3�vf��Y��&`wѶs[��ѸDZ�ȗ��`�7�̈O� �€��j8Pn��V����|j'j��Ҁ\�Ǘ�"���z�RZ�A ����D�kpU'�ҹ��E����Ǹ��\ +� ��Q��z��� [���/����|��-�� �������� �!�o_^M� [��6�^�/��7��<�p��TZ�)4�����0T4�%!�����='7_KB-kKB„�P�����������&]�ҹ���"� ���b�9��ƴ�^�/��F��������o_q���q��"������������ȹ1��³�vD��̱�>T'ZS��j)V���5�F�����WE�rn�����\��P����9��ƴ��ҹ��� �� �tr���I̓ �`\��n�+��3M�|i!^ŽdǸ��O_#��h ���YX ��ȵ[±�Tc�i�&���Ѹ�_4�� �1!�ZG��l�_RZ�Lú��^\/c��HP��8��Z]hŲ�+^��Ų�*������D�_�����&���^��ba�-�� ��ʺ��Q�? KB����^�샂��N������ M�L�b���ª�Q%��3U23`���R(�P����n\��'a���_�2��˲���ĺ����I���3��zG�Ǹ��K�� M���K((ZD�º�\8��ݸȱ϶�_���Q%�J@|��Q%�����C�^�H�ZD��Q%���\���^�Z�Y�±}�m�����������W�'E�(��U5��C]gh���<r:X� ~RY��`Z�`���h��-�Y�?�Z�`���dJ^��'pU��B��i!�c����K�"������Z�Ffa���b�W�b麹�zx�^žZ��=4� Ǹ�n����b���`�8U�F��۹�,�O��ⶹ�9]��^���ڿDZ�aq��p��$��±��̫��`�$�Sx��?��ϳcY*:#]���1� ��&Ć�e��� ϱKB_b5�����-��e�����ca� �bw�.Y�d�_�7`Z�~a��2[��3�±�4���V�j�7���±k���#���Ǹ�SB�� ���5�Vna�>@�%��O�5��HGua-��.ƷWj�V��F���(ǿ��w��m1�����e���e�������^`cJ�N�VȾ�Ļ�n���^_a< ]\�S_a^�]�%��_am�4⵸+�a��̱ 3���h���UkZ���G���e������)�`Z�Y�±���݀�G��[]���$�2�� ���ɼ,�|����-a�砡���/�7�Ըd[��H�+F`��H��H�Y��.�����X�_�������.o�gE¿ [���._c��:���Θ�֬�±����́�������._a� �zG� [�(�����Zd��cg����q��"��`j��S�a������j�^P8o���2�dz�����=���3��J����:��8^X�Y_\ϱ� N�E�r^…�&�gE±b� �3����+WK����EV�)\�Z_���_#�@Ʒ�[��,���d�Yc�n Ǡ����Xѻ��ی�Xѻ�`a�I��̀Y*l迷Z�����)���?��dZ�Y� scǿ��'8[�����vD�O�o�����%�_a��/������_�KU��[��Y��&`)�`6�ϱb迸Mo���d��8��\����ǿ���� �'p1�����7�����`  �:^�Y\����`�������N�%kc���`�麹�z Vó�7��S�_bȶDZ;���hK1ρ#��T�b��`R5�c^��,����'a-1�x�_j�z������^'Ǹ�S�P]�������Z��X� Q7`7��SZO�Go�����,����gE¿ c�R����k����|��b�Z迷Z��RZ��ҘGD��X�:phK�Ǹ���/�Ć��RG��b/_\�g�3]��\��lR�XL�����ѶD�KB_bVϸ�^g \}Q�> �W��� �]c׷ZҀWNF`�%'�(�±��TԸd���H�ǿ±[�am����8�.��� Va��^�dZ�T@O_a���$���`���^� \��D�k0 :��0f��U�v�Z�3r����Y���c\P]� \@|\v�����+��Q7`w�����_ ���A���R�����)�`ö`B��%�ó��0�r��׷�U��S��h�F��q�����^o�Zd #n[�2^�_a�y|b�V M����e��C����t� �._aY��&`�������q��0 �ѳca�ͥe�������[��P���[�ҁ�I���/�7���e���������̠����q��0 �ѳca�֥e��������4 ������hK�����������hK1ρ���* ��������-a�����;���եe���j)������ց������S4]���* �_����H�G���֘)\�Z����.ܺX�u���S`;ܗY���J�,ft��� �r:p1�?���̠���L�69���b����{��a���* �'���=���3��J����ԸdY*U�F��Y�(��2��_bm�Y�����ވ���&ZSL��?�����̱���a���* �����9�ұ��baI���ͥe`m���T���I������;�����p�gE¿kR���{��I��aq� _�Y��&���d #n��� s[_b�(�C�`Xѳǿ���&�E���%�gE˜����Z���i!U_m������X�u��N��\ ���.�e�����X��Ų���X��Ų�+a������͏Y��&`q������Ըd��� u�V�_aE�\lSL��ܺ��9�|/����/����P��]#]b^�Y��4=���Y��&`������ӁIII̅x�bX�M`tr�Y�"��[_a0 A��ԸdZ迷kaEұj��zT�܋��TG[¸�Z�`t��1t�±�G��̱��5�ȱ#�� �϶�_�ŷz�ý^���±bW<��!�c�����.��'�����& �Y�ۏe`m�����I������;�����ù0���G�j]��Q��2[±T���a6�ϱh�1����麹�zZZ�Y�±�%'VȱRu32��Y���Y��8/��^�`�&]�����Ƿ�a� TGc�#����)������^WLUy|��b���U����3 ��l迷kcw��+\ ���b�y|�Ş� H����ظ*ɼ,�|����-a��Ѷ���0�r�_�������!H�+a��E��/�ЄG� [��^�c�a���* ����X�_j��S�a���ჶ�8�N 0 �����ͥe��C���ᗺc��3��ŷ*��W� scaN���P��"��`�io�YMD�g�D����|a�B�z��T�3����ύ)\���2�-��Vȱ�Ffa`\P��_�HA����/�5����0fN� ���3��z�i�&]�U_�3�7�„���� V����N� ������/�T._a��U�`a%�+�U��z-7�=��麹�zg��zJ^`�L.ǵ��Yǿ��^��?���DŽY+p��c����I�����;���ժ� ���A��ǿ����Rk��I��I�t��[_ �|�b31���XL�����4�ŷ����`M>�����й3]��2�Ga^�a��"��`I��������ɾ�����0f ���tp��L�aj�zG� [���k[�Z�cE�/H[�:��`�#`�����ŵ��U'��O�c^��»�&���`ȶ��!�`gVsc6�ϳ������6�ϱhr/�"�����Y��+��O�c7���±bKBVRY�˷?�c��HPW(��q����_\��S۱���Ըd���$�]^am���^��?�����-a�̓kq��$����\� s[��`�7`��[|3�Ww�S��b�ȹ�ć� s[��`F���g��z�%'� �hYǿ±�³C�Q��R��#�,��zar�ĻZ�@���R��#��`�7`�,��]Z^_ KB�%'�%Z�o'T��� � +� sca-�#n ¿��p�KB��������챻 s[�:��ȱk϶�6���ÀN���„a�����Ѹb����hKH��_aS���Y�O��Y�����8���E�L��Xѱ^r�/1���@H���Wǿ±b�V������-�����)�`����:L1�Z�۶>T4�,��]۹�,�Oj��[��Z�&�_kv(�zb0��Q%N�d"�P���P��H���t��$=��q��\��\ ���h��J^��#�IJ |^��J^��\�IJ O����N�J���J^`gE¿ c�����* �'����$Tĺt��[G�`0f^a3�HP��dYǿ±N��������0MĴ��^�bm�����Ƿ�a"�P] �C��|Ru��8�1#�W�/�� s[�C]�h �l迷k(ZsG麹�zJ��� �Ϟ��^…Lú�l迷kcLú��Xѳ�(�3='a�F�aP2�L`�H���˲�+��(�±^ ^~-�!~Z���ﶲ�������������������Y�/�L����)�`���\�³��&],�7��zŲ�� Š��/�7�- 液��_^j�zh���%���5�ȱ[����^o�O�_a\�Z�3rn#T��[G�`a��ӱ�`cM>�KB˲�+ � ��U�F��:�`����R�ZD2�c��±����EV��T� sc� �����T.�θ��`� sc�1�@��[G�`Z����\P]aW�b7<� �%�7'WZR��Ըd���\�w[��������M��[�]�c˶"����w��R���E>�Z_Z�3rU�"��Z�3r1,^���������j)V���ǿ��(��U23`��U,��z YϷ��`�ȶ�]�9._Z��>@w��R�C�&�˶�C��θ���'a7��z��U� ó�/�OĿ�0M�/c��G��Z�~/^���#���F`� 4��O�_AcZ�&��dg�#�\�Q |�%'�(�ˆ*�d�.ȱ������+l��|� sc3� ���\�WGD��� a����^��d�<�����X�_i����X�B� ��_b�9��ƴ��ҹ��V�T�8]a$}����^�����)�b��ka��U��&G�p�Z�Ǹ��\ +-kpU�r��G`���� ���ҹ����"��`a�I��ހk��_a�X�B� ��� ���ҹ��W�������n� sca��W�HP�����K�q���SܺX�u�=4���l�(�…�J^��Z�&�����#�䮍��Z迷Z���H��_a��X�����ҽ� [㸹q��t�%'\ ML�^rdt�����i!���� sc�3��.ȳ�BU�r�P]�� cYMsc� s[�e���d��`j��caJ�G�`RuZ�Z<�T�����L.a� ��T.o`����W�&N� a��Q%U��Ĺ��:���ij��϶�`��/v�-�\�����䃂�[P�l):���Q7`��iok^�ǿ±b"���0M�a�������_a6�ϱEV��di!�(�%'"�P�Rki���W �H��T���������k#n��3Z��������б�������^�hK�#�˲�{��ٱb�8�\ �麹�z¸��2��¿��G��[��dB��%���沵#`�3b�N��R��iN�q�l�9����[�PM?`� �±�%'W���3��VvM��L��ĵ��`\�'��ca�����ĵ�����B������@��FM�B�;ܱ@�)^`���U5�j8���zZ����%�%���Ru����/�G�� ��^���?�\�±۶��X�#]a�IJ�ij��:Z��kg�3]������������Z�)4]�'������<MV��Y���/��Dnb���ˀ��f��F`^V�_�2�^ĺ����$TĺtI������;���Ձ����^����Z����gM�`^a)�������Rk����͠ު���#]- ���e��ܺ"������-ZSL��e��ɼ,�|����-a���e���X�_j��SpQ���vYG� [θ���b�S��gG�.�|� ��⵸+RZ�Lú��j)V�`���%�ȷ5��|��YG� [_�7'غ�ұ#]^r�/��:��83�AǾWA$��C���˱"�Y�/_��@Ʒ�[��,��S����?�\ϖ��k����3U,��zb�����C��|�G�A2��(�±�+a���O��B���B���0���='��w����9��ƴ��ҹ�7����X�_a�������e���Ѹ�誁����͎dm���c����ѹ,����^�kv�[��zN���³�A ������O�_��Z����Dn���������g \@���9����S_��� caNU'���^�˹d/�*U� iaW�/S`L�ȶ5��3��zJ���J^�±c-�K��1������`h\_^��GD��d����������_�%'E�r^€j��c���)�`���_#����dz�pU��� fX�����E�rĻ'�E�\U�-�g \}�hE�rC��,��za��g \@����aZSLn�������+^Y� cbϹ�����Ǖ��O4]p�N�k������E�\�}�TP��3��z��c�ŷz�ý�pH��Zf,0[�����"���C)�`aWY�����Y�ZR������N�j��� ����O϶�_-�Z���V��;ܱ��ȃR�ZD���O����g�#n��F`��3�[��W����8g Y�_ѹ,����Թ�:϶�6�(���϶ó�mUL�,&�����RkL1����9]���㮍�L ���`\�j�<��_T���%'�%k ]��`BXL_�Y�ܺX�u�K�_b� V���Y-�ȶ@�_���� N�'-�X�Bn�+-kVȕ ���d��)� Ǿ�� �F���,��;��#`#]�F���^�`^��d�%'��(��U�#T��乼Y����!^�䠆//�L��K�q����!��Y��&`�(��Є����փ���v����H����� B���E��/lS�3�Y��w���1�����Rk�&���a����ձRY���aII����;������a#�W���Wǿ?"����e���e���e���e���e��� ���A��c^rO����ҹ���J����bb�����i�j4�=������?����K�`���X�_x�^ ��X��Ų���X��Ų�+a������U�+^aW���1L8�j)V�������¹Nć��H���`Z�c�XL��Y�����)�`-�.��G�Mҁh��<��"���W����B��>T�/2�϶ 9�� s[���a��^�En���_� �S����^�En���"�����j'��^��^'wѶD�O4]a��+������XL ��ڶ���o�����\ �Ĺ�+-7d-�r����\�� �`������WZ`� sca��[M���m�4�?��d���R��.�N����ܺ"����$��a-�r�E`/T`N����쀂�Ƿ�a\ `W0�'5n���@��e����.��`a��決[�ǵ��@���.��ȶǕ_^�E�\��i!����Ĺ��'a�Ƹ$TG"L%_�%' MoZ��` �����[P���* �o¹b�����t��e���e`m���T���I������;�����e���ZD�˶��H�+�L2�\�bZO�`N���׷Ҷ����@Ʊ,7_-@�\IJ��\���3�������Ϸ��Ru���\=���r�[KB�7��S ���.ȱ^����7�_6�ϻȱ��^rG����Ų���A ��䃂V�H��j)V���ֱ"�����ݱF���϶a-Q%�R�ZD��\�ꮍ����?��d�AZ�[��M?M��a��kZS��"��`6�ϳ������Ա�U�����TG���hK1ρ��G����e��Ըda�Vȱ��E��/��VH3������k����* `��cѺ��wO�_�����`#]3���Z�& �#T�⵸+�a��嘹���Zij����H�*�q�H�ǿ��^����+ ����bp�½=�� s[/À�����U�`�����5��U'^�/�gM>�-��b�%'"�P�bܳ�@���Vn� s[:E�H��+�1��ȶ@l����_ Y����l�&`b\ĸ��\_���ǿ����Rk���aI��̀���ĩaEұ�܀,� ��G�Ul�`���% ������M_��ܺX�u϶bT��N�����a�������_a6�ϱEV��B��'��±�0 ��TGc������/E�r�s[_�Y��&���•_bV�hп������)�`V\n��[_a�h�ĸ�[����@Ʊ,)�`�=���ѹұ7��S�%'ZO�Ƅ�ѹ�l�)4��a#]TP]決�ŀW� sc���U'������ܺX�u�G�`bq�±5�g \@�ÅN Q7`�L��`N �ܺ��9�|Ru�L�69�x�^�����Z���?Enڶұg\��D��hK�vD�h���[��dYǿ±Ru������8��X ]���Ǹ�_�7`ο� d���`Z���G⵸+���ZS�gE—�������M�\v�����gG� [����NlR������G��_��8ȷ5��?��d���e���p�� U_����屇��q� _aY�t� �.��W������H"�DŽ�0 A�����`��F�S�5��Q%� N��-TG�+�Ų�����bm��������U���hV�Q������讍� �`�$�Sx]�&�۱^ѶD�gE¿ [θ�f�@|jJ@%4=4�ϸB_��Wwȹa@��S�(���zL�[_cq��RY��a����"��`\T�����t�H��ܺX�u봿�Z����?���K�DZb�K�/��θ���F`(\Ć�bX�_ ���)�`3U�Y�����T� f����N�����Zd�Y��&`�.�~���W�'���Q%�K��r�\HPWW M�T��bǿ��~�!�]���ﶲ��a������ރ)�`�Q%�@Ʒ�[��,��z������?��dN�������˜�'Y�"��[����±��ba�^���/�� ����UH�ƫ��[�ì������֘u��Bϱ6����7��S�:��^����…7�±�%'Y�Ä������麹�z� ϼ��'�ú ұb���\�³��^��n�����S����b��`Z���������Y��&�_a�'�¿���d� cR r��ҹ�������L�`J��ļDZ���dZ�`�9� �±b�$�Sx����3 �±���2L`j��d����Q��@��Q�?M�d �BM��c������O���ڹd�7`b#~w��쬽�`p�J3��i��3��z����镱����젡���"��`Y*�$]�������b��U�+�hi��[��0f ��_b�ҹ���麹�zg��zJ^`aE҈��+"LŃ����v��\�±�%'� �±���-��"��� �W�!�Ru�渱�������' �ϳ�e`m���T���I������;�������`Ǹ��TpH��_bYǿ±Y�%!�����9]3 �M-k����U�6�ϻ�C���='aS���Xѱ�&�J�Eұ5_h4�%!�T����_b����X��~���W��z"��Z��|��N�����j)V�`Ǹ�S�P���x��]�7`��� uaV�~G� [��X��N���I��̖ K1 �kZ�)4�da�8�Qý^€Ƿ�V\n���k��_a�X�B� ����9��ƴ��ҹ���� _(ZD�b�殍V\^���ZDQ�)�b��Ϸ���?��d��Z<��Yr�^�R���b���%�c� ���Šo�F����1�M_����e���ZS������&7<2������ H��Êl) �ZSL�e���Y��&`q�������v�2�`\P���^a f� s[��� z��Ǹ`BU����b��Ǹ�Đ�%�V f �����"�`϶���V�H�����U�F`�wѶD��m�������"�����8]^�[��S�:��`Y��������C]�`����� ='����(��K����)�`��+�����j�f�7`�T._�G� u�\TC]�����r�ĻZ�@�h�Z�@�._� s[���Ƿ�a�Ҷ�]<�5�j����3 �±Z'b��$��:��B�Ų���J�(M�e���hK1ρ���* ����/�L�ǿ��� o���e���q�����- ֥e���e�����$���ù0𫺴.��e�������[��P���[�ҁ�I��������������������¼��ֶ���e���ZDU1��Q7`J�G�M�i�&nѸ�_�ȱτPU5�� �iY�~b���"����/� sc\�ǞK��r���θ���?��GG� [_��HL%�]p�N�]��϶�Wǿ±bǿ!���w*�)^r�Ϻ'��[_b���� `Z�(�±�ҹ����U�+M?M���k�]/ȹ�_5H��������m��:�L.ZS�aq� ��d�E����R���2^ϳ��ij�B�H�ƫ��I�e��� �2����8#�Y���j��c �`a�"T����m���e���?���cѳ[���:E�/�h�Vȱ^r�]ȶ�d/v�-@�#^£��a���* ��ޱq�U_��3�3��7`\��]ȷ5�#]b���Z�Ѹbh�\�\+�\�K r�� sci!�@Ʒ�[���b�Ffa#]��b�.ȠJ�������{�̀�$�����m�����#`-�K�ϳ�����T c���:�]7G��nö��SB��+� �`(��vfVȱ�FfN���ҹ��#�V\nY�"�-���`0��:<��Q9���_0M��d'/�L�뺸`Z迷Z�쬴� ����(�RG�����ֱ�������̎d��m�H�ZD�Q%���m����µF+�����ȷ>��=���3���_��p���0fǿ����RkaI������;���ժ����.o��ϱ�o_��[/������w-a� �Q����a��q�����|N 0 ��ҹ����C��|7��<�(/�±j���X.��麹�zZ�c��G�B��%�� ±K�^^�����Eұb7<�+� ���Y��U�¿�_bB�� �"�����V�_^����&r�θ���F`�A!@RY:a/ȱ%��Ͽ�\ ��?��d��� V����˜R�±���8[�SfV MK `��[�������3�o�v���?��d���?�Z�`�����X�u�^'\������d�O�>@�������h�#���Q�NF��WϹ-�hǷ�^j�ǿ��T��Y�'Xѱ��X�_G� [��e����_��I��̅j�V�)�`7�����f���� s[�C]�'h$=��� s[����`�_��O�c����Y��&��d V�Y��˱O�`�ҽ� c��$]�������'�%'����#Ըd����;���Ձ�$TĺtI��̃���%��_a"�P]�b����vf���t��)��䱇���t��)���dj�������"���C)�`a�ķ�����W%�+N������%��C��� s[_a �Q%� �ok���������l\ `���\������������+��ѹ,�[�a�,�¹NQ�?M�?��dYǿ±��o_�@�87����k��Y�"��ccb�e�����ZS��&2�^�Ƿ�%��^��e�����`j����Rka���Ϲ��e���W�<��Q%��T\P#�ȶ����沾_��ž-�rH���&�o�k�SҷǷ�����Y��&`����1�P��;��ʺUo����C�� Nr_a��*�� s[���^/�W���)�`a��a\lO��'��1�M��S��e���e��ԸdaI������;���ՁJ�k�G���/lSL��SB��+��.o�ǿ����[���|�bRuP��ĶG���\��� scaPM?`� O�&TG<��Ⱥ�hK�#�� fǸ�`� �� V����\^��Ѹ^�hK�����ó�Ć��\Tꀻ&���Z�`€R��._a�Z�)4]�%'���E���� sca"�P]B�ɿ(��~������HP�����3 �±F���Z���GT���3 ��l迷Z�_c�_b� s[��a#]Vȱ���ǵ����϶������G� ��⵸+WG\�·/�������:��87[�[] ƒYg\��scb Nro���d�S��ʺ��Q%2L`R�]���#�S�_�ȶ�ϳ����T� sct���T.��q� o_Y��&`�# ���q���U_Y��&`XѪ��?��d�„c�� O�&����' ���ԸdYX ����Q��@��!����F� u7��S���e������E��/��V���O�� ���a���* �����L�69���baI��I�e���d�g��H��: �|ȶ�k��2[Y�(�±c�������������Y\��scb����L[Ķ�39]���)������� ��˸�d�`�6�0ٱ����S����* �'������XѱhE��J�G���Y��&`p����wœ�� s[_��������pz�.��6��_b ��& 3]��C��RkabbM?fRY�wu�Y��&`������X�IJ��ҁ��#~w�����)���PK������ �ρ�#h �½€�Ffa����B�TG��d^V�_b����Y(M�����迸M_a�'�B��d V�YZ迷Z_bCM�[�[��,0��dW����7!��^Ѷs[�ɽ�'/ȹ�_\ `�t�r������?���f Wg\B`����j�H"�DŽ� [/]�6�� F���d VO��  K���S���ARY�!�� scgG�.�OܺX�u�2�G���-b�Ff��㸹X��o�X�@�1�k"��A32��Y�/���ı��� �31������Ķ�O�[_� �a�PK����ka#]�R�ZDH����麹�z��u�='�ŵF�bw� �U�¿���q��������|a#~Y*��PK��%'� ���(��ѶD����)�`���M����e���e��Ըd��i!���m�������k���B`�G_��3U`����`gM>�e�����N���Q ��³�Xѳǿ����7`w�����)��_XѴ�����f��F`����ѱ����ɼ,�|����-a��θ���F`&� � �3�EҶ����1�Q�N\����RY�bN�0���8H�1Y��&��Զ�S��I��̀��� �-�K�ϳ�e���e���ﶲ������������������̅�3 �±迸fbRZĆ�Z�U�K_aN��`Z��pzS�_�7'��g�� ��i!�T��g([�>@  �_a/˶��S���F���+��N��\��g���Z��3��]�%'wO� �±�X�����˹�c�X���Q 4�N�ok��`��v������B��%^r��Q 4��ҹ��X��\ϲ |a�A�H�*��d���o_�_Z� ���P�%�V ��UTGZ�)4����.o�d´2��„��[_am����� o_Y��&`Y�t� �åe����J��� �Ϟ\lO�`���e�����X���!������2��Ͽ+q� _"�Y�/�W�B�z���Ǹa�Ǹ N���_���)����=#�?��d϶Ć��/ȱ�&]���o����&]�����> D�Z�&������/�7�- 液��_^j�zh���%���ɼ�#`�� c��&��)�ý �������)�`V\n(ZD._a���� MC`R r�Q%��'-�� ��&]N_bt���gE—��ѶD�������_YR�(�^j��G�����óR�������_^Ѷs[��m��Ga\�+�ý%�P�T���%!�7��S-k5���"�P]p���0ft��N� ��r�^]�Ӷ��;����1Lnc �U������HPWWR5�s[��������|a���.����^\�������NH���&`L�п��ҹ��ϱbr�_���*��N��h#]3�R�ZD�gM�`���Y��&`�FM�Y��&`3��]aB�@�<�[����F\Q%U�8�_��غ�ҀY��&`�ſ�ǿ+Zsca�G�}����aV�2�±������`3��]��]a��g�D��d���Ff�'a7��zZ�����LUL��#�A!�vY����`���G���RZ�Lú����"��`�ҹ��d&� U_�·G_��N��tT��� �`��[/��ŵ���S�`j����η�X���1����e���e���(ZD\��D�kb�M�� ���a�� \}]GD��d #n� s[_��^VQ��ܺ"�������-a��ͅ�'�7`��_��_�2�\��dG\�·/l�_�� ���ĸ',0[�����~p�K r�hK�7!T� (1� aS�_¿���z$Ըda\v������Ѹ^��Z豵 �C��Z�&`��r�ȹ^€����iN⸴��� �2�����X]�_tOb��d #n��|^X�ua�L�69�7�����d�����Ų�+\P#l�)4]a�Ƹ$���w�S�_�%'\P#�Ru3��3 �…��)�b4H��\�¥e���Єp��T�S`��.�� �'�±bR�ZD���e����„bh�#\P���e���C��`plĻ N���._w�$���ZS����-��lSL������J^`a\+S�(�±��|w��Àq����q��ف������\P#H3��w�$������϶bN���HP��d VO�� G't����0f���XѪC]Ǹ��Xѱh�9:��8#�5����a�[���;���ժU_�����l迷Zo�������骠y���$Ѷ�`j����Rka���Ϲ���8��+E�/�F���������ƺt� ���jUol) ��:����]'���KQ%2P`ڲ��θ?[}�e���e���e���/�L���p1@K��^€�NLU�����5�ȱF���6��2�J^��'���&U���[]k��� ���%�+���Xѳǿ�����_a���#T�N(W� sca`����#~N(�������`Y�c����Z�`wO���_@Ơ��._a����b��|����� ��¹N��� sca�����7�V������ ��o_��(�±���U�r2��^���X�c)^`a� ^�Y�ć�\��a����v�1���O��%�+ �ϗ�^'��I��� !�a#]��`(ZD���W�Ǹ����QLρV f�����n���������1��N��%����)� Ƿ�agE¿k���`�ƷW۵��`϶��hK�^�N�0 AH���&`m���XB Uo���à����q��q����I�e���q�����U_Y��&`q����L�69�RZ�Lú����.�����#��zG� [C����Z�`N:���:�na�$���Ų�Sf�Z�YN� PQ%������v"��X ��RYC�)�`c���;�C(ZD��^Y��Ų��C�Vȱ,��]c�M����#`a�6�ϳ��3 ��l迷k����^����4���:�����\���n�+�U1�\^�����˲���Sf����H�ZD�%'�PK�\ ��e���qG �����^��hK��U����,�����-����E�r�K���Z��C���Q%�Ć�Xѳ���g \@����� f� K�Z�&���ѹ,�=��?(\����)�M����•_bV�hп�����%�F����g��z;ܱN� ��ݸ`G�7����F`��3����ȷ5`�F`r��Y�'^�H��ɼ�#`Ѹ� �#�N���„^�h��4�H��wѶD�6��_ �/�E�����^�*j��S����*���8������8 ™a#��e���W�����K1!���/�Đ��kv0�zg��b��kX^���e���e`m���T�������;����젨�J���a�ـq� o_ZS�t� ����hK��Ga���^��:Ac���g'p��ó�Y*��m�Z�yO����Z�yO��ų��w�H�Ƙޣ���-���\���ZSL�Ƿ�0 ���̘_��.�ܺ�/��]�����h�ý8/��&� �Q����$-��� ����a^ bjǷ�h����瀲 4�Tĵ���\��ϳ�h�ĺ�agVD������3`N�-�_a���%k��wJ�P����caZ�;ܱ5�����•Uol�&`���KB„^r�����Y��&`a�L�� ϱ!Qȶ��o_���� ��Dn��O�ccY��&`��8]7��S��C]�3 ��Q 4[_h϶ó˿�)�`7��Sbg\��D���g([/����%��`���T_�"��HP��W�(��� ��N� ����q� _���1����� ��9]��_X8Ϲ�S:Z(ZD����`�.ȗ��ȥe�����a���* ��q�����̘������|aI�����,Թ�뺸ȱ�� �Թ�������?Q�?f�a��;���եe���,�_��Q%��4l�����0f9�ٱ�^�?��dC�0Ƿ�����?���܋���;ܱ� s[���%�G5��d�Y�F�|�Q�>�^�C��2��8��T�Ć_a#]� �������vYLUH���e�������[��P���[�ҁ�I��������������������������޴��e�����._a�&˶S�����h�\p/[��XL ET:$}���l�yO_�Ņ ��zuphK��a���S������������ױ�ر��������Y��&`�� �W<r�[���M?f���\��zZSL��[��϶��[/U_��������%'Ru����`��3��5���/���8�����S��ć6�ϗV l�Z� ch�&],��S������z���kaE������S����(�U��\�[•H"��[C`�Z`a) c̱�%'���Q%Q�>�C���^�/��.ȱ^aY�j)V�����)� �za#]�*��G�`\�����Z�_��H�A�Āk���^���E�.���> �^��W�T�� ª��[��6��^Žd^Yұ�U�X]gM��:��8#n��N�T���`�7`�ZR���J�3�[��,��[O�`�� �`A��z��rH��Å�+�AY*���^C�f;ܱ5�(��KUlĻ N��G��܋�1^ vYX��XѳܺX�u���I�Uo����ɼ,�|����-a�͠�q��E��ǿ������N��3 �±��0fw*����0f���Q���ɼ�#`�Y�M?Mo�Y��������K r�@R(�ž�0 l��Q%�������dR���4��Q%l�)4���� sc���U��8��+�Q�ƒ��N�k�%���HP��6�� F�aEұ��"���� �Ecag\ bZ�&��C]��ѳc�Ff��_�FM���7��Sav��[�O5��ü���"ýa��_� sc`W��f ���±c϶�"���϶� s[������(�����X�BIJ��øQL�U����#]gK��J�������ԸdX��N�������j��ǎd#�S�_\����`�±7��S�˿�)�`�:ͱ�kb� � 4[����k�j)V�`3 �M-k�G��\ϱ�G���H��� �����`/S��-�r�T�l)��…N��3��]b\�j���\�Ϻ��'j��_b%�+N���� ���^r�+5˷?� ¿�_��(�±j)V�`�_�Q%�O5�j)V������\��_aK��r��������X.�����Ա�����8�\ `wѶD���v(�±"����+�����`�R�ZD�q���� ��ξ�_a����%����g([/��Ǹ�ŀk��+/���8�������)� Ƿ�k\���������`)\_���0M��P�Q%�\lO�`j����0M��P:Z�[��E�\Q�`)\�� ���.o�ZS�q\%�W���\�—�!�ZG���X������Z����յÄa��g��H�+a��ZS�6���e���N 0 ����q� ������[��P���[�ҁ�I��������������������¼�Y����Ըd��������ϱc� N�� DZRY���N�^Y� ck����j)�����������3��z��,�O �`a�n�+䌱Xѳǿ������O��5�ȱ�-�� �� ���� [浸5A!�ǿ±b��Ǹ���P�ĵFM_����a S�|�^^��� sc��&P�,��]���R/=��vϱF`� sc��&P��.|��_XL����ka\�+��ú������3�J�G��_���τ��N�� A���3]PQ%�@��Q%�� ���T��7��S��ba^�����ҹ�չ±V MѳcLU�˲�������A�_�3 b\�±g���⸱Q%��LȹÀ���K�ѶD1���@l)�� s[��Ϸ5��� �_�7`�����`��3`B�Z䣩a���* `�¹^�e���e���pz��,���b�K�,0[C]�ý%'b���h Y��Rk�&l��4�1�µF�W ��r�[E¿k� QLϱh�R�ZD�!��W6�� F�ǿ±b�^^'�����X��Ų�+aEұT��h���C`R r�Q%��'-�� ��&]N_bt���ﶲ�a�������j�gE�U�¿���(�/.��úK�[��]���823MV�_aR `�ȱ�ܱ7��x�������.�aw����pU23����"��Ǹ�Ľ�Ҁ��4���+a�Vȕ��㸹N���1}��$��� K�5�ȗ�)� Ƿ����k�7'[]�Ըd����.ȱ^a_��'j)V��������ܱ���0 �yO�hKQ%�N��^�F���K�W�(��1���T�Y*������i�b�9���_�ҹ�ܺ�/��]ȶ�6��~[�cǵ��@Ʒ�[���±�'^��"��cXѳ����qV�U2�zk���E������bB� �� P]�L�=��e����PK���T:�ϼ��'p���|Y*��?��V��`����V���N�������q��ǿ±��U5QFiZ�3r_�G'V�P�G�^�/�q�2�������麹�z�„pTG�„ƷW��Z�w����-p��������-�k\p h��%q�2�dz�����Xѻ��ی�Xѻ�`a�I��̥e����X�u��N� #nY*� ����a���* ����A ��Xѳǿ��ZS�ǿ����e��ܺX�u�ѹ,�b�Y��&`w��Ըd�Xсm���.�ZDUQ�)�bW����ZS� �Ϟ���_ M��e���e�����X��Ų���X��Ų�+a����I�X�_j��SL��$n�R������Z迷k��J cb�ϼ�Ⱥij��Ըd�Z迷Z_^ u���Å�„Z�)4�h  �#�ﶲ�������������������Ըd��^Va���+��Q%23���q��� sc���ú�Us[��Y����O��ct�-�k^Ƹ�G��6�τ�T Nrl�(���vϱF`�<���Z�YN� �_^a� [_���C�Z �W��r�N����)\���p�#]��N�R��^'��^����._a��� [�������˱���Q���j��S�N�/ȹ�_���b��� \nXѳ��^�Y�aq� C���J^��'a#]�±cѳ�g��S�����Z�`�Z�)4]LU�8�涼����k����ݱ�_�R�ZD�gM�`���gVsca�¸��HP�A�vf϶�_�7`7d7<�R53=�Ըd�ѹұ5�������N������i����ҹ��#��j����8�LQnp�����L�69�����^��%�N� aZ���Oo�r��������\���a���$~G� [������±F`L �V,����Ըdq��F`���Y*����Xѳǿ��pU��w��gE–U��:�L.a��U���d��g ^T_c\ �����ȹ�a;ܱ@�)^���=���3��J���LU���ÏR������(�Ŀ��ſ��j�E���S����8��+p���0f�I��ޏV��4����$Ѷ���gE—V����D�Z�e`m���T�������;������?�i<�k�����Iͥe���aq�����:EҪ� ��N�������±!2�Ǭa����=���II�(��T}�����Ѷ*@�i\ ��Wm��m��ij��E��� s[���^'a��̘��0f�aI������;���ՠЄ�a����- ހq� _t�����ZSL���X�uq���H�+pU�B�.�`��^�����[��P���[�ҁ�I�����������������������������e�����i!Ul/���à�H��Ĩ�����?��1��ŷdG� [�hK���E��/�9���lSL�Ըda��V��ϏjǷ�h��Y��Գ�XјX�_j��SG� [�t� �����w�3������� ���X�u��NQ 4�d��._���P����� ��T]��`V�YV �±K ��RY^W�aI��I�R�ZD���Ѹ¾۱Ѹ¾�/�������"���4����/��UL���h(��T}�q���N���϶�oL�b��"��������XL��H�Zsda/��3��z�����&Q�v(��1Y��&���PK����ȹ�b��(�Q�?/M�[¸�Z��_R r��TG��� 4H�+cj��RY�Ըd�ҹ������d��ձ��[o�ǿ?���._G� [���#]���Z�Ĺ���e���`��Rk��`\P#�9��YSM�Z��� G�a���� O�&���������x�^�o�T�_϶�_agM>�Wǿ±�%k׷S��_�ŵ��_�%'����`(3��`J}ɲ K�^r4�Vȱ,�_^��#�W ��z,��� Uo����Ã�A ��K��r��[VD1!�a�Ƹ$H�8P]gVs[��Z�T�q���Ƹ$���j��cx�^��X ]BUD�/������^\B|�7`'-��?M�����baV fW� �!n�A`��ԸdW��Ҷ���gŠ�E�\�Š�b982��F���dX����_� s[:���Q7`�_bX�RZ����� cֱ����wѶD���8(���`��� f�^�TZ�:p�7WAL�[�ɲ K��^��ϱN 0 �4�e���t����_Y+a7dW��`<��2�Ä F���C��������ܱ� Š�3���` ���x��]�7`��� uaV�~G� [��C�[����BU� !�G�aZSLn���Q%�����W� �ܺX�u!����_b���˕�� V���EV�N ���M��p�(�-7�=����� ������C����ZMǿ±b�^(�����/E��c�T�cXL�:����]'E�XL%���3 ��l迷kq��ѹ,�=�@���a�Ų�&�dz"�-�C���и!���?��d��H�ZD7�����5�ȱ��5��_a-H3��S��ǿ±c\�+Ų����TG���hK���[8/��ϼ�Ⱥ�X���vf�t`B�3��������������[��P���[�ҁ�I����������������������������Ըd�#����R5�sci!���������[��P���[�ҁ�I��������������������¼�Y���������3M�|���ȶDZ�������|���]^����sc��Q7`����� �� _b���`M�c�ȶ� M:p�6��`Ǹ�%#�Է� fa¸��z�#���� K��Y��� K��Z迷Z�o��U�¿���T��h�O�`@RY^��ې��������/��FM� ��S��T��hZ�)4]��`bWGD������ |a#~Y*�����`�ú җ�Z迷Z�����[���a^X�uP K���X���[���Y��&`w���±�����bLUH���V�������`ı^��3H�EVLU������Q7`�_�,������YE�=4�K��ro��OV��/v��wѶD��2�^^��Rk4��S�:��`Y���������d VO�� �8ϐ�V cRY�6�ϱbǵ��h �ȶdzR϶`���)���۶�X#=4�迷M?M�"� �#]W���MJ�EҠ�Gaq���ܺX�u�2�� �c����* �'�������������̱����I�Ըd�ae`��;���լ�hrU��U_�hr1���hŲ�*�e�����Z���d� [�C� �„[_��@Ʒ�[��dW���2^]-k�����gM��IJ��^Y���ݸf��F`�Ƅ^Y��Ų���XL��Ŏd�<�51Ln�� cYMs[���_ZNr�c\��j)V�����'v(����³��`S�_^�cc\ ������ޕ�������- ֠a����"���:Ǹ���X�o������KBV�ij������OC]���|�������hۺ[��kY ��_a\ĵFM���0fa��?kS·�S�B��%���)� �S�G��W��b�> D���âJ��=#��O��cj)V�`KBo_�%�T]��`v�ö��?��d�\P]K�����Ru�G���Ų�Ö�A���8��+M?f-�r���� �M�ҹ��#]+Z���G���d� cR r��ҹ���������NUѹұ� s[_�7`Vna-�����G����}Ö��k������_���ұ��`�,��S��� Yq���dq��٘����_���O��•�-H�r�^3��>@w��R�_a¸��z*�XL���dz"�-�/��ZO�d�*/��*�N������Y��&`J^`� sc�_b���C�N��*nLU��P��������Q�)�bgM��IJ���$�Sx��϶� M�}���KB�������w��R��ZM\������X�u�g ^�����Ƹ$�x�^³���[/l�T@|P����������"���'a������`\����b����Q%��$��a\lO��'��������qG ��K�Ըd�„��._a�m�����.o��^������������̥e���R�ZD��Ų�����e���e���?���H�]ada<�����Xѳ�����U5�gE±,�_��` ��5��Q����ta-UQ 4�dY+���ȷ������$]0���αJ ����Z�`(����%'��W7��S�5�ȱ�c�㷻���X]j)V��_bY���\�������9]K���Z������ [_�cG�Ǹ�c��`@t���'h�� G� [�Z��=4Uo���Îd�dz�Sfg([:/v�¿ Y�BU�����W�Z�Y�'Y�M?f������Ըd�@|v���h�ĸ��T���lfv�%'϶��` ��w��S� DZ�S���pzȶ�l��o�úK�[F��#��S�p�RZ�Lú���[ ����* `t�:L��[��q��RZ�����GD��II���]Qŵ��_ɵ ��ػ�F�����O�c�%v_II�����;����H��겠�^���9�������b� ca;�C���#T�Ѹ^�µF����G�`a�#`#~#T�Ѹ^�µF�IJҺ�E�\����8�� 4c���e���X�Ĺa��I�:E�1L8U#T���و��t� �.��i�mH�����T���� S�_"���ҹ�_����쀳�N2��„a\ ����㸹#T�Xѱ���J}�cXL��Ţ䃹�\^��Ѹ^�a\ ���Bϱg([/��:�%'��������������@Ʊ,��z3���5��U�(c��H��ZR��_aܳ�@��θ���� VaG����X]���T���W"��V �ˆ�Ļ4�J^`�Z�&�±F����$#�\P��_b ���vfW���2��Ų�㸹w��R��o_V�Y�l�yO�C6����m�/ȱ� �V�6�ϕ��ǵ���\�Vȱ#T��Z��E��±�+6��_bN���϶ADZgG�r�a-�^V�h�Z���8������[��P���[�ҁ�I������������������������ٴ����`�¹^\��&]���Զ�S����{��̀�$�]��bam���q��"���:RZ�Lú��ZdE��%�gE������bY+��.o�#]��^V�Y�����切��^¥e���?�I������;���՗�xm����a���Y���Y�ﱺ��U,��z��ԹG'�} ��Є������- �e���e���9��a#]ZS���X�ij���j���e�������-a�����;���եe`m���T�������;�����麹�z� �ƷW�—m�����"��`��.����._a���� ��ĺ�^��E�\�<���zb��Ǹ�Đ�V MĐ���k���� �6�ϳ����/�0ó�^������W��f��F`ƄE��%�gE¿ [�W(��T}Q��8���]�[�`R5$]h��v����/������� �zG� [�e���X ]Vn�����:�������T�Ͽ�ɼ,�|����-a��1�kda�ڿǬ�� �H��0�������ԸdY*�����̱E�/�B�ĺ9�*Uo����&b�����QLϠq�����̅3��]�%k�ҽ`5��n�(�3='R&Z�&`bT���J^��S�²a�̗�G�t�Y��&���0 y|϶#nb �Q�>��$��e���bѹ,���UL:g\ bY�� �i�ѹ,����S����S�Ĺ��U�� N���åe�����BρY*:����]'#]�c%��Ͽ�����[��P���[�ҁ�I��������������������¼��ֶ���a�$�]��ͱ����$�]����͠q����̱��֥I��̮��̓�%��ĸ��N�j��cY�Ê��9�ұ��baI���e���d #nZ�yO_(��l�yO����@Ʊ �τ�!�gVs[��RY^W��I��I�ѹ,yO_a�����+���T�Ͽܺ"��%�+ ��:����Q ��³ɼ,�|����-a�児H3�b�Pi���Y��&`�2�Gax����Đ��K�V�H���&��Ǹ��O��#ńa�� �C�����Q%��1���Y����`��3�����+ �za#]� ��Y��&`q�����̥e��� ��%�� scaZ��d0 A�e����a���* ��������5W��`6�τh�����0ֱj�^��F`a���\��U��� M�d���ĸ+��l���V�,0M_���Q7`�]i!�WZ�,��]-k^X�(��U�òńb�V M^�Y��4=���w�?`a��O��M?f�_���� ��������2�G��W ���hW����±¸/�q�:q��"���:�:E��%�a�����������污�"��`�������W����l�`aZ�ѳ[�5�ȱ��ĵ��`��[_�U�j)V�����^`p���^`� s[�����)�`��U�/� _����V���#���ĶѷH3�b��NH�N4=4U_��%���������U`������ǿ±ı�3 ��U�—E�\��9]ı�$�^\��s[_a��&P]����._a�K�j)�����0M�� ���ҹ�7����X�_a������Ǹ���Ѷ��^�1����Ų�+b�ҹ��a����~Y��W)�`�7��_�L.a���gVs�±��BρW��@Ʒ�[�����"��`Y+a���喺�ȱ6�ϻȱT���P/��5�ȱ���_a-2��Y��B���ٱ7<��չ³�,0c���T�_Z�Y����\ ��Ų��϶`�_�w��!����� ϶��%�aV f �������$���)�bݸ2��F`Z�3rnh϶��s[��ѹ,�=�����O�[۱��������۱˲v��3�q���*l�y|a�FM����O�cN������B����O�c�ŵ�ȗ��˷?��G�IJ���h ����� ™϶$}���$�+^Y� cp�X�B��+���V M�J�(MĻ s[���±^aV�h��%��Ա�����Y*�����-���e`m���T���I������;�����X�_j��Sa����٥e���EV1� 0 ���D�kp�^�/��������B�t�t^�� �Q ?�V����±�!Q��@�۳"�����ۀ���\��_a����L����f��N����A�K�WY���<`RuS�²ŀ�ĽJ^`j�fw��/ȹóIJ��]�_�)�M��L�69��a\�!2�^��^˲�+#�Z�� QLϱgE¿ [� #n,x�^�:Z���$`a����`�_����T4���y|pQ `ѹ,��������-�� �6��U`�j�V�h������X��ܺ�����˱%�Yc���ճC���^���?��@|�������4�^�1���Y�'#]���^���Ϸ+��ca�ҹ�H�ƀ�IJ��@�wMD1�����@����&P������엂�?������J�N�bZ�)4]a�б����A!� ���ҹ����q��¸��S�q��Z�� ��IJŷ�������X#=�܋���`֍��H����=���wѶD_sca YA�⸴��Q%�O�_��U�(�±��O_am��_ N�θ���F`\����bm�Xѥe���ǿ��U��$n�������A!:�Ƹ$�x���F`�3 ��2���������i!���p���� uǿ����Rk����Ըd��m�����@N�����%'}~3�J��B��%��� cY����)� ���r'�K^����PK�kp�kj�ұ�K��T@�`��±������5�7d� Q�����������+�^ρ鵵�CJ}����a���* ��\�±,��z����`g�D�hRk� s[��`�@O����Թ�-�����%!Q7`��±�[4]A!@�_��9��„�%'N����7_�%1H���`#]�` ³���[/��KBV��U�¿���G��ijyO��5�¹+bV�ك0��F���˶���V�����j)V��Ĵ�_Z�Y�ƒ���Ǹ������^]p�� ����`ai!���O� dM?ć�\]��v��˲]�gM��_��Q%"PKbBU����C��˶"����w��Ra�˶"������fW� scawO�_� f0 �Y�����������������N�#���[±���-��U��_���۱���^�W���QL�_a^�/��] �ϳ�Є������- ࠨ�X��Ų���X��Ų�+a����I֥e���m����I������;���Հ/r� �zp���� f- ĺ��hWi!Ǹ�������±6��_cV�V�϶�+^����E�r�$}�����^X�u���i!�q�y]Y*��@�)^`�7`Z���4U5Q�?Mo_� 4�d #n� sc�2��'��T�3��dX�_���H������3l�#]Vȱ@�HPW\��D�Z��ǿ±b^��2�^F`Z��^€�FM��Z5���,��z[㸹#T�Xѱ���J}�cXL��Š ���A��c ��Sć��ҹ��θ�f� N�)�����3��ϸB_���DZgVsc��/�6�ϱ�N�伸Ⱥ� uµ���� VG� [����7`@Ʊ3��`#������6�τ��U���_��ˠa��"���]I�����ࠌij�BϪ�Y*�����/�U����R�V� bV d���µF+KP�^2�-���mH�+c��B��Xх��%k��"��`3����C]��Ѹbh\p E�n��v)������La�z(��ŷ���ܠY+a��u����;���Հ�\�_Y\��s±�7��_a�@(/���\=��˿�)�`N 0 �b��Βp�����F+g\��D���+g�D_b�Z�YZ��?��+ǿ�����G� [����.�\�j������hK���._am���.��Є�a���˲�+#��#����X3���* ��{�I̱^X�Y_Z迷ZKB�C��� �:��� ua�����Ff�TÄ�\T�"�ұ�ҹ�U�+hVȱ�U��� ��� sci!1�f ��/����a���* ������a���* �����:�i:p1�M�\v�_��.����XL�^:ZƄ[]��Q61��_J�G��±����-�� 𱉱6��^����L�69�����������Ų�X8Ϲ�S�Y��a��V� M�������h��E�r�V �������� s[�^Y� cc�������ޥe`m���T�������;��������X�H�*������ͱj���)^����Q7`M?f�'�K�غ���`����� 4cRY�����z���kaE������S����N�XP�kb"���� Ǹ$�� s[�`gG�„�̱T_^a�X#r�C]��j��h3������`a#]��A!µF���Y �'W��kv0�S�?��d,0c���gM�`���bѳ[��9��EV�� ��FV_aO�_�P�dαRY�hK��+�l���`֎dq���* `Y+���ѶD��R�ZD���|��� Y���Pi��-�K�τ�"�����@|vY���A!x���jǷ�h�^^'��܋�1L8�����&PU���G�� s[_aԸ!��� ��� fM?M_a���I�d�%��Ͽ�7!���B�:\ `��Bϱ g([/���� >�@ĺ&o'��/1�f ÅgM�`�¿����7d�&�¿�������_aZ��Q7`�F���3���2[���݀����l۱�,���4U��l���G�����V,��)����awѶD�Xр�g\��D���~Y��&�_Z�y|Z迷ZN4�m���C]�_�� s[_h���P��N�����U� �ώd #n�?`cYǿ„�ҹ��չ•�����Z�`ǿ�U_��ZĻ��7��S,���F�€�„���& ��ƒg�ҽ�b�%'����Ą���\�*�GD�0 θ���F`^j�f� �RY�J���J^r�bj��z�C]w�� � F�� �zhWY�����切�hq������͎d #n��._��RZ�e���e���Yǿ�2��„aǸ`�G�`�(��صYZ�&�_�Y�O�(�������RZ�C�Z�&�_b�ѿ<��V��EV��b/w��C�� �������@|V ���ѹҮ�)\����8�>T4��T]�����좚a���* ����θ�4�׷S�������֏aY�c��̱�{�������$]��+���Z�(�_�%'�Ff3���` N��±�C2�� �a@��z���ұ�$T�gVD𱉱����e����lS�pH��À���Uo����åe`m��lSL���q������- �U_Y��&`q������N���.��hia�,�O�������Xѳǿ������ZS��&2�^�Ƿ�%��^��^\//�L�ǿ���ɼ,�|����-a�ك�[ij��* �'��������` �VY�aq�����kLUH���d���* �����lS����q��\�'�a��;�������lS�����¥e`m���T�������;�����aɺ`��͘��X�u���G��B�� �ϳ�[���\ r�I����dg�s�±RZ�Lú����ìX�ĹaE�1L8Ĺ3����Y��&`q�����̃��B�.�`I��٘�[�`J^`�����ҽ� cWö ���#~"��HP]��ȖJ}�_�&��"�@:c���:bJ}��Y�e���{�ɼ,�|����-�:��0fS���сͥe`m���X��a�������۱֥e`m���T�C��H�*��2��ok[�#nbm憃���* `��1���6��_c���X���A �����˱@���±%�Y���Ǹ���Ų�+a��ҹ�QLϣ迸b�a�I�e�����j`ѹ,��͠ǿ����Rk��pld���<�`��뺸ȱ3Q 4�d�1�����RZ���T��h(���8���_a�_�Za\P8�\@� \�� \��IIÌ^�J^��VU�rT�8]\ ����?�R\��\�����0 ����r����r����)�G�㸹�F�_b�ϼ��'� �����SB��+��rH���N�θ���F`��/��RY�/T_$z��rQLϱj�[��d�> VF_Ѹdz�\ M�ѸdzĻ��S��YǿŲ���`a<��l�����A!@Ru϶�������������� �%�7'������������������`j)V�`_��'� s[Ըd�/�(�3='��^a%�� scb����J�N��>T�/�N(W�GG'�TcZSL�C��R�ZDQń����N����d[]kK r�bZG�J�E�ĉ����Ըdm���^_F`����Aw���hK1ρ\ 2��F` 98�����3�E¿ZF���d�M?�±��XL ET�X�Q7`����`6�Ϡi<�k������̠Ѹ�誁����͠q�����̱��͢a�Xѱ�����^|r�_�[�`����KU��[_R�ZD�^ u�%!���±N �Yr�^]����������R�X�+ K���d�����ر�U����\�—��,���e����%�%N�����A�W�����F�_#]\��_�5���⵸+/ �S_[�h�b��HP�A��e����a���* �������m�Z��^����.o��^�Y�aq� ��y|pQ `ѹ,���m���{������;���ՠa��������4T`��P]^a����Ըd� s[/F`��TG����˿�)�`�T��˶���� �_�G'k���9�����1�±�%'v(�±��ݱ��0 ����:Ǹ��Ć:p�`�+�^���[�q�7��S����'Z�B��:��`[�����Ըd)� a�w�$ns[��_[�� �[|�%'E��%�Z����[G�`϶�6�aW\�±��5�ȱ��Ʒ�P�\��oo1�0 ���D�Z��T._a0 A2��T����܁E��0 yO� ���A��cYǿ�„�ҹ�������H�gE¿ �S�^�����q���ҹ��d���* �_����.�:Eұ�O4]϶åe���k��[_am���<����ax�^�_ct��=�LĿ�^�Q%����g\��D���dz���쮍豸 [o�^V����5�ȁgE¿k�0 H�ZDÏO�`��i!�VȱO�`�ҽ�k0M��!�o�¿���0�ã� ��Z��l�)4�:^�2r/��Š�L�69��{��́I��֏迷��wO� ����_���NU_�������Z�`���)�Mӵ�O� �����ǿ����Rk��I��͢�a���* ��������q��q����Iօǿ±ıȵ[±���T��7����T� s[��@Ʒ�[��,��S_���J}˿�)�`� ��2 ����-�����������±�$�Sx�� ���ҹ�2�^�<���ȁ�ޠt��\]RY��9��o_� ���q� o_Y�t���U_,����Ⱥ� ua^�r����1�#]���H���`�� �-�6��^���e���d��c���^/�W���* ��hK1ρ���* ������aŲ�����@��zŲ�+Z���C]g'�ŷ� �Ĵ+p�ſ³辥e�����V M�-�� �\P#�� ܺ"���lQ�NF`a�6��^�ܺX�uJ�N_b�t��� K��T[�����VO�� à�`�����Ʊ)\_F����9��ƴ��ҹ�2�^�<���ȁ����+B�^��E��c������F`�X��Ų�+p2�^�B�.�`a���⸴����[ļ�8P��϶�Ŀ�0fX�#]Y���-�������gVsc�%'� ����E��%�b��� G�-�r�T��i!�a�M��l�Y����_�aI̱E�/��ZS�G� [_^����;���ՅA!�+������0����¸��z;���ŵ�ȱ��̱����±�U�v� �@�۳"������܋��;ܱ5�`\P_��U$�Ϸ�^\BO麹�z䌱� ���� M�j��DZ��� [�Wx�tM��L�69�`�7`�R `6��_hV\n�J܋���)�`N� ��/����� ���ҹ�2�^�<���ȁ���d\���Q7`3���ȱb���3�X��t�IJ�����η�X��ܱ�ıE҄����9�����\8�\�����R�:����'-��xY������Rk��������- �:��0M�aI����- ��vfն? ���b�G�`�9��\�+p��^���� �]�����S����?��ϱb��F`��UlS�5A!������[��P���[�ҁ�I��������������������¼�Y��������L�69���b����{��Z�yO��Ş���&�RG ��j)�:����H�*�i<�k�������)���"T���UH�ƫ��.�e���d� ��±��|p1�?������)�`��_���)���vf��� s[_a`c��C��·G'0fP��$���Ų�Ww��OpU�J^r��R ��6��_�ҹ���^^'am���.��hKl) �._�2�aq� € ��R5�scYS[�pz�bǸ���2��~��%�^��϶��ȱ'-U�K �U����`h-�r�J^`� �%�� sc��]��l����lR�P����¸IJ�"��Z����%'��O�c3Qŵ��'�p}��KBV�셂�o�r�τ�ǿ���챻'k\D�pz�z h��Z]��oo��/�Ըd�+a#]�J����^r��ꀳ��)�`P��1Lng([/���)�b�t�ĸ�[_�^��d�H���&`����•����_a�yO��ų�3��zZ�(�� ��Ĺ�+ �ϱh��������NQ���_a��L.a�������&]a�[ ^����܋��^Ѷs[_br�_��U�����a (En����_a�23�IJ�^�_ �%�7'\ĵ������ZĻ`T��N���Ըd�G[aVȱ�Ӭ�9��ƴ��ҹ��� �����̀�ú��8�,��±G�Ǹ �ÀW���_gE±J�E��S �g��zV��%'Z��±��϶�ĵ�Ǹ��j������U_�[¸���㠆U�+a��q�lSL���J�,f,#���|-�ȶ@�϶�6�p�����Ö�?��G�_a#~Y����/l��� ca������JHB|X� T���˱@�)^`a)^`a/�Ln��!~ \��j�a\ `�$�]�����6U�([/�T.� ��:�%� �_�7`�����`^X�uI�d��� +�U��^]������Y*���C]w*�����w����0�'LU�������9�ұ��baI����ܺ"���e`m�����e���dq�Uo���ì��tϘ`�����0 �ѳc�{��فI�����e�����a���* ������-��lSL����Ϫ�������P/�\���#]VȱµF�ܼ�Ըd�������ޥ�e`�F���v���2�^�w��ǿ���e���g��1ϱbL����23`(��# [�y��i����8�b�[ ^�����׷�+L�J���J^r��O4]p�ۿ�϶�o�^��I����/�7���e���ǿ±�%k��WO5��%'�(�±N�_�+�\P��W\� X�䌕�7!�`�XѴ��6��^€��0�'LU���^��G� [���P`˺�* `���U�ȹ�_II����;������e�����YXѳǿ��[|�¹^��e����a���* ����e���ȶǸ��۱^X�Y_�������X�2��*������������ǵ��@l�T@|a8[��e`m���T��q��"��`p1�8c��.���a���* ����d #n�H��yO��ų��3 �±�3��� �ѳc��dz"�-ǿ���e���q��"��`j��S�a�����ԸdX��g ^���i�_am���pQ�����^a#��5��l��Ķ,�,�^r����a�Q���vY��������ú ��迸M�˷?�V MĐ�� sc��Ǹ�Đ�Wkv�[��zZ�Z����n����?x�}ؕ˷9����������?c�ğe]����7�yw-�w]�]Bۜ�:��?~�cl�p}zz�x�����CS�c�.�y����?���,�C�0>N�ò�b]�b�u�Va�t�e�ju|�p�,��߱l7��Mo\�&�Άоv�.�Z3�5a;���f짧o�b��i3��16��jY���/��x c�,^��SwY��1^b5˺-��8 �����v�s.�.�:,�?�%�S��m�V�~m��*�n[��K4�>��X���{�U�������o�s7�@��///��-�m�S(�q��4��崙6�y]�~�b����Y�P�o�ׇ�<���6a8�g�@��y�U)n r���Y�?�DJ�,2k�Va;���ߋ��s��?���aZ�m��D2y���U�Mh�|4����k6:fΆ(�EU �9"|f�&�\PqLG&�O9 �~�Oҫf-�0E P��9�D���3c�q�)3� QM�5�Z��f��lJQ���r�GR�2{�T��.%��c�� FK��qK��f�x�Z���!�0�+��f<�t �RQ� �� ��e��z�zH��p�����Ӧ��Ҿ�7p7� �\C-� ��?������DșU��BM���/�ww0�S*@ٰ�6�-��l��v�p!� �%�/�JN퇤��� #{G�DU����c|O=o �"rN�z�vΆMMYy�\@��z�ˎ2�8f�\(��B�6m����ã�B�8jjC�9�43��, l/JS�O�dw�`��&�ؘ��\�7����&ev��EvV��3�y=�����Jq#NL4)q�B��@+U��z���i��AˊI t���J����V���փ=7��=s� oB�?���Z8�G���Mq� ��Ho��!��9/�d����E��� ��Tv�Sc�v��劸yEە��j����(?�L �ŧ��$��7�K1)��@n�����X$@%<6�ܷ\�rvcf�3��v�4"x��`��a�<Ԛ��c2X+�k_�@3ޛ"����� 3t5��}�0����Tb�.b'��ddp��(l���'g�z�h��� ���`�"G�ց�3{x܂� ܂����͎�F�_(Bl�;Ʊ $A��1rJ#��@RZk�>�!�5X_�H�"�"g���kf��Ԕ�ص���䧮���v{lR_ �|NMS�����_�)�ُ������%�M}�=��׬�a���p���zn�S����Cn�����.����9����'�a_ԩ��Z��cj���G����ӻ]u��~�����h�;���t�}���ُ��(Sۜ�ԗ��{����\������(T�\�I<�?�/��_r���|����������Q[��� ��/�|��nw��a��ߕ�����|�E1��i��;G7m���{~�ƼOm�MCz~�O�]�5o��i>/�)����ӫ�~������旮i�m9·ۗr��͆��wŝ������#Ӑ���u��ji�!ƌ��<��n���17Kn�O�e���zt��W�pB*��^�q�n�����P�^\R}MuR�u�U����ď��冚u�@�GƐ�s�K�W�ϧYѧ�u3����I\%�P�m������?� Xs[��ׯ_�~��u�Ͼ\y8�uY�I�5i;a����__��Ve��j�u)�c�}�|7�'t�h��F)��� ��P��?^mz!*�ѷ-�m�'yV��J( ��}�>L3#FGk7ǫ8��U�ѐs�����q� ��%�Us����C��0 z�����ш������/|fЬ@@��D�<�)I�v�wSҩ)o����*�[�Wf?�2u�ų��t��￾{�$F��O�s�f^f���w�!!�խ�4�s;���<�9?$Ԝ�!�fA���eU�o�`��������@�eE�I& �9�T���(�Cy���!N�IQ�"�}����J��P�I�Są�@� �k�"'A�)ۻ���劉Z�x/ �5�}�OtLy#���L.S���Fը����r�&XU�����C6 ,`FSѷ!��,Akt�:*4�9��B����%�)��'WD:8A������)T'�</��ˉ&=��^[`�w ��5N�-B�#jKXik���5 ���SYq��6�X��x{�=�8���k���$��w� t�V��_��:�� a^�A�l����0��Vsf���t (�F"���8+Gg�'F.�.��f��jC�[�^�x��0J���n��S}kٲP��5���E�!w3�0�i3�F��D[ux�Qg�}�����S[k��`�(L? ? �>}v����&�y�[���=��I�׫6?5���~)��s�t:���t�H�ཱི�D�ڍ��h)A� h� ��H�"��K $X��܅��1��f���H��Ӣ�j���4�7��p�hL�"�)e��?(r�2[n��Մ ��� b2?��_ָ�|!.��P�/���]��T~5��:�<_�8��jk[�+��F��7Iwd���h�Mـ�"�j㪎C�˷=�"�fik���w��ƴ���s� DؒH�a�E��/� 襃L ���bc&�茅�vE�,"�xS�LO�[���\�qY�O�����`������� b/� [���C"�����b ���zk;�,@�B�cBr����Zť2���%i��Y���/����4ԃԂ~������dA�(�3ȕ�0�^�!�U}��{�4?�.M�'���JK��uO�Hgt�T������,$�� ��U�'��"���nV������3�l������g%�;`0])u��"��9gu1r�:$�=��yJ�Kꔆ�[4 N�pL�s��g,�+ƒ���@�1X� �k��Z0cxAJ�be ��U(�|�:�I���;� L�!�k*�"�ȿ��� 5�j��� ���M��;ҳ@�P��K��0�(��0 t\Uj�#"�$���+8�zF�>Z�bb;�Rsy���bF4�ܣsR{����-S��ḥ.���� "$�� +-�D��L�"v+s��QD:X�9@�3zVX�3rˀ��R��C�;.��Z���D,=B�AT����0ܑӤ��##EI��]�d`�9BP��U��r�B��nߤ���!�8$EK�1Xe/�]��3:!Kk�A�8�� �w�j��zk'�g�F���Z���,2�"��2�F_���4����Y n���]>" eco��h��}�B,ϐ�N�!�[9�G$>'��%�7-)&74rX@t�ۋqП�{��i֒�� ��`w:Yq��kV�'<8��6u��]E��ino�6h�=��z����o����[����"=��Y�� XiȄ�um�9�ִ`��;'d<<��6�c߂���5o)�q�ͼA��n樱`QTj4_��1m؃�g��B0�Ar8̠"/�n��ۨ�>� �ׯR�>�����إ�ܒO��X�M�/� c�;���-�u��X�Ͳuȟr����1�\3����� �=����}<�/�Q���@����A����F��+�F�5q�^�a����,>�˂WWˁ��tQ0�n�`7v�n-0+�7��O�vPؖG��ϔ:��eN�4�� �൧'?����o<��� ����^�ռ{��-����� � $F֑ic� o����}נ��A���\m� ���.����@�l��0VdH`�Cႊ�tY�?��'P�E�~��� FB��{D��n�#�ܳԒ��$�7��[��1��|0�5W�T���B���wR�z�׾ �!pqK��]���Ipj1���r$n�����AXq������������$����~W9�G�1��b� �w��'@��r���AALK�C�>@E���vi�[�F�ϴF�Z��BǿAN'�܂t���Xے�0 �!X薾v:���CL;c'م��;���ņ������ё�d:���]��7#���k�}�T����r����e��<~֧Ӳ�7*���Q�@_ ��줺����n9�,�^�V�u�Q�+���%�W3�pxx���i[Mg�;ۯ��L��m5��͵�/ c���nt:�����pG1@3J���j=� ��^���b���2�!�Bk�V��a��`�b����Vd�9�<�B�%�8Ú�1�^�ͧ&Uѫ�+�$D�6g/a �����E�ւ�2�E\3հ?�" ��f��]�h�,|��Q�c���㦑PDžg>E��)�a�YD8!/ ��N�,��٭�6��؅M�iXL������������`�����s�0J�,n�*��Z��������<~'�h_�1��MftV:�m��A�p��ِ ��bj� P�h�^R�����'k�$��W�I51�x�P�%q`ݦ|!s�AE� �&��8G���!�hV,�2p�(�'8y��3�pA=q��KJ��c#��Tu�@�È��M�Bp%��"|hc쓋�i�A-�Bb��'i�~79�+�(�H@��0\{��PLP�fB(!VH�3�e�k� &����-��y�,�G9-8�8��Љx��{ c'��E��ki;�oٴl=J���Dʙ�� Df3"!5C �4#��|�Wa�0My99o�pJ��g� �iw �!)I����@�"�/�\Y�K4 +�.M"�?<��?f�<�t{ ܂����[��D��;��#��J�hY��N:�Ƿ�v�u~=�A��T����s����9u��ǩ����x��C�e�z���;�f���9cX��ڏe��C�].OO�V������P]W/_�~��zm�����W�՛asX����m�c����3m��P5�4��� m�L}7��a8���6��j�� ���n�Lq3�՗��v�z�1��T��k��y��۰�}���f���Y l�������?��?V�q��>U��������mwt�ػC�V�y�����mb������K�/ 3Ų��0�{I]��C�u>�f����Bзq*CW� a:�m� �|�*Mߕ� ��a<��9��`R���a����q��V�}z��o�Sg=��΋�RM�󺳎�活T��P/�9��X��Q�~��e�[bd��ߺo�m�� �����ߖ��헗��������S�ao�f#>�c®� ��G]B8���ۻby�)-����aEE�ǡ0Y���7>h�� �y� W�p����hck�Ư��%�"`���Ӱ ��ҙM��s:���G��BG���������p1�>t�6��z ���//�DZ*p��s�g��Q��-�ְ���`t5�����C��ϻ8� D�0,�mv�}�s��t�w] ��~��((�O��Ͻ�H��X��!�r�B��hB��N2�]�_�NUgD���M��ѧ�?-�����&!���D��f>�La+3�N'�\����Bg���SQ��}؆!����`M V <*d�K�V��@A��(�\���0���J23P����̆�G;(I|-Lx���f�������!v��b��gI|cY�i�,:�5Y5�;�=���Y'1�b�;��‡��KԌ��s�6,O��a�����4�N@�=Q�"�PΧsD6r1�`����e��`7���R�(�DC���N��)�%TS,��=ΑF �g�'SI`:=�iV�ڲ�9&���z�y��9�+�@��'iY�,�{1��r��,�i�*�^Y\7\|qd�ʑ���.p������~B�F�英݌�����eBrcP�x'�9����$���.a���U��1�i��RΌI�Y{@(���0vT�g��r,�@A�H����tE wiWV*�łb��Tr�l�Y�g��\�.�QYTԠ]�5�Y�L<<��Dܯ��R N�I�I��U�&3rm��p`7z�dy�>߹l�֡�uJ�a��AR/�`_�"��7N�Ơw<.�s��@O*?���9m��a���/$Ĩ���3'������;�l#��E�oO>\���R�8�$�B0\r��3Ґ^�C��Z0�O-Y)�tZ���2 RB���� \�8��t�0ۣ�{&6L%�loR1+���K����vX7ަ�N�&CεNJ���b���R)����P7��du���Ȣc���a�X.i����z]���߯������P ���z|�]�*gg�4ꛄ �W\�`3P�*}8�CU��UY!�A_R��K���.����5E;Ig�'�"'C�� F��1-E ��h$�8�/-�r:�W)���7ї�o#z6RC��0��LR���b�ٶ��A��x���P�s3�Z�P�h�se^ zN'���s��=�ۣ�Z9��N��Sk��C-�9�N�i�o��>���7؄C���9f35;������ �u(!�O I:��ğx*����@� �c�a(�$�D��4ho{��yʅ�V�r(����?�*a�f4���,RS\F���9<�~t\�<�a�y�h�4?$I)} 3Vm��yj�J��i�0{ U ��h�l��:2�3���m,&s%ge�|��A�Q �|�6�GcH)��˹�&f�"~�y%��Jߕ�xZ�t8W$����3}XBK+4��8bə�Bi�PO���)tO�9&u�*�ح��!B����kH��i���;�T��1���xO���`2�p�H^���3㷁\$!P ?�ȣ������_(e����O-#)؆�}N@�AU���Zt�}-�){��.�����&��w����Kn��,�o�f�g>�o��Af�/G�S׸-߯�@���O��h�k�~(� �A9����6_�?�%����u7.�I#H�6��z5�VǢb��'j�5�k�c0עB>/o�!Q�KE���e���c������ � өq\�B�B(w��Plb�Ɂ���/��'�܂�������R�0 D�� �� �^��֍]�R�. �XOS�U%kw�R+��p�d� C�v=�C����jק(k7��`RHr�^R'�/ �w��X�����fS�y�M�!�bOO�r��m)zv�.Kv{ɥ����4�"�>�o��S)�����4qz�N��7��� �$�����c�V�����K֫���!5�=�n�xH�U������1�q_6��, �f5�f�*�1����s�%c���P��F��{ՙ��@}QOQ�/-VV��mm��_v�u�z_4�B4Ъ�_$���f�Kk��?.B6$��sp�O��z.j-����7�(�0�O���ĬN"�b���[M�JuEHY�9L/�� gsT�ZoCce�xH�6�eH�}$�j#[ym�W��G�b���Ÿ/C��:kk�����U�����I�>�K��l"����I#�_���!�M�̾SW8%��9bĻW8%�Cā��p k�[ �Ǿ�������d���Ϋ̻�Z��bĻ���Z�ǁ�����Ѽ��Ǿ����E�ԩ^���Q��[�ּ����TYyP��!���\����Q���"J�)9�Ya����D φ�̩^�^�^�^�^�^�^�^^Af[��Mî̭��"bĻ���"]��� ���H�Ⱦ�v��#�����Ի�Q���^R�[Ӽ�]!�_�Ѻ<��/I�/=��^�ҿ���O[GH]ƿ��M��O�a��^�_Œ���Z2�^]� ���#�J.�EƘ�.�EƑ����Ƅ��=��������]�^�_Œ�_Œ�úT��^ź���ϔ�!��^�^�^�Ƽ���ǀT�WX=����SU�����͑����Ѽ��ǾA�Q���»�Ի�Q����»]����&*�'[��9���"4�`d��=���bn[yЀq ��X�9�ɼ̾S�m½4��W}\���l���Ѽ � �_p@��yГЀ\�2»�3�^�^�^�^�^R������I����܀�����J*���VƼ������P!1�[��>��B`�_�� �^�� S��"�#�� J���ҿh ����/�ς��.��?��YZ�� ���^�^�^�^�^�^�^�^�^�^�^�^�B`��^�^�^�^�^�^�^�^�^�^Mî���\]ҿ������� ҿ������Ƽ_�!����ջK�����J��_�Ѻ<��/ )����Ļ�^]������-��Ѐ��^�^�^�^�^�^�^�^�^�^�^Z�����Ӿ� ����Z�A���^�^�^�^�^�^�^��Q��8½J�^�hмX����S���Հ�^�^�^�^�^^]+Ŀ\��I����ZWǿ�������V��Z������QWY��ɼ|���E�����!��)�]P�����9$��Þ^]�������W�����T����"��T� �"�F�&*`���^�W��X����ƀ���\]��ғ�� ��Ҁi<5V��Q»\W�ɑ��������� ɼK��]Ѿ�_���h�_� f]���|���^�^�^�^�^�^���P!1�[��>�^*���VƼXƦ�\�]��>đ^�x�%��+ �>����s]�������!������p��[Ϫ̩^�^�^�^�^%��[��^]�;��W��;���> ��Ya�^��X���s��^(� N�\] ����Mî��L�lU�؀�)��ǽ fb�+��O[GH]�Z#6�����[�(��Z#6�����[�����W��� ��-Y�$L��ʀ^]�R ۾�����!���F��)���L������c�g>�̻�J��3��Ñ���~�I������I� ��̐������\��%-�Ϫ�\��î�^�x�%��2� �T����ܫ̻�^�^L��P�ּ�L��P�֔z��P�ּX��û��F�@V!��5FѾ�_���^ ��p��ue��R�^�_Œ�m%��^]��������QU�Ⱦ�����VNU~v���QU������]��p��[��!��:V�Zt�����\��>��]R� ����P��ϼ8Ͻ�'Ӿϑ��UJ��»���Ƽ�\"C��ϝ�^�^�^&*��O�a��'Y� ��ź�Z2���V���L��W�Z2��i<5V�� �*�� ���s�r�\�H�VNU~v(�k�� ��bĻ ���c���a����\��_� f��F��\A�Q[��,�cۀZ���oZM�̾S�̾S����ڀhЫ�Y��E��YZ�]��Ի�Q�����A�Q�����^]V��/�����+��i, \�] ��Mî�^�(�Ϻ)�� 6��]�\���û���WT���\]�Z.5���p k!��^�^�^�^�^�^��QY\�»����»�Ի�Q����»�c��^�^��ǾC��[�̐^u$�`d��\�Ya�^+Y�\ƀ^]k������\��٫�0�����\]���귁ǼѺ<��/��Ӽ9'ǝ�^�^�3 �^�o�&*VN��'M�̾S�����2"Ɣ�_p��^�^�^^�X�1��E��P!$���j��XJj�A�$Y��B-Z�\]ʟ���ƼZ��������R%c�����_p��k�������R%c��`�]����Y��E��YZ�]�U�����ý»bĻ����"J����8�Կ'�^ �����ӫ3�U��� ��»� >W�8ժ̐���P!1YZ��ȾȾ��Wn[W���@ Z»H�Ҁ��'�U����� �����ӫ3^=Ͻ5��Ӿ� ʗ �*�U��� UH6[�P�ͣ���/л��&*���������\l������������i<5V�̩^�^�^�^R������I����ހ��\Ϳ1, \��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��Go�`]}� �0��Ņ��G��P!�K� ��������R%c��^ R���[bni�\R[��[������wt��q�K� �Ҁ�\Ϳ1, \�����Ѽ��ǾA�Q����1P!ʀ�î�����^����y���b>�E���^#[�#[��/�w/� f]�U��A/��`���Mḭ̂^�(�Ϻ)��V�^� ��#Ƽ_�![���V8Ñ��^��V���X�W ��Y��E�Ņ�^(�Y ">Wn��\Ҏ���^l�"�V����#�Y �8k!b����i, \�]ҿ�������Z I�}T��\˺��|ӂ���B`�\��î̐) ��cM��^�^�^�_� f]0�ӣ^�X�;�C��\�_� f�h�`d��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^V�j�� .#]3_� f�� �*�U���([ �Ǿ�������d�H���l�W8�Ҁ�l����(��q�^CT�]V�OJgƺ���W}\���^�^�^^ R���[bni�\R[��[�Go!�K���M�v�� |������͑��Q �ϐ�.Ҁ��Z�;�1OJ�}\��c���ӼT�Df�����[��>I� Jh����R�\"�0Sý��:a������^��X�L�^]�ڄ���I� ���EƑ�iZtN���{Y��Eƪ̩^�^gӼ�+�������N����g>DR���#�Y �8k��?]V����Z��]�^�.��?��YZ�� ��Go�`]5� đ�T�]��Ϋ3^=[�dD[ƀ`d���QKǭ�^ ��[���Z�Ǥ���Z��]#�Ӻ�ɪ���wt�΍�^D��Jh���P!��5� �^^�u�Ƽ;��+����^�^�^�_Œ�h�%��̐���������Ӿ���wt ��]����\�H�Ҁ���2"Ƽ��p��^b��V�=)�T����W�Ҽ���Ɉ6��y ��GeP \���;�=���5�ue�/���î���cN�ͼ ����e��̀ ����e��cN�ͼ ����e��ʀ�Mî̩^�����m½$Ocƺ� �T@�cƪ3Zt;B���T��Ƽk��������2"ƼӾ��E��Wn[@��^b��V�DҀ�����Ѽ���»�A�Q�^^�x�#��`d��^��,�)�)�Tώ���^�^�^�^�^��XCU4���^��~�� ���^W�%�bn�����I��Zt;�3�"H�WU�Eƀ���^�h��^��B`�m½4�P!ʀZ����.�E�]#��pF;�ϻ\l�΍�����^�$�^],��[���J!��^]���p�ϼK��l����h�_� fb��A���`��^�_Œ�`d��Ļ�0��ǼѺ<��/��ӼX� S�����ZYʀ��'h��#�Y WĻ�^]��A����^]�6f§�Y��E��YZ�]���������ɻ����"�Mî�Mî̐^�+�ӿ� W�TDŽ���^]ο�?��]����\�V��� �P��^��� ����� %����� �\�X�Y�$�� ��^�_Œ����m%[�̐����I� ���OgS[z�^�Ǽq��DŽ�N�͑���� �e�^ ������μYae��Α�^�^�^�^�^�^�^�^�^�^^���Q�0�]V��!���ς�^],���Ӽh�����Tǀ�������(�-�]����_s�rýl��?ƀվd; �X��d; I/��̐&*YZ]5� đ��+k�̐i, \�]ҿ����Ya ��]�����V(��E�!]h����E���^��W�Ҽ���Ɉ6�������-R[C�Α�^(����Ya���W�Ҽ���Ɉ6��y ��GeP \�`d��,�/s�`�^]���p�ϼ_� f]����+����Z��bĻ���Z��]h%��^���^V0Ȼ��]%��Wn[@���&*YZ�C���^�^�^�^���Q���ӿ�#��Ҽ���������Հ���-�����>�`d���QKǭ����Ɉ6�΄�+�Ӿ ����) �F�ğ��)����ʺ��O ���f�5� ����Ѽ^�Ӿ��h���������d��^A�#Ǿ�п���]M�X��L�EƑ��^�_Œ����Ѐ�Wn[@��V(���V8�]!W9���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_���Q5���O[GH]#�����O�a���̻ͼY��Eƪ̐��.7�X��^�x�V��Y��E��YZ�]�U�����ý»]���"��^�^�^�^�^�^�^�^��׼Ӿ�� Ҁ\��î�^]����ʆ��4W}\CO���^�^�^�^�^�^�^�^�^�^�^�^�^� ��{KY�̩^�^�^�^�^��Ǿ�+��B-���]�k�����Uź�ɑ���wt�΍�X�L��0Sý��}�] �V �$͑^�X�1�V��^�^�T! �]Y� �_� f Ν�^�^�^R�����X�����ړR����A������ګ�^�X�1�Eƀ�R����5F�m½4�����YZ���p��[Ϫ̩^�^^y�ӿ�ȻҎ��/�#�_s�rý]+�[ϼ/�#��^���FɄ�\�2»�3�@���-��W�Ϩ��) �W�T�`�]��H�Խ,H��ʀ�����ؓ�d��ҿ����=�����W}\��O�a���Q��8½J�^�W�"����� �e�^Go�ϫ����ҿ�D��F���R��&*�-�TǑ�������Z���$�.��_�Ѻ<��/ )���Go �������yм^�c�T���#y��;��\���^�ο�?���������#�[��q���D��N����� ��̐���Ɉ6��W2d��\��î�^�X�1��[���Q�Ž�������^�^�^�^^]k����ýJMî���+o%-� ��9Dʀ��pF;�ϻ\l�΍�����Q����������"��0J\��̐�+H��E�{��T���������^���)���q �N���φN���^�^�^�^���^�^^y�ӿ�Ȼ� ��A��VZ��]����gƺ�ߺ����U���TV�c��)�]�)�T�����ym�ɾ؀��Ⱦ���em½$M�v������5�^����! ���EƑ���Ӕ��U��DŽ�) ����^�^�^+�Ӿ �? TW-�-M6��Z���oX�L��^�NU~vW�ae�PĦ�Tμ�"0W�Ƚ]���'��Z2�8 ��ɗ����(V��yP�^�X�1���\��3�^�^�^������\]��Ǿ�����d�e6]���.�ȧVNU~vW"����^],��[���J!���!��ɣ�^�^�^�^�^�^+�Ӿ ���������NUJ�� H���Q �ϐL � �*�� �O�a�^�x��)�T���pF;�ϻ\l�΍�O[GH]ƿ��M��O�a���W}\���R�����I��݀%^�(��������y���]��ʺԯ��B`��^�^�^�^�^^]�,�%K�р��> ���EƑ�G���'M'V����c��@�;S�Ī�\�];��\��"�O>��Eƀ�^^������Ӿ����}\��YZ��A�Ր0Sý���\���^������1���������B-Z�\]}T4��^�x��-_� fA��������g�m½�E�I������� �\�������$Ǥ�Yǽ�L\�^l�½����F?�3�P��ϼX�Ӿϑ^�_Œ�m%���\˺��|ӂ��M�KS�����M�K��\���Q��sS�d�͟����h%, \��^�^�^�^�GI� ���EƑM�̾S(��־���"�־����:�ͼjʺ��^�_Œ�m%��\��î�^�^C2e, \�O[GHl��ƓO�a��F��ς�9ϭ���]�����s�r�\�o��ȗ^���h�`d�`d���QKǭ��W�\�L\ �����"bĻ���"]������ǾŽ����T��)ǀ^=[h�������� �X�]� �]�#��Ϫ��p k ���M� [�+�Ӿ ���e�����.���a��%�^\Ժ�"ӂ�� g!��8Ͻ���gƺ�X� �A�H�Z:�B-m���]M�L\��#Ƚ�JZϨ��^R�[Ӽ�]!�%qXƻQƻϫ�M�̾S�Ya�^����r��^^]���$3�Ya����Q �ϐ�#Ƚ��^�^�^�^�^�^�^^y�ӿ�ȻҎ�����&��8&��'�&w�&y�'�Ý��YPͼ��Y��^�^�^+�Ӿ �����Ƽ�î�����y��ʑ���]�)�]R��Z2f��+�Ӿ W �]���'��Ǿ�W ����������ŽM��^�^�^���m½$0ǼX���)��ǽ fb�+��X�Y*X�Y*ý��;���Ƒ� �*μ�����̐i<5V���d� ��jӺ>� �[lU� ϣZ"Y��p|�������� �A�QYZA/p�������?��R������I����܀�YZ�M�̾Sb�a�YZ��/��/��/����ѼkZ��^�kZ�W�ϨɾƻҼ^�ǼqH�Ⱦ�>�ɾƻҀ��N�Wn��� �(����� �T�̻�Z�Ǥ���Z�Ǥ! û�����Yae�^+�Ӿ ����U��Ǽ8Ͻ�' �»,�Ҁ^b��XB-X�Y�$ 6����_DȽ � �]�Ƚ ��ɼ�F�d�Eƀ���ʀ�Mî̐�����������+�Ӿ ���^���D���� ���B`����yP΍�P΍�̐ɾ,KT]$)� Y���. Z"4����"�ž��]ҿ�%����\]���Z��ͼFɁ ս�^�^]ο�?W�����G��̾S��G��;�����YZA/�!��� �'���Mî̩^�^�^�Wn[�4��ú,(�H�Ҁ�����JM/)���l���Ѽ̻͂��������ɞ��Ļ�^]�������^���^��Q�^��E��#�Y W8��Ƙ���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�2�[��½�V��#�(�;ƀ��.\bĻW S.\]MUf��^�^�^�^�^�^�^q�Ku��NU~vW����O�a��^�^�^�^Y.�������¾ b,1�XƑ�����N���J���yм^N���JЀ^I‰�T��`dW�Z2��)�]�[��v�F����Go�`]}� �0��Ņ�j��Ӿ� �/�L [�� �*μ_V �a�C����dH[W��������;��\���+�Ӿ ��@�Ѐ���ѼkZ��^]kZ��3O[GH]ƿ��M��O�a�� �*�U���([ �Ǿ�������d����-���(��Go!�\��î�X�L�X�L�] Ի ���L[D�Ի ���L��^�^�^�^�^�^�^�^�j�� .#b ��̻^�x�b���"��Ǻ����\��#�Y �8k��?]V����s�r�\�o�`K� {�'���ӑ#�A8���J��3��Ñ��Ƚ Y[I/�@ƿ� U����^�^�^+�»�/Կ�/C�39��� �Y��E��YZ�]�����%���"�^]��'��^� ���.1ZM�X��%_� fb�½ $F��^�ɾ���ϫ̭��"bĻ���"]��A����Ƒ����������\��̩^�^�^�^��5F$�O��1��Ǿ�����Ѽ��ǾA�Q�.���Z��SQCϽμ�T�������R%c��%^] �V*΍��^]������^D��JV���Ђ1^]Kƻ���� �����*�O��H���Q�����b�tN���̐) %�������P!ʀ�^�^�^�^�^�W���B-H���+��^�_Ie��Z�̐,�Z.�W��Ҫ�^��������^����e ���Go �������ǾC��[zտQ��^�^�^�^�^�^�^V(��E�!]X���T�WXW×`�b�L�c���Zב��Go�`]ҿ��Ņ���YPͼP�ͣ�� I����K�ѫ̐V9ú�=�� ������g�m½�E�I������A�QX�����-�T]r����^�? ɼ���r�{�U��ʺ��O ���f�5� �H��[���^A5�]��ƀM�̾S(��־�����!=�� Ęr�FZ� ��Mî̾��y�y�H�Ƚ��;��2)�EƼX��־��5;]OY ���MÑV0ȻI�^=Ͻ5��Ӿ� ʗ�yP΍���^����X����^zĦ�^�^���]�)�]!��Г�^�_Œ�m%����W�Ҽ���Ɉ6��P!�K� ������B��>�4����־���������bĻ�jJ, \��^�^�^�^�^`�]��H�Խ,H�ԗL?��� [�W�FY��#���h�`d�����X���2T�, \Ę��W}\���X��^�^��p��[Ϫ�M�̾S(��־����^�^�^�^�^�^�^�î̶î�^b��V�u���8��)c����T����/л��^]�5F��\��� �*�� Ϻמ�c�T���#����m½J�������IZ��ǀ�^�^����]+����^��+o���l�ɾ�����c��#�Y (���^z?C��� `d��g{�[�X�L�������»����Ѐ^�X�1�`���Eƪ̳W}\���B`������wt�̺�Z2]� Z»H�ғXƿ����W�Z2]� Z»H�Ҁ���^^]���" ]����^��D!��_p�ɾ��Z[�u��^�^�^�^�^�^�^�^�^�^�������d���V�������Z��bĻ���Z��]��X$j�b�Z2��^�^�ͻ�]NU~v�X�\�ƼX�\���r����A�Q��^��j�[���&*`���q�Ku�ӄ��+�Ӿ �����P!1YZ���P!ʀ��»�Ի�Q����»��#\] #����� �jӼYae���TX�L���,�����P!1�\�YaV�����(Kς�������X�̰^������]����b ����I���Y���Q��8½J�^�) �����Z��SQCϽ�Bo��[#���U�����ӼT�Df�����[��>I� w L����/л����\���^��0Sý�X�L�QEƀ����ҿXN�����V�Iɪ���\]����]+�»��"���^b8½JX���N�ԅԺ����^��"� ��]ʗ�����»���Ѐ�B`��B`������w L�0��[A�Q0��[L\����������^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��\����V����-K�ё��^�^�^�^�^�^�^�^�^�#�Y �&*K��B-K��[W2%���^�^�^�^^ ��[��^�^�^ʺ������ �"���^]�^O[GH]#�����O�a���,\D[E�»��^�^�[��^bĻ�^]�[Ɔ���^W��V�u��^�^�^�^�^�DȽ � �]�Ƚ 4n[��F�Ǫ��[��-���Wn�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`d�Ǿ�+�������j�� .#]fϪ��E�]Q-���ۼ���ۀ�E�]Q-���ۼ���ۀ���Q���ӿ�#��Ҽ���������Հ�� �ϐ�L��CU4��_/)Y�Ҽ��Q�C5� 6�����X���"��X�ʺ�̐��L [(�����Q��̐������(�-h�̩^Zl�?ƺ�Y�����Q���ӿ�#��Ҽ���������Հ�(�;�@ɑ�^����͔D[�TV�>�����#��!@� SE�]!�^]j��L [(��]���`d���U���N"0���Y�����cN�ͼ ����e �����ҟ�0Sýz\���m%[�����Ѽ8��Ƃ��^�Ǽ$G���^�Ǽqл�N�R[��^y�ӿ�Ȼ� ��A��VZ������I��݀�^]$H�Ҁ��B`��0Sý�h���H����e�����%¾1���ހ�^��|μX��&*! ���&*�V�����VƼ$#�&*!I/z���E�]Q-���ܼ���܀�î�0Sýz\]M���Y��� `?�� `?�3��p�F���E�]Q-���ؼ���؀�K���M�v��W�FY�����J�H]2���J��]��H������������Ya���)�]L �����־���������YPͼXCU4�����@�MU�E��M��\Ǽ�OMU�EƓOMU�EƂ��X�� Ѻ;�1� Ѻ;�1Y��E�(��_p�Fɓ��_p�+���#����ɑ �*ZZ��OYƺEƑ�J��]��H�Խ,H�������Ya�� �*Z»D����M���E�]Q-���ݼ���݀���½ 4�XH����%��V8�]K�Ѫ3�K���M�v�EƼ�۪�T�W����Ӽ��"�Ҁ��(Ѻ:�ǀ`�]��H�Խ,H؀^���Q�0�]V��d� ��Z���f]���A 9��\��^��|�W��� �Eƪ�V(��E�!]ǽ�ž�X�����Q���ӿ�#��Ҽ���������ՀV(��E�!]9���A�ӣ�������Ŀ��V8Ñ�T�D ����ϼ� �0�����Ǿʪ̭Mî̐�p�-X�3�J��]��H�Խ,H��������Ya���YZ�ß�R���[�ϼX�dc]����2ɣ�)�l�ɼK�ё��P��ϼX .����R�����%;��E�]������?�M�K��`��C�ɨGž�K#��f���z\]����J�M�̾SW8%��9bĻW8%�C�b��;���Z��#[NU~v=%#���#��X�̀Zt;�3����~�����ժ����QU8½w N�\��.4��+�Ӿ ���(��N�ǀ�E�]Q-����������0SýI�Sý�Yƿ.\�̭�»�,�c��W������؀^ ��ڼ��!�Q��������D�ɺȗ+�Ӿ ��N�ɟ�tZN��úTϼ�E���t��^�Fɺ��ڔ�Fɺ��ڀ��Q���������'�������Q������T��`��^W��V� ���EƑ�u�� �\��Ņ�^]��Q��ZW�t��X�Y* �[����E�]Q-���������U����ȾȾ�Fɔ����U����Ⱦ���Ⱦ��ȾȾ��#�[��� Ī�,��[��(�d�����Ժ�ǀɾ���?@�TEƀ^]���_� f]�H�,ǀ�h�`d�^],���Ӽh����̾S�F�������W������2"ƼǽL��P��ϼXs���CU4�5V���Q���ӿ�#��Ҽ���������Հ�J��]���H��ZԽ,H�������Ya���ν� ��Հ�XWʺ �b ���\�l��W ���Ŀǀ���2"� �!��̳ �)J��)wtź}FL�ʀ /[�3�I��]����J��]��H�Խ,H��������Ya���� y����$M�3��J��]��H�Խ,H�������Ya��������� |�����+o`d���ĺ��ՀO[GHb8���\�`�B`A L�����^�����H�ʑ`�]VӾ�V���_�Y�"Ŀ,����� ZA�Ȫ̺��FY�VZ[�W��FYN�G �������w��ۀV�j�� .#]f�I�m½������K������e�����.��}\�fE�z��A5�����!Q��0Sý��}�]Yǽ�ͺ���R�]� ���������]V?ƀ� �*0����)��ǽ fb���W�2f������A���X��¾�����J�H��+�Ͼ 'FY0�*�����Q���ӿ�#��Ҽ���������ɱ����VƼ$K�ё�E�]M�̾SԾ�\��ؼ��؀�J��]���H��_�����Ya���Y��EƼ�W�Z2�Z$Zý����\]�������������Hս��R�����%���R���� ���E�]����Ƚ��� �»�0���f���Ǿ�\6�Ҁ�^�����I�{c�.�����_W��4�[� ��YZŅ����2"�=½�,$Y��tZN��úTϼ½��T�V�j�� .#b �]�H����[���_/)Y�Ҽ��Q�C5� 6���������F���e�����At����ƻW�����At����ƻ���ƺ� �� ��������ɺ��gƺ;��Fɔ���gƺ;J����'���=�����#ё�_/)Y�Ҽ��Q�C5� 6��������A�Q��+�»b����A�Q�Ņ��I� ���E��F��E�]Q-���ڼ���ڀ����D� |�ڄ��Г�Rз�V�j�� .#b ����T;6���[����Q���ӿ�#��Ҽ�û̼���������ǼX��Ž�Þ�E�]Q-���ټ���ـ �*μ_V ]���������Ӿ� ���:ʀ���+o���]�ʪ̐�����r��� �ϐm�ɾ���`4�#���H׫���Q�Ž�I��|�C� �����c��#�Y (����P#�\���ټ��Q�E��ڀZ�\b���c��#�Y W�Ϩ��[�\��ɼӾϪ��]�J�LӪ̐U���W��Ǫ��E�]Q-���������E�]Q-��������KUJ5*����yм^�ο�?I�A5���P���(Ҳb��\��C�Ӿƀ�_/)Y�Ҽ��Q�C5� 6���X����ƻ������ ��ý���[�ϼX�dc����M�;��?���"���^]�^�.�T��D�����^�^�^����^]�<�2����[������h��h�^���^��|Ϋ�0V�0V��^�x�V�����-��μh�`d� �*μ_V ]���������Ӿ� ���:ʀ�Ļ�0��ǼѺ<��/���(��ƻ�3�M/)��Go��#�Y ��.�1��� ɾ��^]����ʆ��4���������Z���)�FZ1���]�+�Ӿ ����'��ǾƼF� �����A����ƀ�.��+����^��~� ��]���������W���YZ]ĻT�QX�L�]Ļȼ��I�N�Y�������»ӓ����»ӼP!�����C����N���Β�����1�i, \�]ҿ���^Wk��\�hI���T����΁�̐������ųI�d��L�Eƪ���Q_W��4�[� ��Y���!�@��Zt(�/�Zt@�����wtI�^���Q��[��W�)���[ym½��?�Ľˆ�\6[�̐Y���ц�X��M�̾SW8%��9bĻW8%�Cā���W�Ҽ���Ɉ6��y ��GeP \�^ R���[bni�� �A�� �T��d� ��ƿ�W�a��Ž�"����]�^^*���VƼXƦ�\�2»�3 �����-������������]�+�Ӿ � �����-9����^� ��#�N���YZ�!������e ����[�ϼ\����"Ϻ)W�����ɣ��X���B-Z�\]X� S��d ������N����^]K�Ѻ�#���I#�������]�Ȼ���[N����Z��͑ 6��Z»z��YZ����^� ��#Ɣ�X�V8Ñ�Go�`]5� đ�ͻ�l��=�����û��J!�½������pT����AT�������R%c��&*�-���»W��?��� N��T$Y���K#��f]Mȉ�N#1X�L��&*Ǿ����Go >��=���j�1�^�^�^���8�Կ'V(�� �EƑ�Z��ͼFɁ ս�^��P!��p����%��^�^�^�^�^�����ټ 6���E��Ǽ��[ϼ��ƑYa��ҿǞ�����%-, \�]�����Ǿ�̺Ļ�^]�#�Y yп�����^^�x��-���F��gƺ;��Fɔ���gƺ;J����'���Z��]�^����h%K�ё���[ ��]��[§\��î̺Ƚ�Tw�����[��GoX�L��^�^![�� ���Go �����Ƚ�TJ�Ɛ��Q�Ɛ��î���e!���^�_Œ��#�Y �Ѐ�!��h��T�W����Ӽ��"�ƪ��W�Z2�/�3_pI/)Ҽ���Y�Zȗ�k���, ����][��^�^�^V�j�� .#] �;��Eƀ��^�x��-+H�3�^�^�^�^�^�^�����!���!��h�m½4z��5���^�^�^�^�^�^�0Sý��!§�^�^�^�^��.��+�}�=�� đ����#��!@� SE�]����EƀýJMî̺�ae5��5��3�ɾ�� ������ؓ�d�̩^Mî�ýJMî̐^�W �C���]K�T�̻�î̃��^m���\��\�2»�3�Ǽ��[ϼ��Ƒ���Ѽ ���% ���% k�[ �Ǿ�������d��^�^�^�_=Ͻ��E�D��ǧ��X����KY]K��]KY��ZϨ�м^B`��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�d�e6]��YZ����L�y������#�Y W��\]�.�1��]��ɑ�^�^�#�Y B�*�, ���l����@ս fN�ǫ3����B� �\�������g�m½�E�N��C�m½�Eƪ���e��e#��!��:V�ZtW�t��^��Vƫ�\���^�h���»�,�cݼ��؀����־����������+oX�̀�^^���������������w L�������\��%-�� �A/�ϼF�@V!������[ ���^��j�[������]��6��ͫ���W�Ҽ���Ɉ6��y ��GeP \�0J\��̐�Ƚ � �]S� U��=�־�Z����Vƫ�Y�T@ƿ§��Q �ϐYZ��\�Y��E��YZ�]�����%�^��\]h�����"Jh��|�#Ǿ��Ǽ��[�@�MU�Eƀ^�X�1�����X�L�`�]V!�ڀ�J��3D ��Tǀ��� Q��H��EƼX������+�X�9��\���Mî����-5��+�Ѿ5�M�̾S(��־���Y.�������¾ b,1_� f]#р�^D��wt���a��\�#W�aV��B-Z�\]ʟ�^]V���0V���î��#�Y �c_������)Xd���#�Y B�*��&*�#�Y �����P!1�[��>�Ǻ�V��\��̩^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�#�Y WĻԾ�T@�T=�� �]!���^�^�^�^�^�^�^^�X�1�`���Eƪ��ͽɼ��@�Ѐ� �^��3�^�_Œ���+H�̰^CT�]V���ɺ�kK�ё��^�^�^�m½4z��5���^�F�*�����̻^���!ź���a��%�^+�Ӿ �&*V��^�^�^�^�^�^�^�^K��[�X�9��\h�V�j�� .#]f�I�m½��9�"�\�9�"�\���8��)cD�Z��Ȝ�)���L��^W��Vƫ̐�»�yM�Y1<5��\�������w L��l����N#�;d�3�^�^�^�^�)�]Y�4�F����΍���Q��8½J�^`�]������Y���ц�̺Ļ�^]���,�3^l�½����F?�3�#�Y ������ҿ�����^�^�^�ɼ��U��� ��»� >W�8ժ�����I����Vƫ�M�̾S(��־��"�־����:�ͼdH�0���f���Ⱦƻ��� 6Ǿ)c��v���^���"���c���� �A��ҫ3� �*�������A�c������N����#�����]�^�R����ܫ�%�����Ѽ��!�]�^"���^bĻD ƻӼ�5ǧ�`K� {�'����]��!���T�_�Ѻ<��/���Go�k��Mî�#\]�L\]Mî����X�d$��[���]!�����ҿh��ӿ����ҿh���[��sĺμX�Y�$, \�Xƿ�'��Z��מ���]�_�Ѻ<_p(��ƻ����׼Ӿ�� Ҁ0��[A�Q0��[L\�������R%c�����Q��[�ּ����TY��!��2'� �* [���d�Eƀ���ǾC��[B`], \đ^]����H��{�����V���L��W�������N����g>W�Ϩ�^�����ʗ�Ļ�^]�#�Y ������ɾƻ�N���U4�Z��_DȽ � �]���ɼ��[�Dý� �Eƀ�P��ϼX�ӾϑGo >zտQe�����c��#�Y �3���h��h�G�A-!]����]3 ����yм^]����Ѐ���cN�ͼ ����e��̀^]����=��}���� �X�L���[y���ƀ^]�ӿ�ȻҼ��������\˺��|ӂ�̳��/л��^ R���[]#e\R[ʀ0���Ya ��]�����dHź�� ������ ��μX�Y�wt��^��YPͫ��^]�ӿ�ȻҼ��������V��G"W9Ϊ�Z:DŽ�]P!ʀ�Z���0Sý����+H��W}\���W}\��^�_Œ�m%�������J`���#�Y �8k��^l�½����F?�K�ё�^]� ���#�wt������%-X(Ҁm½4�X ս�^�� �'�-FZK�р����I���^�^����������M��� ����Q������K�р�� 6Ǿ)c��v����^^�%� Ѻ%-8Ͻ���M��͂�^�^��!]�����p��[Ϫ̐�+�����2"��% [�X�̶î�Z���oZM�̾S�̾S����ڀX�L����P!1Ya��\�Mî�Go�`��Go >�^���h�`d�^�_Œ��9ϭK��]�/��\��̻�c���̻�^��ڼ'�^�_Œ��� �^��3����l��s���3 ��\˺��|ӂ����ɺ�k+���#ʀ��^�^�^�^�^�^�^�^��Ⱦź�V [Nݾ\�f���l���Ѽ ���%�^��Ҽ���#Z ���X�Y*�ƒ��#\]�L\]Mî�� 6Ǿ)cB-��ǀ��R�����I�������/л���^�^�^�^�ɾ���?��Q����������f]�j��XJj��X$Y��> ���EƑ����r��úT�m½4�����ɾƻ�V�ӑ�V��G"�FZ����ɺ�k!����(�� .�Ժ ��*��ӾL\��;ĿҺ�ƻ��F���φN��M�̾S(��־��"�־�����?�+�eM���S���Q��8½J�^���2"Ƽ���#��ɪ����J�cƀ �����ӫ3����������W�ɑ�M�̾SW8%��9bĻW8%�C�] ���^�^h%�ǾjӼ������^�^�^�^�^�^�^�^�^�^�^��c>��T��^]^C2e_� f]��[�_� f���^�^�^��&��\6�����������ҿ�D��F��^]��!=�� �]�����+�UC��\�3��H4y���^W��VƼK�ё�Mî�ɾ���?�ҿ���"��Ǒ^�����^�_Œ��#�Y �Ѐ�Z���oK��]�������B-Z�\]����^�^�^��G�h��h��d� < .�[�B� R+��X���^�^�^�^�^\��î�0J\���^]����H��{����>W��Q�^�x�Ȝ��\Ϳ1, \��]+ ���1��^�^�^�^�^�^�^\��î���»Ӿ�A���>���) �F�ğ`�b9�Կ�Ӿ��� � BH���yPΪ�V�^����Q�A���W�0�� ����ǀ��^�^^y�ӿ�ȻҎ���U���N"0���Y��� �*Z»y����$����M��͂�^]�ӿ�ȻҼ��������#�Y ��.�1Z����������f]�ɼɪ�/��Tǁ��6��ͫ��)�]�[��v��R������I����ހ�^�_Œ�m%�� �*ZZ��OYƺEƑ^�_Ie��Z���φ�̐��c��@�;S�Ī����Wn�����»ӓ����»ӼP!�^]�������^�^ �*�� ��^�^�^�I���Z5(�����YPͫ��V���8��\���� �\���̭��"bĻ���"]���H�Ⱦ�>A/M�5ƺEƑ+�Ӿ �&*V���Q��8½J�^�Mî����"J�^������,�Ҕ�� ��� �*�U���I������UH6��#�Y �&*X�L��^�_Œ�������b�t�P��[�̃�����R%c����ǽ��h���2"ƼǽL��^�^�^�^�^�^^W��VƼK�ё^]ο�?�X�9��\ā�9�����)���L���'h��2'�ĺн�+�Ӿ �\�΍��.�T��z �ʀ`d���Q�C2Yae ����^�^��Rg>����Q�^�î�O�a����!����f( #�3�����'_p�����Ƚ � �]�kƺӔ!��^��VƼ����]Z�`�������ϼ9���]O����j��р\%�\%�̐_=Ͻ��E�WV�\*�\գ�#�Y �������N����g>DR�����^�W���B-H���+���[��qǑ���/л����y���î�^]#$��V������h%, \� �*���ɾƻ������^�^�^�^�^��VƼX�L�O[GH]#�����O�a��&*V�0�]/�V�g]0���`K� {�'m%ƺ�đ��2"ƼӾ��E��V�\*�ȉƑ`�]��_�) Ԯ�^]�ӿ�ȻҼ������M�̾S(��־��"�־����:�ͼc����Ⱦƻ��-���;�����YZ���Ҁ0Sýz\]M���Y��^�^�^�^�^�^�^�^�^�^�^�������J�Ļ�`d ������J<5��\�m½4�G������m½�F��\A�Q[��,�c݀����W9�iZtN���M�̾S(��־��"�־��M���S����%��Ya�]^��(���YaV�� �� �$F�V��\˺��|ӂ�̩^�^�^�^�^�^�^�^�^�^���Ɉ6�΄�`K� {�'!�����h%, \��^�^�^�^ R���[]#e�/�����ym�ɾ؀^]���3\�Ya���� � �^�^�^�^�^�^&*\]�ƀ��^H�҂�������؀^]��Ҽͺǀ����y�@�мE]V���YZAt�/�]����"��ǑGoX�L��G����Д��� ���^��|μ�,�$Y��i<5V���ӿ��^�J��3��Ñ��^�^�^�^^����<�Q`d�����#��!@� SE�]!��)�]!]OYƺEƑ�V�^� ��#�N���!�����]�>�4�������μ_� f] ��H�Ҁ�#\]�L\]Mî��>�K��l"����I#�_���!�M�̾SW8%��9bĻW8%�Cā��p k�[ �Ǿ�������d���Ϋ̻�Z��bĻ���Z�ǁ�����Ѽ��Ǿ����E�ԩ^���Q��[�ּ����TYyP��!���\����Q���"J�)9�Ya����D φ�̩^�^�^�^�^�^�^�^^Af[��Mî̭��"bĻ���"]��� ���H�Ⱦ�v��#�����Ի�Q���^R�[Ӽ�]!�_�Ѻ<��/I�/=��^�ҿ���O[GH]ƿ��M��O�a��^�_Œ���Z2�^]� ���#�J.�EƘ�.�EƑ����Ƅ��=��������]�^�_Œ�_Œ�úT��^ź���ϔ�!��^�^�^�Ƽ���ǀT�WX=����SU�����͑����Ѽ��ǾA�Q���»�Ի�Q����»]����&*�'[��9���"4�`d��=���bn[yЀq ��X�9�ɼ̾S�m½4��W}\���l���Ѽ � �_p@��yГЀ\�2»�3�^�^�^�^�^R������I����܀�����J*���VƼ������P!1�[��>��B`�_�� �^�� S��"�#�� J���ҿh ����/�ς��.��?��YZ�� ���^�^�^�^�^�^�^�^�^�^�^�^�B`��^�^�^�^�^�^�^�^�^�^Mî���\]ҿ������� ҿ������Ƽ_�!����ջK�����J��_�Ѻ<��/ )����Ļ�^]������-��Ѐ��^�^�^�^�^�^�^�^�^�^�^Z�����Ӿ� ����Z�A���^�^�^�^�^�^�^��Q��8½J�^�hмX����S���Հ�^�^�^�^�^^]+Ŀ\��I����ZWǿ�������V��Z������QWY��ɼ|���E�����!��)�]P�����9$��Þ^]�������W�����T����"��T� �"�F�&*`���^�W��X����ƀ���\]��ғ�� ��Ҁi<5V��Q»\W�ɑ��������� ɼK��]Ѿ�_���h�_� f]���|���^�^�^�^�^�^���P!1�[��>�^*���VƼXƦ�\�]��>đ^�x�%��+ �>����s]�������!������p��[Ϫ̩^�^�^�^�^%��[��^]�;��W��;���> ��Ya�^��X���s��^(� N�\] ����Mî��L�lU�؀�)��ǽ fb�+��O[GH]�Z#6�����[�(��Z#6�����[�����W��� ��-Y�$L��ʀ^]�R ۾�����!���F��)���L������c�g>�̻�J��3��Ñ���~�I������I� ��̐������\��%-�Ϫ�\��î�^�x�%��2� �T����ܫ̻�^�^L��P�ּ�L��P�֔z��P�ּX��û��F�@V!��5FѾ�_���^ ��p��ue��R�^�_Œ�m%��^]��������QU�Ⱦ�����VNU~v���QU������]��p��[��!��:V�Zt�����\��>��]R� ����P��ϼ8Ͻ�'Ӿϑ��UJ��»���Ƽ�\"C��ϝ�^�^�^&*��O�a��'Y� ��ź�Z2���V���L��W�Z2��i<5V�� �*�� ���s�r�\�H�VNU~v(�k�� ��bĻ ���c���a����\��_� f��F��\A�Q[��,�cۀZ���oZM�̾S�̾S����ڀhЫ�Y��E��YZ�]��Ի�Q�����A�Q�����^]V��/�����+��i, \�] ��Mî�^�(�Ϻ)�� 6��]�\���û���WT���\]�Z.5���p k!��^�^�^�^�^�^��QY\�»����»�Ի�Q����»�c��^�^��ǾC��[�̐^u$�`d��\�Ya�^+Y�\ƀ^]k������\��٫�0�����\]���귁ǼѺ<��/��Ӽ9'ǝ�^�^�3 �^�o�&*VN��'M�̾S�����2"Ɣ�_p��^�^�^^�X�1��E��P!$���j��XJj�A�$Y��B-Z�\]ʟ���ƼZ��������R%c�����_p��k�������R%c��`�]����Y��E��YZ�]�U�����ý»bĻ����"J����8�Կ'�^ �����ӫ3�U��� ��»� >W�8ժ̐���P!1YZ��ȾȾ��Wn[W���@ Z»H�Ҁ��'�U����� �����ӫ3^=Ͻ5��Ӿ� ʗ �*�U��� UH6[�P�ͣ���/л��&*���������\l������������i<5V�̩^�^�^�^R������I����ހ��\Ϳ1, \��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��Go�`]}� �0��Ņ��G��P!�K� ��������R%c��^ R���[bni�\R[��[������wt��q�K� �Ҁ�\Ϳ1, \�����Ѽ��ǾA�Q����1P!ʀ�î�����^����y���b>�E���^#[�#[��/�w/� f]�U��A/��`���Mḭ̂^�(�Ϻ)��V�^� ��#Ƽ_�![���V8Ñ��^��V���X�W ��Y��E�Ņ�^(�Y ">Wn��\Ҏ���^l�"�V����#�Y �8k!b����i, \�]ҿ�������Z I�}T��\˺��|ӂ���B`�\��î̐) ��cM��^�^�^�_� f]0�ӣ^�X�;�C��\�_� f�h�`d��^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^V�j�� .#]3_� f�� �*�U���([ �Ǿ�������d�H���l�W8�Ҁ�l����(��q�^CT�]V�OJgƺ���W}\���^�^�^^ R���[bni�\R[��[�Go!�K���M�v�� |������͑��Q �ϐ�.Ҁ��Z�;�1OJ�}\��c���ӼT�Df�����[��>I� Jh����R�\"�0Sý��:a������^��X�L�^]�ڄ���I� ���EƑ�iZtN���{Y��Eƪ̩^�^gӼ�+�������N����g>DR���#�Y �8k��?]V����Z��]�^�.��?��YZ�� ��Go�`]5� đ�T�]��Ϋ3^=[�dD[ƀ`d���QKǭ�^ ��[���Z�Ǥ���Z��]#�Ӻ�ɪ���wt�΍�^D��Jh���P!��5� �^^�u�Ƽ;��+����^�^�^�_Œ�h�%��̐���������Ӿ���wt ��]����\�H�Ҁ���2"Ƽ��p��^b��V�=)�T����W�Ҽ���Ɉ6��y ��GeP \���;�=���5�ue�/���î���cN�ͼ ����e��̀ ����e��cN�ͼ ����e��ʀ�Mî̩^�����m½$Ocƺ� �T@�cƪ3Zt;B���T��Ƽk��������2"ƼӾ��E��Wn[@��^b��V�DҀ�����Ѽ���»�A�Q�^^�x�#��`d��^��,�)�)�Tώ���^�^�^�^�^��XCU4���^��~�� ���^W�%�bn�����I��Zt;�3�"H�WU�Eƀ���^�h��^��B`�m½4�P!ʀZ����.�E�]#��pF;�ϻ\l�΍�����^�$�^],��[���J!��^]���p�ϼK��l����h�_� fb��A���`��^�_Œ�`d��Ļ�0��ǼѺ<��/��ӼX� S�����ZYʀ��'h��#�Y WĻ�^]��A����^]�6f§�Y��E��YZ�]���������ɻ����"�Mî�Mî̐^�+�ӿ� W�TDŽ���^]ο�?��]����\�V��� �P��^��� ����� %����� �\�X�Y�$�� ��^�_Œ����m%[�̐����I� ���OgS[z�^�Ǽq��DŽ�N�͑���� �e�^ ������μYae��Α�^�^�^�^�^�^�^�^�^�^^���Q�0�]V��!���ς�^],���Ӽh�����Tǀ�������(�-�]����_s�rýl��?ƀվd; �X��d; I/��̐&*YZ]5� đ��+k�̐i, \�]ҿ����Ya ��]�����V(��E�!]h����E���^��W�Ҽ���Ɉ6�������-R[C�Α�^(����Ya���W�Ҽ���Ɉ6��y ��GeP \�`d��,�/s�`�^]���p�ϼ_� f]����+����Z��bĻ���Z��]h%��^���^V0Ȼ��]%��Wn[@���&*YZ�C���^�^�^�^���Q���ӿ�#��Ҽ���������Հ���-�����>�`d���QKǭ����Ɉ6�΄�+�Ӿ ����) �F�ğ��)����ʺ��O ���f�5� ����Ѽ^�Ӿ��h���������d��^A�#Ǿ�п���]M�X��L�EƑ��^�_Œ����Ѐ�Wn[@��V(���V8�]!W9���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_���Q5���O[GH]#�����O�a���̻ͼY��Eƪ̐��.7�X��^�x�V��Y��E��YZ�]�U�����ý»]���"��^�^�^�^�^�^�^�^��׼Ӿ�� Ҁ\��î�^]����ʆ��4W}\CO���^�^�^�^�^�^�^�^�^�^�^�^�^� ��{KY�̩^�^�^�^�^��Ǿ�+��B-���]�k�����Uź�ɑ���wt�΍�X�L��0Sý��}�] �V �$͑^�X�1�V��^�^�T! �]Y� �_� f Ν�^�^�^R�����X�����ړR����A������ګ�^�X�1�Eƀ�R����5F�m½4�����YZ���p��[Ϫ̩^�^^y�ӿ�ȻҎ��/�#�_s�rý]+�[ϼ/�#��^���FɄ�\�2»�3�@���-��W�Ϩ��) �W�T�`�]��H�Խ,H��ʀ�����ؓ�d��ҿ����=�����W}\��O�a���Q��8½J�^�W�"����� �e�^Go�ϫ����ҿ�D��F���R��&*�-�TǑ�������Z���$�.��_�Ѻ<��/ )���Go �������yм^�c�T���#y��;��\���^�ο�?���������#�[��q���D��N����� ��̐���Ɉ6��W2d��\��î�^�X�1��[���Q�Ž�������^�^�^�^^]k����ýJMî���+o%-� ��9Dʀ��pF;�ϻ\l�΍�����Q����������"��0J\��̐�+H��E�{��T���������^���)���q �N���φN���^�^�^�^���^�^^y�ӿ�Ȼ� ��A��VZ��]����gƺ�ߺ����U���TV�c��)�]�)�T�����ym�ɾ؀��Ⱦ���em½$M�v������5�^����! ���EƑ���Ӕ��U��DŽ�) ����^�^�^+�Ӿ �? TW-�-M6��Z���oX�L��^�NU~vW�ae�PĦ�Tμ�"0W�Ƚ]���'��Z2�8 ��ɗ����(V��yP�^�X�1���\��3�^�^�^������\]��Ǿ�����d�e6]���.�ȧVNU~vW"����^],��[���J!���!��ɣ�^�^�^�^�^�^+�Ӿ ���������NUJ�� H���Q �ϐL � �*�� �O�a�^�x��)�T���pF;�ϻ\l�΍�O[GH]ƿ��M��O�a���W}\���R�����I��݀%^�(��������y���]��ʺԯ��B`��^�^�^�^�^^]�,�%K�р��> ���EƑ�G���'M'V����c��@�;S�Ī�\�];��\��"�O>��Eƀ�^^������Ӿ����}\��YZ��A�Ր0Sý���\���^������1���������B-Z�\]}T4��^�x��-_� fA��������g�m½�E�I������� �\�������$Ǥ�Yǽ�L\�^l�½����F?�3�P��ϼX�Ӿϑ^�_Œ�m%���\˺��|ӂ��M�KS�����M�K��\���Q��sS�d�͟����h%, \��^�^�^�^�GI� ���EƑM�̾S(��־���"�־����:�ͼjʺ��^�_Œ�m%��\��î�^�^C2e, \�O[GHl��ƓO�a��F��ς�9ϭ���]�����s�r�\�o��ȗ^���h�`d�`d���QKǭ��W�\�L\ �����"bĻ���"]������ǾŽ����T��)ǀ^=[h�������� �X�]� �]�#��Ϫ��p k ���M� [�+�Ӿ ���e�����.���a��%�^\Ժ�"ӂ�� g!��8Ͻ���gƺ�X� �A�H�Z:�B-m���]M�L\��#Ƚ�JZϨ��^R�[Ӽ�]!�%qXƻQƻϫ�M�̾S�Ya�^����r��^^]���$3�Ya����Q �ϐ�#Ƚ��^�^�^�^�^�^�^^y�ӿ�ȻҎ�����&��8&��'�&w�&y�'�Ý��YPͼ��Y��^�^�^+�Ӿ �����Ƽ�î�����y��ʑ���]�)�]R��Z2f��+�Ӿ W �]���'��Ǿ�W ����������ŽM��^�^�^���m½$0ǼX���)��ǽ fb�+��X�Y*X�Y*ý��;���Ƒ� �*μ�����̐i<5V���d� ��jӺ>� �[lU� ϣZ"Y��p|�������� �A�QYZA/p�������?��R������I����܀�YZ�M�̾Sb�a�YZ��/��/��/����ѼkZ��^�kZ�W�ϨɾƻҼ^�ǼqH�Ⱦ�>�ɾƻҀ��N�Wn��� �(����� �T�̻�Z�Ǥ���Z�Ǥ! û�����Yae�^+�Ӿ ����U��Ǽ8Ͻ�' �»,�Ҁ^b��XB-X�Y�$ 6����_DȽ � �]�Ƚ ��ɼ�F�d�Eƀ���ʀ�Mî̐�����������+�Ӿ ���^���D���� ���B`����yP΍�P΍�̐ɾ,KT]$)� Y���. Z"4����"�ž��]ҿ�%����\]���Z��ͼFɁ ս�^�^]ο�?W�����G��̾S��G��;�����YZA/�!��� �'���Mî̩^�^�^�Wn[�4��ú,(�H�Ҁ�����JM/)���l���Ѽ̻͂��������ɞ��Ļ�^]�������^���^��Q�^��E��#�Y W8��Ƙ���^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�2�[��½�V��#�(�;ƀ��.\bĻW S.\]MUf��^�^�^�^�^�^�^q�Ku��NU~vW����O�a��^�^�^�^Y.�������¾ b,1�XƑ�����N���J���yм^N���JЀ^I‰�T��`dW�Z2��)�]�[��v�F����Go�`]}� �0��Ņ�j��Ӿ� �/�L [�� �*μ_V �a�C����dH[W��������;��\���+�Ӿ ��@�Ѐ���ѼkZ��^]kZ��3O[GH]ƿ��M��O�a�� �*�U���([ �Ǿ�������d����-���(��Go!�\��î�X�L�X�L�] Ի ���L[D�Ի ���L��^�^�^�^�^�^�^�^�j�� .#b ��̻^�x�b���"��Ǻ����\��#�Y �8k��?]V����s�r�\�o�`K� {�'���ӑ#�A8���J��3��Ñ��Ƚ Y[I/�@ƿ� U����^�^�^+�»�/Կ�/C�39��� �Y��E��YZ�]�����%���"�^]��'��^� ���.1ZM�X��%_� fb�½ $F��^�ɾ���ϫ̭��"bĻ���"]��A����Ƒ����������\��̩^�^�^�^��5F$�O��1��Ǿ�����Ѽ��ǾA�Q�.���Z��SQCϽμ�T�������R%c��%^] �V*΍��^]������^D��JV���Ђ1^]Kƻ���� �����*�O��H���Q�����b�tN���̐) %�������P!ʀ�^�^�^�^�^�W���B-H���+��^�_Ie��Z�̐,�Z.�W��Ҫ�^��������^����e ���Go �������ǾC��[zտQ��^�^�^�^�^�^�^V(��E�!]X���T�WXW×`�b�L�c���Zב��Go�`]ҿ��Ņ���YPͼP�ͣ�� I����K�ѫ̐V9ú�=�� ������g�m½�E�I������A�QX�����-�T]r����^�? ɼ���r�{�U��ʺ��O ���f�5� �H��[���^A5�]��ƀM�̾S(��־�����!=�� Ęr�FZ� ��Mî̾��y�y�H�Ƚ��;��2)�EƼX��־��5;]OY ���MÑV0ȻI�^=Ͻ5��Ӿ� ʗ�yP΍���^����X����^zĦ�^�^���]�)�]!��Г�^�_Œ�m%����W�Ҽ���Ɉ6��P!�K� ������B��>�4����־���������bĻ�jJ, \��^�^�^�^�^`�]��H�Խ,H�ԗL?��� [�W�FY��#���h�`d�����X���2T�, \Ę��W}\���X��^�^��p��[Ϫ�M�̾S(��־����^�^�^�^�^�^�^�î̶î�^b��V�u���8��)c����T����/л��^]�5F��\��� �*�� Ϻמ�c�T���#����m½J�������IZ��ǀ�^�^����]+����^��+o���l�ɾ�����c��#�Y (���^z?C��� `d��g{�[�X�L�������»����Ѐ^�X�1�`���Eƪ̳W}\���B`������wt�̺�Z2]� Z»H�ғXƿ����W�Z2]� Z»H�Ҁ���^^]���" ]����^��D!��_p�ɾ��Z[�u��^�^�^�^�^�^�^�^�^�^�������d���V�������Z��bĻ���Z��]��X$j�b�Z2��^�^�ͻ�]NU~v�X�\�ƼX�\���r����A�Q��^��j�[���&*`���q�Ku�ӄ��+�Ӿ �����P!1YZ���P!ʀ��»�Ի�Q����»��#\] #����� �jӼYae���TX�L���,�����P!1�\�YaV�����(Kς�������X�̰^������]����b ����I���Y���Q��8½J�^�) �����Z��SQCϽ�Bo��[#���U�����ӼT�Df�����[��>I� w L����/л����\���^��0Sý�X�L�QEƀ����ҿXN�����V�Iɪ���\]����]+�»��"���^b8½JX���N�ԅԺ����^��"� ��]ʗ�����»���Ѐ�B`��B`������w L�0��[A�Q0��[L\����������^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^��\����V����-K�ё��^�^�^�^�^�^�^�^�^�#�Y �&*K��B-K��[W2%���^�^�^�^^ ��[��^�^�^ʺ������ �"���^]�^O[GH]#�����O�a���,\D[E�»��^�^�[��^bĻ�^]�[Ɔ���^W��V�u��^�^�^�^�^�DȽ � �]�Ƚ 4n[��F�Ǫ��[��-���Wn�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������I�a��>=�i���IW�����,G�c��� 8 J g � � �    A R m � � � � � � + B \ � � � - � � � #B]z����2BQiw�6e��(��v�������s�����3��'?Xk|������';Tf|����� � � !B!Z!�!�!I"j"�"###C#`#{#�#�#�#$:$K$a$r$�$% %/%A%T%n%�%�%�%�%�%&-&n&w&�&�&K'j'}'�'�'�'�'�'�()6)k)~)�)�)�)m*�*l+�+�+�+�+,f,�,�,�,-c-{-�-�-�-.=.K.�.�.�.//^/r/�/�/�/ 0&0d0w0�0�0P1`1{1�1�12%2I2V2�2�2*3�3�3�34=4�4�4�4�45�5�5�5�5696V6�6�8�89J9X9�9�9S:b:{:�:�:�:�:�@:A�A�A�AwC�C�CDD0D?DcDqD�D�D�DHE}E�E�E=F�F�FXGhG|GH�H�H�H�H�HII�I�I�I�I�IJ2JTJ�J�J(K9K�K�K�K�KL`L�L�L�LM!N4NONjN|N�N�N�N�N�N�NP3PwP�P�P�PPQsQ�Q�Q�Q�Q�Q�Q)RDR^RvR�R�R�RmSSzT�T�T+U`U�U�U�U0VzV�Vj[�[�[<\�\]$]:]G]f]}]�]�]�]^�^�^N_�_�_�_�_�_`(`t`�`�`�`na|a�a�a�a�abBbmb�b�b�b�b-cBcic�c�c�cd8d�dGe�e�e�eXfif�l m|m1n�n=oZono�opGp|p�p�psq�q�q�q�qrr?rtr�r�r,sXs�s�s�s�s�sKt\t{t�tu�u�u�u�u v"vOvjv�v�v�v�v wSwdw�w�wVxkx*y�y�y�y�yzpz�z�z�z�z�zB{c{r{�{�{�{�{(|f|{|�|�|}d}w}�~�~�~�~,GYx�����%�����ׂ�z�Ѓ�/�@�O�Ƅ��Յ���!�8����������؈�6�ˉ'�����Šm��[���Ì1s���D�X���������ݍ������� �8�}�b�u���������������_���̒����:�c�~���������)���ؔ���1�f�u�����>�L�p�������c���������g��n������ ��4�V�k�ęי��G�p�w�����.�>�w�����+�S�����ɝ^�y���מ���%�����ʟ���1�C�]�~�������٠� �'�>�N�X�h���������͢��<�W�r�������ƣ֣+�P�e�Ӥ��#�X�{�:�x�����3Y��ߦ����g���Ω��2�K�V�g�y�ժ/�d���ë����B����-�^���������ܭ���ʮ��ٴ� �P���̵��|�xI������\�q��;�m�Ⱦ��%���4�N���2�O�\�o���������� �:�D�����E�����Z�q�������q������������H�e�y����������-�q�������������0�M�b�������0�J�_�y������������������?�P������X�h�����������g�u�����)�L�p�~���������8�F�u���&�����5�����(�8�g�����T�g�u�������������,�O�b���������������&�a�t�����<����v��"�[�w���A�L�����V�����&�I�(�A�v��� �&�A�`���I��������+�<��������� �%�5�H�b�}���������-�N�g������������-�N�e������5�������a���L�_�l����������9�Z�z���$�7�G�\��������D�{����Wr��;��2@[q����(DZ� NZ����"Qi��&<Vq�U k � � � � � ' : � � � 1 > [ k � � � ���Fr��/J]p,a)Pw�����9Rq���� 1G_�����,@Or���iz��<J&[n���� :_q���z�� : Y r � � � !)![!�!�!�!"5"R"h"�"�"�"�"�"���##�#8$L$c$�$ %V%�&�&�&�&'M'a'r'�'�'�'�'�'($(Y(�(** ++b+�+�+�+�+, ,`,i,w,�,G-V-�-�-�-�-..:.I.h.�.�./$/=/x/�/�/t00�0�01M1b1�1�1�1o2 3%313�3�3�344P4\4v4�4�4�4�4 5�5�5�586U6�6p7�7�7�7�7C8T8l8�8�8�8�89%9@9[9�9�9�9�9:#:E:`:�:�:�:�:�:;*;E;�;�;�;�;�;<'<Y<l<�<�<�<�<�<�<=3=\B�B�B�B!CrC�C�C�C�C�CD3D`D�DFFKFYFiFwF�F�F�F�G�GH;HNHpH�H�H�HItI JJ'J%M%�%u&�&?'�'�'m(�(�(�(�(�(9)S)n)�)�)�)*&*J*{*�*�*�*+J+[+n+�+�+�,�,�,�-.F.�.�/J0]0p00�0�0�1�1�1�12�233R3�3�3�4�4�4�45+5F5U5P6e6z6�6�6�67F7Y7o7�7�78G8`8s8�8�8�8HaH�H�H�HOIhI�I�I�IJJ4J�J�JK=KYKnK�K�K�KLQLhL�L�L�L�L�LbM�M�MXN�N�N�N�NONOpO�O�O�O�OP�P�P�P Q"Q5QnQ�Q�Q�QRR,R�S�T�TU=U^U�V�V�VkW�WXXZzZ�[�\�\']w]�]�^t_�_�`Laua�a�a�a�i�i j�j�j k~k�l�lm%m@mxm�m�m\o�o�op�p�pq'q9q�q�q+r=rnr}r�r�r�r�r6tDtSt�t�t�t;u�v+w6w[w~w�wxx+x5x�x�x�x-yGzp{�{�{}l}|}�}�}�}Ʉۄ*�>�����ʆ(�i�LJ��G����_�����<�a�Ҙ�'���ÙN� �j���ʜ��9�b�r��.�9�M�]���O�q�ܡ��(�U�y�ȩ�������� ��4�����ë������@���3�2�R���ϯ,�>����� �6��W�o�����#�������ȶϷ,�����Ź!�3�V�g�w�c�y���ٻ��>�k�{�����ʼ߼���ӽ���0�վ���2�����%�i�district0x/name-bazaar,district0x/name-bazaar,district0x/name-bazaarworkfloapp/macros,workfloapp/app-macros,workfloapp/macrosdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgrounddeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundagilecreativity/clojure-walkthroughstuartsierra/lazytestsimon-katz/nomis-clojure-the-languagerobochuck84/PathFinder,cimi/PathFinder,cimi/PathFinder,robochuck84/PathFinder,gregsexton/PathFinder,Unravelled/PathFinder,Unravelled/PathFinder,gregsexton/PathFinderrmoehn/lib-grimoire,clojure-grimoire/lib-grimoireonyx-platform/onyx-templatebertrandk/lexemicagilecreativity/clojure-walkthroughcircleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontendrymndhng/clj-diff,brentonashworth/clj-diff,rymndhng/clj-diffmorrislenny/hydrofoildavidjameshumphreys/clojure-word-finderlvh/caesiumSwirrl/grafter,Swirrl/grafterGastove/doctopusyannvanhalewyn/gigrig-power-diagram-generatorerooijak/cryogen,cryogen-project/cryogen,systemovich/cryogen,chadhs/cryogenchrovis/cljamchrovis/cljamPance/decktouch,Pance/decktouchhemslo/seven-in-seven,hemslo/seven-in-seven,hemslo/seven-in-sevensubmanio/subman-parsertechnomancy/clojars-web,clojars/clojars-web,nberger/clojars-web,clojars/clojars-web,nberger/clojars-web,ato/clojars-web,technomancy/clojars-web,tobias/clojars-web,clojars/clojars-web,ato/clojars-web,tobias/clojars-web,tobias/clojars-webGastove/doctopusbensu/parse-namesagilecreativity/clojure-walkthroughmhjort/clj-gatlinguxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxboxuxbox/uxbox-backend,uxbox/uxbox-backendsubmanio/subman-parserstudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundnestukh/dotfiles,nestukh/dotfiles,benizi/dotfiles,nestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfilesGastove/doctopusreplikativ/konserve,replikativ/konserveRackSec/desdemonadeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundvotinginfoproject/data-processorarrdem/oxcart,arrdem/oxcartjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiohhucn/discuss,hhucn/discussRadicalZephyr/boot-junitfuncool/octet,mbjarland/octet,mbjarland/octet,funcool/octeteliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blog,eliben/code-for-blogqueeno/infra-problem,queeno/infra-problemmschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryvijaykiran/onyx,onyx-platform/onyxjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioonyx-platform/onyxdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundquil/quil,mi-mina/quil,pxlpnk/quil,craftybones/quil,jobez/quil-videoworkfloapp/macros,workfloapp/macros,workfloapp/app-macrosvotinginfoproject/data-processormpenet/cyanite,mwmanley/cyanite,pyr/cyanite,cybem/cyanite-iow,cybem/cyanite-iow,mwmanley/cyanite,dgeorgievski/cyanite,tjamesturner/cyanite,mpenet/cyanite,tjamesturner/cyanite,zbintliff/cyanite,dgeorgievski/cyanite,zbintliff/cyanite,pyr/cyanite,pyr/cyanitecircleci/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontendjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioeivantsov/clojure_docs,junjiemars/clojuredocs,junjiemars/clojuredocs,eivantsov/clojure_docs,junjiemars/clojuredocs,zk/clojuredocs,zk/clojuredocs,zk/clojuredocsmcanthony/overtone,brunchboy/overtone,chunseoklee/overtone,la3lma/overtone,craftybones/overtone,ethancrawford/overtone,Widea/overtone,pje/overtonemhjort/clj-gatlingJannis/cljs-audio-utilsagilecreativity/clojure-walkthroughJannis/cljs-audio-utilsopen-company/open-company-storageplayasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdomef-f/dotfiles,f-f/dotfilesRackSec/desdemonajsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio0/leiningen,0/leiningenmbutlerw/yada,mbutlerw/yada,mbutlerw/yada,juxt/yada,delitescere/yada,delitescere/yada,delitescere/yada,juxt/yada,juxt/yadaalan-ghelardi/berryhhucn/discuss,hhucn/discussfuncool/buddy-core,funcool/buddy-corenasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-RepositoryAcidburn0zzz/travis-cookbooks,ljharb/travis-cookbooks,alex/travis-cookbooks,spurti-chopra/travis-cookbooks,Zarthus/travis-cookbooks,0xCCD/travis-cookbooks,tianon/travis-cookbooks,johanneswuerbach/travis-cookbooks,ljharb/travis-cookbooks,ljharb/travis-cookbooks,dstufft/travis-cookbooks,bd808/travis-cookbooks,Distelli/travis-cookbooks,ardock/travis-cookbooks,Zarthus/travis-cookbooks,gavioto/travis-cookbooks,johanneswuerbach/travis-cookbooks,vinaykaradia/travis-cookbook-cloned,travis-ci/travis-cookbooks,spurti-chopra/travis-cookbooks,tianon/travis-cookbooks,Distelli/travis-cookbooks,travis-ci/travis-cookbooks,dstufft/travis-cookbooks,Acidburn0zzz/travis-cookbooks,dracos/travis-cookbooks,DanielG/travis-cookbooks,dracos/travis-cookbooks,Zarthus/travis-cookbooks,0xCCD/travis-cookbooks,gavioto/travis-cookbooks,ardock/travis-cookbooks,DanielG/travis-cookbooks,vinaykaradia/travis-cookbook-cloned,bd808/travis-cookbooks,tianon/travis-cookbooks,ardock/travis-cookbooks,Acidburn0zzz/travis-cookbooks,dracos/travis-cookbooks,Zarthus/travis-cookbooks,bd808/travis-cookbooks,tianon/travis-cookbooks,alex/travis-cookbooks,johanneswuerbach/travis-cookbooks,spurti-chopra/travis-cookbooks,gavioto/travis-cookbooks,Distelli/travis-cookbooks,Acidburn0zzz/travis-cookbooks,dracos/travis-cookbooks,vinaykaradia/travis-cookbook-cloned,DanielG/travis-cookbooks,Distelli/travis-cookbooks,vinaykaradia/travis-cookbook-cloned,gavioto/travis-cookbooks,ardock/travis-cookbooks,DanielG/travis-cookbooks,tianon/travis-cookbooks,travis-ci/travis-cookbooks,vinaykaradia/travis-cookbook-cloneddylanfprice/stanfordml,dylanfprice/stanfordmljhn/generic,jhn/generic,jhn/generic,jhn/genericnvlled/storemi,nvlled/storemidamballa/parkour,petr-tichy/parkour,damballa/parkour,petr-tichy/parkour,petr-tichy/parkour,damballa/parkourkulkarnipushkar/clara-rules,WilliamParker/clara-rules,mrrodriguez/clara-rules,mrrodriguez/clara-rules,kulkarnipushkar/clara-rules,cerner/clara-rules,mrrodriguez/clara-rules,WilliamParker/clara-rules,WilliamParker/clara-rules,kulkarnipushkar/clara-rules,cerner/clara-rules,cerner/clara-rulesprathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontenddeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundGastove/doctopusreichert621/learningsbsdev/mdr2ngrunwald/datasplash,unacast/datasplashprathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,RayRutjes/frontend,circleci/frontendbrianmd/forecastconormcd/clj-libssh2,conormcd/clj-libssh2stoyle/functional-workshop,stoyle/functional-workshopsubmanio/subman-parserclyfe/rook,bmabey/rook,roblally/rookQuentinDuval/clojure-restthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryjulianespinel/training,julianespinel/training,julianespinel/training,julianespinel/trainning,julianespinel/training,julianespinel/trainningtbrooks8/BeehivesparxHub/goya,jackschaedler/goya,crysislinux/goya,sparxHub/goya,crysislinux/goya,merripho/goya,adamaveray/goya,adamaveray/goya,merripho/goyanbeloglazov/hatnik,Hatnik/hatnik-1jackdoe/bzzz,jackdoe/bzzz,jackdoe/bzzz,jackdoe/bzzzClodoCorp/riemann,patrickod/riemann,riemann/riemann,forter/riemann,rekhajoshm/riemann,jamtur01/riemann,hugoduncan/riemann,pradeepchhetri/riemann,eric/riemann,pyr/riemann,hugoduncan/riemann,stanislas/riemann,pyr/riemann,algernon/riemann,udoprog/riemann,mirwan/riemann,ClodoCorp/riemann,VideoAmp/riemann-1,joerayme/riemann,rhysr/riemann,topecz/riemann,lispmeister/riemann,bowlofstew/riemann,nberger/riemann,AkihiroSuda/riemann,mfournier/riemann,mfournier/riemann,yeller/riemann,lispmeister/riemann,Anvil/riemann,patrox/riemann,algernon/riemann,bwilber/riemann,yeller/riemann,irudyak/riemann,fullcontact/riemann,ClodoCorp/riemann,DasAllFolks/riemann,pharaujo/riemann,algernon/riemann,counsyl/riemann,mirwan/riemann,shokunin/riemann,patrox/riemann,bwilber/riemann,micrub/riemann,bg451/riemann,tzach/riemann,LubyRuffy/riemann,irudyak/riemann,twosigma/riemann,LubyRuffy/riemann,twosigma/riemann,timbuchwaldt/riemann,rhysr/riemann,DasAllFolks/riemann,stanislas/riemann,alq666/riemann,mbuczko/riemann,patrickod/riemann,cswaroop/riemann,patrox/riemann,zamaterian/riemann,cswaroop/riemann,udoprog/riemann,abailly/riemann,nelhage/riemann,abailly/riemann,lispmeister/riemann,robashton/riemann,patrickod/riemann,bg451/riemann,shokunin/riemann,moonranger/riemann,jeanpralo/riemann,timbuchwaldt/riemann,aphyr/riemann,yeller/riemann,mfournier/riemann,vincentbernat/riemann,fullcontact/riemann,forter/riemann,jamtur01/riemann,cswaroop/riemann,bfritz/riemann,alq666/riemann,topecz/riemann,moonranger/riemann,rhysr/riemann,udoprog/riemann,counsyl/riemann,nberger/riemann,micrub/riemann,jeanpralo/riemann,zamaterian/riemann,eric/riemann,vincentbernat/riemann,bmhatfield/riemann,twosigma/riemann,mirwan/riemann,bfritz/riemann,bowlofstew/riemann,mbuczko/riemann,rekhajoshm/riemann,robashton/riemann,tzach/riemann,riemann/riemann,hugoduncan/riemann,rekhajoshm/riemann,stanislas/riemann,pharaujo/riemann,bmhatfield/riemann,fullcontact/riemann,Anvil/riemann,joerayme/riemann,vixns/riemann,AkihiroSuda/riemann,micrub/riemann,pradeepchhetri/riemann,forter/riemann,shokunin/riemann,topecz/riemann,VideoAmp/riemann-1,tzach/riemann,aphyr/riemann,vixns/riemann,nelhage/riemann,nelhage/riemannfuncool/buddy-core,funcool/buddy-coreyamadapc/general-roman2decimal,yamadapc/general-roman2decimal,yamadapc/general-roman2decimalagilecreativity/clojure-walkthroughjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiofyquah95/gpu.matrix,fyquah95/gpu.matrix,fyquah95/gpu.matrix,fyquah95/gpu.matrix,fyquah95/gpu.matrixsdslabs/slack-lensmoonranger/riemann,shokunin/riemann,fullcontact/riemann,joerayme/riemann,rekhajoshm/riemann,alq666/riemann,Anvil/riemann,counsyl/riemann,abailly/riemann,aphyr/riemann,cswaroop/riemann,topecz/riemann,AkihiroSuda/riemann,rhysr/riemann,pharaujo/riemann,bg451/riemann,riemann/riemann,rekhajoshm/riemann,eric/riemann,Anvil/riemann,bfritz/riemann,alq666/riemann,nberger/riemann,fullcontact/riemann,aphyr/riemann,robashton/riemann,forter/riemann,pradeepchhetri/riemann,bwilber/riemann,timbuchwaldt/riemann,algernon/riemann,fullcontact/riemann,jeanpralo/riemann,rhysr/riemann,rhysr/riemann,jeanpralo/riemann,eric/riemann,cswaroop/riemann,micrub/riemann,VideoAmp/riemann-1,forter/riemann,shokunin/riemann,algernon/riemann,mbuczko/riemann,patrox/riemann,riemann/riemann,LubyRuffy/riemann,bmhatfield/riemann,bwilber/riemann,irudyak/riemann,vixns/riemann,lispmeister/riemann,zamaterian/riemann,patrox/riemann,LubyRuffy/riemann,cswaroop/riemann,micrub/riemann,DasAllFolks/riemann,zamaterian/riemann,VideoAmp/riemann-1,pyr/riemann,pyr/riemann,yeller/riemann,moonranger/riemann,jamtur01/riemann,patrox/riemann,lispmeister/riemann,bfritz/riemann,micrub/riemann,vincentbernat/riemann,bowlofstew/riemann,abailly/riemann,mbuczko/riemann,joerayme/riemann,DasAllFolks/riemann,forter/riemann,vixns/riemann,topecz/riemann,mirwan/riemann,jamtur01/riemann,algernon/riemann,mirwan/riemann,pharaujo/riemann,timbuchwaldt/riemann,bg451/riemann,pradeepchhetri/riemann,mirwan/riemann,irudyak/riemann,shokunin/riemann,vincentbernat/riemann,yeller/riemann,bmhatfield/riemann,rekhajoshm/riemann,robashton/riemann,bowlofstew/riemann,topecz/riemann,lispmeister/riemann,yeller/riemann,AkihiroSuda/riemann,nberger/riemann,counsyl/riemannthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexluac/Randometer.cljsdamballa/inet.data,damballa/inet.datajsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiomicroserviceux/photon,microserviceux/photon,microserviceux/photonjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioghl3/dataframebraidchat/braid,rafd/braid,rafd/braid,braidchat/braidquerenker/xclojure,querenker/xclojure,exercism/xclojure,exercism/xclojureTsarpf/bejeweled-botnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repositorymhjort/clj-gatlingDasAllFolks/riemann,riemann/riemann,abailly/riemann,robashton/riemann,mirwan/riemann,eric/riemann,rhysr/riemann,bowlofstew/riemann,VideoAmp/riemann-1,fullcontact/riemann,lispmeister/riemann,zamaterian/riemann,moonranger/riemann,mbuczko/riemann,timbuchwaldt/riemann,alq666/riemann,patrox/riemann,mbuczko/riemann,yeller/riemann,mirwan/riemann,timbuchwaldt/riemann,forter/riemann,pradeepchhetri/riemann,shokunin/riemann,bfritz/riemann,joerayme/riemann,Anvil/riemann,nberger/riemann,rhysr/riemann,pyr/riemann,jeanpralo/riemann,vixns/riemann,counsyl/riemann,forter/riemann,joerayme/riemann,lispmeister/riemann,irudyak/riemann,aphyr/riemann,bmhatfield/riemann,alq666/riemann,DasAllFolks/riemann,topecz/riemann,bg451/riemann,robashton/riemann,LubyRuffy/riemann,counsyl/riemann,patrox/riemann,AkihiroSuda/riemann,irudyak/riemann,bowlofstew/riemann,aphyr/riemann,nberger/riemann,abailly/riemann,lispmeister/riemann,mirwan/riemann,LubyRuffy/riemann,bg451/riemann,moonranger/riemann,rekhajoshm/riemann,eric/riemann,cswaroop/riemann,ClodoCorp/riemann,patrox/riemann,bfritz/riemann,micrub/riemann,vincentbernat/riemann,topecz/riemann,tzach/riemann,rhysr/riemann,VideoAmp/riemann-1,bmhatfield/riemann,jeanpralo/riemann,pharaujo/riemann,shokunin/riemann,algernon/riemann,pyr/riemann,yeller/riemann,forter/riemann,bwilber/riemann,rekhajoshm/riemann,zamaterian/riemann,pharaujo/riemann,jamtur01/riemann,ClodoCorp/riemann,cswaroop/riemann,tzach/riemann,micrub/riemann,AkihiroSuda/riemann,rekhajoshm/riemann,algernon/riemann,riemann/riemann,bwilber/riemann,cswaroop/riemann,shokunin/riemann,micrub/riemann,fullcontact/riemann,tzach/riemann,Anvil/riemann,vixns/riemann,topecz/riemann,yeller/riemann,jamtur01/riemann,ClodoCorp/riemann,algernon/riemann,vincentbernat/riemann,fullcontact/riemann,pradeepchhetri/riemannfuncool/postalflatland/useful,amalloy/useful,jafingerhut/usefullvh/caesiumtotakke/jungererstudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxboxdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundalan-ghelardi/berryfinagle/finagle-clojure,bguthrie/finagle-clojureclojure-emacs/refactor-nrepl,clojure-emacs/refactor-nrepl,Peeja/refactor-nrepl,grammati/refactor-nrepl,grammati/refactor-nrepl,Peeja/refactor-nrepl,msgodf/refactor-nrepl,msgodf/refactor-nrepl,luxbock/refactor-nrepl,duncanmortimer/refactor-nrepl,luxbock/refactor-nrepl,duncanmortimer/refactor-nreplaJchemist/lein-figwheel,tonsky/lein-figwheel,aJchemist/lein-figwheel,bhauman/lein-figwheel,darwin/lein-figwheel,bhauman/lein-figwheel,bhauman/lein-figwheel,verma/lein-figwheel,darwin/lein-figwheel,tonsky/lein-figwheel,aJchemist/lein-figwheel,verma/lein-figwheel,tonsky/lein-figwheelyfractal/Midje,bens/Midje,marick/Midje,aeriksson/Midjeniwinz/continuoyurrriq/cats,OlegTheCat/cats,mccraigmccraig/cats,funcool/cats,alesguzik/cats,tcsavage/catsseanirby/koeeoadi,seanirby/koeeoadi,seanirby/koeeoadi,seanirby/koeeoadi,seanirby/koeeoadilvh/icecapchrovis/cljamlvh/caesiumStephenCharles/re-com,KeeganMyers/re-com,samroberton/re-com,osbert/re-com,johnswanson/re-com,ducky427/re-com,Day8/re-comSwirrl/grafter,Swirrl/grafteragilecreativity/clojure-walkthrough0/leiningen,0/leiningen,ato/leiningensbsdev/mdr2exercism/xclojure,querenker/xclojure,querenker/xclojure,exercism/xclojuretobias/clojars-web,clojars/clojars-web,beppu/clojars-web,ato/clojars-web,codonnell/clojars-web,dotemacs/clojars-web,tobias/clojars-web,technomancy/clojars-web,clojars/clojars-web,ato/clojars-web,technomancy/clojars-web,nberger/clojars-web,xeqi/clojars-web,clojars/clojars-web,thiagofm/clojars-web,leonid-shevtsov/clojars-web,tobias/clojars-web,dotemacs/clojars-web,nberger/clojars-web,codonnell/clojars-web,xeqi/clojars-webzbintliff/cyanite,pyr/cyanite,pyr/cyanite,zbintliff/cyanite,pyr/cyanitejsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiogreglook/vaultRadicalZephyr/comic-reader,RadicalZephyr/comic-readertolitius/chazelfuncool/futuramschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-RepositoryVideoAmp/riemann-1,VideoAmp/riemann-1dsp/geocommit-web,dsp/geocommit-webomartell/life-cljsGastove/doctopusniwinz/apio.cljrmoehn/lib-grimoire,clojure-grimoire/lib-grimoiregranpanda/mofficertextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossajsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiouncomplicate/neanderthal,uncomplicate/neanderthal,uncomplicate/neanderthaltwosigma/satelliteagilecreativity/clojure-walkthroughworkfloapp/macros,workfloapp/app-macros,workfloapp/macrosjsyrjala/turbulent-snifflecircleci/frontend,RayRutjes/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontendmarick/Midje,yfractal/Midje,bens/Midje,aeriksson/MidjeGastove/doctopusmbutlerw/yada,delitescere/yada,juxt/yada,juxt/yada,juxt/yada,delitescere/yada,mbutlerw/yada,mbutlerw/yada,delitescere/yadaclojars/clojars-web,technomancy/clojars-web,tobias/clojars-web,nberger/clojars-web,beppu/clojars-web,ato/clojars-web,ato/clojars-web,codonnell/clojars-web,dotemacs/clojars-web,tobias/clojars-web,xeqi/clojars-web,nberger/clojars-web,clojars/clojars-web,tobias/clojars-web,codonnell/clojars-web,leonid-shevtsov/clojars-web,clojars/clojars-web,dotemacs/clojars-web,technomancy/clojars-web,thiagofm/clojars-web,xeqi/clojars-webonyx-platform/onyx,vijaykiran/onyxhhucn/discuss,hhucn/discussjimrthy/frereth-cp,jimrthy/frereth-cp,jimrthy/frereth-cparrdem/oxcart,arrdem/oxcartbakyeono/litedocxagilecreativity/clojure-walkthroughsubmanio/subman-parserdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiorafd/braid,braidchat/braid,braidchat/braid,rafd/braidclojure/data.xml,clojure/data.xmlnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositorytisnik/clj-mrazikstuartsierra/lazytesttopecz/riemann,yeller/riemann,moonranger/riemann,nelhage/riemann,VideoAmp/riemann-1,mfournier/riemann,jamtur01/riemann,pradeepchhetri/riemann,yeller/riemann,fullcontact/riemann,rekhajoshm/riemann,timbuchwaldt/riemann,topecz/riemann,patrox/riemann,pyr/riemann,forter/riemann,cswaroop/riemann,aphyr/riemann,ClodoCorp/riemann,rhysr/riemann,vincentbernat/riemann,cswaroop/riemann,abailly/riemann,bowlofstew/riemann,forter/riemann,forter/riemann,abailly/riemann,eric/riemann,tzach/riemann,jamtur01/riemann,ClodoCorp/riemann,yeller/riemann,aphyr/riemann,micrub/riemann,eric/riemann,nelhage/riemann,moonranger/riemann,rhysr/riemann,mirwan/riemann,patrox/riemann,twosigma/riemann,bfritz/riemann,bmhatfield/riemann,mfournier/riemann,alq666/riemann,rekhajoshm/riemann,robashton/riemann,counsyl/riemann,mirwan/riemann,joerayme/riemann,bmhatfield/riemann,nelhage/riemann,ClodoCorp/riemann,tzach/riemann,irudyak/riemann,patrox/riemann,twosigma/riemann,mbuczko/riemann,fullcontact/riemann,nberger/riemann,DasAllFolks/riemann,vixns/riemann,tzach/riemann,jeanpralo/riemann,pyr/riemann,lispmeister/riemann,timbuchwaldt/riemann,pharaujo/riemann,lispmeister/riemann,riemann/riemann,nberger/riemann,vincentbernat/riemann,bwilber/riemann,AkihiroSuda/riemann,udoprog/riemann,VideoAmp/riemann-1,bfritz/riemann,AkihiroSuda/riemann,bowlofstew/riemann,topecz/riemann,algernon/riemann,LubyRuffy/riemann,algernon/riemann,udoprog/riemann,fullcontact/riemann,stanislas/riemann,zamaterian/riemann,lispmeister/riemann,riemann/riemann,mirwan/riemann,joerayme/riemann,mfournier/riemann,stanislas/riemann,rhysr/riemann,Anvil/riemann,robashton/riemann,pharaujo/riemann,vixns/riemann,alq666/riemann,zamaterian/riemann,mbuczko/riemann,bg451/riemann,udoprog/riemann,DasAllFolks/riemann,micrub/riemann,twosigma/riemann,shokunin/riemann,irudyak/riemann,stanislas/riemann,rekhajoshm/riemann,Anvil/riemann,bg451/riemann,shokunin/riemann,jeanpralo/riemann,algernon/riemann,counsyl/riemann,LubyRuffy/riemann,bwilber/riemann,cswaroop/riemann,pradeepchhetri/riemann,micrub/riemann,shokunin/riemannbrianmd/forecastworkfloapp/app-macros,workfloapp/macros,workfloapp/macrossimon-katz/nomis-clojure-the-languageDay8/re-frame,Day8/re-frame,Day8/re-framenasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryacthp/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-serversimon-katz/nomis-clojure-the-languageRayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontenddeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundsbsdev/mdr2delitescere/yada,juxt/yada,delitescere/yada,juxt/yada,juxt/yada,delitescere/yadaworkfloapp/macros,workfloapp/app-macros,workfloapp/macrosagilecreativity/clojure-walkthroughucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-serverdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundvijaykiran/onyx,onyx-platform/onyxlukaswelte/metabase,dashkb/metabase,dashkb/metabase,dashkb/metabase,blueoceanideas/metabase,zoowii/metabase,blueoceanideas/metabase,zoowii/metabase,lukaswelte/metabase,Endika/metabase,lukaswelte/metabase,Endika/metabase,blueoceanideas/metabase,blueoceanideas/metabase,zoowii/metabase,jonasdiel/metabase-ptBR,lukaswelte/metabase,Endika/metabase,jonasdiel/metabase-ptBR,jonasdiel/metabase-ptBR,Endika/metabase,zoowii/metabase,jonasdiel/metabase-ptBR,Endika/metabase,blueoceanideas/metabase,jonasdiel/metabase-ptBR,lukaswelte/metabase,dashkb/metabase,dashkb/metabase,zoowii/metabasecircleci/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontendstuartsierra/lazytestvijaykiran/onyx,mccraigmccraig/onyx,onyx-platform/onyx,KevinGreene/onyx,iperdomo/onyx,ideal-knee/onyx,Deraen/onyx,dignati/onyxtkriik/clojure-pfmatsrietdijk/sidequarter-frontendDestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEuler,DestructHub/ProjectEulermatsrietdijk/sidequarter-frontendgreglook/merkle-db,greglook/merkle-db,greglook/merkle-dbJoelWRussell/Goliathlvh/caesiumdeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgrounddeniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playgroundPasDeChocolat/QuilCValvinfrancis/gtfvefuncool/buddysimon-katz/nomis-clojure-the-languagealan-ghelardi/berrymfikes/planck,mfikes/planck,mfikes/planck,mfikes/planck,mfikes/planck,mfikes/planckclojure-emacs/refactor-nrepl,clojure-emacs/refactor-nreplruedigergad/cli4cljmpietrzak/sqls,sqls/sqlsonyx-platform/onyx-templatemfikes/test-commonjsasciinema/asciinema-player,asciinema/asciinema-playerprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendgreglook/clj-multihashmhjort/clj-gatlingjhn/tobias,jhn/tobiasRadicalZephyr/comic-reader,RadicalZephyr/comic-readerMastodonC/kixi.eventlog,MastodonC/kixi.eventlogvijaykiran/onyx,onyx-platform/onyxwilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomRyanMcG/incise-coreAlexeyMK/faceboard,AlexeyMK/faceboardmultunus/dashboard-cljeakron/wishlistedakvo/akvo-lumen,akvo/akvo-dash,akvo/akvo-dash,akvo/akvo-lumen,akvo/akvo-dashfuncool/catacumba,prepor/catacumba,mitchelkuijpers/catacumba,mitchelkuijpers/catacumba,prepor/catacumba,coopsource/catacumba,coopsource/catacumba,funcool/catacumba,funcool/catacumbatirkarthi/lacinia-tutorialnyampass/clojournal,nyampass/clojournalKristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programs,KristFoundation/Programsjuxt/edge,juxt/edgestaples-sparx/Agrajagbcapozzi/RealDashboardlvh/icecappalfrey/herder,palfrey/herdertreppo/yorck-ratings-v2jindrichmynarz/rdf-path-examples,jindrichmynarz/rdf-path-examplesstuartsierra/lazytestrill-event-sourcing/rilldevth/yetibot.core,audaxion/yetibot.core,LeonmanRolls/yetibot.corethomasdarimont/statistiker,clojurewerkz/statistikersolita/rpi-challengerenragedginger/tensorflow-cljdylanfprice/stanfordml,dylanfprice/stanfordmlwhitepages/github-changelogemileswarts/made-merits,emileswarts/made-meritscraftybones/overtone,ethancrawford/overtone,chunseoklee/overtone,mcanthony/overtone,la3lma/overtone,Widea/overtone,pje/overtone,brunchboy/overtonekrwenholz/wort,krwenholz/wortsubmanio/subman-parserbertrandk/lexemicsroidl/lambda-ui,sroidl/lambda-ui,sroidl/lambda-uiroblally/rook,clyfe/rook,bmabey/rooksroidl/lambda-ui,sroidl/lambda-ui,sroidl/lambda-uimoxaj/mikron,moxaj/mikronrowhit/kiries,rowhit/kiries,alex-glv/es-pusher,alex-glv/es-pusher,rowhit/kiries,alex-glv/es-pusheralan-ghelardi/berrybraidchat/braid,braidchat/braid,rafd/braid,rafd/braidDay8/re-frame-template,Day8/re-frame-template,Day8/re-frame-templatethinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexsventorben/cucumber-jvm,sghill/cucumber-jvm,guardian/cucumber-jvm,brasmusson/cucumber-jvm,cucumber/cucumber-jvm,flaviuratiu/cucumber-jvm,NickCharsley/cucumber-jvm,Draeval/cucumber-jvm,flaviuratiu/cucumber-jvm,ppotanin/cucumber-jvm,HendrikSP/cucumber-jvm,NickCharsley/cucumber-jvm,dkowis/cucumber-jvm,chiranjith/cucumber-jvm,VivaceVivo/cucumber-mod-DI,PeterDG/cucumberPro,hcawebdevelopment/cucumber-jvm,ppotanin/cucumber-jvm,chiranjith/cucumber-jvm,cucumber/cucumber-jvm,nilswloka/cucumber-jvm,andyb-ge/cucumber-jvm,joansmith/cucumber-jvm,VivaceVivo/cucumber-mod-DI,bartkeizer/cucumber-jvm,chiranjith/cucumber-jvm,ArishArbab/cucumber-jvm,ushkinaz/cucumber-jvm,hcawebdevelopment/cucumber-jvm,HendrikSP/cucumber-jvm,brasmusson/cucumber-jvm,bartkeizer/cucumber-jvm,ArishArbab/cucumber-jvm,PeterDG/cucumberPro,hcawebdevelopment/cucumber-jvm,ppotanin/cucumber-jvm,joansmith/cucumber-jvm,brasmusson/cucumber-jvm,chiranjith/cucumber-jvm,NickCharsley/cucumber-jvm,nilswloka/cucumber-jvm,ushkinaz/cucumber-jvm,Draeval/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,andyb-ge/cucumber-jvm,paoloambrosio/cucumber-jvm,assilzm/cucumber-groovy-seeyon,HendrikSP/cucumber-jvm,guardian/cucumber-jvm,VivaceVivo/cucumber-mod-DI,sghill/cucumber-jvm,ArishArbab/cucumber-jvm,danielwegener/cucumber-jvm,joansmith/cucumber-jvm,danielwegener/cucumber-jvm,cucumber/cucumber-jvm,dkowis/cucumber-jvm,nilswloka/cucumber-jvm,danielwegener/cucumber-jvm,flaviuratiu/cucumber-jvm,PeterDG/cucumberPro,sventorben/cucumber-jvm,joansmith/cucumber-jvm,goushijie/cucumber-jvm,demos74dx/cucumber-jvm,andyb-ge/cucumber-jvm,bartkeizer/cucumber-jvm,chiranjith/cucumber-jvm,ushkinaz/cucumber-jvm,Draeval/cucumber-jvm,ArishArbab/cucumber-jvm,bartkeizer/cucumber-jvm,chrishowejones/cucumber-jvm,flaviuratiu/cucumber-jvm,goushijie/cucumber-jvm,chrishowejones/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,cucumber/cucumber-jvm,bartkeizer/cucumber-jvm,NickCharsley/cucumber-jvm,sventorben/cucumber-jvm,chrishowejones/cucumber-jvm,danielwegener/cucumber-jvm,hcawebdevelopment/cucumber-jvm,NickCharsley/cucumber-jvm,danielwegener/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,DPUkyle/cucumber-jvm,ushkinaz/cucumber-jvm,chiranjith/cucumber-jvm,dkowis/cucumber-jvm,cucumber/cucumber-jvm,sventorben/cucumber-jvm,ushkinaz/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,dkowis/cucumber-jvm,bartkeizer/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,ppotanin/cucumber-jvm,HendrikSP/cucumber-jvm,chrishowejones/cucumber-jvm,flaviuratiu/cucumber-jvm,brasmusson/cucumber-jvm,demos74dx/cucumber-jvm,sventorben/cucumber-jvm,sghill/cucumber-jvm,sghill/cucumber-jvm,PeterDG/cucumberPro,dkowis/cucumber-jvm,demos74dx/cucumber-jvm,HendrikSP/cucumber-jvm,ppotanin/cucumber-jvm,ArishArbab/cucumber-jvm,PeterDG/cucumberPro,andyb-ge/cucumber-jvm,DPUkyle/cucumber-jvm,demos74dx/cucumber-jvm,DPUkyle/cucumber-jvm,DPUkyle/cucumber-jvm,nilswloka/cucumber-jvm,danielwegener/cucumber-jvm,goushijie/cucumber-jvm,sventorben/cucumber-jvm,HendrikSP/cucumber-jvm,hcawebdevelopment/cucumber-jvm,sghill/cucumber-jvm,flaviuratiu/cucumber-jvm,assilzm/cucumber-groovy-seeyon,chrishowejones/cucumber-jvm,nilswloka/cucumber-jvm,Draeval/cucumber-jvm,andyb-ge/cucumber-jvm,brasmusson/cucumber-jvm,demos74dx/cucumber-jvm,NickCharsley/cucumber-jvm,ppotanin/cucumber-jvm,hcawebdevelopment/cucumber-jvm,chrishowejones/cucumber-jvm,ushkinaz/cucumber-jvm,DPUkyle/cucumber-jvm,guardian/cucumber-jvm,Draeval/cucumber-jvm,paoloambrosio/cucumber-jvm,joansmith/cucumber-jvm,joansmith/cucumber-jvm,Draeval/cucumber-jvm,ArishArbab/cucumber-jvm,andyb-ge/cucumber-jvm,paoloambrosio/cucumber-jvm,goushijie/cucumber-jvm,guardian/cucumber-jvm,goushijie/cucumber-jvm,rlagunov-anaplan/cucumber-jvm,guardian/cucumber-jvm,demos74dx/cucumber-jvm,goushijie/cucumber-jvm,VivaceVivo/cucumber-mod-DI,DPUkyle/cucumber-jvm,dkowis/cucumber-jvm,VivaceVivo/cucumber-mod-DI,PeterDG/cucumberPro,sghill/cucumber-jvm,paoloambrosio/cucumber-jvmInaimathi/langnostic,Inaimathi/langnostic,Inaimathi/langnostic0/leiningen,0/leiningenmoxaj/mikron,moxaj/mikronRyanMcG/incise-coreSnootyMonkey/Falkland-CMSLightTable/LightTable,LightTable/LightTable,LightTable/LightTableAlarmingCow/brew-monitorring-clojure/ring,ring-clojure/ringstudiospring/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxboxmoerkb/logic-workbenchandersfurseth/flarenherzing/retroboard,nherzing/retroboarduxbox/uxbox-backend,uxbox/uxbox-backendRyanMcG/incise-coreuncomplicate/neanderthal,uncomplicate/neanderthal,uncomplicate/neanderthalcodahale/soy-clj,codahale/soy-cljtbrooks8/Beehive-httpkgxsz/todo,kgxsz/todoexot/conexp-clj,fcatools/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,Lobage/conexp-clj,exot/conexp-clj,exot/conexp-clj,Lobage/conexp-clj,Lobage/conexp-clj,Lobage/conexp-clj,fcatools/conexp-clj,fcatools/conexp-clj,fcatools/conexp-clj,exot/conexp-cljelrob/build-mononyx-platform/onyx-templateloganlinn/coolant,loganlinn/coolantAvisoNovate/trackerjjthrash/deadman-jimbmabey/rook,roblally/rook,clyfe/rookoubiwann/anamyeteracthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-serverPance/Pance_blogorionsbelt-battlegrounds/obb-api,orionsbelt-battlegrounds/obb-api,weaver-viii/obb-apicircleci/frontend,circleci/frontend,circleci/frontendarrdem/oxcart,arrdem/oxcartRadicalZephyr/comic-reader,RadicalZephyr/comic-readernasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-RepositoryMartinSoto/clojure-streamsPance/todo-repl-webappProjectFrank/shoutermgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-fileskbaribeau/immutant,immutant/immutant,immutant/immutant,coopsource/immutant,immutant/immutant,coopsource/immutant,kbaribeau/immutant,kbaribeau/immutant,coopsource/immutant,immutant/immutantRyanMcG/incise-coreruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdppallet/cli-cmdscgag/boilerpipe-cljRyanMcG/incise-corecoopsource/immutant,immutant/immutant,coopsource/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutantnestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,nestukh/dotfiles,nestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfilesarximboldi/sinusoides,arximboldi/sinusoides,arximboldi/sinusoidesRadicalZephyr/comic-reader,RadicalZephyr/comic-readerrill-event-sourcing/rillpyr/cyanite,mwmanley/cyanite,dgeorgievski/cyanite,zbintliff/cyanite,cybem/cyanite-iow,mwmanley/cyanite,cybem/cyanite-iow,mpenet/cyanite,tjamesturner/cyanite,pyr/cyanite,zbintliff/cyanite,pyr/cyanite,tjamesturner/cyanite,dgeorgievski/cyanite,mpenet/cyanitealexanderkiel/lens-warehouseGonzih/cljs-electron,Gonzih/cljs-electronmozilla/mentat,ncalexan/mentat,ncalexan/mentat,mozilla/mentat,ncalexan/datomish,mozilla/mentat,ncalexan/datomish,ncalexan/mentat,ncalexan/mentat,ncalexan/mentat,mozilla/mentat,bgrins/datomish,mozilla/mentat,ncalexan/mentat,mozilla/mentat,bgrins/datomishnyampass/checkin-halakebenedekfazekas/mranderson,benedekfazekas/mrandersonblmstrm/clj-spotifyfuncool/suricattaworkfloapp/app-macros,workfloapp/macros,workfloapp/macrosRadicalZephyr/comic-reader,RadicalZephyr/comic-readeronyx-platform/onyx-datomicJach/frontrow_projectmccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkaflatland/useful,amalloy/useful,jafingerhut/usefulbmabey/rook,roblally/rook,clyfe/rookjarppe/sormilla,metosin/sormillaRadicalZephyr/webfxsmcgivern/gitiquerill-event-sourcing/rilluxbox/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxonyx-platform/onyx-templateonyx-platform/onyx-metricsbbatsov/reply,trptcolin/reply,trptcolin/reply,bbatsov/replyamalloy/useful,jafingerhut/useful,flatland/usefulfuncool/beicon,funcool/beiconmpietrzak/sqls,sqls/sqlsGastove/doctopusonyx-platform/onyx-templatematthiasn/systems-toolbox-chrome,matthiasn/systems-toolbox-chrome,kamituel/systems-toolbox-chrome,kamituel/systems-toolbox-chromeonyx-platform/onyx-templateninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinetprepor/catacumba,coopsource/catacumba,prepor/catacumba,mitchelkuijpers/catacumba,coopsource/catacumba,funcool/catacumba,funcool/catacumba,funcool/catacumba,mitchelkuijpers/catacumbamorrislenny/hydrofoilheroku/heroku-buildpack-clojure,mstine/heroku-buildpack-clojure,nvbn/heroku-buildpack-clojure,cloudControl/buildpack-clojure,jkutner/heroku-buildpack-lein,heroku/heroku-buildpack-clojure,cedricpineau/heroku-buildpack-clojure-phantomjsmstang/clojurescript,mstang/clojurescript,mstang/clojurescripthyPiRion/beckondvberkel/advent-of-codeonyx-platform/onyx-datomicgsnewmark/beatha,gsnewmark/beathamstine/heroku-buildpack-clojure,nvbn/heroku-buildpack-clojure,cloudControl/buildpack-clojure,heroku/heroku-buildpack-clojure,cedricpineau/heroku-buildpack-clojure-phantomjs,jkutner/heroku-buildpack-lein,heroku/heroku-buildpack-clojuremilankinen/future-spec-toolsbenizi/dotfiles,nestukh/dotfiles,benizi/dotfiles,nestukh/dotfiles,benizi/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,nestukh/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,benizi/dotfiles,nestukh/dotfiles,benizi/dotfiles,nestukh/dotfilesring-clojure/ring,ring-clojure/ring,povloid/ring,suligap/ring,liuchang23/ring,tchagnon/ring,meowcakes/ring,kirasystems/ring,orend/ring,ieure/ring,siphiuel/ringwobh/xclojure,canweriotnow/xclojure,querenker/xclojure,exercism/xclojure,querenker/xclojure,exercism/xclojure,yurrriq/xclojureuxbox/uxbox-backend,uxbox/uxbox-backendhsjunnesson/replete,mfikes/replete,asheldo/replete,mfikes/replete,bsvingen/replete,bsvingen/replete,mfikes/replete,O-I/replete,carabina/replete,bsvingen/replete,carabina/replete,mfikes/replete,hsjunnesson/replete,karlmikko/replete,hsjunnesson/replete,asheldo/replete,bsvingen/replete,bsvingen/replete,hsjunnesson/replete,mfikes/replete,asheldo/replete,karlmikko/replete,karlmikko/replete,carabina/replete,karlmikko/replete,asheldo/replete,O-I/replete,carabina/replete,hsjunnesson/replete,asheldo/replete,mfikes/replete,carabina/replete,karlmikko/repletenilenso/time-tracker,nilenso/time-tracker,nilenso/time-trackeronyx-platform/onyx-templatertoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglotGastove/doctopustatut/clj-chrome-devtools,tatut/clj-chrome-devtoolsathos/lein-highlightprachetasp/lispcast-lab-notebook,abeyonalaja/lisp-cast-ommschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-RepositoryPance/decktouch,Pance/decktouchndhoule/project-eulerpatrickgombert/clojure.core,mylesmegyesi/clojure.core,kevinbuch/clojure.coreguns/vimclojure,guns/vimclojure,guns/vimclojureImmortalin/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,Immortalin/Nightcode,oakes/Nightcode,Immortalin/Nightcodelukaszkorecki/cult-leaderctford/cljs-bach,ctford/cljs-bach,ctford/leipzig-liveedne/airhead-frontend,edne/airhead-cljsclojusc/dragonexercism/xclojure,exercism/xclojure,querenker/xclojure,querenker/xclojurefhofherr/clj-db-utilniwinz/continuorill-event-sourcing/rillhhucn/discuss,hhucn/discussrafd/braid,rafd/braid,braidchat/braid,braidchat/braidquil/quil-site,quil/quil-siteexupero/vdom-appmrwizard82d1/om-tutorialsJannis/cljs-audio-utilsknotation/knotation-editordignati/onyx,tomasu82/onyx,mccraigmccraig/onyx,Deraen/onyx,ideal-knee/onyx,KevinGreene/onyx,vijaykiran/onyx,iperdomo/onyx,intfrr/onyx,onyx-platform/onyxonyx-platform/onyx-templateniwinz/jnanomsg,evacchi/jnanomsg,RepublicWealth/jfuture-nanomsg,evacchi/jnanomsg,RepublicWealth/jfuture-nanomsg,niwinz/jnanomsgonyx-platform/onyx-templateDay8/re-frame,Day8/re-frame,Day8/re-framedimitrijer/formlogic,dimitrijer/formlogic,dimitrijer/formlogichyPiRion/inlein,hyPiRion/inleinmarick/suchwownilenso/time-tracker,nilenso/time-tracker,nilenso/time-trackerohpauleez/cmmaDexterminator/clj-templates,Dexterminator/clj-templatesclyfe/twixt,AvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixtstructureddynamics/clj-fstbasho/riak_cs,dragonfax/riak_cs,basho/riak_cs,dragonfax/riak_cs,dragonfax/riak_cs,basho/riak_cs,basho/riak_cs,dragonfax/riak_csthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexmfikes/bocko-ios,mfikes/bocko-ios,mfikes/bocko-iosmaryrosecook/islacljSpamScope/spamscope,SpamScope/spamscopestudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxboxfuncool/buddy-hashers,funcool/buddy-hashersRadicalZephyr/http-serverclyfe/rook,bmabey/rook,roblally/rookonyx-platform/onyx-templateonyx-platform/onyx-templatetatut/clj-chrome-devtools,tatut/clj-chrome-devtoolsstanislas/elmnt-datapumponyx-platform/onyx-datomicTheClimateCorporation/claypooleadolby/beers-criteria,adolby/beers-criteriahhucn/discuss,hhucn/discussuncomplicate/neanderthal,uncomplicate/neanderthal,uncomplicate/neanderthalDay8/re-frame,Day8/re-frame,Day8/re-framegreglook/clj-multihashmbjarland/octet,funcool/octet,mbjarland/octet,funcool/octetgrnhse/4clojure,amcnamara/4clojure,4clojure/4clojure,gfredericks/4clojure,grnhse/4clojure,amcnamara/4clojure,rowhit/4clojure,gfredericks/4clojure,4clojure/4clojure,devn/4clojure,tclamb/4clojure,tclamb/4clojure,rowhit/4clojure,devn/4clojureBreezeemr/quiescentpalletops/bakeryDay8/re-frame-tracetobias/clojars-web,tobias/clojars-web,nberger/clojars-web,ato/clojars-web,ato/clojars-web,technomancy/clojars-web,technomancy/clojars-web,clojars/clojars-web,tobias/clojars-web,clojars/clojars-web,nberger/clojars-web,clojars/clojars-webRadicalZephyr/boot-junituxbox/uxbox-backend,uxbox/uxbox-backendRackSec/desdemonaalexpetrov/kmg,alexpetrov/kmgjeffh/faraday,ptaoussanis/faraday,langford/faraday,marcuswr/faraday-rotaryclojurecup2014/replme,replme/replme-frontend,replme/replme,clojurecup2014/replmeneverfox/chestnut,Nek/chestnut,malloryerik/chestnut,Nek/chestnut,neverfox/chestnut,neverfox/chestnut,jacqt/chestnut,plexus/chestnut,malloryerik/chestnut,Nek/chestnut,plexus/chestnut,Jobava/chestnut,malloryerik/chestnut,jacqt/chestnut,Jobava/chestnut,Jobava/chestnutsmarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/SnakePance/decktouch,Pance/decktouchswannodette/mies,DjebbZ/mies,whamtet/cljs-server-template,DjebbZ/mies,fdserr/mies,swannodette/mies,fdserr/miesaaron-santos/robinson,aaron-santos/robinsonprathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendsmarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/SnakeDay8/re-frame-template,KurtRMueller/re-frame-template,KurtRMueller/re-frame-template,KurtRMueller/re-frame-template,Day8/re-frame-template,jiangts/re-frame-template,jiangts/re-frame-template,jiangts/re-frame-template,Day8/re-frame-templateRadicalZephyr/boot-junitnoamknispel/ThePrimeBenchMark,noamknispel/ThePrimeBenchMark,noamknispel/ThePrimeBenchMark,noamknispel/ThePrimeBenchMark,noamknispel/ThePrimeBenchMarklvh/icecap,Hatnik/icecapauramo/holstonjoelkuiper/patavi,ConnorStroomberg/patavi,ConnorStroomberg/patavi-docker,ConnorStroomberg/patavi-docker,ConnorStroomberg/patavi-docker,gertvv/patavi,gertvv/patavi,ConnorStroomberg/patavi-docker,ConnorStroomberg/patavi,gertvv/patavi,joelkuiper/patavi,ConnorStroomberg/pataviPance/todo-repl-webappjacqt/chestnut,plexus/chestnut,plexus/chestnut,jacqt/chestnutmartinklepsch/re-frame,danielcompton/re-frame,richardharrington/re-frame,richardharrington/re-frame,daiyi/re-frame,Day8/re-frame,chpill/re-frankenstein,chpill/re-frankenstein,danielcompton/re-frame,daiyi/re-frame,martinklepsch/re-frame,chpill/re-frankenstein,Day8/re-frame,Day8/re-frame,danielcompton/re-frame,daiyi/re-frame,richardharrington/re-frame,martinklepsch/re-frameclojure-android/nekoRyanMcG/incise-coredakrone/cheshireonyx-platform/onyx-pluginrill-event-sourcing/rillonyx-platform/onyx-templateclojure-glasgow/loneworkercheckinRayRutjes/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontendbertrandk/lexemicucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-serveronyx-platform/onyx-templatetemochka/tetris-cljs,temochka/tetris-cljsonyx-platform/onyx-templateonyx-platform/onyx-bookkeeperhyPiRion/primesrafd/braid,braidchat/braid,rafd/braid,braidchat/braidasciinema/asciinema-player,asciinema/asciinema-player0/leiningen,0/leiningenonyx-platform/onyx-datomichlship/cascadepat-thomas/clum,pat-thomas/clumclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixtclojure-android/nekoonyx-platform/onyx-metricsRadicalZephyr/comic-reader,RadicalZephyr/comic-readerframed-data/overseerinnoq/statuses,mvitz/statusesinnoq/statuses,mvitz/statusesbrentonashworth/lein-difftestyurrriq/cats,funcool/cats,alesguzik/cats,tcsavage/cats,mccraigmccraig/cats,OlegTheCat/catsthomasdarimont/statistiker,clojurewerkz/statistikerAvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixtpalletops/hyde-pallet,palletops/hyde-palletctford/overtunespuppetlabs/puppetdb,mullr/puppetdb,shrug/puppetdb,waynr/puppetdb,johnduarte/puppetdb,mullr/puppetdb,cprice404/puppetdb,shrug/puppetdb,ajroetker/puppetdb,waynr/puppetdb,puppetlabs/puppetdb,puppetlabs/puppetdb,jantman/puppetdb,mullr/puppetdb,grimradical/puppetdb,rbrw/puppetdb,cprice404/puppetdb,waynr/puppetdb,shrug/puppetdb,wkalt/puppetdb,melissa/puppetdb,kbrezina/puppetdb,kbrezina/puppetdb,jantman/puppetdb,mullr/puppetdb,johnduarte/puppetdb,highb/puppetdb,mullr/puppetdb,senior/puppetdb,highb/puppetdb,rbrw/puppetdb,waynr/puppetdb,kbarber/puppetdb,kbarber/puppetdb,johnduarte/puppetdb,grimradical/puppetdb,shrug/puppetdb,grimradical/puppetdb,kbarber/puppetdb,rbrw/puppetdb,melissa/puppetdb,cprice404/puppetdb,senior/puppetdb,melissa/puppetdb,senior/puppetdb,rbrw/puppetdb,ajroetker/puppetdb,kbrezina/puppetdb,highb/puppetdb,ajroetker/puppetdb,kbrezina/puppetdb,grimradical/puppetdb,wkalt/puppetdb,wkalt/puppetdb,rbrw/puppetdb,ajroetker/puppetdb,puppetlabs/puppetdb,kbarber/puppetdb,wkalt/puppetdb,senior/puppetdb,puppetlabs/puppetdb,johnduarte/puppetdb,highb/puppetdb,jantman/puppetdbAlexeyMK/faceboard,AlexeyMK/faceboardnicokosi/strava-activity-graphscraftybones/quil,jobez/quil-video,quil/quil,pxlpnk/quil,mi-mina/quilstudiospring/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxboxtiensonqin/exponent-cljs-template,seantempesta/expo-cljs-template,seantempesta/expo-cljs-templateato/clojars-web,tobias/clojars-web,ato/clojars-web,clojars/clojars-web,clojars/clojars-web,tobias/clojars-web,tobias/clojars-web,clojars/clojars-webwobh/xclojure,exercism/xclojure,querenker/xclojure,canweriotnow/xclojure,yurrriq/xclojure,exercism/xclojure,querenker/xclojurequeeno/infra-problem,queeno/infra-problemphss/silly-image-storeuxbox/uxbox-backend,uxbox/uxbox-backendmdippery/whitmanDeraen/less4cljlagenorhynque/sicpRadicalZephyr/boot-junitRadicalZephyr/boot-junitoakes/Nightcode,oakes/NightcodeRadicalZephyr/http-serverbraidchat/braid,braidchat/braid,rafd/braid,rafd/braidrorygibson/buddy-hashers,funcool/buddy-hashers,rorygibson/buddy-hashers,funcool/buddy-hasherstextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossamschaef/metlogorionsbelt-battlegrounds/obb-rules-apiopen-company/open-company-storageanil/timetrackerjtkDvlp/cljs-workersroblally/rook,clyfe/rook,bmabey/rookflores/engulf,andrewvc/engulf,andrewvc/engulf,terrancesnyder/engulf,andrewvc/engulf,terrancesnyder/engulf,flores/engulf,terrancesnyder/engulf,flores/engulfwhitepages/github-changelogdgtized/dotfiles,dgtized/dotfiles,dgtized/dotfilespuppetlabs/pcp-broker,puppetlabs/pcp-broker,puppetlabs/pcp-brokermdippery/whitmanpranavrc/tenorstuartsierra/lazytestcoopsource/immutant,immutant/immutant,coopsource/immutant,coopsource/immutant,kbaribeau/immutant,kbaribeau/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,immutant/immutantkbaribeau/immutant,immutant/immutant,kbaribeau/immutant,kbaribeau/immutant,immutant/immutant,coopsource/immutant,coopsource/immutant,coopsource/immutant,immutant/immutant,immutant/immutantlarouxn/palindrome,larouxn/palindrome,larouxn/palindrome,larouxn/palindrome,larouxn/palindrome,larouxn/palindrome,larouxn/palindrome,larouxn/palindromeacthp/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-serverduelinmarkers/clj-recordjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiokolya-ay/LightTable,craftybones/LightTable,kausdev/LightTable,craftybones/LightTable,bruno-oliveira/LightTable,EasonYi/LightTable,pkdevbox/LightTable,masptj/LightTable,youprofit/LightTable,Bost/LightTable,kausdev/LightTable,nagyistoce/LightTable,youprofit/LightTable,hiredgunhouse/LightTable,windyuuy/LightTable,brabadu/LightTable,mrwizard82d1/LightTable,fdserr/LightTable,craftybones/LightTable,ashneo76/LightTable,kenny-evitt/LightTable,Bost/LightTable,nagyistoce/LightTable,hiredgunhouse/LightTable,brabadu/LightTable,fdserr/LightTable,ashneo76/LightTable,mpdatx/LightTable,pkdevbox/LightTable,LightTable/LightTable,mpdatx/LightTable,fdserr/LightTable,kolya-ay/LightTable,kausdev/LightTable,LightTable/LightTable,EasonYi/LightTable,rundis/LightTable,sbauer322/LightTable,masptj/LightTable,masptj/LightTable,bruno-oliveira/LightTable,kolya-ay/LightTable,bruno-oliveira/LightTable,kenny-evitt/LightTable,EasonYi/LightTable,Bost/LightTable,kenny-evitt/LightTable,pkdevbox/LightTable,0x90sled/LightTable,youprofit/LightTable,rundis/LightTable,0x90sled/LightTable,LightTable/LightTable,sbauer322/LightTable,sbauer322/LightTable,ashneo76/LightTable,mpdatx/LightTable,mrwizard82d1/LightTable,BenjaminVanRyseghem/LightTable,0x90sled/LightTable,brabadu/LightTable,rundis/LightTable,BenjaminVanRyseghem/LightTable,mrwizard82d1/LightTable,windyuuy/LightTable,hiredgunhouse/LightTable,BenjaminVanRyseghem/LightTable,nagyistoce/LightTable,windyuuy/LightTablesimlun/enduro-session,simlun/enduro-sessionkeechma/keechmaagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesMastodonC/kixi.hecuba.weatherdylanfprice/stanfordml,dylanfprice/stanfordmlsavelichalex/friends-teach,savelichalex/friends-teach,savelichalex/friends-teach,savelichalex/friends-teachniwinz/pf-stats-api,niwinz/pf-stats-apikenrestivo/lein-droid,clojure-android/lein-droid,dferens/lein-droid,kenrestivo/lein-droid,clojure-android/lein-droid,celeritas9/lein-droid,pw4ever/lein-droid-for-tbnl,nablaa/lein-droid,celeritas9/lein-droidbraidchat/braid,rafd/braid,rafd/braid,braidchat/braidbzg/wlmmap,bzg/wlmmapjhn/tobias,jhn/tobiasRyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfilescircleci/frontend,RayRutjes/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontendvenicegeo/pz-discoveruxbox/uxbox,studiospring/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxboxuxbox/uxbox-backend,uxbox/uxbox-backendprathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontendmeggermo/dotfilesamalloy/useful,flatland/useful,jafingerhut/usefulonyx-platform/onyx-metricsOpetushallitus/clj-util,Opetushallitus/clj-utilnicokosi/strava-activity-graphsonyx-platform/onyx-datomiconyx-platform/onyx-peer-http-queryonyx-platform/onyx-templatempietrzak/sqls,sqls/sqlsnicokosi/strava-activity-graphsonyx-platform/onyx-templateezy023/compojure,weavejester/compojure,Christopher-Bui/compojure,sidcarter/compojurepparkkin/evemasteryduelinmarkers/clj-recordmullr/clj-kitchensink,camlow325/clj-kitchensinkonyx-platform/onyx-templatemvitz/statuses,innoq/statusesmkremins/flense-nw,mkremins/flense-nwniwinz/continuomhluongo/shale,cardforcoin/shale,mhluongo/shale,cardforcoin/shaleSwirrl/grafter,Swirrl/graftervbauer/lein-jslintAvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixtnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryezy023/compojure,weavejester/compojure,sidcarter/compojuretiredpixel/mtrx9ruedigergad/cli4cljring-clojure/ring,suligap/ring,ring-clojure/ring,ieure/ring,kirasystems/ring,meowcakes/ring,povloid/ring,tchagnon/ringtotakke/jungererfhofherr/simplewiseman/turboshrimp-h264jAlexeyMK/faceboard,AlexeyMK/faceboarddgtized/tile-game,dgtized/tile-gameathos/Pinpointercodahale/soy-clj,codahale/soy-cljonyx-platform/onyx-templatenicokosi/strava-activity-graphsfuncool/buddy-signRyanMcG/incise-coreduelinmarkers/clj-recordqu-platform/qu-core,kave/qu,cndreisbach/qu,cndreisbach/qu,sleitner/qu,m3brown/qu,m3brown/qu,sleitner/qu,marcesher/qu,qu-platform/qu-core,marcesher/qu,kave/quandersfurseth/flareRadicalZephyr/comic-reader,RadicalZephyr/comic-readeroakes/Nightcode,oakes/Nightcodemhjort/clj-tutorialsjhchabran/tabswitcher,jhchabran/tabswitcherGastove/doctopusfuncool/buddy-core,funcool/buddy-corebrianmd/haystacktobias/boot-jruby,tobias/boot-jrubystudiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxboxCoNarrative/precept,CoNarrative/preceptquil/quil-site,quil/quil-sitestuartsierra/cljs-formatteruxbox/uxbox,uxbox/uxbox,uxbox/uxboxbendyworks/lean-map,mfikes/lean-map,bendyworks/lean-map,mfikes/lean-map,bendyworks/lean-mapclyfe/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixtgranpanda/mofficerChristopher-Bui/compojure,sidcarter/compojure,ezy023/compojure,weavejester/compojureruedigergad/cli4cljfuncool/promesa,borkdude/promesatrptcolin/reply,bbatsov/reply,trptcolin/reply,bbatsov/replyonyx-platform/onyx-templatepparkkin/evemasteryworkfloapp/app-macros,workfloapp/macros,workfloapp/macrosquerenker/xclojure,exercism/xclojure,exercism/xclojure,wobh/xclojure,querenker/xclojure,canweriotnow/xclojure,yurrriq/xclojuredimsuz/ecregisterhhucn/discuss,hhucn/discusssubmanio/subman-parserjuxt/tick,juxt/tickmschaef/metlogrspect2014/retro-fever-templateplumatic/fnhouse,gfredericks/fnhouse,Prismatic/fnhouseuxbox/uxbox-backend,uxbox/uxbox-backendfuncool/buddy-signtrptcolin/reply,trptcolin/reply,bbatsov/reply,bbatsov/replyhhucn/discuss,hhucn/discussRayRutjes/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,prathamesh-sonpatki/frontendmfikes/shrimp,mfikes/shrimp,mfikes/shrimpjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioenragedginger/tensorflow-cljclj-dasha/dashactford/leipzig-live,ctford/cljs-bach,ctford/cljs-bachprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendoakes/Nightmodestsauver/suricatta,estsauver/suricatta,funcool/suricattakouphax/clj-basexjoelittlejohn/fink-nottle,coopsource/fink-nottle,nervous-systems/fink-nottledriis/exercism,driis/exercism,driis/exercismlvh/caesiumsbsdev/mdr2mdippery/whitmandylanfprice/stanfordml,dylanfprice/stanfordmlctford/cljs-bach,ctford/cljs-bachjuhovh/guangyincobalamin/lo-cashKevinGreene/onyx,intfrr/onyx,ideal-knee/onyx,onyx-platform/onyx,Deraen/onyx,tomasu82/onyx,dignati/onyx,mccraigmccraig/onyx,iperdomo/onyx,vijaykiran/onyxDay8/re-frame-template,Day8/re-frame-template,Day8/re-frame-templatekrwenholz/wort,krwenholz/wortjonathanj/advent2016juxt/edge,juxt/edgeNorgat/quil-cljs-template,quil/quil-templates,quil/quil-templatesmfikes/planck,ericstewart/planck,ericstewart/planck,slipset/planck,slipset/planck,slipset/planck,mfikes/planck,mfikes/planck,mfikes/planck,slipset/planck,mfikes/planck,slipset/planck,ericstewart/planck,mfikes/planckstrika/servisne.info,darkofabijan/servisne.info,darkofabijan/servisne.info,strika/servisne.infowilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomRyanMcG/incise-coref-f/dotfiles,f-f/dotfilesjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesphss/world-cup-2014-statsJannis/om-next-kanban-demo,Jannis/om-next-kanban-demooakes/Nightweb,oakes/Nightwebalan-ghelardi/berryniwinz/continuoroblally/rook,bmabey/rook,clyfe/rookwilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomwarreq/calc-cljQuantisan/docker-clojurering-clojure/ring,ring-clojure/ringsougatabh/cassaforte,clojurewerkz/cassaforte,jkni/cassaforte,clojurewerkz/cassaforteezmiller/datemoonyx-platform/onyxnilenso/time-tracker,nilenso/time-tracker,nilenso/time-trackertextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaUSGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changesDay8/re-frame-tracetextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaRayRutjes/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontendterrancesnyder/engulf,terrancesnyder/engulf,andrewvc/engulf,terrancesnyder/engulf,flores/engulf,andrewvc/engulf,flores/engulf,andrewvc/engulf,flores/engulfkbarber/puppetdb,ajroetker/puppetdb,puppetlabs/puppetdb,grimradical/puppetdb,jantman/puppetdb,github/puppetlabs-puppetdb,mullr/puppetdb,wkalt/puppetdb,highb/puppetdb,johnduarte/puppetdb,puppetlabs/puppetdb,senior/puppetdb,johnduarte/puppetdb,rbrw/puppetdb,shrug/puppetdb,github/puppetlabs-puppetdb,shrug/puppetdb,puppetlabs/puppetdb,jantman/puppetdb,melissa/puppetdb,highb/puppetdb,stahnma/puppetdb,shrug/puppetdb,kbarber/puppetdb,haus/puppetdb,waynr/puppetdb,mullr/puppetdb,wkalt/puppetdb,cprice404/puppetdb,grimradical/puppetdb,ajroetker/puppetdb,johnduarte/puppetdb,highb/puppetdb,kbrezina/puppetdb,senior/puppetdb,senior/puppetdb,mullr/puppetdb,kbrezina/puppetdb,waynr/puppetdb,wkalt/puppetdb,kbrezina/puppetdb,mullr/puppetdb,waynr/puppetdb,nfagerlund/puppetdb,nfagerlund/puppetdb,rbrw/puppetdb,senior/puppetdb,rbrw/puppetdb,rbrw/puppetdb,shrug/puppetdb,wkalt/puppetdb,haus/puppetdb,grimradical/puppetdb,puppetlabs/puppetdb,ajroetker/puppetdb,haus/puppetdb,jantman/puppetdb,grimradical/puppetdb,cprice404/puppetdb,highb/puppetdb,kbarber/puppetdb,puppetlabs/puppetdb,github/puppetlabs-puppetdb,cprice404/puppetdb,melissa/puppetdb,kbarber/puppetdb,kbrezina/puppetdb,stahnma/puppetdb,stahnma/puppetdb,johnduarte/puppetdb,nfagerlund/puppetdb,mullr/puppetdb,melissa/puppetdb,waynr/puppetdb,rbrw/puppetdb,ajroetker/puppetdbfuncool/buddyRyanMcG/incise-corematsrietdijk/sidequarter-frontendprathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontendcider-ci/cider-ci_server,cider-ci/cider-ci_server,cider-ci/cider-ci_server,cider-ci/cider-ci_clj-utilstextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaSwirrl/grafter,Swirrl/grafternasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositorymicroserviceux/photon,microserviceux/photon,microserviceux/photonjalpedersen/couch-joinerPance/decktouch,Pance/decktouchjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesDay8/re-frame,Day8/re-frame,Day8/re-frameemileswarts/made-merits,emileswarts/made-meritsliquidz/misakilucasdellabella/verbose-spoon,lucasdellabella/verbose-spoonclojusc/dragonHatnik/icecap,lvh/icecapmbjarland/octet,funcool/octet,funcool/octet,mbjarland/octetPance/decktouch,Pance/decktouchnicolasmccurdy/magician-clojure,nicolasmccurdy/magician-clojurestatus-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-reactdjui/qcast,i-s-o-g-r-a-m/qcast,i-s-o-g-r-a-m/qcast,djui/qcastGastove/doctopusDay8/re-frame,Day8/re-frame,Day8/re-frameDay8/re-frame,Day8/re-frame,Day8/re-frameRadicalZephyr/comic-reader,RadicalZephyr/comic-readertbrooks8/BeehivePhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncherctford/leipzig-live,ctford/cljs-bach,ctford/cljs-bachAF83/funnel-frontorionsbelt-battlegrounds/obb-api,weaver-viii/obb-api,orionsbelt-battlegrounds/obb-apiLobage/conexp-clj,Lobage/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,fcatools/conexp-clj,exot/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,Lobage/conexp-clj,fcatools/conexp-clj,exot/conexp-clj,Lobage/conexp-cljclojure-android/nekosbsdev/mdr2onyx-platform/onyx-templatekongeor/potoohlship/boardgamegeek-graphql-proxy,hlship/boardgamegeek-graphql-proxysmarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snake,smarr/Snakectford/cljs-bach,ctford/cljs-bachbbatsov/reply,trptcolin/reply,trptcolin/reply,bbatsov/replyreborg/applenews-apipauldoo/racepointLambda-X/cljs-repl-web,Lambda-X/cljs-repl-web,Lambda-X/cljs-repl-webRackSec/desdemonawalmartlabs/logback-riemann-appenderlpil/vimrccodywilbourn/streamparse,codywilbourn/streamparse,phanib4u/streamparse,msmakhlouf/streamparse,Parsely/streamparse,eric7j/streamparse,petchat/streamparse,petchat/streamparse,hodgesds/streamparse,msmakhlouf/streamparse,crohling/streamparse,eric7j/streamparse,petchat/streamparse,msmakhlouf/streamparse,msmakhlouf/streamparse,hodgesds/streamparse,Parsely/streamparse,msmakhlouf/streamparse,crohling/streamparse,petchat/streamparse,phanib4u/streamparse,petchat/streamparseamcnamara/4clojure,amcnamara/4clojure,gfredericks/4clojure,grnhse/4clojure,tclamb/4clojure,grnhse/4clojure,4clojure/4clojure,gfredericks/4clojure,rowhit/4clojure,devn/4clojure,rowhit/4clojure,tclamb/4clojure,4clojure/4clojure,devn/4clojureprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontendmeshy/dotfiles,meshy/dotfilesRyanMcG/incise-coreRyanMcG/incise-corechstan/personal-website,chstan/personal-website,chstan/personal-website,chstan/personal-websiteRadicalZephyr/comic-reader,RadicalZephyr/comic-readermaryrosecook/islacljfhofherr/lein-xjclynaghk/c2,lynaghk/c2RadicalZephyr/comic-reader,RadicalZephyr/comic-readerandersfurseth/flarerukor/cljs-ssr-hello,rukor/cljs-ssr-hellojcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesjhchabran/tabswitcher,jhchabran/tabswitcherChristopher-Bui/compojure,sidcarter/compojure,ezy023/compojure,weavejester/compojureRyanMcG/mannersonyx-platform/onyx-templategrnhse/4clojure,tclamb/4clojure,rowhit/4clojure,rowhit/4clojure,4clojure/4clojure,gfredericks/4clojure,gfredericks/4clojure,4clojure/4clojure,devn/4clojure,grnhse/4clojure,devn/4clojure,amcnamara/4clojure,tclamb/4clojure,amcnamara/4clojureonyx-platform/onyx-datomicAvisoNovate/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,clyfe/twixtonyx-platform/onyx-peer-http-queryfuncool/postalIzzimach/blue-salamanderonyx-platform/onyx-templatesamsara/bifrost,FundingCircle/bifrostthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesctford/cljs-bach,ctford/cljs-bachjonathanj/advent2016Day8/re-frame,Day8/re-frame,Day8/re-frameonyx-platform/onyx-peer-http-queryfuncool/suricatta,estsauver/suricatta,estsauver/suricattammcgrana/clj-jsonjgdavey/kevintbrooks8/Beehiveexercism/xclojure,yurrriq/xclojure,wobh/xclojure,exercism/xclojure,querenker/xclojure,querenker/xclojure,canweriotnow/xclojureRyanMcG/Cadence,RyanMcG/Cadencegga/asid,gga/asid,gga/asidfuncool/bide,funcool/bidenicolasmccurdy/magician-clojure,nicolasmccurdy/magician-clojurejhchabran/tabswitcher,jhchabran/tabswitcherTeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/ProgramsSagaHealthcareIT/mirthsyncbrycecovert/play-clj,the2bears/play-clj,brycecovert/play-clj,the2bears/play-clj,oakes/play-clj,oakes/play-cljdylanfprice/stanfordml,dylanfprice/stanfordmlbsvingen/replete,mfikes/replete,bsvingen/replete,bsvingen/replete,asheldo/replete,carabina/replete,hsjunnesson/replete,hsjunnesson/replete,asheldo/replete,karlmikko/replete,asheldo/replete,mfikes/replete,hsjunnesson/replete,O-I/replete,karlmikko/replete,mfikes/replete,hsjunnesson/replete,bsvingen/replete,carabina/replete,O-I/replete,carabina/replete,mfikes/replete,asheldo/replete,carabina/replete,mfikes/replete,bsvingen/replete,karlmikko/replete,karlmikko/replete,mfikes/replete,asheldo/replete,karlmikko/replete,hsjunnesson/replete,carabina/repletejamtur01/riemann,abailly/riemann,aphyr/riemann,eric/riemann,riemann/riemann,Anvil/riemann,eric/riemann,jeanpralo/riemann,Anvil/riemann,bmhatfield/riemann,abailly/riemann,jamtur01/riemann,aphyr/riemann,jeanpralo/riemann,riemann/riemann,bmhatfield/riemannarrdem/oxcart,arrdem/oxcartprachetasp/lispcast-lab-notebook,abeyonalaja/lisp-cast-omrafd/braid,braidchat/braid,rafd/braid,braidchat/braiddylanfprice/stanfordml,dylanfprice/stanfordmltotallymike/nopenopenopeRadicalZephyr/comic-reader,RadicalZephyr/comic-readerhashobject/perunelastic/runbld,elastic/runbld,elastic/runbld,elastic/runbld,elastic/runbldgreglook/vaultfuncool/promesa,borkdude/promesamshravanreddi/effectivejava,ftomassetti/effectivejava,dushmis/effectivejava,ftomassetti/effectivejava,dushmis/effectivejava,mshravanreddi/effectivejavaactive-group/active-clojurepxlpnk/quil,quil/quil,mi-mina/quil,craftybones/quil,jobez/quil-videostuartsierra/lazytestRyanMcG/Cadence,RyanMcG/Cadencejackrusher/sparkledriverjafingerhut/useful,amalloy/useful,flatland/usefulzubairq/yazz,zubairq/AppShare,zubairq/gosharedata,zubairq/gosharedata,zubairq/yazz,zubairq/AppShare,zubairq/AppShare,zubairq/AppSharesidcarter/compojure,Christopher-Bui/compojure,weavejester/compojure,ezy023/compojureninjudd/cakefuncool/buddy-hashers,rorygibson/buddy-hashers,funcool/buddy-hashers,rorygibson/buddy-hashersghaskins/obcc,ghaskins/chaintool,ghaskins/obcc,ghaskins/chaintoolbakpakin/ezglibarrdem/oxcart,arrdem/oxcartonyx-platform/onyx-datomiconyx-platform/onyx-templateonyx-platform/onyx-datomiconyx-platform/onyx-templateonyx-platform/onyx-templateprepor/catacumba,funcool/catacumba,coopsource/catacumba,mitchelkuijpers/catacumba,funcool/catacumba,mitchelkuijpers/catacumba,coopsource/catacumba,funcool/catacumba,prepor/catacumbaDexterminator/clj-templates,Dexterminator/clj-templatesuxbox/uxbox-backend,uxbox/uxbox-backendnagyistoce/LightTable,craftybones/LightTable,nagyistoce/LightTable,ohAitch/LightTable,cldwalker/LightTable,mpdatx/LightTable,kenny-evitt/LightTable,mpdatx/LightTable,brabadu/LightTable,cldwalker/LightTable,BenjaminVanRyseghem/LightTable,youprofit/LightTable,youprofit/LightTable,EasonYi/LightTable,BenjaminVanRyseghem/LightTable,masptj/LightTable,hiredgunhouse/LightTable,windyuuy/LightTable,rundis/LightTable,brabadu/LightTable,LightTable/LightTable,sbauer322/LightTable,bruno-oliveira/LightTable,masptj/LightTable,nagyistoce/LightTable,Bost/LightTable,youprofit/LightTable,sbauer322/LightTable,bruno-oliveira/LightTable,kausdev/LightTable,pkdevbox/LightTable,kenny-evitt/LightTable,rundis/LightTable,0x90sled/LightTable,kausdev/LightTable,Bost/LightTable,EasonYi/LightTable,fdserr/LightTable,pkdevbox/LightTable,justintaft/LightTable,windyuuy/LightTable,rundis/LightTable,hiredgunhouse/LightTable,craftybones/LightTable,mrwizard82d1/LightTable,LightTable/LightTable,0x90sled/LightTable,brabadu/LightTable,bruno-oliveira/LightTable,craftybones/LightTable,fdserr/LightTable,Bost/LightTable,kausdev/LightTable,LightTable/LightTable,kolya-ay/LightTable,EasonYi/LightTable,kenny-evitt/LightTable,ashneo76/LightTable,hiredgunhouse/LightTable,windyuuy/LightTable,ashneo76/LightTable,pkdevbox/LightTable,BenjaminVanRyseghem/LightTable,mrwizard82d1/LightTable,0x90sled/LightTable,sbauer322/LightTable,ohAitch/LightTable,justintaft/LightTable,ohAitch/LightTable,fdserr/LightTable,masptj/LightTable,mpdatx/LightTable,kolya-ay/LightTable,kolya-ay/LightTable,ashneo76/LightTable,mrwizard82d1/LightTablenicokosi/strava-activity-graphsravicious/flux-challenge-re-frameoakes/Nightmodpxlpnk/quil,mi-mina/quil,quil/quil,jobez/quil-video,craftybones/quilmrwizard82d1/bayes-cljs,mrwizard82d1/bayes-cljsfuncool/beicon,funcool/beiconsubmanio/subman-parseragilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilestbrooks8/Beehive-httprtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglotDeraen/saapasRadicalZephyr/comic-reader,RadicalZephyr/comic-readeryochannah/staircase,yochannah/staircase,yochannah/staircase,joshkh/staircase,joshkh/staircase,joshkh/staircaserafd/braid,rafd/braid,braidchat/braid,braidchat/braidalphagov/blinkenonyx-platform/onyx-datomicdamballa/inet.data,damballa/inet.datacircleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontendpje/overtone,Widea/overtone,ethancrawford/overtone,chunseoklee/overtone,craftybones/overtone,brunchboy/overtone,la3lma/overtone,mcanthony/overtonetrptcolin/reply,bbatsov/reply,trptcolin/reply,bbatsov/replyonyx-platform/onyx-templatetotakke/jungereronyx-platform/onyx-templaterosejn/overtone,pje/overtone,chunseoklee/overtone,mcanthony/overtone,la3lma/overtone,brunchboy/overtone,craftybones/overtone,ethancrawford/overtone,Widea/overtonemgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesdgtized/dotfiles,dgtized/dotfiles,dgtized/dotfilestextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaRyanMcG/Cadence,RyanMcG/CadenceRadicalZephyr/comic-reader,RadicalZephyr/comic-readermelonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-servicesoakes/Nightmodonyx-platform/onyx-datomicprisamuel/objective8,ThoughtWorksInc/objective8,d-cent/objective8,ThoughtWorksInc/objective8,d-cent/objective8,prisamuel/objective8,ThoughtWorksInc/objective8,d-cent/objective8,d-cent/objective8,prisamuel/objective8,ThoughtWorksInc/objective8,prisamuel/objective8terrancesnyder/engulf,flores/engulf,flores/engulf,terrancesnyder/engulf,andrewvc/engulf,andrewvc/engulf,andrewvc/engulf,flores/engulf,terrancesnyder/engulfonyx-platform/onyx-templatebbatsov/reply,bbatsov/reply,trptcolin/reply,trptcolin/replyJobava/chestnut,Nek/chestnut,neverfox/chestnut,Nek/chestnut,Jobava/chestnut,Jobava/chestnut,malloryerik/chestnut,malloryerik/chestnut,neverfox/chestnut,jacqt/chestnut,jacqt/chestnut,plexus/chestnut,plexus/chestnut,malloryerik/chestnut,Nek/chestnut,neverfox/chestnutgreglook/merkle-db,greglook/merkle-db,greglook/merkle-dbmgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesmetasoarous/strange-coopbpdp/lunatismaryrosecook/islacljjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioamalloy/usefulmarkbastian/clojure-club,VoltaicAge8838/clojure-club,rbelohlavek/clojure-club,VoltaicAge8838/clojure-club,markbastian/clojure-club,VoltaicAge8838/clojure-club,markbastian/clojure-club,rbelohlavek/clojure-clubfuncool/buddyonyx-platform/onyx-pluginPance/decktouch,Pance/decktouchlvh/caesiumonyx-platform/onyxpauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratch,pauldoo/scratchPance/decktouch,Pance/decktouchAlexeyMK/faceboard,AlexeyMK/faceboardIanDCarroll/exercism.io,beni55/exercism.io,Tonkpils/exercism.io,MBGeoff/Exercism.io-mbgeoff,treiff/exercism.io,jtigger/exercism.io,chinaowl/exercism.io,colinrubbert/exercism.io,praveenpuglia/exercism.io,sheekap/exercism.io,k4rtik/exercism.io,treiff/exercism.io,copiousfreetime/exercism.io,praveenpuglia/exercism.io,amar47shah/exercism.io,Tonkpils/exercism.io,Tonkpils/exercism.io,alexclarkofficial/exercism.io,mhelmetag/exercism.io,kizerxl/exercism.io,colinrubbert/exercism.io,hanumakanthvvn/exercism.io,jtigger/exercism.io,RaptorRCX/exercism.io,sheekap/exercism.io,exercistas/exercism.io,hanumakanthvvn/exercism.io,mscoutermarsh/exercism_coveralls,RaptorRCX/exercism.io,mscoutermarsh/exercism_coveralls,MBGeoff/Exercism.io-mbgeoff,k4rtik/exercism.io,RaptorRCX/exercism.io,bmulvihill/exercism.io,amar47shah/exercism.io,beni55/exercism.io,kangkyu/exercism.io,mscoutermarsh/exercism_coveralls,kizerxl/exercism.io,RaptorRCX/exercism.io,mscoutermarsh/exercism_coveralls,kangkyu/exercism.io,exercistas/exercism.io,kizerxl/exercism.io,tejasbubane/exercism.io,mhelmetag/exercism.io,bmulvihill/exercism.io,praveenpuglia/exercism.io,mscoutermarsh/exercism_coveralls,nathanbwright/exercism.io,sheekap/exercism.io,chastell/exercism.io,chinaowl/exercism.io,jtigger/exercism.io,tejasbubane/exercism.io,hanumakanthvvn/exercism.io,mscoutermarsh/exercism_coveralls,emilyforst/exercism.io,sheekap/exercism.io,mscoutermarsh/exercism_coveralls,colinrubbert/exercism.io,Tonkpils/exercism.io,mscoutermarsh/exercism_coveralls,tejasbubane/exercism.io,MBGeoff/Exercism.io-mbgeoff,praveenpuglia/exercism.io,nathanbwright/exercism.io,bmulvihill/exercism.io,mscoutermarsh/exercism_coveralls,alexclarkofficial/exercism.io,chinaowl/exercism.io,nathanbwright/exercism.io,mhelmetag/exercism.io,beni55/exercism.io,amar47shah/exercism.io,bmulvihill/exercism.io,treiff/exercism.io,mscoutermarsh/exercism_coveralls,emilyforst/exercism.io,hanumakanthvvn/exercism.io,copiousfreetime/exercism.io,IanDCarroll/exercism.io,chastell/exercism.io,exercistas/exercism.io,IanDCarroll/exercism.io,treiff/exercism.io,chastell/exercism.io,alexclarkofficial/exercism.io,tejasbubane/exercism.io,copiousfreetime/exercism.io,k4rtik/exercism.io,mhelmetag/exercism.io,kangkyu/exercism.io,jtigger/exercism.io,copiousfreetime/exercism.io,IanDCarroll/exercism.io,nathanbwright/exercism.io,emilyforst/exercism.iobilus/reformsandrewvc/engulf,andrewvc/engulf,terrancesnyder/engulf,terrancesnyder/engulf,flores/engulf,flores/engulf,terrancesnyder/engulf,flores/engulf,andrewvc/engulfhhucn/discuss,hhucn/discussmfikes/advent-of-cljsRadicalZephyr/comic-reader,RadicalZephyr/comic-readervijaykiran/onyx,onyx-platform/onyxbo-chen/postal,drewr/postaljfacorro/tiny-cljryfow/afterglow,dandaka/afterglow,brunchboy/afterglow,dandaka/afterglow,brunchboy/afterglow,brunchboy/afterglow,ryfow/afterglowpavel-v-chernykh/goljuxt/edge,juxt/edgetextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaonyx-platform/onyx-datomiclvh/caesiumDeraen/onyx,KevinGreene/onyx,iperdomo/onyx,dignati/onyx,onyx-platform/onyx,ideal-knee/onyx,vijaykiran/onyx,mccraigmccraig/onyxonyx-platform/onyx-pluginMateuszKubuszok/Skatjcf/clovernilenso/regardeSnootyMonkey/posthere.iofuncool/octet,mbjarland/octet,funcool/octet,mbjarland/octetmdippery/karmanauttisnik/zg,tisnik/zgdarkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2monthsuxbox/uxbox,uxbox/uxbox,uxbox/uxboxmfikes/replete,mfikes/replete,mfikes/replete,bsvingen/replete,carabina/replete,mfikes/replete,mfikes/replete,asheldo/replete,karlmikko/replete,carabina/replete,asheldo/replete,hsjunnesson/replete,asheldo/replete,carabina/replete,karlmikko/replete,karlmikko/replete,hsjunnesson/replete,asheldo/replete,O-I/replete,hsjunnesson/replete,bsvingen/replete,hsjunnesson/replete,carabina/replete,carabina/replete,O-I/replete,bsvingen/replete,hsjunnesson/replete,bsvingen/replete,bsvingen/replete,mfikes/replete,karlmikko/replete,asheldo/replete,karlmikko/repleteagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfileskbaribeau/immutant,coopsource/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,immutant/immutant,coopsource/immutantgreglook/clj-multihashdignati/onyx,iperdomo/onyx,Deraen/onyx,onyx-platform/onyx,tomasu82/onyx,intfrr/onyx,mccraigmccraig/onyx,vijaykiran/onyx,KevinGreene/onyx,ideal-knee/onyxuxbox/uxbox,uxbox/uxbox,uxbox/uxboxRadicalZephyr/comic-reader,RadicalZephyr/comic-readergreglook/blocks,greglook/blobble,greglook/blobblering-clojure/ring,ring-clojure/ringggiraldez/sumptuseric/riemann,bg451/riemann,counsyl/riemann,patrox/riemann,irudyak/riemann,pradeepchhetri/riemann,rekhajoshm/riemann,forter/riemann,cswaroop/riemann,topecz/riemann,nelhage/riemann,topecz/riemann,VideoAmp/riemann-1,pyr/riemann,vincentbernat/riemann,VideoAmp/riemann-1,counsyl/riemann,pradeepchhetri/riemann,ClodoCorp/riemann,aphyr/riemann,mirwan/riemann,jamtur01/riemann,bfritz/riemann,twosigma/riemann,patrox/riemann,bmhatfield/riemann,rekhajoshm/riemann,hugoduncan/riemann,nelhage/riemann,cswaroop/riemann,tzach/riemann,fullcontact/riemann,pharaujo/riemann,hugoduncan/riemann,micrub/riemann,stanislas/riemann,vixns/riemann,timbuchwaldt/riemann,bg451/riemann,ClodoCorp/riemann,shokunin/riemann,twosigma/riemann,mirwan/riemann,mfournier/riemann,rhysr/riemann,micrub/riemann,cswaroop/riemann,bowlofstew/riemann,vincentbernat/riemann,jamtur01/riemann,mbuczko/riemann,patrickod/riemann,LubyRuffy/riemann,rhysr/riemann,twosigma/riemann,joerayme/riemann,DasAllFolks/riemann,lispmeister/riemann,algernon/riemann,hugoduncan/riemann,alq666/riemann,lispmeister/riemann,udoprog/riemann,abailly/riemann,riemann/riemann,algernon/riemann,jeanpralo/riemann,DasAllFolks/riemann,vixns/riemann,robashton/riemann,LubyRuffy/riemann,nelhage/riemann,joerayme/riemann,patrox/riemann,Anvil/riemann,fullcontact/riemann,nberger/riemann,bmhatfield/riemann,nberger/riemann,yeller/riemann,fullcontact/riemann,moonranger/riemann,forter/riemann,stanislas/riemann,udoprog/riemann,moonranger/riemann,yeller/riemann,pyr/riemann,tzach/riemann,timbuchwaldt/riemann,lispmeister/riemann,abailly/riemann,stanislas/riemann,robashton/riemann,bowlofstew/riemann,Anvil/riemann,AkihiroSuda/riemann,mfournier/riemann,shokunin/riemann,bwilber/riemann,jeanpralo/riemann,tzach/riemann,irudyak/riemann,patrickod/riemann,alq666/riemann,rhysr/riemann,riemann/riemann,mfournier/riemann,aphyr/riemann,algernon/riemann,yeller/riemann,mirwan/riemann,mbuczko/riemann,micrub/riemann,eric/riemann,forter/riemann,bwilber/riemann,pharaujo/riemann,topecz/riemann,shokunin/riemann,ClodoCorp/riemann,zamaterian/riemann,bfritz/riemann,zamaterian/riemann,udoprog/riemann,AkihiroSuda/riemann,rekhajoshm/riemann,patrickod/riemanninnoq/statuses,mvitz/statusestbrooks8/Beehivebpoweski/http.async.client,michaelneale/http.async.client,xeqi/http.async.client,diamondap/http.async.client,jkk/http.async.client,adamwynne/http.async.client,vgeshel/http.async.client,josephwilk/http.async.client,oliyh/http.async.client,klang/http.async.client,canassa/http.async.clientaperiodic/mars-oglerAvisoNovate/trackerAvisoNovate/trackersubmanio/subman-parseralvinfrancis/gtfvehhucn/discuss,hhucn/discussFalseProtagonist/graphagora,immutant/feature-demo,jkutner/feature-demo,coopsource/feature-demo,FalseProtagonist/graphagora,jkutner/feature-demo,coopsource/feature-demo,coopsource/feature-demo,immutant/feature-demo,jkutner/feature-demo,immutant/feature-demo,FalseProtagonist/graphagoraezmiller/datemoshaaza/rsvp-backendgrammati/refactor-nrepl,Peeja/refactor-nrepl,Peeja/refactor-nrepl,duncanmortimer/refactor-nrepl,duncanmortimer/refactor-nrepl,clojure-emacs/refactor-nrepl,luxbock/refactor-nrepl,clumsyjedi/refactor-nrepl,msgodf/refactor-nrepl,luxbock/refactor-nrepl,clumsyjedi/refactor-nrepl,grammati/refactor-nrepl,msgodf/refactor-nrepl,clojure-emacs/refactor-nreplhung-phan/clojure-template,hung-phan/clojure-templatesimon-katz/nomis-clojure-the-languagegreglook/vaultmbutlerw/yada,thomas-shares/yada,delitescere/yada,delitescere/yada,delitescere/yada,mbutlerw/yada,juxt/yada,juxt/yada,thomas-shares/yada,mbutlerw/yada,juxt/yadaomcljs/ambly,jobez/ambly,bsvingen/ambly,jobez/ambly,domesticmouse/ambly,bsvingen/ambly,domesticmouse/ambly,omcljs/amblyraxod502/radian,raxod502/radianAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintAidbox/mobile-patient,Aidbox/mobile-patient,Aidbox/mobile-patient,Aidbox/mobile-patientbnadlerjr/lunchlotto,bnadlerjr/lunchlottocamlow325/clj-kitchensink,mullr/clj-kitchensinktotakke/jungerermdippery/whitmancloudify-cosmo/cloudify-manager,konradxyz/dev_fileserver,cloudify-cosmo/cloudify-manager,konradxyz/cloudify-manager,codilime/cloudify-manager,geokala/cloudify-manager,cloudify-cosmo/cloudify-manager,codilime/cloudify-manager,isaac-s/cloudify-manager,geokala/cloudify-manager,codilime/cloudify-manager,isaac-s/cloudify-manager,konradxyz/cloudify-manager,isaac-s/cloudify-manager,konradxyz/dev_fileserverexercism/xclojure,wobh/xclojure,querenker/xclojure,yurrriq/xclojure,querenker/xclojure,canweriotnow/xclojure,exercism/xclojurehyPiRion/smallexRayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendDay8/re-frame-tracesuligap/ring,kirasystems/ring,ieure/ring,tchagnon/ring,meowcakes/ring,ring-clojure/ring,povloid/ring,ring-clojure/ringrafd/braid,rafd/braid,braidchat/braid,braidchat/braidjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioDay8/re-frame,Day8/re-frame,Day8/re-frame0/leiningen,0/leiningen,ato/leiningenlpil/vimrcideal-knee/robot-kataPance/todo-repl-webapponyx-platform/onyx-benchmark,onyx-platform/onyx-benchmark,onyx-platform/onyx-benchmarkonyx-platform/onyx-templategreglook/blobble,greglook/blocks,greglook/blobbleHughPowell/ci-testonyx-platform/onyx-templatefuncool/buddy-hashers,rorygibson/buddy-hashers,rorygibson/buddy-hashers,funcool/buddy-hashersmdippery/whitmanexercism/xclojure,querenker/xclojure,querenker/xclojure,exercism/xclojureuxbox/uxbox-backend,uxbox/uxbox-backendJannis/om-mantras,Jannis/om-mantrasdarkofabijan/servisne.info,strika/servisne.info,strika/servisne.info,darkofabijan/servisne.infobg451/riemann,yeller/riemann,pyr/riemann,pharaujo/riemann,mirwan/riemann,mirwan/riemann,DasAllFolks/riemann,bfritz/riemann,DasAllFolks/riemann,irudyak/riemann,bwilber/riemann,rhysr/riemann,forter/riemann,zamaterian/riemann,Anvil/riemann,yeller/riemann,alq666/riemann,rekhajoshm/riemann,mbuczko/riemann,rhysr/riemann,timbuchwaldt/riemann,nberger/riemann,vincentbernat/riemann,counsyl/riemann,irudyak/riemann,bmhatfield/riemann,alq666/riemann,rekhajoshm/riemann,shokunin/riemann,forter/riemann,jamtur01/riemann,bfritz/riemann,jeanpralo/riemann,VideoAmp/riemann-1,vincentbernat/riemann,bowlofstew/riemann,joerayme/riemann,VideoAmp/riemann-1,jeanpralo/riemann,shokunin/riemann,nberger/riemann,lispmeister/riemann,robashton/riemann,forter/riemann,patrox/riemann,rhysr/riemann,vixns/riemann,bowlofstew/riemann,pyr/riemann,AkihiroSuda/riemann,counsyl/riemann,pradeepchhetri/riemann,aphyr/riemann,lispmeister/riemann,joerayme/riemann,patrox/riemann,abailly/riemann,eric/riemann,robashton/riemann,LubyRuffy/riemann,cswaroop/riemann,shokunin/riemann,LubyRuffy/riemann,riemann/riemann,riemann/riemann,cswaroop/riemann,rekhajoshm/riemann,bmhatfield/riemann,mbuczko/riemann,timbuchwaldt/riemann,abailly/riemann,pradeepchhetri/riemann,moonranger/riemann,eric/riemann,patrox/riemann,moonranger/riemann,Anvil/riemann,yeller/riemann,bg451/riemann,AkihiroSuda/riemann,lispmeister/riemann,vixns/riemann,cswaroop/riemann,zamaterian/riemann,mirwan/riemann,aphyr/riemann,bwilber/riemann,jamtur01/riemann,pharaujo/riemannhyPiRion/smallexjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioPance/decktouch,Pance/decktouchdylanfprice/stanfordml,dylanfprice/stanfordmlGonzih/cljs-electron,Gonzih/cljs-electronmikedouglas/MiniJava,mikedouglas/MiniJavaGastove/doctopusonyx-platform/onyx-datomicruedigergad/cli4cljpalletops/leavenonyx-platform/onyx-templatefuncool/futuraonyx-platform/onyx-templateonyx-platform/onyx-templatesimon-katz/nomis-clojure-the-languageonyx-platform/onyx-pluginonyx-platform/onyx-datomiconyx-platform/onyx-templatemschaef/metlogmoxaj/mikron,moxaj/mikronoptimizely/little-clojurer-publicamalloy/useful,flatland/useful,jafingerhut/usefulHatnik/icecap,lvh/icecapdylanfprice/stanfordml,dylanfprice/stanfordmljuxt/edge,juxt/edgecrockeo/petulant-lifenberger/dotfiles,nberger/dotfilesgreenyouse/deepfns,greenyouse/deepfns0/leiningen,0/leiningenonyx-platform/onyx-pluginprasos/bitcoin-paper-walletfuncool/buddy-core,funcool/buddy-coreezy023/compojure,weavejester/compojure,sidcarter/compojure,Christopher-Bui/compojureonyx-platform/onyx-templatecburgmer/greenyet,cburgmer/greenyet,cburgmer/greenyetTheClimateCorporation/claypooleonyx-platform/onyx-benchmark,onyx-platform/onyx-benchmark,onyx-platform/onyx-benchmarkwhitepages/github-changelogstrika/servisne.info,strika/servisne.infoPance/todo-repl-webappclyfe/rook,bmabey/rook,roblally/rookfuncool/bide,funcool/bideflosell/clj-timeframesoakes/Nightcode,oakes/Nightcodeemileswarts/made-merits,emileswarts/made-meritsstuartsierra/lazytestjoaalto/tunnitpleasetrythisathome/modular,juxt/modular,pleasetrythisathome/modular,juxt/modularmixradio/partywalmartlabs/logback-riemann-appenderclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixtfuncool/buddy-signborkdude/promesa,funcool/promesauxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxboxclarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearch,clarkcb/xsearchstuartsierra/lazytestjimrthy/frereth-web,jimrthy/frereth-webseantempesta/re-natal-om-next,seantempesta/re-natal-om-next0/leiningen,0/leiningenIntey/OhMyBank,Intey/OhMyBank,Intey/OhMyBank,Intey/OhMyBankrtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglotRyanMcG/incise-coreprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontendyannvanhalewyn/gigrig-power-diagram-generatormhjort/clj-gatlingHatnik/icecap,lvh/icecapoakes/Nightmodnagyistoce/LightTable,pkdevbox/LightTable,brabadu/LightTable,EasonYi/LightTable,Bost/LightTable,masptj/LightTable,0x90sled/LightTable,youprofit/LightTable,masptj/LightTable,rundis/LightTable,craftybones/LightTable,youprofit/LightTable,windyuuy/LightTable,kenny-evitt/LightTable,LightTable/LightTable,rundis/LightTable,Bost/LightTable,rundis/LightTable,mrwizard82d1/LightTable,ashneo76/LightTable,ashneo76/LightTable,Bost/LightTable,kausdev/LightTable,cldwalker/LightTable,fdserr/LightTable,hiredgunhouse/LightTable,youprofit/LightTable,LightTable/LightTable,ohAitch/LightTable,EasonYi/LightTable,fdserr/LightTable,kolya-ay/LightTable,EasonYi/LightTable,justintaft/LightTable,justintaft/LightTable,windyuuy/LightTable,kausdev/LightTable,kenny-evitt/LightTable,pkdevbox/LightTable,mpdatx/LightTable,pkdevbox/LightTable,kolya-ay/LightTable,bruno-oliveira/LightTable,hiredgunhouse/LightTable,LightTable/LightTable,brabadu/LightTable,BenjaminVanRyseghem/LightTable,kolya-ay/LightTable,bruno-oliveira/LightTable,ashneo76/LightTable,hiredgunhouse/LightTable,BenjaminVanRyseghem/LightTable,ohAitch/LightTable,0x90sled/LightTable,0x90sled/LightTable,kenny-evitt/LightTable,brabadu/LightTable,sbauer322/LightTable,ohAitch/LightTable,cldwalker/LightTable,mpdatx/LightTable,BenjaminVanRyseghem/LightTable,mrwizard82d1/LightTable,bruno-oliveira/LightTable,sbauer322/LightTable,mrwizard82d1/LightTable,mpdatx/LightTable,windyuuy/LightTable,kausdev/LightTable,nagyistoce/LightTable,sbauer322/LightTable,fdserr/LightTable,craftybones/LightTable,craftybones/LightTable,nagyistoce/LightTable,masptj/LightTablereplikativ/twitter-collectorcldwalker/bolt,cldwalker/bolt,cldwalker/boltonyx-platform/onyx-templatefuncool/buddy-signordnungswidrig/jugs-clojuremorrislenny/hydrofoilhhucn/discuss,hhucn/discussmoxaj/mikron,moxaj/mikrontobias/clojars-web,clojars/clojars-web,tobias/clojars-web,ato/clojars-web,ato/clojars-web,clojars/clojars-web,clojars/clojars-web,tobias/clojars-webyannvanhalewyn/gigrig-power-diagram-generatorjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesRyanMcG/Cadence,RyanMcG/Cadencedferens/lein-droid,pw4ever/lein-droid-for-tbnl,clojure-android/lein-droid,kenrestivo/lein-droid,kenrestivo/lein-droid,clojure-android/lein-droid,celeritas9/lein-droid,celeritas9/lein-droid,nablaa/lein-droiddylanfprice/stanfordml,dylanfprice/stanfordmlRackSec/desdemonasbsdev/catalogMartinSoto/clojure-streamsImmortalin/Nightcode,oakes/Nightcode,Immortalin/Nightcode,oakes/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,Immortalin/Nightcodeclojurewerkz/cassaforte,jkni/cassaforte,sougatabh/cassaforte,clojurewerkz/cassafortekbaribeau/immutant,coopsource/immutant,immutant/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,coopsource/immutantbrycecovert/play-clj,the2bears/play-clj,the2bears/play-clj,oakes/play-clj,oakes/play-clj,brycecovert/play-cljRyanMcG/incise-corearrdem/oxcart,arrdem/oxcartpje/overtone,ethancrawford/overtone,Widea/overtone,chunseoklee/overtone,craftybones/overtone,mcanthony/overtone,rosejn/overtone,la3lma/overtone,brunchboy/overtoneonyx-platform/onyx-metricsbrentonashworth/lein-difftesttbrooks8/Beehivelvh/trotterclojure-grimoire/lib-grimoire,rmoehn/lib-grimoireYuhta/clj-center,Yuhta/cljdfuncool/buddy-signdarkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2monthsstevensurgnier/dropwizard-clojureflyboarder/boot-cljs,crisptrutski/boot-cljs,jaen/boot-cljs,adzerk-oss/boot-cljs,boot-clj/boot-cljswilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomquerenker/xclojure,exercism/xclojure,exercism/xclojure,querenker/xclojureRadicalZephyr/comic-reader,RadicalZephyr/comic-readerAF83/funnel-frontmetabase/toucantobias/boot-jruby,tobias/boot-jrubyAvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixt,clyfe/twixtRadicalZephyr/comic-reader,RadicalZephyr/comic-readerblmstrm/clj-spotifyfuncool/promesa,borkdude/promesareplikativ/konserve,replikativ/konservemccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkarmoehn/lein-grim,clojure-grimoire/lein-grimscode/httpgctestRayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontendoakes/Nightcode,bsmr-clojure/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,Immortalin/Nightcodematthiasn/metrics-clojureuxbox/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxarrdem/detritusrkoeninger/hyjinks,rkoeninger/hyjinkshashobject/perunDay8/re-frame,Day8/re-frame,Day8/re-frameLambda-X/lambonebertrandk/lexemicAvisoNovate/trackerathos/Pinpointeronyx-platform/onyx-datomicorionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rulesfuncool/buddy-core,funcool/buddy-coremfikes/advent-of-cljsgreglook/vaultmdippery/whitmanRayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontendMastodonC/kixi.hecuba,MastodonC/kixi.hecuba,MastodonC/kixi.hecuba,MastodonC/kixi.hecuba,MastodonC/kixi.hecubaSnootyMonkey/coming-soonoakes/Nightweb,oakes/Nightwebreagent-project/reagent,reagent-project/reagent,reagent-project/reagentactive-group/active-clojureonyx-platform/onyx-peer-http-querypuppetlabs/clj-ldapntalbs/tweetbook,ntalbs/tweetbookweavejester/compojure,ezy023/compojure,sidcarter/compojure,Christopher-Bui/compojurereplikativ/incognito,replikativ/incognitorowhit/4clojure,amcnamara/4clojure,grnhse/4clojure,rowhit/4clojure,gfredericks/4clojure,grnhse/4clojure,4clojure/4clojure,tclamb/4clojure,4clojure/4clojure,gfredericks/4clojure,tclamb/4clojure,amcnamara/4clojureamalloy/useful,jafingerhut/useful,flatland/usefulmaryrosecook/islacljoakes/Nightmodhlship/cascadetotakke/jungerersbsdev/cataloglymingtonprecision/route-ccrs,lymingtonprecision/route-ccrschrovis/cljammschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-RepositoryChristopher-Bui/compojure,sidcarter/compojure,weavejester/compojure,ezy023/compojureyannvanhalewyn/gigrig-power-diagram-generatoronyx-platform/onyx-datomiconyx-platform/onyx-templateonyx-platform/onyx-templateyogthos/devcards-template,bhauman/devcards-templatebnadlerjr/cljspikeonyx-platform/onyx-datomicfuncool/buddy-signpleasetrythisathome/modular,pleasetrythisathome/modular,juxt/modular,juxt/modular0/leiningen,ato/leiningen,0/leiningengreglook/vaultwilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomcodefordenver/rmfu-feed,codefordenver/rmfu-feed,codefordenver/rmfu-feedjohnduarte/puppetdb,wkalt/puppetdb,cprice404/puppetdb,jantman/puppetdb,kbrezina/puppetdb,highb/puppetdb,jantman/puppetdb,senior/puppetdb,kbrezina/puppetdb,stahnma/puppetdb,puppetlabs/puppetdb,waynr/puppetdb,ajroetker/puppetdb,nfagerlund/puppetdb,shrug/puppetdb,kbarber/puppetdb,nfagerlund/puppetdb,github/puppetlabs-puppetdb,mullr/puppetdb,highb/puppetdb,waynr/puppetdb,johnduarte/puppetdb,mullr/puppetdb,senior/puppetdb,jantman/puppetdb,rbrw/puppetdb,shrug/puppetdb,highb/puppetdb,highb/puppetdb,melissa/puppetdb,waynr/puppetdb,johnduarte/puppetdb,kbarber/puppetdb,cprice404/puppetdb,github/puppetlabs-puppetdb,senior/puppetdb,haus/puppetdb,mullr/puppetdb,grimradical/puppetdb,kbrezina/puppetdb,puppetlabs/puppetdb,ajroetker/puppetdb,github/puppetlabs-puppetdb,shrug/puppetdb,cprice404/puppetdb,puppetlabs/puppetdb,grimradical/puppetdb,rbrw/puppetdb,waynr/puppetdb,senior/puppetdb,wkalt/puppetdb,puppetlabs/puppetdb,rbrw/puppetdb,stahnma/puppetdb,haus/puppetdb,melissa/puppetdb,ajroetker/puppetdb,mullr/puppetdb,haus/puppetdb,stahnma/puppetdb,kbrezina/puppetdb,johnduarte/puppetdb,shrug/puppetdb,rbrw/puppetdb,ajroetker/puppetdb,kbarber/puppetdb,wkalt/puppetdb,nfagerlund/puppetdb,mullr/puppetdb,melissa/puppetdb,kbarber/puppetdb,grimradical/puppetdb,rbrw/puppetdb,grimradical/puppetdb,wkalt/puppetdb,puppetlabs/puppetdbjhalterman/figaro,atomix/trinitytreppo/yorck-ratings-v2weavejester/compojuremmcgrana/fleetdbMastodonC/terrabootfuncool/buddy-signnchapon/carambaryfractal/Midje,bens/Midje,aeriksson/Midje,marick/Midjeruedigergad/cli4cljmccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkadanpersa/instaskiponyx-platform/onyx-bookkeeperonyx-platform/onyx-templatepparkkin/evemasteryonyx-platform/onyx-templateOpetushallitus/clj-util,Opetushallitus/clj-utiltrptcolin/reply,trptcolin/reply,bbatsov/reply,bbatsov/replyonyx-platform/onyx-templatemfikes/shrimp,mfikes/shrimp,mfikes/shrimpbnadlerjr/cljspikeshvetsovdm/pict-sourceonyx-platform/onyx-templatevbauer/lein-jslintonyx-platform/onyx-datomiconyx-platform/onyx-kafka,mccraigmccraig/onyx-kafkaonyx-platform/onyx-templatecapside-functional-nomads/bartlebydrewr/postal,bo-chen/postalJannis/om-next-drum-machine,Jannis/om-next-drum-machineRadicalZephyr/boot-junithlship/cascadeaaron-santos/robinson,aaron-santos/robinsondamballa/inet.data,damballa/inet.dataonyx-platform/onyx-templateonyx-platform/onyx-templatejuxt/bolt,juxt/boltmkremins/flense-nw,mkremins/flense-nwrill-event-sourcing/rillRadicalZephyr/comic-reader,RadicalZephyr/comic-readerRadicalZephyr/http-serverwhitepages/github-changelogduelinmarkers/clj-recordtarcieri/momentumjrosti/ontrail,jrosti/ontrail,jrosti/ontrail,jrosti/ontrail,jrosti/ontrailJannis/cljs-audio-utilswilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomfuncool/suricattaMichaelBlume/lein-ring4clojure/4clojure,devn/4clojure,rowhit/4clojure,devn/4clojure,gfredericks/4clojure,grnhse/4clojure,gfredericks/4clojure,grnhse/4clojure,rowhit/4clojure,tclamb/4clojure,amcnamara/4clojure,4clojure/4clojure,amcnamara/4clojure,tclamb/4clojuredriis/exercism,driis/exercism,driis/exercismajpocus/swartz,ajpocus/swartzfivethreeone/fivethreeonern,fivethreeone/fivethreeonern,fivethreeone/fivethreeonernweaver-viii/spiral,dgrnbrg/spiralfuncool/buddy-core,funcool/buddy-coreRayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontendcasidiablo/takoonyx-platform/onyx-metricsbbatsov/reply,trptcolin/reply,trptcolin/reply,bbatsov/replyruedigergad/cli4cljmvitz/statuses,innoq/statusesonyx-platform/onyx-datomicninjudd/cakeestsauver/suricatta,funcool/suricatta,estsauver/suricattasubmanio/subman-parserAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintdvberkel/advent-of-codewaynedyck/play-clj-experimentsstudiospring/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxboxjules75/tesqchancerussell/lein-quick-omterrancesnyder/engulf,flores/engulf,terrancesnyder/engulf,andrewvc/engulf,flores/engulf,andrewvc/engulf,terrancesnyder/engulf,andrewvc/engulf,flores/engulfRyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles0/leiningen,0/leiningenAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintPhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncherndhoule/project-eulerrafd/braid,braidchat/braid,braidchat/braid,rafd/braidvotinginfoproject/data-processorjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesMastodonC/bifrostlvh/caesiumstatus-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-reactbraidchat/braid,rafd/braid,rafd/braid,braidchat/braidjaredlll08/MCBotlymingtonprecision/route-ccrs,lymingtonprecision/route-ccrsmoxaj/mikron,moxaj/mikronRyanMcG/incise-corepaulrd/cawala,paulrd/cawalafuzzysource/bogo-clojureRyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfilesoakes/Nightcode,oakes/Nightcodeowainlewis/yamlonyx-platform/onyx-templateonyx-platform/onyx-templatewhitepages/github-changelogsbsdev/mdr2onyx-platform/onyx-datomicaperiodic/mars-oglertcsavage/cats,OlegTheCat/cats,yurrriq/cats,funcool/cats,mccraigmccraig/cats,alesguzik/catsDeraen/less4cljAvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixtjhwohlgemuth/techtonic-env,jhwohlgemuth/techtonic-env,jhwohlgemuth/techtonic-datastore,jhwohlgemuth/techtonic-datastoreoakes/Nightmod4ZM/spirasidcarter/compojure,weavejester/compojure,ezy023/compojure,Christopher-Bui/compojurelvh/caesiumonyx-platform/onyx-metricsonyx-platform/onyx-templatering-clojure/ring,ring-clojure/ringCoNarrative/precept,CoNarrative/preceptvotinginfoproject/data-processorwillowtreeapps/wombats-web-client,willowtreeapps/wombats-web-clientalan-ghelardi/berryacthp/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-server,acthp/ucsc-xena-server,ucscXena/ucsc-xena-server,ucscXena/ucsc-xena-server,acthp/ucsc-xena-serverHatnik/icecap,lvh/icecapnasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repositoryalexanderkiel/transit-clj,borovsky/transit-clj,cognitect/transit-clj,jdunruh/transit-cljmgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesphss/silly-image-storefdanielsen/scavengermpietrzak/sqls,sqls/sqlshyPiRion/java-bencodeonyx-platform/onyx-templatedamballa/inet.data,damballa/inet.dataonyx-platform/onyx-templatefhofherr/lein-xjctobyclemson/exegesisJannis/om-next-kanban-demo,Jannis/om-next-kanban-demodylanfprice/stanfordml,dylanfprice/stanfordmlonyx-platform/onyxctford/cljs-bach,ctford/cljs-bachjuxt/edge,juxt/edgenasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesDrDoofenshmirtz/SimRunner,DrDoofenshmirtz/SimRunnerRyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfilestailrecursion/hoplon.iopavel-v-chernykh/potstudiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxboxnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-RepositoryMartinSoto/clojure-streamswhitepages/github-changelog �%mfikes/advent-of-cljsgzeureka/test-fbhhucn/discuss,hhucn/discussmixradio/mr-maestroopen-company/open-company-storagejimrthy/frereth-serverjuxt/yada,juxt/yada,juxt/yadaphss/silly-image-storejafingerhut/useful,amalloy/useful,flatland/usefulmhjort/clj-tutorialsagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesRadicalZephyr/comic-reader,RadicalZephyr/comic-readermccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkaonyx-platform/onyx-datomiconyx-platform/onyx-templateRyanMcG/incise-corestudiospring/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxboxtendant/graphql-cljmatthiasn/metrics-clojurePance/decktouch,Pance/decktouchvotinginfoproject/data-processormlb-/yadnd5ecs,mlb-/yadnd5ecsAlexeyMK/faceboard,AlexeyMK/faceboardjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioRayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontendPhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncheronyx-platform/onyx-templateSnootyMonkey/posthere.iomhjort/clj-gatlingfuncool/buddy-core,funcool/buddy-coreonyx-platform/onyx-templateseancorfield/om-senteHughPowell/ci-testonyx-platform/onyx-metricswillowtreeapps/wombats-web-client,willowtreeapps/wombats-web-clientonyx-platform/onyx-metricsDay8/re-frame-traceBreezeemr/quiescentRadicalZephyr/comic-reader,RadicalZephyr/comic-readerfuncool/buddy-core,funcool/buddy-corestatus-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-reactoakes/Nightmodcircleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontendmixradio/mr-clojure,calumlean/mr-clojureamcnamara/4clojure,tclamb/4clojure,grnhse/4clojure,4clojure/4clojure,rowhit/4clojure,gfredericks/4clojure,grnhse/4clojure,tclamb/4clojure,rowhit/4clojure,gfredericks/4clojure,amcnamara/4clojure,4clojure/4clojureonyx-platform/onyx-kafka,mccraigmccraig/onyx-kafkaamacdougall/mazestchagnon/ring,povloid/ring,suligap/ring,ring-clojure/ring,kirasystems/ring,orend/ring,meowcakes/ring,liuchang23/ring,siphiuel/ring,ieure/ring,ring-clojure/ringonyx-platform/onyx-templateonyx-platform/onyx-templateonyx-platform/onyx-peer-http-queryring-clojure/ring,ring-clojure/ringc-garcia/madoucmaryrosecook/islaclj0/leiningen,0/leiningenDeLaGuardo/doo,bensu/doo,DeLaGuardo/doo,nervous-systems/doo,bensu/doo,nervous-systems/dooJannis/cljs-audio-utilsprathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontendlaurenrother/riak_cs,yangchengjian/riak_cs,yangchengjian/riak_cs,basho/riak_cs,sdebnath/riak_cs,laurenrother/riak_cs,basho/riak_cs,GabrielNicolasAvellaneda/riak_cs,sdebnath/riak_cs,GabrielNicolasAvellaneda/riak_cs,GabrielNicolasAvellaneda/riak_cs,dragonfax/riak_cs,yangchengjian/riak_cs,laurenrother/riak_cs,yangchengjian/riak_cs,dragonfax/riak_cs,sdebnath/riak_cs,basho/riak_cs,sdebnath/riak_cs,laurenrother/riak_cs,dragonfax/riak_cs,dragonfax/riak_cs,GabrielNicolasAvellaneda/riak_cs,basho/riak_csrobb1e/robb1e.clj,robb1e/robb1e.cljplayasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdomeAlotor/poc-clojure-restdylanfprice/stanfordml,dylanfprice/stanfordmlRadicalZephyr/boot-junitMichaelBlume/lein-ring0/leiningen,0/leiningen,ato/leiningenJannis/om-next-kanban-demo,Jannis/om-next-kanban-demomatthiasn/metrics-clojuremhjort/clj-gatlingjandorfer/planted,jandorfer/plantedRadicalZephyr/boot-junitnicokosi/strava-activity-graphsonyx-platform/onyx-pluginuxbox/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxboxruedigergad/cli4cljclyfe/rook,roblally/rook,bmabey/rookmdippery/karmanautlazyposse/fnxmdippery/whitmandimitrijer/pericles,dimitrijer/periclesdimitrijer/pericles,dimitrijer/periclesburhanloey/rumahsewa141scotje/trapperkeeper,senior/trapperkeeper,rbramwell/trapperkeeper,senior/trapperkeeper,camlow325/trapperkeeper,nwolfe/trapperkeeper,nwolfe/trapperkeeper,puppetlabs/trapperkeeperbraidchat/braid,rafd/braid,braidchat/braid,rafd/braidimmutant/immutant,coopsource/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,coopsource/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutanttendant/graphql-cljRyanMcG/incise-coreonyx-platform/onyx-templatejcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesyfractal/Midje,aeriksson/Midje,marick/Midje,bens/Midjed4span/evermind,d4span/evermindmetosin/reitit,metosin/reitit,metosin/reititUSGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changeshhucn/discuss,hhucn/discussakvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flow,akvo/akvo-flowexercism/xclojure,exercism/xclojure,yurrriq/xclojure,wobh/xclojure,canweriotnow/xclojure,querenker/xclojure,querenker/xclojureDay8/re-frame,danielcompton/re-frame,johnswanson/re-frame,led/re-frame,danielcompton/re-frame,daiyi/re-frame,chpill/re-frankenstein,Day8/re-frame,chpill/re-frankenstein,daiyi/re-frame,martinklepsch/re-frame,ducky427/re-frame,martinklepsch/re-frame,daiyi/re-frame,greywolve/re-frame,richardharrington/re-frame,cryptonomicon314/pyccoon-cljs-re-frame,richardharrington/re-frame,danielcompton/re-frame,richardharrington/re-frame,jiangts/re-frame,Day8/re-frame,chpill/re-frankenstein,yatesco/re-frame,martinklepsch/re-framemdippery/whitmanjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio0/leiningen,ato/leiningen,0/leiningentbrooks8/Beehiveonyx-platform/onyx-bookkeeperjerhow/blaaghvjuranek/infinispan-snippets,vjuranek/infinispan-snippets,vjuranek/infinispan-snippets,vjuranek/infinispan-snippetsonyx-platform/onyx-templatetotakke/jungererAvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixtpjstadig/assertionshlship/boardgamegeek-graphql-proxy,hlship/boardgamegeek-graphql-proxyc-garcia/madouctotakke/jungererdanielneal/compoundbpdp/lunatismrwizard82d1/test-utils-cljs,mrwizard82d1/test-utils-cljsgreglook/clj-multihashboot-clj/boot,upgradingdave/boot,ragnard/boot,RadicalZephyr/boot,junjiemars/boot,danielsz/boot,kausdev/boot,junjiemars/boot,tobias/boot,instilled/boot,tailrecursion/boot,danielsz/boot,ragnard/boot,kennyjwilli/boot,ragnard/boot,upgradingdave/boot,kausdev/boot,instilled/boot,tobias/boot,junjiemars/boot,crisptrutski/boot,upgradingdave/boot,crisptrutski/boot,crisptrutski/boot,kennyjwilli/boot,kausdev/boot,RadicalZephyr/boot,danielsz/boot,bbatsov/boot,tobias/bootbill-baumgartner/kabobhhucn/discuss,hhucn/discussgga/asid,gga/asid,gga/asidjindrichmynarz/db-quizjuxt/edge,juxt/edgeuxbox/uxbox-backend,uxbox/uxbox-backenddiscendum/salava,discendum/salava,discendum/salavajuxt/modular,pleasetrythisathome/modular,pleasetrythisathome/modular,juxt/modularHatnik/icecap,lvh/icecapkapware/auricle,kapware/auricle,kapware/auriclelazyposse/fnxRadicalZephyr/http-serverJannis/custardonyx-platform/onyx-templateTheClimateCorporation/claypooleyurrriq/cats,tcsavage/cats,mccraigmccraig/cats,funcool/cats,alesguzik/cats,OlegTheCat/catsdrewr/postalDay8/re-frame-template,Day8/re-frame-template,Day8/re-frame-templateonyx-platform/onyx-templatecircleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontendsubmanio/subman-parseralexanderkiel/lens-warehouseRadicalZephyr/comic-reader,RadicalZephyr/comic-readerdenistakeda/balance,denistakeda/balance,denistakeda/balanceRackSec/desdemonaarrdem/oxcart,arrdem/oxcartonyx-platform/onyx-templateonyx-platform/onyx-sqlonyx-platform/onyx-templatehlship/cascadehalla/synapticle,halla/synapticlehackathon-5/the-holey-divinity-of-our-sisters-for-perpetual-recursion-repoRyanMcG/Cadence,RyanMcG/Cadencethe2bears/play-clj,oakes/play-clj,brycecovert/play-clj,the2bears/play-clj,oakes/play-clj,brycecovert/play-cljbraidchat/braid,rafd/braid,braidchat/braid,rafd/braidbaritonehands/avalon,baritonehands/avalonagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfileslucasdellabella/Coursera-ML-Stuffhhucn/discuss,hhucn/discussquerenker/xclojure,exercism/xclojure,exercism/xclojure,querenker/xclojureDrDoofenshmirtz/SimRunner,DrDoofenshmirtz/SimRunnermlb-/yadnd5ecs,mlb-/yadnd5ecsrill-event-sourcing/rillhhucn/discuss,hhucn/discussathos/Pinpointerpkdevbox/LightTable,0x90sled/LightTable,masptj/LightTable,mpdatx/LightTable,kolya-ay/LightTable,kausdev/LightTable,cldwalker/LightTable,craftybones/LightTable,0x90sled/LightTable,Bost/LightTable,justintaft/LightTable,sbauer322/LightTable,EasonYi/LightTable,cldwalker/LightTable,craftybones/LightTable,pkdevbox/LightTable,kausdev/LightTable,rundis/LightTable,hiredgunhouse/LightTable,brabadu/LightTable,kolya-ay/LightTable,pkdevbox/LightTable,craftybones/LightTable,Bost/LightTable,kolya-ay/LightTable,EasonYi/LightTable,rundis/LightTable,windyuuy/LightTable,nagyistoce/LightTable,EasonYi/LightTable,mrwizard82d1/LightTable,nagyistoce/LightTable,sbauer322/LightTable,fdserr/LightTable,ohAitch/LightTable,brabadu/LightTable,masptj/LightTable,BenjaminVanRyseghem/LightTable,windyuuy/LightTable,mrwizard82d1/LightTable,youprofit/LightTable,bruno-oliveira/LightTable,bruno-oliveira/LightTable,LightTable/LightTable,BenjaminVanRyseghem/LightTable,brabadu/LightTable,mrwizard82d1/LightTable,hiredgunhouse/LightTable,sbauer322/LightTable,ashneo76/LightTable,bruno-oliveira/LightTable,fdserr/LightTable,ashneo76/LightTable,mpdatx/LightTable,justintaft/LightTable,ashneo76/LightTable,LightTable/LightTable,ohAitch/LightTable,masptj/LightTable,fdserr/LightTable,windyuuy/LightTable,LightTable/LightTable,BenjaminVanRyseghem/LightTable,mpdatx/LightTable,youprofit/LightTable,kenny-evitt/LightTable,ohAitch/LightTable,kenny-evitt/LightTable,nagyistoce/LightTable,rundis/LightTable,hiredgunhouse/LightTable,kausdev/LightTable,youprofit/LightTable,kenny-evitt/LightTable,Bost/LightTable,0x90sled/LightTablenyampass/clojournal,nyampass/clojournaljafingerhut/useful,amalloy/useful,flatland/usefulorionsbelt-battlegrounds/obb-rules-apimgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesRadicalZephyr/comic-reader,RadicalZephyr/comic-readercoldnew/emulator-4917mdippery/whitmanAvisoNovate/trackerjbranchaud/hello-world,jbranchaud/hello-world,jbranchaud/hello-world,jbranchaud/hello-world,jbranchaud/hello-world,jbranchaud/hello-worldopen-company/open-company-storageu-o/theatralia,rmoehn/theatraliaJuholei/my-money,Juholei/my-moneyRadicalZephyr/comic-reader,RadicalZephyr/comic-readertextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaclojuresque/baseRackSec/desdemonaphss/silly-image-storeMattiNieminen/reableditfuncool/buddyghl3/Jest,ghl3/Jestninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinet,ninjudd/tokyocabinetclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixtnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repositorykthelgason/shurlystudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxgorillalabs/teslaUSGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changes,USGS-EROS/lcmap-changesHatnik/icecap,lvh/icecapideal-knee/onyx,dignati/onyx,iperdomo/onyx,onyx-platform/onyx,Deraen/onyx,vijaykiran/onyx,KevinGreene/onyx,mccraigmccraig/onyxpalletops/lein-pallet-releaseskuro/clojure-maven-archetypeMattiNieminen/reableditoptimizely/little-clojurer-publicpetchat/streamparse,petchat/streamparse,hodgesds/streamparse,codywilbourn/streamparse,petchat/streamparse,scrapinghub/streamparse,msmakhlouf/streamparse,petchat/streamparse,scrapinghub/streamparse,Parsely/streamparse,crohling/streamparse,scrapinghub/streamparse,scrapinghub/streamparse,msmakhlouf/streamparse,Parsely/streamparse,hodgesds/streamparse,phanib4u/streamparse,msmakhlouf/streamparse,scrapinghub/streamparse,msmakhlouf/streamparse,eric7j/streamparse,crohling/streamparse,msmakhlouf/streamparse,eric7j/streamparse,phanib4u/streamparse,codywilbourn/streamparse,petchat/streamparsebnadlerjr/cljspikekbaribeau/immutant,kbaribeau/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,coopsource/immutant,coopsource/immutant,immutant/immutant,immutant/immutant,coopsource/immutantjussiarpalahti/mathom,jussiarpalahti/mathomlvh/icecapagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesadolby/AndrewDolby.com,adolby/AndrewDolby.comltw/dotfiles,ltw/dotfilesopen-company/open-company-storagejuxt/modular,juxt/modular,pleasetrythisathome/modular,pleasetrythisathome/modularRackSec/desdemonaRyanMcG/Cadence,RyanMcG/Cadencejohanhaleby/stub-httponyx-platform/onyx-datomicdrewr/postal,bo-chen/postalonyx-platform/onyx-datomicmonteithpj/asystantmikera/telegenicmatthiasn/metrics-clojureinnoq/statuses,mvitz/statusescldwalker/kukuinilenso/time-tracker,nilenso/time-tracker,nilenso/time-trackerideal-knee/robot-katapleasetrythisathome/modular,juxt/modular,pleasetrythisathome/modular,juxt/modularrmoehn/baustellenchristinning/chess,christinning/chesszev/rule110wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathommmcgrana/clj-json,weavejester/clj-jsonghaskins/chaintool,ghaskins/chaintool,ghaskins/obcc,ghaskins/obccstudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxboxrhysr/riemann,joerayme/riemann,ClodoCorp/riemann,vincentbernat/riemann,yeller/riemann,vixns/riemann,forter/riemann,counsyl/riemann,robashton/riemann,forter/riemann,DasAllFolks/riemann,twosigma/riemann,LubyRuffy/riemann,yeller/riemann,spazm/riemann,aphyr/riemann,twosigma/riemann,cswaroop/riemann,shokunin/riemann,counsyl/riemann,irudyak/riemann,zamaterian/riemann,alq666/riemann,LubyRuffy/riemann,shokunin/riemann,mirwan/riemann,rekhajoshm/riemann,Anvil/riemann,jamtur01/riemann,forter/riemann,tzach/riemann,ClodoCorp/riemann,Anvil/riemann,cswaroop/riemann,eric/riemann,aphyr/riemann,mfournier/riemann,ClodoCorp/riemann,udoprog/riemann,VideoAmp/riemann-1,fullcontact/riemann,algernon/riemann,stanislas/riemann,micrub/riemann,vixns/riemann,lispmeister/riemann,cswaroop/riemann,jamtur01/riemann,hugoduncan/riemann,pyr/riemann,tzach/riemann,twosigma/riemann,bmhatfield/riemann,fullcontact/riemann,algernon/riemann,mirwan/riemann,pyr/riemann,moonranger/riemann,shokunin/riemann,hugoduncan/riemann,patrickod/riemann,bg451/riemann,lispmeister/riemann,rekhajoshm/riemann,udoprog/riemann,vincentbernat/riemann,jeanpralo/riemann,patrox/riemann,bg451/riemann,stanislas/riemann,nberger/riemann,topecz/riemann,VideoAmp/riemann-1,micrub/riemann,AkihiroSuda/riemann,timbuchwaldt/riemann,zamaterian/riemann,riemann/riemann,udoprog/riemann,bmhatfield/riemann,rekhajoshm/riemann,abailly/riemann,rhysr/riemann,robashton/riemann,fullcontact/riemann,nberger/riemann,bfritz/riemann,patrox/riemann,topecz/riemann,stanislas/riemann,tzach/riemann,pradeepchhetri/riemann,abailly/riemann,moonranger/riemann,alq666/riemann,patrox/riemann,nelhage/riemann,mbuczko/riemann,lispmeister/riemann,bwilber/riemann,irudyak/riemann,bfritz/riemann,pradeepchhetri/riemann,mfournier/riemann,bwilber/riemann,spazm/riemann,nelhage/riemann,AkihiroSuda/riemann,micrub/riemann,hugoduncan/riemann,algernon/riemann,mbuczko/riemann,DasAllFolks/riemann,joerayme/riemann,topecz/riemann,riemann/riemann,yeller/riemann,mfournier/riemann,mirwan/riemann,patrickod/riemann,rhysr/riemann,nelhage/riemann,bowlofstew/riemann,bowlofstew/riemann,pharaujo/riemann,pharaujo/riemann,timbuchwaldt/riemann,patrickod/riemann,jeanpralo/riemann,eric/riemannTheClimateCorporation/claypooleonyx-platform/onyx-templateonyx-platform/onyx-datomicduelinmarkers/clj-recordexercism/xclojure,exercism/xclojure,querenker/xclojure,querenker/xclojure,wobh/xclojure,canweriotnow/xclojure,yurrriq/xclojurebraidchat/braid,rafd/braid,rafd/braid,braidchat/braidRadicalZephyr/http-servertapn2it/one,tapn2it/one,huntfunc/huntfunc-one,nybbles/one,osbert/dv-sim,simonholgate/contour-one,jasonrudolph/one-rep-max,jasonrudolph/one-rep-max,simonholgate/contour-one,osbert/dv-sim,saolsen/jammer-old,saolsen/jammer-oldring-clojure/ring,ring-clojure/ringmschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryring-clojure/ring,ring-clojure/ringjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioimmutant/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,coopsource/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutantkgxsz/todo,kgxsz/todoprachetasp/lispcast-lab-notebook,abeyonalaja/lisp-cast-omlvh/caesiumprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendrafd/braid,rafd/braid,braidchat/braid,braidchat/braidcoopsource/feature-demo,immutant/feature-demo,immutant/feature-demo,immutant/feature-demo,FalseProtagonist/graphagora,coopsource/feature-demo,jkutner/feature-demo,jkutner/feature-demo,FalseProtagonist/graphagora,coopsource/feature-demo,jkutner/feature-demo,FalseProtagonist/graphagoraabeyonalaja/lisp-cast-om,prachetasp/lispcast-lab-notebooksbsdev/hyphen-keeperonyx-platform/onyx,ideal-knee/onyx,mccraigmccraig/onyx,tomasu82/onyx,dignati/onyx,iperdomo/onyx,KevinGreene/onyx,intfrr/onyx,Deraen/onyx,vijaykiran/onyxdaiyi/re-frame,richardharrington/re-frame,danielcompton/re-frame,martinklepsch/re-frame,richardharrington/re-frame,chpill/re-frankenstein,danielcompton/re-frame,chpill/re-frankenstein,chpill/re-frankenstein,martinklepsch/re-frame,richardharrington/re-frame,danielcompton/re-frame,daiyi/re-frame,Day8/re-frame,daiyi/re-frame,Day8/re-frame,martinklepsch/re-frame,Day8/re-framestudiospring/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,uxbox/uxboxorionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rulesprathamesh-sonpatki/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontendHatnik/icecap,lvh/icecaponyx-platform/onyx-templateRyanMcG/incise-corebbatsov/reply,trptcolin/reply,trptcolin/reply,bbatsov/replycgag/boilerpipe-cljmfikes/advent-of-cljsmelonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-servicesc-garcia/madoucmhjort/clj-gatlingbuild-canaries/clj-cctraynicokosi/strava-activity-graphsonyx-platform/onyx-templateclojure-grimoire/lib-grimoire,rmoehn/lib-grimoireruedigergad/cli4cljdgtized/tile-game,dgtized/tile-gameonyx-platform/onyx-datomicllasram/parenskitRyanMcG/mannershlship/cascadewkf/hawk,wkf/hawk,wkf/hawkonyx-platform/onyx-templateonyx-platform/onyx-templatenicokosi/strava-activity-graphsfuncool/postalRyanMcG/incise-corecircleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontendcburgmer/buildviz,cburgmer/buildviz,cburgmer/buildvizring-clojure/ring,ring-clojure/ringemileswarts/made-merits,emileswarts/made-meritstbrooks8/BeehiveAvisoNovate/twixt,clyfe/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixtmelonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-services,melonmanchan/left-pad-servicesImmortalin/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,Immortalin/Nightcode,Immortalin/Nightcodeelastic/runbld,elastic/runbld,elastic/runbld,elastic/runbld,elastic/runbldcespare/dotfilesNicMcPhee/Clojush,saulshanabrook/Clojush,lspector/Clojush,Vaguery/Clojush,Vaguery/Clojush,lspector/Clojush,NicMcPhee/Clojush,saulshanabrook/Clojush,thelmuth/Clojush,thelmuth/Clojushtbeddy/zetawar,Zetawar/zetawar,Zetawar/zetawar,tbeddy/zetawar,Zetawar/zetawar,tbeddy/zetawardjhaskin987/degasolv,djhaskin987/degasolv,djhaskin987/degasolv,djhaskin987/dependablejhn/generic,jhn/generic,jhn/generic,jhn/genericcolinf/om-chatagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilestailrecursion/hoplon.ioadolby/AndrewDolby.com,adolby/AndrewDolby.commoxaj/mikron,moxaj/mikronruedigergad/cli4cljajlopez/ClojJSroblally/rook,bmabey/rook,clyfe/rookplexus/attendance,plexus/attendanceedpaget/sleuthmfikes/lean-map,mfikes/lean-map,bendyworks/lean-map,bendyworks/lean-map,bendyworks/lean-mapPhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncherlvh/icecapauramo/holstonjcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfiles,jcf/ansible-dotfilesmultunus/dashboard-cljmgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesmaryrosecook/islacljbo-chen/postal,drewr/postalriwsky/mo-pomo,riwsky/mo-pomomarkmandel/brutereplme/replme,clojurecup2014/replme,replme/replme-frontend,clojurecup2014/replmeRobotDisco/coffee-table,RobotDisco/coffee-tableclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixtfinagle/finagle-clojure,bguthrie/finagle-clojureDanPallas/mvMusicrmoehn/theatralia,u-o/theatraliadexterous/data-mining-experimentstotakke/jungererfuncool/buddy-core,funcool/buddy-coreonyx-platform/onyx-templategorillalabs/gorilla-repl,gorillalabs/gorilla-repl,mrcslws/gorilla-repl,mrcslws/gorilla-repl,deas/gorilla-notebook,JonyEpsilon/gorilla-repl,deas/gorilla-notebook,deas/gorilla-notebook,JonyEpsilon/gorilla-repl,deas/gorilla-notebookGastove/doctopustiredpixel/mtrx9onyx-platform/onyx-jepsenshepmaster/clojure-rubykillme2008/clojure-controlweavejester/compojureonyx-platform/onyx-metricsGentlemanHal/ring-curlonyx-platform/onyx-datomiconyx-platform/onyx-templatewilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomclojure/test.check,clojure/test.check,clojure/test.checktbrooks8/Beehive-httpkephale/brevis,kephale/brevistrptcolin/reply,bbatsov/reply,bbatsov/reply,trptcolin/replygaverhae/naughtmq,gaverhae/naughtmqfuncool/beicon,funcool/beicondaveliepmann/urukniwinz/continuomhjort/clj-gatlingfuncool/buddy-authquil/quil,mi-mina/quil,pxlpnk/quil,craftybones/quil,jobez/quil-videotoblux/visibility-2dfuncool/beicon,funcool/beiconworkfloapp/macros,workfloapp/macros,workfloapp/app-macrosonyx-platform/onyxlukaszkorecki/cult-leaderoakes/Nightcode,oakes/Nightcodemhjort/clj-tutorialsjuxt/yada,juxt/yada,juxt/yadadaiyi/re-frame,chpill/re-frankenstein,danielcompton/re-frame,martinklepsch/re-frame,chpill/re-frankenstein,richardharrington/re-frame,Day8/re-frame,martinklepsch/re-frame,danielcompton/re-frame,Day8/re-frame,richardharrington/re-frame,richardharrington/re-frame,martinklepsch/re-frame,danielcompton/re-frame,daiyi/re-frame,Day8/re-frame,daiyi/re-frame,chpill/re-frankensteinnablaa/lein-droid,celeritas9/lein-droid,dferens/lein-droid,pw4ever/lein-droid-for-tbnl,kenrestivo/lein-droid,clojure-android/lein-droid,celeritas9/lein-droid,clojure-android/lein-droid,kenrestivo/lein-droidPance/todo-repl-webapponyx-platform/onyx-templateemileswarts/made-merits,emileswarts/made-meritsRyanMcG/incise-corevotinginfoproject/data-processorprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontendstuartsierra/lazytestRadicalZephyr/http-serveri-s-o-g-r-a-m/qcast,i-s-o-g-r-a-m/qcast,djui/qcast,djui/qcasthenrygarner/darknet-appjuxt/yada,delitescere/yada,juxt/yada,mbutlerw/yada,delitescere/yada,mbutlerw/yada,mbutlerw/yada,delitescere/yada,juxt/yadaGastove/doctopusjacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwhoplayasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdomelynaghk/c2,lynaghk/c2circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontendlvh/icecaponyx-platform/onyx-metricsdrewr/postal,bo-chen/postaldmitriid/trakDay8/re-frame-tracePhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncherMartinSoto/clojure-streamsactive-group/active-clojureRyanMcG/incise-corebilus/reformspalfrey/herder,palfrey/herderjgrocho/vimclojure,jgrocho/vimclojure,jgrocho/vimclojure,emezeske/vimclojure,emezeske/vimclojure,emezeske/vimclojure,kotarak/vimclojure,kotarak/vimclojure,kotarak/vimclojuremozilla/medusa,Uberi/medusa,Uberi/medusa,mozilla/medusaMartinSoto/clojure-streamsdevth/yetibot.core,LeonmanRolls/yetibot.coreniwinz/pf-stats-api,niwinz/pf-stats-apicoopsource/immutant,immutant/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutant,coopsource/immutantaaron-santos/robinson,aaron-santos/robinsonmccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkabendyworks/lean-map,mfikes/lean-map,bendyworks/lean-map,bendyworks/lean-map,mfikes/lean-mapmccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkaRadicalZephyr/comic-reader,RadicalZephyr/comic-readercircleci/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,prathamesh-sonpatki/frontendaudaxion/yetibot.corejoerayme/riemann,topecz/riemann,alq666/riemann,jeanpralo/riemann,vixns/riemann,VideoAmp/riemann-1,AkihiroSuda/riemann,pyr/riemann,topecz/riemann,fullcontact/riemann,cswaroop/riemann,robashton/riemann,micrub/riemann,forter/riemann,vincentbernat/riemann,vincentbernat/riemann,LubyRuffy/riemann,mbuczko/riemann,eric/riemann,pharaujo/riemann,aphyr/riemann,mirwan/riemann,joerayme/riemann,pradeepchhetri/riemann,LubyRuffy/riemann,counsyl/riemann,timbuchwaldt/riemann,lispmeister/riemann,mirwan/riemann,abailly/riemann,DasAllFolks/riemann,patrox/riemann,lispmeister/riemann,bowlofstew/riemann,pharaujo/riemann,mirwan/riemann,algernon/riemann,riemann/riemann,nberger/riemann,forter/riemann,rekhajoshm/riemann,bwilber/riemann,aphyr/riemann,topecz/riemann,jeanpralo/riemann,shokunin/riemann,AkihiroSuda/riemann,riemann/riemann,mbuczko/riemann,patrox/riemann,bfritz/riemann,bfritz/riemann,bg451/riemann,DasAllFolks/riemann,alq666/riemann,micrub/riemann,moonranger/riemann,pyr/riemann,algernon/riemann,bmhatfield/riemann,jamtur01/riemann,VideoAmp/riemann-1,bmhatfield/riemann,vixns/riemann,Anvil/riemann,fullcontact/riemann,yeller/riemann,moonranger/riemann,Anvil/riemann,cswaroop/riemann,nberger/riemann,rhysr/riemann,bwilber/riemann,zamaterian/riemann,pradeepchhetri/riemann,rekhajoshm/riemann,fullcontact/riemann,irudyak/riemann,counsyl/riemann,rhysr/riemann,algernon/riemann,abailly/riemann,shokunin/riemann,jamtur01/riemann,forter/riemann,micrub/riemann,patrox/riemann,lispmeister/riemann,eric/riemann,rekhajoshm/riemann,irudyak/riemann,zamaterian/riemann,yeller/riemann,rhysr/riemann,shokunin/riemann,cswaroop/riemann,timbuchwaldt/riemann,yeller/riemann,robashton/riemann,bg451/riemann,bowlofstew/riemannsubmanio/subman-parserwhitepages/github-changelog !RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfilesSwirrl/grafter,Swirrl/grafterSwirrl/grafter,Swirrl/grafteragilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesmccraigmccraig/onyx-kafka,onyx-platform/onyx-kafkajmmk/javascript-externs-generator,jmmk/javascript-externs-generatornvlled/storemi,nvlled/storemi0/leiningen,0/leiningennberger/riemann,vixns/riemann,aphyr/riemann,shokunin/riemann,Anvil/riemann,moonranger/riemann,eric/riemann,yeller/riemann,aphyr/riemann,cswaroop/riemann,timbuchwaldt/riemann,counsyl/riemann,zamaterian/riemann,alq666/riemann,mirwan/riemann,shokunin/riemann,vixns/riemann,bwilber/riemann,bwilber/riemann,jeanpralo/riemann,mirwan/riemann,pharaujo/riemann,bmhatfield/riemann,forter/riemann,bfritz/riemann,irudyak/riemann,rhysr/riemann,mbuczko/riemann,bfritz/riemann,cswaroop/riemann,pradeepchhetri/riemann,lispmeister/riemann,rekhajoshm/riemann,riemann/riemann,jamtur01/riemann,bmhatfield/riemann,nberger/riemann,rekhajoshm/riemann,robashton/riemann,yeller/riemann,mbuczko/riemann,cswaroop/riemann,lispmeister/riemann,yeller/riemann,patrox/riemann,riemann/riemann,moonranger/riemann,VideoAmp/riemann-1,patrox/riemann,counsyl/riemann,AkihiroSuda/riemann,eric/riemann,zamaterian/riemann,vincentbernat/riemann,rhysr/riemann,forter/riemann,bowlofstew/riemann,jeanpralo/riemann,joerayme/riemann,abailly/riemann,mirwan/riemann,bg451/riemann,vincentbernat/riemann,pyr/riemann,joerayme/riemann,DasAllFolks/riemann,bowlofstew/riemann,pradeepchhetri/riemann,timbuchwaldt/riemann,alq666/riemann,DasAllFolks/riemann,AkihiroSuda/riemann,pharaujo/riemann,patrox/riemann,pyr/riemann,bg451/riemann,forter/riemann,abailly/riemann,irudyak/riemann,shokunin/riemann,VideoAmp/riemann-1,lispmeister/riemann,rhysr/riemann,Anvil/riemann,jamtur01/riemann,robashton/riemann,LubyRuffy/riemann,LubyRuffy/riemann,rekhajoshm/riemannrafd/braid,braidchat/braid,rafd/braid,braidchat/braidsubmanio/subman-parseroakes/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,Immortalin/NightcodeRadicalZephyr/comic-reader,RadicalZephyr/comic-readeroakes/Nightweb,oakes/Nightwebezmiller/whatishistorygreglook/vaultperuukki/nhl-score-apiHughPowell/railway-oriented-programmingnathanielksmith/seathree,nathanielksmith/seathreeonyx-platform/onyx-bookkeeperfuncool/bide,funcool/bidelspector/Clojush,NicMcPhee/Clojush,Vaguery/Clojush,saulshanabrook/Clojush,thelmuth/Clojush,NicMcPhee/Clojush,lspector/Clojush,saulshanabrook/Clojush,thelmuth/Clojush,Vaguery/Clojushnyampass/clojournal,nyampass/clojournalDeraen/saapassbsdev/mdr2nvlled/storemi,nvlled/storemihonza/ansel,honza/ansel,honza/anselstig/tttcljezy023/compojure,Christopher-Bui/compojure,sidcarter/compojure,weavejester/compojureJannis/om-next-kanban-demo,Jannis/om-next-kanban-demotcsavage/cats,OlegTheCat/cats,funcool/cats,mccraigmccraig/cats,alesguzik/cats,yurrriq/catsuxbox/uxbox,studiospring/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxboxdanpersa/instaskipRackSec/desdemonastig/tttcljalvinfrancis/hacker-agentJuholei/my-money,Juholei/my-moneyJannis/custardRadicalZephyr/comic-reader,RadicalZephyr/comic-readerwilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomjkutner/feature-demo,jkutner/feature-demo,immutant/feature-demo,immutant/feature-demo,coopsource/feature-demo,jkutner/feature-demo,immutant/feature-demo,coopsource/feature-demo,FalseProtagonist/graphagora,FalseProtagonist/graphagora,FalseProtagonist/graphagora,coopsource/feature-demooakmac/pretty-print.net,comamitc/pretty-print.net,oakmac/pretty-print.net,oakmac/pretty-print.net,comamitc/pretty-print.netphelanm/chocolatier,alexkehayias/chocolatier,alexkehayias/chocolatierimmutant/immutant,coopsource/immutant,immutant/immutant,coopsource/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,kbaribeau/immutantfuncool/catsfuncool/buddy-sign alvinfrancis/gtfveDR-YangLong/pepa,bevuta/pepa,rosund2/pepa,cswaroop/pepamstang/clojurescript,mstang/clojurescript,mstang/clojurescriptnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositoryring-clojure/ring,ring-clojure/ringRadicalZephyr/comic-reader,RadicalZephyr/comic-readerjafingerhut/useful,flatland/useful,amalloy/usefulholguinj/extracterchrovis/cljamswannodette/mies,fdserr/mies,DjebbZ/mies,DjebbZ/mies,swannodette/mies,whamtet/cljs-server-template,fdserr/miesIdorobots/lambda-blogdamballa/inet.data,damballa/inet.datadjhaskin987/dependable,djhaskin987/degasolv,djhaskin987/degasolv,djhaskin987/degasolvFarmLogs/conduitruedigergad/cli4cljfuncool/buddy-signonyx-platform/onyx-templatemhjort/clj-tutorialsonyx-platform/onyx-templateonyx-platform/onyx-templateDay8/re-frame-template,Day8/re-frame-template,Day8/re-frame-templateleancloud/clojuredocs,leancloud/clojuredocscoopsource/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,coopsource/immutant,coopsource/immutant,kbaribeau/immutantHatnik/hatnik-1,nbeloglazov/hatnikrmoehn/lib-grimoire,clojure-grimoire/lib-grimoirepalletops/leavend4span/evermind,d4span/everminduxbox/uxbox-backend,uxbox/uxbox-backendnchapon/carambarlvh/icecapPance/Pance_blogJannis/cljs-audio-utilsonyx-platform/onyx-templatewhitepages/github-changelogRadicalZephyr/boot-junitbilus/decl-ui,bilus/decl-uivlacs/navigator-archivewhitepages/github-changelognoonian/chatomJuholei/my-money,Juholei/my-moneyMartinSoto/clojure-streamsrm-hull/wireframesring-clojure/ring,ring-clojure/ringc-garcia/madoucrafd/braid,braidchat/braid,rafd/braid,braidchat/braiduxbox/uxbox-backend,uxbox/uxbox-backendonyx-platform/onyx-metricscider-ci/cider-ci_storage,cider-ci/cider-ci_server,cider-ci/cider-ci_server,cider-ci/cider-ci_servercaribou/antlersmilankinen/future-spec-toolsagilecreativity/clojure-walkthroughMastodonC/kixi.eventlog,MastodonC/kixi.eventlogguns/vimclojure,guns/vimclojure,guns/vimclojurewhitepages/github-changelogcircleci/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontendmaryrosecook/islacljhhucn/discuss,hhucn/discussruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdpcalumlean/mr-clojure,mixradio/mr-clojuredvberkel/advent-of-codetatut/clj-chrome-devtools,tatut/clj-chrome-devtoolsRadicalZephyr/comic-reader,RadicalZephyr/comic-readerrafd/braid,rafd/braid,braidchat/braid,braidchat/braidworkfloapp/app-macros,workfloapp/macros,workfloapp/macrostbrooks8/Beehiveonyx-platform/onyx-kafka,mccraigmccraig/onyx-kafkal0st3d/clojure-protobuf,oliyh/clojure-protobuf,flatland/clojure-protobuf,ninjudd/clojure-protobufclyfe/rook,roblally/rook,bmabey/rookThoughtWorksInc/objective8,ThoughtWorksInc/objective8,d-cent/objective8,d-cent/objective8,prisamuel/objective8,d-cent/objective8,prisamuel/objective8,prisamuel/objective8,ThoughtWorksInc/objective8,prisamuel/objective8,ThoughtWorksInc/objective8,d-cent/objective8temochka/tetris-cljs,temochka/tetris-cljsbenedekfazekas/mranderson,benedekfazekas/mrandersonplumatic/fnhouse,Prismatic/fnhouseonyx-platform/onyx-templatefarmdawgnation/dsttclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixtweavejester/compojureonyx-platform/onyx-peer-http-queryonyx-platform/onyx-templatechrovis/cljamonyx-platform/onyx-templateAvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixttotakke/jungererjakubholynet/clj-scotsgamealesguzik/cats,yurrriq/cats,mccraigmccraig/cats,tcsavage/cats,OlegTheCat/cats,funcool/cats v querenker/xclojure,querenker/xclojure,exercism/xclojure,exercism/xclojurejcf/lein-template-staticsiphiuel/luacljRadicalZephyr/comic-reader,RadicalZephyr/comic-readerkbaribeau/immutant,kbaribeau/immutant,coopsource/immutant,coopsource/immutant,immutant/immutant,immutant/immutant,immutant/immutant,immutant/immutant,coopsource/immutant,kbaribeau/immutantlvh/caesiumonyx-platform/onyx-templatedeg/my-muxx-sitesbmabey/rook,roblally/rook,clyfe/rookmixradio/partycraftybones/overtone,mcanthony/overtone,brunchboy/overtone,Widea/overtone,rosejn/overtone,la3lma/overtone,ethancrawford/overtone,chunseoklee/overtone,pje/overtone0/leiningen,0/leiningentotakke/jungererwarreq/calc-cljmgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesmultunus/dashboard-cljonyx-platform/onyx-templatehyPiRion/com.hypirion.iomkremins/padawanonyx-platform/onyx-datomicprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontendonyx-platform/onyx-sqlsimon-katz/nomis-clojure-the-languagefuncool/futuraclojure/test.check,clojure/test.check,clojure/test.checksamccone/moves-serverweavejester/compojureonyx-platform/onyx-templatetobias/rivulet-vertx,tobias/rivulet-vertxSevereOverfl0w/slack-invitefuncool/buddy-core,funcool/buddy-coreifesdjeen/introspectbijanbwb/try-clojurescriptaperiodic/mars-oglerclyfe/twixt,AvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixtdistrict0x/name-bazaar,district0x/name-bazaar,district0x/name-bazaarLeonmanRolls/yetibot.core,devth/yetibot.coregfredericks/4clojure,4clojure/4clojure,grnhse/4clojure,tclamb/4clojure,grnhse/4clojure,4clojure/4clojure,rowhit/4clojure,amcnamara/4clojure,tclamb/4clojure,gfredericks/4clojure,rowhit/4clojure,amcnamara/4clojuresooheon/hangul-utilsGastove/doctopusduelinmarkers/clj-recordfuncool/buddy-core,funcool/buddy-coreonyx-platform/onyx-templategorillalabs/teslaonyx-platform/onyx-metricsruedigergad/cli4cljmrcslws/gorilla-repl,gorillalabs/gorilla-repl,mrcslws/gorilla-repl,deas/gorilla-notebook,JonyEpsilon/gorilla-repl,deas/gorilla-notebook,deas/gorilla-notebook,JonyEpsilon/gorilla-repl,gorillalabs/gorilla-repl,deas/gorilla-notebookroryokane/advent-of-code-solutions,roryokane/advent-of-code-solutionsduelinmarkers/clj-recordt3hmrman/vadasrmoehn/theatralia,u-o/theatraliauxbox/uxbox,studiospring/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxRackSec/desdemonabroadinstitute/firecloud-ui,broadinstitute/firecloud-ui,broadinstitute/firecloud-ui,broadinstitute/firecloud-uimrwizard82d1/test-utils-cljs,mrwizard82d1/test-utils-cljsPance/decktouch,Pance/decktouchpalletops/bakerythobbs/genartlibbertrandk/lexemicrafd/braid,braidchat/braid,braidchat/braid,rafd/braidmaryrosecook/islacljjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiodvberkel/advent-of-code Day8/re-frame,Day8/re-frame,Day8/re-frameAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintmfikes/replete,mfikes/replete,mfikes/replete,mfikes/replete,mfikes/replete,mfikes/repleteRayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontendniwinz/mies,bensu/mies,DjebbZ/mies,pandeiro/jamal,swannodette/mies,fdserr/mies,fdserr/mies,whamtet/cljs-server-template,swannodette/mies,DjebbZ/mies,bensu/mies,niwinz/miesRyanMcG/incise-coreoakes/Nightmodmbutlerw/yada,mbutlerw/yada,mbutlerw/yada,delitescere/yada,juxt/yada,delitescere/yada,juxt/yada,juxt/yada,delitescere/yadastudiospring/uxbox,uxbox/uxbox,uxbox/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxcircleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontendwilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathom,wilkerlucio/pathomRyanMcG/incise-coreorfjackal/territory-bro,orfjackal/territory-bro,orfjackal/territory-broalvinfrancis/gtfvepivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-release,pivotal-cf/cf-rabbitmq-releasewhitepages/github-changelogmgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesduelinmarkers/clj-recordUCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examples,UCL-RITS/pi_examplescryogen-project/cryogentotakke/jungererfuncool/cats,tcsavage/catsonyx-platform/onyx-peer-http-querychristinning/chess,christinning/chessheroku/heroku-buildpack-clojure,heroku/heroku-buildpack-clojure,nvbn/heroku-buildpack-clojure,jkutner/heroku-buildpack-lein,mstine/heroku-buildpack-clojure,cedricpineau/heroku-buildpack-clojure-phantomjs,cloudControl/buildpack-clojureblueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabasearrdem/detritusRackSec/desdemonaAeroNotix/uuuurrrrllll,AeroNotix/uuuurrrrlllldgtized/dotfiles,dgtized/dotfiles,dgtized/dotfileskakao/hbase-region-inspector,kakao/hbase-region-inspector,kakao/hbase-region-inspectorjacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwho,jacobmorzinski/kwhoRadicalZephyr/boot-junitnick-thompson/iss,nick-thompson/iss,nick-thompson/isshashobject/perunoakes/play-clj,the2bears/play-clj,the2bears/play-clj,oakes/play-clj,brycecovert/play-clj,brycecovert/play-cljpuppetlabs/clj-ldapRyanMcG/fixturexonyx-platform/onyx-templatedanielsz/boot,kennyjwilli/boot,crisptrutski/boot,RadicalZephyr/boot,junjiemars/boot,tobias/boot,upgradingdave/boot,kennyjwilli/boot,tobias/boot,ragnard/boot,tailrecursion/boot,kausdev/boot,upgradingdave/boot,danielsz/boot,kausdev/boot,crisptrutski/boot,upgradingdave/boot,kausdev/boot,crisptrutski/boot,ragnard/boot,boot-clj/boot,tobias/boot,bbatsov/boot,RadicalZephyr/boot,junjiemars/boot,junjiemars/boot,ragnard/boot,instilled/boot,danielsz/boot,instilled/bootring-clojure/ring,meowcakes/ring,tchagnon/ring,kirasystems/ring,ieure/ring,ring-clojure/ring,suligap/ring,povloid/ringfuncool/buddy-hashers,funcool/buddy-hashersPance/decktouch,Pance/decktouchrads/kafka.transithhucn/discuss,hhucn/discussstuartsierra/lazytestminasmart/squelchfhofherr/clj-db-utilfuncool/potoklvh/caesiummaryrosecook/islacljnasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,mschmele/Common-Metadata-RepositoryLonoCloud/lein-voomruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdpuxbox/uxbox,uxbox/uxbox,uxbox/uxboxjoshkh/staircase,yochannah/staircase,yochannah/staircase,yochannah/staircase,joshkh/staircase,joshkh/staircaseexpez/superstringlynaghk/c2,lynaghk/c2zalando-stups/friboo,zalando-stups/friboo,zalando-stups/fribootatut/clj-chrome-devtools,tatut/clj-chrome-devtoolsamalloy/useful,flatland/useful,jafingerhut/usefulduelinmarkers/clj-recordMattiNieminen/reableditgaverhae/naughtmq,gaverhae/naughtmqcaribou/antlerscodahale/soy-clj,codahale/soy-cljorionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rules,orionsbelt-battlegrounds/obb-rulesctford/overtunesjaredlll08/MCBotalvinfrancis/hacker-agentrentpath/rp-util-cljinnoq/statuses,mvitz/statusesplayasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdomeLivelyKernel/lively-clojureinnoq/statuses,mvitz/statusesBreezeemr/quiescentjuhovh/guangyincircleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontendnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositorystuartsierra/lazytestmccraigmccraig/onyx,KevinGreene/onyx,ideal-knee/onyx,iperdomo/onyx,dignati/onyx,onyx-platform/onyx,Deraen/onyx,vijaykiran/onyxAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintRadicalZephyr/comic-reader,RadicalZephyr/comic-readerRackSec/desdemonaquerenker/xclojure,querenker/xclojure,exercism/xclojure,exercism/xclojureDay8/re-frame,Day8/re-frame,Day8/re-framejonathanj/advent2016mswift42/lryogthos/devcards-template,bhauman/devcards-templatesimon-katz/nomis-clojure-the-languageonyx-platform/onyx-templateSevereOverfl0w/bukkure,SevereOverfl0w/bukkuresolita/rpi-challengerfuncool/buddy-signTheClimateCorporation/claypooleaesterline/chatappRyanMcG/Cadence,RyanMcG/Cadenceprathamesh-sonpatki/frontend,circleci/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontenddandaka/afterglow,dandaka/afterglow,ryfow/afterglow,brunchboy/afterglow,ryfow/afterglow,brunchboy/afterglow,brunchboy/afterglowalexanderkiel/lens-warehouseTheClimateCorporation/claypoolebertrandk/lexemicyurrriq/cats,OlegTheCat/cats,funcool/cats,tcsavage/cats,mccraigmccraig/cats,alesguzik/catsGastove/doctopusDeraen/less4cljninjudd/eventualbraidchat/braid,rafd/braid,braidchat/braid,rafd/braidRadicalZephyr/comic-reader,RadicalZephyr/comic-readerdriis/exercism,driis/exercism,driis/exercismring-clojure/ring,tchagnon/ring,suligap/ring,ring-clojure/ring,meowcakes/ring,ieure/ring,kirasystems/ring,povloid/ringctford/cljs-bach,ctford/cljs-bach,ctford/leipzig-livefuncool/buddyRadicalZephyr/comic-reader,RadicalZephyr/comic-readernberger/dotfiles,nberger/dotfilesDiUS/pact-jvm,DiUS/pact-jvmPance/todo-repl-webappweavejester/compojurenicokosi/strava-activity-graphsonyx-platform/onyx-templatequile/component-cljs,GetContented/componentcircleci/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontenddylanfprice/stanfordml,dylanfprice/stanfordmlRadicalZephyr/comic-reader,RadicalZephyr/comic-readermgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesDexterminator/clj-templates,Dexterminator/clj-templatesexercism/xclojure,querenker/xclojure,exercism/xclojure,querenker/xclojurenervous-systems/doo,DeLaGuardo/doo,DeLaGuardo/doo,bensu/doo,nervous-systems/doo,bensu/doomaryrosecook/islacljpalletops/lein-pallet-releasechstan/personal-website,chstan/personal-website,chstan/personal-website,chstan/personal-websitekotarak/vimclojure,emezeske/vimclojure,jgrocho/vimclojure,kotarak/vimclojure,emezeske/vimclojure,jgrocho/vimclojure,emezeske/vimclojure,kotarak/vimclojure,jgrocho/vimclojureprepor/catacumba,funcool/catacumba,coopsource/catacumba,prepor/catacumba,funcool/catacumba,funcool/catacumba,mitchelkuijpers/catacumba,coopsource/catacumba,mitchelkuijpers/catacumbadarkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2monthspalfrey/herder,palfrey/herderDonaldKellett/codewars-runner-cli,Codewars/codewars-runner,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,Codewars/codewars-runner-cli,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,Codewars/codewars-runner,Codewars/codewars-runner-cli,DonaldKellett/codewars-runner-cli,OverZealous/codewars-runner-cli,DonaldKellett/codewars-runner-cli,OverZealous/codewars-runner-cli,OverZealous/codewars-runner-cli,lteacher/codewars-runner-cli,DonaldKellett/codewars-runner-cli,Codewars/codewars-runner-cli,lteacher/codewars-runner-cli,Codewars/codewars-runner-cli,DonaldKellett/codewars-runner-cli,Codewars/codewars-runner,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,OverZealous/codewars-runner-cli,DonaldKellett/codewars-runner-cli,OverZealous/codewars-runner-cli,lteacher/codewars-runner-cli,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,DonaldKellett/codewars-runner-cli,lteacher/codewars-runner-cli,OverZealous/codewars-runner-cli,lteacher/codewars-runner-cli,lteacher/codewars-runner-cli,lteacher/codewars-runner-cli,lteacher/codewars-runner-cli,OverZealous/codewars-runner-cli,lteacher/codewars-runner-cli,Codewars/codewars-runner,Codewars/codewars-runner-cli,Codewars/codewars-runner,Codewars/codewars-runner-cli,DonaldKellett/codewars-runner-cli,OverZealous/codewars-runner-cli,DonaldKellett/codewars-runner-cli,lteacher/codewars-runner-cli,OverZealous/codewars-runner-cli,Codewars/codewars-runner-cli,DonaldKellett/codewars-runner-cli,DonaldKellett/codewars-runner-cli,lteacher/codewars-runner-cli,Codewars/codewars-runner-cli,Codewars/codewars-runner-cliRackSec/desdemonaRayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,circleci/frontend,circleci/frontendstuartsierra/cljs-formatter0/leiningen,0/leiningenjrosti/ontrail,jrosti/ontrail,jrosti/ontrail,jrosti/ontrail,jrosti/ontrailalexanderkiel/transit-clj,borovsky/transit-clj,jdunruh/transit-clj,cognitect/transit-cljstatus-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-react,status-im/status-reactw01fe/angelic-hierarchical-planningflyboarder/boot-cljs,boot-clj/boot-cljs,crisptrutski/boot-cljs,jaen/boot-cljs,adzerk-oss/boot-cljsniwinz/apio.cljthobbs/genartlibpalletops/hyde-pallet,palletops/hyde-palletniwinz/pf-stats-api,niwinz/pf-stats-apistuartsierra/lazytestjimrthy/frereth-cp,jimrthy/frereth-cp,jimrthy/frereth-cp,jimrthy/frereth-commonSevereOverfl0w/bukkure,SevereOverfl0w/bukkureJonyEpsilon/algeboliconyx-platform/onyx-metricsweavejester/compojureaaron-santos/robinson,aaron-santos/robinsonlemongrabs/get-here,lemongrabs/get-herePance/decktouch,Pance/decktouchjuxt/edge,juxt/edgembjarland/octet,funcool/octet,mbjarland/octet,funcool/octetruedigergad/cli4cljTheClimateCorporation/claypoolegreglook/vaultcircleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendWolfy87/dotfiles,Olical/dotfiles,Wolfy87/dotfilesbhauman/devcards-templatehhucn/discuss,hhucn/discussakvo/akvo-dash,akvo/akvo-dash,akvo/akvo-lumen,akvo/akvo-lumen,akvo/akvo-dashclojure/data.xml,clojure/data.xmltotakke/jungerertimmc/heim-loggeronyx-platform/onyx-pluginstathissideris/datascript-domhhucn/discuss,hhucn/discussthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexvijaykiran/onyx,dignati/onyx,ideal-knee/onyx,tomasu82/onyx,mccraigmccraig/onyx,iperdomo/onyx,KevinGreene/onyx,intfrr/onyx,onyx-platform/onyx,Deraen/onyxHatnik/icecap,lvh/icecapkn1kn1/overtone-workspace,kn1kn1/overtone-workspace,kn1kn1/overtone-workspace,kn1kn1/overtone-workspace,kn1kn1/overtone-workspaceoskarth/instantetymonline,oskarth/instantetymonline,oskarth/instantetymonlinemixradio/mr-clojure,calumlean/mr-clojureclopack/clopack-nativemfikes/advent-of-cljs0/leiningen,0/leiningenplexus/chestnut,plexus/chestnutchrovis/cljamMichaelBlume/lein-ringyieldbot/flamboMartinSoto/clojure-streamsnasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repository,nasa/Common-Metadata-Repositorycircleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontendlvh/caesiumdiscendum/salava,discendum/salava,discendum/salavahighb/puppetdb,senior/puppetdb,melissa/puppetdb,cprice404/puppetdb,kbrezina/puppetdb,johnduarte/puppetdb,wkalt/puppetdb,senior/puppetdb,ajroetker/puppetdb,nfagerlund/puppetdb,kbarber/puppetdb,kbarber/puppetdb,puppetlabs/puppetdb,kbarber/puppetdb,rbrw/puppetdb,rbrw/puppetdb,shrug/puppetdb,mullr/puppetdb,kbrezina/puppetdb,highb/puppetdb,johnduarte/puppetdb,melissa/puppetdb,grimradical/puppetdb,nfagerlund/puppetdb,mullr/puppetdb,waynr/puppetdb,melissa/puppetdb,puppetlabs/puppetdb,senior/puppetdb,johnduarte/puppetdb,shrug/puppetdb,kbrezina/puppetdb,grimradical/puppetdb,senior/puppetdb,github/puppetlabs-puppetdb,shrug/puppetdb,ajroetker/puppetdb,highb/puppetdb,rbrw/puppetdb,rbrw/puppetdb,waynr/puppetdb,puppetlabs/puppetdb,wkalt/puppetdb,ajroetker/puppetdb,jantman/puppetdb,jantman/puppetdb,johnduarte/puppetdb,github/puppetlabs-puppetdb,kbrezina/puppetdb,grimradical/puppetdb,cprice404/puppetdb,rbrw/puppetdb,kbarber/puppetdb,waynr/puppetdb,puppetlabs/puppetdb,cprice404/puppetdb,waynr/puppetdb,ajroetker/puppetdb,puppetlabs/puppetdb,wkalt/puppetdb,mullr/puppetdb,highb/puppetdb,jantman/puppetdb,mullr/puppetdb,wkalt/puppetdb,shrug/puppetdb,mullr/puppetdb,grimradical/puppetdb,github/puppetlabs-puppetdb,nfagerlund/puppetdbroblally/rook,clyfe/rook,bmabey/rookagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesamalloy/useful,flatland/useful,jafingerhut/usefuluxbox/uxbox,uxbox/uxbox,studiospring/uxbox,uxbox/uxbox,studiospring/uxbox,studiospring/uxboxarthens/cljs38braidchat/braid,braidchat/braid,rafd/braid,rafd/braidfuncool/catacumba,funcool/catacumba,funcool/catacumbayfractal/Midje,bens/Midje,aeriksson/Midje,marick/Midjeiantruslove/spam-and-eggstvanhens/modular,juxt/modular,pleasetrythisathome/modular,pleasetrythisathome/modular,juxt/modularexot/conexp-clj,Lobage/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,exot/conexp-clj,Lobage/conexp-clj,fcatools/conexp-clj,fcatools/conexp-clj,Lobage/conexp-clj,exot/conexp-clj,exot/conexp-clj,fcatools/conexp-clj,Lobage/conexp-clj,fcatools/conexp-cljalvinfrancis/gtfvecircleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontendmikedouglas/MiniJava,mikedouglas/MiniJavaclojure-android/nekofuncool/buddy-core,funcool/buddy-corerill-event-sourcing/rillonyx-platform/onyx-datomiconyx-platform/onyx-templaterafd/braid,rafd/braid,braidchat/braid,braidchat/braidnilenso/koshatbrooks8/Beehivejcf/lein-templatepavel-v-chernykh/golkyroskoh/dakait,verma/dakait,kyroskoh/dakaitruedigergad/cli4cljring-clojure/ring,ring-clojure/ringbsvingen/ambly,omcljs/ambly,domesticmouse/ambly,omcljs/ambly,jobez/ambly,domesticmouse/ambly,bsvingen/ambly,jobez/amblyyanglinz/reddio-next,yanglinz/reddio-next,yanglinz/reddio-nextcarld/bk1onyx-platform/onyx-templateDay8/re-frame-template,Day8/re-frame-template,Day8/re-frame-templatebmabey/rook,roblally/rook,clyfe/rookWilliamParker/clara-rules,cerner/clara-rules,cerner/clara-rules,mrrodriguez/clara-rules,kulkarnipushkar/clara-rules,kulkarnipushkar/clara-rules,kulkarnipushkar/clara-rules,WilliamParker/clara-rules,cerner/clara-rules,WilliamParker/clara-rules,mrrodriguez/clara-rules,mrrodriguez/clara-rulesfuncool/suricattaalexpetrov/kmg,alexpetrov/kmgvbauer/lein-jshintpalletops/leavenAvisoNovate/trackergreglook/vaultgonewest818/defconarrdem/oxcart,arrdem/oxcartdrewr/postal,bo-chen/postalRyanMcG/incise-corecoopsource/feature-demo,FalseProtagonist/graphagora,immutant/feature-demo,coopsource/feature-demo,FalseProtagonist/graphagora,jkutner/feature-demo,immutant/feature-demo,coopsource/feature-demo,immutant/feature-demo,jkutner/feature-demo,FalseProtagonist/graphagora,jkutner/feature-demochrovis/cljam0/leiningen,0/leiningenonyx-platform/onyx-startercider-ci/cider-ci_server,cider-ci/cider-ci_server,cider-ci/cider-ci_server,cider-ci/cider-ci_repositoryjgregors/buddy-auth,rwilson/buddy-auth,shrayasr/buddy-auth,funcool/buddy-authmpietrzak/sqls,sqls/sqlsAkoolla/membership-managerLifeInLights/twyla-opusclojure/test.check,clojure/test.check,clojure/test.checkAvisoNovate/twixt,clyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixtexpez/superstringclyfe/twixt,AvisoNovate/twixt,AvisoNovate/twixt,clyfe/twixt,clyfe/twixt,AvisoNovate/twixtgaverhae/naughtmq,gaverhae/naughtmqcognitect/transit-clj,jdunruh/transit-clj,borovsky/transit-clj,alexanderkiel/transit-cljonyx-platform/onyx-peer-http-queryclyfe/rook,bmabey/rook,roblally/rookAdamFrey/boot-asset-fingerprint,AdamFrey/boot-asset-fingerprintcaribou/antlersonyx-platform/onyx-templaterinconjc/resterfuncool/buddy-signsavelichalex/friends-teach,savelichalex/friends-teach,savelichalex/friends-teach,savelichalex/friends-teachhellonico/next-templatejanherich/dictionatorJannis/copastehhucn/discuss,hhucn/discussRyanMcG/incise-coreclojurecup2014/word-keeperdgopstein/atom-finder,dgopstein/atom-finder,dgopstein/atom-finder,dgopstein/atom-finder,dgopstein/atom-finder,dgopstein/atom-finderiperdomo/onyx,vijaykiran/onyx,Deraen/onyx,mccraigmccraig/onyx,KevinGreene/onyx,intfrr/onyx,dignati/onyx,ideal-knee/onyx,tomasu82/onyx,onyx-platform/onyxframed-data/overseerdakrone/clj-httpprathamesh-sonpatki/frontend,prathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontendplexus/chestnut,plexus/chestnut,jacqt/chestnut,jacqt/chestnutquerenker/xclojure,querenker/xclojure,exercism/xclojure,exercism/xclojureiperdomo/onyx,Deraen/onyx,vijaykiran/onyx,ideal-knee/onyx,dignati/onyx,mccraigmccraig/onyx,KevinGreene/onyx,onyx-platform/onyxMastodonC/kixi.eventlog,MastodonC/kixi.eventlogRyanMcG/incise-coremgrbyte/dot-files,mgrbyte/dot-files,mgrbyte/dot-filesplayasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdome,playasophy/wonderdomepuppetlabs/ezbake,puppetlabs/ezbake,puppetlabs/ezbakefuncool/buddy-signestsauver/suricatta,estsauver/suricatta,funcool/suricattafuncool/futuraroblally/rook,bmabey/rook,clyfe/rookc-garcia/madoucruedigergad/cli4cljonyx-platform/onyx-templateleancloud/leancloud.data.jsonworkfloapp/macros,workfloapp/macros,workfloapp/app-macrosRadicalZephyr/comic-reader,RadicalZephyr/comic-readerrtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/ple,rtoal/polyglot,rtoal/polyglot,rtoal/ple,rtoal/plePhaetec/pogo-cruncher,Phaetec/pogo-cruncher,Phaetec/pogo-cruncherpalletops/lein-pallet-releasestrika/servisne.info,darkofabijan/servisne.info,darkofabijan/servisne.info,strika/servisne.infolymingtonprecision/route-ccrs,lymingtonprecision/route-ccrscraftybones/LightTable,bruno-oliveira/LightTable,craftybones/LightTable,masptj/LightTable,youprofit/LightTable,brabadu/LightTable,hiredgunhouse/LightTable,fdserr/LightTable,kausdev/LightTable,BenjaminVanRyseghem/LightTable,masptj/LightTable,kolya-ay/LightTable,EasonYi/LightTable,ashneo76/LightTable,pkdevbox/LightTable,BenjaminVanRyseghem/LightTable,LightTable/LightTable,windyuuy/LightTable,0x90sled/LightTable,ohAitch/LightTable,hiredgunhouse/LightTable,ohAitch/LightTable,youprofit/LightTable,Bost/LightTable,kolya-ay/LightTable,kenny-evitt/LightTable,cldwalker/LightTable,pkdevbox/LightTable,LightTable/LightTable,ashneo76/LightTable,mrwizard82d1/LightTable,hiredgunhouse/LightTable,nagyistoce/LightTable,mpdatx/LightTable,0x90sled/LightTable,mpdatx/LightTable,windyuuy/LightTable,mpdatx/LightTable,0x90sled/LightTable,ashneo76/LightTable,justintaft/LightTable,BenjaminVanRyseghem/LightTable,rundis/LightTable,kenny-evitt/LightTable,pkdevbox/LightTable,mrwizard82d1/LightTable,kausdev/LightTable,rundis/LightTable,fdserr/LightTable,rundis/LightTable,masptj/LightTable,EasonYi/LightTable,brabadu/LightTable,craftybones/LightTable,kausdev/LightTable,EasonYi/LightTable,mrwizard82d1/LightTable,windyuuy/LightTable,kenny-evitt/LightTable,sbauer322/LightTable,brabadu/LightTable,fdserr/LightTable,LightTable/LightTable,justintaft/LightTable,sbauer322/LightTable,Bost/LightTable,ohAitch/LightTable,sbauer322/LightTable,cldwalker/LightTable,youprofit/LightTable,kolya-ay/LightTable,Bost/LightTable,nagyistoce/LightTable,bruno-oliveira/LightTable,nagyistoce/LightTable,bruno-oliveira/LightTableboxp/puppeteeronyx-platform/onyx-metricsstig/tttcljonyx-platform/onyx-metricsmrwizard82d1/om-tutorialsarrdem/detrituskbaribeau/immutant,coopsource/immutant,coopsource/immutant,immutant/immutant,kbaribeau/immutant,coopsource/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutantkongeor/potooflosell/lambdacd,flosell/lambdacd,flosell/lambdacdJannis/copastecomamitc/clj-beautify,comamitc/clj-beautifydarkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2months,darkrodry/3languages2monthsPance/todo-repl-webappDay8/re-frame,Day8/re-frame,danielcompton/re-frame,chpill/re-frankenstein,martinklepsch/re-frame,jiangts/re-frame,chpill/re-frankenstein,daiyi/re-frame,daiyi/re-frame,daiyi/re-frame,martinklepsch/re-frame,richardharrington/re-frame,martinklepsch/re-frame,yatesco/re-frame,richardharrington/re-frame,danielcompton/re-frame,ducky427/re-frame,Day8/re-frame,chpill/re-frankenstein,cryptonomicon314/pyccoon-cljs-re-frame,danielcompton/re-frame,richardharrington/re-frame,led/re-frame,greywolve/re-frame,johnswanson/re-framejonathanchu/dotfiles,jonathanchu/dotfiles,jonathanchu/dotfilesinnoq/statuses,mvitz/statusesclyfe/rook,roblally/rook,bmabey/rookonyx-platform/onyx-templatemmcgrana/fleetdbu-o/theatralia,rmoehn/theatraliamixradio/mr-maestrooakes/Nightcode,Immortalin/Nightcode,Immortalin/Nightcode,oakes/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcode,bsmr-clojure/Nightcodetisnik/arachnida,tisnik/arachnidamarick/structural-typingring-clojure/ring,ring-clojure/ringjasonrudolph/one-rep-max,jasonrudolph/one-rep-maxtextlab/glossa,textlab/glossa,textlab/glossa,textlab/glossa,textlab/glossaniwinz/pf-stats-api,niwinz/pf-stats-apialbins/vinculum,albins/vinculum,albins/vinculumlazyposse/fnxhlship/cascadeethancrawford/overtone,pje/overtone,la3lma/overtone,craftybones/overtone,chunseoklee/overtone,mcanthony/overtone,Widea/overtone,rosejn/overtone,brunchboy/overtonegreglook/blocks,greglook/blobble,greglook/blobbleajlopez/ClojJSprathamesh-sonpatki/frontend,circleci/frontend,RayRutjes/frontend,circleci/frontend,RayRutjes/frontend,prathamesh-sonpatki/frontend,circleci/frontendchrovis/cljambmabey/rook,clyfe/rook,roblally/rookcaribou/antlersterop/ktra-indexer,terop/ktra-indexer,terop/ktra-indexer,terop/ktra-indexeronyx-platform/onyx-templatebraidchat/braid,braidchat/braid,rafd/braid,rafd/braiddrewr/postal,bo-chen/postalbrianmd/haystacktbeddy/zetawar,Zetawar/zetawar,tbeddy/zetawar,Zetawar/zetawar,tbeddy/zetawar,Zetawar/zetawaronyx-platform/onyx-templaterowhit/kiries,alex-glv/es-pusher,rowhit/kiries,rowhit/kiries,alex-glv/es-pusher,alex-glv/es-pusherRyanMcG/incise-corenilenso/time-tracker,nilenso/time-tracker,nilenso/time-trackeronyx-platform/onyx-templateruedigergad/cli4cljrowhit/kiries,rowhit/kiries,alex-glv/es-pusher,alex-glv/es-pusher,rowhit/kiries,alex-glv/es-pusherruedigergad/cli4cljmanuelp/confunionquile/component-cljsthinktopic/cortex,thinktopic/cortex,thinktopic/cortex,thinktopic/cortexJannis/cljs-audio-utilsscode/sobjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobioRyanMcG/incise-corembjarland/octet,mbjarland/octet,funcool/octet,funcool/octetclojusc/dragonbraintripping/re-view,braintripping/re-viewmatross/matross,matross/matrossdriis/exercism,driis/exercism,driis/exercismaterreno/etcd-clojureastashov/tixi,astashov/tixi,astashov/tixi,astashov/tiximarkwoodhall/clj-ravendbruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdpyogthos/Selmer,lucacervello/Selmerromstad/clj-chess,romstad/clj-chessdylanfprice/stanfordml,dylanfprice/stanfordmlquil/quil,jobez/quil-video,mi-mina/quil,craftybones/quil,pxlpnk/quilagilecreativity/dotfiles,agilecreativity/dotfiles,agilecreativity/dotfilesreagent-project/reagent,reagent-project/reagent,reagent-project/reagentmarick/Midje,bens/Midje,aeriksson/Midje,yfractal/Midjeohpauleez/themisc-garcia/madoucsbsdev/hyphen-keepercoopsource/catacumba,coopsource/catacumba,mitchelkuijpers/catacumba,prepor/catacumba,funcool/catacumba,funcool/catacumba,mitchelkuijpers/catacumba,funcool/catacumba,prepor/catacumbaelastic/runbld,elastic/runbld,elastic/runbld,elastic/runbld,elastic/runbldjunjiemars/clojuredocs,junjiemars/clojuredocs,junjiemars/clojuredocs,zk/clojuredocs,zk/clojuredocs,eivantsov/clojure_docs,zk/clojuredocs,eivantsov/clojure_docsnervous-systems/hildebrandonyx-platform/onyx-templatehhucn/discuss,hhucn/discussjuxt/tick,juxt/tickRadicalZephyr/comic-reader,RadicalZephyr/comic-readerwhitepages/github-changelogcburgmer/buildviz,cburgmer/buildviz,cburgmer/buildviztechnomancy/clojars-web,clojars/clojars-web,ato/clojars-web,tobias/clojars-web,clojars/clojars-web,tobias/clojars-web,technomancy/clojars-web,clojars/clojars-web,nberger/clojars-web,ato/clojars-web,nberger/clojars-web,tobias/clojars-webRadicalZephyr/boot-junitkrwenholz/wort,krwenholz/wortinnoq/statuses,mvitz/statusesNorgat/quil-processing-jsfuncool/buddy-signruedigergad/cli4cljnicokosi/strava-activity-graphsjsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobio,jsa-aerial/aerobiofivethreeone/fivethreeonern,fivethreeone/fivethreeonern,fivethreeone/fivethreeonernrobb1e/robb1e.clj,robb1e/robb1e.clj4ZM/spiracassiomarques/memoria,FundingCircle/memoria,FundingCircle/memoriaDay8/re-frame,Day8/re-frame,Day8/re-frameezmiller/datemonasser/clojurescript-npmgfredericks/goog-integerRackSec/desdemonadylanfprice/stanfordml,dylanfprice/stanfordmlonyx-platform/onyx-pluginstructureddynamics/clj-fstruedigergad/cli4cljmhjort/clj-gatlingc-garcia/madouconyx-platform/onyx-templatemvitz/statuses,innoq/statusesRyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfiles,RyanMcG/dotfileshyPiRion/dotfilessubmanio/subman-parserdimsuz/ecregisterDay8/re-frame,Day8/re-frame,Day8/re-frameu-o/theatralia,rmoehn/theatralialukaszkorecki/cult-leaderonyx-platform/onyx-sqlorfjackal/territory-bro,orfjackal/territory-bro,orfjackal/territory-brohhucn/discuss,hhucn/discussToxicFrog/bltool,hyphz/bltoolborkdude/promesa,funcool/promesaatomix/trinity,jhalterman/figaronbeloglazov/hatnik,Hatnik/hatnik-1blueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabase,blueoceanideas/metabasematsrietdijk/sidequarter-frontendthe-clojure-duo/five-three-one,ProjectFrank/five-three-one,the-clojure-duo/five-three-one,ProjectFrank/five-three-oneterop/ktra-indexer,terop/ktra-indexer,terop/ktra-indexer,terop/ktra-indexerctford/kolmogorov-music,ctford/kolmogorov-musicduelinmarkers/clj-recordDay8/re-frame,Day8/re-frame,Day8/re-framesimon-katz/nomis-clojure-the-languagesamsara/hydrantcontainium/containium,containium/containium,containium/containium,containium/containiumring-clojure/ring,ring-clojure/ring,suligap/ring,kirasystems/ring,siphiuel/ring,tchagnon/ring,liuchang23/ring,orend/ring,meowcakes/ring,povloid/ring,ieure/ringMorgan05180/event-scheduler-9000,Morgan05180/event-scheduler-9000chrovis/cljammswift42/beebster-cljtbrooks8/Beehiveonyx-platform/onyx-sqlvbauer/lein-jshintwiseman/turboshrimp-h264japeriodic/mars-oglerbfontaine/lein-fore-probtbrooks8/Beehiveonyx-platform/onyx-metricsmarkwoodhall/clj-ravendbhlship/cascadedvberkel/advent-of-codemdippery/karmanautMartinSoto/clojure-streamsjcf/lein-templaterentpath/clj-dotenvSnootyMonkey/Falkland-CMSfuzzysource/bogo-clojurejtkDvlp/cljs-workersuxbox/uxbox-backend,uxbox/uxbox-backendbmabey/rook,roblally/rook,clyfe/rookcircleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontendmatthiasn/metrics-clojurepanxia6679/ursula,blueboxgroup/ursula,ddaskal/ursula,andrewrothstein/ursula,nirajdp76/ursula,channus/ursula,jwaibel/ursula,edtubillara/ursula,aldevigi/ursula,wupeiran/ursula,aldevigi/ursula,blueboxgroup/ursula,allomov/ursula,sivakom/ursula,paulczar/ursula,panxia6679/ursula,ryshah/ursula,greghaynes/ursula,j2sol/ursula,pbannister/ursula,zrs233/ursula,pbannister/ursula,ddaskal/ursula,narengan/ursula,fancyhe/ursula,masteinhauser/ursula,persistent-ursula/ursula,knandya/ursula,EricCrosson/ursula,kennjason/ursula,sivakom/ursula,narengan/ursula,EricCrosson/ursula,EricCrosson/ursula,persistent-ursula/ursula,zrs233/ursula,kennjason/ursula,masteinhauser/ursula,channus/ursula,j2sol/ursula,ddaskal/ursula,dlundquist/ursula,lihkin213/ursula,twaldrop/ursula,MaheshIBM/ursula,wupeiran/ursula,twaldrop/ursula,lihkin213/ursula,ryshah/ursula,dlundquist/ursula,channus/ursula,edtubillara/ursula,rongzhus/ursula,greghaynes/ursula,sivakom/ursula,masteinhauser/ursula,wupeiran/ursula,rongzhus/ursula,paulczar/ursula,pgraziano/ursula,aldevigi/ursula,mjbrewer/ursula,kennjason/ursula,rongzhus/ursula,msambol/ursula,paulczar/ursula,channus/ursula,nirajdp76/ursula,nirajdp76/ursula,jwaibel/ursula,davidcusatis/ursula,fancyhe/ursula,MaheshIBM/ursula,nirajdp76/ursula,narengan/ursula,jwaibel/ursula,allomov/ursula,j2sol/ursula,davidcusatis/ursula,edtubillara/ursula,twaldrop/ursula,twaldrop/ursula,mjbrewer/ursula,zrs233/ursula,ddaskal/ursula,dlundquist/ursula,msambol/ursula,knandya/ursula,panxia6679/ursula,edtubillara/ursula,persistent-ursula/ursula,j2sol/ursula,rongzhus/ursula,andrewrothstein/ursula,pbannister/ursula,mjbrewer/ursula,ryshah/ursula,wupeiran/ursula,greghaynes/ursula,persistent-ursula/ursula,pgraziano/ursula,lihkin213/ursula,MaheshIBM/ursula,blueboxgroup/ursula,davidcusatis/ursula,blueboxgroup/ursula,andrewrothstein/ursula,pgraziano/ursula,narengan/ursula,zrs233/ursula,panxia6679/ursula,ryshah/ursula,masteinhauser/ursula,lihkin213/ursula,fancyhe/ursula,pgraziano/ursula,fancyhe/ursula,allomov/ursula,knandya/ursula,knandya/ursula,msambol/ursulaghaskins/obcc,ghaskins/chaintool,ghaskins/chaintool,ghaskins/obccwkf/aviary,wkf/aviaryvlacs/navigator-archiveRadicalZephyr/http-serverDeraen/saapasAvisoNovate/trackercontainium/containium,containium/containium,containium/containium,containium/containiumbrentonashworth/lein-difftestmfikes/clik-clak-joemaryrosecook/islacljmarick/structural-typinghenrygarner/darknet-appDay8/re-frame-traceDeraen/less4cljGastove/doctopusImmortalin/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcode,oakes/Nightcode,oakes/Nightcode,bsmr-clojure/Nightcode,Immortalin/Nightcode,bsmr-clojure/Nightcodemdippery/whitmanprojectodd/wunderboss-release,projectodd/wunderboss,projectodd/wunderboss-release,projectodd/wunderboss-release,projectodd/wunderboss,projectodd/wunderbossmfikes/planck,mfikes/planck,mfikes/planck,mfikes/planck,mfikes/planck,mfikes/planckmetosin/reitit,metosin/reitit,metosin/reititmjamesruggiero/swanson,mjamesruggiero/swanson,mjamesruggiero/swansonctford/kolmogorov-music,ctford/kolmogorov-musiccimi/PathFinder,Unravelled/PathFinder,gregsexton/PathFinder,gregsexton/PathFinder,cimi/PathFinder,robochuck84/PathFinder,robochuck84/PathFinder,Unravelled/PathFinderjsyrjala/turbulent-snifflemschaef/metlogQuantisan/docker-clojurec-garcia/madoucalphagov/blinkenezy023/compojure,Christopher-Bui/compojure,weavejester/compojure,sidcarter/compojurekulkarnipushkar/clara-rules,WilliamParker/clara-rules,kulkarnipushkar/clara-rules,cerner/clara-rules,kulkarnipushkar/clara-rules,cerner/clara-rules,mrrodriguez/clara-rules,cerner/clara-rules,WilliamParker/clara-rules,mrrodriguez/clara-rules,mrrodriguez/clara-rules,WilliamParker/clara-rulesonyx-platform/onyx-bookkeeperRadicalZephyr/ev3javaRyanMcG/fixturexmvitz/statuses,innoq/statusesonyx-platform/onyx-templateTheClimateCorporation/claypoolecaribou/antlerskostafey/clucyjhalterman/figaro,atomix/trinityMastodonC/kixi.hecuba.weatherbbatsov/reply,trptcolin/reply,bbatsov/reply,trptcolin/replyoliyh/clojure-protobuf,l0st3d/clojure-protobuf,ninjudd/clojure-protobuf,flatland/clojure-protobufonyx-platform/onyx-peer-http-query0/leiningen,0/leiningencontainium/containium,containium/containium,containium/containium,containium/containiumathos/Pinpointeramalloy/useful,jafingerhut/useful,flatland/usefulonyx-platform/onyx-datomicMattiNieminen/reableditff-/markikifdserr/seventy-one,gfredericks/seventy-onealphagov/blinkenbakpakin/ezglibonyx-platform/onyx-templategsnewmark/beatha,gsnewmark/beathaonyx-platform/onyx-templateruedigergad/cli4cljonyx-platform/onyx-templatedeg/my-muxx-sitesuxbox/uxbox,uxbox/uxbox,uxbox/uxboxKeepSafe/measurefuncool/potokruedigergad/cli4cljnick-thompson/iss,nick-thompson/iss,nick-thompson/issUberi/medusa,mozilla/medusa,Uberi/medusa,mozilla/medusaonyx-platform/onyx-templatefuncool/beicon,funcool/beiconmhjort/clj-gatlingruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdp,ruedigergad/dsbdpmfikes/planck,slipset/planck,mfikes/planck,mfikes/planck,mnespor/planck,slipset/planck,mnespor/planck,mnespor/planck,ericstewart/planck,mfikes/planck,mfikes/planck,mfikes/planck,ericstewart/planck,slipset/planck,ericstewart/planck,slipset/planck,slipset/planckexercism/xclojure,exercism/xclojure,querenker/xclojure,querenker/xclojuremhluongo/shale,cardforcoin/shale,cardforcoin/shale,mhluongo/shaledakrone/clj-http,lamuria/clj-http,clyfe/clj-http,loganmhb/clj-http,nathanielksmith/clj-http,rplevy/clj-http,nblumoe/clj-http,mtkp/clj-http,uswitch/clj-http,mojotech/clj-http,matthiasn/clj-http,ducky427/clj-http,mdaley/clj-httpezy023/compojure,sidcarter/compojure,weavejester/compojuremrwizard82d1/modern-cljs-02submanio/subman-parseronyx-platform/onyx-templateonyx-platform/onyx-sqlonyx-platform/onyx-templateotto-de/tesla-httpkitonyx-platform/onyx-datomiccprice404/puppetserver,rlinehan/puppetserver,puppetlabs/puppet-server,waynr/puppetserver,rlinehan/puppetserver,camlow325/puppet-server,kylog/puppet-server,waynr/puppet-server,rlinehan/puppetserver,jeffmccune/puppet-server,rlinehan/puppetserver,shrug/puppet-server,er0ck/puppetserver,dankreek/puppet-server,ahpook/puppet-server,stahnma/puppet-server,erikPrime/puppetserver,erikPrime/puppet-server,erikPrime/puppet-server,kylog/puppet-server,cprice404/puppet-server,rlinehan/puppet-server,jeffmccune/puppet-server,briancain/puppet-server,kylog/puppet-server,shrug/puppet-server,shrug/puppet-server,cgvarela/puppet-server,shrug/puppet-server,cgvarela/puppet-server,waynr/puppet-server,camlow325/puppetserver,ahpook/puppet-server,stahnma/puppet-server,erikPrime/puppetserver,dankreek/puppet-server,er0ck/puppetserver,dankreek/puppet-server,fpringvaldsen/puppet-server,cprice404/puppetserver,erikPrime/puppetserver,camlow325/puppetserver,erikPrime/puppet-server,er0ck/puppetserver,cprice404/puppet-server,waynr/puppetserver,camlow325/puppet-server,cgvarela/puppet-server,puppetlabs/puppetserver,waynr/puppet-server,camlow325/puppet-server,puppetlabs/puppetserver,fpringvaldsen/puppet-server,puppetlabs/puppetserver,ahpook/puppet-server,stahnma/puppet-server,briancain/puppet-server,camlow325/puppetserver,cprice404/puppet-server,briancain/puppet-server,cprice404/puppetserver,er0ck/puppetserver,rlinehan/puppet-server,puppetlabs/puppet-server,rlinehan/puppet-server,fpringvaldsen/puppet-server,camlow325/puppetserver,puppetlabs/puppet-server,jeffmccune/puppet-server,puppetlabs/puppetserver,waynr/puppetserverjarcane/merkkiarmincerf/clojure-app-test,juxt/edge,armincerf/clojure-app-test,juxt/edge�`~<$s���\ � 4`�@��0ALBB'Tp� `�pHp� d�@|�@/�� d� @���DP� ���4A<`�L�@�A Df|� <�@�WX0�(Q� 8� D�2h��t` �8��X�&�0�@�T�AP�Ad�F�@���lp�� ��0L��xP�@p� @p�,p�Tp�L�� A4�<��`�4H�DaAT��Al��t0��0ap���8 �xAn T��P\�T�',��#\�Tp@D��4PA @pA+)P��d�@ h�����d�@l�A|��x��H�tA 4�A \��!L0�LP�TP�X ApP�T�\p����P�N��Pp� �p�����H��Wd�� T�p0�,@��<��A@�A,  x��@��\P�� DPAl�elpB!���q��0�+tpBT`����P �TpAT��TA` D�@P�$q� �A#��L�� |��L0�`����A`p�,A<��C|�A<�A���$�B,p%DA.d@(�@� T�4�p�TBA�lp |h��h  T�p0�<���PIL��l� L A ( �L�A'�� ��� H0�� �tp]�A<��9�`�8�� 1A 4B(�� 8��(�D ��T`� �h�L� P���1��5 4TZ$. e t stse iesn liarmoalfiura pa, Rer lal maets beilupntac merofroun p1.datadihi bnoicidoobup hecattcrisnclywaabniit s cutanedritoceprchhoraenclat torthonlelocovegeasney ind redes forto denve terin s aioned come. leiratorton andwitcheproat rely realogentre it perce de coclowarut sege Add to ing the mentUse Fix testnamempleatio of angetionableringMakejure for depenfrom and the y to when snaps testning d to ctionrade s forging ting ojureUpdate Clojure dependPrepare functionase cyclnext rel versionvert bachot vers etsaidnrcolpum f.g-hywbvAkUSx1R0Cj:3P,FT257ILM/6ED`q8(O49')JK"HNV>_BGWz@X;��Y�ɰ�:� vZ��m����ٻ~l@O�`�VWO��Y���~��; W;�ά/ 3�*�= ���~�Y��? �s­ì��ػ�Z����d~79�0����>t&=A~2���ɰ�����׽ʻ~���j�����:����D�~!t��� Y�û�2��Q��Os�\��̽#�~�;RZ;�ΰ����� �~��;� ^�0��Z����:��� ���~���; V���A�~y��$T�(R*�~�����| C�~U��� �Ty�� MYO�S��X�:����~­ì�Ș� oZ� <�~G�Y�E�u�hP��J�~�������Ÿ�>�~� ���xsr����U��~��X�� � s�RTX Sx��LrYj��M�Yö��d~�79��������έ��Yj�I���ó�`�V W���PVK�~����� <�~<���JƬj������ M����έ���ȶ�]ӹ�ȸry��~e8�Q�Ϲ��" M� M�ڶ]�B>*H�Y_[K�����Y����YƭoKH�­��UV�j��-4��K���ŷ��W ]�)�7�<��ɸ���ΰİ�����������Y���� :C4T������D���3�����߬��ıHI�H~G�Y�L�]_�~�R*�:����� �������ȶ�]�=�)��ͶUY_y��~�������O��������/�c��J�$�� ��J��U ��K3������ج��XV�� �~���Z����3�a"R~����N� �J� � 笰��W��ζì�N»�H�������R�~��É��!t%�ƻ~��&W�@�Tj�8�� ��~�R*��Jƀ�ɰ���~U���fa���S¯��b��*����˿����Ϭ~S�:��(ƾ !Vζ�Y��vZ��!�ζ�~H�ɮF�a�%��ɮF�a`sZ�qI��[����J�}i����ƉHc��~ζì�N��R�I��~�3��B�TBU Mȶ�]�/��p�y��~ͶN�����8���~���(R*���X�ı�� �����:�����b���U� � +�9L~�?����X�" @Oi�������'Y3(Rbh��AS�l�+(�K�=���� ���i�L�&�������~�3�� MI�m�D��V��]Fx��9�b �`����Ų�Y����N�&������;�� 0�������Z;p���٬N�V� =A�`�W���~��g���ñ��. M�QSfa��p����ڻ��t��� O� ��� Y)��!��~���*�U�{�9C�O �MV�����ɰ�~������������!�~��ЬFOX����Z��J����&�"���S�����g=�I'Y3�E����Nm����P�@�Y@�U��Q E���FO&��:UvKH�Y��m���Y�ɸ���`Y9U�<~ ���ɰ���C��^��~=���&�;�!�I�m�����YC!�Y�/SPt3I?�QW��~�3���R��,VO� �� M~��� S�Y�����������~e My�x� �����X�~+X 5����Os��~79��!����W��f�V��R��լ�!�~��X�NT%��Ͷ����{�R*��<����)�SbZ��/W�~���E��Z���j����� �U[���������p�f��vZ�����M��~QS?��F�U7E��N¬MP-y�&��*�A�Y[���˿����Ϭ~���faW ]l�+:���� �|��*I�`�V�FA���J� �!VZ�٭UUQլ�Wı�¬�" �3a�3����~���2����?��g��'C��Y�2����?��g" @O�~�����Z� <�۬N�V� =�U��~ MI�mU^��j��ΰ�R2�� M~��" ƶ �@��öɬ��~����Y[��2����~�3�� M��ڬ�ȶ�]ȱ��� ���_y��~�rM���~U9� �����;���^�ʬ)�� M�~��g�=�=)%�b�� ���KmO�UY�ɮE�$%�R+�� ���Q�~ѹï����:� vi:Uƻ~����Jƀj��˹�T���~Z�0�N���N0���Y��F�­H/�~�R*�F� ï���Y��ſblu5�Zn��������X���*�����ǯ�.i"�~���fa� ĀUX�b�����Y[E¬�û~�����+�Mz���~2�Y[/�.X S�������W��A��~����vZ��Yj��QSf�]�U�ȶ�]� Tj���L�Y_Gλ��˿����Ϭ~�P?�T�๭�� ���E�u�PY���QY[��bH��^� W�?� �����>���]P�Tñ�:��~�JƬ�ɸN�����}�F��� ��v�W����� ��̬��p��������Hkj�x����@���~��!9�j��X�����欭�3�a"���U��2�H(�K��!tW�g`�V�X������<~���­���7E��$%�FO&���j��8����OXU����_P��a̽н�ڶ]��Y/�uY[Gά���X���?��R*�!t����1.�iM����Y���~�;RZ;�ΰ����� �~4��Ɲ�&��r(��-�:�f����~<9���D€�9M�Zx�����QSfJ~�ɰ�Y�C��^�ܻ~���c�%��~Ow[U^�j�������"���S�~�Ð�EX��C,���3���JƬ �!V$�Q �YX������ı� ��؇�8�� :���*�F�U�~cs�N���~����Yİ����Jd~�R*�$@�*x��Lr�~S¬��vZVQSfa�~����ɭ��$%�R��~. M�QSfa|��*���G��F�Uh����H�����Ϭ� ��v!t��:H�����W���~ s�ɰ�Y�C��^�ֻ~�H��2���k�QSfa�r9��~!t��<�Gλ~)wX 8��� ����Y�P���/�Ɣ��v���� Y_���<�<�~���.�Ș��Ŭ1M; �J�-�J�`�V�Y�/smŷ��~GR�K�W�� v[�] MY�GR�K���J�&W�@?����W��Yj�"H����YKmFVj���һGR�Kn�� AY��T��T UXɬ MY����� bı����UXɿ MYƭT_���� ����Y�~���J ���Y[����@���Z3��������hX�����~Z��T �­��Y�*ȭ C�~O�Ʊ�����PEc�9Y�ƻ��x��bc����/sPE$�`��~���Y��DM�R���� ��/�u~!t����>��ɽ!t�ưQ�~�c�M��ɰ��������έ�������~��|�P�+ı��ȶ�]ڹ����MY�Г�y��~ζì�NQSE��R��x�?�L~�����fa������:%��ۯ�<��³�~��S¬'���Bɺ��ɸ��Rbɺ�M���˿����Ϭ������������������������Ȭ�������������x��������������Z� ��M��ÿU^��(R*;/��~ �� !V|����~����R*�'�Cm�~�.W���P[Q��N��~������$%�ZW�����������~�ɰ���<��YhC=S�~��:��Y_Gλ~�E���tì ��~�Nì!�ƬD�Ɲ���~�U8��Y;N��������ɰ�~���fa��E��0�th ��ȶ�]�p�ͱ�G_y��~<9�X �j������Sլ­�|��*����~�ɰ�����;�=Sy�)�� 0��~������W����Y" �����j�;N�������O�Z��~�ɰ���н䬿:O���~<9TZx�S�",��ȶ�]�}_ް�Y_y��~qx���R����,�ƭ�u�q�~!t��� V$��ö ��O!ϯ­Hϻ~��������ĺ�����~R���:���X�2��3�~ %��L�ɐ��u����~$%���I��<9��~��vZ"Z�����; �ȶ�]����� ^=��]���������2����Y�_i�ɻ���V�xPE}�­�:9d�jC(�)wW�Z�)�~�3����Ĭ�E�TW๱W�~�������$%:����� �L � KU����!���|�P��~����UZ������,�ƭ�u�qx��V����Yl�3��ɰ���,ƻ�?�i���V���Y[N������i���<�� �kZ���E&�������9���n��:%�Y�+Q��� .%�MY ��������X��~�!9�0�&��o��n��L�~�3�����K�<����eFı ����_R��F����-����!V��P�T �*M��R����W������Ϭ����>ؼ���� ������䰲��ְ��張ռ��ղ���̼�ʲ�>װ�����L+�J��LH��>��ȱ�S������ϬѰ�ݽ�ڵ�FST�ʭ�A���������ֲ���ü���̲���ем��������ɽ�S���ú�c�ı��>���Ϭ趯���?�M1���������>֭����̵м伵���ʲ�X̵��е����ζ���?�M1�J�� ]X-�xw�>Q��*ƻ~)�7�{����G�:D��� ��v)�����}�iM���?�TKm����Sb���$����g�j���J�y��#��4pI����{Z�F��@�FV����W>TO������|M��b9���{�P��K���A����R�� Y�Os�����JƬj�" u���A�~$%�R [N�&��:kYq~���W���� P�����9��xr����i;� O�W��5��/��I�m����?��O�=�ƻ ]��P��?��W�g��:Uv�2������Y3�)¬�E��ڶ]�� [�FV�Q�������{�������m�@.Zn�$�9�~��.E��������=�:���c����P�Ϭ��\������4p�XɀX�.[�̻~��g����= ��3�� M~���Ȭ/�X���~-�칺H�?-�[��ȹ�?���UHƬU�Y�����Gά�`spk��vXB�0�b��$���ɭ��孵ܼ�����ռ�����䲲�̰����c��$%;p@$���P�TO������|O��Y3I,,:N»���TP��a�������������~�79��Y��ï���"RY�N���ȱ�S������Ϭų�WT�������ܰ�հ�������̭�����м�����в����ְ���8±����H�ο���]��^;�=�QSf��&���G����3��QSf�]��)»���" VF�W� ö ��/ ƹ����c�~X&0�b��vZ:@E}U9� ����<�&U��V��&Z=����ίL�/�N��J�VP��a��nMRd�jC��AV �����[S¨��'P�ޭM��9�������%�M��S�I,���G��� 9TZx��VS" �U���ȱ�S������Ϭ�=���JC���������а��ü�>���õ���խ�խ����ֵ��ֵ��öɽ����W�\�X��W�?�P�-��X 8�Y�:���À����n����Z����d�;��YX.ϯO��l�+>�Ų�=vP��a����[̽#׻������ ���j��� � M�Ų�=vP��a����[̽#��������ԻȰ]H`YB���BU�b$%��'Y�nH�&��Y�R��R�­�R��3� ��ɰ�U��$%� M�R�~�O!��­ì���~���Or� "�Q�ŴE�}� ���h�T�����~)�[W�v�,��W๱sj�n๱W�~Uέ�Y[ƭ�.���������n���@.������r� o)��p��H n๱W������Vc��~ٶ��άR�������������¬鰼�Ȯp�YWP Y9Y���R:,R����8�� ��9~�Y[Z%��YU[%�M�FĐ��:������C�P?�h;+�y� ��X�N�����e8�Q����W5�h�����E�H�DKm)�N�Q��3�>���"W ����Ķ����� ��~�R��,�W��\���[WMR"HkV@����G��~���'Y���T)���~� �������<�@��I�m�`��� o�����ö�Y��Y[ ���[�������:����D��~߲þ� �߮EA�-1���W&�ϻ���1������½M 8��y��c���������y��2���Ϭ�ˬ��~�3��E�X�������|��*�X�`�V��VG�=�%�Q� ]H%C��/�X�UĶ*W��L��Z����dغl] �J9��t6Y�6���@�=T����~�;M=�<�~�I�mBU�Y�ɰ��c:9[��ӻ��ɰ�xwX �f������H �~� � �:��Mι��t �U�P��Ų&��������;��껻�'YWP��Yc�t���ְ�ּ������׭�����������ֲ���̵��~ <Z�Q1�0�VU����M=��j�x���*� ɻ�������R���2����ٶ�VW���v��!�h#л����ٱ����xw s+���*��[y��]�~�����E�H[�N� �F���� s�3� o�MR� ���N��ڶ]��HH���~๶���Y[q��Q��Y[W�M�" �M�:��������M��Yj���VE��~ �������E��@2��lA����+r n��Fı ���� ���~����'C�6`<��* o�>��[ C�]���M�Ā� C"�}G� � C( �~�DVZ��!��P��2�H�&W�@�TU��V� M؇�xw[W�X�KU�����ЬFOX[�uHh�Ȭ E���$%��'�����[c�$�S¬�)%��G���v�Z�I����{��X����Z��,ƭ�u�Gλݳ��R��Y_XPN���X�~ sS¬�=�������A��Y�ư}[ΰİ����Z����d��3���E��]@���ĵ�ϑ\������x�S�x� � ��O� ��>����R�f�­F�� ���� �P�[��XP��a�c ���OX��c���9Tj�x��� ]� �F��QSfb�Tlέ���������W�oi�����٨�FĐ�*� �Ų�=vP��a����[̽#׻�[����ٹAS��ɻ��¯���ƿΰ�i��K��E�TP��a�[�ɰ��ۯ27�M�]��[S���y�~�!���.r�T��U��~�[� ��Yj��8vc`�Vi��Ǹ���k��@��#սʻ~/�u��pXi" �U��G�x��#�̿����#�" M�[̽ս̿�������ԉ�,���!9�Ų�=vP��a����[̽#п�������Ի�Z����d�Z����d�[��a(�ZWMR���̽׽�Ϭ��V��U �i+�d�ȱ�S������Ϭ�%8�Y�=k���䰭������ղ�̼�е�ײõ������A��������D���CZ����d�����D���U��JW��ɸ���b$%:����� Z���^��/���|M���R;��VZC=��H���~��������M��ɰ��2 T�\�T_@���ĵ��ӱ�����̻~U9� � !V���V���`Yy����Vy��2����{�T�\�TP��a(Ɣ6TtN���p��̬��^WMRZ��c�Lr��ڶ!��~ �^b���[N0��J�Q�H���Ǹ��@���ĵ��ɰ��� ��!9�W�gս̽ʻ� ������b���3�Fvk��U�� ]�,�AY���}jD{�\�TXG ����� ����Th�k��M��ζ�Y������D�(N�ƿZ�P��n�YOW�R�4��U ��$@�*��Wj���1.U��V��1�~�\�T��ɸ��%�Y#��Ь�"���U��~_[��� " M�dz��I���J TC�P��a��Z�U�烁�������f��TR�ݴ���ϔ����3��OJ&�H���V���b��ȱ�S������ϬȮ��=�� ��ܼʰ�ò���հռ����0���������հ����Э�����=����X�~�[N�V0��Y�N0��@EQ��e������̽ܽ#��3��P�öHC�q:%����;�&&W�@�T��)*���¬ƭ�Y��BFv�� M��VU�{&W��o�������U�����p�笥�&V)�JƐ����������_ N�Y�[Q�U�{[U^B; �J�ƭ�Y��L_���ȳ�ƭ��ȱ�S������ϬȮ��=�� ��ܼʰ�ò���հռ����0���������հ����Э�����=����XW�X��r?�Xį������� M~�Z� �&��� ��vO�Vj����D�^G� xX�W������j�����XV����TW������ ]BU��i���V�=9��k�ơN0���C�:2���~� b <[���_}i�q_Q�ݳ��z8���n�M�`�V!ö�bK���/� �,VX�����Y[��]��������)¬�[��V���=)%���{_�?���*� �!V�ϰ��=A�߬ޭ�VͶw��U�����9��"H�y��i +�~��#ս̣F��Q�+�Mz�.�ƯhX������#�(Z��������Z����d� �;��Y_?�P��a������Z����d~����!lɱb X� ]�YKmW�)�N�Q��3����;�VSx��V�i��J -~�,M=��uHJ���ȮSb[�ɮFVKZH?A�ŷN¬�?P w[:�bıc�VS�~϶<�<�&-Vlu�TZ�X�(����Z����d�Z����d~���'�hB������S�5��@WV���UY[�� �MY[U�9Q�~/�uY[XĬ�� .����##̬!�����j��#ս̬ W���P��Z����d~��g�W�X������~�P�@S�F�TZ+���E��Ų�=vP��a����[̽#л���F�� ���ܻڶ]L�ɬX.�{�XĬX�>F���~��G�Y���F���O� � ���~�\���hN�����͓�ջǸ�����#н�#н��ӱ��������\���:%�M���&�Z��W ]�\�ThO?��;N��2��c��#׽��~c�UHJ*`�V�?ɬ���\�������3��B���'C4��XYƬ�E� �^U��� ��MYO� ��E�3" M����CJVN��ޭ S"��WY1U�Y���Fı ���� ������O����*����ÿ�?P�ϬN0��G�I�H�O�Ub �UZ��S>b[O�S�[� ��Ѷ�W$%�R��Iÿ�?P3(��Xc�3�a>i�Y����Sb1�6���}K3����Zz���'Y�C� N�Y�Y[E���$%�R��_��*�����W����� �|1U�Y���Fı ���� ������'Y6T�0�YK��1U�Y_��F�UY���9Y����� �����J�`YFı ���� �滼�H d��/�X����������(���ı� Yƭ���������������Y)�i�N0��Gλ��gYƭ���ȱ�S������Ϭ�F�� ����õ���������׼���ײ��䰼�0ܭ��ܼ��öý��� ]�JXhM��b%û��\�Te��Gμ���e��Gμ�[�̽׽̻~X�YW๱WVZ����:�gغl]W�X��-�_*L������p�[A�`@����'Y6����JƀZ��ı�¬6���$���H��;���!��جXW�b�H������ߴ���p��߽��(��]K3Y�6�����[��]Ͷ��Lr��]��1����۾9��ýc�@����۴���p���P�c�Lr��˹���K�Y[�� o������Y�C�R���ӱ�N��b�������6Y��z�����Ā�����ꓮE��2�À[���6Y�V߮E��2�����=U��@���@�U�߬f/K=�߮E��2�����@�U��@���=U�߽� �� �ȭO���R�����ꬿ���ꬰ��� b[�?��JX-t�ab�� �����G���+d��X�����g��J�๶������ ]�0��� M~-�������i(������R/�Y�\���V�?^I��� ����Q�ӹ���H�سX��­� `���ů�Y0��YQ�ӹ���H�سXɓ �^Y�� ���� ���Q�ӹ���H�سXɬ&W��o�Ķ+Y �^U�~=�K���[���3н�̻ ]�:O��h�\�����/��s)�� o�:O�h��,%��:UvKm�D�����,���!t�D��V9��(�:O�>~�ưQYE��%�ƻ��溬���[���N”M�V������Yy�����!Sin๱W���[������T�/s[�!�Y� ����/�8vK�/s3I�H�K�T0ι:�����TK���R�ư}iI/­���n�M�I�� �V ��� ]O �M�Y���v���̽#�nMR(,���!9�����"g������^n Ā ��P���~e��=��r"���_i|�l�+>�:O�Z;N�~��H�?-�[��$%;H��J�� ]�O�U��՘|?�W�vj�����@�K|?�+r������3�����n��LxrI��[���0��ίL��[ ���|�Fvf/K=x��X�9�>�g������Y��XS����>�� �iMj��L�J��ٶ�V�k�Os� 5[F� KmGRYݳ���k���3��W๱WY[UG�wı����� ��n�X� ��pX��� .?�����R��,��~��� ��[����0���������o_�������U����A�����V:���~��g��Q���Y��$%�h� Ǹ��춱[���*�+�Mz[luoX �j��O��K�Ȯ�M:��V���[H*"H���Y�� D­P��Z�! !�Uti�X ���g�Q1������/sh�" лݳ��DS����iM�Y_­ì����jC(������T_���Zx����hU�{� �����F(�z�Yc���M� ��Ŭ���"���UYWoh��Z�۶�F��F� �Y���1����۾9��ýc� C���=����=��ί���Z����F�����Q�%��y��W��= CW�����������=ͶX�<���=�%���%���%��ŷ��x������� MY_��Z����3�Yk��:UvKm2�H>�������\����e8�Qö������ ���G� I�m�iMWA�P`@����V�� ���~O� � �Z:O���0�� Z������v��W๱W~OW��?ɓP�@��G�i:jC�,�� ����OP�}_? Y�~O43����nO�VGR�����" έ�Z;��Y_Sƶ���/������ �6Y P��Sƶ�Kp&�����vin�V@�L����UO��3�rI��%p��L�����hӱW��ɻ~�����{�N�&�� �����J�Y S�j�;� ����-K3:����'���� ���j�nA��ӱW���ڶ]��ڬX-��Lo[X�" M�~�*Ʊ���!S[����U� ]W�FAY[��V�+Q������Z��E���� $%$���� p�TW�3^>~X�hHu�3�Fvp�~��.���Kmluo���Y0%����l@O����'Y3�c���9T���< ��g��Or�S�����h0%���ð~��g���=�K����$�^��ӱ��l�M��j�:�!�y��������U`�VW ]!�VL��{��Y[�� v_�QSfb�����Z����d�����n���9J�X�������\�TJ��y��$%�ίh[�ʻ�Z����d��\�TJ��L�ɸ�Z��L��P��a�̽�#̿ ������<��*x��t�Te��!3L�Z����d���F��#̻ܽ��\�TJ��y��$%�ίh[�ջ�Z����d��N{�\�TZ�س���#�̻�jC���#ܽ̿��#��jC(���a�P��a����[̽#տ�������Ի�Z����d�c����#н�#н���M�:����D�Y� �XPN���~�Փ���W���\���4��w���M��ؐX�N��~B��HW����E�^i(��.P��a̽#̻�e�R��,V����_�̽#䬿�̽#�绡[��a������3��B���ڶ]X�` !V�Z���Y_X��X����#�" M���WMR���.P��a�#ս̬����a�Ͷ���"���_[̽��ʻ�Z�S�XPN��^��̽ս̿��������绡ix� � O��ɬ̽��ޭ�N�y� Y�TX����� ]!�V<9T�Y_>9J�ZGί-V�� ���/�O� ��������T W�~��k�ƬR�XģF�����G�w����E�Q�\���Z����d��\�TGο�1��Gο�1.[�н�սʻ��X����y��#׽̻ڶ]���S�Y[ �nMRd� ��v? ���? ��H�?-�Z��U9� X����a����X�����������̻̽̽̽��'`�N�Y�Y[O�S�[����=��/s_XPN���z�_Gί��n�g�~X�2���Y[$%�R�ڶ]W๱s[ �x�� ��؇��|�PL���W�W�g��TW�g��P�T���ŷN¬���}�D�ƭ�Y�'MI��U�����'�����@�F�����)" �*�JX�ϻ��*��1���9Ϭ� ��1.�P�����*��I�W���JuZ��I�=�S>> ���NPo[��*�)��x� ���E������Y>���gYWN�&����˹�8A�*I���WϬq�U��*�����xWXP�i�X������Ϭ�1.�iM�H��i� �m�$TW�g��+���*;N���� ���j����BU��0���EvU��V"?�ƿ�EA~���B�TBUO� � �Z�e�����a��+��W����LP�$�U[3��$��� ]X-���}�$����ÿU��X�0��~79�2�H%ï��vOw�0�(T������ ���vN�Vj�:��n๱s&W���P�ݳ�"W1TD�Ɲ�q�U��R�4n๱shR�4;���&�3a !�mMRլX���A�@.��&���U%U�u�޶��n����T�\�����ܽ��������仄X� �R��g�����~������M�� 9��iM�����E���� ����%���YUc���M�j������KŷN¬Lo���U`�A�Y[�W�3^b���Ͷ����ײ����Эü�尼ֲ����Э������8M����c��LP�[��ѬZh���C���@.D��� �!�����O�W�N0��Q1���Ȼޭ S��T���!���٬���Ͷ�TZ�����F���LP�W����H[�_�R��f/K=�WO���ڶ]����lu�N0��~����Z(���[�]�hȭ2�Tl@O��� ɮ n�3^�2��W�3^(T� ���V���~�x��Lr�(�&�����İ�:+�Ʊ���­�:9ö&Jd�ɮFVl@O��������Ͷ���[�iM"�� E�� ZA�$��� h M:�P���W�� U��V�Ϲ�ȸ�{�E����A�Y�RbhW����� ]O������IEv�N�&��" � ]ı����)�.Jn��v�Y��!�����; VP�@��~��D!�e����U ]������¿G�Y0k���G�=�%�Q�Y_@���ĵ��ɰ���Ͷ��غl]�k�F�Th��V�� ]���}"�����_�Z;��Yc���9�����; �Y��I�m9Y)=�H���~�3����X�2����ݳ�Ip�z8��`Y �`�V�A�%�M�z8���-��)W�g����O�W��oZ��+��Y�PLD ����� ɮ [������P�i�W��,�E.Zi���^��P��Ǹ�������ɰ����2��[#�̽��׻~ sKY[�G�=�%�Q��:����ɰ��~ ��b�����ɬ$%�������C;N�:��M��4��wM����<�nN�&�����BU��W������Ϲ����V���W๱W�~�̬$�Y[�;����ɸ�fa�ٶ�Vy��W�� �bR��]W����ȱ�S������Ϭ�=���JC���������а��ü�>���õ���խ�խ����ֵ��ֵ��öɽ����W�\�X�~���k��>�߬���3�����~=� ^�H� �X��������Rbh��/�c�V߯�ɱ߻�Z����d ]��c��[B�PxwW�W��� ���R��!����m���ٻ�������D�����������M�������ƭ��ȱ�S������ϬȮ��=�� ��ܼʰ�ò���հռ����0���������հ����Э�����=����X���0� p�T����>P�ꃁ�LH��W��)�I�m��k`sU껻�'YWP��Yc�t̲�����������ܼ�������յ���ײ�>�������-�2���$����[��#Ь�|��Y[�JƬ S ]k�ƀZ�&�2�H�Os0k� M�~�������T������� 0�V�T�3VW��~e����ˬ�����"���U��jC����@���̽���*� ��ݳ�������M�����P��L�� ]=�K��ĺۮ��3V_��Q�~ON :k�[y�n���ڶ&�T�LoH�����������3���ŷ��q� M(�����QSp�>�R��� ���h������� �� ��~=���ZQ�T@�F� <��~=���جF���UZ�Q1� c*�I9Mn�M��/K����OwJ:@���� �?P�۴!���V�U~����T��ϭ�;�Q��@��ľW� sO43Q���ľ~>��W��L��� ���D��F��JX���� ۭɸ���b_���Ȼ~)�7�{USV�9Y�e������~�+��W�̽׽̿��������e����U�?�T�TW����Or�"������Os�\��#нʻ�#ר���(���Z����d�4p�����ZnMR���Z����dŲ�=vP��a����[̽#廤Z����d�G�Yc��@����pXP��a�Ͷ���M�x�P8Fv�!�� .OW�R�4�c�Lr�F����/��Zv��XP��aYK=���ɬ�� 5�'Cl�7oðV+����V���;W\�� Y�Fı ���� ����ؼ�2>r� `s)_�O� � � Mñ� ����N�Ɛ2>r� Y_�����������������ޓ����������������������Fı ���� �����/� ����Fı ���� ��Y�V�T���Ȭ���`Y��o������1�����q���¯���L�c�� 9�۸������������������ſ�¿i��%�$�&�>����@��=�Q��W\�� ��U�K����ȿ����~������TƎ: ���`İ�����ٻ��v�P�ð}M�&���uZ4d~=��ɸ��[�$T�:�����̰���м�ܼ�������ci�=)%�G���� �^��� �� �x��3�r�j�� �^���� ���O��3�F���[WMRbP��a�����\%�ư� ��Ø�~�A����� s���~� ��r�T9HJ�3�(<@�'MI���i����W �� +���������2����?��gX����U��V�X�WO��~���c����!�����AVƭ�Y�W� SV�T���ج)»�O�W���A���x���V7�{K3�L��~����'Cx��+Yΰİ�<�ڰ�Z�ƭ��J&�ƭ�~XĬ �R�İ�����NýOsR(N��)w�������V��RD�����RD�����l�+��9��R�4:k��MZ�𷹭ñ�V�{��öɓ�w���ȭ�1����۾9��ýc۸ư=@)��÷��ñ���±Ʊ�ݴ �Ͽ춿R�4��k��M���İ���x��V�D�Y �K )=TGRYN�X���4��w�C�Y_�!S�~XT�­F�Y����E�0;M=b(�ZS˜:%��� ]Q��������5�!ö!��� ��ι��(�!����U�U��V:�]���&�����P�갲XV���V�N��U�껻�'YWP��Yc�t��հ���A����в�ü��������ܼ�е$��ᰲ��  �R�C;N������N��o�X����>9J��K3:D��V�Ÿ��� P�T�R�Q �bj���ˀ�\��#нջ��T#пp�TP��a�&�Z��!��=� �� nMR3�X�" u��-����Os ��MǸ��[�����xX��ȱ�S������Ϭ�W�JT�R�UY���̲弭����֭���м��������֭��ײ���������c�����(�̽̽̿��������������P��a� M�-�.�2�����Z����d�Z����d�Z����d�Z����d�Z����d�0%����P��a�hU^A�@�ɰ��B��T��__��~�kx� �Y���F���.�CQ?V;��Yz8����ŷ�����G�w)��Uv��L��Vh9���\�TGο�1��Gο�1.[�н�#̻ȸ��.U[���(R*x��Lr��N�������� M:�����Woh�GR�N�X��~��g(���P����j������2�~����=���^� �ƭD�V������߸��J�߬������� ��&�(T��&���E��Z�ƭD�V��X SV�T0�M�����'YC�� N�`�0�M[UĶ�߸��J�߬j��X����ƭD�V��X SV�T� ��M�J��o/��ƭD�V��K��U� b���Y-��MV M��U� bP��a��2���~c ����U��e8�Qlέ���~A�@.� M���GR�*�뭰��`��J9����:%�����.��]1�:���:%����ؼ�߾��I�W¬=���A���XT¶��V0k���A���K ”���LZ���:���r; ���س��V�6�ɭ�<���!����A>����'Y6T�0 ɔ 0���l�M�Y_���ٽ~W�� F��XĬ�غl]�A��O�Ʊ���Q�4p; V�+K��[1�  ���Q��~�79� $� 0�MV���F�Z����d�'�[P��a��۬)��� �F�F����­ØYUt �~k������V�Q[�Ķ+|�P2R/Y�f� F���� ~�LH���D�`��_ZI,����W����Z����d�Z�S�XPN��^��̽н̿��������绤Z����d�JW�ȭ�¬X.6YNWAQ��ӱ�>��FĬ� ��R(�F;R��@������d�ȭ�ϻ�1����۾9��ýc��J��R��$@�*�@�0%5۸��������P���������ʻ~eƱ�tZxw���Qa��~LC���iMZ:���ı����<�P�����Y�JƼN¬�U^��P�Z��1���R*�껻�'YWP��Yc�t�����������������е�����ղ��A��������S¬X�c�Lr�� ��������쬶<�{ƭ��O�W�������V��,�غl]�� ��L��V�������P�P��a�� WMR�2���J�P������ڬ����Ve�|�P�껻�'YWP��Yc�t��ʵе��������м����õ�������֭����#��jC(���PZ��ĺ��Z����dڶ][�S¬ �� ��S�& ��: ��D�\�Thγ��lA�Y���)0�����W����� .����#ᓰ�V�< ������~eX��;N��X-��U���:�����_i������� 9��~����ج Z����ٻŷN¬=8�� x��["RV_�2�H�_د�FĽ�Sb� ɬ� .�(­Fn���Y!X��#廻ӱ�(�V�����'C;N�����������A���{W���_������-����Os�\�TP��a̽�ʻ~e����P��a ɬ�ػ~� ��!��P�W������K�E�������"H���4��wƭT_ ���Q�[��#Ь�|��Y[�JƬ S~=��Z�Q1�0�V$%���Ph�������V  �^|�Y�TX���������Y_S�j��˹�T����/�˹�T�������4��X`�����YKmG ��TA�%U���U�Y����Y��ıJ����'Yc�tÍYK����:����Z���~��g�Sb���Y[�j������߽�FĬ� "g|M����ΰɬ�iM�WA�Ā�ΰ�n��L��[�^H۬��~��Q1�=�ɺ��>��4��w�Py�q; Zx��3�F�����Km6������ ��vOwZ��R��,Vz8����W�M����� b��x����@��jCp�j�����L ]X-�xw�>Q��*ƻޭG ���ö�YKm� ��]0�)W���P�� .�<��WMRO� ��)�~�����p��I��O�P��a~���WO���L9J��PY�'C����l]u���Z����d�Vi��!�R���ӿ� M~y� Y[X�NTW���9J��~�����߬X�2�À�$%�R��٬Z� ��M�ŷN”D�}[|�PV(T�1���t_XPN������������j��S�I�������������V��J!�����Y�Z-����� 0�oZ"Z���+��������Z+�Mz ��M��έ���O� � ���Ͷ���FvcBF/��aYƶ=Y��ϯ��M�Ϭ~lu�6�F��&���R��Yhy�xX�[����2���~����W�Z���XĻ��;+��ƿ_i� �Ɣ�J����4��w� Wo������;'����0�C� �Ͷ����{&Q��G�Y!�:�g`�X�~Q������9Z�����T��Q�� �Ϭ�W��]K�X�����������ٻ~�Z�Q1��C��^��$%��9����'Y���I�mK3�!�Z��Z��ɮE�������r9����9d� _-��(N��:@s�P���T��P��a��ս�׻���T��n๱WY�����g���Fı ���� �������غl]���}Z1�i��X�2���~�����_[e8�Q������#��� ��!t����XģF�TL5�Ǹ���#տ��Փw�6�Ƭ�Jƽ��iM���VUtZ�e������=���X�N���������ݳ��� Ʋ������������U��bP��a��M�Q��_)W� �� �J��X�����Y[Q�����Q�P�� ]��ax!^��ɰ��)½껻�'YWP��Yc�t�̭���հ��7�ֵ�������ü�����а���᭼d~R�Z"W���ì��� ]W�ö�T���_�+�Mzd~�3�� M��x��9� ]����I��F��������� ]!6b�\�Th@������A����]Km_�l M��Ǹ����Qi"?��*ۯk���3������ݘ��Z�)�绡����2��X��#׽̿%л̽̿�����+������������.�jk���L��$�%��Y_�ɰ�� M�ݳ�x���M"? �" V��.2R���>��p�������������~2���!��N�ƉOw�۶��ĺ:�<���D���Z�S�XPN��^��̽�տ����������?(�K��Ti����Y_X-��X��/����)w3:%��bZ�?�Q���JƼN»�:��}��.��������: � 6�Y0�X ���٭UϬ~ÿX�" MZ��R�nMR[y�  ]P��a� ��V�O��ɬ���e���6�ƬXģF��##��Z����d�����qQ�'C��YX������x���%�Q[#�~29���X�" M��Z����d�.�\�ThίL�K � oj��S��­�] p�TF���U������(��D���#�;N��RI'Y3���m "���M�����< ���ŷ���zhW�M��� ��R����ζ_j�(<?.�;� ^����k�ƀFı �������q_ <[��q_ı�»�B�T�\�����̽#�ʻ~�+��F���X�" M��ι�4��Ư�P����a�̽#�����P��WMRb����'YWP��Yc�t�ʲʼ̰ܼ�������м������ᰲ���ֲ���������M=��%�Q&���p�S¬ <Z9�~�ɰ�����SbX�2��?�$T���D�I�$��Y$�d ]Q �R��)W๱W��Ǹ��� HJ�ɿ&�OP�Tս�լ��սֽ̻ ]��X�߬&W�@�T����X��" M�����0���YLoS>bZ�����iY0�����E�3�-�������� �����±ɮ�걶���3��~0�Y�\�Ti�$�-����Os[̽�̿�������Ԩ��\�����;H`Y��� �F��~lu�[�E�I,���[�;N���~��v��$%�ɰ��:�9����v�i����& ��x���G�r���6�z&��� L��-4��X%YKm�W�XW����5��D��V)�P0s7�<�Ͷ�j�� ^b$%:����� KmM�PYK����<��'Y3n oι��?��M�;��-9�`���g=Ldݳ�nN�Vh M:�P~=�K�� �;��UU��[�]�~8 ��R��.�!�����JX� ���Y_=��E�:2������S�YU��V�����^Ͷ����{���FVOX[ N¬/ ƹ ��غl]���!S�TZ1�ixN�����*L�ޭM�QSfbC  M�Lo����3�`�p���غl]�������TW�������G�we8�Q�����]�A��ɮFV�������j�;���I����<���/���)�������������A��`�Ϯ����{ƭ��� ��_����Y��[����I����<��7�P��a�j�(��QUc�-��� X�Gά�;��YP��a�Z����d�0�Y�\��ֽ̻̽�c�VS"g��i����?����<���v�j�&��*������;�����Y��A��I��[�X������ ]!S>b���;�ɸ�fa����/;�`s)�=�QV�<��* o�T����+� �����)�����ڶ]����������+��W�̽׽̻�Z��/�uY[2�Hq_Z��p�꽳W����g� M���V��W����g� ]c����V���2����?��gQ�������~/�.���}Z���/������Y[D”0%q`s�����������n �������������:@.9��������:��J�Y[�.��������/xw3�)��C;M=�i��`�� �Os��v[J�����:%�����KmtWUY�N� oA����M~�ΰİ�Lo[������������غl]X-��<`Yu���*������'�����ŷN¬N��(T��*�찺J�Ȯ��~S(­F�X��2�F��Ųι:���hi��1���tP��a���TE$�R1�(��.X.P��a�ȭ�¬#�̽��J�������Ԑ����U��Z����d�[��&�Z���~y��#լR�XģF���: Km�y�:� v34��X��~���c������,V��R ����̽#̉�Y�����YO� � �������;+�Gί�e��W����������Ⲷ��W๱s� ��/����+�0��W������绬����������� ��/����+�0��W������� �� ��/���绬����������� ��/����+�0��W�������Gί�W�����绡�\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������俾���ֵ����<��*x��t�Te���E� ��O ��Z����d�Z����d��P��a� ��j��X�0������Ѭ�ti"��W��٣F���Z����d��#�" M�j�;N��#�̿��ʻ��.�DV��1���tc�Lr���/DVW� SV8���c�Lr�6Y) �>�c�����vKmUG�w�;� ^~BUi��@�T�D����N���~X����Ti�Xɿ�T/�u~� 9�ٶ��{-1L���������)W&W�_}[������U�Ǹ��[�:�û��'YP��a:D��VO�_�79��Cȱ�h��������έ���R�X�2�V/Wϻ��1�����9�5۸�ž޻�V���Y[��ج&����n�� AYLo_�+�l M�~��#�̘" M��e��ΰ�WA:%�M�~U���HJ��6b��:������Ǹ��k�'s�\�����Ld~��M�\�TZ��!��Y_���ٻ ]�6�ƿy��XģF����ŷ��������~����ֿ���`�V���!tO� ���;�οư��R�`s�����<�Ա���<`s������o��[=���j�����XV�Ph�����P��aY�ư�ư�~������W� ����D��@�+�Z����d�Z����d��(ƔѶ�WYï�Z����d�:����WMR�� �X�N��W���9J�� ]�0����e���+��\����Z����d�[�nMR���2����R��i:����W���p�$%�R ɮ Z��~X�2����h_Q��Z����d�e��WMR��e��ñ�/V����U�Z����dP���c�t�Os[鰼ư�껻�'YWP��Yc�t��������е������װ�����������嵵���������[��:Ʊ��]��Z����d~���D”�TH��­��:��ۮ�Y1U��(^�X�����`�V s�Mɱ�9�����X��������(�m��~��8R��\����" ��Y[q�*��~��U ���ge���[ nA��������Z����d�Z����dڶ][̽�̿��������B�sZ��P� nMR���M=��F���-V�����*��L��V&W��oh⸹�MV_ı���*��.��2��[̽̿���׻�*��.�̽���*�� .�B����M��w!SA�� T�T��������*��϶������Y�)S��l]c�����ݳZvq_OwZ�H����P�J��~�H�����EA���P��<��³��jC����f�,�!t�!S������oU��V�ζU��ȭ�1����ƶP��N½c��������������O4HF����K�����P�@��U�y��c�����������������л�jC�����෿����~������W�q�~O�Ʊ�W��L������� >~�2�H=�Ź&�𹼼�����Ȭ$%�~��3���<�{in���P ��~�3��W๱W�Yh�Y_������S¬��F�� ����ƭT����P�E���� .P��� ����Z��'C���VLoL ���XO����E�`�V��]�M�dz���xM��M�Y�­��~q��T��W������~y� `YX��������I Q���;N��#�R�X����GΨغl]q�h��EA����<���D��ڶ]XG ����I��F���Ƭ��٬�<�+�iM����Z����d�� �� ��S��AE���yY��ֻ����aǸ���R��,V����_[̽ս����G�w���O�=����YSA�� T0��� �HI/����XV������� �X SV�T�'����'C" ��A`�z8���Z����d ]�O?ìX��Uv­�s)�N�Q�&���h9������н�仃X���Q1�RL���3�w�������� ����E���ȶ�]��¶�$T�"���M��N0��a����Gάj�� ���"WP�X����i:@��l���Y8���d�iM����J�Y_�U��?�����xs[__�����OX��" V w�X����Z�)���~���Gο����e�l M������6�C�7g~%�������jD{����~ <[��8=�*|�P�� ]US�Y_���J�X&0�b�� M~๶��F��= ]!S>bW๱WY_�ra�L��� +HJ� ]N�V���T��έ�Ÿ�o�0 6�Y �W�1���ŵ�� oK3;=:����BFv�����V M�����]�����?beG�=��������T��� ETO�=@��~c��X�2�À�fa Z��J� �!�� ]!SA�� T C"�}�M�~�N� xX�N�Ƭ��O�P8FA�4��wN¬MP���_ <�޻ٶ�VGί��`�VGί�F�(�Z2��� YN�X��� ������?�Q�E�3(���~q���A��Y�E�u6�C�: [��O�W�X��<���ݳ�I��� wM�I� ����_l�E�� ���~y��@������v[�X���HC���!���&�" έ���~��g��?��g>���Z����d�Z����dڶ]��k�ƣF��XPN��" M��: ���<=�PYK3�m� �O�ɮ��Z����d~�����I!����Gί-VP��aI�mluo��gYGε� M�~)�7�{����������Ų�=vP��a����[̽#ʻ �ϬͶ����{���E�!�3� �>���(�I��:@���OX��_�� �T$@�*���(TX��������>MT�\��̻̽ܽ~<9TZ��!�4����Z����d�Z����d���T�\�����ս��������̻���T�լ�Rn/VݳV�ٱ����ȭ�=)!A�ϻ�1�������½�G���J��������=)!Aۺ������ܽ������ӱ��������3��๶�_OW���~WQɬ=CJY[���ZWQɻ�ȶ���Lo�C������)������iM�M�YK=��|O���~!t��;/�ƀ O�&���ɮFV ETE�Y[ ȭ��~ !��?.�����J���O4 W4T3���lA������Խ�Ȱ�h����IE��Z�`s)KpV���d~=�K��E��t�ɰ��~GοƮEv[�N� �eX�� ]8�`Y9�YW�!���H�~/�u�QSf��PW��L��~/�u�QSf��PW��L�j��O�W����L�r����i�p�L�:%��YOX��\��� ]���q����Y[X�" M���N� `YX����X�NTW���9J���Z����d��B���%�Ɲ�nA�e��Z����d~�\��G�9�� ��9�����N���y� Y2>r� �~�?=�M:��ö[�ö V�F��9Y� �����ı��غl]ƭ���}[ N������M� �`�V��V������M� ���ɮE���W������ƯP�ꎬ ����%���YUc���M�j������K�껻�'YWP��Yc�t��嵲������������հ���������׼�������Ųι�� �0�������5�D��~��g�Sb&W�@?�����9��O!^:���;=(�!�����MI��W���O� ���" έ��������Y XO�&��Uc��P������O��\����~9YUέ�~XĿ�P[�.���/�HJ� ��/�Ƭ�iMZ0�9�~}2�Hi�$�W��D����˿����Ϭ��U�ѭ���Ѭ���(Rbh%��R�����$%�O�M�~@������v[��\�����TP��a����������X����R�˹�T�ɰ���J�^�Y��Y��Q�j���YO�W���~OrI��[X���� <����X����3��[=�F����L�����ɸN�V����0�Y��8ɻ~X����K��-.W��P�Tr���[S¬q� @���7g�����[�\�TO��������|�]�} <�[�iMn���~��R� �R�����ƿpX�������P�~OW�R�4��2���ɰ�� ]���E�R��PY����W� ����%�Q��� �K 1M��c�t�ͱ�G���(�ɽ��[��:Ʊ��]��Z����d�Z����d��&W�@�T���� _�?���� ~�<��u�3�rP�@���9�UJ�oO��*;��Y_��� ]!�V�Y�USI����4W������[ս#ʄ�KmN��Y0��Y�N0J�Q� ]P��� n�Y�D ����F�� +���~�����C ^��jC����E&(� �M�Y������ڶ][p���Z��ζU��W଴!� �W�����^�69U��~��M��k���޶����D¬����GQ�YW�AV_�� ]!�V��vUG�w[��R��,V����� ]�����1.H�YW��L�Ķ+�8l�M�Y�H�YOw33�U��������Y�����Z����d~ˀi���M�\����:����O�W��A��Z����d�q�_j�"���:%�d�Z����d���Q�W��E��\��" �+>��nMR���Z�̽#�nMR�������BU[?.M�&����'�vlu5�~y��#ܓy��#���:�9d�H�Y&��T�Tl�+������ƭT_���}$%� ]!SA�� TPW���$����GΨ��vö��Gάj��)X��'C��Y�M��[)���������Ԩ�R�e)�n๱W`�������ݨ��� ���+έ��c�t�Os[鰼ư~�*�� � ��<�{����~�ijW���9J��c�R�W���9J�����0�C����1�Ͷ��Lr��Z����d�Z����d�Z����d~ �R���i(FC��U��~���R��\���ŷN¬�<�{[�JƬ�BU���۬�� ���~L s���%�ƿ/�.�~Gί-V���Y[�~����>��Q���t��>������)�Vh�� W" A���YFĻ��\������_��v�Z��e�!����������V���������T�� S�����%��`Y��&�����ج��^�qU�~��G��"�U[�EU� X�� M�\���[�T���p�(,�A�/�.%�Ɛe8�Qս���\�T!�ƀ[��?��&W�@��~��,WMR��IR�QSf�������b�����Ȼ��(�:����/�u~������9�O� �  �K�ı� �ƭ���jCU��� �T$%�RX����Z�X�ۅ~G=���R��\�����\�TJ��y��y��#�̽л�Z����d�;N��#�̬R�X����y���R��,VixW�R�4�F����\���������<�)¿�+8���Ϭ� � WI�������NJb[�+8����ޭM��W�X�DVm� ��KpV2�G ��TOX��V�g�hN����&W��UXɽ������ S¬� �h�?������ι�t�J�~�3��W๱sZ�渷���U���滄�����V�����ȸ�b���9��U��V��@Ȯ��ޭM������&W�@�T�6�C� ���Z����d~yPE}[e����U�jC��H��� ������� �^�C�W�� ��������;������x��3�F���J���~f0�VZ| C�W�����ΰİ�������&Z:@���ɸgb M���Y_S�j��˹�T����/�˹�T�������4��X`�����YKmG ��TA�%U���U�Y����Y��ıJ����'Yc�tÍYK����:����Z���~�K� !Vx���M����D������P�T����T7�{K3����{��g�{^ӱ�Ϭ�X�U��V�X���㶸�Ųι�ζ�:%��Y����U����j���Y���X�lέ��J�Y!� � >���UV�*c���K�*��ɸ�95��� ��T�ɸ�t�*c���K�*YW๱W�-t6YQ1U��W����D�~�'C:���[���Z����d~����0�C(N��Q�� ���� sp$�Mx���N GU��Z����d�Z�S�XPN��^��̽#п��������绡�\�TZ"W1�̽#ֻ~y� `YWMRW���9J��jC��P[���U���Rbh��#�~O�i���X�~�XĿW�� A���W�� A�K�߉l M�Xē#׻��������:����WMR�~ñ�$%�#�̓9Y�\����8�� ������٬j�I��* ���M~%�I��Z��'���I Q��KU%_c���9Tj��eսл~�E����������Ư�j��8[O�S������3����Y[8�/s��lB�H��~-1h[W�V���; ��������R�W���;�=�U^�d����X����[�R��� ����I­`Y���J9��!�ɸ���b��A���hX������*�iM��v�3���E���Yj��ƭ��ȱ�S������Ϭ����鶯�UF�����̰���>�᭵������ܼᰰ��������е��>��&�A�����c���g��iM_O����@�����O�&� ���V:ۭ9/����'Y��PY1� W�gU���NY�#��g:����Y�T2��$���~}[&��T�E�}�D���y� YP��a��,���!9���)w��YG*ƌW&W�[�?��ı�)»�Z����d����(��D���y��#׽̓@������v[̽ս�#���İڰ��)¬�� %�ڰ�#ֻܽ�.�����P��a�������Ի�Z����d�� Y�����YWN�������$�u����U<�غl]�$�9T��������؇����~��ج����K|�P0�� ]�Xö!v����U�<��@q*�����Y[��� �߻~@����pXR�X���Z����d��\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������̿��孼�׵��<��*x��t�Te���E� ��O ��Z����d��\�����ȭM8���j���i L��;��� +r��T�n�� AYK��U�M�wi:jC����?��M����ެ���ݬ����Ӭ���������ݻ����X������E�D�^�Ld������9���nMR����L�N�VƭT��� �R"������������Ow������3��~�M�� ���*�" M��M��h��JƐS n�W��a�j������M�� �����,�M��N� [ �V�����M���п&�t � ����X�2������/�X�2���xE&��Y��m3(���bi�S>Y[���S�H�P�0W[���9a�̬�1����ɮ�@U9� �ı����X�c�Lr�������M������P:@W��N0���W�Y�$�R��~ s�;R�U��� ��rۭɮE��<�~��� ����L���J�U�� ]UXɬ� �*Mxr�'C;��V��� ��Km�WO�V��BYLo�� �VLA���<�:%��H�M���^�X�N�����N� �X�`�V����U��?����; [&��C�W��E��P�؇�(U TpXZ;���G���/��!�" � ���pV��U Tix�P�t[��9� E���J��ɰ���U TZ��� ��������֬�լ�̬�̬��绻��� ���O�P�t@��� �׬�׬�ʬܬ�̬֬׬լ̬̬̬̬̬�绻ȱ�S������Ϭ�F��'٭���ղ��в�ղA��̭�����䰲����׵��ʼЭ�����c��4��w �Qս̬̽R��\���Ų�=vP��a����[̽#ʻ��y�� ��-��~����3��$�l�Y[�$����I?�Q�Ųι�X�������X��8����õ�ײ�ܬج��Vw=���ι�����ٽ�����ݳ]OX�[%����=%}I�H����m��=Y�<��q_Z��I/�?��O���i�_���_��+�M�C ^�FO&����$%n�V����Ľ� ]O����Y��W��L~��Q1�'��}%������ s��Ƭ�P��N¬� � �� MQ�o1� W�gU����Y�#���}3��_x��9���)�c��Y_/�.���Q�� 9T�.0���ȱ���T ���Y�>9�c�Lr�Q�Y��A�c�Lr�~����Y[C��^��:��ï~�G�r���ڬ������*� lέ����Kp&�� ���.��Z�O�W�y��~����ͷ�Y[���٬/�u�O�&� ���V(�K�~ s�� ���*���� M��"�����9��~ s����T�e��g"�Y�T$�>�mJ� nAx���$�>�HW� Lo� �I������E�T�\���WMRy/�~������N�ƿZ�P���~Gο��\�TZ"HW�P��Դ��[��VO?ìX.[�e��WMR�J�껻�'YWP��Yc�t�аհ̲�����������յְ�0�ð���ղ����#��Z����d~��$%����Ry� ��L����ϻ� lέ���Gλ��\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������ܿ���X�����<��*x��t�Te��!3Lڶ]N���F����JƬh�E��E�xX�:��U\%�J���c����#н�#�̻�3�����=AV%�Q[���b��eGί-V���'�A�ŷN¬��� �!��fa� ���ƻ�-� ö���H�� <��~ [�Fv٭UUQ��~��0����� �x 9a��pƬ�{��0�������v��YGR�: [�.�����'YB�PYt�ƀ���� ð})3m�FV�l�E�~ �iM����_[U� ��ɰ��԰��QSfbίhR�Ȯ������RY�3%�_�x4H��޶��RT6���ȱ�S������Ϭ�?��� ���ʵ�ּ��������ײ��������ּ��ղ������� �ð �J��~�C" έ��T@�Fn�����P�������!�YKm���)��3=� W껻�'YWP��Yc�t�̵�0��������̼�����е����ֵ�䰼��Э̵������D���U��Z����d�Z����d�iM�8� ��C�� +����v���/_ M��j��!X��Os�n����"�}�ƾ !V%V��^��L � �!t%�Ƭj��O�W��ưQ�~�J� �!VZ(��٭UUQ#ܽ��Gο�1.[ ɬ j����#�O!^:���;=(�!�����MI��W������P��a����任��ݿ���ʿ�����Y �b_P��a�����({t�|�I��$�[�����|?nMRj��� K� �~c�VO� �� ���; &� 9����4� 8�@�*�FY[O!Z:N¬�ج� �zd~��������N0l M�����oi�~��2öɿ��ɻ~�������S˜� M�ٶ�V���}�Tr9��+�� C��س��V���Ā�* C�X�I�p��+ι�Q�r9T+�����QY���"������Q�Kp��+ŷN�������9TJK=�L��ڶ]9���ı����Y��c�Lr�����ج���$%�� A��jC���QUö!��C�&��(�����X����?��*��k@����Y�ɰ���8�� ��­��J��Loh� �Fı ���q��U��V �hG����tyS��1MJ����� �������_=�!Z�!H�R'L绤Z����d~6�C@��Ʋ��i���vX���.�S�Q?V��S����Q��yY��仃���y���-��� @�kVW�3^Y�?PS�H�P�~U9� ;N��M��V������ݳ��q�i|�Pq�ı����W�~lu�����i� �����Ji Vj���K;N��ï��\�Te��Gμ���e��Gμ�[�̽�̻�Z����d��G�w���!�VX��:������a~�R*;�ί-VWMR-���Z����d�4��w�ΰİ��X����l Mڶ]���G�XģF���JW������\�T��~WMR%�Ɲ����QY�9d�Z����d�Z����d��\�TGο�1��Gο�1.[�н�̽л�;��Yc��R" �+b�O��\���W๱s��B�a�Ʋ�³�����ڶ]�W๱WYU�+������q�Zn��LYjD{H����T�\�����ս��������̻���T�լ�Rn/VݳV�ٱ����ȭ�=)!A�ϻ�1�������½�G���J��������=)!Aۺ������ܽ������ӱ������ڶ]��US[�@.�~y����uZ�:�4�������X "�}Z���A�@W�g�[JUĶ�P��~�Jƀ�TE�n�&����pƬ�{��D��W�X�D�YU[�!�Y����W��nX SYK����pƬ�{lέ�J���E4���[�e��]� ]�R��,����Y�pƀ�eS����G�w�_������yι���OM�X�0�V�����.P��a�������l]X�2����~�iM[ N�V� =A�����%p���^��}��>��i��:��O�e8�Q����U��\�����D�N��������,��%�Ɠ�,��OW�����Ȭ�� MI������x�������[ 6�Y��t_���DbG��P��a����X�N�y� ��@BU��[���q�hί�O���M����;R[W��W��L�R����0��>���: �����Q�Y�O�W�OrI����~O�S� �����$%�R���p�ƭ�YKm��]�R�x��a���Wı���oM=�.�Vƭ�YKm��V)��R�x��a���춬$%���3��VKm�R��Lo�U�M��R�OX�ڶ]�ΰ�; [@��~�������k���Y���~�ɰ�����}c���'C�6Y�?bi�>������~�R��,��"���U~/�uD�WN�V��A`�^:@����������[�;+�~���?��{R���SV� ���ڶ]y���{" u�X��~e��Gί-Vi��l��x� �����R�N�ƬH ]��VO�UYh ��~�6�Q[��جF���U�~�����3��B�TR��\����x���:���&�� ��9��ýc� ���M��)�����~�\�T'���$��̽�׻��S�P��aY����+έ��eO� ��S�:����� ���Z�S�XPN��^��̽#ʿ����������.k�'s�\��ֽ�̽ʻ��'YWMR;/�'s-��Y��E��9�]�\��ϻ�c��R^ɺ���ƯL�$%Z���ƯL�$%Z����J���'C4��X`� ɐ��ݿ���̿����ʻ�춮m������?�K3x��t�k�'sWMR)�����)O�_UZ��hK3nMR�����­Pج��]�!�e�IJ�h���lB�Hc�9Y_k�'s[O� ���l�M�*��\�T3�)�N�QBrK3;/�'sWMRd��1����۾9��ýc�$� S�k�'W�c�9۰�孭���а�׼$м��ò�����ܼ�׭����ʰ�ܻ�Z����d�[y��#ܽ� ɨ�E�}���Q�ӱ������~����ƬûǸ��[e��=�ս̽��&��r������έ�JkfJ�~N0X�"H��XPNu������ ���Ǹ��e8�Q[ս̓$�P��a̽�տ�������Ի�ˀP��a#ܽ̿%׻�ӱ�"H�IEP�� �Ĺ�SE�9T_ <��W�� A�~y� YW����<��WMR����G�wy���X.i���V=��r"���U���\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������п�ܭ�������<��*x��t�Te���E� ��O ��Z����d���k�Ƭp�\������XĿ�\��#ֽʻ�.[�(��']P��a��jC �� ��X��nMR�ڶ][�T�S�Zƻ��'M�­�s69�ZnMR�K3I��; ���׻�x����9Tj����X��گ�GΓG�Yc����N0W���9JTZ���廡l�3����� *H%����G�w����E��9�]�\�����H�����D��)S>bZ�QSf�C ���OXUP��a̽н��O�W���ζ��Ϭζ��� �Ǹ������2��P��a�~߅� �߬ �R���j��&��r;N����0���ƭ�`R��2����~��Q��GR��&W���][ N»��\lέ��Y[���>��?P��R�� �r����U��3���������I�p&��(TX����������6�C���6t_��&�I������~L���W��YO!^�|�P����E��tX.hc ��OX��ڶ]�ɰ��� ]��Ԭ���`�V-�.�\�����FC��Y�D�bKm��Կc��e��� +������Y)"Z4���,���H���P����جX�+b[� .t_���J��g79��������� >������Z����d�g(T�Os)H�ڶ&�TXM���W� ��Po[����EA���oZ�8 ���[���]�~z8��`�V �Yƭ�Y[O�ɮ��-���/s��ǮYK �Y�� �&3��Br��1��YS¬� YU��V�����U�M�� �~�!tR���F�����N� �����C��^���LS��N�ƀ[�Ķ+��0�O�S�~W��y��Ķ+�#�x���z8���ޭG =��� ���U=vKm0��g>��e���_[QSf� ���b��m M�� Wo�`"�L �ZƉe���_U M��j���eU ��ڶ]��ɭ��O�V�� �|��Q�X�*���< ]Gο��Y�)�I�m9�Y_Gί�OW����fa�լ⯸����lέ����'C�&������f�U�W�i���VðVR���1���^�?���$%���Wı���5� ɮ 6Y�!���!�e����'Y��=��Km���H�����b[O�S�[˱���'C�&����J��Z����d~W���<YX.[��]�J:D¬�� �!�� 8�����ج�E��Y)��!��P��~z�Z"���MI�m��[S���껻�'Y3��S>bhWMRI�m��$��W��E���W��E�����ɻOJ&�H��'YWP��Yc�t�������֭�ʼ����ʵ�ܭ��������嵼����еа� Lo���=�H%���P�P�[WMRbP��a��鰼��E?�� έ� M�j��!WMRbP��ax��9b�T�3%�d�4��w �ƿ ��V�Y_���Ș��!S�ޭ S����?���K� &�T��ı� �� ��K��Q�W�b-��U&���~�� 9T ��h��hGR�����0 �VGR/��3��W๱sZ;N��ΰİ�����FV��?�������ï2����@˶�Ư����l]��&W�@�T�i���ŷN¬ ����qY[�&�����-��h�.�1���t�P��jC�0)80�Ʋ�³�G��p��W�g�=�����Z�������\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������п�ܭ�������<��*x��t�Te���E� ��O �ڶ]����x�M�;/���" M���\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������ܿ���X�����<��*x��t�Te��!3L~�����3�Fv�­ì �����Zv���U��V" ���:�I�m�����E����� Y_�?��0���JTh�­ï9�i��L�öK���ڱ�f[�,�M;���| C���V�X�V�} C�W๱W�`�V�� ���� j�"A�FOXVU�<��φ���V��Q��~����� � <��U�M��T��j�n��L�)_P�@��~@�����Ev[�X����?�����ɐ�W๱W���ެL@q�UG�wH%C�~Gο�L��X����l M����eGο�L�����:������U������,�R���S�������Z���{3�X SVR���:��I�mQ�Y�� �~ X 8��;���^`�V�AS� p��lέ��e8�Q��Os���M�)X������� ]!SA�� T8�Ɔ�QSfaxX�����2�H������ p�TQSf�8�Ɔ(Rbh����J�� �jD{­ïO�:�g�~ϭ�G��aY[�I�������|2 T�� ��bB� ɻ��J����M���@KJ������P[y��#ֻ�4��w���E�ThQ����a���Q�����#׽̬��#�̻̽��'`���n๱WY$�c�%�F����0��UP��a�ս�ս̬��ս��#�ڶ]P��aS��������ԻǸ���j^�����RIj^( �tj���1��Z����d~��n���]�u��� %���Y�Fı ��� ]��ƬS(�Z����xr����Z�Xɽ�춮7�{�ĀUXɽ����GR�K� ]��/��Rb� �X����~KYW��hJ��c�Lr��>Zn�&��:���?�M�YUZ��h �����#ט" M#׽̿%ջ�[����2����,��G�`�V㺻~0���ï�C=S����������A��v��'�v�������j���)S���0����'�v3�)c���M�j��)X�Y%�Q�~ sX%Y[� <���$�[����� sM���M�~=�K��߸�����M� P��~��_�ɮE�@<9�P�B�ı��Y04�-1hc�Lr;��`YK�T�)p�T��غl]�HC,9��xw�P��:���5����R}'��I����1��Q1� �b�ɰ���.W���P� ]��ax!^��ɰ��)�~����ΰɬ�YKmSb[�>� P����r9���: ����Y���#ɬ)�İ��~��!Xy��#� ]y��#֓#�" ������0����k�����;����X^�U3�*��ɮFVl@O�Y[�,�M��YGR��Ϭ~߯�ï2�� ��WA�]�* ��*��Q��X����BU���Y_��� �����VR��NH�����������Or�����+�Mz���ƭ��9��r�T��C�V���:9��~��" @O��W�b�����=�c�j���I�m�� o���-���'��K��αE�����ڬ���������G�w�O�U����Ķ+�z8��~��� n�FvH�?-��������2��P��a#׽����������I/T��+�[ nA����eyPE}�C��ڶ]q��\���X�" M���\���P��a����8��T�\��ս�̻�Z����d�O�W�P��a��1���9��Z����d�Z����d�.�J����[ ][�����¿G���t��� O� ��� Y)��!��ŷN�I,����W�[��E��9�]X.����oì�[�������Կ����]��خ�Y_e��Y��Rl M�'Cn����Y_9Y��:O�_K��QSfb����!M�Y�W ]9�ȭ�1����۾9��ýcۮ�C)4��e8�Q��3������ʻ�+ $�T���"W��U��" r�&��笖�?�[�iM�ŷN¬)�ٱ����Gc�LrY_X���������:����)wC�W����faY)P�ö�h����D��V)kƵYO�M��JX��~���I'��`s���~�9��ì���,^�~2�H��-���2�H��-����� v[��&��<��­ÿ��&���Z����d�ɮFVW����j��տ 9TP��a~W�M�``�F����ųV$��,X�� ]�ï�M�O�&� p�T�� XV�T=�R���~�W�X�Z�X���������:�����'Yƭ��YfJ������ڶ]�Fvp�[j����F�� �W �pV�ƭT)��!��~lu� M�I7��M��iM�­�n��`��4� )��o����M���OW�R�4�~�L ����DW��R��[J��y��OW���ÿP�@�̽̽���]I� �YŴE��<��!����A����/pY̽̽�̿�������Ԭ���殡�U��ͶX��F��##л~q_�u�[��ػ�@���ζU�� ���Pι�����ζU�� ��ɳ�~ �����*��E����q�Z����dǸ��Gο�<�ս̽� �(R*��<�����~��#�" M�W���9J�~�kXĬX�����" M�~!M�Y2���ɰ�Y�׽#��~���q�[ �ٶ�V���G��"W�hGR�K�P�ꃰ��oU��V�ζU껻�'YWP��Yc�t����װ��ܲм�����׼�õ���ʲ��ܼ��յ��еP�[ ��6��x�&� 5��������������FĬ� ��Y��ŷN¬��&��X�WO��Y[د�F���*��/�X S�����I�mT�=��Hbj���K�3�KU����*��'YU=���2�H�WO�VZI�m�����'C��R:N�`�V�D���Ͷ����!S[P?�T���G��� ��2��QSf�l����`�VBU�W�����<�<�+T���H��Y_!t���H/K=��Ϲ��[��]��Ϲ��[��]笹��Ϲ��[��]��[��]��p��?V����ٶ�Vl@O����`YS>b�W�� A��L�ƭ�.l@O����Y_�� �T �������ٶ�VK����/��S>b�W�� A��J�:9��X� N¬�!�S��JƘ�� ��0�S¬���W�� �:�1���J�Y_0�����ƭ�7x�P�^��[�S�j���W���*����\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������俾���ֵ����<��*x��t�Te���E� ��O �����U�����M������>MT�\�����̽н̻~�+�����_[X�" M��y��2���OW�R�4�W ] ��/�O� ��eP��aX.�\�������US�X�߻�U��V��ϯ� A�X�߻~��#�" M��U���Z����d�.[̽н̿�������ԐZzVXPN����[��:Ʊ��]��[���X���X��)¬�İ���ڰP�rE���ˀ�\��#ܽ̿%令Z����d�Z����dڶ&���nMRP��a��Gο��ÿc��߻�Z����d��������[̽#��������Ի�Z�S�XPN��^��̽#����������ݳ���!�ı��XĻǸ������2���\�����\�����E�������V� �������M ö����QSf�����: �e�!߬�J�~�@? �$���U� ��~)�7�{ Ā ��/�O� � ����&��rI��*:����L�O�wj���p�是�� ������:%�M���Z����dޭG SbZ�eս�Z�������ƹŲ�=vP��a����[̽#�(�Z ][�9�ûǸ��� HJ�=��ս�лڶ]X�Y[��#н̬ � ~=��)X�``�F�����_�����IRƻ��/:����IRƬ���� Y[��] P�=��)X�Y_=#׽�һ�'C�=YKm�� �f��Tϯ����Y� Wo� �F��Ų��=��)X�``�F��QK3��Jƀ���U�y��#�#�̻�3���/s�ɸ���N�b�T&�3ax��VW���_ ����D��V)R���Km�����Y_�Ƭm=T��P�����0;R&W��o[�ޭ���0�:���u���һ���ɸ���TW� ����M�J:��'��iI/���\5�L��uiY3�)0��س���_�&�3a���ɸ�9o2�H�ޭ������ui`�V�JƬj�ID�"?�M��K�̐�P�TW��TX������$%:� vƭT�V_���I���+Q���Z����d~_ΰİ���� �RO�E_X�NT�E4/���ΰİɽ��M����M�������!����\����Z����d~�6��X������0�h/ ƹ���\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������̿����խ�d��<��*x��t�Te���E� ��O �Ǹ��[�+�#�ʬ�Ve���+�нսʻ�y�#׽̬��ջ�Z�̽ս����V�̽#ʻ��/�������c��Z�X�N����Ͷ���"���_[̽�令Z����d ]!�VW�� AY&Z�n�� A�K�~FĬD�ƀZ:��x�S��OXU�\��̽н�~ΰ��� AY[����.����ƹ��4p�/�.�����V��I!���Ų�=vP��a����[̽#Ễ��&��T_6�kV���X����q�MP[z����ÿ��C�S¬X��������,�A�"��'���N� � 8��� M(��N�XV������3���� .%�M�"� ���X����y��#׽̻�Z����d~����/�u��W�?�]$%�R���Z����d����a�Z�e�J�)�Jƀj�T���$T�x��U���{[������� H�� ]�)��.Z�n� SV�T� +H�)�I�m�k�ƐW� � �ZUG�&���=�K�_�QSfbU9� X����a~lu��g��A���������Y���”��(�V�D��V���A>�ϯ����������MPZ��~�����j������� �Ǹ��y�y��2���e� ��/�[��Ǹ�����#���۬��2���#�������������n�[W� ίL�ŷN¬��� ����Y�c�Lr��ŷN¬c�LrO?-�[����Y_���� �⭾�I���Vϯ� b� ��~¿Ui���U�~��g����= ��3����VS�;����� α�&��T_���&�F�a`Y�K�~���N��߬m ����-���3�� �� ��)w���+��U���Y[0�����NJ���\���Cx�����$��Ǹ�������ɰ�:����¿G�Y[ս��廃�,����TU��V(,���1._�ɰ���[�" U��X����gI�H�Y�R����Zx�S���6����Fı �����2��X.[���Ꭼ)¬�JƼN¬ �H ��-�X�N��OW�Q�ŷN¬�� MY[�N�X���=���֬�R���԰��� +�Z�� �YW�X��E��������Y�Tluo �ƀ����E�d~/�uQSfE�������+������춬��{W�3^bj��ƭT�ɸ���ΰİ��������A��Ϭ��������ϬȮp�Yy��~�?�YW�� v[ <�������A����}i��ɸ��[��A��I� ��ȱ�S������Ϭ�F�������$׭��䲵��������ʲ���ð�������������Ķ%�����ȱ���T�P�������j�� ��~�J��R����ƭT+r9��+T�\%��G�=��QSf��B>*H�������S�j���K����������X�`�VP��a������Z�S�XPN��^��̽�̿��������绡G�Yc�#׽��ֻ�Z����dޭ S(� V$%:����� i8�� |����=�TW�oW�U��V�E�IE���S�1����I��F�ϯ2����0�ϻ~����Y[����R���?�������q��HC��X����D�OwM��K�~e���BUZx��l M�� 6�������Y���1b�T�R��,������Ƭe���U��@.���W�V�!t%��x� � ����!�V� �z8��W���+Q[�����g� MY�T������$�_��Ȭ��>��T��Y��>Y�QSf�r?E�����JX��I'YC�� N�QSf���Y��>YO��3�r5�gb�T�������$�_K��r��~in�����٬�������AX�2������K3�Z��Ǹ��P��a�U�3����Z����d�X.0�� M�X�2��@M��(��#н̻��k�Ͷ� �Y��ǸN��#нʻ�-����Os�\��̽�����n� Z��TW���������Q�J1��JƬj��ƭ����v�.���[�EP�������~�ɰ�����t2�������P��iMU[���'��J����M�W� � �����fi;M=~R�4:%��E��Z���W�M��z�hH*DV ���I������R��,V��+Ϭ��M��z��; [H*D��FOX��Ȯ��hJ���k�c ���OX���U ����;=��W���PV� ���I��Ϭ!�)³�껻�/��FOX��Ȯ��DV�R|PE� �=���&��r� ���I�����,ƀK ����OX�Rt�������­����/ɱ���DVZ�=�K�-��������Y�����[��V���'�/si�Q?V�z8��~����.[FV� ����ڶ]Gο����\������c ��ûڶ]���nMRP��a�OW�q*����a�-�Ϭ��E�����)4�߬���� ��" ����ŷN”��������������٬FĬ� ���O���QSf������Ϭ��xNU[�!-�-Sb[X�+D����*����YW��RbON�k�d�EvO�&�!t���ڹ��9�p&��Y�?��������ۻ��7R�ư�X�YU��V;p�f�GR�K� M��Km$����������� ]�M��(TU�t���5�'CY�+�����ȶ��D�&������ �[��TKH؇��Ā[>tHh����M;�ƻ�Z�S�XPN��^���~��#�̿%�e��������X��ڶ]��X.[X�" M�� � ��)_X�NTH���0�9 3bM1Y[�����*n�V s��5?���������.Z�S¬���D��~ƭ���_<9TZ�Q1� .ƭ��~B>*HZ;/�ƀ��xJ&�H� j'ö!&��(�ɻ�c����#н�#н��jC­ï9��Db������n���X��;N�.G�YU���fa��Gο����̽��̽���魭.$�j�� �\���4pnP��a̽�̽� �3�� �*M�R+��^����� viI Qΰ�" u��#������ ��JƬm�c�VS�j���;��G���8������Ȭ/�Xh����� 8U��V�����T�Fv����Z��~U�{-X�Z��(T����U~�Ʊ.����ɰ��XĻ�Z�U��~Q��@�F�l���öKI��F=���@������琁��������B��_W��L�ˬ��>�ƻ��v���)�߬j����/��)��$��O���U��V���J�~�����ɰ��J��y�۾,�M�y� ���E���K������T��G��a�؇�" Չ���$T�:��Y[�>9b_JXZ�S¬��AY[���� Ͷ����{���XĽGλ�Z����d�(���tl�+b�\���ٶ����Ķ+�z�7�{�3��qQ������~��k�ƣF�Ti���-����Os�\��ڶ]�XģF����FV���}�rYB��~=�K��fa�X " ���~���"H^�CU����HC iJc�M�HCU���F��<�9����Ȯ��]� I,���½�~�.�U�ݴ Br�������(��D�����:���� ����)O���j�xs���FA����ڰ�L����/��I�m1�)��(�F�Y�ɸNX�q�����}�R��%({������Z �~��� ��C=S�� ����P��� A������._S�ֻ�$�Q ��5���S����ِc�Lr���YW�X������ö�������Ui��E���[k�Ɛ��A���]����� M�JKp��@s�OrY��2HCV_=�H����ȭ2�Tl@O[�ȭ2����?��lA�Y��9$%���X��{�ĺ������e���ٱ�t�� �T���Q��� ������� �Y�V@Ϭ�ɿU����y������?����A����� ������� �Y���"RV@�;N��OWۭɿU��~���IR�Y[U9� ��%���ˀ�\��#ܽ̿%ܻ��\�TGο�1��Gο�1.[�н�̽ջ�Z����d��XPN���̽ստ�������Ի~ ^�%�M����f%�)���Tj��k��ö�~����1��J�YhS�S��ƭ�.U��V��� �^�+r��el MUG�w�5k�ƿyζ X��~F���UKmW� �`�������RIE��9� ]!�V���������3�� ]G�Y�\�T��,�����3n�[��S¬FĬ$%:����� ���-�Ut�e){W�@��~ <��W�N�İ��L�ٶ�V���G��"W�hGR�K��0%����P��a�h�U�M� M��ɰ�Ͷ���!�����5 ��'���ƶ=Y������x�S���� o�JƬ��I����P�겶³��� ��T�!SP��a��?�TKmF�������~<���Jƀ�۬ ����Y��Ȼ�[��2��WMR̽̿���ܻ�e���6�ƨ�X��~��� ;R ��~O�S0���!V_QSf�]��� ;�mU�����ȱ�S������Ϭų�WT�D�ƶ�5R��������խ������ܭ����е��Э�����弭������c�~XĬX.h�6�ƿGλ�0��/s��2,3�8���vZ�ζ_j�:%�$�V �bKpV�,���R��0M�&��TZ�'�����ػ�X.[��w#ʿ�������Ի~��YX��������K=�Y[�& �N:��Qa���g�$%���Ri���� x����@��x����Y_�W�XW���.(���t�\�TP��a~�\���x��tϿ��jC�F��XģF����ˀP��a#ֽʻ�ӱ�"H�IEP�� �Ĺ�SE�9T_ <��W�� A��@.�������;��:����D���̽�̽�4��XYW๱WVC���� ���[��#ܻ~ <Z����0�V��2�ɬ�ɰ����.j��S�"{����~������k��(�� ET�� 9�����a����(��D�����Q��ki(����p�Y�\��~�Q��GR��UW ĀLI¶(��YB�P��e��� ߬��J�U���/��KYKm�+�W๱WYϯƱ������'C�O "WPY� Y��luoQSf>~�R��,�el M������0�������G*ƌ���=T^�U ����@�Y⯹C�R����WO�8���ٓM���;���-Lo��UG�XY��k����X�0����VS�:%���~����j�� �^�QSfJ�<9T��������U\%��h�����ܓ׻�����4��X`�S�S���^���٬XG �����ܓ׬���)���'CY0����-����hܓ��Z�S�XPN��^��̽#տ���������~����X��������x�����"�UP��a���I�m�����P��a�0�C���ɻ�����E���xX����,�M��N� [ �V�����M���)�FGH _2����EöN+��!���Zx�P����"�YU[�G��v�0�Tc��j��������Y������)[�����ƾ !����X����t sp$�M�غl]� +�xrI��_ίL�ö����͹�������I��:D��VFVj���ίL�� ^Y���N€ίh����I���D��V���� ޭ S��E�u� ���õ���խ�խ����ֵ��ֵ��öɽ����W�\�X�~��YP�@[$%Ͷ����{Uc�M��!tOX��B�TBU^c����vl�T�E�u� �!V�!�M�j��X��������#�" M�j�;N��#���ʻ ]!�V�\����OW��Z����d�Z����d~X-��q�[ö�P|�&����XW����Y�TX�A�&��:�� 9T�OW� W����Y_�N� 3�=S��ޭ S��_Z� l M��E������V�FvQSfJ���ΰ����V"���Z��'C���^�Y���U������a�Ͷ� �Y��ǸN�V�\��#нջ��'`��W�YĹ�SE�9�Ϭ�1������½�PX%��c۵P���ݿ���ܿ����ۻӱ��������Vh#̬ܽ۬̽̿���̻��/s3�)K�_ź�oKmW๱WY#׽��Uvt3��U�E���� ۬�E���xX����������X:�gbP��a���'Y�R�=����=%Q�Kmt��R��O����Y[��S��Y�����2��R�K�T ��+@.���W�&�Y� <3�)D���~�����E��F���ڿ�;+�O�S��߬����Z����d����eWMRi�X�N��~q�άR���F����Z�S�XPN��nMRd�;N��#�̿%ʬR�X����y����'Y3�)�$@����� ?0%;=(�VjD{=��l�M��j�;N��#׽ɻ�����\�����jk���=AV�������;�ί-���e��WMR��e��ñ�/V����U~U  �R�-��Ų�=vP��a����[̽#ֻ�)����a���Q�����SVX�N�y�~����sR�X�� ]�D���#ս�nMR;N�����:���hP��a����������nMR����Z�S�XPN��^��̽#տ���������Ǹ��[��#׽ʓ��G�wP��a��P��=��%����'Y3�u�L �C�?P�TX��s[��%�ƻUc���M�j��#ܽ֬�[=��Xÿ%���]����P�O ��$T���QYKm�l�M�)�b/Wϻ��1���۾ ���,�M�c۾ �e8�Q��� ��Kp��Kp��а������ղ������۰����ּ0̼ܼ�е�����=��������==�������ּ0̼ܼ���L��������F�=� W��(?���H����[��#�ʬFXV_�� ����9D{�����C�W CtN��Y�4�J�e8�Q�Sb[�$�b[�JƬj�I�mP��aǸ��L�ɿ ^̽�#� ]O����OW�R�4�F���Ǹ��Gο�<� �(R*��<��������X����y��#׽̻�e��=��r�ֽ̽֓�L�BU�����ɸ�fa��� ���2��$�Z�)»�"W��Y�����2�Fh@�_Br� X��Z���R�Ϭ̽#ʻŲ�=vP��a�����$�M����##ʻ�Z�S�X�;�G���[�������Ϭ##ջ�Z�S�XPN��^����@X�Y�����`sLo�V_X�ۅ���:����D��(�V�J�Yh���Gd~�R*����ȬF7���/�X��~�,���1.[��ɰ�IRƻ����๶_P��a̽#��Z����d��\�Tcΰ��ʻ�-����Os�\�Tin ]����D�\�T�)�Y�E��9�]�-����OW�� j��&���*"H�Y[�QY�W�[H*�����F�DN0�D���V�̻̽̽̽��nRh[F�O�S�Y���<�+��~U��"?�S���^|��* ��ۮ���O��J���tZ�$%:@W�~Q1��|1���g�P��ٶ�V���~X-��1��Q[�D�n������FVOwƭT������������f/K=����������������� �c�Lr�Y����ڶ]�? �&�3a���/�u����B�������^� >��?PZ�P�hWMR��� �O�W�K���Z�>� ]L sC ^W P�B� ɿ� ��K��'YQ�Y?V�B�A>����ڶ]X�"���UY�{��N� " M�����W�bX�Y⭽�;+� �LoK�Km��M�]_K���N� |��ޭPN��"���U`slέ������ ��jC(� ���{!��Q�X�*:����Y � b�< ]P��aI�����GR�� �G�I�m�����Jƻ�ǯ�� ���X�lέ�2�����)�J���I'Yc�9�W�AYtj��^ :���k�'s�\��ֽ�̻��,�нֽʻ�y��#׽̬��ʻP�[���Gάսֽ�:Uv^�Y�L���0�C�R��YO�W��oU�+�D����K »~c���c�������F���~�R��,VRn��\���Z����d�x��%�Q[#׻��G�wE������������T���ɭ�*H��N���ı��Y!��S¬)�3nMR>�p���YQ��U9� �HZ"�@����?�Tl@O�������Ϭٰ��$�ެ�ɸ���Y-V����Y[�Q���g��8��Y��I�m� nA:D�Y�m�@���p����E�u�G�=o�ɸ�V���Ͷ��2�H��Yƶ=Y�����IR�Yϲ���Õϲ�d~S¬��ػ�����)�.�+�Mz�������c���+�Mz����+��W�P��a�̽�#̿�������Ի����#н�#�̻�[���OW�R�4��Z����d� nA;�οƮEvP��a~�+�k���O�u�j���k�ƻ��溬)�: �/s[�{9K������޶�:�gxwN���_����J����iM���䬖Q1�칺�W�3�fa ]!SA�� T���gY�y��������������g��i��(R*���ج����Ϭ�����Y���� +HJ� �`İ�O��ɡ��T�\�����ỻӱ�������ȭ�Ϭ�1����ۯ��ƽ���Ĺ����������ſ����������������������ʻŷN¬F7���&�7���qQ_�!������ٶ�&���L��W�ɽq���v)�N�Q�<��* o2�H�p��q��P���ٶ��� X��C���PY�R���Q5�S�H�]���huZ4⭽�� �^�����37�{լJX�Y��8��w�N���� X��C���P`sU���qQ�罬Զ��Ķ+I'YuZ4'�q�3�&�����TX������0�F�VhX�V�S>>�/�Xi��,^�~W�W ��/�u�: tz�Y��!�l���� wOXȱ���T��I�m����)Sb[.����W���]�D��~X-��Z� �'C�����`�VB���BU�`!�� �HbZ����L� |�FA�~��n�0�(���ıJ�W���_3����k�ƶ<�&�iMY�A��(Tk�ƀ��m3(���b1�Z�S�XPN��^��̽#п�����������XPN���̽#ֿ�������Ի���xW�0k�̽ܽ#��Ѷ�W��٬���ͬ�E�T�\�����/��)¬�VW๱WY�����Jƽ�س�������X��P��aY0���!Vm�1����۾9��ýc۸�βõ۸�βõ�Z����d�[ C�]��c�[ C"�}ı�Ƭ)1�� I�ɮ��/����[X^�U���J�����~O�u;. C� ]��V��������V�����M���� ���Z����d��/K�����=Z���������9��Y�H��~� �*M~�e����Q�Gε���J�U��~e��$� R�����U�������Hȳ���D)¬ 6�Y̽̽̿���������Z����d���XGί-VLv���U�Z����d����a�Z����d�­ö̽#��4��XY�������ԬN��`�V����������-�Ϭ�� �Fn�Fv[*L�Z�S�XPN��^���Ǹ��y��2��i(�*h�\�������a ]!�Vì&��� A�K��3���3@�E���ίh��ï2�-��Z����d�y��2��c��#׽��ֻڶ]GοO�U���k�Y[XģF�TiI�����tU[��ŷN�n����� ���U^���[�I,���pXZ����˿�Ь���ɿ๶���ȱ���TQSf������ ö������'Yc�t$��QSf����� ö�����y��YE���U����V�ΰ�U^����� ���$�I/�E���U0�[UG�w �E�}̿���W�@�Y���R��o������H� sp�L�n�W���X���O�W�#�(P��a��Ͷ���"���_[̽��л~%���<��* oWc��� A�~%���<��* oWc���2���� vOX�H�Yh Cn����Z����d��\�TJ��L�ɸ�Z��L��P��a�̽׽п��������������俾���ֵ����<��*x��t�Te���E� ��O ��Z����d�[�I* ��*P��a�Z����dP��������˿���� ]��������������ݬ����껻�'YWP��Yc�t�������ܭ��̼ʼּ��������������խ�̵��؇�(pƬ��S�S�E�E��(p����$�YS�:@.�D�����=�Y[��ƺ�������U�t�{[�dӱ���ܻSD������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Clojure]e� !#""BQ!4%!!!!!"R""""#"#!!2!"c'!R!22Rc1!#"##Q""(R#!7!""!"�"q22!B!q2�"!!"!C""!"!3#"!r3�##"!!!!2D3G""!"�2#####2(2#!r#"4!!!1�!2"�Q3#2#2"&""!"&rr#%""#V""�ABq2!("#""3!!!"#!7"""cB%2!!2!!rc"�!B&##!'"a�"cR�q!21!""�"#"B""!t&a#!#a$61!2"#2�a!""(�1!"1"%"2#!2"#(34�!!Q�4"$Xqrr�"�"g!"""R#2("!"v!!"&!r!A!##$2#""!1!3�!�2!s1A"w2""q"2"!"�:(�1!1R!!,"�!52!!"7%3#"�1&B!"!1x"2!!"""A"S!"7"&Sc"#a'"�"&6Rr("1'#!"br5"!!"1R!&!%!"!"�h!21S!1""4#a!"x1B(q'""�%�!'"uB"#"!#!B!!5�!!"!"!"!#!"#q#""2#hs!""W"v2"2!!!'!"2#!21"2"!r37(!""!q""!"U3b!74!C!#"!"!"""!!Xar!!!!c6"'"""383"qRrR!F!""!""�""#!B'r!F"H1!4rqQB"2#"""S7"�"'B(1$"'#""b"$2!"+1(1!R"$#B3("3""23qxq!!�'t"!2%"!!R"1R"Q##!'�!s!a!!3"111!'!r"R%r"("!362��q""V2!Rr1!#$3""##2("!"!"&R"!("%"B1"115!22"r"b!!2C2*!""!B"$"Q"#"A!2!+�12"2$1#"1c##!#"%"%""3"""("�!!""'#!"2'!+"(1�!2""#!""!"!#!#2$r�("!#B"Q&r"�"!!1"""#A"�!!33!!w�2s$b!"%U"""!3"""""2"���  '3<DKRU]lgpl-2.1isccc0-1.0unknownagpl-3.0unlicensebsd-3-clausempl-2.0bsd-2-clauseapache-2.0epl-1.0mit�]v���x��� � @ P �@ (���pD��$�X�, p0@� h� ����| �`T�� @��T�P*@ (� �pP�8 `�V h,@��b� �3��pT�:@��r�P9@���T@�*����z �?@� b� �B`Pl� P9`����P&�`b� 8E�#HJ` 0���@I@ ,����pL� @�( ��xT� T*`���Y� 8-��PK� <(���T� x+p��XN� @�'P���N <*���xP� T�%0��O� �(���xP� T,���pd� ��3�ҀXl� �7���q@ �90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� 4�� ����B��!8h �6�� Pk` ,7�#7�4A��#��@L�3@ *�%�m�`K� ����X�K 4�x�h4 ���� 8P (�%�� <��8A'@��O� >��`LP0@�@5@P�J` 2��@�Q F��`RP J���Sp P�`�� P&�4�P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �Hj@�6���,������r`�9�@�h��< ��xh�@�Y0�!�j��B`Hj�@�Yp pA.@�@('� t�.�n�(�G "�$�g@ �F� ڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b��m��_p ����ȁ9@��@u`�;p�� @��� �A0��`�Sp �� Ġ�c���/�Ƞ$e� A"����Sp PA3�@�A��h�<�3� �h��"� �4xDg��4@Ӏ��j��5��0� ��xh@<�l�4�3��`��� �"H����n� N�)�� <� ��x�  �D���rPb�98� ��t��:�t@�v��ph@́w0�:H�ȃ[�=0�؃[��>��`����� �����[�B@� ��@@X�-�! �[��@A0z� ���@p� 9@�@  4�@C�h�(��P �Cxy�=� (� P& :�D�f�T�P ,�B��#d�QP ��� �CP ��2p�"0�pԀ*`�� �5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă� 6G0�#|��0�Gx,�8����3�!!$8����  #�$��pPH A$���LDX �%��@J�.�$��`BL� 3�&���P�@J� 0�&��F�L� 3!'��0fBH� 2a&䄐�r�L� !&��0D�H�A&��@M� x '䄙 d�L�4�&��``B"X �'�4p��38J��6z�OP��~�pr`�9�@�h��< ��x�(4�0�P C�(�kp b����x���0 J���x���?A 8dp��Q@ Ơ(0����JP �`)(g��#h L�(0<�SO*t4��� m@*�x0��LxT��� �@p�*D9� �� x�h4 �h�<� d� 2A&\D��V`L +0����@Ӏ��j����l�F��BL� ^�!�=��X bA,t����W ]�+���`�D@ i�$��@�@;P k�-��ЀZn����B� t�.��0�^� za/���� w�/����^ w/����^� ��0�P Cb �!0ð��^` {�1ǰx�a0 �a&��`f�L0 ��Ðt@b0 3a&��`fBL0 3a1�`�a�!2H��@*�e� ka��0�@� ȁ9�2[�x@3�u�8CgXr�3|up@Chh��0�Ѡ HChxX����r� �:0Ѐ�x@<4��exA�\�.Ci0 �AX�ӀA"p�@+`Fp��ex�� �U�V8hj���U�P�@ �9� ��@�@��<���h��*��������U�T�?�`a� �D�A���F�`+�g@ �F� ڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b�H z� �������!5ȁ9@��@u`�;p��Z�؀��@��3(�@�����Ph�`��\�k� h 6�7�f�� �`6̆ڐ (��6 �D���mH �7�ݰ�P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �o�m�7�_�����7ȁ9@��@u`�;p��& o����x <���l� �`6@*P fCm(!@*P �C,�!@*P �C1� H!8�gp��1�7��  ���p��p�m����p�s�ȁ7���@v��A��pĀ̆���@�@�����`�a6��@�� HA��`��m� �A7�X0�^0�$���X0�9��� ��bH ��9@���҂t�Ӂ:T�p�sh��"0���CZ��� U�`�vh�&4��w� �A ,���Cs��;CJ��<��p��w0�A<��z�ȃx(��0��P�C=8 )<�� ̃w���;�@�CJ83<�� ҃zH�=܆�pf� p� ����|�>ć00�C|8h ��5�ڀpk� 8� �Xr`�9�@�h��<���@{ ��>P�@�� �7���}� ��*�A h�<�A�P�@ Cp�@Pl� ��q@ $��  �D ��X�� 0�0pA#��h*�4�#��@L�3`�@� �7��P�~�o��`���r� �:0Ѐ�x@8����`h��6���p��4�BC����F0fCmH� ۀ.�R� H�\�pt�n�-���X��@-���K@j� =�Āho9��x�%�� ��xB��  �P8��M� ���@��q ����$ � �B��g �5� ��`m@ 0�� �@p@ 5� ���s�ȁ7���@v��A��8����)���=��@|�T?P� �� �=��@�~� �@A"���4�d@i@ �7��� `�@0GphN�A@��� @���= !�@�B@�N��p�X�N��@@�D �h�<F��5x`P4P �` �" � �@1p"P�b���m C<�Q�!��Cȁ9@��@u`�;p�� @�D �!�@�B9��!4Ć�@Ch�"���B�j�!��@Ӏ��j�� �)����8� "Dcp ��b� ��28"� <�A"�C�x�!��xh@��Ѐ& $�D�M@"Hĉh@��"���r� �:0Ѐ�x4�� @�4��!�Ġ�c���/���d� �A�Pr�-h9p�[Xr�-�9��&@r@|��XDXh�E�V�"8ÀPkA�#dČ�4B�q#pD��g E�6�#v�xo��#�&�7� �:� Ѐ�k�`Fp (�@*P @��� 4��x P���3�T#Xm@ ��V� ��j���U ��oԁ9����y@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀��m�G����>Bh9p��� �9���Bb�A��8�� 4����E� <��� 8��H0Q���(��H@��$���`g`I,�6� �h��I�P�Ē�s�ȁ7���@v��A������*P A"Q�ID b�$����n�@�p%�J�@���x@������VB�1 ��@B�: ��s ؁;��ĕX a)T +� (�@*P @8@ W�H`�,q��R��Kh �`��D���J,��%�����K4��^�K\ =��8h �0�Ԁo�5P���s�ȁ7���@v���<���h��*��������U�T�?� @� >@��(j��C�Ҁ@�� 0�0pA#��<H $�$8h L��1��Ę(o� 8�Ę�s�ȁ7���@v��A��@e�L� 3��#@�I��4!&�D�L� &0&�ĘXb� � 11&ڄ�@L���&$��xbbL@*P ��`T�0� (K�^�zA��� 8� x��t@�P��w4�x�Sp 0� Ġ�c���/�Ƞ$e� A"��Q F� @�4�� @��8�ڀ�m� !��oԁ9����� <�p N8����8q ℜ�r�Nx9� �/v ��;1:A ���<�'���� h*���T � #���x|B��'�AL��O �(���P�@A�@����4Cq(E�`�%,�F�(�D�`&�Ą� n@�U�܀� n��x;�O��F�P�@����>!)�����RH�>�n���}�܀I���{�R0�Da).��d�L�)6�p��Q��8� ���S(�>����S�P�)�X�"%� `z � �"+����+,D��� �"@x, <G��p �HZ�@V� �� � E��` ��) `r���Sx���(L@���B,x�[A4�(�� t�@,��(�X� >�X��� h/�+D� ��W| ��n� ^@ � `�ç ^@��Z!L@� Y� �p,�ű0�)80���b$ �,�E�p A `�E�H��4�d�,�H�Y$ g��E���4�e�,�MX�4 �0�E��b@�f�,�ŲX�Y �h!j�pH�iA-�E�� �Z\�j���(�8jA$���D�Z �l�� �҂HX ��-�E����HH "�-���[@�-��pԂH`�k����B\� r!4��r�-�9�ځ@u@�9  @+x�a@��� ���2bF�!j���8"Gȁ3P.�@� � ���r� �:0Ѐ�x@����� 07��4p.��xz`���� �` ]�����@Hx�@]�&B�P��X0�&�B�P�"]� wQ �@H o@]��t�.�hL $�uQ ��� !�Q4&��H��]�&�.BBH`�]8�.��x����x/ޅ���"/�w�¼�&%8��=`$�؃xa �Rp �@�za�X �@� �Ž�N_���(P�@��_�}���=� _� (�/f�S�A! | ~a/��N%y�/�B�0� � {!/ �N_��{�셽8�` =�`���`(A��@@!����0C�F0 (�"܆�PD���6 c���m� 6!a( ���EpX �a8��1 (�),�ۀr�F��A7�@1�D U"P�b� �ŀ @Ap�7@b��P@�7� @P���M����� �;@r��*�Q@ G� X�0P xa�bT&@h@��b0ۀ���(T��P@�,H�3�1�@� ����& o@@��7 ��oԁ9����K�V��@��Rp�`)8A��@@!p���1A"�T�$gP �3d� �pj�H" Ԋ@+A� #dg����@ #�d��!4�:(&�\ȁ����Z`a�Ea2�[�r����"�@[hr�M��0��Ep��ւX 0"FȈ�h��6�F��!ʨ ���ڐ2R�xH�6�۠2v@�@ +�e��Q�Cʰ *c� ���Lp2!����ˠ��I���3���p&�e� �aX�Lh ,�1��q 3� �,`����2X@c���� �� x2�Ȅ��d�Lx2a��� \�h 2A&� �!�L0�A&x���g� ��e4�A3�g�2�1�f ��Lh �A&�f ���h 2�eЌ� d�g� 4C&4� h�Lh 2a<�Q�J� � C<�Q�@P���� ��3�ͨ �Ag<�QPJ� � (� ��BB��:g�!j�0:�6Ԇ��3jCm�@� 8��!Bg� ��3p���CCg��QPBm���6��ڀj�H 7�6��� �Fm�I�h��!A4D���:�6���� H#i(��� @PX��#0Kc, �4�F�p&�i؊S�4t�( O�$@��5�FI( &@7�ݰ�?�,�8����� �Z��05����T�j� �q5�Fְ�� h���5rE( A W���+�F��bj� ]�BZ �%�9���Z` m�4��\� u�.؅p��^�x��6�ƶcC ��z@���bcA�Q�C=�^�l��qPtEe0ecA��z�+*����l0� �X ��l���aT��@K ���p6��mX h�l��p&bF�PY�6����6��hg"f� �q��`Y�6����6��hg"f� �q��`Y�6����6��hg"f� �q��`Y�6� p6�F�8!fČ�!�B�X KA���6���<���xpc���6��08g8 ��)X�����A7b݈ u�؃�`7b�=� v#&� ��܀w'� ��3pFL�1n��3�F �1����7���qo�  �FL�1nĀ�@7���A��� @��A�Y0U &�/�7b�807�oD�P�Aapւ ��� �FP���`G�dap��!8 G���p���*€�zq$�8h��`+�T4�A8MP�c< p�� � @�9�C�@!H�9P�@��r����&��crD��09� ��crx�A9����rP���3��@�=�;D��09  �ޡrX��9,�&`)\��-2��8h ���6��o��8����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@ ��x�B&t�$3(��(�kp b���TX�Ё� |��5P�!0� �5 :4p� �F�#pg`t�1 ��@B�: ��s ؁;�A"G�(��A:0x@(�g���"P�b�p��(�ҡ1.� @�4�@���� p��8z� �7�: �Ho���L��s�ȁ7���@v��A� �3X`u �D ��x� <� ��x�$�D�,`�� 0��p��m���p��x�F�:���r� �:0Ѐ�x@8�� ��x��ut4��x P���� �h�<F;:x�ĎN��`���X�#�����#0@���& g �5 �@Pn`�YP ��q@ �90�x��4`�h�<4� �,|��5P�!0� �5f�-��$A���.���F�$��`@��H�:` t@����B[@, �� ���0� ,��� @�  ���h�@��q;��(�^ w��! v�(���lt��a;l����d�;��(�#s��a;H@���v�/���P� ���!xǁ�P ��q;nG����v���a;��mx8���`1�HZ�����),E��N!($Z!<��0Ãxd�^�, �X N��0;bN���*�@"(L�����H�"P�0�E��T &� jDX Na[� ,H�0��x����<� @����:A�P��604�������y8��<���n�8�q�G �T�y8�Y�&����DBЁ��<�A���\������Az@�Z!z@ �h @���z8�� ��� P�V\��$ ����h(�=�ý�l{� ����0��^Ą�=b��`j"@��@M@�Y�&����P@{@�ǽ���z�5�=j��P`{8�a��!!$l0"�GP�܃{��=���|��ah@#�܃{p��=�G��&����fBH�|p��0ʇ����|���A�A,� Ѐ�A� h4���1>h��g h ��@�x�@C�4��s�ȁ7���@v��A���BC��!:D��y�|=��4�h��=�1`� *p��(X�D��p ���@Ahz� �_����}ȁ�?�ph@��!��x ����B (A<�<���� ������`"P3� *D(A!\�x�2�(p�"0�0�G=� ~ԃq��o0�c~,� 4@���A? �` �~Ԍ�!?�֐�`�������c�@?P@ h�@ ����E �-��jP Z@� �A~�I�b�3�7���@I��"Џ�`<|C @�~��?P�@� �@~I�?��Pn@� ]P#���0���\"�� � �� Y�H 1 ��@@���߃��� HLhޡl�? HLh$�����!$�Y�?d����ÀĄFp�r@z@�����P� y(��a�x�cy����<�Ar@�y�2=�(P �c9,7��¸�#\*�<���pD�M@"���mpΠ@|�� .B�@ �@Ё� =�A�,��4�����D@=�G����4�{� q �8�!� �3 �x ��E� C��Ah�!��B�M� �TЄ�@h� � D���0A�i ��Mp ĂxAh�A���� �A*�� ���AvC� d�p���@:H� ���l��AB�P @�` �!!D���BBFH� ����� �@ � "%((��CJ%�:,�� Lvx��0��70BL�y&�V��Z1BN�rH #D��(�R�a(d���2BFHQ! �9��� C� �\�pDLXa�:,�a���"�)� A�B�p � ����RX (�,����`.�8P!��/ <PCbx`�8�P+�x!T���$�1�,G C@��z� �U�#��?�G�M n�@u@�9 �ABHL9 ��x��8�!�@= h�H%�#��x P$Ap P��` >�,Q���� PI$ %�΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���Xp��hb@��7���t@�P��w4��)8���op ��)�rbN� :� �/��`�4p'FC'���S�'� A5��,8�A"�T $=���F�)�%� ΀pz� �����ho�������t@�P��w4��3 Aa( �@��5�x �cP���((g��Ax�%� ��!`G)����8 (A)Ă����`M� F��"p ��)@�N��8j� 0�U�X�*Pn� 8Ԁ�s�ȁ7���@v���<���h��*��������U�T�?�`a� �D�A���F�`+�g@!�=�� �n�v܆7��� Q�C�: ��!p (�ׁ �h�<4��!�"\*��l� �"P�b`��B�H!aȆۀ�n� g�'0B�Cn� @����:A�P��604�����h�$��� tH�p� 9 ��<���`� �0�!2X!�!"a\��.p�`V� "�&���t�68gP >@m�!z c���m�РV���P��@�A���A"�Σz@��C�*0�,^B�)*c�q D�XE�H<�"@$Jœ�rb�����C�! ��|1T�@�r�2Ā�/���P�BNT��4���0E $� U �a�B��� >d ���CTA�� � ��CB@P� �Q�DI(D�i��@6�@��� "DЀ Y�`�|�u@D���r��,uP2n�87����##hD�@"ID��"��X"=��"���!�4 �A�, ��DX@ �Aai4 �-��� ����'EnB��� )2E @�� P�`;��m0�A`L�*BE���"�Cz܆�pE��m�@�|1d�s0XDd-�EĂ�"YdA���E�XI!)x��q���"I�Ȃ,�E�Ȃ0]dA�-�E��Y�Ȃ,�E�Ȃ`&`A,��E�Ȃ�[ċ|*F�u#"`��nQF���f䌠� FDQ#�A���5��u#8�x��'B�Hq#�A��nG��s���P�#e���4�F�N08�x<�'�Fڀ� w����1BF��1x$����a#l��6�G���#Œ�32 �� �!$���F��i#� (gp��3�m ���@+x�%� ���r� �:0Ѐ�x@����P Ca(2` �A,�� ���@<FA 8<��@p�'(g� 8 H�&���Q@ J!,%� �#h L�(0<�SO*t4���z� �U�#��?�G�M n�@u@�9 �ABHL9 ��x��8�!�@= h�H%�#��x P$Ap P��` >�,Q���� PI$ %���$G�� � �`���`1� �(�j���!H�F�$W�%��a� H :��$�0$ IR@ �$) ���IR�(�j�E�0@�8 (�(0��&�D��M�&�h@�I!�,��� ;`� �$]Q���H ( )`��H��h$�!)$�F�@#A��T�*���h$r$0��H�� p$r�6ԃ*"jC=�#��8&��A L�0�TAm�"ځ-�����v` L{4�� �BmH �� 89�H�( _ �"0��x$Z@�0���`�H��@$�$��L 0IL�|���>��� ���8T��3Z� h�b�x \��%a7�[<�pIn���&�XHb�@ �$(`�o1I�@ 0|@�`I"I�H % �`>�I��-�M�B�X!�!@�Mb;��$����<�'�xl�Iހ � o� �<���0��'�qJP@(���`AxBLx� ��F��A(%<����7 B� ��$&��QR E5h����j`)i-`�T�pb�()%���R���8�x�0����1D � %-�XR�b��Q�q`A��%����`�@�Dr`���)����60 *I%�d�V�J\ *Y����JRI,�% �<���`H�� *a�� � �PI�`� �&�J��P���p��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �@�%�� P�5<4�o�Z�j�`o04�6!x�/PKB�_�+��l -�D� X�k (L� b`j�8� "D4�x@(��@Kn�����\�K:x`8B�00D����0΀`B�Kr/)����"[�%�-�b�KL�/�ƠoD�` �n8�H�`B�$!ځ��p �0&��`b ��d�&�-2�/����!��I&���B��! @ x� ����A�� �`x��>�RxA'�QpT���Ae� 2^� � ,��@+1q <8�ݠ<�E��b7�!QL�E� & As crL �1A&�$��z�6� �0��dd�(��X&�$�@zڨhc��P: �"f����0; <��L��3�&�](�`܅�p&�W� ��.F�8�B�����P�$�L j� ��p�d���q.��&z� �j�Fn�&�D�����Ph�`��H ��$(� ��q�¸��"P��p��38J��6z�OP��~�pr`�9�@�h��< ��xKA 8�3�M��hڄl�����$��W��;@r�4�@7A���g�Mx#�&h�`�����`)`�lr�@�;�'!��xh�H`��x <���g��q�ڀ�m� !��oԁ9����� <��@='�8�!qȉh�����0'�@�g���x�Db��qN�9A'� `�l�ڀ6!ۄ#x�7��7�&r���Ѐp� <��M'���x^� l < 0�6�& �8��`�� �uRC։�H'f���vb� ��]�Y�� �d�Ą>�N�D;1f`A�Y�.B�,XI�h30��8z� ��S� މ @���S� �A�p'N�ԊPA"����O���' @�<"�<)P h��1+^G"8��̓yBO��y1`��Q�b�'� &�~�O+�'�0&`�Ia�ς 0���r@�p� `J#��[@��H�:` t@����B[@, ������l�@x���L���"$� @P؅�@��H��"b�0�h8�� ���O�\-�EI��3��0l $$Cb�H0��%Na،��*�P���� (<��� >����`&`X,�&����� M�J0&@%F�A�P�K��Pڀ�H(#�<�q���BY(�!���P y7����΀CiE;80P�B$��� 8�P��Ch�<4� �C���=Q���p ���@Da�@�1 ��@p �0�U \�x��9� B{��X�� �(eP�� ��0%8�QQ* E BnX�B*@0Bnx� �P@E�(BnX� `QF�(g@|�6�.Jo �!<�7��F� ���4(KA0*P ��H� &�x <���QxA"��top6 G�m��x����(��ȁ9@��@u`�;p�� @�8�!� DI�p�����Q8Jhg�������@Hy"e���7��I )r@ȁ�@�h@ȁ?�bBI)�$A� l� �f ��x��� 0L�I(%���z�V Ki)9`����R\ x ���BL@1 3a1���0��)8� � � ��1�4�x����a "(�)�@��Q�#�`�`&`X3,�&����� �X &p, ��@��X(� �L�A#c`,04�E��)̢��f��M6�SЊc�,��Р)��V��p,��(�,U�0����t�����) ��|`���$�T��SPB7P��@0r�N�)����S��pU�`� �p g����<%��7� ��(x&�� �2 ��O�)9�8�Q r����) ��"T0� ,�S� ��*B�,�&�TX !�i��|5�� !�i��|1T��� *�mDIPT �S�F�`�����0� < @+��Qq��t4�#h � <��RA'@� ��� Q*K�5`�`�A,p JE�` � �M�5�|�2��0N�<���JTQ*��:�נ�Ju��6��� ̀ p� 0���9a��쁩2U #pT��Fp� #�*�@+8�pUrV�p<� av��p8� � @V�d@3`�r�U$�S�[��<�0P4(� <��U$� ` �,�Qn�DX '�`��Q2S ^E"\��U0_eA<&��@XL �,�|",�� ��6V� $y,_� �ȁ9@��@u`�;p�� @� �2 /� ���o� � /h ��� V�� +�|�@VB@ 1b%h�� @h&@|����A+��X�D�(+e����Z�xo���PV���o�M��h�<��P�JY�s¬�� �7�T�h�p �Y9L� 0�3�V��m�m@@ �6����s�ȁ7���@v����V�JP0jk� ��V0X��y�[a+������V�J��p�$���� I�+8�<�@Wp?�+�î�@� �v%���r��hb@��7��@A�+r�}��7����~4��(x� 䕥�W�B�� \D`$���+|%$8���W �_� ���f�.0{� ��B8��^�+ B���`ܸOn��X �0n�{�D�F`9%�a���2XN�w,��x�S��`���\�q/��,�a��X�u�p�:��7 ��+�n��7��^�+�%���,L�g�p#�� �X�g��b�'QX@ZPH��E�X�8,�<�� ($��RL�a P@�pX�@ 1 �0K�a ��âXbc�|C��b@ `)&�V��âXbA� �%\�*qXKp,��@Ȓ��a o#P���X�Fp,�屼��b@�1 8�0�Ad�,N� D� Y&Kd�, �<�Y1+�`@�PYL�E�,N @���.�Qxأ�D��=L��� �o� ~P,f� �� `�����M�7��ߠ��4��AH��YP@Ƹ$��&`�؂da ��&X�����C����@��f�,���t�U> h18����z�YB�-N���0ZJ�-Q�vtU:�� ������E=�,(����0Z����,(�t`6JKu�9�����RFKT��T��ҁ:�`�9p�A;���90���� ��rZX�<` ��<Բ�Aj��e@ ��@�E �f�Z����� Z�!s��Z�@����@Z�� B@A g[���� L�<&��Al� �Ė|![�AlyD��(� 4��� ĖZ`(f m�-�@��M�FAL1@���bK-�-�%h�7�I��(� � &�&���N�:��r�:�^������� ��@ ��RƇN�L@'�R�F`�C'� �5Ђ��L`|�{�[�ZP)�C' h�t� *j ���00� ,���0@n1� �v�L�na�C���&QP���-L�I4�&��A#��,4�L ���@�hL`|0��[��#��,�3�`�% `��4r �� ���$J`@��`Cv �� ��h (�%��na`� �b�� �-�%���5nB,� � �&�.��@�-Z X /�7�����Bb0�R���`Ål���@6���-L�]� �Q| �ĥ�� �qA.�C�ũ� �� �a>�rQ.�4��\��h.ϥ�4�S�\�Ks����l:0 r@q��%��]� t�.�%&P�B��t9.B��?A� r�.х� ��]<ğ��ź@��B]� t�.&����S��KsQ؅�4�2�Dv���D��@��.`�o� @XlAh �� [��������åP܅ ���]P��h ��0L �@���0 :���]�K5/�E'���-�˥�.l%��`<�#a���R^� yY#�e�T��F� N0l����?���2I/b�����/^d����F� {i/8�x���2^�k� �-���FXN` jŒ�2 �Hh���{� x/�%D��`N� �/��L� p �A7@���>`��|��e�x��b�}Q�P>���@�-PCT�P�@I�����"��}A�|��B&@e�"�|���_��)��%t`_T��/T�|��E|�0�[���b_>�aH!���r �T@��/@��� ��b_>�}� ��b\�kX�`����T�KP �t3�_�KP�/�E���_�K~�,������_��kh)a���_�K�/f���X�.��� �����b;�FL�/�������K~�/R�]@��_� �/�%��אJ@~�/�����_� �A ��5 ��� b$ �(���(r�~q F�� Pڀ��)��(@��@��Ѐp؀�BȀ ���(�kp bA8`��8g� �"H� <����� $g ��x�@�j0 ��� T�@�� @�8A��p� <�p��38J��6z�OP��~�pr`�9�@�h��< ��x�(��0��� ��x�AQ�x  ����y� 8���3@�� �` �H L�(�� ��pn�4&p���)��:x� (gp��3�m ���@+x�%� ���r� �:0Ѐ�x@����P h�`�0�Q ���<�1( �ă`��3�� �~�p��0����AQ`I� ��b�RP�� 0����#��8A��B'@��5� �*`m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`�` ��$ ���` ��SN Cb����0$ X�`H ���Ɛ0`� ���V�q� ����Ԋ!1`0@�0�"$�,B�~����8�*�BB08� ��xEH0�E��B�X!��PT� ᪘�fAH�"d#$��Y��!&$� �@6΀P�` �6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���X0LP0 fV,�`ty"��<�+���O$)<���9� h0 ��<�'�`�1�<�'�R�Ã1���@P L@) ����28�8pBn��1@�� G0$�u� �!h���X0�9H B@�0 �p�^� B9� sĄ1 ʁ:���) u� �a��Oa&�a���:,�^1a ç0 ��:��@��u��aA`��+�Â��A�\�F� .�uX�aA� �B�� �%��`��s� 0��8��`f������Pa��LX 8�:�5� �*hj���U�P�@ �9� ��@�@��<���h��*��������U�T�?�`a� �D�A���F�`+�g�z�=�zB+� ��z\���0�C'`Fpx���S0N�)�h�N�<� �@ �!h�@�Y� ���(+eld� �a����`=tB` �C'47��"H���T������@�A΀Iiox�a|�x���`R�&�7� �:� Ѐ�x@������ < �$�D 1�`[�7�#��@+ �D A31$T2` �A,X &e)0����Iq '�V 30��`(1L�L ��&�� %f������0��R���@�@0�&���`�S�0��>�Oh� �� J�`X�aM&05C� ��D��L̉r@ȁ �Š�m��P4�r�����:X r`-��!#f�?�r�F؈�#r��#(@ �b�� +����b���CW�cV@Z�1�#��?`L�A12��#cf �qf :�,bc�����ID�m� 47� :�$h�"��a:�$B��1N� ��c.�(4���@L��aД{A�`�cP�( & :����@�1����34<�I�� � �Br�c7�p��-�Y �� d�� `4 �T�*2a �|@Ȁ` �`�8��T��Ł�P�!r�*�&��(�E�2� ��P�@�Q� ����*�"�I8 n� KA�� D�RP$�I8@T X �`)�aa��PC��U T����@ #� @r��a(]�t�@����#�R�+I � ԃ�d��P2KF���CJX2������� `2���0�e�c�Y c�14'crLL�.��!|���L�*X Lf1��'sdtL�1$c)$��R�*P)Aԃ��؃*��h�'�D ��F��0ZB��/��L|�hE q -�L(3 s``�x'zH+�!$NL�8B�l(�@ L��'b@��Q&L|1D���)��Sp ��7h��x�7���)x�`9� ��@� �W ��x��`�Sp D�ݠ�p��8`� g�<m��@�́nP��8�*� <� ��x� <�0� 0̂Y`�#p��X�+ce��8ޠtp D��@*�����4��0�@d`,cD�a0 @����`�LH�!A?*FDH���z�eA=�2&`)p BP��=Zf������H8 ����A \��8��y9��l�7p_����2o� t�-�e�@�[� ܗ7�e���]c��7`Z��yN�� 'ހ��2o�˴���̖y^���V�e�@+x��˼'� bBI�O�7�e��U�D�[��� tEe3O�:����4��H*�(� � a�0���`�A{ ����y`*@̌2�rb8��< �2szu�����Pf�Cf)3�`h���q/��y�a�3C�y��!)Ă��� �y����1���a���0��y`�`��1��P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �@0GC�5�f~�@��U�`3GCh�6#��� �9�A"�D����.@������B� �� &�)�@d��\r܀vaT@?�b` ��l�h �CP ��2X� ��q|�h>B��7�����r@ȁ�@�h@ȁ���D��@4��)��`H��P�x@ �"��T@�@�T`$���(K�G�pp$�T@IBI0��0�X �,7�f���� Ԍ�jF` �9���fsx39�f����`��� 9Έ 8�����9 Έ�8���Ƞ9@È ��Ȩ9`��1B���3 �0��`j�i3�Ԍ0�L� "�Ԍ0���h�8 �P�S� ����@��A)N�&x  1�L��,o��ԙ:Sg:Kgyoj�� @P� &@bĄ:Sg:��3u�QtF����tf�Є:Cg� M�3�� �� 1$���,CbH `<$��3�Ab��`<��0Bb�0����3& ���g� M�4�>C����3~���Fa<��3���0 ?�(t��4�F\A#PŠ�;U 'A,M�qy&c�0 �-�àa~�3��H�@X��` �D<G0 -` �`�[�HD8���C[�H�,a1,� �!r�-P�F�C���l���.���p4B�[p G�+rE *+�����- J�0�¶�����l�-�n1TA�4<��װ��~q JE��� i�1��@���4�L� C�5D�H3 �~�4� ��H�CL�4 � Ƈ@h���@i��b� ����r* �� �A�0��Pi Oh ��(�p* �� ���(Ks* �� ��Ҵ� �@�f@�i �k�4�f��I#ă@a|��!�@h���"r�� �!�H��iR�B�4 �l�� �;4M0 �����i^ERh�a����*���� )� �B �����T��P€��(�a�TOSV@E�4���T�F�ijC�5�l(��i�H�� +�6��{QV@m� ��oԆ�Rj� �C�T��P�O� +�ƌ�ڰ���� �aؘQ�;HM0 %j���P^ER� +�^��W1^ER���� �5P�@�� �7���}� ��*�A h�<�R!:�����I@Ȁ5���s�*�A�@�@ >@��(j��C�Ҁ�Fn#h��8��kz��1���^�k~ͯ�5�f[l ^n��2�f ,�:C�1���� l�KW����2_��|�/�fؘ�k��)�/a`�̗_3lL� �/��D���ǯ�5�}�| L@�/�E̗�" n�)6W% ���e��U�/�b[l�^�"�ͯ�,�� ��k�M! �`�$��! ���lB@� �&٘�e�_�ͯ`!�WL�ʐl��P6�&(�P�@H6�FX4�d�l��a��&$� �qd�@3ɦ��_1��� ��B4��l*��p6�<g� FD�0N,�*�L愜�ТbH�� �De�"�$ȉ� 1pE�x6U�D��@H*D�hC�� i#r�88&9��H �`^�1�<�P$� �%�Db��qL$�88&Cb� �I��1�`� `� ��)�<�j�P�A�}<��BK�/�EWT��R_Ђ � �a+`��P_� v�/[Kl���� �6�d�� �"&���� ôo`+���� �( ��@� �'yoham����6[!\��m�x&@�{1m��@�� �Q Aa�6����m��~`�8&��Ap� ,�&� ��~p@?8g���`p@?0���m�^�6�`At`� �B�ۢ��m�A`���x2�9�@R ā � &pJ�K�H ( )Ă���A`��� �o�,2H �� <����$�L$�X���P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀pg@ 8=�BO� J���7���OP�@�: ��s ؁;�x���0�Q ���<�1( �ă`��3�� �~�p��0����AQ`I� ��b�RP�� 0����#��� D�q4�@P3k�h�x�hPo�6s4�&h3r� �:� Ѐ�x�r0�pa��5@��0�@��5��@�T��n�.@������B� �� &�) "�\^���Q�.L� �3P��h�6L �`C���ȁ�?�ph@��!��x�!��n���B� �q3n��C��`�=�@1`T� H�N0(�p�\�pVN"H"���1��� ���:x�ܠ�)1%ʍ�97dݜl�n�D�17熌�lqn�Ei)����C�AX7?$cXvcifu '�`�zqJ��)i7?���w�n~Ȼ9,�����o���7��ݼ�xc����7B0�T�b#�� <����ld��5p��X�D�LgP!�͆y� < P �x�:�D "�$�7�F��{�oL��-�����o�M �7�F��0�þ1�&!@~�V�T�`��iq�fpV@��+ ���}�T� �+ p��oV��Y&`߈��"��k1�a���tŋ)�F�� 3VK��7?cH��!��;q-���웟1$�#�@� ax�bR��b�0'�"T�����#�"B��(dG�U B��SN�U@v� !` "��(81�~���PBǤ� 1�~ g����� h�0�" C� ��1���C�4��l11!�r d˂`��P Ca(bB�0Ȗ^� ��88�P���(2��&��3N�@��P`( EL@8�@� F d �a&� � �l1O�p @XE�P� p �(�f� ��`(DF�af � a2�p "%�/`��(xa �95B�` j��5��LX8!j��0`��V`rd+�95B�V0r��9b!B;X8rjd :R$��� '$� GD;�#" $��D� �# �ȑ��X;�#G����@�# '$���#G���y8rj<:�p��LX8! 50����@ L��R6&˳���BH���-Z�L(1%�X9�-�����B�n9t�#�=H nQ6&K��8Bb�n!G����[���q,�Ĉ ��(n]����[��-��@�8�[̄�� �E٘,��T !1b��8)!% �`q0�P��,�`q��Y���(��,NPX���\������I Aa(����x�`8�P��8y D���nP� �LIP 4 Pp�� 8N��8�� ԃ̠ 0�8��d��q2�r��x�̠���8�A9�L3�_� \��PB�`|^�@h�!`����q���*n����_�) ��MB��99`Ӑ��crN�9$� ���@f� &`)p �PBC� Jd�"��.`<[�QB;,�]��QB?��%� Xx �D��"]B��((��l؂ �!"D����C�8��[d kAh�@v x�[���]�E��,�b��������Q$o"�E�` x$o�r` H ��[���r��1���<��"&��I �"Dx �V H (A? ���P+A$ @X� ,�a���0AJ�" ��� x� 8 �^��0TAJX?�0,@X�!,������0AJ�" ���#X� 8 ,�^��~L�P)a����rL��1��',��r�*H (7$ U�@��1�x�0�p9^� N�FCp/Gv� ;Ch @�Q\�X������ ��(��،�rd�`�0�Q��@\N������� ��(��،�rd�`�0�Q��@΀��m@@ �6����s�ȁ7���@v��A��@��g���� <�z@$�x��~ *0shN͉6Ǜ����B ���4�$�@�6�� S�9�"P����SH� <&@؀��9� �U�VAP����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,�h �N���� �Z�$��;Y�$�p ��� � �N�Ľx'�� �"� �x'�`���A$��9�#�蜝SD�j!���tC, O�hT�� ��@i@ (� �@P bA ��P�@ (� ���r� �:0Ѐ�x@��� p@ 5@ �!@i@ �Sp 0x�A��nP�A�o�4��@�U��@��h��*����$A� �`a�0�F �#8<�  ޑz�@p���M@��>����~Б !쁯��BX b���7���� ?��� ��oԁ9����� <�0'�:=Gc��� D��� D�!t��d����V�`3BGh�63t��� �9�x < 0N�)�h�%8Pt(��9:�$�1���9:� �D &�)8�����X@��� 8�t���t@�P��w,��p�1 ����A��$e� A"h�0��@@!����N@�H�2BFpN� 8����M�090�x��4`�h�<g0V�x@(��0N�8A�� ��t��ӉL�0��u�@�Ay �T�@�@A�:m`�H�����Qo��� u����o�4 ��h�<��P��P ���� �z`@*P "�L@"t��@̀3p� ��� ؂Q8i-� 1��`z� � @u�@ՙ8o��� ���r@����P Ja(\ڀ4��:JAb���0b�`� <��FD�P(�E���͆`Y� 0��A"Z'��� XF����H���0�N��^�<�� ��9�"P�b0�AP��$(��H�� ;��`C�C@$A���\av��`� ���,��&&`��Pv� ���l��0< ux-�x�@vȎ"���:POC�u�4��`OCʎ�9;C�9 �@���@;iG�P�6@6�h3�&��v��Y;l�0��xB�iL�������N`m��������iL�����v<Oh;o�c4&�v؁�y;�����v<�9� ��6�|���-�d��3�-r�ȁ7����@�7 wx� 4�0�P`h��"����� l8��;� ����Cw�@�ʦ�؝nAw|A�x��#\�x��9� B{@�4�"`�`�� @��H�`�Н��w�#h � �� ��q!`�8 �w�^�����xAD���t�a���|��b��I |')�StBe0 :!R�) �N�!9@4�Р B�p�� �&`��~a���g�_�����&� � `������6@����� �w�N#�����2X@�}�l��#�hb@��7���t@�P��w4�@��ct�*�H$ �H�$M ��X �G �p���m@@ �6����s�ȁ7���@v��A��@6���'�`HD��t�N`:P��<����Q�8:����g���6`xR�)3� 8px�A��s�ȁ7���@v��A��@��D� �4� ��h=�@1x"P�b.�ZIg��D��"�<�JB�I<����SC�Yx�$��x ��Ba�h rـ�"$,�3�%a<$g�4�ba,���(�"&,��AH g��0���x�%���R������� �@�g)��30|�G�����#��1e�@*P ��T�D�Vb� @����̉3������`|z�3 �@��=S�@{ �0�� ��>`k���|@�A�g��|2dz��Er0S�|���q>���@��#� ��#f/P_�ƶ��"ř!�|��)p� D�z@$�G� � ���r� �:0Ѐ�x@��� D�� @*P �A$���H��#}����>E�6XX"H��8��@= gN�6 Dx@@ȁ9@��@u`�;p�� @���S�NA�8qBN� 9A'<��ph�N��NHA)(�`)� ��`N�H0�3�}�@�.@L�@ ��/xh�#��x��9�>�"H���̂Z� ��� @�@�h�<4�}����������B� �( ��`�� "[0�aPϰ ��2` �g��_�f��/Yl�p���B�a ����2>MUa �A3x�`[؂g�>l��h��aS���� ���Q`�X��H� 0L���/%��䋒0�KI( ����`D�1"�$��4��'8�BZ��ԡ��3~B @�� �0�@K(?��������)���S~���'��Ŕ���Y���q1�������Yԏ X �¿���Yԏ�Y?�G���� ���I?�ǿd��_���x?<� D�!t��d����V�`3BGh�63t��� �9�x < 0N�)�h�%8Pt(��9:y�� �����9�$A0�0!��^�Ȉ?� �#`�0�G����x���?�������� ��0��̀�?/@e��%����P*���B=v�x%f�����3�v��� 3�D��� �'l3�>H�,�$�x �;9�@�Y�@�A�Gȁ9@��@u`�;p�� @��4���@�4�$�@�g�̂y�� S�`)�  (� \7@ A*@F�)DI�&���?g������ <�?�ྌ�V�(el�M�@�h@�A��h5����?P�O0�T�0*�$B'�?�"�g�1N�E�g� �DP B1@6� c0BF�� BY���d� ��(��������y� �H��)";�ȁ�@ "h@�< � $p`c�@g���A@�@�"H� h�D!4�7� 0�y ��RX �䁥��@X�<���@ 8&� t��aP���� "�I��@܀7��&@r@�A��@@L4�$��(%�8�m!b�#P�� 0��� P�`ĐPAȀ5��`)����L�R�&�)��Z1���z� ���r`�9�@�h��< ��x���^�8�ա 堁fx�V�� ��3sBN< �� �.n@�0*��B��g =���J��� 80��� � ����@ A�Z� @Π ���xh�ԃa��P% 4"X@n�4 u�T@H$$��@@",$�Sp � Q4�$��T�)H�3�ƀi�^p�\����lf��M�f��@u@�9 �� @��� &@0�!�����"K�xB<�Y�8 -� �'�Fc��B�\�pVN"HD� X�k �#H� Ԑ2 j7�� p�@�c� ��1Q"� p ��1!��oԁ9����� <��ʄ�8f� F�&��iBL��4!&�L`L��1�&�`bbL� 11& ��%MH7�&�Ę�T�,���@1`@*P �8j@0�Uڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b��@z� ���r`�9�@�h��< ��x�t4��)8��H��S0N��h�`�(����l��̂H��| ��� A�-��8�T�" #��#8��p�� ��.�� ��S��A8��N�8���W �ph@�A��8�`�� d�3"�S���j� �@��D B�(�@���x@���΀pg@ 8=�BO� J���7���OP�@�: ��s ؁;�x���� Ca(2` �A,�� ���@<FA 8<��@p�'(g� 8 H�&���Q@ J!,%� ��`M� F��"p ��)@�N���$Aa� Ob��H��ԃYA��y[�HP���E���*�il��EnC ���6���!����"���b�V�a��g`�XLL�&8��P'9��P���3� *�p��P� @�Á ��/�� BA��6����k����p��P�HA�@��ĂZ jA,����^ 1( ȠD�VP �A2� �^� ZA&�x� t����6�=`P�@�� �Fn"Hn����� `���Xp�@Pk� �5���@p ��5 ��oԁ9����y@����U�T�? x`�>����A��|��5P�!0� �5�� Pk` ,7�#7�4A��#��@L����APH:��J@���0���BR�a@�j�r�b�bn� �bBL0 e ��@?`1; &t��A��EB����*�P��P(T�a�+����BXhĄ#�b�8� ; &`���bBL7�,�P �BN��'0��"4�8@0 m�-���oD̂��BB0~�JP��"h�`hC?T�����@H�!� T���H �-�ep!�х R( �|(��B@?�B*�CD9@?�B*�CD92�&4���r 4C&� $�0���2" Ո&��@RC(� @1$���'�"��2�SDȡ1�@;�!�D�V� �w��� �!3��ͼ)�  F@hEbH����� � `Cm873pC(������PB���8�B�>@+�%-�@P+jEJH!D���s��!#�@0�"�� �萏�C)d�p�����@������8L!���p"�� �K�D� P1jC�` `��H��0���Ճ:�|֏�C�zܡ:�|�P�CP��(2��L�Cz��̄�p���� ��;�RB#��a& �c�� *&��:̳�(@��s���m����xy� 9�I� rh�0� $�$�>�G� �%�XI�)�L@� }cJL�)1%L�xL najF͘N�]�)!�Ô1�RL �0Hϔ%@��Z�Dc�x�kRz@�5� �X�`MJ(�&��i`kb�I���"l`MCc( �a�<����Ó�]&`�uHD �:<&��iYL�:("�pNI<�1:� \�ED��)�:F� FԈ0#jD���FԈ�# &@$���2_� I�/%a��\�HBI�B������D�|9�D��r�xm4�0��@�@��P��3h�<g ��x�@���"[@L@? �G`3�@mP�،����ͨ ��Ԇ�!��Ah!#7�6Ԇ�!���$* C����"nFm( 3�hd�$� �h)�J�0X f� ̛yS ��*z@��  ��1��V�;1FÝ A���`��@�xa�U�F�(����D0z�*��:��0d@?Pg�6�] �T�� <��8/@�@(����F�� ������å���:�L�Z�՘ f`&Tơ��&rK�l"�P� ����Z�f�L�3ap�`B��$� ����P ,�`8Qh � &̄�PCh�& 4��а8 Dp (����p�JY�m�r�����@p� ��? 4�@u@�9 x� 4�0'�JC�h�0���@Y)+�@*P 4� �ᬜ&@�@�87� 7щ.�h��]�Q$�8���$B�C|"$�I�Az|�O��&@䔳�D@NaK!� �R�`00�H�)��0Ђ hA ����� NQ������ Z���n` g����?�(� h �� BY�r@�P4�r@���B �f��� � �3�"P�b�1N�E�g�0*��9�m��<A���D�Hl4�0��@�@��P��3h�<g ��x�@���"[@L@?��*���h�<�TH"�*� ����@DPE#d����.���@�1 ��@B�: ��s ؁;�x <�z�VQ�����&Ԅ���� �3Њzqh��i���|�@p��� ��oԁ9����� <�����E6�� �VD,�%�5#��KA�E���4XKA��E�$���Y�Ch���1��,��[�Ű�6F�5`���t@�P��w4�x@(�4���� 4�$��T� $�bpR�hb@��7���t@�P��w4��)8�4� �,`��݉Zq'j�v8��� @��$ R@O�ux��4��9�����=� B�@(�@���@1pK�5��p�#Xz� ��U�F�*0���rXr�<�<�������rX��Ă��v��Q`9`�+��v�.�E�h�����T@.�)�g �]�cv� P�H3ԀŠ T�R�1�h)�*���0� (��;z�@p�` 90�x��4`�h�<p��B����=�ĀhoA@*�@�� � � 0{EiHD�x�V���@"0La) ��� B,8�(�6B �ԑs�ȁ7���@v���7��@0 !! 4�x@(�4�$��%`8a��5d� �� A8`� $�D���X�p�F��� BY����c� �@A�� 4�� @�4�8È ؆��9���64&��P�0VDbdT;�lA� ���1��-�2���( ��#�a;l�(F6�v�GP�lFm� ��f� �!�������P#��3��Q���6Ԇ�P�j������cT���`��P0E�A1r9�<��P�ux��#�3$!�ƨ�C��#@ �� d� �k�������Z�pb!/���~ � �p\J2RF�H�� �v��\��@�D0�=���4�{H ��5���P4C^p <�=�Ͱ�\�x�!/,#x�x�{� y^��e�x�{� ya������d� ka��0�@� ȁ9�2[��a-����:�:���3��`N� 0(�)<���j�3Z �l �-��3�JD<#h�b��=f`Dh�-PB�yK�)� g���9�5 �8#skb�8('H�iT_J�v�lA;h�X���S��h)0��0��+�����i�Fx� 䕼r�� � ��kT �Cu����l��: 5�F&�0t]Q�C=�������W���(i#àL�R��%U0�7Z6�hX��n*� ��F���nDF�72bsSm�� ��U�P���m�hs�*n�� ��6� p� ��pD@8(�p�X����-`�� D��T� ���8�K% q4��8R7�p @$��8�7 �#r�S���9@ ���@$�� � ����ZP���ף2ؘ��-Ђ9���} t���¸�a�����-lKL�7�\� p����DĄ�0�� ��F��L��:��e�#P+���`G6� (�q����PF�� �3��lZ�f@��`�HJE�$�I��BB(�#)�p��LX �=܆��B˜4��#)��Ƥ�K!!��d^�+�H�&���8Ҥ ���z�;\T�*Je10���CH  �5����^�g@$�����/(#� 8@�D�x�C��Ѐx�C���� � �T�8�@1�=� �D ��xn�)@F� ΀pg@ 8=�BO� J���7���OP�@�: ��s ؁;�x���� Ca(2` �A,�� ���@<FA 8<��@p�'(g� 8 H�&���Q@ J!,%� �#h L�(0<�SO*t4�� .�e@��03 @�J&�S���ZfFP��"�t�N�v@>��B( �1Q���(%�A��RQ*.�ef%�T��Kq1G)�̌v0XrD 8J�"�D�1XG��H): �a�� H-J)�̌��Z�A|H-�Aq0��1��S�!����$R�̸+ �@��ZRKthJ�E���Ot� M����Y$��@8�T� �S dr��R� K*���T+bA1� d 0€�Q�:��V0+Z�x����4 B�@Ni�����FAH`N)$̄��@�Ru�J��̊�!��SS)�x��E��L@N)$̄�P�K�J�� �Q��ԡ� ,����V���@�p " �� �>/ 3h�S 2�� ��<�]@Ta N,�*�WD�(�⃄���V�N��� $ �2CP ����AHE W4�p�V�m�*a%7��#�� <�� l < `���� <P�B��x� 쁬��8M�5͡Ԕ��i*&��s$Ք9V�ǁ1%0&� @ X L�l��t�� XM� �*��k�i44� B@�`|R5: /8"c,�"0F�88A�i,��4�u8"�H,�"@$��) ��5-���2Q���#$��]��hM�!6-��L�NPՀ:����Z�*� x�:���B�NlA��p4�!3�� B@l  ��"�l�!!$x�~EH�-�%��P���@eȦXPBB O�h�psb�sx1��� 6f�@�Mec6զ�1�lS٘M�@�8��3b���)7���,�o�M�i6�&�ě�m�M�@0'��So�5��7���h�m� �\�r�z�l�+') '�$&�(N��8����A{` ꠰��dr�dh_}�����S;P��8��DdD� 8�3�vМ��:P5 F̈@#�B��H$�(��B�A�N�I:M'�3��u�N�Bu0� 0���x 0�S�`�x0�f`<��@i(�@�xXUÁ��� B���@d��P�Ah�@d`�P��)qb�8�0����t����=�$���td �PՀ:��Qb�N��5����u�x@;�����Ԉ��<�rh!����0�@�(��,��0��%t�>� �`��i��  m'8X�� ��4`�w�D��2U���� � a���7��� �N3T��P.S�X!plT����fX!�;e�ԝ2Gw�N[!st���9*Of�a�6\&�P.S��N�&X>pm��6+�8D� a�>�@����&l ���`�O�it���X��T��z 2A&����vēX;A!(��� |��`a�0��'�$�� <�0� ������|* �� �<��[0��'�qJ��a����!^L�� 1� ��PB���� �ހ8%&�c����FI5`ՠ��0J�� @����QR Z�a� ���JHI ����� nB�%���`AHI � o@�F�āyo��� �����>� &`XM�D��T��Mn0����}nh&0���OpCs0�74�g�O�� ��9��1�� �a.4~j�!?1���g�O��3����`@?��4�QH�)�($��bpJ��O(���^�SR�x`̂�S*C1 8%a����}� �d%��S*C��)��W����}�7 srn�,�܀vҟ�M@ ��?�^B���Y8x #�: ����-�g@ �F� ڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b��� �� N�@p��90�x��4`�h�<4�$0��� N�)n�b��1X�D��p �����@� �D $3����f D�(� <�0P�S�O ���� x0��4^B�)�ݠ���P Jq � /�� 1x�0#�H �a^��8O�Bb��̂R$�Q! s��)�@`���@1 �`�� ���SH ځ�� �^�1 )� 2Cf����UL�R��%t�TA���@0XA�P`@�U�������� P5�(�X��1a;���- � �!&l����0ނ[p .�-���A8�p ��� Pl�nQ��*P��[p n!���* JWT��,2Ca��"t�X����t <�r@h�D� �ʼn��b�D<�1<�P"��p �� �Nd��ʓ$(q�p �!��j�\�(�o� � ���x�7�L� �a � ���) �0 �A��<��CT���=܆�� L@�`<�C�0��)�f�@d<(�� [xL������8"�A� ���PlA0�CR � D�j@��T�, :H ,�=��PՀ:$�� ��KR2 ������|J �b>%,���b J0@(� 6OR � D�j@��T�, :H ,�7�SR���o̧�08�E� ��,��$Ї�`9`��`BB�&!����0<�5!�X���1�� ((ˁfTk"TAHP!a9Ќ^@�&!$��aM�GH� Ú��1<�5Y��Tk2<�51�cXk�`B�&����� `M~�5�Ú � 5��p@(g`A`&���RB��1�#�̄ BBu`1�!����@�!�:��� �m�Po�j�b[Bu!��BA�BB U�j0�B����9�� J��!"X �afE�o �P� x!�:�"B �!�!�@oq��!����b��!!�@�B �P(V#E�9�4��r�-�9�ځ@u@�9 >[X ,",���" @+x�a@��� ���2bF�!j���8"Gȁ3�"tD�;B<�7����r@ȁ�@�h@ȁ���#�� g (�GXD�x� <��R��P8%����b2��) �?i� ��8��h�CQ�eb�L0-Nb��Sb@��48�?�e>� Q���0��@����>�$���b'���z@,# /���� h -�1����HKh &�%����`BK�x�ŀ��tp ��'8���L@K��a9���>��|���Atpс:T���������sh ѡ:\ƀ��s`+��:X|�V��8H ˁ9��� L@�� ���'3�ZOh �!E�9�4��r�-�9�ځ@u@�9 >[X ,",���" @+x�a@��� ���2bF�!j���8"Gȁ3�"t�h:bGH���:Bh9p��� �9��6`7"P�b� D���k ��xn�)@�3 ��@K�,��7��@YKr`�9�@�h��< 0K���p4�y�,�������9�7@ ��8� "D4� KdI��kp �����5� �*@m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`�`�Z�6��S0���&�#X&�<�� �@� ����Na(��f� �1'x���p &`��Hŀ $�d��{�"Y@*��P5",��-`� ��xЇ�1� 0i�$� bp �5` � 8QF� � X4)<��ݐV0�H+y!�`�Sv �B � ��(`,ҊN�4)�ԑ�"xHZ� i������� �!l�0�����H+�� 0��0�/���(���0 .���V��!(, 8���X�Jp�@�墒H&`���U��b�QSF݆)���2yQ0jJ,�`ԔP�FM ���1j1��)����AF�(�B`� � .a)��)Q �a���T�ŰLT�����Ԋ�U*@`��=��3�!�!7@�����P� y(��a�x�cy����<�Ar@�y����Aa�Cd�B�CD¸�#\*�<���pD�M@"���mpΠ@|�� .B�@ �@Ё� =�A�=���4�����D@=�G���<��o�7�`�P�o@�Y&�ߘ'�oV��7g�X�� �74�F�U�� qX\@r��oV� �7+@Ŭ�X����Q5j��}#V��7�%���oL@y�7:��]�b�þ ��Č�ot��*`�9!'@e�j@ `��B�mA-�٨��0@R!&`ܨb*�Ę8*Lcn��Q&�L�0���@ 7J�H aa<Ԁ��Qr�� P,�Đ��L38�E!`9`�+�@0�` $��2BH � d����d@�Q��І�B!: ��@�X��mh#$%� 2BtTI!:����B�� !�CG��X`�� Y!&����B\bp�G�v��`Lǐ��!: d�G�&p��P8�30 ���@Y �0� `L�V ��0�`L� ��!��M�G &pL;`��&�%&`����6� � Z����P14�0�0d@?�� � 2��``��K�4 7�D��4�Ɯ��� n�4�� ���"�X��xՀ:�"a�C����i<�j@��T2�!_<�j@�Ff� R�:��/�Ɵ�� _����4�u�RI;������t�OC| �H�'�i��o!T@5�OC| �pJ���PO�[H�.�4�#�=* �GpN �# �����x�<�a;��( k�،���>x�b)ĂP+0�#���#y$Ή���<�s2�@@y�V<��P+�h���)Ԋ��M��"Wdz�+�=��� �P+D�=�&`)Ԋ3�~�h7�I(������r� �:0Ѐ�x@�����P ����@1 A $�@�Ap(�  ��l� �"P�b��m@ �AЁ�p��1���p�l� ��6hؠ`�m� �!@4X �,k<���z� �U�#��?�G�M n�@u@�9 �ABHL9 ��x��8�!�@= =�H���A"� ��# �R�  ��D�PL� 8��ڀ�m� !��oԁ9����n��=�@1p��4�x p^p 6�)��y����p`6Ԇ���D���؆��0R�t�6�&p��1�t�6���4� �� �p�T��m@:Du`���@R��$��T��t`!��Ѐ��A`DI� ��/�A`H �2 zB"@ �AI��x��v�#�I))'��=PR� �&�R��>( y@v��)� �*R �(��Ԕ� <�� l�!�D��� �D�@"h < @+΀��m�G����>Bh9p��� �9���Bb�A��8�� 4����E� <��� 8��H0Q���(��H@��$���` < �0�x, ��L�x���PaY�� �Rԁ:��`�ǭ �!^��r �TP0V 4c���ӕ�RY*(h�ư��Sc06\�;۲�2Q��N��X)/e�����CL�)0$�b�pX��`���@�V*��.��M5�V갌)2��)Se� �+e��ԙz9�J��1���@�R�aLՆ���ԚbS�d��) ��6�k�M�6�.IxSp*N�95�.�%�tj'�)6���T�rSm�M�)8����SrjN]95�.� XSl�N����z�������):�Z�y=t�Na���z^��SX����`�Ƅo�!�N��;u��Ԙ� ��h���o�S\�N��;��o0x O�ߠb��S��Nq�;�L�iJ�A��ߐ|�1��8�:�R½� t�7hߠE|�o8<�  ޑz�@p���M@��>����~Б !쁯��BX b���7���� ?��� ��oԁ9����� <�0'�:=@*P @w��;T� ��T�J 9X�Q`�w���;x�Z��pBy��`'� �pI��R�&���P�v)!9(��0�Tw�Sa<���b�3�<̄>�Th� ����y� ���ƃ_*��;��6K=� ��;T�z@@��x�ޡ���3�/�<s" d� ��8���� `���Y�.B�,H �D��@@�L@��xd� 1a����6 <1a��Y�Ed��( �ĄͲ6�,H ޡ���� ;�;�/`&@���;�/��� � `�E �v�_�L0A ���@~�O*/���@~�O*/��` �P� Pr@���*%ȑA��F`��XPD T)�}� �UJH ��TPH@ $�P�`��8T � �����}�HN(�*�ͪp��Q]��Ѩ8bR�jJl���� ���H�JX؎�d<4��8J�c#%����KtYT���0��bnr���1���s����@�T�*&�����pT���s�oZ��Te`R��@���� <� ��aV� 0+*U����`�` @�,�� `]�bb@�� &�H�e b `11�xX�e F�a�@�.@r�� 9�}� �3+pE�8�����If�& \N�$8� $�Up$� ��"���@�K�r������` h@-@��.����%�9�]� u�. �L��:E=���<2UP t�� rY2�`S%�)R�H-3#(ŇN�Z:O�X; �N!������(��23��Q�Tť���N��v@��T��S ���)�A[�<�bt��b?:�� J��@�䩊��U��t�Բ��˦��� �=p�A�TR�F�{0��?aȁ9@��@u`�;p�� @������3 A < ���� @�@��'�"@D��S� � <��AS`G)����8 (A)�<�1( �ă`��y� 8��28La)̃�p� �m@�Ot !�$�*� �7��@�b�`�7��@�b�@�: ��s ؁;��3p�JT��P�x�����\��\!&�j��4�h��= XA,8�h��Q�0�@U�j}8_�42 (X`}@�}��� U�� x�°���>U #E 4�@>�G�$ =����>*U C��S�����p�� �D ���� �T��D�� 0��v��p���`TUP �'��v�H�am'��U�vxB�am���`���b�'���v�@�)<�����S6xB�i;1��������8h;m�'���b h;<ᒰ���O�"1���b�ڎR� g��0��*��\Ux����*W�AJh)a�t�X�dU�H R�U��&0�R��`BA0�*��vM� � &���kv �pU�A0��0���@@ L�lh g��A@ L@g�Zu�A�U�� �Z� BBP�)�H� 0j�3 A!$��Z� BBP�)�J ���Sj�0 �"$�*�R jLH��"$�� PpN�b��RBBH�!����0j�0 �"$�*�Q ��g����8�Q jLH�#$�1�0B� !!$臐p@�J�BW�iA-��� l� v��* A���=Ѐ&H�`���{��F���Ș�Z�=� �U�J��*��F�/�ZX�� 5�P�@ Q&P �`L@ V�W�C`@= D"�*B$B �X��C�DL�U<�D�{ D�b �D\ 0<$�,�{�P �!o"�,�Ղ�" BD���TVR�xD��C�Dg@�S���d�U�`D���*�@z�9� ��@� �W r���X!U`xX� ��be��(��X!<�r@x���2�a� *I�F1�́9V�(� aT����< ��Q��� ` a0�(��@˜h�̀a� &�V8 P3��a� f/�3`�B"p� g���^a wa)�H ����Y%+飬 ��L�0����bˊQ,+Fa�#P�`0+Ԭ6pV�J��P�U����H+J#��UK8C)&����i -a( ����qJ�*Z'h�bBj��Z� &�2��`ggh0�P�0c��P����֊ &p��յ�V��Z=&`xB��@<�"[x[ `< Hx�*[�,p90G��@[) � �` @[) ��`b+�5��*h�`�7��j� ȁ9@��@u`�;p�� p� �X� b�p� 0��`G'@�0��p� @���PƉ3ۊ[��Sp ��78��Hp^�.K �D�0@"X ؀�#!�Hj@&�6�9��x�5 ��oԁ9����� <�� l�[y��0'�D����@D�Hj@�F��~�V\��o%�\��b �*B��%r��h����+r�t�+h�<7�ʕ���L�3��մ�m 4�P����\M90�x��4`�p�@z4�@2Wg]�6� �Z�� <����UPp�j]q#v $���]M���@1p"P�b���T�]�' � @P O� ��x�6>Ug�T��z�z�6���m)/�D�J�0P�-� pXK�cE ��|����8C ���K��W�&� �qXK��8��� �tX˼�W�*��$�a9,�jP {�'r@Z`� `,�M�X �X���"0�X�(A,�ԂH ,p���:����6� ܀�9'@���4��:JAb�g=�@h�<p��B8ȃt �P+ԄS�T��g�f�1(��U� �A1HΠ$ g� ��]*�� X�*H�@h�<��j@A�+z�� @�L�0 �@s�U@�B�0 &`),a1,Z��5 (�'|E�PBP _!^c����7B�5��D�(g�T�6 `,@J�o� P�+�o�4 \6`7��2 (� d�\�X�� @��� hD���4���J"1�@Ur��W� }%��R(n��F0o�M�`��8��aL��CA ��:̳�(@��3$L^��x�k�6@��+~e��51D�X� � Q��&����+�5�AP��$(�OvL�n;�쀝�v���������`*�n0�`7�����3X+�'<�LY!1'��?VH � 1��pB 0k���L@3Y!1 r܄``� �8! ��%2V�0ΠB8��UL@�>����q/�sx @ ��/p��*a'@����(X�0���(X�,��e5���:,��`5��u�愜� �9X�ʐNH`��0vo��@��`U��J���BX *a �.� �0' g�M0�71�Ba)�`��7�, s�����jŶ��� ������p-�<�7��@A(+@h�7��&@r@4�@C�s¬4�PV� �� �q.D8+'� P&p��m@@ �6�hXr�ȁ7����@������Jh�N�)���|�Sp ��7�c),,����:�@� 0����A2�gX,8� �r�:� XpPA�8�C�<,!���@���R ����n���HE�$"��T4$ݠT�D�1�GDPE�Ś��n�_>�Ej�:t���f�Ě b&L��@n�C�!�bu27pF�X3�B̄��GH Ueb��4�����0�3P�*�h�& _P ��xX��%\�x��9� �h�<l�nD���@�@�@�� F���Q�X�b��p��� 0�g��Ta2� 0k ��%��� @�� ,VEbX��,��C=� &`8� p��3� &`!�����@�"�� D�(r:�3�m!<���<��*�o��б���t@�P��w4��@�� :� g����r���=������x� ��@= ��- &�����" H�U��nH �!d%��@%��v� �� �=�X@��� 8�tb�pr� �:�Ѐpr�4�"H� <&@@p�.pi�lJ�q� ��Cdm��A(��Y+��x���K���㌬@i<�Zg�����6D��&�� BY1Yr@�P4�r@���B (+e����@1x"P�b4� �ᬜ&@��8���S�|�@p�<�S� ��pr� w��+h�<4�$�E8�`�� d�3"�S���j� �@��D B�(�@���x@���΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���Xp�Ēh��I0�& ��@u�I, 90�x��4`�h�<(A� ��$A%BDv��@4<�(A �xQBJL 7��D8�T%D ��x� <� ��xl`�g� ��q`���s/~���'�xD '�{���=���~�{�����C �!~���&�����{|?�"Q�I����{f��=��xn������=�@ ���c<³����~`<��*ke���0��r+ ��{`V�` l�-P=��B�#o�-�,�`D�Bch l� ����H` &`���N��:�!44���� � �� �(�����h laeŀg���ՠ+�@��L�XY-� �����G 0'{����v�ʊl��,��ZXY�ce���5*���+�e���>5��5`�`�A,p JE�` ���X/ �xCD� 0�&�,�j��n�� %(,4L�S�O�w���bV�H B�5Ȭ<�9�J�p 3�fe�B�\C͊*)!&��U��b� �f��,U�T��P*�"!�T,�mh+�� `�z�AJx*B�f)Ks�J� X���F���/��f���r���ayY�� "��4�SQ)�"�����@�T�h*P x�!�@�B 8 � L �� ���Y `b����B�zg��q�Ba���(܀�P�Q`�� 801�Q�o���H���t@ �:0Ѐ�x�(���H�9��謠� �` g5�@`�� R����Y�� ,4�@�hLIlpJ��a@r`�S��$68%M� Ȏ|�؁��'*� 0XL =�@���=�o�T� `z|4���g�,��D[�X��ճr@� Z9�����!�^��Z%AX �K�:�� ���E6��[h� �5�� $�hA�B6�� D�$\�7p.��d�h�P.��o�R�aA�.Z8 d�h�K�.Z0�`l�QP�FA�*���0�$���,���=F(X� @��A�V�2ZU# 4���B�V�Z!Ek�����B �"G�8X � ktE�`, 0��e5x�HZ+�h��X�+@?PZ�j��zP2M8h ��8hj�A,P��j�����t@�P��w4��)8 <� NA7��`�B�@!P��4��8�z� �=��@�~� �@�@{ ��>P�@��  �D �p� �F�#pg@$�����/(#� 8@�D�x�C��Ѐx�C���P�@� ~� �?��D8�$�� n��g`i1�U�X�*XZ� 4�7����* KK�: ��s ؁;�6!x,�°�� @(*4�0@ubZ� <���Nh�`E���� <� XA,H Z�m�����9��-��`�aH�(������"`� �-`���(s,p�9�R� 􇦅�A^�S�'��QxZ�j��8E�$@d����V���T�70o�M�`��Ď��`�@������� ��7�.�Yk��H��� *D��0���  u@P{�$A$����|so����7�%�|#`� ���|��$�� 8I&�$���,�I �� �B�Hr��xL`\ �@ X7@�L�IJn `��h�I2I@� �M jQ !�&��Rk�L��E9&�$�Z��r4�IB& u�ZRk�P��5�& u�ZTk�Ph �$ԡ6Ԇ��պZK� ��@�ZV�j-����պZ����8�F�ZP�h-]�+�תA���'е��y`@<SD��Z �k倬�(��R`P@�x����R�@�9P@�h@ȁT�J" ���Pr�)�,�"'N���% ��H�*la�<��@"��aA,"1 b���!���D�� H=�!���� ��Cb���!���T�2Cf����]RTF � $�"�K�@�h h���V� �b\�3���� �6�g0`Cނ h�<4���r�`60��BX�l@�`6�h`pD@�"�� rJ��a୼��.��6@ۀr�n� �`yd��l� �"P�b� lR01�6�Q�B � �b؆�0��~�0�@�g�_0� �0���aL��q�E��0JZ��F �Q�Ї@H {k;< ����vx��%h`4�<-�I����և�0�C���0�>F���0Eð��`��/|�^���p9r�pXh�p`�X x����{�L���[~�� �AXN�[,��-��G�� �5,�o.��+ H��Ip���E� \~��-��GL@�#~ p푿����\�k�< l����#�p�µG��#&�p��ec�ó�~�pŇg�lL|0\��,�������6�oq k�p @��o��"�GP@�2 s��P��BW�\9q� �[W�,�3P���ht�)<������\99� xp�Sp �7�h�x�QHA)(��X�rU����@q9�I� ��xKA�0�r�0�E� �p��38J��6z�OP��~�pr`�9�@�h��< ��x�(��0��� ��x�AQ�x  ����y� 8���3@�� �` �H L�(�� ��pn�4&p���)��:x� ��4�dB�j�s���s�ȁ7���@v���<���h��*��������U�T�?� @�� ��9<�̠L�@��5��#�Pa B"H�`�B�@!P��4�Ԁ�x�� 0�0pA#�� ��e *�2 4. E`�W��qm�u� W�2"�qI��ŸN@� ?S�]�%�WP _�q}��؉ ��]H.I�Ȇ ��q��帨�"���uԀ*`�� �V� V�@p@ 5� �+�o�9� �x`�>����@��@|�T?P� n�����`a�0�F �#�� ���RV0@�\��� BY�r@�P4�r@���@�0� P��e���\��rA*P �`��@̀3�'�"@��rA"�� �����t�)�x�2�((�� 8P� @��$e� �@A�z�����3�/L`)�`Nd�,x� 0g�_�� �DX�wd�� W� �,����� ��;�k�Ąv�2C;�\�G!f��sE��5@bB;�O� �����,`�@�@�� ��� ��d��b!�`�e1��a�@ L`��*"]8�D1 �$�SO��(P�-�xRE��D�. ����0Q��D�(�����r�f�(l�sM�P��D��a�|.�`�@ ,������(1���0QB�f��`�����&J;0��\c0Q�FR�(�+)�� �E�/1�-���0QB�f�(l!&���m�Bh� ��c�L�g1a�Hπ4CL��at�p�@�� h�b�h�<@�  � H� Ca�7� ��U����:]���R�� �� 8��FWP�s��P��wT��P�Da�,H�>a� a � �]B�2!Au�3�(B��b��l�Gĺ�@�y��uł�`���o�����>��SՁ@���(��u1�0`8��ti��'Ȇ�b��X�K��.�U�l���] wa� `.�] ,(��0@PX?)$�. &��rBw�ݵv��rBwa��9tל�rb,�,P��s�/'d��. 0�@(p&� x� �k�bL���]�aw��0�C� �� ���Cx� � '�p��.ؕ92���cwM���t���]�aw��@���]�k�"�5zW^p3��M� 0�0X`� �@3�Ǜ!�z���@3�Ǜ�P�z� ߥ_B�x�K���`;b���/��w���&|�~��z�.�������z� �Q=ބ����M���&l��o�w��q"��:m`�D���FC+x��#4A�:o�M���� <������`4��(:�������n%Ġ�c���:���d� �"H�`��S� ���(E����Q6�@p�l�"�H ^o�"��@�h�<4�$���8�!� :�(9���S� ��`�`)l����F�(!H�Ip �F�(!��4�Z�Q8 ))(g@x�6 Dx@@ȁ9@��@u`�;p��L�@*P ��T�@� �0��"^�@x/ф��*^� /| "�$8^�� 4�$@����x�����0Ax��!��i� NB���P�@�� �7���}� ��*�A p� �D��#7�4A�,`�� ��6� B�/8o��_� ���r� �:0Ѐ�x@������� �Sp 0�)8�� 0b@ � �#������ ��>`"H�@0Ap N*h�@��Q ��xg� ��6P.j�� 6� 8P��x�� w������ <��<B p� < �7�Fj<�<���� &@��D��"�g�1N�E�g� �DP B1�)�x0 �@A�z�����Hj@�6���,������r`�9�@�h��< ��xh�@�Y0�!�j��B`Hj�yA�Yp pA.@�@('� t�.�n�(�G "�$�g �5��@Pn` ��@!Pk@�: ��s ؁;��x`�>����@��@|�T?P� � <�0�!�j��B`Hj� 0q0�$����D��X��>�Fn#h��8 @��x� H�IpԀ*`�� �5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p���3P6 �� n 7��xϋ+����`zI����ͼ)z` ��A*`���F0��NAԛ ����7h�H�ao�$������o� �0����{�oL��7�����o>��^��o� �@ �! �z=������^+(l*�� �^-�Ȣ�(˽H ��l���i���1ً ��rI�k�$�r��bJV��^���`/�@��^��z�[�l���z��uD�h�_PF�@p�$�$9�>��x��9�>�6`7@�������7��� @�� 0�0pA#���V '�K��h �8�E@&Ȅ�X�B'����pNb �E��$��P FĂ�A��� bH\2� z��X�}r~J�a���y94&��` r���l�<�`��B,�)գ60��0��z� 3! �����xL`�/_��X@�[�/k��@�_�B|Y ����jL� �/&-���B0�r!����B0�r!�d�A| k����_A| k�����K X �����K X �����K X �����0� @�`�0) �� ,VQ��`�`�2Q�2&`& TA���-@(cQ�1��Bd� �1�(�@0��E�O�� b|c0>�E���� 0F�2J`L�\�/S�Kؙ�� cP_@#`[j���v΀C�m໐/�����!ȁ�?�ph@��!B{@��@��L`60�m�lR`��6�&�@1`/a[���n�m@ H� ��` �D@�@�X`(�Q X �b���P�t�n��L��� @@� 4��@@!T�P ��1�� ���:x�̆3� ̗hb@��7�� @��� &��@��ـ@= n���S����j��zd�XP D@,�K����D��@�T!��P5�?����W�z؀܀S�_D�Im�"0� ��Hz�$�$���o�4 ��h�<OR|F�H*I������4 ��@�~�+�p  I" ���@0B� L��PQ�hho�6#t�&h3C� �:� Ѐ�x@���"��0��`4��(:�����#J�A10��6#t��!(�@,D��8��x�3�T#Xm@ ��V� ��j���U ��oԁ9����y@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀P�`�5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3�ҀP`A��6�Ă@� 8� �P`Aȁ9@��@u`�;p�� @���S���� �t� �  p@ 5@ �!@i@ ��<���h��*��������U�T�?"H�� 7��� `�@0GpxA�!���7���/�r`�9�@�h��< ��xh�H` ��)8���a�1 H� ��@D�����_� �� `0 0D0�"H�@0Ap N*h�@��Q ��xg  ��&KD�(`4��7���:r@����@�h@�< ��xh�H� p N@,�����C ��щFC7���51�X��PfB"�T�����@�� H�h:�  �3AO@*P lR�t�a�ۀ���z7�3����m@ͬ��P���A���ѐ���ȁ7��&@r@�D��)@�h�g���h�<4�0�P`h�H� p ��) "�\^�� ���cp `3G�b� ��2�D��3�ҀHz� �7� ��q@ $90�x��4`�h�<�A�P�@ Cp�@P��$�N�4�D�H�P� � &�3��Cx4� &�DB�@(7��#��@L�3�I@JH�m �<�2R|�@p���9� �� x�h4 ��� 1���O (! �D ���B� 8� x��$��RV< H)@x�2Rv��� a @H ����$L ��^H�̀�0�͘�7cZL� �� ��0BJ`��  ����Lp3�͘����s� �3`f�� &�f����f� (���`�L Kc$�3@,��� �a&���08�E ��<[�� ,����Nad�B0��"�&��;��"�&`r [` �-�/�)LJ L װ �I,Bh`� +p�J L`8z2= ��L�0 "�X�`n`�� l�H�����B!ւx  r@�P(DB;��P�D� �Hh"q �0 a',��P��B� �H��m��B0 a!l �P�BX�08�`�@Z@ FA;H fqX�h�AP�0Pu&�@p��90�h�<6��9�l��X����ա h@`��$yh1#�V �@3`����l�@ o��f����r� �:0Ѐ�x@������'B�� ND$�h�H� �x�"�0��C� .� ��=���h��z��q�@` L�: ��s ؁;�x� <�<���h��*����{��@A"�� 0E����F�h�6�f���(���Ѡ ��l�h�M�f��@u@�9 ���` ���\k���5` D� X�k � 8�@��������&p�S��(��pB�uP`� (����!)������k` �����p؂h`g'$\�� ��x;��50�b��X Be$��� ��h<0X���8ߋ[�`4�Fm@�"�@�f ����рA!(�� ���@0��4���h ����1LJ��P� �(X30)LT0����`o0I`f&X��,�"\ F�f� ��$�P�0XHb ,T0 ���B�`�-d�X0�����l�W�)�Kq�.��S`�W�]8Xq�.��`�>v).��=� �˧�.&`���O�]�K����U`�b�CypO:`�EF1�(0���b�� � ��7���E U�k��*�5>@3D�$���/���@,f+�Q �C+ �D�V@$� �ԁHx PN,9ŃA�0��` ���|�L�8�C9� �UBT��n,����Laԡ:� � z��a1|0�a�BX .%��0�q�JX �6��� �a$,N�6 Dx@@ȁ9@��@u`�;p�� @�p�P��P��„E���9�S@#��ʼnH &�8aL@�0��@ 7� ���FT� 7*� DB��� Ca"(��,��K��Z�ef����-VX`a- �0��@ �-̅��3�x �m`<���x�@p�8�F�@��� Ƀ� @�t����JWy:]��D4���p`,���@#�"P����S�0O��xL`4�*����6#&� �1lF�6BM�0`3`��6�f��h�8L�!8 @�3` � 0��� ��� g�b�C��:8���p�!P�&���΀ 0&�d�3�'�c�1��� hX �"��$zb�,S��%а��f s�Г�0�3�'��2Q�̱h�a�� \& �.��ah�z��D��nH��p��Õ�� �"( ��BF���$R�� ���@� ��L� c�bA�0���3�e�������a=̇�0 �ÐBj�� 1���aHa1�-���0�%��{�AnUt@ �%�1�Q\ B+.!�4�_���2b>��@�#V\ � ���*#�c� D�/�@ ��#V\ B~�a��b�JP #����*H /�z$ U�F�@P+#<��PL-@bƁ !�VFH�G8C9��2B�X�H� %��r� �m@�� �@p�90�x��4`�h�<���:x,� 4� ��q� ��%�Ă�lh�(&&2��R�&�� ��=�Ĝ�k��A�V��3pbo�(� �� @�D�(&��  h@4�� & ���'0�=����r`�9�@�h��<���xg`��1 ��@p��M19� ��@� �W ��xn�X=��cV� L�*&#��^a S \*p$B'�b�- #����8_}�/�s�PJx��������ND��"ę8_}�/�s��@_�k\�X����B�+}a���J_{� ����w!_��� �C��~��Ѐx�C���B @@!4�� l�!Ԁp�j�C��`�=�@1`T� H�N0(�p��a�9�A!h�v�� ;Ce�x��ʈA! b�3T� ;Ce���2�* ƃ>0�"b��<�Ce���3L@�;�����32j�`��AxAX�A��1@hE`���� [�+"c�\�0��$D�� tHU h�̐r�*hE`���0�@"(��4���X��b7�I� �Ş� Gf�`���i>M�)I��d1-�����"Q�m1�P�?�b[,��O���b�bD��� ��� �<��$r�P&�[<��8�0�sp�0�=����s�k�9j�05�f���98x�#�sp�3� ���L� !��x���"��P�p1� &@'nč��.�����b��A�1]� vX �)4#�8�Ґ� �S� @apl�(������v��� �=�j��:a��L�7����ar`�9 ��xh�<s�4�RP C���4� ��Q �(��bF,�� ��d�� �` o�d���v� L�1Z�� H&�&� �d"���2H&� <��<���c,���l��I2)c� ����L̘3H�@+DI�&���>g ���ڀ�Y3?@��� F�*x���!4A�:o�M�����)؆ s �"�ր)2` �A,H���A��@@L^���Q8�� �Z��� <�� N�) �yL�N ܈ ]���/���M�c�@���l@�t 7�N�)h @ �D N*8,���2��H ��ȁ9@��@u`�;p��@p��=�!��x�fC������ ��˸��� spb�T�t�� Xs�ȁ;���@� ȁ9�<@� �����k0-`����Z� A ��Z�@��� �x��<�*P��#�l� �GpN �# �8�&�xA���b��1���E4�� �f`iL�a�5��8'l�60ڰf�Bo`ha@D�Y�d�D ]��M�P�AP@ch�fd��)XD��(nl���P+0�#�����Z�BB�xN�VdhB,��"sУ\Q��Q�/^����Z!�Q�0K�V��D�$�d��i���ځ:hlAu���B�� �� �#���rj�`9'u��H���G|����sR�Ĉ�h�Q�1�$%�B<�):I��D�pFu�N׉]��¢�V�&�V��p  �< �� ,����'!$*g� 0@�p "*��2���`P� P��`$v��:�@L�� ��2Qi} �@P O�H}$����>HQi����]NIK�.tl�� PH2%= ���$@pL��:�$�h� (<����Aȁ9@��@u`�;p��Z�@�4�p�"T����1@p�N� � A18�$7��� hh�0��B� 0g����7�����y �� "Ed�9p��D ȁ������l�H� ��D�(h�H��#�D��$ @4@"�� �HPE�¼�Ud),�y ��R��� ���� z �4�ԀL`m`s����j@�: ��s ؁;��x`�>����@��@|�T?P� �`�B�@!P��4��@�� ��9<�̠L�@��5��#�Pa B"H�@t<h�A���F���)!�H�B��)!�98 SBB����3`$Lx3��͘����� ��0��f`&����f�s� ?�^� �P/��+�� ̄�P3f�X830��L (���`^�s`f`&8����Lp-�����f� 0�^830��Lx3�%�9��f���f� ���`f� �f`$8��`BJ`f �6B�� #�  �`f�s� f`&��Sp 0@8��N�8���W �ph@�A��8�`�� d��"h�&��@5@�Q FA"�`H�Q F� @�4�� @��+S��X�@v,�<���2u̎�W \�@� �W ��xh�(4�0��,z ��1Q�ǬL�cn�̆=��A� ���A*P fCm�T�"쀙�$B,���2` �A,Ţ�p E�(`�S 2��(D�$"�4NAPx �il4� ��H ~�0�!��cE Ą�2�`�cB��2�T�`�O�0���*@` n����h�0UP�Rh���P���0�� � ��i(/X�`�P^�)?% 允�Yrd �=`���8t����B `4 ���2�OI IAŰ���;Y@�A1(-l���b҂H �#���҂�d%���.IZ��,�Ġ��SlC �)i�s��0��O�8?�s$�0�BR��d��h,�J� y!1��@B ���*�@1h�<��P @ ���P ��$Ga�p$� �ab��pn@@ G� �7����$Ga�& 9 r`�9���@v�����&& 9 L`<- �p`T�H�0@$�| �HI� & �$&���BIL���$ġ�܀��n@ ���[� �, ����YĀKr�� 0�Ă@3�Z 7�[L>���$�D��>�J@&��� ����0�8�$+� ��bb$�$��Q�5� �*`m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`��1���"���1�I;�S��AK c-e�23P�Cc S 44��BCc �!4P�!/�K0d�����@? "k �!4P�V��5�&�����sJ�XKIda̚��S�J5Pd$,���"[d������p�m� ��܆�J�8H 0�0�P7�� 5 ���A� �8(����@� ,��@���: �7���`L@ü FAҫ`C�U⠐�u@� ��8�,&�abbBxO�<�|�3�xM�0�/�@�X�U$� ������P0�2��d�b � ,��� 0�P@PB$C}"H2|0&�$�h��=��D��` L2I�Ѐ'�����04 ���d� @2U� %أ�Q2|@��%[�<���~�l���d�$�du)\2ۑ��0�v`2�`;��C@O���Ll&��[8�d;L� �d�L���KV�J]�d��vh2��^�&���Mf;Г��[p n�ɸz�K&�3h2ۡ�L��K��� �$�*�&� I ��P'�d&@�� P<'� ET� `H ���q� �PH@�&jT�Q�T-RDŽ( >Gh��%�Āz�(��(�%�A�Ph �R @�Q�X�%� R�sH��"Kh�R�sH�kZꁀx�l��1�B� �L*HJ$��� �C���Z��( -P@*|�`[��(� �"���@�)�]�`�� ҂p �5` \�RQ*F��3�AZ�NE��h� RBJ�c�5h��3҂ H � %\����C)s ������PR�*H �6��`�\�fp*8#-(��� R�E� �=��.�Ÿ r@ȁ �Š�m��P4�r�����:X r`-��!#f�?�r�F؈�#r�8h�N�2=����@ec�G7��� @w��  8�]���ʖ�8ޠt��TY*�U � a��XY+kea�]�2�.�@ `\o�����/x���20|�0"a1,$�*���"p �@@8�bX@ ��pF��,�P@���a>� � s���>�8ˁ�=�X�*H�A��個���c9�9� B��7���}� �>�����@b�ϑI�� `��f�@42 �h�!��pX �Y7hd�am6!x�� `+�g@ �F� �AP����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8j@0�Uڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b�p���u4�#H��1����+�e���� J�e�l| 0���*`<&��@�7� �KDvL%";���|��@v�����9�JDv(��[��<��9�s0˄��2�@vf��,�� ��0��A�(� b��Q)A9TQd��k� A<���JTQ*��:�U�.�mh�A ZV��3�FA?�gB2�Q��`܅�� �Z� ��� ;�^� �������C&z�!�ǐ��sx�!&<��L�s��!=�L4T�-���a��z�X& ���{�E�=� �D߃�|�@P$.�=�Āx@@4�x � 0���@1� �a&@*P lR�I�)�P@,����srN �#�U�|S�� ��� ��GpN�n���dpN�R�䜈��>�5ZIg � 4�x �D]�0.�Ep�`6̆�� (L�6 &�l�m� �A7�X���eL@0���4�a� h*�x �����/$�!0��IDPE "�"^H��/#d��_>�.�A]��80�=�&������h�/T6�� ���~� X �sp����h���s�P0�D��i#n�:��7�-�H�#Pc�|:BJB!Oč��raGnBf£����E�� f���a� ��a�����a��URfQD�ј��R�@"%+�+"@��f�,�m��K� 0��� �@� !��xh�(���:x��H��P���a �@0�IP�#x�C@�6 ( ��.��,&`�ʂxL`4�&� �@>A "��� j�(�ѡ3&���H� ��` �Wm�A7�Xpʗ�(f6����X0� 0ffc֤.�F�0�o�F�7��� ��B�2Kf) �d6 �G��#@���H!g��l�n@xo<��%��oԁ9����� <�p x%Pf��,��@�Zf�$��N�` �- P�L3�PCT�P�@I�&�����if9�0�΀{(z� ���r`�9�@�h��<��)`N�4�P0�*h�<�Sp 0�3@N���n� �@+� �A�W��}a�� 8Њzq�s�ȁ7���@v��A��p�� 8�`#� �)BG� 9��@4�0@a��l�pj�0� 4�$�P� $7��(Fz� �!��x=�c,�bT��3k����P���@p@�=39� ��@� �W��� @���P�/@��� �� �@�����0��f@�|j�@p`�M� ��oԁ9����� @�@���&�����`�X�A�8��� ((N8��PbBu�����T>h �a1��z��Au8�L��� �@5���ˌA� ��լ�Y34�x`L$g�� �fz@�F� `��!�=����fg�Y��l���&�YɁ9@��@u`�;p�� @��g���UC� KA�0f�.���H0�@��5��%� p'Z�|�/"@�m3�1_R�6�faP�#�Ͷ���D�f+�O�+rE �!:�i�������Ł���f"9L��"�,g�Lp0�B9��.܅�0��]�w1v�0)z� t��aP���� !��oԁ9����y`���h�<4��9A�̛}3g�-�"H�@,���8�m����x$A��*A���b� 0U�j��?�v��X ���D `�q`�{�L�R���[d�1F�q � (� a�E>�! _�|p 4@0L`h��{1�JB�g�l�&�,a =Y� �P+��1��P+A0��[�@x��!=1�R�P+ a0�@P+�� ��� �#0���v�BP0� �'F�_�@�1 ( ��b� �,@��` Xe��PΞE x(���P�2 � ���-��0ge� ���,b��(��3t�0(�L����3��<�l�ux�x3a�'�'��3��� <� ��6PN� @�@"T� ����$A�@= �@����� @�8A���Dla0�0�`쌝u ���xL�.0��$jA�h�A?4֠@;�.�5װ� &�9� ����ae� ���DLP�c���1!$,���22�8@>>g`��]\Cv!� �`PV��$��c��%J0�;�]�L'��������$�.����(��Ay��`Pn��/Aa4��_:�m`)��6��xv��<�m@@ �6����s�ȁ7���@v��A��@6�8�)8 �Q0 x�3`:g@ �F� �AP����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8J��%� �@=�'(�� ��?A 890�x��4`�h�<g�x@( ��@Ȁ5��ăx` �B<��`%� �@<�o�����28L�( cP�@R`G%(�X���3p��)0����@<@NA<�� ��xg`��3=�Āho90�x��4`�h�<�zf�(@@4�$����S� Ѐ'�� x�{� Ѐ'�g� x� � A"h�0�p�Y=�m�V%}�{��@p`��z ��oԁ9����� <���€`��@*P �T�@�����D�Š�i��K$F?����b�$�Y= �  �x��"H���5�x ��x��ٗU� �?�/�`�,�eT\�?�/��0,����KPX ���� h ��� ,��fhB�� ,� �C Ą�fB � B`��%! ,Cup)(@ ���� T�1���=*��(�`��rJ� 6�.li&쏌1�� h:A�� �Z@@�.e���&��0)����ćY&���{��ƇQ�����vi���"h������3P�N�,<#���p/�LXxcd�{�(� Ϙ &�g܋�f½`3� �1f�)<�<���`xƽX<�g P� �� � .b�����q/b[0hC�A��* B�������� `  ���f��1��o@����Ѐl��P�fSX��-���`<؂���X�аИ�x D��8�E -mNbBCk 4 &��@h}�o0 &�"[��� �gp-�[�� 1�� ,�@h�L 4�I��"��` L�- �S 2�u���T��4P�8A��Q��u8A�i,�j@T� ���i��j@T��(Հ:����/�uxO#_<�|q�� xՀ:<��FSC�� _44�p�ux �:��&5L@��Ad��j@T�� ���FSC�N�U��&�1��!3��V�Ф�Q9 �:��1Yu ����F�AC� �T��� ���j@�F�8��E��/�ӀhՀ:<���/N@D�H��E,�� p�XL�g�O�30 .�DL�A��� x�ڠ�L��&`H�`&�0�h �l�{Q�� �AN�j��hP�@��%�P4!�?2��h�At�z0*�E3�T����PX͢��Vpє�E�0A����� � ��j����c��E�f����фR�hڌ�����`�E�f�������At�h#�h3mfѴ�K�hڬX��*� s���OA B!4Em6*@t�H)�� �9H�E :0 ��(L�(�� d� 0��`� �j1����O)K$�d� �KP��� P@Fc11!,�q�$�KIF�(�i4@6� �)�P�z�B�u�)��:��FBո 4����FRHG�<��QB8ZG��j��0<�G L`x��6�G�hA!(l�V�B�H�h-(<&��@5i$M�� �H��裤y��`Ҡ�G�H!�T�R>�D iCB��4(��&RH+�F���p� ���,(���Q��i�,����&�XZHki!M�� ��HH{i!M����0$`ZH ���4�o`ZH �fĴZa�DL�iwb4��f�,X22-��,� j�L�9@?��& ؅~���H�vӺ�,`�A|�"t� ��]�Y� ��w8 R�;��a�l�*�P�� �JA "@*4��jF�x�`8�;1FÝ � ���N�8A�i���`E�����|q ��ӈ� _䀈�_�AD�t�h�"�E���� 8p �)�i���d�L��@&�d ! NAPx1�[!0$F2A&&`)p���ƁM�%�|�-D2Y?� } dB�FJA�*�k-�e7�]�@�j�e��]�ZV���2��I���"�G@a�A'���B�y� ���rN�%���B@�i!B���"D�� �1D��%2B��3!B4����"����%���*�, ���"܏���@�:A'�(D��Dv�bp�P�>0��"����I,B'�$� (<��q D��XE@e� � B@%����Y�4�ԀPCT�� fEI�21�|�P��@t!)�:�jdn�m� K�6,��2 Bìx���0�@h� �$4�����L �Ăp�0+�'��$h�� ���`4T���� �`1�5�� ��kP*Je��4}�ċxA )a& }�|ڂ� ԁD��0��k@ J�܆�0p��!h1�� ��3,�h9 %�4(�LO�i3a�5~��L�1�0׀�@8 !%̄�UbBJH �1(��p*MJ�iJ�0���CJH )��A���ROs � ���†j � `i��j�@:���0� �4����� [ w�:L��6�FbjD-l�KC�Zb(����LT��L�!:�>@��@=~ :�?@��@=& l�� �r8ja#�KSJ�@(a`" �2&�C ���!f@� (`�̠���€�AH ����ԒZR�������pCc������R�AH�7 ��{`� �F14���B�=�0���`NȉPL��Q!�H��0��@j���5��BU�A6 ��� 1&����X�5n� x�L� 1��#CX5 1r�ir� 1$��1�� ��3LO�c�A�E�G��1�H��ZL�Q@��P�P� &`)p �PT��"� c1�2� (, p D2 ���`-L@L�K�i���L��U#���dR�2�Ȥ�L�2�Ȥ�d2A&1� ���Iu��{ �z@X2����dRXL=��{4�z0>� 2� Ȥ`-� �h�= �z�b�IL��{4�z�(L@( �{X5d�=V� ����P�`11!d��P8nj�X @nCV���6�k���m�.��x�h-l�mh�"�4��lY����2�-n�m���!D @nCV��AЁ���m�t�6d�۠��m� g+/����nCC� ��!��`[��m� �Z4U�V�T��݆��(`CC� a��Ճ�p�-� a��Q��p��-� ������v��A=�T`p���$�Wc;7�<�z@?���`������,����6@(�P�@�� 4�� ����B��!8h �6��`a�0�F �#x� H�Ip�hb@��7���t@�P��w4�x�@8�!� ���k�� ��u ���8��x�Sp ��)�@��,�Q��)X x������*8zm�ِ6`6��^�!o������ �,�ȁ7��K@�K-4�p����@��@|�T?P� � 4��q�k� @ 1����$���@`�n h} hd����C�7��uA_�hX�3���(hDb� ��2�k�A��7����@������D� �� �`k���!N� �3��T��9��:��Ͱ-���F@F�)�F��D��H�5�6 �[���P����a;lA"\� bk�`��AxAX�A��1@hE`� ���(1 �(��`M��XE W���K@�%N,�*���EX �@!���rJ��!hÀ���1�i%�T ZJk)恐kR�5 �Ě�l`MJB��F�6�Up>H��A; �2CP ����AH ��"�K��$!NbF�r�WF�`���Q �� 0���AB�2�!4|NB8Ih� �!&��2� s�$��x|�@Bh�$��0���pE�z�"���0����2́!��V�a0E�(�0���0 ���X�b� `�I� �@��T���� a ��y3&�f����f�L K�o�  �c{dͤ���0X3xd��86��B@03a&����:�zl�m$@�q�[c{3f�X8���f�L�C�ٜ2�"�p@� 0���!��0 &[( &��8��6Da� "&� -B�@ !o�0̄�!���"!� �"�X@�X*cĄ��U!W�P"aT����l-!��&�7���0̄0*!D$L��ZB�Ԩl�mC��0 bBJx�mC��0 b�@!dC��0 bBXͲ��0.��l�-l� ̖�2f�5�a6�DJ�f� �����FJHI���l鄳���@8[: `63�ΖN���l��p�ffKlg+�%6�W\�+��l���5>0��gK<`��U�V=�C#��� �3` 4&�����;@#h���/vCp��8�۠���lNB#�&p�A���8�۰���l�0����?� ���ζ���l�M#�&p�A�l��8�۠���m����y62�4��`���y6'�@ � �� ��4��hj� $�7��@P B�: ��s ؁;�x`�B�@!P��4���gs ��M0�&�Dr�`"9�N<��@�`"M$D��"��`�F�$��` ��D�h�,�����f@[hmAa�Ѷ @i��-�6�6�L[m�m���0���h#9`I-P�r�h[R9`I-�%��r��BmK ��%�ږTj�KJ�-)Ֆ��j[R�-,)ֶ�X�m�M��6˲B[h#m��6�@m��4ښ���m �:�B���-�Q�ڴGh�9 ������r@h�� ����B�k���{�6�B�m@"����^[m�#�I��Bh[���� ,� ,��BF !!��BF!#$���eL��#�����BF!�-ȶ밣b� �#�V���F�l!#�T�"�� !"$���BT� Y!�m���BF �m�b���D�mC�q �� ��`Ԋ&`�ȁmc�m ���5lH �� P�!0�B�L�cHض�aۘ@Jh,m�� �qJdhC¶m!�!;��mc)� P�!0�B�L�cHض-�5D��H m@�t��&�D�g �5� �@Pn A��Hr`�9�@�h��< ��x��8� � ����4��A��h@L��4����`"9�N<��@�`"M$D��"p�@<H $�$8� ��Fnf �mfC!ȁ9@��@u`�;p�¸�#h�H ���@�����P�8�7��� �a&0�@��R`�)h:p��mX ���&`1p�L�L"P�b���m@ �܆os��3�m(� X �` .�E(_�� ��4��hj� $�7��@P B�: ��s ؁;�x`�B�@!P��4�Ԁns ��M0�&�Dr�p��� :A� h��4�A"�� 0E� A$�� � q1.ȅ�r����"�@[hr�M��0��Ep��ւX 0"FȈ�h��6�F��!K#���`�3��Dm0-m� d��p'��w�N�M���@u@�9 �h`�6b��1�h`�� B�3�� ��x�2�������%(� Ȍ��T��`p�0��*�d�� �/0D��^ |���PBP���"#|[�)��H��m����6/`FC�A�t� d��-�%��ѠEE������0�0�. �] (,��r `� 9��t��Z�Kw� 9��0���kN� 9�H� ��9З2\@���� ����k���0�� �,��9�� �.@w��̑9t�Ԡ�k��ݥ�v��d`��5p��1@Q~["zL`���aS*[x ��J�7�l�-���n[x ���~[�aL�����0>lʣn&$$"�p nC����aSp�`#p�<�G x��X�3�P 8��B�3�P ��0HBI0 &A����X�I@ P %��0L�J0 a%p��HI( x ���PL�K� 1A&��0bBM�)�&��F�L� 3!'��0fBH� 2a&䄐�r�L� !&��0D�H�A&��@M� x '䄙 d�L�4�&��``B"X �'�4�q� �G�E`��S[h�=�uPX�r2 9B2��/�>��ZHNʩ���t��s" 2"|��B;hN�I��#f�?�F!G�$�D��s !� @��$��u���:]'v� �:Z��ZQ�� ,�@�0�Na����p @�g��@�:Í�����f�t@d� 4�ZP��3t�u <�gP��  ����!��^a��@P( @��^AL���0& ��+z���W@�^a �0�P*0�Dv1-� pܐ[�y,`@��L@rKn��� ��X@ch ��O0@��Cˍ ��0$bM1�-�0$��� C��0$rM�T cЄ!A� 0ނ x��@hBc�,T Є@hBrk ��L��& s g�-����ٟ�0�aғ�X� =1��d( 0��(@�0��� (@��& P@a�@&����@y2� ����@y� ��Q��@y�� ��_�( �0���8E�1 ��@B�: ��s ؁;�x < @+�� "A@�4A�H�y\&�4A�HRy�M� ��@� ,��( �T�" #���X ���ñ��_�a9`�+C+��m8����b���X ���|a ��qn��4p8��rhQ���ñ��'� W��<7C�@jEHX2 �V,��C���nD���3�����X@ � ���c�@ 0�aA� �*�t �a�E7��v�n2�D7�f�<� �p�x�<�n�aA���AV4� Π P7h0BC�J��T�F��@J�n,�P7��B�v;.�܆�p�bN�n2@ d7� �bN��#���&ݮ�@i@ Ȅ6�9��x�5 ��oԁ9����y@����U�T�? x`�>����A��(2�sx �A�D� X�k >G ���D�� ����B��!8h �����`a�0�F �#I0h7r� �A �m$���xL�8<&���` ��p����Lw��-���0�-��� `d㻱 ��ހ`�n��l0�����`ݭ�!#� �A�|7.A6���n�M� ���vc�a�i7�&���@ ڍ ��BN1 ��GpJ�0���1�G0���08%����~�� s# 8����B�)� 臟�D ���A?0. � �L( 3!�1 ��� `����P�[x�8�=���3�Ha��s0. � �L� B ��eA�Ca� 3�Y��qb�~�60��Sj!�$�g���&��((/� ��@nP����r��sCF�͹��fJ�ssnȈ���[����i?D4�u�C2��a7�fP��p>6���^��v�C��q7�懼��o �9,�&���x#o�ͻ�7 ��6Y�xC=!��0��@OHl��e���� �( ���a5��"& ����`������� y# �����(�����R�F@b����RBJހ Hl�ͼ%���EbKl���X[h4`��"@�h@��p� �#�����{��0���D�` E,0l!�� ����10l�x��bA5` Q������7��� ��Z����X0�-��`-n�� ��b���T� a4���/ƿ� �1���/$ WУ\aPBEY-��U����_4̫�/$����2�KE�$ſ�`*�y��%:���PQ*JR@ ſL�ʐrER��!T�ݰ���� ��� ��_���/I!)�5� �*`m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`�� ����@@)N� !��x�@���S� �Ho�M�,-b$P�S�OJC",���S�T����Jq �� 0�Sp Jq ���D��)@ #��F���z�m� ��Ăhx����֛�t@�P��w4�+`���4���� 0���р� @�@���8"X�k �+Xog�',A��@@!$���r�`����� f"H��6@�@ܛmX �-D*ppD@�"�� ��l� ��6���`}>G,� �!���Ex�@Ё�0j4�T���` 4� HAЁ� n�#�0&���S8*�< @+��`@� �0��� l؂ ��)��]2r@VN!+䀬0�BV0����@��@|�T?P� n�����`a�0�F �#�� �4�ԀL�m`s����j@�: ��s ؁;�x�[y���9<"H�`�B�@!P��4��x@(��������� 0E��� `�� �p�zA��� 8� x��t@�P��w4�xap N�� 7��1@ T���x"BD8�^� n��� �q�A"����Sp PA3�@�A��8j��6☀xp@ 5����r� �:0Ѐ�x@����@Pz �5� Ѐ'��@���4�dHjL�8�r9Bb�ā8&�qL�ĂH �A���H05� �I��/�G (�z�~�H� < @+ ����x�ڀ�q�ĽJ<�s�ȁ7���@v��A��0qC�� �� $�DA���œ9!'N�)��`�Sp �A�n�h���W�< � \D`$�[���)p�ʕSW�@\�q�^�9��)�6@W��@\?� 8��ʕS��@���'8��Hp^�<�'A���R` ��(WQ <�z0 �3�$KA�0�r�0�E� �pԀ*`��5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3PV� h�k<�7��@A(+@h�7��&@r@4�@C�h�0���(�`p4@�*��B��rY.�PV0�D�T�@�@��L�(�kp b�D��g"P3� 4� �ᬜ�3��@�W �=�7���"Cq@h9p��� �9 P��(��87��#P ����A�+� ����A< ��T�{Ƞ$e� �@0B� L��PQ�hho�6#t�&h3C� �:� Ѐ�x@�������� �XсE���#J���A��s�S8�bD��~>���� ���A"���n� �# `4��P�`G@*@�[-.P� P2@�sBN� 9�� ��O� Z\h�c����bAh���-�Z\ �@T�R�p �8$���Phq)$��>�� "�l��B���)$��� P*@ )%`T��(L�h(�w\�h=a�� �|��� � �:^���s�ȁ7���@v��A��@@!��*`H q��0��0j�L(� ۀ.�m(.�6 cpnC1�( �ݰb�L`� &`��E� L����` .�m`�ܠvC,@�@�� hD���)��Z1�1@ � ��v��xZ;�i�d���#h�%��-֎I k� 0�0��ŽH ��[ ����1=ɸ� ��ŀ�))4&p/��g@O&)�'o1 �SR �i;�&�ē���Q���0̀�&�� ���FAN��< @+��S�N,�*���5��bƭ�?�����:4���kp bA�����LJ�!�� h/ D� U|�SD@N1$�V���* �)$ ����r�3p �d��"@��q�� 0Nj\�D�`� [�0l�"��q�-Ɖ�` &�[x��n�w0�DZ�-��%'l�l�z�l ��8�-d� ���� �q8n����x@(�Gv�XX� ]�@�Aj� ��@x��P��`L@ü�W�(��B�O�i��'�/t�#{O� `&``���A������x`�a\�kX�`����T� `a������DAa�l���:�& #a`� 0�P ����H��IP#�A�X`�Cp ]$a�$���F �/:N��� F��Q%&� ׀��b`���S3 �:�<�ble�<�(�ũP ����C�B�0��Pi�����](�p* ���`��0 ��k0:n�� 0�)��� "���)��%t� @�! �8�6v�0;.4��BB����" ������ (�@'4� [@#�-�@'��� B@g !!$����BCh�l� �B��!3�U� B@0:�� �Q���(D�i����PB7P�|��� �x D^���!`h�S 2��(�`��S 2��(��� "���( E�H< '�@8ޠ,�� x\��q ���{�>H�=����@(D�$"�4��8�`'�>�� � |�� @��X�3���P�@���|�x�� 8���3�s�ȁ7���@v��A��p@!(�����P D� X�k �@<�Ơ(�<�QP�ă<�� J� �C��R0E� $&pP�R�KA 8��AS`G���x��� x P�����*�Fp��hd愜� T �ހ��]쀥���؁�x��w�������b�B&nD�7�b~;x��w��7�\~;x�����T��bp� ������{@�w����)�&�DD�7*���� D�� �����nD�7��[�o� �P" ��a�8)�ND�x�2l�+`� �&�܀0P4$��M�\�ph�(�b@��t���*@4@D0��H�M� Y#�"d�X�Ճ��� �\ � ǡb��@�"@� D7��JTh ���װ��~q JE���r�� &;��F�F�x��Ą�0_��#Q1a�Tא�Cu�/3a�T��Ԏ��/HN��� ��L�Q%&ԋ��\b� ��5PĐ9�J�A J%�݆J� MKp )A��M�Ԍ��>@���F�� � @�����%�$Ԍ�QB@f� 9@��P��(E�H� ��xg��99=�A@yr�A�����s�ȁ7���@v�����䔀 @���� ���J@�L�(��#� L@�rP�E@�rEʱ� �r|`��DE�J��r� 4�0@a7�t4���` NN 8��r��E &�T9��0@Z�3�(�X@0�S�r��% �`T�*H0^� $�� 0H+`�$�t�hҕ�rY��/�j�� P�7� -�|�� �B�y߀��*��7� ,��^�SxA]Ф+��4�!^�)� /���oPZ� �/�ԅ���/xU |�oP[��A3�p����8e����6@9\@K�� 8P����� �:� Ѐ�� <��j��0+e��`�� �7�T�h�p �Y9L� 0�3 �@��˽ ���r� �:0Ѐ�x@�����^a �\*p��` f� 0��p�@� !��xh�(���:x��H��P���a �@0�IPl� �(�m�F�: ( ��.�� X � 0�L�X&`��`L�0 ��@�L� X�� �L�B�D�"H� $& �ܗsa�"@�b`�E�!#��bp (e �CP ��2p�"0�T ��x� <� ��x�@�� hE3�T T�P ,���#d�QP ���! �CP ��2p�"0�T� ���a�%���W������  �BPp&`L� ��m� ���`n���C*H�ۀ/&�T0K ,�gP�@p˥S�P16�h &=�*� X� T`4�z� �CL@� &�� � &�m���6�17�ڀ��!6�̕9���@fN�Y< ��xh�� Cd[x� ��P��Rs�  ��@5P �� 80��� � ��x <�z0 ���J P�3g�u @hZ)�� �$�@s��6 Dx@@�:��`h�!4��R@s@*P @��� �pT�hb@��7�� @����@+��6�X�@X�$d��bj���ֆ]�%!�O@�'!C"$���I� i a����BX[��- �@�O*�>���&܆+�n�QB���� �A �����7�� `C��h 8IA�3�,�L�~` 8�ˡ,�M0�B?�%�n@y�&�[�����~� \x �`�[�lA?x �0AP`e��-E�!r�b��bh�-��V���a&`��00�`5�T�*!'��A0����$a4��@*@8� _�P���^���6TA � 4,4'!��Ps��8 ����k��"A$L�H�)�Q �M����D��p/�?p��=̄�0��`D�H��I@����4�@(p#n���"P@P0l��� n�s��<�=�!���bz� ����Tl��W �ph@�A��X z�)L1 p��E@F�) {�� >!C @2 ��d�͹9�I�� `o�� +���pso�U���ZXH������,��k -�� �A�x' T�@�A����€ � �m ����l�7����@�P W�����bԆڀ @��`A" �(6�l�p���B�a ����2>MUa ���h��<�a �G3���Ƈfjk�u :g �ښs]O-<�l�֜��m��ec�`3s��<5��s&�Ƅ3���Բ�S�m���`��7� �� @-n@hԂ�P9� ��@� �W�#�� ��L j� �3�gK�� �xAhh��� �Q!@��3�PBh�@��@,A��  @4� @��9�!1NX( ���6 D` ��VH��@+ ��(!cTP0�X �bԆ����W�a���P~���1��S6@(?姳D��c~�O��,��,n�_�Og�/�'����9�1?S����m���;!�6 Dx@@�M n�@u@�9  D��4��� x�R�@+� �A�W��}a�� 8Њzq�s�ȁ7���@v��A�� @��� ��xD� X�k ��� �E[ �x���8�� �S�/Ŷx�S�(���r� �:0Ѐ�x@��S�����$7�� @�(g�΀th�xv",S�{� ����szN.4�x@ 0@���R�K!F�l�V`V�`��`���KA:,�3�Ԍh}���95#������90�x��4`�h�<�@����g@е1 ��@B���x�)8���Fp NAt@ �D N*X ���AgC��+t����7� ���@��Ѐp� <�� �\'@���D�薂^a `)\*p�@R�m����x$A�����m@@ �6���h�<^��)8 `�5U�� 8�� 0:= ��xh�(���ANA�"P @��l� 3!@*P rJbt �؆���0@D��)h:� ��m@ �@�g�S��1�t���FԈ��$ R@O�ux �P�F�H'E�870o�M��k�@�APo6��� < `]�0*@$�$�H �a8܆�0΀ ,`�6q���0��3�m(�6�r�=8�����>nC<�ρ�nC�݃�p���t�!(g`�A�� A@ �0$CI� C�$8�P�A`�$#Pf� 0���X���8&#�t��� �17�����A�@�17�0@ ! �B����7��� @�� 0�0pA#���V ΀P�`�5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3�F��m��_P�F�@p`��:90�x��4`� d�\�X�@1x"P�b4� �A���Ѐ�+u���Qw�A"�-���(f�L��3�ҀX� �7���j���5 ��oԁ9����y@����U�T�? x`�>����A��|��5P�!0� �5��8�@HPb"H�` ��EP�#7�4A���L@<H $�$8H�7�6��R�ox؀܀���|h�<4�Brp� �@*P �Ex�@Ё۠��m@j��6\*0j�L@j�"P�b�Sb�mX H�7@��@nR�t�6 5�p��1�t�6@�8bAN�&�@�kRa�¶Pug@ 8�3���h�'�%�Z�@p�'(g ��oԁ9����� <�� �BP@��0��� ��x�AQ�x  ����y� 8���3@�� �` �H L�(�� ��pL� 0����#��8A��B'@��5� �*`m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`�`8�ñ�0%�T �`ApDgP-"@x, <����������Gt� XgPYr��s-���:��V@��)��������"��QD����r@0%9 Ԍ�Bv� -��m�V��^,P1���e�V��A˒u�n;�pJj�v���l��a��)�ۡf����)A��fl��1B΀��m�)<!��h�<4�$�P`h`BPh� *x�@������H�@��N��`��)8�0.D���@�@��T�8�@1�KA�0�X� ��P���p��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �A�L�� �X䀞���E@L ��/.`9�' �|qh�� ��|�4���u=䋞��EO@��' �|������8�:&�/�CjH�rh��Dh�B� )_\�����f0B�2�#���<P �x6�60��� �#�p� �0Q�%b�ah��`�h�&@��L� 0>@��L� h��P�DLxL� L�Z���}� �*�  o@K�-��T�� &��@,,غ[g��D��qb�;5&p��� �h1&@=�`'sp ��v��u;L�:�0&@��a�n�� ��FR�S�Z�����) �Ă�`r� ����� �3N�8'@��p�rh�<4�Br@�A$��@r�p�`60��BX�l@�`6�h��{� K�$��@nn�( @�8b��� ��ܐ����a7��R>�S��"<�@���m���6@�@�A1� H�h:p����܆�@K�u��< O���P� P愜���I� `D@�r�2��]W\z]�)j`��:�$ F@�uA��P愜� $`����@�&`�I�x�$�`���H�J_1~,����CH�n͇D���,`!��q/��,�%��a�,�����rJ��`,�e���X�)���; ��7� �p�^<�X��:,�!���p��u0�n8��W ��+�n����WK`!,pCY��7�F`�p#��7���u� ׀\�kP*Je��:�`T�Xy�w��U��RY �B�0 _�����A�,F�T�XU�B�,FA���P*��Q8a�4�*+��"܆��T��0�: a @�XP@���@= D \h�L��P�@�pbBup3� ����x�%\��@$D XQ�T��@$B 88'c��P/f �Aai;��fBH��a&��0fBH���%̄����C)m�áA��`h�(4`0\8�p@*P ���a\��4� � 0��0j�LH� ��P AN)C�� d۰��@ ��Up��1�t�6���6=�[D��A�D� (��,A�@�x�V���T����N���r'F�h�/"@�m��"�6v�c��m�� �/FD�m3���V��HW��Ct�'�"��0���f�,���{4_R�6�/Fd�͗���v�d���a���f��)F1D�@�m�p3��+ ��m��m(�vIA�@���3��)8����S� ��@p�<�S� ��pr� w��+h�<�Sp 0�)8� ́n� @8`�`0D��3@��DI e�@7(Sf\A��h�<A���0CaX���k�� �8��p/�îi�� 0Cqp�I�0�  C�q �r� �a���k����8�B9��kz��0��PlC�bp�5�b� ��î U"P�b� @1`@L @r�7�L @r�Q�',Pn� h�7����@`�&(��b��Ѐp�-�p܄'!v�T &`P�Q`Cc��Qj(Cc��0��`�0����Π �7��p� �b7�@����p�����؅�c��]P@� �%;�<���.�A���� `�n&��@(��n���h�������@8�`d�'BBHPv ������(�9���w�FA<�����zP�m`���q:�(���1�Z�A�<���*�!dٙ�!P��`+le�| PX@��ԁ����]�3�#h��v�b`+΁�8�I�? u���Q�!P�u�DK�H"Ҝx,`�� @�&@?Xp,�����&@;�-�~�7�<��-�~@QD?x.���~0ނ-T�,[��A?X�p��i1� � �'��ew���(�r�v� @� ���P�Ԃ^QaȆ-�,2͖a�a9.@ߠ�Öa�.�"�.@(��c� H���˂aM� �Z��@�`�� ��R+�~���V01�>��1#@�0�j2�F�~a#�V0�� �,PL`�&�,�`P��{�Bf�� �+`���R��]�v3��T�����v���`;oU� ��v�U�j�9���c�� gPF�3h��V��� Z�q��"��m���]�z)s���]m�ŀ ,���,R`�)�Un86��وbv�؉���yn'L��v� g��hK� 0��Ej��"Q$�0�(��Fx��! ,% P(Z�0�qPP�a�V�{h�m��H�s� 0A( ��@���L�$:T�0<��p�[� �A9�^� 0@a ߎ p��Aap� �*����3���rn�t�-B"I�h̀ p"܉;���?a�N0�=�#8�`60�sPU�Vp '���0��0�`�P ��`7,�P �3�N�d�[A4V)ZE8�X0B������Ĕ�1O�i|�)4�xD�%h��� �� (aA,!� �݂XO�H���1�X�nJD�)�ZB�� 8��q @��A,"� ����~uj��u %9�zĂP@DRo�ܙ BJ�A ((`A��sG� �8&��\RrP�H �����0Z�������8��qZǩVԊ���  K#�;�F�a��!p�j�q� (,���4x�LX&�8�;v7L�q�>���uE��H�a6l��.NB;�BX�D� �� �w'�һ� ��� �@�3��Ih��$b½� T &8 �P��  `���v�E 02��2��� �y�w����;�2�b ��w�Φ�;z���M�w�.�Ɉ���]���.c�|G�杌�]i���4\r��82� ΁V �������1p�9�X`�ýp�� 82`�ý�΁VР�q��0/�9��@+h�s�&8�[A4�s ��g�t��@p��8�#��oԁ9����� <�� l���0N'pC"0��t"Ӂ:L��@�<u@�:��9�D��3+N� ��4��@Pn` ��Xr`�9�@�h��< ��x��8� � ����4�A"�` ��E��"x� H�IpDRx����"0���$I$Ɂ�?��@� ȁ�?x����4�J�')>#i$�OR|F�H#�œ��4�L"HD� X�k x`� �' �`O`�=�$��`O�hP,��РT� Pb��� �� ��o�ThP*�� �eO�� L��x(`O��7`UA@� gP!�#p���0����#8'�v��2J�x��2J�p�)��r+Ȁf�*� ؄��b�,�T� DF���a�.��� (� h � 9(@PE�^8 P�Ѿ�"�S욧 ���5O�$��J��`�-���߅` ���Z�~��3&�ߙg�� x�"sp�ۀ/&@ �g� 4"=��KT�0;�)�����Ɂ�?�ph@���@1��`"P3� 4� �ᬜA��h5 < `�@A�?� 4��p<��6���q<� 8y�@#r �����Ar@����JW�]��<���U"x��H8� �#@*KA�0�#P��T�" #��@��m�z�� ��@p`�<90�x��4`�`T�0�@��R�� 3�W �B�+x� <��I @"�V� $A� l� ���(k���2��x�,a�290�x��4`�h�<�� :x��]�N��o����A"h�0�� ��xg��0���x@��(j��C�Ҁ`� E���"p�@0�0pA#��<H $�$8j@0�U��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V R���lAȁ �Š�m��P4�r�3����"�B�.�����:X r`-��!#f�?�r�F؈�#r�8)BG��#$�x�!4��o�M��X |0��@1p"P�bz�5h�<7��D@ i�$��@�@;P k�-��ЀZs�.ԅ�`�]X |�0,��-,�0����� K�H��/DB���0P�z�b�( "� ��|P6�@( �@e��� C>p %���Q6���( 3� Ā7Pf�Hxo ��p�0�t�="��J`x Ip�@v��䀌��GP'���A�( �a���5�K�/P�,nN@�x��[Hn�N��9�eU=FQ_b�sxT� ����x*&�����Gf��C\����A��|��5P�!0� �5��t"H�@��5��#P� �F�$��`����xh���<����@p���< \�x��4 \�xk�0@��6`7@�����A"h�<n� �` Џ��F��p� <�`N� x`�>���`�`��h��F`N� 9��Ae0R� ����X�`)��H�7 )~;�qo`1I!7��P1��������X.�����b�ux*�w������bANȽ �����{C��� p""���� D�H�"Be�BR� ���7��` ԁ-P�7�ހ � �D�ʰY��B'"R���P6 ����3�FA�s ����=�Gap���I�(#�t�� =����}q ��������+zF�����i  `�����#��DbH��iÆ�P1�J"1���$@ e=��$�r0c°�����c�3L�A5I/hH�j���bPz �-K3�қ02.%XK3��K �f1̄���R�bX &�����nC{( L��݆����cz3��!��W�^��a&�p!.��X�`�|�u@D���r��,uP2n�87@��##hD�@"ID�����X"=�����Pb���!��zT��Y�Ѐ��C�H&��@x�<�0�@����`��)8��A���H�z� ,P�( ���"���8"c�,�"�KN��P ���S 24�(�� �P@` ��`��XU ��*P �@PE�-T�"��@H(*�8�|�H!@����p @ !%U�0�0�`)|�HH@ ��U�0�ݡ���� �$E��Pʃw(�!%Ą�0��w�ԡ:P�� R�xh�<�� �E0���Ġ�Pʃw(�!%�Ðʃw(�A<�������a8 �!(��Ðʃw(��0��z@@bPt��}��r@P(����+rE `H � 4�����8hNA��2�S�� 2� @9`{&�8��H@(���ł`d0�H 9,�K0�.Y(`;�#sdr@Jx%I! ���ޞyb9�|$�d̀�Y2� %����R’Q�l�PL� X L��,���b+���8� � X c��sdr�bP�L����W ��ܛ{&�d,��U*�@P� %��zp�{P ��I>I��x�c`�`M��� 8�I:�M�c�3@�����a)���V��D � ��{��<`;� xg:a)��ƀ�ARY �TH��I=���_�+��T ���{a�d���`M�� �ԡ:X��`M�I=z��$��`:�G(g�lN� 9q0��{U @�WE4(D#� H�����q.@ @��Ā.�.@ ��h�=����h]� ����HIh�ű41�h|t�7�ހ���������De � x�r6�z�{��h�����De � x�r6�]9 -�[�(��EL� $'&@�@r�EL�����a���De�P�#���0�����!0`���(ppL��=&`���(��&�BRx~o�������|-%����CH w*%4&0TBRx~o�mߐ��|�����3� |I�%<��p�R��k!�h( и4Ԇ�PNT�%��zU� ���8� $���6%� !�;� �Æ�D:!$p����A5�P�H'��03P<��鄐�f h-`�^�k �������_�kxM������۰� � t��l 0�5�`�<�� `�e����2_~Ͱ1,b�̗00_�˯6���I��ǯ�5�}�| L@�/�E̗�" n�)6W% ���e��U�/�b[l�^�"�ͯ�,�� ��k�M�H �`B�r @9���B��X!�j�"5@�3!���CY��`���>0K� �?@ހ�A �X �B�0f���"5fB�� !d���9�JK� �e �� �` � 0�����k�o0���V��[�� �����[�� ���� |+`�5����{Z�o �&0�V`O+`���� `�i �0����[L�=����_|+� ��0�V��j�p$��� �k���5(��V�(Hj%(����fB�X�L�I�8GR*��6����{� �a)$��1i�GR*%aL|��@�HI�����f�RH��6����Ƥ�I����0& >X A�|$�J^ G�4���$�đ&M �H&/����JTQ*��Qt��BR�I��6����B= |��I ��g�L��a`��r�ƕ�@|?�<�'P�)F��@|?�$>�P��P|�O (>�gt��s�BXԃ0��_=����%����L���A�9 �T�A�B@ �ė�B�:@�-��W�t�@}�70 ��S`�@}�!�@? �3p,L:F@��cn@�'0��A���=�^�3zEO7�OSP#p,�?(A��$@ 9��+������HL)���Ƅ]1�� ����{|����`�Ә��A �"|�]y�!��0{r� 8Ncjp���D� �0�i&H�� ��ox|��7̄1q�Ƅ��"� �a���7���4&��N�0�Ϳ� �^�q&&<�P��x=-�7��a*�o�0�7T�1�4�o� cB�<����xHB� ����*C9 �a@F��?����C`� �3�H'l(J��@0�]T�c�.*C�b�����и�EH �24.}��� 3P?�.*C� !�q���@�t� 0}`C�`�@0/� � c���",f`�?@n �09@����)L@��"� �7� �� lL��0���4���bBJ)aĄ����)a*Q����R S�&��bnB50Si�k3���mH �9<���b�s`@��L%Ð��b�J�o1,��@�C�};4�����ʉԡ:���b�C#H )�Ŭ��@�C5��;4�����ʉ�a*M��0��C,H Si�� f�P�f����3{T�i�|�����%��� �`J���3{^���S�:@�z+t���<�W��zŔ����̇k��b��!&� �N���|�H�T�)q��@���pQz�hh��0��h�<4��9A���4� <�� 40�A7(� ́n� D�@�o��������|������|��t��8_�+���>�` �A,�T�,���@1`@P�b�4�D0� �U�VAP����7���(j`ȁ9@��@u`�;p�@�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3�Ҁ�z� �70 h�,�o��8�d��t@�P��w4�x` >@��(j��C�Ҁ�����\�� PN@�]�#P�DI0 ΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���X0��y1 c�p�l�/9`��L`�(a��WbB0 1Ab,�WbB0 �Ab,�� C��1J�1`�d���a�Wm� C]L@#�3� 0�F 1f0�A H ��)$FL� �� H�Ї~�a���:D��~@c��a���P˼�աH���B_u�?� ��6`$F}��:T��2��Cuhc&��0�d�x@,��$��F&`#=�'��Ľx"��`�B��� x@�<�Dd@�H (�'"��@�,�E�h��Y ��,#���4�#��I�'�44 zBO�����Z��SRp$I=%��� @����!�Dd (Od<�Q›@�"T�G&�x6�6��U`���8�<�Q�ۚy6�6��w�›@X3��fԆ�f��;x6�6��w�L@o8��0���8#�Ѐ�RPHA�L� 8&`�����9P�g!pF�y;��7���u��P�{qj��8#� ��@����a �����V����&��U�,VAm�g@ �F� �@P����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,0n� F`��9�*O*4�$�hT%P��d�8}�����@h� `8hi�����h&��AR��c8hi��"PpL@� �I0�L�^�/!�� "���x� (<��4N�� ����0>�*O ��2CPE�H< UB�8���qvFG���c������5�&�k����5\ڈ.&`*���5��y}������;XJd��9�5�0jk�u <�l�ԲQ[s�k�eؖ� �1!� �e��۲l!� �bT+ @1:'��P�BN1�h4�b� @1�&`)�sR+����($ԊbpJ�(F��V#�P+pE���(W�#{�9��/ Jd�"��.`<[�QP�)��Dv��#D,� "[�.�"D����C�����o��E�` (A?���@O�(�a4�����E|@*P ���T�, ��@1` h*P ��h�<4�2�F��@��S� ��9�}�� <=�4�/Pp;�P�����s�ȁ7���@v��A���.n@�0*���sm�~d���}��ȁ9@��@u`�;p�� @� g0$A"p�@0�T ��x�� � =�Āho90�x��4`�h�<�Sp 0��a)� ��S8QB�1 ��@B�: ��s ؁;�x@��Q� '�}n@�0*��B�� մ&����h w"(܉&@R�`�L����B��6TĈ0m�3tF� [A�p�@��6�qa�0�kp JE�,�_�L�*+���U��RY �B�0 _��Z�{p �A��_wnC{`� �P�ts��A�}�%(x����)8����S� ��@p�<�S� ��pr� w��+h�<�Sp 0�)8� ́n� "H�� A��h�<A���@6Ȇ€�9`��VpX!8&@6Ȇ€�9`��Vp�Aa`���sP��� ?�$䀒P�R2D����+ܗ���3D�%� $ݗ䢃!�W��E"0D�<&0x�h����wQ#�yx) �'�:� �P�F�H'E� �D ��x� <� ��x�ԓ�` &`j������b5Y>�*�j���*�@z|9� ��@� �W (@����|@�V�p�@+̛yS �#`{��F��pp?� ���0�x@(,��r�X��`[��0 L�e� �2��I^�U�I�� =���T@0��@j6`7@�M��>c�"��4�x��H�� ��x��<�ĶL��c&`�1 ��� ~��?Fa��0ƏQ y�&�>0KAW?�q��hb@��7��_��"�� x���S� ��)8��� }�@Ƃ����'�mp��6 �4$"�U BĂ� ��{KL�"[0c�� ����_� �����L�P~�-�0�B1p~`0�7 B %x�0X�7���j!/��[���`|r �xO���@�[�a�X����F=� ��� ���xL``? ��`b+��`4L�0���� �`3Fh�63t��� �9�x < 0"��� Ġ�c���0���d� �"H�` ��L��#sh��I,�(0�,b�C� PjT� p�E �~\ j@��`B�O�������Cx bV�A0o�M��ۯ�l����x�@p���b�^� �D "�$�7�F��{�oL��-�����o�M �7�F��0� ��A��3���_[|�Z1 ��}/����D�y" ���^N /'�����Y?����F�y@�-; `\p F�� ��R1 � � �0�_�� R�r���,נ�*x*��5@���T��*P)�"܆��T��T��� xP����C��:d�{����5��|�iD��K>P�����������g��8F� �@X ��8���h���:��`h�!F��4���Ă3P� �h�7؆���̀Ɂ9@��@u`�;p�� @��� ND$@@�H08�E`9`��N X�<��Ԩ�6�����Ԁ����Qs <�94������������:������rux9�:��@�up�:���G�������FpLr@R�.g`90�U�X�*H�A��個���c9�9� B{@�M@���c9�X� b�`D�H��������W���h���9����!�= @�0�7n$��P�FB�D� X�k A"� <� ��x� <��"H� 0�3��@�.�˸<�7��@Apr�}��7����~�����{"P�b��� L`[0ہ��m� 3� @*P ��K��)0��`�R`�)�P@,�!�h��C���"�/ݰb�D��" �D ���� <��<��P"�` �AEp�"�N��`�!E�9�4��r�-�9�ځ@u@�9 >[X ,",���" @+x�a@��� ���2bF�!j���8"Gȁ3�"tD�;B<�7����r@ȁ�@�h@ȁ���#�� g (�GXA��pO*�5� �*hj���U�P�@ �90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���X0FC���װ��~q JE��v��JL��1(�p*M;�3�TEZ@hG�!����R��k/�1�Ġ\�O[�aF���Ìp �A�,��PiliG3bF(�p*��� ��1(�p*��� 9�vP�`�_La� @*P �(L��H�BC`9���H��8 ���€ � �m ����l�7����@�P W�����(� OB�@�L�6����2��8 �6�P2�� !�@���`X� ���)X��ؿ�@(2@T�`<<��� _4��9 ��� P ��� � �`�F�d��TP @�%��� Pr@���Pd$�$@@�� ���PG�`0'bH �$d�L�D �! �?g0'bH Y�/�?g�d��J?$��� �l���6�� >�m�`� ����@�-�Ą~� |�3@&�����BZ �%�9���Z` m�4��\� u�.؅p�0�����b�] �Bl� � 6u(cc��P"Z0-Ọ��@�C�X�D4�`6Z�wY-�:P�����P"����������.����&@�� ���l� &�� ��T���cXO��u�. ^��������?�T��x� m0�����@�cXh��?���� �hch� ��^���O�̄7���@�d�W�"��p �5` \�RQ*F���0� �x�<���JTQ*��Q(F1 |�R���d�Q�T��P*4�Q< �� J�10�P���P*�b�(�(�X!&�4�ZDL� ��(�b�@�g��@6�:��I�� 8����t@�P��w4��@@?�#`�H!�x��`�>� �,S4���'lA'D&�A` �1`�8 �"H��-�%hD�Iz� <@F|AIo��$�����r� w������ <��I��HI%ɓ��4�F�')>#i$���I��HI& $�@��5�� <�@ �1@p�$�$dp� 8pB�1 ��@B�: ��s ؁;�x�� p N�78q�� 91'���r�� ^0 �@wb4t� @ JA)0x"O,8�A"�T $=���F�)��`4�N�,��<��� ��lF��M�f��@u@�9 �� @��� &�)8 ���%0:G' � J���A��s1(�� 8�f�28� (�e�� ���topDRx����"0���$I$Ɂ�?��@� ȁ�?x����4�J�')>#i$�OR|F�H#�œ��4�"�')>#i$�$D���� h*�4� @�h*�41����$��� `0� �U�V�hj���U�P�@ �9� ��@�@��<���h��*��������U�T�?�`a� �D�A���F�`+�2�{�6@�� *�� 4H�׃� �ti�&`)����AՈ ��Z�-r@�`�` =����A�9@�(�ڐ=r�����&s���P5 EL��"&d��@����!�f�,0~,���B�~�4h`��u2E։ p���`c�J B����L��H oB�p��5�� D��m�@ X�:4�@ �:��\�9L� � $l����( �V@ x1`Ԁ��\�9�HjL��6���x��B����t@�P��w�=��@|�T?P� �� �=��@�~� �@x`�B�@!P��4��@�� 0�0pA#��<H $�$�Vp��mx�d�|� ��g�0p�3 hE��l ���-�[��� h�� F�� 7(�=q� z �l�-��PLA( lA;��PBa( ��,�m�-p�(4%��mAS�J�D%< �A ��L@b�.!��#���:�P��!/�%)��� �/0)����I�(`�|@8N&�'��֗���N}��e�ԗ����|�/������y �����2_� �,uĀ@,ȋH�/p�$̗6�B���p� 0�|!Gl��#�$P92_�Y"@k� � @�D����@$�@h��d9�i�@�f�d�Q�$��5�F��\�-P��@� la���@2�u�/3�� h�[` �a&� ��g[�/'�- ��C @Z�3i�D�\Mr J�v� �0���5,`�_�Jv�.j�\��X�Z � a������ 4�5����B�P)a�0�z���uH X hH�%�Vv�k�I)� ԃ��� A�.�d�C��Â�!J�v��^�fH+;�ڎXb�H+&`)�� ��RP{�v��nC{X �`�D�����b`�c) ����G�����b��`�@ �@�z�`,��'0��"y�����ý�,+�Q�����@ � `�@�~!@?���[0 P@@` �P�E �&� �l�����X!�T���BЪ�2 ��@ 0f $��*�B��`��*0�]���� �@����"`��,P@��N`���d1 @z� �'&�Nj p'� ���܉�`��0w���;�L��� ���N!L�������� � ���� `�D�0w"2��;9L���&�Nrp';0w�SFp';E:0�`�`�0�`�X@?06`- 7�4��9hE�hM� �q��%[ ؎&��แ���- O`/@��@�`�x�� 0Ϡ�n q�d xM����K7�8X����G]jL d�H,�B�!��5� �*m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`�`D��g愜X��T��� ��A6�`<& v0 W�� �rEqa'�n1�N�yb�[��\�b�nX &;`� ؂ma l;�`�vO8 ` v�;L�\���0"�zp�[A4C�Ϣzp @�G�8;F�z �� B�x� � �& @��%t���cp  6C&t��8��D�2���8 ~0��L���<�iĀ���A���i��:HCLpw(@ �9B� ���l:���/3nȄ��ER�`�N�x'Z�"A0��� H!@Ј ;&��v�� �-d,>���P� ]�+ L!î���R���Fd��=]�+�0M� t��BXD�K!� �2��U�@�� ;��0��h]d@����`�^ ����a�� ��=d�Y&&�(0��� !�.4@sBN� SD��0 (,j� @HB&@$�%��ZBI�-a ��%�Z�� ) r"�$��2Jq �j !&�T@5���Z4! ㄖPIHB%������Pex!� �$$'B�H!J�2 ��@-*�AK(� �R�D� H(�(�́�PՀ:�jф$�ZB%! ���@QP���{��lxC��&YCQ��@N�ދ��P������ O�Zl�%(�(*`��L fhP�5�H�#(�k����k����5�� �0]�h���a@Q�#���t 0�5�H�#]���J�#]��&�b�Df�`dA&0�0�!,��� N�8�0�� �,�F ,�*�'0@�h!O�#��  $���SCL��� 4&`fAH�"d#$̂� � � ����a��H�0H�JP���a��H�0H�JP v�(��(�"$��1@ �`�� B@�5p��S 2��(�`��S��@8J(�$��H� �|�Q4�T��0A��P��4��2CP� �q0F�8��4�"�+rE( _ ������1�/�P�c0��*��Q�LKZ�J�� ��)�c|�4 � 4L��pD���0� 4L �$G>H Dr��萉$��J�f*9A"9b�(f��)!9b��"� $V�� ,@P���0g ���ڀ�Y3?@��� F�*x���!4A��o�M�����)؆ s �"�ր)2` �A,H����`4t�v�� <�� l < 0N�����7���vaT@?�%� ΀pz� �����ho�������t@�P��w4��3 A < ��P d�\�X��A<0E!��x0��px �7���OP�&p��1( L )0����B,X J��F���Q`x  � �T�h�<�3p�@� �� ��"�x� <��jx �!Ԁ�T�,O����Ң`C�� J�E��RZ,�� ��� ��)e��$�q�G �t�6\�3��#Xm��5���q@ �90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���X�D��@���B $�!Ԁ����5@Q0�01�QXG!��q�Ba���(܀�P�Q`�� 801�Q�o���H���t@ �:0Ѐ�x�(���H�΀�`� �LܐS�� 0N��y:O�0��5��qp.$cp�� ��|.؂10(��U93 ��J %8�*g��8�Dk��D��H R� ��` b@R0��ZĀ�` �����������A�&)�����U���*�@1�ThAH �_$��/�]� /$@�A��B@�5�= Ҋ�8`�0����jn�0 �8�� � �% `�@5@�x A �T ��1��T�%e(����  ���6��� ��1���0Y�0' (�� �4�q� h�㉔D�@(��PM��A`��Ă7���>!Fa��@bP�,8�Ba� �A ��!0�<c *���ρ�( �����ρ�`��`�s 1>[� �!aL�v����J�0��s 1��`��d=Vp @`������X�)�a��1(M�)0�ྴS �? �b0���� , �����-�D�+ϢnQ�ѳ(��0p�0�,�`a�b�Y����-2G֋Y/3d�p �@�T�h*P x�!�@�B 8 � L �e&�Z��pr� �8�H� ��$G�܀6��$o���H��&xL @r���rԁ9����G�ML @r��8�` :p"�,�c� ��Q�� �`@��1�t��P� Gˠi3mQ� ��{�P@L���ԘhVc�i3m` @L��&` :�0�Qa �)8�@@���-P�1�fM�A�:�6���t�:���@�� �9�`ڨ��5�Q�6�V6Ơ �e�P�LupԡƐ�28M�i��S��� �� �B��'����C` ���l��p/ �� � ��K6B�!��H��$F�$�%,��r�*!l���K�������oTA@�� l���q�D8O�@ # �#0� p����+z� �� V��bE�8l�n��t@�P��w4��)8���^��5d8�!�AT�z@  ��B��t�� ��bMN@ �z�L2>��1�(� �� [P@�a؆s@N�g� �%,�0��`p�،����x�6ԆG�Xe��q)� ��`�� Ph��D��H<�IT�D � �`&0��Qf�L� "�6�F�(��3�6�7P4jCm���6Ԇ��Aj�L� C���m��� 864 <�3*5>@��X�l� ��FC~1������R��m`)�Ș�P\��Ո.j��A�b5����l& �z�_����l�����_��P1��j� �f[���V��A�f5�C=P1��jX ۂt�f���X�z��L@(.���A��_����l��p��� �).����b5�d�� ���r�8h�D�"X��Eb���"1��b�zY�Yd��"1E�kY� d�g����p�Od=v�^` D�mq~@�A��h[��&�@D�8D�����>q����9pB�1 ��@B�: ��s ؁;�x�� p N�78q�� 91'���r�� ^0 ����RP J�)X p �D���p� $#���)h`4�_�8��W �ph@�Ap N8����S� ��)8�� 0F@ N8��top D1@ T�@�c���)x��� 8���oP NA7�����bp�@P ,6���X���@!P ,90�x��4`�h�<�Sp 0x�A��nP�A�o�4��@�U��@��h��*����$A� Hj@&�4��p� �F�#pg@ �F� �AP����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8j@0�Uڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b���z� ���r`�9�@�h��< ��xl`�A�@��3(� $A� � 0g��� �� d&�^¶`L +����3b�ڋg �5� �@Pn A��Hr`�9�@�h��< ��x��8� � ����4�>�3H� h��4�&�3��t��!<�i"!�D A'�� 0E� A$��� ��6�JC4{��<s� D x��z �;�����x����u ����X� �88p ��*]t���t@A?@�����#8����X�� 8 �bUP+� ��U�� �2=�Āh�<��ܓ{�`��=6C��ܓ{ ��{d�w� X#H�`60������q�`������?���y���� T�<�4� �ᬜ�p�0�R�e`@���*�� @�����<}/���Cr��j���P`l�rb@���*��?j�����BL�1}��]1��[��s�����X�OQ�(ç(Q�/��0XJK�[,��psŮ�o�-~�9��?hA,HK`A(}�EJ^� �/��P��a)-%} ��.�Fu� ������n��sX����A��='���<����NaP�� 0���)�@8L@<� ��"��Ѐ^@h`;%���b^@h��A�&�B`T��f�P��� <sQXDhXh�pp��  ;%��D@"�=��䔴R��$a�$v�|����0 ��l��% '�^�v@8�E�$��3��@�NB!$ %��oԁ9����� <��`D��@,)D� (��h*4�`�A�����P��6@*P �C1� H!8h:�nR0�AЁڀ���� ���4l� �a7������K�6���a �ǐ:�c9,=��X��A��rX r�4�x !9,��@��`!�=�� �@�sd�pX �Y7�L4Z�C�7��u�F&�&�Xc��rX � h�ñ�E��p,��� H ��4�ԀL`m`s����j@�: ��s ؁;��x`�>����@��@|�T?P� � <�P*dB��@0�0 ��� |�@:@�5� �A�P�@ Cp�@Pl@t<h�A���F��Hj@&��͡8�@p �90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� 4�@�� ��s@I� �$ d�\�X�9�� t �D  p@ 5@ �!@i@ �� �#7�4A���L� ���r`�9�@�h��< ��xy����U�T�? �@�sd�pX �Y7�L4Z�x���@`�n��$@�ڜ5� �*m@ ��V� ��j���U \�x��W���@{ ��>P�@�� �7���}� ��*�A p� �D��#7�4A�,`� ��P�]��@�9�V�h �@ �:� Ѐ����0 ��Z�kF�1#���5�F��#��(+`ܗ��$�ja���A��@�(+` � �4(6쾘�kt��Aj��Ũ���23bF=�F� ԃAX�Aj����A�Z��}!�����n�-�K=H-3è���23�C̨�`��zp_ aj��0�K`��%�`��K`��%���ta"\2�B��y:�"d����,�]!g1$K�� ��6�K60�(��R.ڈ�mD�%s ~ �@ѥrC2�a�1��ড়�C�6� ڈ.��T �c��o� ̄��S��1Aq@��5�8h��� .403�8@�� ,����`��x��+.j� `��p�� i��� ��� YGM|a&�� !�����@�lTUQ )� 2pT�>�ܨ p�L@m�@b`|�*p�"Xc�A,��� x��`�0 @PXM�0�X`|�p@(h c��!@(h �b$ƀ���Lc�� HAbܨ��BH3FA�>���+��#4ނ[p �-N����rp n�-. �0\��8B.3�B��1��8�H3� ��:��� � bƽ !Mg�{Q4�̽�E����-N�@8�[p��p����ނ[p �qt�@�ނ[�G��@H ς[� ]�3��θEcH芤p/�Ɛ8FB !0p `n��� ��X`�� ` &@e0�� TH�$4-A!(䀅�&��`�"2ٱ�$!�FJB4`�$� !�vE�B@Q�D�;�&�L� �Ԋj47TAJpa /��l� �L�XL&`,"a�0�b�,�I8��B`�"� &`,�Q��F�b��z0�4��0�{`����� $���z0�4LP &@� ��4$�Ȑ0fHĄ 0���0T�V�Xb8D�� �� l�� G���� ��p��� 1�pT*p �ʐ� C� ��4TD��*CB ��R��Pe`H���_�C#�/��pT�@��(���섡"��P)Cbt g�a�F5��$]�LD��1�`�� �~x��9��:L��� 3�P�@�~��C?� �@��a� �eF�1# ��3�:��KFb�~�/�A?�s_��}��A?�L4����! P�L�-Œ���Q�TM��&�&���d����.u�T��ń�b;T�a� �0&\2�0.u�c;\2�PF@@�Q�L��D5��.` �BPhZ ���Z�C�u�.���p��~� /T܅���B=��"<���`���: 1�0�N8�L( 3Aj��0�CJhUʡUu�V� [�'���UI A�HRB�)(�C6 �Z��jE^��B1 �P���1��G�@��.x�D��bZ�Dv� x�0+f�`D�`6�l��o��[` 1�Z�o�cfA`l!T<��B @�bx 3Yt��� o%� �ޢ\��耷�ޢ�<�]���`x�^�������l� <0׎0 ���4�Px_h��[���-��P����6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���Xp�@Pk� �5���@p@ 5����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@ ��x��8� � ����4���>@H �A,@�@��5��`a�0�F �#�T� h�G "�$�g �5� �@Pn A��Hr`�9�@�h��< ��x��8� � ����4�>�3H� h��4�&�3��t��!<�i"!�D A'�� 0E� A$��� ��Q��#@p@�1���� ��08F@�X�zb� =��@�}!zE��W�^�� �����ӆ E F E!�l�6��$@ 9��+������HL)�psH�`h��� �� � � �N��  �4�� B@���T��"�� %������H )� (e Q��`x)qHi m!@Jބ`� ������b�C�B��H ��@D��� �_H )!%lA0hRBJ�)!%l��dR�ATA %��'�RBJH ~!%��4�@JB��!3�U�B�*E�H<� r� `g ܀6`!H�Qx@�9��;@r��"!2��@(܀ �n@�7 ���� �݀ �n@�$7 ����� ��� & ��xh 6Ȇ�� �0���B P*���`,�,P��s�/'d�� ��D�"`�(��La<T����@8���b�P��%�BF!L��a ��L!��`��� '�5��:`Ra�z��h��c"N�N��D!�7��}�tE��S�"Nā���q��� }#�D��U�^@��t�����@#�4x0 <� �0┮Z1"N�8�K�xf<� &`�E�1."�Oh#a@E� �l� ��M�� ,"�v����� �E�Z�2��! ��2����V� _� h<���7�Xa+0��E���� ^K+`������ CLP������TLi��BW� �J�p+�#O+X"���B� Z�+l����V� H+hK}���� \a+L`�5p D�8XE`��q�yB�88A�i,���4愜��,���X��4�|�44GP ����0P�������pE&@e�/l�4�"0F@h��-D����ρ��+�@}�pgP-0���8�"�3� <r@tpX�#:D `-r@=�1�~��p� 0C$�Y8 c�8%��"�B+N�,�Pr��S" �����DΠ� M-��2@ ��W e����# ��! c��0�����-�-���X��@-���K@j!��P�]w���0"��e� � P ��-D�j ��>0�Q�� `�Vu���w!%�°Q6n�) ԡ�B��b�-<�!��[hA u��P���p ��a� b��a��3�B,�Rb��EX��B � �{hx����7B ^(�����C �؃��3b�|�/)a����3b�|i(g4���F� H!V#%����3bA)���̗��F� �)a�T�P=RBJ(x)�ॄ���!o��*2BL�AI )a�T�0B��9(#� ��0BJJ8(#D���2BzEJ8()�W���2B����� p�@��H hB�B�3@@!*P ���/��T*�"��&�Db,hB�����6� ;�BƨDN7�XP�n8CO�""�h r�!7 �x��CA��?�w��_t0��Au!6�Cq�a&̄���LP�"s���0��L�& �DU�RB^� � %@��U� `3Ap��T���3Ap���@0�0���@����F9��k�îQ�<�&`(�0G�� C���0�P(��v����I��c(�CL��W C� ��1�!&�]c(6��P18�@I���� �������A�����>2U� � �0�N�@̄x��AT�/ԡ:����� uhD�i�Bb@<����P^���C<�/%¿�*`-"���"W��"���T� ���T+bB� `��P"@/���X� ��腛cs�B��3z�q��68�PF��Y�ĘP��@)!&<X� cL @]Y������1&�d�,p ��%%����Z�x=� ���gp�j -# %��X�3V�=-�Y��Ւ�����бCǂ�� � �0�Ô0:�0��$)P&` `� ,�&�I�a=%I��0�`0 o`|0 ��_�K{  ä@ ��^��0)C�����_" ,���7�@IR� L�00&`�aP� P�(�a%�\��@@@T�w����kp �נT��~A���5����L� �A��� f?�*J�10�� P�k@ J�6��"\�x�w�B�`��O� �%򃨢T�m�4*�*Fq���c`1�N ��Ý�Sw�B�p��@(!�)c�L2<j@0�Uڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b��g�@��[�t���o��}����t@�P��w4�? n��3�@���� p�Y?�T��3�q~���g�\�X�� �g�� �U�VAP����7���(j`ȁ9@��@u`�;p�@�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă30͔�h�l(�7���4��P�: ��s ؁;�D�"P�b�1N�E�g�lc��@h�,�b0͔!A�6�x0 �#���H0�D ��xh�0�pd�h�� 8`d��t@�P��w4�x��H��fx`���3Ef��X �@�@��E�� F� �R0� #�"�$�?�@��D`$�B" d�\�X0�!0�,^B�)�`�q��) Oc��j@��xk`��p ��"0P$� vq LA�@�@��@6>�*P�i�(�@�HI( �&�@�z�> �%!$̄H�E�٨3!�D��@6"M�4O#����L�OC'��@�u�x dÐr�*(�@���A�a���  �� 䀾�7r[Hh9{t�H ` �"�*�7�[`&�'�*@Jͳ��� � R�hHI��>ƃ-���(L@� %��S�Tx)�Wځ��NAJ�>�]�:�y ׇx D�} �����~̍h"�ǃ`<��17��4 �cnH�i����0�pn��� 熡�,��  h87 � ��s�^@ù �4��@F� L4���0�@C `��ܠ�v� 熡0��@ùa(: 4��sBi���GR���in� ����5L ���:�`z��� ���j z p���' �D��uN�0���0%BCB8"@�aÄa�6 !�4��P��6�ې��n8��7���E��pX5�<�}`�C RE� �P{�  (�9H���6��.B�I�P�SC�( �����(�4$�P�1 ��@B�: ��s ؁;�x ��u�@F��h�<���W�4$��"P����S8��6 0��`��� 80��;�t`!����C0�� 0�� ��x�`}�" �1@p`9v� ��� ăH��@<g� =�Āho9p����oԁ9���h�<prF�� ��  �@1`g���3��})��'��7�� ��̀ �*h�HZ� *�`��hF��9a�#�`�P ��`7,�P �3�N�d�[A4V)�&P��dD�f �0�Dp Ct��P�������0_B���� ��`��ܢ�\��9�A�֢�,X��x�0PcT��`�3c�Do�� 0-�[t��YZ��Ph�f�Do�BX�%z��B�HPh�� 0�X�hb�Y!�&\�+ �Bc4��%2�@�h�Y!�&\�+�Bc4��%2��h��Y!��?]�+��Bc4��%�8�Ax�0�8�!�����$`*���(C���!1$ؒ�0C�T� �d*X[2��T�SL�����T��a�11%$�P*�HT�`��� ����gX��4>�&rb��� � @��,(�g���=�'" ���{r[�� "h��) C��&"߱ [���-c��@D0�P��� >�'Ƅ�,z� @f����"��0� ��#�T��X&He��f��#wz��E�W�:x < p�6�n� ��zT���k( ?Q1�U  Pd��80�T���P��@p��^Ra���&����j�@�����j�@�: ��s ؁;��@���B �E�� �@�A�!6\4� <�'`�!"\��b�lhL$ @��h�<�!��x�$�D�΀C�m໐/�����!ȁ�?�ph@��!B{@��@��L`60�m�lR`��6�&�@1`/a[���n�m@ H� ��` �D@�@�X`(�Q X �(↋P�t�n��L��� @@� 4��@@!g@�@E��)�xP�@A�z�����l8���6�Q<�Fy|���Q�)"�� �:@DЀ�?� <���P�� g0$xA�%��`�Sp ��7p��,���Q����(E"DI0 ���>EQ��S�6 G �Ԋ��QHIA9h ��5ڀpk� 8� �Xr`�9�@�h��<���@{ ��>P�@�� �7���}� ��*�A h�<�A�P�@ Cp�@P�� ��q@ $��  �D ��X�� 0�0pA#��h*�4�#��@L�3�H��$z� �H��$p�,�G�%�$QN�Ԋ`�+x��W ��xh�`�(�r�ph�H%� �O$Q\�`�t4�xL�8 �D ����"P�D`$��P����6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���XpԀ*`�� �V� V�@p@ 5� �+�o�9� �x`�>����@��@|�T?P� n�����`a�0�F �#��  o�-6�&Gћ E��s���)&E�15�bR� )&E�e�R<1�b���"�����Mb�R<J�x��,�R<4HĄ��O�7�L���P���_�Ճzp����M��p����:��p����,�Ճz��Q=���Ճz`v ��`y�g���$�ר�A� *x`��;qGU�#�'�`��F��#`���Fp� #� N�\�b��@�a�2J�x��2J�p�)��r+Ȁf�*�@�H� ��xo� �|`���n���.A0��j�XN���� {X@L�, &��`5X� h��j��Q��@���j�2d52��X�b5B=�V�����-PBh`8�Q�| ���r���2 @�j��Nq�W�S<>�<��q� � -��8��p�fΈ )ANT�0>��q� �����p�fB�i|�����q� !!&��p?T�q� �#Y8�Q�|��q������t�fx ��8�F1"g�L@{�&@+ �`L�0���@�a��(�X��q�a18� b�`�a��{� �0�P@�H�Y0@��t�� �&�"gaA� ���mpU@{�&��K��.�**�,��� �n� ��p��=L`\� .@���'�܃{aA��`�Q��(���� ��Kq�tQ�D:�x@H6%�f�,�+`���"PB@H6�@��Y`B�L8 1�:ᇩHBB!�����q�G��p�lB��TQ ��W!^E3!��?8�B ��PC�!`H����a��c�`�@"�0�p����� /�2@r�c�.V1��C�U�9%-�*��H=�bV<,�g@ SM�F� GD�*���ЎhL5����SM��V4Di+^E�(�[��1�L^��D�R[t�A�-�$�S�‘�W�+֫pDr�u0 ��:� ���j���P�Ct� j���P`l�m)/T��~��m)/T��rX�F[ ��@���*@W� ]�T���=b����䠱Rl� �6T����� x����J+��:D�����?�:T��rX��X��z�(�~@*{�:T�j��bW|?�9p�` �W��^`0/�$�X��HZ�@V���/�(L@��d@3x�r��A`� �  n� ^@ T�+r�sx"� 0 @n� ^@ T�+r�sx$� 0 P+D� �$ +�3 �A�hKn ,F����������f���S� �`60�=��#�'�v0��#8'9��; sH0N�8���X��L0��Cr��`1��%�$�$`�0F��BX4������N!+d���#�FÆ f�UA �L�A*`" #H��0D������0bq,���z�C,$������0A!(� #L��L ��~T��a��X��D��řp�"8 :�,R��H�GU) Ia&�E*@ �bY G��0P�QU HR� e�,R�X�@Y��)(l���Ң'I@-��` �l��+~� �&�d�D%�&9V��0�d-b�S"��6����l����L�6Y������$68%���m�����Ca�-J��� �1�d-b�S"��N����HlpJ��Z U"P�b ��x ��%�����K8kH�� ���6� ��u$� �!����n� h�Db�����[x�E@T�&x�E@T�p��9� *F"�գ6H���+��0�V�p�,����la|��� A( L�0���� � `�-��� X��-�� �( },��&��0 �! 8��@a(.�E&��\lL@���+��`����̀ p < �@����"܉;���?a�N0d��#p��0����AUaZ�)����C @����; `��Xe���*�� d��� *�S0Y�V�̀UʁV�N! ����>0sQ�i�S�b8��`���L�(2܂.���\� ?��p�D�0����4�X�A�!?D �PNA�1 �|2 L�R�"��p��1E�`��̸� V��*T�-� ��B�*Q���`��q b@��z����R� ;�'1F`f\Ca` ���$ � � p���$�� ��]t�������ATI z�ԃb���3�*y�ԃb��*�3�*�ԃ�� �Jap��OD>Q�_Ta~��.F��X4� x ���4J/V�Jc;� ^�4�����x�L��A����/� !����p��^�z� ��A�=�'��c3�`�=�'t��ܓ{BG!�8c��ܓ{�b�=��/��#0�`�=��\����x��@*P �(�'�"@��r��^�`֓���"؃�d< p�A��&�/� !`<��`8n���L�;�&�/���P���n��7��_�3�������� X �sp� �Y�!:d!`P�@�� �7���}� ��*�A h�<�A�P�@ Cp�@Pl� ��q@ $��  �D ��X�� 0�0pA#��h*�4�#��@L�3���P�@���|�x�� 8���3�s�ȁ7���@v��A��p@!( ��@Ȁ5��ăx` �B<��`%� �@<�o�����28L�( cP�@R`G%(�X���3p��)0����@<8B��� D�p @������C� �� A!�A'@�8� �,D'@���  8H�@��N��`��)8�0.D���@�@�8h ���6��o��8����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@  p@ 5@ �!@i@ ���J�L��HfP&Q ��Ă�@���$A :4p� �F�#p�0bp�8�E�h= 0@e�� ��X� h��2�s�b������QBp�T(!���Q`J�#�3-�PX!ܢ2��ø�a�p`�p��X��zܢh%H�:�Q� � (�� 8���t@�P��wDI� &Ah�<4�$�@�0Fp ���B� �D N�)��@��g0$'@wb4 )2E @�� P�`;��m0�A`L�*BE���"�Cz܆�pE��m�@�|1d�s0XDd�� ��y\$�,�� �HR� ")$�1n�3`11!h�-���,�" B�l���L@Y,@�l�.� X��"aA�-�E�C�"!�`Y�E �"[�9��� b�Y "l�� b�y]dAĀ-�@<�����4��x D��6�$o����؂�0 � 0;�JL� �ah�q@�� �� ���4� �D#h��4x�- P�[h!_����p@�2o�$����JB#@8%!��c��0g���|�A�8�"���@�K�r������` h@-��@�B]� � � h�Sp �,���p� 0��J`؇ 8���b�   1��hʥ���\&��@@aL`����-b�V@ L�l/P_���/���2v���E`�0�@�j�����=F�H�j0(!�Ą�� � dd}'�@Fva�E(�eA4&`1�@O((!���P�R %d��r?��@  ,,�� R@ �%�܏�r?��@X�a䗠0� �/������nK�gD����_�FtQ�� ��]�d3��@����j������B@����& [1�"��b5$�հ�� b4�ꁊ�V�j��6Kt���jԃ0P\�F+��a������� B@0jCl�S 2���D�  "Nت2D�i��5�� �ԡ��@$b@=� � ��|��ij�T``U�3@$�ƪ2!@���`2� X �b)ԋ �Bd��P��)h� l!c��P,�lD� �M��A2�M0\@��h@L��H�>0h@L�)�@M(�13UF�x1�3 L�|�8�M� ��q�!�@(� �#_��,U��bH��|��� �܀|�n@�xP#_<��]� �q� &!�!$3N�b4c,0�1 T�@��R�ŀ @Ap�7@b��P@�7� @P���M����� �;@r��*�Q@ G� X P0ƨL�6����2��8 �6�P2�� ap�� �p �HZ��� ,�`���n��ă��I,�  (���SP�X�)&���x�DJ`(!40&@%^@h`l%0+q��s0e�E���'��!���S��n(A$�� @NI+�NbvJ"0�`7̗�1_L � �0@0 !�A9�"�g 6-t:�g<\��T�C�Ah�X�H� 0�Q 4�"��`x�!���C !�(�H�B��LF-a��h ̀0~�\� 3�H�h<f���B��Lx\�T��r��{x� �H�� 5f�Ԙ �@�?���{�2�Bw��1n@ !�H��pB4�f���B�1����I�$�P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���Xp�Y=�m�V%}�{��@p`��z ��oԁ9����� <���€`� "P�b� D��\�~�� (�Lc��_"1���@�@�3kp bA01'fd�M n�` +B��v @�h@�� ^g�`-ȁ�#b�����Fȁa#n��r`ă��&�H��@|L� �<�h�& N� 0I#���A L�pm�E� Nĉ8'��@�@ ��k�-�E�6�b��,pm��� ׆[L�X� �����p� p�õ��=�F�jlDm� �  �dB&&�����j�/�I$�F��tFKh �"W���Z!(`�Ą-���P�[�X|���I�@&�� �6Pk 2�Fdb��#zD�2m��@ ��0ԈL�mI���5B���S#Zx:�%��3�T#Xm@ ��V� ��j���U ��oԁ9����y@����U�T�? x`�>����7��� @�� 0�0pA#���V �Hj A�6��@�x�5� ���r� �:0Ѐ�x@��� p@ 5@ �!@i@ �ƙ� D'@�`"M��� ��Dr� x�4�D�H� E� @�0p�@<H $�$8h ��5ڀpk� 8� �Xr`�9�@�h��<���@{ ��>P�@�� �7���}� ��*�A h�<�A�P�@ Cp�@P�� ��q@ $��  �D ��X�� 0�0pA#��h*�4�#��@L�3�b�h�� ��ۀb�@p�u0��(��oԁ9����� <�� \G'@�0��� ��xn�)@�N��`�������h�<F;:x��X� bA�(��̎X��C����5� �*hj���U�P�@ �9� ��@�@��<���h��*��������U�T�?�`a� �D�A���F�`+�g@6�6�j �lh�<4�x@(�����#� '�'�F�@fc1(�1�̆ڐ ��Š$�b`��mX �7} �F���6h�۠vC,�� ��bP F1� H�6,�ۀr�>�@#�F�p4�m� �!D�7΀P�`�5� Z�*x��B�V��t@�P��w�=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8B��� D�p @�����8� ��(�d,�`!A"�� t4�#P�@(6� ��x�@0a�…�T�8�@1�� g (`)�� �R8��\�7����oԁۈm�`�Cz�����@��@|�T?P� n�����`a�0�F �#�� �4���`m@ �0�P�@ � 90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� 4�� ����B��!8h �6��`a�0�F �#x� H�I0��R�B��8 ��R�Aa����b��R�K�����@ XjK� l!���4�Bo@���FVHm�&������f�� 3a ���f [h m����@II@�G �-4�Hj A�6��@�x�5� ���r� �:0Ѐ�x@����@P� At4� &�D�H΀Tn0��A'��C�M0�&"H�@�F�$��` ��h���7�P�L����29��1��u��8�F�Ѝ|���u�8v��8�V�o4� #�FG�uF����F]���1��X1~���p<Ċ��6� V�k�Eྨb5Y�+�o�4 \� @���Ya���@@X4�$��� �4���hj� ��7��@Pk@�: ��s ؁;�x`�B�@!P��4��"H�@��5��#P�DI0 �@��m �(b2�m@ ؀�90�x��4`�h�<OB�cq�g G��Nv�� �2�rtz�� �c�A�Y � �WE���0eh'�?��@F$�$�dlj@�I4�1��D�5�F ���!P€��� G(��!,M���C���h���1� ���� 1(&x�z0b�w��!&,��@bPc�݁ Ġ���u�1���v�9���;��r@a�z� ���pڀ� �`-�7��sLr~��7����~4�x��H,����T�"H�t!�D�Pax��Pn"0LaH;&�����L@�,&���~�L� � �_���/���ZQ+j� 03� �&�n�&0j�� � ��@x�� ؇�@��a�!:�@Hs��!:��D��(��<��A�ë�OD?`���*�~� ��U� �^��0�$@=�2M�`�@r�ap�1��h���L�?`�,�@j�r`1��9��`f�a0 �a&h�`��a� ��0��0�ʂ`�,��@����|�q \L�.� < �b�c>�.&�4�[� �@>A �`A�|�\̂`(��,���O� Jp1 �9�|2���1�,�A3>Et!�SDǐ@3B�@ !�fh��CH0 ":F�����h�Q4�(�&DD��@Dt��4#: ����v�q� `.�����6R�pH���X�x�����6�h)c� ��r�u� ��"���6R�pH9��YG�B�l �!�:��0@rX�aɨ���H� y�ŘݩO����`6� j�@��pPy�=������c,Ў�$p"���a�� ̞ٳgw��BtGF�����;v�O!����h�(e��Fgy,�X䀡�Y�� �Mm`ht@�8Kgi�aht��L���,�< ��9X��,C�����@�8Kgi%A��(��Y@ �`�� B@8"c,�"0F�8P�@ &A%�>@l �����9��$� *��B@f� 9@��P��( ���\���� o�{� �� lh� �1ax�Ɓ �}#���� �3���X�7����&p��8h��`+�T4�A8MP�� 8�F�@����8���<�G��9y@�y@�9 ��x]��`���U�NW�* <�z@$��n� ���W���(`\*p��`  �"�#0��X�T4@��Tt����G&Dx�@Y ��BH�VC(��`9�Kt���j��"A��k�" :��S��� ���b�)h�<4��99zD4 �A7@�t����c7� h�g0р&x��8<��A���@0�=���q�g�5�G=�Āx@@4�x  < ؀k��p^��l�T�8��Pf�k �� g`��k ��)�P@,`/_� �c@Ĉc �b�h1�P��1���2��1D�p 7c�.��@h��Kn���� <G�����)8��� X�H�%�D�.4���>b&`X(� ��~��}d�0��x}���A� �ǜ��c a&% ����@}��L�>&P�Ϙ`�1(0���3�@}L!L�< ���J8�h�60Y"BEy���،Б��� �7��&@r@�A��@@L�Sp 0` DJ`t�N8:`c��st @�@L���DP��h�Y=+Dnr@q�V�*��  �(���V-� ��p�jLK�V�%���4�bBL8N�i(A�hu��U�� �efH+r�b�P:Ng�G�6�#T��x�!4��o�M��X |H !1 � @��^� �x��H�"��T@�@�T`$���(K�G�pp$��x^�<�QPJ0��f,�e�$�8/&�>r .�jC����>r��'�J�B%������L� ��Ǡ����Pސ� /�z���%BL�)!%p .q�JY�m`r���(e�M�@�h@�A��h5 P0 ��\� P��e� (L� 0�� ��D�f�h�p �Y9@����A���@�U�7�����r�ȁ7����@b��:����S�D x`M�6�� V��D�x`��<�r�yH �@�р�؏��4�����<������~Djb?�G�ppb�i�'@��� �D@� ����I���Q@���_�<�y��� �@o��x@��� x�Ⅰ��Q4 x@Q�Â��@��@U $\��������9�+��Ă3� �@/���~/�s�ȁ7���@v��A��@@�` N�)��� 7��1@ T���x"BD8�^� n��� �q�A"����Sp PA3�@�A��h�<�3` ![8�� A�� �@�-H4 ��oԁ9����� <��8�)8��� �8�8�P�A�����R�+L�@B��p��E@F�)$ @����@(E��#PL@P&�����  ٔ�D8@C`=�2�� 8�!0��t@�P��w4�@�yD �!:�����C�7��5@� �7��1@ T�"ăx�>��� 8�!028� ��f�P @�` L���*�bF  "PfT�a2L�^� �d���r 3���(eAcx,�G)|�&�2�QPD��((��c�4��M�( �b�2h i!-T&�$��a+lEg��� p�a�F�d���P�C0EFĄ�>>�8��@�|Pd>�@i@ ��6���x�5����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@ ��x��8� � ����4�A"�` ��E��"`a�0�F �#x� H�Ip��hb@��7���t@�P��w4��)����f����ԐY J�6`7�H\=���@�� Ԃ70 j���zK��a�D��)8�� T�Z�fA 1W� �F�A*`��)@F;΀P�`�5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3�T#Xm@ ��V� ��j���U ��oԁ9����y@����U�T�? x`�>����7��� @�� 0�0pA#���V ���m@@ �6����s�ȁ7���@v��A��@@!$�q�G �t�6\D�AN*� �*��#� � �̆�0D�� ��۰0$� � �����m��) @n��m��_p ����ȁ9@��@u`�;p�� @��� �A08��b@ ��18�^� �A2P�$Ap PA(�`4�� @�4��0)m��� �>�/xo�cR�&�7� �:� Ѐ�x@������ < �$�D 1�`[���#�#P�� 0��� P�`ĐPAȀ5��`)����L�R�&�)��Z1��� 1A,dH 9̀x, <G��p �HZ�@V� �T'�@x`̂�l���ɦ���0� � Ux8����@�� T�@�@ ^1 3���0�� `��Pn� ^�� /`D�� �� � `H��d@3x�_AL�y�b� �� P+DJ0��d3pr�hb@��7�����Qr`�9�@�h��< ��xh���% r�pC�Cv4�x��~�M�!=��7�@�5T ��R�+L!Ga��@."0L� ��6��E`$�H�H��~ȁ7����~`Fpx����4�J�')>#i$�OR|F�H#�œ��4�"�')>#i$�$D���� 4�h�<�����@{ ��>P�@� ~� �?��D8�$�� n��g���6 D�)�ܣ�`��=6C�<�{rO!�G`�A���ޅ����F0�zc|��8F� ��xh`���� �����Lj��A��\�pVNS�e`)�2 p� h�4D� ��x�@�����cX��x����u ����X� �|�S�U� �*]�适~�4(# <�z@?�#8� E� ��x��Ă�P1�)hu��ZQ�b\g���^|�)x�^ ��oԁ9����� <������ ��1(�� 8� x2(�@,D��)@�@��Q ��x� <� ��xg �5� ���m@ 0�� �@p@ 5� ���s�ȁ7���@v��A��|��5P�!0� �5�N�)�h�@�q �A�y@����U�T�? x`�>����D��3@n����� `�`��,�HOc�����L@�<�,��XL@�<����/L@�<�(���L =1��d( 0��(@�0��� ( �0���8 294�x !9�=��l`9E�V0A"� �@*��l�R��7@  `�@Ŏ� ln� ��s�ݰANq �`6�h�@1� H�\h�.4� �������ZA�|B/A =! �X�'�]cD�)z �!hnɉ�%G�\��$h�䀮�I�\��\����� F�'As%2t � D�TB�A��XO�Ac`��U����J��K��C�D�% �Ȯ�+ @?��B,9p�"c�$��p�B���NH���.��C ����P�()�0�3�B ���)�� =��P�YaHt:(���Ra�Ȗ�"�š�]�=��S�"z8��.��p �  P*����),����I8� � <G��� �<��¢1�� d�@��0��V| ��n� ^�x D�� ^�V���*�0$`W��O!��� �� � @L�y�b� ��P+D� �$ +���lFmo ��PUAP�(�،ڰ V�x6g� �lFmok�،���Aoa͐�G`3jCx[3����G`3jCx{������3P�!���3 ((Ł���a&}� ���uxg$�g�L@x�́P�{��u�7�6� >�3›@�4����[x�/`��q/n�X�b��q�JY�m`r���(e�M�@�h@�A��` �����CC`�`��a�(W�\h�r].��@1`T� H�N�&E0�@c����� 8vjL���"[�x��i�Ƅpr� �9������I�� ��xh�� C��`�"P�b����� 8�"_���$7�� ��)���ڀ}`��>��z#��sx�� ��oԁ9����� <��B @@!4� ��n�̆�PD���6 ���nR07ݰb"H� <&@��f�8��e;�Y�� 12�pl�pD"��b; �D��!F��pb�0�9�8��c�ٶ0!���-b� x%��d��9~��4(aSH��0p6E�� 1rFV�Wb����B�Hn!]��t�.A�Xna9�[T�FN*�[��e%��j�X�E��!T�M�6�Ŷ@ �B�D�W��Ka$��p� ,���5X��8��A<`� �@� h�S D��'0@�X"@���@�xH �"OH0�'���`,�b#�RXU�0 � ��^�@ݰ��p^ ���v��� O���pr��"�Qp �H� &@4�P`&�W0�^1$��� z@�����P� y(��a�x�cy����<�ArXn�8�q�G �T�y8�� f�� nz @n��p��hp�R0��� j�@� %L�4@ $��<�47�$p ���XO�`��AxAX�Fb��X9�a܆���I0 ˡ�<rÍd�a܆�`nd�� %a1̄�`M QtId�� ��ŀ/�HR� � < ð4@P�  �K�( �%j Z��x�i��n���7!xL<`���-�u��[�n1JP�@�B�p QM��ۑ<�sl�#6��)�G�Д��#���A�����X�:r���0JP@���B�H7��(Z�tk&@G�Q��tk��H�&�D@ i�$��@�@;P k�-��ЀZs�.ԅ�`�]�f`)��oa�4�xH� Ъ�� _��pR.,�‚ ��b�@"!��7P6�E#@ԡ��7�"�U�$���2�F�h~�:���b�@~ T��PD��2�Gʄ� 6�˓ 2a�<��~$@�? �H��JB�Y`?2_4�� ��Lh V�G��#@��2�18 3؏��A&I���Џ�A2��H��.I�( i�I���#CIP1B�$Д� `AI��!4�� ~d h %� ��{�#����8 �6��=����ܣ{v��=p����=x� x%� D�C���g���=4����pU|� >�����޳|�+y%Q%�UB�=K�� �G&JP`l����b�`�M "�y�h@�� $�$�4�`RL�P$����F�-�7#�L[�<�-�c0Q��18o�'�cP$�G�4&�-D�{��B1ƀ-v`�B,�l!�4�0Q�[�]7�X �``��+��0Q�[` ��&���ˑ���<s�$����� ��� @H�IHI�plʒd�K�I���$M ��9K�^` �$M~i��¶�h'9��=�)K��@ P�d�<����$��y��`'�!P�� ( 1 ��z�ALS��/M�I�'i��@ ���t�@P B�5��@p ��!��oԁ9����� <�0�!�j��B`Hj�y9�� Ѐ&�Hi"9 P��Dr� x�4�D�H� E��"x� H�Ip"����� �G�Tb�`P(@(��$��s�ȁ7���@v���@�� @�������B� D�'%�#� � ���fCm�T������mX �7�ݰb�(�� �_����}ȁ�?�ph@��!��x ����B (�!Ԁ����{"P�b�`�L�`�AE���"<��0BFn� TF� :x�" g@ݘ@P0� "��A=p@�P��}�Rl��P.b��� �/�7��Y!8�����d��&Y!��P�Q�B��I *�8Qh@`T<��`��"Ab@L,�[��+��vp���`�!��Ĕ���J�F���$[�3�TIP%�$�0L�H�@X��  (& �B����!&38�E�$y w\I�x' y�'p���8Ih�qW$4p��pE�Hǹ"�䊄N2���W������(!%-��\�܁%Ch ��&��"8Ih� �D0�N�_� 3��̄+"n��/� h(�ƀ�F�)<G��Љ�`��`4�N=:ޠ��v��%�>�rŭ �a@�pXb��h&�� 3����� _l�����]D8B'_ -��L�*(B��� L��)(���@, (a� 4� �� h� @��$ ,�(��@�H�{( �-�� (cKb�>��@�Xi0 ԃ�f8 Qd ���`J�'�q�z�%[��*ipy� �BTI��+h���]�x%l! H����LT L�WB�ư-H�-`���`�1�KZ .�1'�^�< @+��� ��"��I,Bh �T'�@0��"x(pb�*�P�T/�B�B �a�� P �*��a��/�(L@��'�V����'�^ � n� ^��@n� ^@ T`�� �P���+H@V�$� ,�>�� � |UPT���<��o�7�`�P�o@�Y&�ߘ'�oV��7g�X�� �74�F�U�� qX\@r��oV� �7+@Ŭ�X����Q5j��}#V��7����}���N�/�<�r*0H�X-�f���!�3��N(6�Ƶ�b�o~Ɛ �8��`���`��m�΀V@�p/��� ��@� `΀0@p�"��{� h��� �f`�[�l!���c�~�6�"��0��K��@����H�Q�(��OU �B` ^�x��)� \J��&`)��B�` �-ĀP �B�(lAW����F�` 1���0�@��-|�0*À(�2���b��,l� ���(k���2��x�,a�290�x��4`�h�<�� :x�����:x < E�@'@���7� @�B`h�<D�xL�8t4��@i@ Ȅ6�9��x�5 ��oԁ9����y@����U�T�? x`�>����A��(2�sx �A�D� X�k >G ���D�� ����B��!8h �����`a�0�F �#8\M�1 ��@B���D /`���3Ef�`��4�6T"H� �Q0 N*U"P�b���h�<�:�<$� �A�=�ĀhL�V� ��h��%d P0�X �bԆ����W�aD��gp X���1Y�� ��A < �@4�a�l�;�P=� Ճ[� 2���@xՃ[�P=���1j��`�� �`1�<G`� �0$�� �p @!�f�E @��Pr@I( �J)"Ua���}� ������� �Q�������VܗQ6FAب���"N�2 *b ���"���8>���Pc|̞Q0{�� ���� z� hd;��H$!ѣ�� �;��2� ���m�r�Y0u-�>�� !4�@u@�9 "� @����}�,�!���t�a +�D<�`Nʤ�<�l`�� hE'@�4�&�z � U�@�iRM��=�&��h�<gP!��9��M: `�XU����B�81�T�Z�H �4h�����& �`1��;w� 1 ����`��p(����� NA�G��P��8��D��P$Fa�G��0|� 1 �� �ł� � pPH䀐PiЀ&p���M�7�N�3�/L $�X$r@H�4h���uRC։�`f� �*$r@H�4�`�u� ̀f��a� &0�$ ���@,ʀ �(���g�ʙ %*cA���� X�1�œa sV�@p-��r��3 ��d��� <���B@6�`p �AN�Ii'��4�(n���@��l� � � �`l� H�"���P�E������vC,8W +�6p��� @� ���x!h�<s��@V�JΠ+y%=��XzaI,����0�S�W +-�0P (� <��j �ȣ!Ԁp$� �ab��pn@@ G� �7����$Ga�& 9 r`�9���@v���@'CB!a��1�$D� @���t�aX&�0��ŀ�����,|�>��������� |�7�����a&`XW,Up PA�@M 0(�4T*�Pj< &���*@�"@��q�hW�Nփu����xR�: ��s ؁;�xy�^�@= �$O2=��$#�g@ 8�3���h�'�%�Z�@p�'(g ��oԁ9����� <�� �BP CA,%� �#h g��6��r`�9�@�h��< ��xh���u N��� D��"p�� H&NA�d@� H�j�(+e����Z�xo���PV���o�M��h�<��P�Y)+e�m������ �q.D8+'� P&p����m`OJp2��r`�9�@�h��< ��x܀�8o"@� x`�>���x`�>���>m�,�Z���XxĔ��@1p"P�b 4FX��b�A��@��gP!=���g@$� `C8�p��hb@�A��@���RCfx`8"1�&@'nč��.�����b��A�1���$X H�Ob�@�j�q��� r�Q�����Lc�C,0��S, g�4��3�K#�&�A"H�� T�P ,���#d�QP ����`dp��1Xn� TF� x@���x����VA蓫 ��VTZYr`�9�@�h��<� �@p`E��U XA,8�C���pQz�hh��0���T�,���@1X � P�b�@"�T�0 ��x� <���Qx�X;z� �Q�x� �� �@Pp���� ��H� ��7���xf` ���@0� \�z�qrz��#4A�:o�M���� <����Ġ�c���0���d� �"H�` ����I��@�"���*��<-d��9 "ZD ���� �!�"ZP*��@` ֢����ŵ�l� 4<0�$���g�I@�0LK����R0,�� R� h� %��z�-n��!dA,��PJ��� D�$ԃ p�E=� %4��b(%�$ ZV�%p�8 �-�e� ��؀ ���s �|![�A��-�,_p ��/@�@O�i��A��h����|r@ȁ7��&@r@�A��@@L�0(%�T�,���@1` �@Ȁ5�� �&�A"`���}90�*D(�\�x�2�((����PV028��,7P*#H� <�p �hb@��7���t@�P��w4�@�6�#M��4C���P"�D�"дal� �=�Āho90�x��4`�@�@���H��G� @�@1�L�Fp�B��A�����T�@�3���h(� �&���RM:� � ��x�6���O�`[� $=�%�x�0$4 ��xh�`�1�@= Ʉ�e+=�L�Is�$��dbƜ�3ph�`�(�����L�C}�@��m@@ �6����s�ȁ7���@v��A���.�@��� �m�(( <0;���� < �����r�I D��vqڅ P����B\� r����뀈D�@�Y�d�9pn�:X G$FЈ�D��!"Qo�9�DzH; "Qo�9��"P%C� �3��^ճz������x �5E�5ex������^� �/#&,Jo�(_FL`w��`�{� ��`P� Peh��������H �� ���(����8�AEbx�)��� P��yx�$`T���H �L���H��/&`)�/ h�A ^� �� @���rJ@J9%��0 ;���� >:e�l<�BT��Q*Ie�4�?�Tη<�*S����Uz�S9�Z�?����7p_�;@o`�ܗ7����xt��|J�a6x�a��o���7`6x�a� �V�`-`�� ��Sj�7@�@ɧ�o�l���)� %�Rk��O�5� ��Rk��O�5La��Z�Sj�� �[H ����X��@m��@�XX �avA� �[P�DT��JA%F;� a,��� �10� ad|*C;� �` "[� �@A  ��2 ����A��9�l�$��"[8& 8��[xN�\�F�V@[��V�]8���d��B� \*P(�T�ZD�p��S�NAv|�����4 /�P�c����1X�V� J0�(1 �� jP0%2T�r�a#l��)6†aH $lD�>�@tN0l6��N�V�JP0%�F�0 NL�[i�W� ! W 6� *D3@@� �"�����7B��A*��`0����#h ���0���#p�������(|Na@� h�Sp �,� ff&���ဪ��X&ˮ�a�.CV�\y ��� �9`H�a�C&� �;D�P��uȕ�!�`��`v%b� ��8��d� ����1���+w%b01,�됉B vہ9�ʘ�n��< 11����C�a�0��r��9M`+p���y6M�<^�S$��C4����+ĄͳyhB� �'�l��C8���c���s8@�@�'�l�H���� XV� +�`���V��d1��:| g���m���Xކ`y��m���X��Aux��|P�byf�̸ 3�X  v,���b3��̌�����p>3#3���33��̘��<̌̀,e�̀2`f�  d����� ��H��<"/� �j8���AxAX���q���8��� ��v:"#N,�"'�XU�x�n�PB7��������u�x@;�����Ԉ��<�rh!���Q0�@�(�i���(L@�(<�@PB7@ �|bL�R��|�*��E�g@ �F� �@P����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8�R�1 �� <��jx �!Ԁ'� l@��F0fCm� �"P�b`����HAЁ۠,oR0���P@,��Gъ@��m� z"P�b���m@ ��ey��1�t�6� ܐ  �t�6(�ۀt�n� �=a H���@#h��,o��5���^����5����^�-6� �ap`3 � �!�`�k��6�%��bX�|�/a`�̗_3lL��5�Ɣ̗00_�˯6���I��L ������a�>Z>�& ̗�" ��|��������U�2��̗M�-�E�`���� ql��@�5�& ��t��8H`<&�.�=䋋��@�  _\�r@O@H��" $&�f�-�B?h C�z�=䋞��EO@�� p� q94 q�uL _��Ԑ���0�|��� �8�H$'�$�sXHQ&Zeb�B� )_\���΀�<&���x Dg�t���1���"[0&���@�%�� ��@"[`�T� �����@0� $����pp�"0�����-\&���N�O <����B߈l�"0���tŨV�btN @1 ���b��h0��)�b4 @1���ٌ°f���( �(� LR�&@�(F�V��P+�QH�)����ZQ��B���"Wdz�+�=��� �P+D�=�&`)Ԋ%��x ,��4����Yb��,7��e<$�>���� (��[`  J̊^fA�, �0�x���P4L�`� :����R0&�YB]aI� �Qct@g 4 �&�YB.�0��Y�(�0�j�YBK`�Q o�,��)L��h�eNȉ `��[r ��j�bBI�&�D4��L��-�@i��� 8� ld�B4G=��#&P�PT u�7�Z����AI�&�b��Ỗ��i��0ȴ�Q Ca( 2�0$��!� C��i�!�4�F � C�A[4m��V��u�2�<���L;,�E����� dZ�h �C����� d��8��<�4rX �a�i���� �$��i{a/ȴi:��L{��Z�4��(�� �_����}ȁ�?�ph@��!��x ����B (�!�@����T�D&@��D��"�gP B1��"���F�(���N����@#��yX D���m��.�BD�@p`�ѡ� x{@�: ��s ؁;� D�@c����� 8 L�Fp `���D��Q8 � $ �@"`@*� � @�TK��A ���4�$��\!&X�y8�%0��� b�kP*J�(�X� ��A(Ah�A,p ,`0���� KF��P�eȖ(��i�m�-����7�/[�U�T�� \ (@ A�b�� ��?U�T�S�*�p1���� ����5Ԇl�T� X �A3��� R�E� �=��0P (�h*�xL�84&P�x� ��N� ��)O�����.n�` �“x�w�<��|�@",O�-�^m`&<��h�b����1� (�xo�.0�HK!�$���1*Jp Cc0�P+�'��T�ڐ14S ^E"\�3P��h=!(�7��@A�vr�}��7����~4�@C�h�(��PB{@��@�AD`T� H�N0(�p"��.B<�a�c��@A�v���c� �@A�� ��`4��hjf�� �/ �� 8�f���mF�P4�r\�`.�5�� �S� "��� �h� ��xh�`��������":7@@X�\r:�n@�0*�Jq ��^�/h ���2�O��spC`P�S�Ox/���`Jq �� ���F�S Nშ��9�^���)H  ,H -@eX�`,H x������N�E��석��6 C�! 3d�� @hP! tU� ⏾ � l�� �#0� p����PN�1 ��@�[����� ���ˈ�o��K|����<���$A�r`�9�@�h��< ��xh�`��"���Z <�z�������@�N<���)BE��� �� �laEȁ����� �9���Z`a�EaZ��� B�9�`D��3��9P#lč�9B���#ڀ����x����@܀7��&@r@�>� � �T�8�@1�=�4��x P� ��6���@p�\�K9�>��@� ȁ�?�#8� <����`t�P�F�H(�b] �x�/�o;���S� �x@( N� ��(qބ *�� @�� �T���` H�r���)h�4�Z1.1@�8j@0�U�ڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b��m��_p ����ȁ9@��@u`�;p�� @��� �A0��`�Sp �� Ġ�c���/�Ƞ$e� A"��Q F� @�4�8e��`�60�F�x����&x�h4 � @�4��  � ��a �7@��rY.4@�.��eH�@��T�0*���� H�N�&E0�@c����� 8j� 0�U�X�*Pn� 8Ԁ�s�ȁ7���@v���<���h��*��������U�T�?�`a� �D�A���F�`+��\2���Ѐ<��Ƥ�t�. ��dTQ%Ӵ���lHh)9 ��s�RL@�1�]��Dc��L��2��X@cܥ�dT)k�! =�YL��1�%88�cP�jA �%Иw��8]�JY���,��/�i�%0 a1,L�R�%��p"�A�4X�QL@� �=l�Q2�p'���2/�`�2^r�rƠ�E���@2܉�d82XOD= �e0^��{/��@p'�:8/�C������1�� 8��^�K���� 0m�����b��ó�����x��� � ���9�x�,2\�<� ^��xIˠ81���|`�@�$�e0^�|/�A ��< @�0=ܭ���$F� &@� ���h�` ��w���A�聂�lt7�� �N�=Ђ���ƇN�=p|���f�b� 1�˃�ݴ�K)�܉�q9(a|��;q9(Ǽ$�!��A/cB�� ��S���`/�e (�2��@0 �e,8j@0�U��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀p�`�V� Ԁx�5����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b�P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���Xp ��m�\Ԇ�!l�@p� �9�>��@� ȁ�?�C7h�`��Ѐ�7Ry<�<���� &@��D��"�g�1N�E�g� �D ��x�"@�b`#R0�`���P�@'@��5� �*hj���U�P�@ �9� ��@�@��<���h��*��������U�T�?�`a� �D�A���F�`+�g I =�&P�@!�"��s�ȁ7���@v��7@���PL���� f�/��Gc��@.�(�@P�����3`T�"�&� ��`c6P& ��D`�� �%� ΀pz� �����ho�������t@�P��w4��3 Aa( �@��5�x �cP���((g��Ax�%� ��!`G)����8 (A)Ă����`M� F��"p ��)@�N��8h ��5�ԀXo��8�ր�t@�P��w�=��@|�T?P� �� �=��@�~� �@x`�B�@!P��4��"H�@��5��#P� �F�#p�DI0 ��d�� �(`��!a���:�a��u�ց �[�d̠P�f�}9%�`��tJ�� Z3蔬�dB�:�A�`y� 0��]� �4�T��� Z�`���N�:�A��l�u0�F@��`���J�� Z3h��u0�d���`X% @r��a(�S�@�X h L�C����6����+�C`��=D²b�`�� �PzEt�!/8��@0 K �с:T@2xHt�RLau��3����@gp�� �<$9|UxHt�! O��'�[�3 �X F<� twT�` ��1�����L�����E����1��swP�����ܝ���� �K���K�Z,:�ww6�'0:x@!0N�[i��fsB�d�� h 7�D"���(�l�0��@&[��a& ���/r� !o ��7PfB����h��J��, _,�1 b€� _檐��R ��0*DBWP�� L�d��ȍ�Vf€� ��I�"&[x-!DjT6ɶ! �L1!%<�ʶ! �L1A ��! �L1!� �fS:�ͦ2tP`<�'�x�w=�@� �� �:*(8���$L����7��� @�� 0�0pA#���V �p� �����)%��\�PX+R ��L�T6A�Q; &� 1P@�Q�E ܨ�"1P��7 �����h�a��q��K�L�%쀘��Bj -a&\�f�L!�%쀘��Bj @(�� �fB�LAh� �PKh 3!� �Ĉv@q�R�%0�@0P�S�O �� �xAh� ���Ȉ?��s�R��� x�8�� P�S�Of�8��4��hp D��1�� NAb8X�`ARh!*s� `AR� 4$v�/�<`'��0���aB��!3�U�B�*9��U� �:��@>#���>!- Vp �d��@���6�X�4� ��'R T�0A�n@�V�9\A,xL�9�� anq$̂SP)�P��9��cl�s 1��R( \�H��`[΁ ( ]�H  �9�s��P�l^0a�g���R( `�H�3�@��h�<4�B'H�cy��@�X��y8g��C��(�ñ�`�a\��4� �y8��j4��) @n���B  ��� � �0$�u� �!h��L`@�$L�8,��\����Â� �:,��p�Ft���:\�� ��@`�:4�q�Â��%��`��s� 0��8��`f������Pa��LX 8�:��Sp 0@8��N�8���W �ph@�A��@@X�Sp �(��@�8�!!�:�A���P D�(H� �Q0 x@���x`씠-Z�n���=%��eb@��I!)@�!�Bb�n�C�^��=b Q��6��0$��m`)DaH$��@D@� 4=��0$�m� DA@���R�H��&H��=�ݐH��&��B��AO�"�=�"�p˙�_���y=p���b>��` � SW,�9��h� �a&����j�0�� � �O6���$� � sI>���$�d��!`.��/�  �O�%��"` p b�}9Ţ$p �X�h� �a&p���9j �!45&�Ԙ�ScjL��5��8 �8Հ: �B$��U�2W�Ɛ��B6�J�) %� ��6��E`$�H�H��~ȁ7����~`Fpx����4�J�')>#i$�OR|F�H#�œ��4�"�')>#i$�$D���� 4�h�<�����@{ ��>P�@� ~� �?��D8�$�� n�� HL�c& �(&���{�.̐�11�E���&&ψ<�nq�n�ļ1�p��91�E�0C��܋0$|̮q�(�LLc�G}\"�=�8�!�e|�Xa �#p �2���/B��Xi4�#p e 2���/B�@1AAP0`V� '�@���b�o�� X��Q���� (h���F� 0 ����0+�½p�%&h�@.&O����8 �BI2�p�T��� ����ܢ��*�-r E�b�_`1+f��� &T���� � �"@xL`�T�/@�� ����aL �p �9@� _��|�@J�I�i�����Ӏ%!�i��@�X �d �9H ��b�<��/��8H�6P TB= o��$��Xo04 R��pC� �� P2@h�<4���0�%�!���� @�`�F�$� @� < @+"�$p '�V � �NA �� V��0N,�* J ��F����p D�kzM �5��bZA5� �h���c�̘!�S��AK c-�<2��\�kZ!��k���� �D6`kb� �W��"kb�6�&F��XU`MJB50 ���T���m0 ��+~%n�l���(܆۠ n�XC�hL��@x�Dl�`;�P�8 `l̠�L;Иd &�0h� �+`l�3�� 8p3�A͔s�ȁ7���@v��A��pCB80����x!h�0�0�Me � `�PL@���� D� IP0�,bQL@ @�X< P�L(Q �܄�X� ��,` sb@(1� ��`�@ e� �3 ��DbH�����$@ �J"1� P"�$�� 0���ͼ)� 0G04��)K�6�� �9€^� �=��0X�`�'�(`��~� 1�YĀp�Y� �Q�?���L�t:1�IH�՜N @}r<��f@b[�$�`�߽șC�x(�3�p�|�����tL�|������L`�����ê�L`U���R���Vxg��=�7H:bNȉN��n@@X4�x@(�����%��"� �� �� �D ����B@*��#P`1�9�`��ԙ� 4&�f�΄P��dB(���ɄP������3W�a�*=sM���|f<0i,`@�D@Z� ��gƃ��|f<���_��V�M�"�N�B��Ł���f"9L���"8f�L:� p�a�w�.܅ ��W��p �m@@ �6����s�ȁ7���@v��A��8h�6P TB=�"#� 80���� � ���!8n�4A�Z�Fb�z <����f� <��`��#*#� �`T�� *���0�2L�ʀ0B¨ s�T��c9,��f�rX �~-��� �hn��<���mhn�c9,��ve(�s3 �V��%�@j�Y 9dz �i4���4D���p� l�i4�f`��`�`"�xDڹ��041K,��" ��� �` @;����t�A0�Es�ͥ��N�\:M�hͥ�r��,�K%0��.���PbC����ƀ�B],�x�-�ƀ �B],�x��HH �B]l�H,(_h u� �A�Xa� h*�x �����4$ݠ!0��IDPE "�"hH�A7�� cT����&�5��h���n�_>�E0n I<��R#���0�a��f{����4`0FPN�w��7����8r`�9�@�h��< ��x� <�|�/:���= ��xh�`�(����B� �D �`� < @+@� �8����h � (<�SL@���"_��/NAPx1�� ���h@ �"_p�����t0��`� �jAF�`׀\�3�BA(,��QĆt!!�p��Bʆt!� s0$�P6�C�8�;Ą��A^XF)AĄ3�ƀi�^p�\����lf��M�f��@u@�9 �� @��� &@0��cp `3�b� ��2@�@L�3�Q8�hţl�7���G�(E�"���D ȁ�#��x�`H���!JN�)���to��)X ��,�S�6 G  � �=�Āho90�x��4`�@�@���1.� @���A:0@3�T�<��� �T�@&�#8 G�t��ڀ�P?�V�A����`H�4���p�����#��RP!`)���� 8�`���isBH�|,�Xg�41�n3�- �0�4 @�+����X��BX!�e!���Bh mY ���0�vDB�a �0�v�@��mm' �"X@ [(l���FJ�)��Ā6`�&@P�6'�$M�2 B�@)L� H�-�5�f�\!�`!����Bh�Bh;��t[X!�e!趖�v�@�a`j��� ���Scj�5���� �e��!�xL`4��"l�暘�A0��!�,.kbj��R\�� X hH��A��� NsjT �05��`�S�'0ͩQ5����� 2O��'}H�h$�I0R� �� �& ���`P�L�f���&ڃ@S3(��8�fP0�#(�3(�<��d����<��@b��Έ  �=�`��@�#(��8L@Pfl(B�� �=��D{0(���=Ԅ@5aP� .`<$A q������B\�P"@�bl2��q���:��@ .���.]L��h.�@? ��R�Cs��!& ��=��~��� �z`Bs�����b�`,У������`1�[< ��-DT1��Vp��8"c��^�/! \��PBp`T��l��x6�"&���’���� T�]>���1�j���4�FR� K�$�|�@�YK#_<�|�4�ųq �B� �Z�f�9@T�]�K��.��V���� �*��X�� b((�|���K��.1KA �� @� �@kb��.pʳ�)ZS�'�L@H�U�8 Pj��� ̂b,TL Y3T&�5�@�YSO���Rd�֬!� ���S��`!� ��) �N�)����R�� U�Y���,p ��)ZS��"�N�-8�hM �`�N9\S���J�@� tM�)��oԁ9����� <���"l < �@�D q^�k2�9��S�� ,��.�L�kb& �} ��XpԀ`�� ��U���@p �7 ��oԁ9����y@����U�T�? x`�>����7��� @�� 0�0pA#���V ���m �=�7����aV!�=����t@�P��w4���6�&��a ��R�+L�Ya��@."0L!�f��#@*�v<���#h z���x"BR��(�kp b�@i@ ��6���x�5����r� �:0Ѐ�x@����@P�@bP@ ���l���92 v��ج� h���P@��� �h���������@����!�7��u�F&�$A���Xn�(���� x� H�I0� 0�$��t �% l#sd�LH �$)�P� �I2f@�,U�P�vP)aɨ�z���r�&@,&�d���Y Lf1���d�� P�A,���d���929f1�E&��^�+�L��=@2�Br�*@ �U�TA=� �=��@`w2�<%{��=&@;�Z{��m�1�@ZQ`���'YД `�5�$�d�+ @�e�)Պ�@`w�5�V���Q6�R�� �p�P��S�L1���T6���� �p�� $�t� �@HI ]�R�� 1A�<�Zb�$)��S 2��(l�� �P@` �A�����m0 �D���P���`��xAh� (<��at�a�x�k26��I�$�`kbMj��&%a1��p&l���6�r_n�m� )�6D �P�1)|��t�a dÐr�*h�a)��"p_���J�^���d|���B/!�@�N�7��� `�P<�'�x��wv_V�R���4

@�J%h�M��30I�� [�� LR/��8@�D̗b��>���$�b }��RBJ�,b#mN�0�C��Al�� &u�j�l�� PEAY� Y� �0��`H ��� &@�a� �9�AH ��� &@I �a� �0�L�k�qP %&@� �a� �9�L�a�����@�`p��I �` �~x�O�1������8��z�@q"q�8Op �!��j�\�(yo@��P�'�D� �=��8X � 8��JB5x.a�ԏ7��x&����7������ �`A8 O� o@�J��a� o� ����p�,kAX�3x 8�j"@��pD���� �r :��`;4�XB�.��P�4��(uI�IM&�NXB�.ե��>~ ,�&D��3L~�*7!c܄�T����4h}��l�@�1�.�.P�d��Xuɔ��!l����a��Z|B�X��ǰ��Q��1��נT��Z�&����W�cj�@) H0�S�cFA�X&�m����� H~-��� ��;\T�*Je1܆JS\�R�4��Ұ�2@���YJ��܆J�V��,g ����>0sQ�i�S�b8��`���L�(2܂.���\� ?��p =�0����4�X�A�!?D �PNA�1 �|2 L�R�"��p��1E�@i@ �=�ԀXo��8�ր�t@�P��w4�� ����B��!8h �[�� Pk` ,7��#��@L�3����> C�P��>* o�3�}��(H)J���愜8��x4��q@��&�IZ$@�@�� h��* 8�@�A"`g <�(��dbH��:�/�x�QR�: ��s ؁;�x� 4��@=`E �L j� B ���4���� pC� ��6� !�M{@����'x���SPF�Yd���i(���)8 �m6UP+�f���m6^�A�8&z� ��. �@�Tp N�78H�81=���R�ׅ�7��pNL����X�b�@ 4� M� xO��` ���A90�x��4`�X |H<��G�&`���O�]� v���� ���� v�`�����)�Kq)�Il��P\>v1�a�| ��(L v���Dׂ]��@i@ �=�ԀXo��8�ր�t@�P��w4�� ����B��!8h �D��"Xk`�F�$��` V�6 +��`���x�V��fx�,a�24�@#p���]"�6 ��;A8�P�,( ��0��p (��,,n1�fP N�mJ�X��AAv�����aF�V6���ܤp�����숛7���p�' gb�ղ�f�ܔNBv��!!e���h��6��!9$�p��@rl���7$G�H ��rX���4��nƄ���� �� ��f��� h�7؆���̀Ɂ9@��@u`�;p�� @��� Nx�DD4�$��z < `愜�!a`7ć0�\�Pz� ��A�=�G��ܓ{lF��y� �i@ �@5�z@*P �`1�\�pVN@��� a$ ��0��Û�2o�� �7��؃�),�@+@��,Aa'a"�m �!(8 "g ��؎*p/b�m��!�/g�.��C-���{�+н�%�$�\a��3� ��j��[�ڀ�m@��ܓ{�`��=6C��ܓ{ ��{�]�4���qz`^�j��5@� ��@�A1�\�pVNS�e`֓�p�0��'&<��|2dz�����������"s� �� ��0�[D�cJ�܀� `V��s�%� 4&��� �94&��i�`�8���p�a�&���8L� 0��`�0����g@贁�*� �� 8�f���mf�P4�r4�x`��S��K :p��P�st���A��s"H�`������;\�o��7���r� �:0Ѐ�x �M����"�@����71� �� ��98��$�h�x�Q�< 'H�����B�R蛆�g���H h�(h��,�+@m�6H����yXV ��xh�<sr�RP JA)ԓ��4��:JAb$A� �9�Ve)� p'�l�S6�0��8��S�: ��s ؁;�x <��� @� �f�1 � 8p8'287�}���81��3( ��)�b���< 0&� ��q�X�8c�0�D��c��@��A ɑX����%�$PM�ʀb�16�����b�16�2��X"G��@i@ �=�ԀXo��8�ր�t@�P��w4�� ����B��!8h ��� Pk` ,7��#��@L�4c�x���v���������'�C�a�$ Д[� b��p�c��� w�^<�������qލ�u���`����ǹ?�@Y)+&� l���L�x��b��&x�h4 � @�4�PV� 0=' "P�b� D��h�p �Y9L� 0D��#H�]��� �|H9�0�,�0�� ́9��|H9C���r��|H9�LP�����T�˨� ���� `>&�V0�7cB��T/�rb� � 4�P+P ���@��~9`l!`,j�(p�󾌂�1 �� x"�匂 X� �o��^N ����F�X?f,��rF�a9o`��70<^%�0��`���T�4R�C�F��Tـ��l�&@6`k"�5���YCt���Q� �� lp*�l��A6`�۰nCI���3p NA7�� ��n� ������M` �+�o�4 \� @���S���)8���9� �A@�@8 ��x� <� ��x-���X��@-���K@j"���p�0��4,�ȁ0�B]� va܅�`��w ����S�BH� �.�9r���&`)p�'p���8 '����p�`U��� �` �`U�ò �հ����$���rBN,��` *C8!M� �x���9,V�j(Љ~H��8����s�ւJX�*�z`�H @9���O�!� ��xF� 1&dD���mp��6 ��xOP<�'T�xO�!������C���`;5�"�p9`l�Bg�.2@ $�)z�@� )8ѹ� ��@8F! ��v`��2�(2CL�jt2��F�` � 0�Ԃ�h����4���0��a��5�N�јF�aХS`4�vhXj�h GOY�rf��V���@�p " �� ���!`d p D�8X�a�qp D��XE@e���K@�%��t�n�'���*l� `�P��XE WX�_�C���!���"A$>H�*la�<��@"��aA,"1 b���!���D�� H=�!���� ��Cb���!���T�2Cf����]RTF � $�"�K�@�h `<��i:O�xH�`cp1�u>��i:S� ���!�<��,v�y�Y��;l��� �,�AuJ��,��F�`1%� �:Qg��A�u� �`�P���u� �y�hN�A@��� @���= !��@�B@�N��p�X�N��@@=��"`� <��A�oLj��A�L�AX��p! (�@*P �P������+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V �8�m�����#�L� 0r ��x��� &@8h@<�l2�%Pf��̉� 4��d�K�a�S��P$A�N�)@�@��Q��)`��)@�3�ҀXz� �7���j���5 ��oԁ9����y@����U�T�? x`�>����A��|��5P�!0� �5�� Pk` ,7�#7�4A��#��@L�޳|�+���4�U��<��:�pXZ'�%�簌����(q�������rЩ�.����:K�r��E��Q�F�r�1��DŽ����p܉;���`�%�%���{(L��=��[m���AT�=�' �߳|�0x �� �xA��4�S 2��(D�i���2@P� (<��4N�� ����0L����k`�Nb����D����2����Oe��1�B@f� 9@4�Q� B@PE�H<��I,B^0�,�� �0�8p� ��'@O�� ̴C1fځI���p8IL� ��1px'� '@O-N�T�v�$��W� �+zI/4 ���(� <��R#��`�0��P��7�@DIpo����7���|C[���7&��@po����7�)�z�a���7B�� @o���� ̛yS �S8�" ��pԀ*`��5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3 ���D`���� I"I��!�ph@��!��x������T�����@��@|�T?P� n�����`a�0�F �#�� ��ڀSx"B8� ��xh`H�������Р����A�x�������B$A��@'@�0E��E "P�b� D�� �db�d��\�3��2�9;Aq����v:�%r;m�̝9@?�Nn�dӝ&S���q٨�w��'�'�;g��8�U�~�;k'���!DȦ;M��ٝ��Q�x��� �����`�S�;�E<�_�wƃ@��AX�l��d*��9 ���&:@��^���p/�w��|V�@�UIG���z��g��ȁ9@��@u`�;p�� @��0�A?�T�<�@1����3�@�A?�'��H�~�1��5�� � �Hj` ��6���x�5����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@ ��x��8� � ����4��"H�@��5��#P� �F�#p�DI0 ���y���1������c@��آ�U�J�*��R�b�1A#Y���Z�� 9H)��Yr@!z�%�+s��r@q�����Y/��a�9 iՋ�yX���TxA�J�T����p=�� ���yJO�!40X�k�ׇ=�g���zfυt�g�W�'̄��P� �R��7��!H�XC �ӆ��7���h�<`cA:x=��B�h@(� $�$�>�g6��51jD���6����4B � �#���=oD@��=e�m@H�!`�!=��l� H�< `;���t�a7�7�fD��� �����]�o�8�Zx��4��D��@c����� ������BAb� @�4��<�'� �'O8��RV�@Y)+&  �rl�!5�!Ԁ��= �)�C�����W��P���6��+h�� 8� �Xr�ȁ7�^�py@����U�T�? x`�>����7��� @�� 0�0pA#���V ΀P�`�5� Z�*x��B�V�pr� �W \A�o�4��@�U��@��h��*����� 0�0pA"p� �F�#p��Ă3�ҀX� �7���q@ �90�x��4`��z� �=��@�~� �@�@{ ��>P�@�� 4�� ����B��!8h ���� Pk` ,7�#7�8�G "�$�g@ �F� ڀ`�`��@!P�@�9��+�� �7���}� ��*�A o�4��@�U��@�A�� �Fn#h��8X� b�@i@ ��6���x�5����r� �:0Ѐ�x �7���}� ��*�A o�4��@�U��@ ��x��8� � ����4�A"�` ��E��"`a�0�F �#x� H�IpxA�!���7���/�r`�9�@�h��< ��xh�H` ��)8���a��1(�� 8� x2(�@,D��)@�@��Q ��x� <���qРV�I� �q �5` \�RQ*FĂ�4��4 � 8 @��)��<�zP `��O�9>�^�O#x�� R��`���O#� PP���K/� z�*H #@����+TAJ� %���HFA)(�� ��6����|!1!�Oޡ���|ʁ9@��@u`�;p�� @��O���!1$A�<�'� ��^ J�� P}�F@ �Aa(��#���'R���0�b��A" !�=02�XI���0@��PbCe(�a4L��0�dğ��P Ȉ?��@>@�t†�D:� ���>M�`�����и��18�24.vB�� �K߄�>�.*�������и�@Hh\!!$P"�`�@�P���>�L� 0f`C30CL0f`}�r�����%���Oa���(v�h��o�;� �7A.�{����fæ�ZA+���0|*���b���S8�>E�����&>eT��$�� ���m@?�L`03>�@0|�1��0��x�� 02�"5& ���P���� � <���hx"�@�V0Z @ <&�r�8�.��0I|BIH �]5�]�At�*QE@��" �$X�-���#J����9أA��&�/%`P%F�(���{��$� �cF�� H�� �Uc��eD��"�d+(� �DI��@( ��X��x�xH" ���'�y�� ��'��0B� ��'�PP�� s��4!�}� >U=���|T��y�'� 8�6�O���l���%��ZAp���}���� �' Xr!L��@B� T �N���G�����%��)A �| ���7J��X�D/�P�)��%�Rkl�N������� ��^��%�� ��J`�� ��|J��x�a%z� ܗ7� (��Z�Sj�7�)��a%�Rk|J��>��0 @�@���f �r� �fHhP?��p3�O��� ͨ��H ��L�2Q&��3=��2QJ�D��9Ќ�����@H �HŤ�L���uH �(�O��RB&�D�a���L��4L8��f��L�aBJ�D��L�RB&�D�!Ќ��3~�@H )g�� :�'�St ��1$0�cL� P+���$�� �ϩ!b���k�O&����(�Ȅ!�8����" t���RB�0C`��0$ǐ��SCĂ-�5D��H m@�t��&�D��D�2X�x�"��z�?�4�Ơ��t"�,�cp n�uP�nU{���{�&@�����L���;'@�D��L���&��@:a�L��!�N��c�g� ��q`��{�{P���K���~�{��� 6&e߃|?��,��:������Y���{���&�^���N��Nb)����{�����'��~`<B�0�C �~`z���=�e���{�A�N�^��|�R�=��A�~�{z���=����~`<�������{"��1�Y�n�{����*&`��X� ,� ����� \n�=��� �e�d�����b` �Ok�=���/h����am 0����am.B}�/�"{@k�=���/h�����b�$)�X��>�Np�$��e�0��$ � 4P@� �9 /� ���o� N�=�$�Oq5T@5��A*��qf��)@ � |b ZH $a�: ځZX l�- ���B� t�.��0�!�� �QB2��DxA'��ih j�%L�]g��d�,ec���Р&Ѯ� "4(���:@U��L�]� $AU��lL�@K�D�.��:�0�!��'���0��b�C ���b� �C ���bf� 0�����c�P�=�Gap�����i  lH_I$&�r��W� }%��R(g � 4��@@!�� ,��h�<�3 @�*�m���*��hPo�*@�+�o�4 \,`�$A Q&�PԡD��0$�L�3abm���B@ 7��D���Z�`��Q0 F�(E�8���3:�Ě b&L���8:@R� 6�P �8�kH Z��P�kH �8 �>\CZ�'������`ځ-�Cg� Z?���>�~� �X�OC�5��r���`9M�Ā��J`� '�� �Lk0*$�j�N-5q���*H �����X���`�� 0 �`>€��8a�� �� (�1��<�3p@�@HXHH����H�@+,��΀p�`�V� Ԁx�5����r� �:0Ѐ�x@��4�`+�g������ �@p� �9�>��@� ȁ�?AY)+����?PV� �(+e�di�p �Y9��e&pƲ�`Ђ ����HZ@� ����2HZ�51en�Yeb�vH � 0`��f@�q� �&0֎/x��< ��1f����L�y��"D"��-���/a@�*�R��!���B���D�� P����� �:�@�Kv1Na7$�` ���[D�b��� �)d�`��]��`�ˁ92��8���=�h= ��V�7���b�!AЁ��C@��Q$x� ��qD#Xm���PPr��r o��%&����r� �:0Ѐ�x��X ���B� ��h�pT�&�D g�����4�IZ DI x < �z�P�`��P hUA@L�`d�Ct0��A�Ct� �aAИqĂ��`1x�'��B5a ��1D��3z%u�4fA� A#�u�tY ��A��p���u4�#HO*�2X&�J8�*(!�ɲ3�L�@H��� �LЀ @�����x��H$2���@2I&e�$�Ԣ��s��u������@��I }��(F�� �� 4@� C�Ѐ��и 4@�3�M��hڄl�����$��W��;@r�4�@7A���g�Mx#�&h�`������ 0�o��I66��!1b�$`���l�RXC���@��%�쒄�I �*�`��]b �@�q Ec` �+@%$ �b�#p� 0�� ؐ3pC�� ���M1�l�g��P�3pCK� ��6��� �� М�������A �u���(X� 0�5� ֤��`MdC�&�"kb��51 ����t*�l��A6܆�pJB�� %؄��B�� l�V%A �F8� h��0� �9�̄�P�A�R_:���&� ������z�L@�`�F@A���lɂʀ�ؒ��_�̡9�3@+�E��X�  ��ڃ��p���xB��\PI���@h;�'\Ѝ$ �'�!%�� �9�) ��`�2� �3X@�U���b���1`P �@�� �",� �A���m@@ �6�(xE����;@r�}�A��@�聥�W���� \D`$��(`L��l�@ o��f����r� �:0Ѐ�x@������'"�4�$��z < `�oh ������ �A�: ��s ؁;�6!x��p:�hb@��7���t@�P��w4�x@ � Ѐ��KA�0��.���H0�3�N�A ,a��P&��d� < @+:x`v��=0� ���h`L�z@?��L�j �5 �@'@�8� ��A,�0�aғ�X� =1��d( 0��(@�0��� ( 0�����L@�<�,��XL@�<����/L@�<(��*`>A��h!4:l��ö� �8�� �����)8g�D�S�H��h �0D��X@ �qa�0�kp JE�,�_�L�*+���U�ʳP*��Q(F����1�5hU0V~�E� �=��`�p� ��w��b���iacnLؒL@�)�Д��r���44�^,ɍ�6��<�L����x  < `�@'@��P�ABK( &4(����`�� �pBy0� ,��@�!L��C`�p�aT�����R�vL@�]��4�m@ �@��ݰb؉ ���<`L �$t����Kb;R��A��D��P`�"�@�"$�͐B��X�,T3P��w��� �b��jA�fH�!�i� 4C�� �O3�?�`K ��#��"^�� ���ڎ����L�<&��[�B�4!7�F��Bn4!P���hB`��c.�U��B���pq��ձk �>!�d�G��B�%;�<��QXL��� !��@%��� !���p�z� ������s�ȁ7���@v��A��Xk���'p /p��0��EL�|�#|��0HNL�|�#���p � � �V�P/P+x� ��D�SPa�G ���z�@� H� < @+����#�Q0 N*��`�3P�O�.@L�@ ��/x�#��x��9�>�� @����}B'@��0 ���B� h�p �Y9� 2` �A,h�<pPCfA-�"P�b�Hj@A �ڀ` �7���(j@A �!��oԁ9����� <�p N@4�S� *7|��5P�!0� �5�x`�>����@��@|�T?P� � g��#7�4A��@ �y�A��@@!t��<��m`h�$��� ���p�y,���p�@���@�#p�"<�@p���p��M 7=�����y8��j4��) @n���B  ��� � ��p� �u8 ��� n�ZCa� �n�!���5�d� 7`@��:���@ u-�A@�s�BJ�]f2����P��2� ��P�ҰG��f(-�7�@�`G=�������A i�Ӵ���� �yCqh��P��P�C}�砅;�� J a�Mx X��Q@/� B��¼F�H/�8��x/L�t-)!&����^�j�4�!���׳V��I �g���@>���D�В��b`��N5�X�OXM`ı���"�(�#Q%���/��RH �a)T�В��t-)A9,v@D-p ���Qy�z!�@�� ��B�l�T�f���TEܹ�y3o � O*0�T� @�0`���F��?a��hF��9�!� -�Q����@� ���X��L0q��UA �L�]�]�W��K�xů��^�+ހ�)n��� +�T� �� �2< ����2�G.�y�� �2 (�'#zDs�8P P�Yq=��8��Bð��EL8��[Hn�N� ��� ԗ�N@e����|�ڰ~dmX��6��� �"�"�x����2g �5� ��`m@ 0�� �@p@ 5� ���s�ȁ7���@v��A��8����)���=��@|�T?P� �� �=��@�~� �@A"���4�d@i@ �7��� `�@0Gp"��:m`�D���FC+x��#4A�:o�M���� <��ƀ9���@t�@ѡFxQB ��18��� A1H�` �D &�)8���4���hj� ��7��@Pk@�: ��s ؁;��x`�>����@��@|�T?P� � <�0�!�j��B`Hj$A���Xn�(Fn#h��8�G "�$�g@ �F� �@P����7���(j`�W �xr��=��@|�T?P� �� �=��@�~� �@�#7$7��� `�@0G XA,8� h_��v�z< �'��oԁ9����� <��A8�T%D ��@"�n�@ A�$����Q�ID b ��x� <� ��xl� ��6� B�/8o��_� ���r� �:0Ѐ�x@������� ��S��1 ��~/@� (�e�� 8� �Q0 x@���x`�P�d���H��pg��� 8 ��X-&�V���Y�E5 -�[T|1�A�h ,� ���DNK� �6��q�h,IA(T�j����� ܢ�z�?��L� ("0 �B6Ȇk!�� ��B�l�T�f���TEܹb��#H�`60�=��#�'�v0��#8'9���0 �SX�HZ��B3� `��� &�0@8�*(!�ɲ�`��`K�����:� D�� ^�9X�v�� �f( �C3��P4C۸T@3�`�ha��c� "A$v @�!x��a �@_+ m�0��Pn� xs��q �R( K!Z��`;�Ba(_�!\��4CapDb@*g� ��ZRA�� �52Q␝�RȎ( �Y@�S@2�`�Bkh ��+n�s�LR5�\�D H�( �#Wt��� ���pL`lj�5v�V�[�12n�,��ST��A��@g�-�%d��@�v��*g�$�p��I�1�Ea)���� �f���$������Nxa ���u�=�i,�$J��P-��O� J �0 ��(�<`4�!���`M4�&�ɚ�ۀNM�:5 �� lp4P%_� |q4P��64��SCBX �`1������b��By���C~��Jg� �-̀���k� �̀������"@�`T 2>>/ @��1@�a����@�N�@dĉP�� � �o� J��|�5T@5��h��T"@t�@���4@@ �q�A�E;����>�U���n����" �(a��vX�!�L (�=��6��<[��,o�œ� �2�0�NXX�D ��� d�,��1� X4{  ~H��/���p 4Ţ����c0>l [0'�IP�hD���A;d�)��Et`  Jd `��Q"���0Y������@����`D��� h ,`���j�h �,� <�~�E[ �.9 �(0YX��p��I� �½���Ԍ��]��d�,�r � 4�2����!�:X���ڰ X� `����U`��*X8c��U���*X(�Y���p�(�Cwa&`X@L� ���-_� 0� �E��8/�2��/ F'@���|Q0��s�at�/ F�� ��� � P!&�ya"��� P��uL WL� 1� �bt8��`( �� L jA-6�I2 @n����8C��� �T�@���@�0��s��0@42T�P`-"�p� �0+����ڂHP��- ŵ�l� 8 ��E�눌�u������{d�20N՝� � ��`NX 0���3*��TKi)9(���P5� �-�j$��C�T��Q5� �-�j��` ��{�&���0��� � a�=T �J�TKi)9(ݩ;e[�Ý�-#�;���g_� p>�X�p�΀P�`��6�XA+Xo�5P��*��@�� �+�z� �=��@�~� �@�@{ ��>P�@�� �Fn"Hn����� `���X0�ZWs «���f@=���@�����GM�5��K|���T���@Xk��-��!�XklD�5�Q���XgMj���P�К ���0�P^8�A�E�� ��5��^l�cE���7�^ʍ4Z���5�܋�r���H3c��Q!�F��jI B )|���ZJRp-IA�B��43֨lT���6zI�HRI�#� �rIJRh���$�����d� ka��0�@� ȁ9�2[��a-����:�:���3�� �� @ N�,�P+��R8J`[�nq��v�'@;8����� �'@;<���j�3Z �bةQ��Fh+�8 ���3s`8�!����Ł�T;�H0�A:����51k�p�Q�B� 1ܢ6H'na��x�$'�o!�V� Y!1 ̙ CV��Y!+D@��L@�+d���DM�&��5�� ��kP*J�(�XB��R�D��"n"�66QP�,�(($������R�Dx/����np /@3$�����R���h)��۰KN@�Q)���A� ��*H � ��0:���ot��9JG�h}���kp bi��s���#�PL`G(&��?* ��P��B�:$:�� &�k�>�]\��Cѥk�>��G]������ Nb:�x,`�O�I:�x�7�B'2Po(N$'� ��1��P ހK%o� �7����$��"���G�@��AA���B�@�o�%����b�yo�X���������7`,�xxh�I��0�������A(A� �ހ88=��rx <�� ���X��y���<��/@ y,_�C���p�y,��# 9�8�� A�"<�@p���p��M 7=�����y8��j4��) @n���B � ��� � ��p� x�j�xL`��� �'!a���p@� `k��< ��� �X� ,x< `lM&�a�  �&̀�B�R" X��⃀Ȃ X0��I�&`[b��t���` X8aD`�-@ P�iH�Aʳ���Sp *�-�I ����#1�j��^` �"1�X-܂[ �!�E����h�Sa*L�`����*L��8��� �iP��8�8�@\0�xH� ���eh.��H-����@\�Kq!.]�  Z�6�d���BC� ` \ �8J��I-��#��]�K�.&`@ �zP\�Ði.�@? ��R�Cs��!& ��=��~��� �z`A��E? �|p/6 A���'�\�Ah.���臘0X �h.�� ��2XLA ����!�$�A��p�gA��8Hz� tB���@p��$90�x��4`�h�<�� lp�B�K.�0'��K2 '0����S0N���`)��p�0�E� �0@�}����R �!=!� `�zBH h�t�L�-�[�5!Ĉx�@  ` l�װ�0Q& [�5��Z��^B��h"8��z��l�:RC�-�@5�T��]2[�l�: ��H0`�:�a,��� (@jI�a,�w� (�|�a,�� (��P��HM@L�.Q付���"e�T�����b�wQ�cA(�E�H�N#� (@|�� �wi �1�<rp�v�N��Ԡj�R�XKd�� ���B� �!4Ā��BCc b� �� �!� .A9����Cc ԡ(�aM�I#�&�$4X��{NIk)�,�Y��rJ(\p�p!8�H�X�� (2 Yh�`�-����(�0{�2R�=Rɤp��t�܆���n�m���6܆�P�Yz@�����P� y(��a�x�cy����<�ArX dz8P�@�rX n�8�q�G �T�y8�� f�� nz @n��p��hp�R0��� j�@@ `)L�4@ $��<�4V����0@rX���`��@� ��`� 0�P ���PEx��\ &���0�m��1!#� n�3���H���Cx�r�!<������C��)���2x�94��Ԩ�6����Ԩ&����C�� ��<���C���_<������d���? `�^��F ����v�1� �F�����Ű�j ��@@2�4�P �N<� �����2Չx�pBB-��/P�x�b��v� 1�����$��H� 0L�v@ =� h�=�­�mmvA � @` P@{@��7�l�@��b���@��` ��1*C��P�-h���� D�7I�E&���b  �6��$ !��vh7ۡ�l�v���vh7ۑ�b�� L�ʠ=�L @ �c@Ā+r�x�C;�{4���G�H� 4@�����( Aa<$a��3�B,���� `V@�K N��( B�}�P����)&`�h@`� `�@s��88��j0� � �>���0I/48���7p�`����B�h m�e���F�@[hmA!��e��mMk�ж @@����ڨCm�#�i��Z[hkm9 ��Іr@hsm�͵���=B��� H�6 �B�k m�-�6��$Gm !�-��;)i%�?�4P�JjI��XD���: �@�b 5@ �y ��%%�@�Y0 @= Db��0� ��p`�LJ$��1�|(�Y�I@?�B��H`��6�, ��|(�Y�I1iRa� P� "r��PJ24�A$C� ۱!lG(�$cCh�9b�a�A$�:���pD�(�Q9�d�(�qD�(�Q9 e�(���4��Qe� �25� �e��@�hHu ��d�L�4h�H `�� �9L@X,��<��˧�)rx�A�����<�;|�7�v�w�)��B F�Y�(�� r��3�/R½@���� d�@8#�"_���5����gd��tF�RJ8#)�G�5|��)����qF���p�#_���S0�����R�N A�(�XBX@)!,D��� u`(�3@���D`bD0�P6@L� � �`1��0&P6@0�L�,&Pi�0�"@�?L�)=��"����tFR`��}��`� D��X@ x`L������y,*�'��%�@l,0��b����O��dG�X`� �|��@>PF���P6��xo hkA$�E,�"HM?�����|o ����������pE���T; 5��t�02�!:��b� ���!:Ą� Ă� ��,�� D*�� B�.��d�BZ�&�a10����Cu�1 ;��� F��p>�{��UR)u`�?`��T�J�B�4�^��A��@X tY�œx �p �0H `��(���[� J�(a�D���QrID�%B��\!pI� �$�� ��pIVK�I<]����pI�@Z(�G�$���ZJ�%��'���`�@���$��Q���)8����S� ��@p�<�S� ��pr� w��+h�<�Sp 0�)8� ́n� @8`�`0D��3@��DI e�@7(Sf\A��h�<A��{�� � �X�����'�$�dO<>���x|B� pL@m01ᾐ�� b��1��RR$� �1��� �(b�� ⾐�F"�G+m��6H@H�A�`��4 p$�9��� �` �B�� �%�L��e �˵�����j�(tEe�� 4c�Ž @�bRX�+s��^ T�*`H Y֋zU����KX�k@P��L@�j!���@�EY�ER�^'`{����?�^\`��KP\�%(��bJV��^���`/�@��^��z�[�l���z��Ph l� g-����W��Pp�8��cӸ;g�����)�Z]v� AZ �B4�рD�� g��� Ђ���Q�O!��h��Q���( A�`��>x�P %W�g��B�D# 4�\��Ds�a�R�2%`�+�+S"��R�"d�+�+�A�R�2f�+�+S�1�R�",�+�+�!��RIK=ɒ[r��=��+�S�|�X�?�,�QA#���bi؊��%l���7��ҟ��t)��� � ��c4��YZKgTР��tF�0��-`+le���7��b�-}��1���fT� x���r�R��/�]�?��R�/@�ꏠ��vإ�/ cKy������4^ K1"`ɹ�%75��R`&`)�n!FC�H��%7xHP0�A�(��Heh)Aed�F�E*C H *<���RB#�)-`׌���T��0Qe�T���GL�5*#%���T�m��a�ZE�r�O� �C�,F�ޮJe10��T���*���p��Q&� �R��=ꁵ�0'��z��N@8A��K�N�o�(�A,�ƛ0{h��z�K��L���P_Z@}i=��+��҄TNE=(�� Ճ�1B/e ��d�=4{���0�+Ą�+r��� hUwn`�̛A �T`����a�f#���)0��`#� ��0�s�C Z��8���N�)4 �&���`����b�,��!� �(Q� ��� �9<� �v��Z 8,���؂�,��L�\!F&�n�=�I���#��@;a�Y�n�+r�s��a{-���@l�����[0�;����0 � ;`��&@��ՃQ�P=�ŭ ��z�gQ=�� գz��V=@�� �wi �l*�h6�A -�����Hh6�!��fS$��` �b�B�A�=���`D��!���LE��#��RBH �KkH��!x�� �Kk �j @��FC� �P�@(-�%��RZr@q(-IA �PZ�@8,��l/�pXBi ;�谔�c�Ki��谔�P�0�/�� �^a�r@q�W�# ����0�W�E S.��@��%�"a. �1D���P �����$� L��|�G���%�ic ;�H�� Cv �0>�(�(�J ��W����gB �3�� � h�S���@�  D(`��2�P�k�@�P @�("�4�gQ �8h̛P�¼)�Fd��Q��E�8�kQ >�(��@|�P @("�@ ��LAHu!Չ�� @` 1�Z�P�� �,�Ϙ�XN0p���`V�A$���V�@pc��q�V�`8� �n4L��@�U��4M� ��b�M��p����K ��;<�*�ذC��.̀DvlG�K��v$���g� @y���r��r&�hb@��7���t@�P��w4�x��HD��� ���T_I$&�xTS�����q�!�t��Ӌ@4�&H�бS�&OP9��+������HL)7�� #8P��Ag�� S�<�"P����S ��2��t9`��0BH�H���e4�2� ! ��0L��x ����L���"P��-Lsˈ�Ā��r`!$ �e��r�A�Ȕ9x �B2 +d���`D2#d9Ќd�BBP! `�� ��b@ L�ɢ&��Xa E�!@a��@,�2% 9@L�g1����[ ���Rb ���[,���q�E(1�W)�Sb ��8%��D�-qJL��83ah@eJ���3*�thD�`T��' �-qJL��83�Q �-qJL��83�Q �-qJL��83�Q ���,���Xʂ:,Sf�L�i�� �`��m��A��&� |0d�g2�t�@�"�J�2- Т<�MKB3��%Z�g MK�3��%Z�g ��iI`�д$ �^��pL`�&�z�=��pč�^h`,�8g�TE L`���A����%`��F�=�$ ( ,�ZX-�� d&0���� � ( ,0$�)0���90�������8#+;,�������>I��0�L@{�A���� }2�B`�u0��:X1���de�X� &���%M�� Z6Ҵ=̠���� h?�=���������g��u*&��h?�=� M�� �Ofo���nih��i�fP�A�k���F��4m3�>�����}2��a��D����Oa����F�:�[Ҵ=̠��~F{X2�����f�H�� (�EԌ��"$��t�-��=�&�����2�N�/^��� 5Յ�0QS���x������� ؖx�-��P �{�m�-B� X �Bp��r=؂Ԅ p m�-W�jNbAx5�s� ���~<[���� �f�B~��!������kb���4$ ��kc�-��&5ʚY��I ���Z3��-�������>l������ [0��-������ @l!�ć����x� f�$�aV"H�1+$��`xL`4f���c�ef����Zf�xy ofػ�23R��H-3C�<��G�f��K-3� H�i�8Uj����V�"��`���j0���@M�Xj �����RM�@�%�4�������6�4]� 8@K�6ͦr�!���C��� 8@K�6ͦ!쁯��W� ���D�@��5�� & ��xh�`������ В[h .�%��t4���eA�<"���A2怕�=؂��K�(F� �1P�"<��(L@=0S�x��a��*�e� �=���*ئ� ��)` |A+h�@_����1��T��7��65��� o�/���4P�x��M���l U�"[�� ��pf@MhCDHFˈ38Ōk�q PVAa�^�S���R0��s�`["�X�-|��"[( l�������N Т�p/�SR� Q&D����-$���1$�E�a!�#��|nK! C���B�D� 4A$��@�S�! C"q��@D�� ,�( ��qh��ܣ� ��qh�x DaH<�4��� 9`���Cr@&�D�`b�A,`<��8��� ��A�!�.ې�H &��Ę� `A � )!��F ��m��!Ę�B�� ��a18�ճ�u��"���z����� �) �b@&��0��A�I���a � L@�� �!�| ��nC{P&�V0��Bs�yB3 q� 0�=�9�S�F-�HI` �S0R�H #&�6��B`�(A㔜��B`�m%�d���r:NG�(��)�s�ĩ9&@I���[V�9�v& ���)����pB4 N9!:5(��T�t��)2#��bX�`�����"sh�3 �@H5�a6 4�x  < ��l�n�̆�h#D�ŀ6��PD�� ۀn�R� ��8��4�F� �a7���@1���6 �۰nn� �@ ���n�n� � b��@0��h@L�8�Nש `�� h� 0��@�`�w O7��`�S\@�pq�4� y�L@��]�p�Sz�&@=}�3f� �6�X��k��O���tJl��'�i>է�k�.}�N�D�����d�0��>ua�0D�€ `�N�$�s�]΀��m�)<!��h�<��0������T4�$@�@@(���$� x � �O;x$A��A"����Dp����C�B@*P ��T�@&@�D���@�@�`T@?,��b���g�.� =���x "&*/48?DJNPTWciqw{������������������������  &)05=BHMTV[]_cjpy�������������������������  !-16;CILR`flruz}�����������������������  "-258>ADJOVY[bimqx{���������������������� !(.4:CFPV\`cjqu|���������������������  )-47<BH\bfipuy{���������������������� !#%).59?BEJQZagkqy|����������������������� '-26:AHOZakoru������������������������!(,.359@DJNSWZ^bdfksx~������������������������    " + 4 8 = C D I O U Z ` d h p y  � � � � � � � � � � � � � � � � � � � �      " + . 1 5 : > D J M R Y _ d h l z � � � � � � � � � � � � � � � � � � � �     ! . 3 8 < A G J O U \ c l r t } � � � � � � � � � � � � � � � � � �     ( + / 7 = A F L S Y ` e m w � � � � � � � � � � � � � � � � � � � � �       # & * 2 6 E I Q [ ` d j q t z � � � � � � � � � � � � � � � � � � � � �   &)-15;ADGNUX\dikpsx}������������������������  !&+16:AFNPX_dimu~���������������������� */1;ELOV]chpv}���������������������� ,49<BFSX_ejquz}������������������"%+27=CJPSV\_adimouz~�������������������  $)18<ENTX]ajry}���������������!%(39=CLPU[_bfimswz}�������������������� "*26?DOSW\in|�����������������������  %*06:AGLU[ahlz����������������������� $+3<AIPTU[`cdhkpuz����������������������  !(.5;@GKQZ^cjlwz�����������������������)-49?EIPU[^cjntz���������������������� '08=ELNW^bhkq�������������������������� "%+29>DEK[_dimu{���������������������� %,/6=DIMT_ejqw~�������������������������  (259:BIOSY]bejnqx���������������������� "*.5:BIRU\_flrx�����������������������  $).29@GJQZbgmrvz��������������������     & + . 4 9 E L O R U Z ` f m q x � � � � � � � � � � � � � � � � � � � � � � � � !!!!!"!,!3!7!:!@!E!L!R!Z!]!e!q!v!y!}!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!"" """"" "'","/"6"9"<"A"E"I"M"Q"V"\"a"f"j"m"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"## #####%#*#2#9#<#A#D#J#Q#U#Z#`#g#m#q#v#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#$$$ $$$&$-$2$4$8$<$B$H$M$S$X$^$`$d$q$z$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$%%%%%%"%+%1%2%7%<%@%E%J%O%T%^%f%l%q%u%{%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%& &&'&/&8&L&S&l&t&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&' '''' '%'*'2'8'D'G'K'P'T'W'Y'_'g'n's'y''�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'(( ( ((((#()(,(3(;(@(G(L(T(X([(c(j(o(s(w(|(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�()) )))))&)*)4)7)@)F)L)O)s)z)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)* ****#***.*6*=*B*F*J*P*W*\*e*k*p*w*}*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*++ + +++$+*+5+@+E+J+Q+Y+b+g+o+y++�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+,,,,,#,(,,,/,3,8,=,A,F,H,O,U,[,b,k,o,u,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,- ---"-'-+-1-8-<->-B-G-L-R-\-c-q-u-y-}-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-. ...!.&.,.0.E.N.Z._.d.t.z..�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�./// ////%/*/3/B/E/U/]/c/n/w/z/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/000000#0+0-0/03090A0P0V0d0i0p0t0x0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�01 111'1-15191>1C1S1a1i1p1r1v11�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�12 2222$2=2E2I2M2S2[2^2c2f2k2q2y2}2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�23 3 3333'30383@3J3P3X3a3e3h3n3u3|3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3444 4444%4+42494>4D4F4H4O4T4W4\4b4g4n4u4x44�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�45 55555$5,545<5>5D5N5R5X5^5f5l5o5w5{5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�566 666 6&6,656;6>6B6G6M6S6Y6`6c6e6l6q6u6z6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�677 77777!7)7-767=7C7H7P7U7[7_7d7k7q7y77�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�788 88888 8%8+8.82898A8M8S8[8^8e8n8u8x8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�899 999'9096999;9A9E9L9N9U9Y9]9b9j9r9u9z9~9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9: :::::':+:/:3:7:>:E:L:T:]:f:m:s:|:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:; ;;;; ;$;*;3;7;=;?;B;S;V;^;g;o;s;v;;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;< <<<<<<#<*<1<8<=<C<I<L<R<W<Z<_<d<h<m<t<{<<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<= ===$='=)=-=4=>=F=R=]=b=o={=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=>> >>>>&>*>0>4><>A>I>P>U>]>b>j>o>r>v>z>}>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>? ?????$?+?-?0?;?C?S?Z?b?i?q?w?}?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?@@@@@!@,@5@;@B@E@J@P@V@]@b@e@l@o@y@@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@AA AAAA!A/A6A>ADAPAYA_AbAfAiAqAtAwA�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�ABB BBB B%B)B.B4B:B@BBBGBJBPBSBWB\BdBkBuB�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�BCCCC#C)C6C=CECKCPCTCZC_CdCiCnCsCvC~C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�CDD DDDD D&D)D/D5D;DDDMDPD]DfDjDqDuDxD}D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�D�DEEEE#E&E,E6E8E=EBEHELEOETE[E^EeEkEqEwE~E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�E�EFF FFFFF&F.F5FGEGJGOGVG`GmGuG}G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�GHH HHH!H&H+H2H6H>HDHHHNHRHXH^HnHrHvH~H�H�H�H�H�H�H�H�H�H�H�H�H�H�H�H�H�H�H�HI IIII)I-I2I=IEILISI\IcIlIqIxI�I�I�I�I�I�I�I�I�I�I�I�I�I�I�I�I�I�I�I�IJJ J JJJJ"J(J-J4J7J;JCJHJPJTJ^JbJjJqJzJ�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�JKKKK"K)K0K3K9K;KAKHKLKTKYKaKiKlKrKyK�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�KLLL(L*L1L;L>LDLLLQLULZLaLhLnLpLxLL�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�LM MMM"M)M1M7MQLQ\QeQjQqQsQxQ}Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�QRR R RRRR(R.R;RBRJRRRYR]RbRhRlRuR{RR�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R SSS"S,S6SUEUGUMURUZUaUjUrUxU�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�UV VVVV"V(V1V7V=VDVKVTVWV]VaVhVnVtVxV~V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�VWW W WWWW#W-W:WBWKWQWXW[WcWeWmWtWzW�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�WXX XXX#X+X1X9X>XIXMXUXYXcXiXnXsXyXX�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�XYYYY$Y+Y3Y8Y@YEYQYXY\YaYjYsY�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�YZZZZZZ*Z1Z4Z;ZBZHZOZTZZZ`ZfZjZmZsZyZ{Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z[ [[[[([+[7[B[G[M[T[[[_[h[l[s[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[\\\"\'\0\:\B\F\P\S\Y\[\a\j\s\v\|\~\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\] ]]]]] ]#](].]3];]C]L]Q]X]b]g]n]p]r]x]|]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]^ ^^^ ^(^.^0^3^6^<^A^H^O^Q^V^\^a^j^y^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_ ____ _*_5_<_?_D_K_U_^_g_m_v_|_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_`` ````#`,`5`=`C`L`T`Z`i`u`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`a aaa#a(a/a7aQaWa\aaaganawa�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�a�abbbb!b(b1b8bDbKbNbTb]bhbpbub~b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�b�bccc&c0cBcWcYc`cgcmcpctcyc~c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�c�cddddd"d)d1d5d>dOd^dedidqdvdxd�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�d�deeeee e'e-e=eMeWedekeue�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�e�eff"f*f.f1f8fBfIfWf]fhfmftfyff�f�f�f�f�f�f�f�f�f�f�f�f�f�f gg$g*g3g=gJgNgWg`ghgngug~g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�g�gh hhhhh h$h+h.h1h4h7h;hFhJhThWh[h`hjhthxh{h~h�h�h�h�h�h�h�h�h�h�h�h�h�h�h�hii iiii i$i0i4i:i@iDiKiNiRiUi^iaidimi|i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�i�ij j jjj#j&j'j,j3j;j@jOjUjYj_jhjojsjxj�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�j�jkkkk&k*k6kAkJkOkTk]kbkgkmkvk�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k�k lll$l*ltCtMtTt\tetntrtzt�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�t�tuuuuu"u0u:uAuLuRucuuuwu~u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�u�uvv vvvv"v(v4v6v;v@vGvOvZv]vevpv|v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�v�vww wwwwww"w(w+w1w7w?wGwPwUw[wewrw}w�w�w�w�w�w�w�w�w�w�w�w�w�w�w�wxx xxxx"x%x*x-x5x8x=xAxDxNxYx_xjxtx{x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x�x y yyy(y6y}E}N}Z}f}r}�}�}�}�}�}�}�}�}�}�} ~~~(~.~5~8~?~D~M~T~X~c~o~r~z~�~�~�~�~�~�~�~�~�~�~�~�~�~�~ '*07=IOX_flrw|���������������������� ����!�'�0�8�>�@�L�O�T�X�]�b�k�p�r�u�y�~�������������������������������€ʀЀր����������� ��&�-�0�4�<�E�I�O�R�V�]�g�t�|�����������������āׁ߁���������&�0�7�=�M�R�c�s�������������Ƃ̂Ԃׂ܂������ ���� �&�4�9�?�F�J�R�X�`�q���������������������ăɃσՃك����������� �'�/�6�=�C�K�S�Z�a�f�l�u�y�������������������ʄ߄������������"�'�-�0�7�;�G�J�L�U�_�a�h�o�u�z�������������Dž݅������(�8�A�L�[�d�h�o�x�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������replymainsjacketwireaddappendremoveallappendgetrootloggsetlayoutsetrollingpolicisetfilenamepatternsetactivefilenampolicisetlevellogfactorirollingfileappendtimebasedrollingpolicirootloggsimplelayoutconsoleappendenhancedpatternlayoutbasicconfigursessscalardtypetensorsetattropbuildobtensorflowbehaviourhhxdggetparentfilroamappdataosxamazonnottlfinkmacbytptextctextnoncebytpfxinverspitchkeymaptemportemporalwrapptemporalaccessorwrapptemporalamountwrappobjectwrappobservfxpushiscsslambadapersistentqueupeekmanhattanansiyesterdaibrazilshirtnameifitabularsetvgrowgetengingettabsetcontsetclossethgrowsetspacsetpadinsetwebviewtabpanhboxvboxjavafxsplendidmaintaincheckboxmargintopphonphoneterrorfrspeccucumbgstringuntrirequestsstcertnamcorrelthunkmytestgettyppgobjiresultsetreadcolumnipersistentvectorisqlvalusettyppgobjectrdbmalgoconschankthomahttpclientdatarxriakamqpphotonmisakiliquidznumstudinstructorcoursenamcoursenumwrongspoontriflrfcschematacapablsubsequinterspactruncatgetcircuitbreakgetactionmetrsetbreakerconfigtimetopausemillifailurethresholdtimeperiodinmillimilligetbreakerconfigisopenbreakercljbreakerbreakerconfigbuildbreakerconfigcircuitbreakcircuitgetelshredderhiatcurrgetcountgetcheckeditempositlvsequncsparsebooleanarrailistviewsurroundboardermkdirpiitestfnkrbfatalftimescalriemannappendkyleburtonhealthisolervmseqablavowprecompildefpartikillxsdsubpolimultipolygonfeaturecollectcoordgeojsongeodifthrewnoepackagejsonjumpcurrentwindowkhromaacquirsemaphorsynthesiconfussynthjamiiioiioiioiioooooooiooiioiiiiiiiabjabfabdecdabfghijabcdaaaaaxformbeanstalkbaconkevinctxtoutgonrlrelationshipnnneoconmagiciantabswitchinitrdphyzreladdrnashornquitconjurstringtemplantlrobccwebglinterceptorgramfordexterdxtrprcprobablposteriorlikelihoodpriorminjcwbfingerparbenchwebdrivhybridmerklcoopchickencennaircljspraffsocialcountrilistorainstantlicloverdummymessengisdemoviewurlsumptuvvvmirthsyncorthographesumphigreatestkairosdbuntouchgatewaicascadeclimbscrapetripreportabcmyactiondynamicattributsmallcomponentcomponhomeroutemberdropdupvalirdashmachinepublishjackrushjfxjbrowserdrivsparkledrivcoilmainappmyappsharankhacoreclibdcmigrantniwinzcodemirrorunderstandlighttablcljrejectedfutursubmitrequestgetresponsebodyasstreamgetheadgetstatuscodsetrequesttimeoutseturlhttpasyncservicasynchttprejectedactionexceptservicepropertinettyresponsrequestbuildasynchttpcliautobuilddismissessentiunderstoodshowcookiemessagfooterctrlunordaaaaaacalimboaccentgreiequivalmulmuladdmidicpkrdropugenunaridocspecunaryopugenbinaryopugenbasicopugenmachinerimystrmatdiffuscameraambientclutchashafablklvarfdmgrimmsudokuclubbuflenrandombytsectiondefauluvcallablzgaccompanitisnovskipavelngdogreactifimobilepatiregistercomponappregistripatientgetimagedatayellowthresholdgetcontexttopologcyclicsetdaemonsauronsoftwarmetlogfapplideeplideepfngreenyousminiwalletzxingguavabipdbaschscprovmadgagbitcoinjdiegobaschbitcoinavfoundaudiotoolboxcoregraphquartzcoruikitlibgdxlibobjectrobovmrepetitbigturkishagnostfktoucangrimtweetbookdialogidealplaybackinitialislolzstresssuxwazzzupcloudflarcdnjfilenotfoundexceptandrewmcveighffislandmanmateuszkubuszokskatdefdbragtimregardnginxegadapprouthotsecmncrawlcrawlertrivialcomprehensxyzabracadabrabackercampadaptorcampfiryagnicenturivanillaleapsmlxsmlxlexerlexersmallexblobblsortablmantramovlbinaryopbinopmunchlstdasherfloseloverlaptimeframclarkcbxsearchcljsearchpsychotodddefsuitnatalombgroupcollapssanitiemployeerepublgezwitschcollectorhydrofoilirdriverexceptdatastaxiwaniukhubertneotykahcunhandlrsvpintersectsexpastunbounduaiotaprependpmpostmarklunchlottoncallkitchensinkdebuggmerrorrethrowinfinitacknowledglastindexofnajavacontentheadinformacijsadnovivswapnyionsubmitlolllistntflongerbiarestructurmdownfobjlooootwinmultquorumnotfounddwcollisadditionconsistsuitablpredictrectangliscloserequestsettitlwithprofilecorwithforwardcompatsetdisplaymodpixelformatcontextattribdisplaymodopenglpetuldgreenyetcburgmergreenyetrcvbufsndbufrcvdaeronsekaofrithuwedtueweekviikkotunnitdantaphyrctrlrectpruneoptmapmisnomfsmfaultlessfaulterdestspeechboltjugsclojurireduciindexicountiseqhtmlspanelhtmlparagraphelhtmldivelhtmldocumenthtmlcollectnodelistpemsearchfielddropdownsuggestreduxpedalcederpderpderpsignupcooklandfireplacgathercooperpagerccscrapetripreportfreshiezonsouthernpeninsulaolympnorthnprainierclimbgorgrivercolumbiaeasternlakewashingtonsptripspscrapetripreportclimberisillegalstateexceptdirsdeleteonstartbraillbraillebuchhorbuchgrossdruckgrossdruckbuchneuesortimentneuvubidtbooksuccessfullisigintsignalgetservicservicenammscprogrammbrentoncloudservrackspactrotterstevensurgnidropwizarddiplomatclogfrontfunnelreplacefirstleinigencmdbterraformterrabootappenginappspotevemasterionlinpictbartlebiphalangspellhousnwflensembeddeddrivderbietlswartzrosejndifformjschjcraftclasslojurdepotunclsingularsingularistesqcrunchgutendeleteonexittmppathnuttmpfilejrbcoffeescriptslagyrwritablecomicrepositoricomicrepositoripreviewscdnrankpopularencincognitokonservreplikativgendatagengarbaglvlgarbagfileinputstreambytearrayoutputstreamduckhttpgctestissymlinksymlinktruefilefiltiofilefiltfilefiltdefgaugnewgauggauginterleavdatastructurminehabitvnamedefvariboldhyjinkspyfreadfilesyncexistssyncanalysbannersentimentcausbattlegroundorionsbeltbattlbeltorionpossiblicomegetfilesdirstopselfdrawablmainservicforegrounddefservicclandroiddefapplgeometriinnuendofopxmlgraphiccombsbsdevjpxcoogigriglastmodifisubprocessaheadurnshortertolowercashashfnblobrefoutlinfadermfuhickoritreppoberlincinemamoviimdbyorckintelimaricktddsquooshaifvolummpkickerbasskbghostsampleswapdrumcylongracedefloglibxhttpcclojuscapproachdurabllblchlcsentinelpushbackpushbackfactorimailpaggrbreseqbseqstrmnasenthttpcoremortbaisnegamepadideapertinverdictpanidmitrijdifficultidespoilerifidbpediaquizsimplerequestgetschemneutralsmilelovespeakerauriclfeaturecdataspecexplainmdipperiprofitintermixflipsvmfuziontechclauthrecaptchatanesharecognitappnamsquarerootlinearliincreasskillbaustellensadefiwareartifactorieuosoreuplophbreplgobishrimpjslintgagetallrecipisendmessaggettransportsetdebuggetinstsenderjmsgjmessagiserrorenisinfoenisdebugengetloggloggerfactoriatomstorjaywaieventstorscissorrockjankronquistgeteventstoractivateoptignoresthrowgettimestampmmkkyyyimmmloggingevspisimpledateformatcommonlogformatlayoutpsugarslashgetprotocolprioritidgrnbrgspiralherewegounustakoeeseasonfncconectpointslopxypqforbiddenvowelbulletdestroytoteminnertextpropaggetelementbyclassdockerignordevbarlaminanrengulfgettestsourcedirectorigetsourcedirectorigetbuildadamfreislightliappardeduplsoleulerprojecteulretentioncontestcandidateidsubltrextvcandidcontestretentapropovinyasabifrostuswitchtooltipfontawesomantialiaswebkitpilloverflowmixinremvresetvolatilbomunpackpackmacrowbardefmutcawalaipersistentsetyamlwritsetdefaultflowstyldumperflowstyldumperoptsnakeyamlusecompressedoopcmsincrementalmodtestrunnvulnernationnvdlivingsociscaffoldunmapnspacefilehandlfilehandleresolvsystemstplantdmffijnrlquericlearintervsetintervredrawcmpnttimercountdownbeginberrisetobjectisqlparametpreparedstatcavmferdinandhofherrxjctobyclemsonexegesidowngradupgradtenanccompatvvvvalvalvselrequestanimationframthrottlerthrottlscrollgluundefingetitemlocalstoraghmpokemonleadrenamingcontroldeathheatpostherreplacestwombatsshjjcloudclojureskeletonnokiaskeletoncljskelofficcsdkamazonaworientdbplocalfinesilencchillwoahshoutbobpenaltiwalmartmobiljenkindfwereceiptpedestlaciniawalmartlabboardgamegeekbggbpdppragmatperspectlapmachinmultihashspringspringframeworkclassloadiaoobobioentitibiobardarlarlidenarenpoetridisliklordfakeelonmuskmuskelontweetfantastmoangetwritapplnewtransformnewinststreamresultstreamsourctransformerfactorixslxsltscavengjavasoraclsourcepathbencodboardsmenuboardmenuitemgobjmenurhtlftsrchsummitpostsettimeoutduratbeepuatklangmeistadocasciidoctorhandpotusturcxhrhttpurrsolvindexofndxbankwontyrtyranitaronixasgardgrabhavenctorbacklogmsecrotorpostspectacularbatteridistilshorthandstrucutrtempraritapdebouncdedupshapedefnodevisitorparentkwhitelistvisitorendtimstarttimhoursopenvipobjectboadhackerparadiswhitelabelfaceboardcouldnbruceavailableprocessornetworkaddresssetpropertidntimeunitlinkedblockingqueuthreadpoolexecutorprefixthreadfactoridecodebasencodebasurlsafotdiracgotoreconnectmailservletsubfruitdesktoplwjglbadlogicgamjasyptchristophermaisandbarforeclojurspecterrplmazeuninstalcreatebuffersourcgetchanneldatacreatebufffrepofhookflocalhostsasshamlanonunauthorcorpubaynaivtrainuberwarwargetfilesetidgetrefertodiradddependsetpathidsetprojectsetfilesetidsetbasedirsetverssetartifactidsetgroupidflatfilenamemappdependenciestasklancetdelimitglassfishmomentrumdefpagreadtempwriteportreadportgpiopericlsmithluminurumahsewatypicbehavinconsiststarfruitkiwiimsgicpotentikvhashcodequivipersistentcollectiobjwatchtowtustestcoercionchipexchangclasscastexceptnullpointerexceptuntokenizdirereactdominspectsearchquerisurveyidgetexportxlsxxlsurveisurveydataimportexportfactoridataexportwaterforpeopldagptmailersuccssbasenambamretmapmorganabrahamsashacarlmaggiglennmichonndarylcarolrickbazblaaghgetcachaddservhrconfigurationproperticonfigurationbuildremotecachremotecachemanaghotrodinfinispanorchestralucidsubtitldanielnnealboltonthemecompoundriverfordjoinertrustpooltrustewallettrustasidtconfigtscopewebrequesthandlnodelinkriskwikipediadrewrjavamailopensubtitlpodnapisiaddictoakgettextsupersettextsettexttextfieldsimrunnfmmosebachfrankjtextfielddefcomponyadndpremiselektroautodbaawfuhyaxnemacemnacbademulfizzbuzzarkistointitunnueverygmemberogetencodrawkeiskeiquotentarithmetjesttokyocabinetdistcleanmakefilsrcdirtokyochoosshurliunsupportedoperationexceptleftmostinsertlsubstinsertrremberstreamparstopologidefstepframegrabjcodectelegeninheriteeearialhelveticasplicedietercowleicctraicoljurpryforgottensubmitactcljresilientfuturexecutorresilientfuturresilientactserviceexecutorhhmmssyyyymmddreplacealrunblddepgraphtransientcollreducmultilinrnrfrncorelessclassifoopseleniumseleniumhqeasymockabsolutrndopacfwdmuxinsultqueryselectorfbbmihwdecadbcryptcrudavaloncoefficiaggsummatthetahypothesislopelinearlessonmlpractichigherarmstrongunprocessactionfailkamikazstashsimtriggerupdateentriemailtriggocfanciserifdefsnippetslideworkshopclojurewebdevgiftekstlablogotextlabcursivqualififullibarrierclojuresququietdadroxnoiszipkinpluralhodgepodgmeteraccidentinsulstrategiaddshutdownhookclownfishlcmapthrownvpeerbapayloadsubtasktraviwebdevfsfusamabostonfranklinlessereibappendchildsetattributcreateeltbgetelementsbytagnammithrilinnerhtmltoolbarmathomvenantiuultravenantiintroductsuperiorquicklijaxbnanohttpdjohanhalebiagoniststubhalebidfgfherbertchuckmonteithpjflexiblasystdecrementdefcountnewcountmyappyammerkukuigmtoctsatkatacolourterminmapvpercenttoruanswerelemcreatejsonparscreatejsongenerdefvarbufferedreadstringreadjsonparsjsonfactorijsonextchaincodconfignaminstacljparsvfnininplacxorsecretboxmagicnoncenqueuuwrstoresvnxercesimplxercnekohtmlsourceforgboilerpipcurtileftpadwatcherbarbarywatchservicwkfmannerhawknnextfnextnfirstffirstfdeclcharacteristreplmcompositeexpressorexpressandexpresseqnotexpressdefschemabooleanexpressbackendimplementeasiestlookcorrectlipairsetvalugetvalusetnamgetidplanningentresponsedatarszcontentnoformatfortundbrawdripspyscopredlgetabsolutepathprojbideelapsnanotimuxowwwaddchildspritebunnitestcompattackchocolatitypehintdatatypucfgdoallincomexpensselecttypradioecdefapicarpetcarfishoccurrphrasezephyrqueuetoddbalnewestfromstrappstatlabinboundmessengerbuffmessengcostaisimplifisantopedrodeltrerequestspecrequestspectestfnilreducteofrhcmplhupdinstremacsclipuzzlfindbugesfjgrouplenlenskitparenskitplatypoptouppercasruntimeexceptsqlexceptsetscreenresizpausglclearglclearcolordeltaaddactorbreedinstructsimplifpushstatnevamthickeikumarshantanumikronpersistenthashmapccunlimitcomplimentpomomvmusicjfreechartjfreesaagermhatruniverspaceepbunchevolutmtrxinstaparsshepmastbonebareextremzhuangdennikillmmachingentlemanhningjscomponaldaleaderboardmeritonmessagoncloshandshakonopendraftwebsocketclisingultssrobinsonbundlernightwebbcpghampshirgenetpushgpclojushlspectorjwtjosenimbunimbusdimpatisprawlcitizetwararubasterlrgposhscenariostrataggreghardenveliscodjhaskineydegasolvouthaproxirouteronkeydowntextareamessagecomposstoppropagkeycodprerendhoplondiskgztarportabldmgspreadsheetsheetattendsleuthapitestniantictastbreweridataimportholstondegradunboxpreviouoverwritassignmarkmandelbrutevisitcoffesublimsamnthriftfinagljarohenjodagastovwobframeworkopinionswallowjepsenfulcrofulcrologinspecejmlefficibenchmarkknnrobowikinitayjoffpngdecodtwltlabslickpenumbraodvecmathkephalsimulartificibrevidrawbridgbuiltdatabindcontentfactoridaveliepmannxccmarklogurukspullarahikaridanlentzpromissumcontinucontinuoitextlowagirtgluegenfatjogldxfcplgooglegroupfromgroupforumtobluxrxjavareactivexsimpleexampldevsrcyakushevalexanddroidprettytimocpsoftvipfileutilpscescapqcastpodlovinfrastructurinferroundtripwcwbbucketwelldefspecriakaccgetfragfragmentgetrandomstrsetquerispotificreatefromkeysvalukwquerydatatraksubscriptrenampreloadenforcdatetimdashdashificoerctmreformbilskimarcinlyrvitillosomedbddedbrocksdbstopfnhkitbfctcrawleicftrieleantransmitxymonurldecodisnavigatopnissupportsetpathprefixsetusefragfallbackisdefinedbisubclassofsubpropertyofintreinfoldparentfolddefaulttrehastrecontactemaildatasetpublishmydatavocabularipmdontologirdfgrafterfeccftestprototypefunctprototyptestobjecttestpropertitestfunctlogoutdefurlurldefurlforkioentirkeenkeenioidenticonrateavatarguardnicknicknamgravatarclavatarchapterwhatishistorinewrelreliquariyleisradiounliksnilitegoalscorenhlmonkeypatchreadmhughpowelorientrailwaicarminseathregetcontextpathserlvetrenderabletemplclojournpropersaapaendswithparsedoublsoxijbossinsidalhackishkindaadmitedlidurationinsecondgetframelengthgetframerframergetformatgetaudioinputstreamquestionstackoverflowaudiosystemnewlindaisidtbmdrrendercomponenttostrparsescriptunderscorstoremisessionstorfilesystemsessionstoranseladdrchordspeakkanbanderaennssmacroexpandwihtikinnkeepinstaskipoppontilemodalcanceldangeracmoneionchangpreventdefaultstatechooskeyfniqueristatechooseritemchooserhiddenguitaracoustdefresolvbookfasterundertowwikimemdxagetsleeptimemgetmaxretryintervgetngetbasesleeptimemgetclassisassignablefromgetretrypolicigetzookeeperclinewcurbogureaddefaultconfigclojurifibackoffexponentiexponentialbackoffretriretrinetflixstormbacktypgmapaddlistenzoomroadmapmaptypeidbufwidebupepahighestfrequentopendapraisrespondguessoctetmimemangasitscraperscanisfilfindocstrappearregexlnhdrentcloudpathcatlambdabyteablragelhierllasraminternetinetjcljullangohrnovemberainconduitfarmlogtutoriwebkitaudiocontextaudiocontextdeftemplhcchatomtxlogsynsubstituttextualcjiawalkthroughtrailsqclipboardpongpinglowercentpicardthirdpartiutgenomunlistengravitopiclibsodiumbrislabzookemdiscovericurateurekahypirionmkreminlearnmultiplaypadawannomistechhandleformshowforminvitubercodsphinxcmuvadaincorrectecmascriptvendorlexemimgemojiunclearfreqsantadeterminpandeirophantomjparinfrepletoverlainightmodscpathomwsscoderesoluthoundslamsayidbillpielvanitimoncongomongosomniumahclojuredocwildfliiactionformfootiactionformbodiiactionformheadewlinrelatisafilesystemgrimoirsubcompsatisfiistatuilifecyclcompositchildmindmapfdefparentevermindjavaclassmyclassnchaponjarfilmvncarambardisallowdeferprettifinbsptwitterfooterpxalternicofaviconscalablscaleinitialiratomiunresolvedbindkeyvaluestorkstreamqueryablestoretypdalapswbirdseymonetjayqdommirrbwireframhullcompressdefaultpartitionpartitiondefaultencodeventproducadminutilabspathnormpathhardentrypointsensconceptuchdirflatlandmidioscscsynthincubstudiodevicjmxrijmxtooljdmkjmdbcprepcomparisonaidetagofflinvimbatjacobmorzinskikwholdapsdkunboundidpauldormanalienscildappntblnkmtimeplexupopdotimtravelonaudioprocesseventhandlbufferspowerprocessorsquelcharraycopialengthbytelenbigintegtobytearraiunpadturnencodehexstrhexifigetbytunhexifibinarispathbbbabashkafmaptdifferenpohvcrkkegghcmlylbedinigdecryptencryptzxnrbwkeijoscryptutillambdaworkontraileuphoriatroublheimtimmcdelicietymologetymdictinstantetymonlinsuffixsubvecspintwobitmaskmediumdefbenchcseqtcommonlibrabenchloopbackbarneipartnerdemonstrfredkritiragamretrievkoshadefcongonewestemittoxcartarrdemconsumptcdpsetlastmodifibroadcasttxnaustintemochkatetrijarjargooglecodparallelpomegranfilespecbenedekfazekamrandersonthomasafledgannotlightlifnhousfarmermattfarmdawgnrudamentaridamndsttfrmrherokuapppositoricentralgamifnodejtheoricoupllualuacljreceiptaliavibrathalfroundingmodstackpolishrpnbigdecimtoastexptkeawarreqiniwormbasrusselmatthewsingefcrossovvertxrbrivuletbytebuddijavaagnoverifiretransformredefinpremainmanifestintrospectgplbfibooleanenbazaardailirollappendyetibotamcnamaraclintegdaviddavicitizendevncmeierdbyrnauthoritstdoutheartbeatgolfsubmissgooglemailpwdmydbsooheonmoeumjaeumsyllablunicodkoreanhangulreadablcwdannointmkdirrmdneatpermanpricegradepkconstraintbcpkixjdkbcprovbouncycastlcryptographsawriteconcernserveraddressmongooptmntmgmongogorillalabgrimradjonyepsilonnotebookpaperbowribbonsurfacsmallesthelpfullicombinfacecalcdimenscomboxxxaddlinflectdmohfirecloudbroadinstitutsigomrootoptomrootfundetachomrootbakerizipenumerhsbelmpercentagmarblmadeinstanticreationstoriarithmeticexceptairbrakjacketstraightzipmapuselessluontolaeskoymlseverhappenterriblfakeserverstartfakeexitcalfakeexitrabbitmqpcfpivotpatchminormajornewercalcpimypiestimsyntaxleinjackcryogenexceptioninfoarchivnonemptystrsuperusdefendpointslackcassshortenurlshortenpastkeyspaccqlcassafortuuuurrrrllllrepeatedlifoobarinspectorhbasebootlacbackgroundcolorbumpirenderstunmountiwillunmountiwillmountiinitsticheckstblackfeedtgtpubdatrssperunglassociscrypthasherfloatlargsmallcommutalongsidfiguramalloiritzsoiregexphackerlatitudlongitudnatrpjuhovhguangyinflowackackerleafsoluttriangladventsolitachallengrpiargvircslimparchauvetevocomputafterglowwanlenblanklinnlpitalsanfamiligoogleapibootstrapcdnmaxcdnpjstadigbasedircountdownlatchxfoocornermarginlightgraiborderblueforkjoinforkjoinpoolapiogbclipgpcjseiswgenartlibsketchpaleltophydegorillaalgebraregresslicenchudsonjonialgebolrotatmdrogaliloomaysyludatascriptjnaclopacknomdecordefstylflambodigestblakenulsixteenkaliumabstractjgenerichashcaesiumrescuaggressiveoptgcusegmetaconsteggspammodularcardnamautocompletsubstrallcardmtgwritetoconsumerrecordprintstreammessageformattmsgpackmessageformattradpreparrepresflywaifhofherrexitcodsynchronwatchevasyncincrementbiupdateevincrementbiptkrxbutlastsummarimrcgjahadkebabsnakecamelspatialdialectummsynthreadlonocloudshadynamputlongminimumnoncrngprngsodisecondariincompatstartswithfnamestaircasanglbitegiveflarevomnibuarcwastlifetauunificonflictavoidsunburstbreakshouldnproperlidelivtestcroncronfriboostupzalandotabindexfocusgensymtailkeyboardwinnerboardobbroundmelodidandinmatinlesonnezvoudormezjacqufreresongovertunwithurlwiththumbnailthumbwithimagwithcolormemfnzoneidofinstlocaldatetimwithtimestampstampappendfieldwithdescriptwithtitlembedbuilddiscordblahsxembcodeblockverticpixelpushheroicrobothidapicodemindgregtsvgsysgraphsvgfolderdotdjavaartleddrivewonderdomplayasophijsdocpreamblconcernreactjquiescentbreezcapitsuitsetenhistcatalogsegmentbatchleavdivistrialnavresumspacermdldrawermatericljsjdevdemobhaumannamspacbrowsremembsabppchatenterchatappunsetedfebdaaeroleobjectidbsonmcmongercadenconerroraddeventlisteneventsourclasteventidvarininjuddexpiritxttempmultipartleipzigfornamsecretkeihexserialphabetmangareadmangafoxfoxleinverifierproxidiuauverifipactevalinputwebappnulluniqudefmigrbigramgramstopwordapostrophpunctuatlowercasidftftempfilshiftparselongassumquotitersignificdigitluhnbensudooretdosyncdeclartimeoutexceptconcurrstringwritinterprettesterclojailtryclojurauthourisauthorisbuilderleinoutcharsetcsrfgziparistortcontractliabildamagclaimliablholdernoninfringportionsubstantifurnishpermitsellsublicensrestrictpersoncharggrantbrandmeymeikelsimbaagdeerspeciveggieatbambimultimethodmaripaulpeterwaicarnivorherbivoreaterdietnestconventkdforgeriantiherderlfletruslantestgreetgroovytestcasmytestcasgreeterfixtgroovicodewaragentpubrsaubuntukeypairmicroeastzoneavailddamiautomremotpathseparatorcharjawolfjswatsuspenddttransportjdwpagentlibjniliblibyjpagmacyourkitagentpathmycroftpdfswinglabvijualrobertpfeiffhierarchdocrootcljcextadzerktboditheadfilestdtrspeeduploaddomiddominachildrentestgrouptestcasrunnabletestrunnabllazytestribolchitimtotalpiecfrerethspigotmchubspigotjavasrcsevereoverflbukkitbringbukkurlanternafolcondorothiastartinitintercliskalgotoolvishkcrusaddungeondecktouchbartredirectsubmitplainproducbfigcruxmarkdatalengthremainpadzeropadcopyofrangslicenextbytsrnumbytsaltivscpecifisecurerandomfreshsanitaddelmaincontentviewreconcilstmtattitudjustifispendtowndutildefcarddcascexercisamountkeynamsquuidlumenakvoutfindenthochleitnherwighickeivisualalgorithmtotakkjungjungerfahideboolvisiblvlibsidebarpartitecountparaboloidcrossgradientmatrixoutboxcapaczookeephumancddreasiligreatschemeunsupportunknownreasonplanplantestftpicecaplineslayweightstrokefillbackgroundsmoothrrworkspacheadlessdoreturninvoccmrearthdatanasagovidempotprintstacktracstartupcaughtinvoklikeherokuworkaroundsetterchosenbadgchosedumpsalavaverevisitcleanliscatterdesirscfsituatpuppetdbleftpidistantpowdistancpolygondeleghandermiddlutgencodsomepaghpctjframeswinganalysiconceptformalconexpborchmanndanielpanellnglatgtfvebalancarohncirclecifilenamefiltminijavaidentifirillomitjmdnrickyclarksonjavascriptcorlistentothisubredditbridgreddiopatternopenshiftstarterbgcolorfeaturfuncycldefsketchspectaclinspirquickcheckreiddrapfressianfasterxmlfingerprintafreiquoinepisodpngteachwebservicdictionchestnutezbaktrapperkeepdeliveriartifactpemangacruncherattachfieldtttcljdetritulobovinculumensurdummicheckoutextrascoutsmtpsendmailpostaldrainupcmatnrsuthaystackawesomfontdarkshortnamomitstacktraceinfastthrowvectorzmikeranetworkneuralcortexthinktoprnaconvertstrandmuundomlmshtixisafevoiddisposappletlistenappletoutdatkondoantqalembrefactornsorgdeclportaldjbluewarningjsloadwebsocketminifwruntestdevsetupipersistentmappersistentvectorprotothemihostgetextrakeysetcontainskeiapersistentmapproxiordinarmaplikgenerickeiointentandroidnekosignaturmsgpackwebhookhmacnotifbytearrayinputstreambotvalatisdonisrealawaitawaitresultcljresilientpromispendenumilookupipendiblockingderefiderefresilientpromisdistinctheightrandbhbwviewportmapcatfrequencloccellsurvivbirthstepperdydxneighbourblgolecbscbresponsejsonjqueridakaitequalcryptogarvelinkibanbarendcorgraphqlbkfogucaricasonianenfocualexpetrovknowledgkmgkeminglablightweightleavenpalletopnearlyfreespeechphxhowardlewisshiptoolchestoccurcoveragignordepthclusterhierapugetpgppotemkingreglookvaultmvxcvistefondrtomjgitagplcljxcuerdafacilprintgcxmxerialmpietrzakbitbucketinstanteventumemberfriendmembershipforevlaunchdirsdeleteonexitdedicsharethreadingmodmediadrivfragmentassemblyadaptrealdriveraeronallowmalformdefresourclibereventloglistfilisdirectorigetnamgitignorafilniwibjooqsuricattatuplelidusecmscompactatfullcollectuseconcmarksweepgcmaxpermsxxleancloudasetoldjagetoldngeneratepermutridiculexperimenthighlimutatplacejoptsfagilfleetdbdefgamdrawwhiteentitiscreendefscreenlabelstylbitmapfontgraphicgdxbadlogdefvaliddefoptbouncerfloorplayeraproprisnarekickplaibeatmetronommetrolivetrampolinhtdocmarkdownjelastischclojurewerkzkibanakiriconfunionmanuelpdebugfdragondefviewtlsecurinstexpirsixticertwavfoolcraziteamsoundwortcreativecommoncreativnicokosistatiststravaregionaccountdatemoparagrapharbmiscstructureddynamfinitjacksonrevbackuphatnikcheatattributdefdbtestmanufacturserialsearchvalubeebstergflaglemonodortwilightwisemanvideodroneturboshrimplemondronorquickimarkwoodhalbedroompalacdoorroomtalkislacondensimpossrejectfuturtestutilassistpreddbugprintferrverbosdetectpreventwipematterimplicitliglossschematmavenroberttechnomhairdesigntoolkitpotokexcilihighchartchartmatchermhjortgatlyearexpezmanipulsuperstrjadeneulandsommerirhinolicencstwixtzeromqverhaegengarigaverhajzmqnaughtmqlayerouterrelinicesilliforwarddocjurativdkrestercopastjanniconsondefsystempreviousstatementbrhardwrapcustomcegdownlxsdapivzaoiwbacgdvrorhekzhecchbppqflvhdeehxqsecretoacgaklxhyhdkvzggyameiheadclostachsumprecedoperlookuprediexpandsubtreclassififindereffectsidefirevoluntreactiondiffdjsubtractreadiunfinishjidoversmwresphitttlwhoamistagecondpsemidivisorevenlideciddividceilsqrtprimeauthentjmxremotsundcomvisualvmacyclgrapherciderplaylistlanternrgbstroberainbowqueupressautocyclcmstarstrutpixelradiugeodeshashreactivreactivestreammanifoldfuturatestablspeceworkflopushablgetpathgethostghpborfmtpushletfndeeppalletcpudsnsentricapturravenservisntransduccalcularccrexecindicdesccurcleartimeoutloaderbehaviorderefcratestatusbarnotifoobjltcounterrerendtouchanimantelopbuffalozebralionwrittendoesnguiattentpaitutzxcmeeseekmrcpdemopotoooooooajaxpotoopipelinestructuresourcquerystepresultssourcdatastorqueryallbuildnumberssourcgreaternextbuildnumbersourcrepresentstructurpipelinestructureconsumtellconsumstepresultupdateconsumdefinlambdacdsnbuttonclassnamcomputtogglsnippetlisttempidsnippetarguementcntdirectoriliterbeautifimixordercareerdoublcomposforcadderforgetmultipliprocrastinchaffwheatseparpraisknowmeditsquarxattribincompletduedpvirtualconvieniundoablpuresyncsubsofwaravisonovrailrubilispunsurseedquickfsttestcheckbasnlzotskolftcunexpectsocketregistrpokewaitnumelexploudfetchercookirfrmhozumiarachnidahttpchannelstdorgprrepmaxfluidglossabrandnavbardefonckarihestkucentrcglossawebservconstructorinstancpacketpfpfrtusagcallnoirarglistspottopbottommetafnxpresentparametdisplaiusefulrstexprtstillegalargumentexceptlogicimplicitkeywordspecialcondreimplementlcondlewihowardreplicaprimitcaviabgzfpandectchrovisamaligndnacheckersquigglivalidyubicoteroptrackinboxopenclearprevbraidshaunlebronkperformoonlissolosoloaccessorfippzetawarrollbackisolredefowncredentitrackermanagfactoricomponentwillreceivepropcreatemediastreamsourcctxgatemediadefuirecordaudioservbaseblogexitfatalmsgdiecmdlinesobscodequalitihtwwgseqhtrhttmmethodlameinfofcmneoipgeididentheiblargcategoricoolyomddescribspecljparserpodirectbuffheapbuffallocatedirectdirectheapimplsizeallocgetlonggetintbuffseekbitibuffbytebufallocbytebuffnioabstractbufferbytebufexposmemoizcutgrepvagrantdisconnecttranslatconchmatrossteardownetcdcorrecttestdocudoseqinsecursslaggressreqravendbopfullrecuridxprewalkloopconversbytewalkprimarilihelperdumbdeftypinodanonymhandlfunctionnodtextnodawarcontextruntimvectoraccumconrdrisnconvenipushbackreadnotatextensecnchessreverscyannotegreenupperblankchoicecosystememisscolorergonomdealsaveoffsetpaginspellservertimezondefqueriyesqldictionarikeeperhyphenskippronecatacumbainterpospeoplconditionrichlucirelaxfrankisceneiamgrootchristianonclickbtnsablonodiscussdevcardquilxlintnippibuddihomecontrolcontainrobbforktemporaridesdemonauberincantftvivimclojurpstorigtimeoutautodoctreeslamhoundjarktarsierrenderirendownerwidgetswannodettcreditgdomdomtheatraliacljfmteftestacceptdclojurinfinvalidbroterritorisidecarcallbackjsonpsidekiqchanfrontendsidequartfigwheelmigratconsidrecurscomprissymbolhydrantfileuploadmmcgranawowplannercenterwidthwindowconstactualestiamttodopileupcljamtimtbrookprecipicfacadbeehivuncontendaperiodcowholioglermarmonadalgohlshipfastwebapipipelinclstreamfraynjcfjackmorrilprimediadotenvtraceoptvifigmpprotocolpnodeethrestoraspirsetupzkbrokeractivresolvconjdifftestwanwirhjwsswipdarknetpotentialdifferuklauncherchromekarmadefconfignomaddoctopuswaggerreititvarcharadminsubnamsubprotocolswansoncakeswankcontribmustachstencilcsvweatherhecubakixidaemonyamldocoptalphagovmultipldashboardblinkengovukstylesheetcssinlinisslazimalabarbacljsontailrecursnextintshufflcharletterfixmkovertonsessionperiodshalegreetmodernthousandmissflushcloneprepgetcanonicalpathgetparereloadplumbprismatglossopeulalimoehildebrandnervoudayofweekschschedulcanvashowweekendwaleenglandholidaicaldeprectickmaxdecaltimagattrhiccupnormalextractcgrandnetscrapecomicraszioauthcommitdelairestassertionerrorsemantprosemverpulltentaclchangeloghupersistbuildvizmagicrunclassgetfailurgetfailurecountgetignoredcountgetruncountgetruntimwassuccessgetmessaggetexceptgetdescriptjunitcorbootfqlastlireplicntareacanonprebuiltsplitterbcltnintrofinishtnseqjobaerobiorecipimailitmailcollapsfastqexpsetexpbcmapwrtstatstatbarcodbcstatspacescratchfuncstrtscratchgraphphasernaseqtransactexecutesqlcbfinaltxexecutlocatopendatabasstoragdefstatsqlitefivethreeonernmatchitemcolluintguidspiradetailpurposfitmerchanthopepublishafferognuredistributzmsundmanandermodedatasourcreceivcardmemoriapartiinjectreplumbnasserprogrampostgresqlconmancpropcltowernumercombinatormiditestevaluadtokennaviglistengettokenspysettokenstableventtyphistorigeventeventgoogdefroutsubmanminuagomonthcomparparseintintegdorunfetchfavlinklprntodairecentmpostfavoritecregisttracesecretaribinaryagtodomvccommaduplicvalutablprimariexpectpostgrupserthformathsqlunplaiprogresssorttabsteamcommunpcdlpcrecommendtrimxmlflagsteambltoolclausbsdpromispromesafilepathmetadatalocalrepoientitydefaultmergientitiextendstrictcardlabeldeletcascadslugifisluginsertdefentkormalabelmetabasproperticonffilenamconfigurktrawatchautodevtoolmodulbrowserlockprotectshadowthhellerunshadclosurjavascriptgooglrcslowfiltergetpropertitnrblatneedstandardhackelasticsearschreifiembeddedelastembedgoodwhutdefprotocolelastnodebuildnodestoppablstartablclasspathlocalbikeshkibitnpmglobvbauerjshintsoupbfontainproblempopulprobforeformattmockitofaultriemannboxuncheckassertgniazdostylefruitworkflowinstrumentworldprintlnlotdondropdifferhighlowrangvecgridsolverepochunixtimestampredditlonggettimmilliseconddaihourdotoutcgettimezontzmidnightutcnowgetimplementationversgetpackagexistgetenvgregoriancalendarcalendarkarmanautsequencgrammarastraddchartypemodtransformtaketelexwordbgbogosupporttransferarraybuffwelthallopoolworkerimplementdefmethodconnnoveltidefmultiloginauthderivhierarchiservicrecoveriattemptreportasynchroncommunfailurchannelputthrowablblockstreamsupplistaturesponstostrrandomuuiduuidrandomuuiduuidstandalonsinkkitchenrookavisotruthirefactrevisbarvcnumsuccesactrefpredicsuccessdefactactionminimbackendregistregarrailjavaargumentexplicitregistrimetricregistriswitchprotobufshimparamgolangchaintoolagreementasffoundatexportshipmiddlewarpiggiebackcemerickweaselgardenenlivaviarirawjavaccompfilesetunionrunnerdeftasklicenradicalzephyrtaskpseudorelbundlrunmodulincluderequirtictactoeapptictactoreactnlibcleanambliomcljtoetacticnativjoeclakclikhintrestartgettextareagetviewgetviewportrequestconsolreturnpanethreadindirectliseesawshortcutsandboxeditornightcodrobotmonkeiconnectmongodbcfgwhitmanwunderbossprojectoddllbasiccontributorindividuhatrednowarnaccessparsdecodargcommandwriterwtrstripspitslurpplancktransitcognitectsmscriptdefmacroappliflattencomplexdefinitsexprinternsymmusickolmogorovlocalhostendpointjoinpointentriautomatautotestsypathfindresetdestroishutthrowexceptcatchalterconstructinitnamespacednruuvimodascendstepcocosinminutsinsinenegabpositsecondintervpollunconstraindefsensorrmathcurrentsamplerrandomcurrenttimemillicmdissumobisleepshortcrashbugchmodshlinuxdownloadwgettmpworkdirvariantnilaptdebianrlwrapcurlbashcachapkalpinelinuxcdndlechoalpincasedistroinstaldockerfildockerprodmountselmerimmutyogthometosinfzakariataoenssotimbrloggermadoucnamepackagtestfactaccumulmemorisamplrulesetjavadocmirrorjsrcodehaurbrushruleclaratoomuchcodbookkeeplejoearthlingzephyrhaltshutdownjrunsshscpshellevfollowwallpasslayoutvmincisrepackryanmcgfunctionfixturhelpfixturexconstantlinterexcludlintuberjarabortjsontimefriendlibusicommentinnoqstatuspedanttheclimatecorporthreadpoolclaypoollimitpermissgovernlanguagspecifimplikindconditwarrantibasilawownershipinformworkcomplianccorporclimathighlightanalyzqueryparsenginluceninterfacclucimarkdownformatnexunetticatalystcoordincollectatomixsweettrinitijlineinputreadcompletstacktraccdthnetotrptcolinproducthappierfitterreplijmxhealthqueripeerkafkascalaelasticsearchcassandranreplboxurwritefixmcontainiumclansirewritspectracstuffathoconformspecviolatpartgrasppinpointaerocomplementselectionendselectionstartlengthelcursormovedocumentgetelementbyidfocufudgdirtidissocelementinitinthdisablcolumneditenablswapcolrowreableditarticlvalloadglyphiconchangsearchplaceholdtexttypelgcontrolinputfeedbackerrorgroupsearchbardispatchframeatomreagentmarkikiwhitespacunitprivatcheckseventigfrederickexamplincrementbakpakingameeasiezglibprintprettiadvancoptimjcompilbuildhookcljsbuildbootstrapwebjarreactfacebookomgsnewmarkexperiautomatacellularbeathawebolscrapmultiplexwebsitsinglwebdeploysitemuxxnoticremovboundagrefashionrootfoundcoverdegeldeginfocontactreservrightgoldfarbdavidliultitlspandivemitclickpropselectpageprojectdefcststoredviconbuiltinmfrumextlentsitemapvieweruiviewuxboxnzniwiantukhandreigmaildelacruzgarciajuancruzlajuanobtainfiledistributmplformcodeangelloamericatimezonbaderdevelopadditpomcredgetkeepsafbengpgfailmarginaliarefreshjakemccrarigraphitcodahalkeepsafhalecodathingmeasureastwoodjonasreplcloveragaotmainantresultoutputjunitincludghpageglobaljlineasyncutilassortruedigergadinteractsimpllistconcatindexdetectorsplitseqforeignhostnamdateidmetrickeisubscribnotifihrefmessagmozillatelemetriaddressstaterundrydestinbodisubjectemailsenddbsesimpleemailawamazonicaalertmedusaexternlatestdisttargetreadercodeinaswoswpjarassetsourcdeploicatscopeunlicensdomainclojurescriptwrapperidiomatrxjbeiconfuncoolreadbindfnproccreatexpressifnlangobjectgenerateprocessingfnstaticmethodclassgenprocessdatadslhelperdsbdpinteropdocauthorphpopensourccopifindtermsoftwargadruedigdepchecksumconstantliintegrdefaultselectoraliasbetadeveladaptjetticheshirslingshothttpmimehttpclientminreflectwarncontentsonatyposssonadakronclienthttpcomponcljcriteriumreplacprefixanchorlinenumbloburidirsrccodoxcodecmedleicloutmacroweavejestlibrariconciscompojurconnectormysqlhoneysqlmchangdslgddatabasbackjdbcsqltrueevalchoosealicensmitapplicleiningentemplatappancientmockringclassiclogbackqoapiservletjavaxcommonnopslfexcluskitscmapachmicroservicaddonhttpkitteslaottodexmxoptjvmcicirclpprintupdatleinfreemidjdevprofilmasterbranchplatformgitvoomdependfalsreleassignpasswordusernamrepoclojarsnapshotrepositorihtmlepllegalwwwpubliceclipslicensmichaeldrogaligithuburlplugindescriptalphadatomonyxonyxplatformorgdefprojectuserendvararbitraripreservsetvariablmodifisystemoriginemptisubcommandintenddebugfoousrbinenvpathhomepuppetjrubiconfigfakeenvirondeftesttestgemclipuppetservpuppetlabstrongemphasiwrapemuhcountchcharactstylesetextmultiunderlingenerpartialdefquickerversioncurriprovidprerepeatreducstrlineaddleveltagstringnumberheadermerkkimapoptiondefnclosestopassocstartroutintporthttpserverdefrecordvhostsmodelimportresourcyadacoreschemalifecyclcomponstuartsierralogtooliojavaclojurmodelhandlermakerefervhostbidihttpalephrequirserveredgnjuxtcopyright���d"�#���H���!�a !�!�B'�2�b�1�8c�D�1DA��A!��A !R�(a!�FS�D!���AA�@D "�D"�c�1�!B�!�DDA�A� F��`�!� LB!H�!D!�!�d3� B�FD !B�0)"A�A!�D!�"�BB!DC"Da�B#������C�B!� B#�0BA�F!�F!�F $�1�a��!�0�a��%�1�a��!B#�BA�BB!BaBB���C!D�� !a�0BA�B!�BA�D�1B#Da�F"��!B!�BB�F!�1F#� !�!�B#�D#�Db� ���a�!B!�0FaB!��!�D!�B!� B#�H!�0BaQ�$�0N ���C�B! BB!�0F"�SFC�0�!�"�!�B"�B a�� !�D b!�!��$ 1��B��0B!�!!�0!��"�!�!HB�0B#"B"J(B�A�*A��b��B1�b�BBd�F!��D!�AB0�AFa�H!!B !�"�0 ! C�Ba��"� B'�B!� B#�0BA�F!�Ba��!��8��E�PBE!F c!���P!��D��0�aQ�c H!�1 ���A�0!� c�!�(��2 B!BaF� !�!�H!�1�B� !"B#�qD! "Ha!�#�F��@ !�D��(D�F!a�B!�Bd�@�($�f�D b�0B#� c 1"�3�!$� F�!J �qF��C !" ""D�!�A�"��B"��!DB� �b�!BB� �"!�8d�!Fd�A D��1D�" !�!B�� H!�0D!�0B #�! b B0"1!�B#�0�!�� b�F"��!�D!�B$�B!�0�!��!�DA�N#�0BA�Fa� �!�B !��!�!D ���0%B" J!�B!�� !�„0�c�B $Jd�!B!�0FaB!��!�D!�B!� B#�H!�0BaQB��F)A�Ba� B��B��0�!�1B!"!�!"FC�F!CB! C� !� �!����0���H�B&�0�!B "a�a�0�bQ�(a�1� e� �0C�"�8g b�!�!F! "Fb�Fc�!F%Q�(c��A�A�(B�"�C�1�a�DB�!��!�$2B���!�A�!B��AAa� "�!#1Da��aF$�D"��AB!��"�0Ba�0�a�0 c�$�1�!�0B"1�C��C"HC� H!�0D��H� H��`!!�1F!D "3�bAH�H�� FABB$�0�!�1BaF)�0� %B%�0�"�0D!� �"B" B!�B��2B#Da�F"�� !�F$�@B!��$1H!��(��! !� !�F��B�� J#�!� !�B��@� ! B� !� �!�!!"B d�@���2�(#� J#�1�!�@L" BFcBB!�`!�B ��A C�AJ(� 1H��1!B#�0B!�B "�B!�0 !�� C�Ba��"� H!�0D!��"�0B#Da� !�F! !H$�!a�B!��("�B(A���Bc!� �"F�2�%�`H$�D"�a� B��0c�!J� !F!�B!"F A�����C�!D��B!�@�D!B "�D" AD! 5D��0B !��"� H!�0D!��"�0B#Da��a�aB!��C �! 1B(#  !�!�� #� c�1BA 1F C�!�C�"�!�B!�D%�@B� H!�0D!�� !�0F"�SFC��c�B!�B%1B"B" B!��# A���"F(�A!C�@�" �#�P�C�!�C 1c�1�a�PHa�P�� 1B a��c� �A��b�1Dc�1�A$!" "�e�1F$�2�# �e�1F$�c�0H"�!�a� D(b�!� H�!A�A�� AB��1Bb�pB�1�#!!�� D d�@Db!!B�A2� �"D !�1�d�AB1�"� �a�2�D�Fa2�#�BA�DB�@�c1� !�"J B"��"D D�8$ !!D�@��B��!� �!�b�A!!�a�!�"!�c 2#��(dAF#���!�� !�0FnjB�C� �#� ��A� �"B# !�!!���1�#�1�c�!� �$�!�#�b 1D "�1�b�!�!1�C1�ńB&B!�0���"���Q A��!� H!�0D!� B��B(!�D A��!�0H "�0�#�#��a� Dc�1�A�"B!��PJ)ƔJ$!�(%�R�BQJA1DD�Q�a�!D a 2 b1B E�!�f�"L„ �DDb�B!!�A!�A�CFB!� "�0HB!� E)A" � B!��1F�!L!�`�A��!��!BA1B(�T�!"� c�!F#�0D! B!�1�c�0�0#���!�c!�d�1� ��1�$��!�0Fa�!� B)�HA�!�A��#�� ���d� �A��A� B"ABA�!� "� B!�B0dB!�B)HA���Q A"�" R� ��29h�0B�"B#����Pb�0J!#�2B(������ ����"�A�F0B�0� � P��B� T�c���b�!C1�c�!�c�1�e $�D�1�c�1�(�1�b�1�c�Q�@b�1�C 1��� � ���D�A�0� !�#� �B�!�d�2�F!�0C 3Fa!�# !�Aa a�@ #�B !1�i! Œ �c� ��"Je�!H��A� ��2�(d�F��0!��1�c� F�!J �qH!D"Bc��F�1!%� �1DD0���(E�0FD1H� � �� F!!� "BD C� B�0���@� B�AF c�`�B 2�3�b��$�1��� F ! #1Bb!�b!DDBD $�@D A�!�C� �C!J��D2�!1�B��"!��R�� B "�c�0�B�!�b�!�B�b 1�� 2�b�1�c�1�C�1�#�1 d 1C�AHEB� a�Q�bH(���C "�($�!�#��(�QD!B�p�!�FD$"B��!�!��"�p�0BA�Č$�� $3���1�B�@�"�0�"�!�A�!�� !�� !�C 2�A!�A2�c�!�b�!�b2Db!D D�F$�F A�Ba�0B#Da�F"��!�1� b�A�� "� !�F!�F a�B!!�! !�$�1!!�PHe�B!��("�B!�Ba�F!�F cABA�!B� !�B!�@H!�!B("�FA� $B" B$� !rH!B��B!!�0�c�@Dd� �#��#������C�B!��"��"�!�!! R !��a1�A��B�1�!�1�B�aD8d !�aA��F�"�bAH�H�� �"��B��1���2� 4��"�cr�dA�D�A9C�1�! ��"�B��B �RJb�B��Je�1 %�0F(D�a!B$F#FA��1A�HaD����1�C�Dc 1����f #���a�1��1� ��A�"�!F c2D a��"�b1�$ �C!�C "�A�1Fb��)" S�!�2Da��"1�!� H "#D a�@���  �c$�@B �� ��c�!" B�B��B�B�c��8$�!!�"a�Fa�0�� a !�!� ��1�!��!�@ !�� " BFB� &�QH$�� !�0Hf�"�#� !"D$aBB�B�"� �b1Da���1Bb�!b1� b1�"!D"!�c�1#� �E !�D!B& 1Bc�!�a�DA! #�PJ��!E C���H��!�$ Q !$�He��(� "���0�!#CHDBHD#�@�B�!H'�q�d A� b� BD� J ! "B !��2B�2�B!�A� ��"N%A)��� ! D"�B��B �RJb�`DE�B��Je�1 %�0F(D��!B$F#"F(B� B��!�(B� �C!�B 1�B"B�A�D!FB "B!�b2�DB � !�B" ��1���!�b 1�B�@ BA��!D!� A�� !DB 1Da�B��!� �" #B&1F!�!��1F#� B e AB ��0 #��!�@D!�B "�0Bb�@ !�1�Dq ��D!��!� B"�p�!��"�0B#Da� !�F! !Jb�D$�D"�B!�F��#D!E�P �BF�cD $� �A�1�B�� "��!B" B!�0B�� !�@Da�0�#�A " !�!�F��@ !�Ba�B)� H!�0D!��"�0B#Da� !�F! !���RFa3� !2�#�B�2B!�1BD�@� D"�" 1�B� �b!�"�P�#�1� aB!EA�a1D"�1B!!F$�B��B �B!d��"�H(eRF #�Fe AB #� ��1DA� ��Q�$�P�(!�2D� �#!H$�D!2�#�!F c�0�B�c�A��1Fc��a"BA� D"�F!�0�a�D�"D(��!F$�AJ"�"!D�Q ��Q %�B!��! #��!�B�1F!� D d�J�#F��!#�2D0!FA�0!�!��0�#�� � "�!�Fa�B�!�"!�B��d1Db1�b� �a� �B �ADA�!��b�dA�C1�b1�c�!Fb�0����0�2�c�!�b2������1c1�#�1�(B� D! "�a� !� �!� c!�!BD�F�0BD� �BB(a���� !�@B��Ba�J ��B�B!1F ���D"�8��Bc�!�a�A�a�1�(��!D�!�F(!�a�"bR���B��R�"�$�CAJ��P�%�B!$��"� )A��! �A�#�1����!� a�@B"� �� B#���D!���"�"�� c�!�d� �A� !!�H$��#1�$"� #�!!c�!F"�!� � !� B��0H A�!Ha�"� $��!�B!�B!D"2D!�!C2D��0Hd�!B!�0FaB!��!�D!�B!� B#�H!�0Ba� c1H�D"B�2�aQB�Bc31!�B($ !��B!�B!H!!J!��($�B!�N"���1D a��8A QB"�q������!�F(#�b b�e�!�B2�c!� C !�D�1��1�d�1�c�!���2DB�2�C !�c 1B a1FE� �"1F�A�!�A�BA�Q�# 1B(B�AH#�Ba1�!E� FA�B !�B#�Da2B!!D"� �#�0HA� �a�!�A�0BC1����!�B��R$��C 2 c 1�c�!�� 2�# 1�#�0�!�1Jb�Q��� F� R���1�c�F�� c��eA�(b�1��A�$!D!���Q a�2$��d�0�� 1B #�@F%H#�B a�0B!�1F!�@�d�@DD1 d�"� �D�2$� �#�AP� 2�c� d�0!C�1�� � d1�� A�c�AF !�� !!A�@�" �!� HB�� aF$ 1�B�@���@!e��� !�b�1�d1���1�B�P� a1 B�0�%�AHcAF!�1�"�!B��B�!HDA b� DB�� B�@a�$�1 B�BHA�0H � CDb2B��d�0�a�c !C�1���@�@C�1�b�1�B�a��!�0c 3�A 2D#�A��1Ha1�!� D$�!Bb !Ha�!�" 1�D!FC �c�DC1���1�D�"c Q�C2�d�1�#�c�1�#�!�ac!�B $ �#�A�#�Bb!DA�0B�B""�#�"�D a� �#DA� B A��A� # �EA�D� D1FD 2����A�D�a�1�D� " A�XB!�B !Da�@B "��D"�A 1�b�!�"�@�aQFC�B�B!��1�� "�C!�#�@FB "�1C1�c 1�dB!�� e�e��! 1�'�B0A�!�!�0F!!�!�0�#�qD���C�B"�BB0� �8$�F"�F��Q�!B! Q� a�J$�D"��(!�BC�B!�!)!�BA�Ba�B!�B�B!�F!2���! �2H� B!�BAF #�PH!�BDa�PB!B�BABa2�#��A��aQ����ATDA��!!�! F#� d�F ��P A� $2�"� �D��DAD!!B#��$�� A� c4!�!d "� �2��A� #�A�(�RB��0J(!��)��0$��!� Fa��!�a�!Hc1Bb�ABÌ�"!B!B!��%�d�@B"�0J A�Ba�BA�AB!B!�� &�0 aF!�B#"H!�BB(!�  A�1 A��b!B#�@B'��!�1�c�1Da�BA� Dc� B�!B�AC�@ �� Ha Q A�����C�B(�AD ��Q � "J #!BA�1�"��$�!!� !�BBa�B��@B��!����$! ��P���PDBA�"��!��C�@B��@�B�����"!�0d�P��0dABA�!B!��#�1H!�2B!�B!�A��D !�!1Jb�D$�D"BB d����!� B�A��1!B�!� %� B"�BDe��e 2F(��A�#1B��0H#�ABA�2�#��a�F)��C �C �C �B��C�B)AABDDC"H b� �C�AD � 2�!�@��"F� !� E !�(!B�(���BBA�D!�Bc�Fd�BB$2�"�0�!1�a�!�a�BA! !�1�K8qB���8!��A��"�$�B$�B��B!�0� A�  !�B!��A�BD��8"ABA�!B!� BB$��!��a�0� A�!�"�P�!�!!!B�� !�B!�)�B�9!�F���"�!D ��B�� "��!B" B!�B(c!�!BD�F�0BD� �BB(a����!��!�DA�N#�0BA�Fa� �!�B !��!�!� #�0� D� H�a2b� B�!�$A�C�1�c�1�cAB ����QD"�a�!�!!�B�Ba��"� B'�B!� B#�0BA�F!�Ba����0Fb�A�C 2�d�!�B 1�B 2F��0��0BA�0F#�1�a�D!#��A !�e !�E!��!�b Q�C"�A3�a �C�!�c�1�C��A�1BE� �!�B#�0�!�� b�F"��!�D!�B$�B!�0�#�1�#�0�"�B(!�F(��`La� ����B��!BBa� �!g!BdABcF!�B!�B!1 ��0���0� �!�b!�"�@ �B�cAF��� ��A�dB���C� a�0H�B � 2H ��� ��A d�0H$A��1�d�1� A"�aA 1�b1��2� C�1�b�!� b2� B�A� c1�C�!�g F!�@Da��c�� C F)d�0B a2LcR!� 5�"�C1c�1� b2)!2D�"�B R� !RE !�DB!$��B"B��@�D" � "BB ! B�aA�"�B!�A� �� � � HB� C� �A"D�!�"��!��"�B!���D d�PBa1�A�1�b�@�c�#� DB� b�A D"�B�A��!�!B(�@Bb $BBa�1�c��a�1HC !�D2H� "�a�B�1�!�0D #a�Aa�0�!!!��A�F"�B!� $�H!1�D�QB!�B!!aBD � �$!�BDB BAABA� �a2�$B!���!�1B!!��Ba�D!�1"�1� "�` $�J% #!�B B $ "Dbb�C!Db� �b� �B�B(E1B($� B �J�#���A� A2Bd1H c� d� H C BF$��aR�c� ��A���0�a��! "L�$Ld� �A A�"�C� �b1�"1�A!$��b�0�!�B#�0�!�� b�F"��!�D!�B$�B!�0�c�0�!�Be�1Ba� !�0F"�B��B$BF!�����bb �� $�B#�PE�B%��!�19$�0� BA�9D�F#�!�(E $�@H $AB%�2�(#�2B)%�B(!�2B% B�C�B !�J !��(� 1���B�0d�0�C1�# �b�!�C�!�#!�! BB� �B�! C!�b!�a�!�D�!���(A�1�C�RBe�1�E !�bRL!E!B�1H!�"C"���!!�� !#HCQ� !�$D"! ��0�DD�� FD!�(""� A�B#1F� ���D !�B0!� �B�`��1B$�8eD !�Fa�0��� C�@L�� �� ��BBc�$�0�#�0�#�L�#�(E�B)C�!�D!FB�A�0,��c�A!# 2� �C� ��A�c�B)$ 2� D�A�0)�B�B B�BJ!d�A!���a�A�!F"� �A�0�#�0�C1�d�B�1�!�B�a!�b 1D !HBA�c�!HE� b�� $" B�@�BD!A 2D A1HD��A!A !�B��0B!�!�d�1!D� D����"�8!t�aB$!B #��A�0PA��a� F"�0B ��0R���C�B!� B#�0BA�F!�aNC "�d! a�0�a�0 #��!�0���H!B" Fa� �!��AB!�0�9A 1�B�A�$��"��$�B#��(A�"�1b�!Bb �a�!���1F�1�#�a�C��0F 2�c�1D@�Q)c2�0c �!�B!�BA"� F" �C!FB� A2D !�0DA� �# A�c�0�a�1�D�CH#�!�a�2�c�@F %� !B2Bc� ���1�)a 1���@���1�C2� c�1���ABb��A 1���1�B� H"A�$�0�A�B�� B!BA�0!a D0!!a��#�0B(C�BC��A� B!� B(C�!�� R AA� � 1�C� A!���1H!�!!�0a� FAABA�!B!��!!Bba�O�!B !�0BC�Ba��"� B'�B!� B#�0BA�F!�Ba��B!BaF� !�!�H�!DA�B "�0BG�� ��B�B #�@D ��D#�!����(#�B#�� C"� BBa B!�PH!�B�(A� D)!�AJ a� a�0H!�A� !d�F!��!�$�J "�PH !J!��A�(b�!#�!���A"� �B"$�0� �BHD��!Q#1� "!H(A����A�c1F)$Jb�1� $�!��A� �B�c�1b�A� �2�D !�B��Pb 1�C!�b�!D! ABC�Dd�0�!�%� �#�1�(b!���1�"�B C"�$ 1�#��%�0BB� �b !�"!�B� D B 1�"B �A�b!�BQFB !D%�Dc��D��(B!D �1H"� �C�1�A��E��c�!F!�!�b�QF!�Q�C1� bB���E� ��"�a2�b�QFc�@FB� Dd��a�P)#�!�#�D���EQ�a�A�"�D�1�A�Q�C!�"B#��B�!DA�!�D �CA� b"�� 1D#�0��!J�!b1���0B( RFA�@"!B� #�"� �AR���A�d�a�8b��0��F"�b�1F &�a�C B�!� �bD!�D�@�b1�(A !"!B!�b2)D !$!D� ��1� "A�CAFB)#�!DC� H A�A�1�C�� ��� �c�1B)$� � ""�c�!"��a�0�$�AD ! " aDC �c B!D!�B� FAABA�!B!�F!�B%�0Fc2H("B(ABB"� �C�#�� CB!�1B#��!� Fa� �!��AB!�@B!�BC�0�(C�!��"BA��(��e�"�C !� � 1��!���A# A�B!#BH�!�c�0�"�0D!� �"B" Ba�0�a�0B!�0 e�F"��!�D!�AB!��!!��0 !�QPa�A�C B� a�1� A�Ba�BDB�!�D%2B!�R�%�0B!�B!�$�A�b� !�@� !�BBc� H!�0DA�1�a 2BC�B#��)HH��D@$�P�(���A��A��"DD�1�c1�#�AFB 1�#�0� ��c�@Hb�0B0� H!�0D!�B!�B��A�#�B!�Fd�!�D�1!#�0Be�0B#�B�� !!�B B��aH�"�"Fc�0����aFe�B#��a�B!�B A�"�!�B�!�a�1B!�@�$�!F#�@D�� H!)�!a�!��!�B�0����"�B#�B!�Bb a a�AB!�B!Db� FAABA�!B!�@Jd�B !BAaF !� BbQF���0#�$F��0 !�DA2F(��PB(#�Fc� FC�2B$D$�1� !�B�%�0B!�B!� �"D $a�J�A�$�1�a2BC�@ !!� ��2BH��(#B" Bń0�bAB#�!�0B # 1F" 1�"�FA� $B" B! B��9$� !�AB��Ba�1F "2D#�3FÌ H!�0D!��c�RB!�F D��c�1B�Dd��A��c�AH��0H#�ABa "�!H B���1J!�! 1B(#  !�!�� #� c�1BA 1F C�!�C�"�!�B!�Da��"�B��0F !�B� !��!Da�B!��#�F!�ABb� �!�F" !�aBDa� �� FAADa��"�Bc�F!B8A��AB!��"�0B��B#��"1B"B" B�B!�F%�0H ��1B#�FE 1�!2FA�B! !�B�F��0BBB!�BA�0FdBHc��"�B!��B�� "��!B" B!�B(c!�!BD�F�0BD� �BF%��B!!�b��b!�C� �!��!�A�`H"FB�0BA�0�B�0D#A�!1�B�1�(B!� ��@�(�"A�"�b� �c��B1Ha�@�b!� D�A�C�I�!�C�!�� aF" 1�� 2�C�QBc� F��1�(#� F"�1�#�1�"�1bB�B���d 1� B2D�!�f�Tb1� A""�1�bA���C�1FPA�Ba��"� B'�B!� B#�0BA�F!�Ba��"�0Ba�0RA�Ba�0B#Da�F"��!��"��$�1�a��!�0�#�C �$A�#Q�!2�b BFf� H)c�#�1�a�2�! �Ì2B&�2F0" bF($�P���QF!c"�)D�Q�#�1BB�0H #��e�AF(��Q�0a�FA�!1D ��@�b�1�B !�a1�"�@D�� !�@B!� ��@���0�)��"�$��$�PHC�AH D!�b"�# !B�@B B!���@b !# B"!�"��(aABA�!B!� #� �c�0�e�0���e2� Ä0���0B$� � Ra�B !�@�!�BD A�b�0�D�0���B!B���0���!D!�@J!!� !!�c�"���1� e�"D!�0���1Bf�B��01aBF�� H!�0D !�B!�1Bd�A # !�d " � !F(b1�B�$!� D"� ""� "�a!�DBDc!D�B�%�@� A�(�� B b� �"�F A�@B ��@�B!�0 !�B��#�!F" !�1""�AP!�� #�`B$� !�J#�`B0!� J%��!�!!D!�f�!F��!B"��"D�b���@�c��a� � D�QF@$��B�1�b�!)� 2DD D�(c����! D�Ba ADDB�!�!D�Da Ha�!D!�BA�Ba�B!�B�#� �"�2D#�!aD���HAABA�!B!�AH�L!�B!���0�#�a� a�� !��c�1Ba�PB b�1H!�1��QBA�B(C�!�A!�!�BBD���A�0�!�b�1� h 1#�!�c !C AFc BD�!!� 1� c!H$�! "�a��#�AFa2b�!�C�D !�0 b�PDC�BB("� �!2 BA b� D !��C2B$QJ d�B�ABA�!�!�B!B!�BA��!�1�A"� c� Db ���1�BAC�a�!B(!�0�c��!1��1�B�F!�B a�"�C �8%�Ba�!B!�@Bb�1�!�F'� He )d�$�D$AB!� "��D!�HB �" A�C�C��!"�a�D B!Fa!Jb�D$�D"�B!�0G�B� �!D�@Bd QBc�0 a� a�0 ��Q�B�B!�@H��B��BA�BC�!�c$ "B��1!�H$�0FA�Q� #��(%�QB#�B!�B��Ac1���!#�"H! B� !� �!�B$��!�1BAA�A�P�%�0J!� �B�1�$�! c!�# !DC�!�#�B ��1�cA�A A�C�1F!� F ��!�!��� � D�� c�!BBE�1�#1J �"D�"BDF(a�!H!D� $�`���aJ�2F"�ABb �c 1D d2BDa�1!A�(aB�$1H b!�(A !� �Q���Q�(BQ�(B !FB�!�(B�1DE�0)B!�(C1�B1�(B1���Q��H(B�1J)E�R!��Q�(d�D!�1�!A�0D"�FAb!�b!a�0!b B�d�QFc�� b1 ��B %� H!�B!�B!�Fa�0d�@�CAF� D�� %�PD(!�D!�@�A1Fc�!� $��c�BC����B#� B ��@� �$D"� �"�H$� !�L��0Bc� �� �B�d�1�� BB��@�D� �(b�B�Bb�� !�0�a�F!�� � B#�JA��!SB !�2F0e�F�!Fa#��AB(#�!BB�0� b��#R�!b�!��1� ��!� !�1H�1�c !� � #D� c�1#�A�d B�!�B C��#!�!��B�D"�B!  �@HCAF�AFA�AB!�P*��DE� D("� D!B� �#�1H!�2B!�B!�A#�"�(!!B"� H$�!%� H!�B!�B!�F!� B� RBa�@)��2�$���!Bb�D$�D"SB ����B!�0D#�C�$�Q����C�B#�F��B��B� d BF��1�A2�#ABA�!B!�N !�H!!B#� � !� �!�B#�01E�A�D(A�B!!D b�F!1�a�#�aD$�D"�!c�0Ba� !�F(�����1HDR�F�(a"�ABA�`9! 1� !� �!�B0#�!N !2D"�QH !��!�1Db�FA�Ba��#�B!BdB $�B !��"�0�#!B!a�B!��$� �BDc �!B� Fa )�BBD�@B��0B!��d�B#�P�(!��#�BA�@B�` a1�#� �!��Fa�C!F!"!�� !F! B!�B!�!�b1c�!�B B!�0�C�@!�@�#��#�@��B!b 1�D�@��1B dA�c�A�!� b� c �!�0B!�@B$ B�e ���0dB�d1�B2� d1��"� d�A���@A"d�!c A� b A�C�!�C2�#"�A"���0�#BDCA� F"�$� D ! RF$�F %�F# 1���B#!��0B`# 1�B1�b� �a�F"� F�1B!��"Q�!1BA2�b� "Hd�1�� AFd�0%�Q�D� �B�!�C�A!��d�@F CA� B!�b2� c2� #2B���(a�@H"�1!bA��2!È@""� C!!B!�" 2�F"�B�1�b�!� B!�b !�a�A�(F"�B�A��!DE!� "4�H1�� !�C !FD!�"�!FB� � d�@!�2�#�1�B�!�B !�b D�$�q�e!�b�!� B "�B�!�b !����!��"�F!�0�#��A� F#�DB��!�!�b�0B"�1�Ba�a�0Dc �!�0B�1N��@BB� �A�AD!�� B�BA� !B!1FA�!!�AQB!ADB� B!�DB� �1D�"��("� �1D�q� ��0Jd�2�b�1��c2#��$�@ !� ��!H#!� d"�b�!� ��!�c "�b�!� ��1b�!� D�1D�0�B�D# "���B�� "A1DA��!1�A !Bb��C !BC��b� �C��"!�#1�!�Dc� FAABA�!B!�A�c�D�c�!� b "�dCC AB�s�c�!� !�BH! B� !�� !� �E�1�c�!��"�!�0����8b�Q��0B�B!e !!!� ��0B!��c�!1!�0FA�1�a�1�#�!B$AA�B#�" B�AB �� �B��aD("!�c�1�c�!�E�0���P�(!"H A�AH �! "� F�0DC�A Ba$�0D A1 ���a!�D�0�a�@�D�"B���!2�#AF"�c�1D#�BC�1�a�0D! 2 b�0�"�1�8D�A�c�@�#���� ���q� BA�B�� a�0��� B#RJ��B� B�a� !!��!�!�a����0B�"B#�@B����Pb�0J!#bB0&�F2a�B!�D!�BaB!��A�BD��8"ABA�!B!Be "�!AB���aF�DB!B%��Be�FG�1� c�1� c�Q�(c�#�d�b!b�!� �� ��2c�1D 1�a� ���0c2�#�A�# !� b�@�a�1 !�!JA�@�b�"�c� ���!F"�BE�1�b"�a�B�1FB�1�%�LE�R�%"BB�0#� �(" 3F#�0�#�B!1F#�!� $�F#�0B��@H&�B!B!�0!!b�2�a�P���!AB�(aB�ABA�!B!�!!�Dc�0F &�0NA�$ 1B��1D!�D�0 ���C��b� �$a���1F &��!�Q �� �AABA�Ba�0�!�@ !!F!!2H!� !�1�!2���pDb�@�0�!�c�pD" 1Dc3D#�!�c�1����C�1���0JE�J(� Fa�A1�ADa!�a�BC!�A��!�!D b 1Dc�1��!�b!�("�1�b!�#�B!�BB� �B!!1�"�H$�BC�BC� D!� DA �"� D!�D"� D#�Ha��aB!�"!�1FacFB 2J AS �B��1HC�0B0$ 1B#��H�� D" 2�C�B�@��@�C�1�$� '�A�B�D �� �3� C "�8Ĕ!�b�CLB�1�ˆRF)C�Q ��A ��Q !1�DA��@Fd� b�0D$�0� a�1�B�1�%�A� $�� a�0�C2 $ 1)�B!c�PHD�PB!��(e�2��"�A �"!FB !�!�B 2J!B�F C 4��B�!�JB�QB" 1B"!B" � B2�BAFb1�A�FA�0B$A!!�0B"� DA"�A!D! "�"�0� a�!��0�0A�2L���E 2!c!��"���aH E 1�C 3�b�!�!� 2� D�� � "�(e A!��C!� B��A� e�3D!$� �!� �#�@BABA�B%� �%�a� ��2D� F(DABD2H!"D� �A� �b�d !�c�FdB!�!F��!C��!�� !�0F$�AB!c��A�!e�D!����1�#�! 1��"HD�  ��2 # 1Fa� F��0D#"��QB�� �B��J !��� �b�0DB!�C! �1F$!!B2���D!DB�!�#B" Da�A�#�D!�@� !�B!� $!d"D �! !e ADA!�c!�("2F1�B�B%�P�!!�C�0BB�0BBB��`�!4!Fc��B!FD�!�BA� Db�!B!� �(A� B!�!Fa��!��(A�"�a ��P�!� a� � ��)" B a1HB!�B�!�B!� C��b�1� C�0���@��!D!A�"! A�!H�ABd�ABd� d���A a2�#�0 %�D D� "�0F "2J ���"2���$�F#2�(��AH�� �"�B�A�"��$"��1�� "B!�0FaB!��!�D!�B!� B#�H!�0BaQF���)A�Ba�B!�AHa� B��11A�q�B�@F a�BE�!B! !�B�J%�@"�!�a� �A�a�a�1�c�"�C1c��"���DB� A"���DB"H!��C� � a�DB�"� �B�!����!�c�@Bb�0Bc1�$�!FB AF#��!�1�!� �! B(� !H$� �A�BA� �! H$�qH!$�B0���!�!� %A�$�R�a�F"�!L #�0F�!J#��a�0B!�"Ba1)��!H c!��� C1HD!��b1�D�0�d B�!�2�!�D��1�#�1�C�!�C�1�C!�$�P�(b1Da��C�!�C�1Fc�"�#�0�#�1�B�1Dc�0DB2 # �b�@ A"�"�BC� �!1B B�@� "�@�D�Q�B1X��`�!��B�1�b�P�D 1B� 1 �B� C Q�a�@�A�F(��c�0A�0c�0a�� b��#�� ��0B�"B#�@B����Pb�0J!#bB0&�F2a�B!�D!�BaB!�F"Bd�c� B�"��a!�$A�%� � B�C� �D�@� "�AC1�F�@��#""�A�!��1�B A�ba� F� L&F��0���($�!�"�0$�QHA�d 2�b "��!b1�# �cA�c "�"�1�B ! ��!�!� e rPb RBd�A�(�� � ��BɄBa�J!�B!�!H!�@� !�@D� H!�0D!!F"�AB& 1HcbB!B�� "�Bc�F!B8A��AB!��"�0B��B#����!BB��A� BD��C"HĄD!Bc� �!��AA� ��@B A�!B� Q� C�A� c $�"���BF D3!a��B B��@� !D !� �"�BF#�0�!�1F!��A� �(#�Q%1��!Fb"FB�1�c�!�B� FB!DA� �C�!�#1BB�1�(�!F$�B��B �B!d��"�H(eRF #�Fe AB #� ��1DA� ��Q�b�1� $�!��A� �B�c�1b�A� d�1C1Db1FC�1�b�PJD�!�e�Fd� ���H��0�"�A�b�1�E�1�# A��A��2 d"�eBF c�0���!a�1�B B�cB�D�!DB!HB�!�a� �a1 A�@B!�  A�0BB"J(d�!a�"B A�A�0���B�� FA��B!�b� �b2���!�B 2�B�1�� !!" !!B!BA�BB�C �#��a�0�$�A�c� ��!!#�AC� FC�c�2�!�!BAJ��1� !� �!�B0�B ���" �#�0!C�� a�" 1DB�0!A� !�@B��Ba�J ��B�BcrHa�A� ��s�A��! !�!�B!�B&D)��D���!�"AB�A�A�B�� C H�@H"��C��c1Fd B� ��H��"B ĠB!�Bc�p !�0BD�H ! B�!�0B%QD!�P�!�19$�0� BA�9D�0H!� BA� ��#Db� B!�d�1�f A� ��1�� ��� �8C� � A�aBc�D$1�D B ��0H CFB�0� ��A ��!�B�Ac�1�d�1c�AFb�0�C�!�d A�c�1!c�1�c 1�c�1D� Ac�1 ��AB��((�0� c�!!�0�g� H!�0D!"!!�J%�RJ a�A�"!�B�!�"� H"�!B(����J($� �!�� A�� B�!�$� �A��B 2�B��C"�aF#�����c��C�!�B�@�B� �"�0Jˆq# !DF!� "�0H" �BF�0�"�!BC�A�a�& 1�G�1HE"BE"D���C�!�"� b�DB 1D"QH("�1�%�!�b !F��QF d�!�a�1�c�1D�F�Fe�1$�1�c!�C�1�b�! E�B#� �c1�"�4�* "�"F��!d"� c !Hc�!�A1�BDB��(�� D $� ��AH8�"�# �"�� Œ �c�A�c�A�� Q��B�c A���1� EbF��@�dQ�(a�J a� !�!�B(��� BBA���B% "Ha!B��)!��)# Q�#�0H� "B' B'� H!�0DaB!Ba�QB%����!Db�A�d 2���FB�B c �D�AF��B a�!B!1BA�0BA!�A�B!F A1D B��C� �����!�#� F!�@� A�0�Ì2�c�Q��#H(c 1�%�1�È#H(c 1�%�1�c!�E�0�&�P�%� !�`B!�)B2H a�A�A�1�$��"�1 $�1�e�2H#1 !� B �"�d�@���B�"�2� ��B!d�@!��PH #B!� RB ��DB!A�"�F)��B a�1���$��A�D!�B�B�a��Q�"B"BBB��!�0Fc�0Da�0�D�!�$!�$1�# 1"�bB!�FA� B#B!�a� � �� �!�1D!�B!�B!�BA�D�1B#Da�F"��!B!�BB�c��!A�Ba�BD� a�1�%B�#�B!� #�0B��0���2� c�Q�b�3Jc�B� c1H��2���0FE�1 c�A B 1�e�1�e�0�(a� ���!�0�B1$1B#"J#�A �b�!BB!�#� � C!�b� �B!�!��B1�C�!D!��A2�b2Fb A�!1a � c��%!F8��!��2Dd�A"DC�@�! A�$"FC�!BA�F!B! 2� c�TBHE�1�!�0�i��a�0�"�����D"�AH!1 B"�"�C� �ˆ �B� b" $�U� B�pB0f c�1" QYA� Hb�" � 1�E1�D"�bQ�a1�c!Ha��B!Fb�PJ��P�A� D! 1�!�JbB� �BHE�0�(A�1�("�!�!�!�#"�c����A)� "�a !FC�RBC� �A�1"!�� !�(d !�� A�B"DdA�e1D!cA� dB�B!� #� J%1� !�B%�@�DB�(!�1�c�1�e�@�C�A!c�1�ba�a� �"��A�0�"� H!�0D!�Ba�a�a�1B#Da�F"�� !�Ba� !B�a !� !!�(B�!�� !�B�AH B!B!�@D"�D���A�!�C�D�� �(!��#�QB ���CB%�B#�@ !�Ha� !�!F ��0�a�B�AD�F $�A�� A��F A���A! !1Fc� !�1� a 1�c1H� 1Fc�0�!!F��F!�B��1�b�P� #�0���`�bb� F�!�!cbB��0!� AE�A�!� "BHA�@ A�Qe2� C A���0�c��!�aD!�@�"�a�D�`� B1�f FB 1�Aa� �!��B B� �e1� D�0��H"�F!� Fa!����b�FgF"�BD�Fa��#!� E� D!�0D ��0�A�!���a�C�(B�1J)EQ�b�1F(��PB %����PB)c�F)cAH)d�F$ 1J#�B��0���Q�Ac��� ��������1 )D2H!db�!1D!� )�B!��0�!�2!�0�(cJa�P�$�!�B� H$�2FA��b� �a!�BA�b�@�A!D �B� B!�B�0�A!�D"�!�!�C�#!���B�� b��B�D!��!�0B!�B$�D"�BC�F a�B(�B!��!BB���$��!�A�#�H0!�� !� �!����!�BHD�F�B� ��1 �BJ!� !�@�b�2Hb��(�ABA�!B#�����(!�`L(��1�b 1� cB!�a�0B e 3�aQ!a��D ��0�c� �B�!�B�!�b�1�#��a���1�"�Ba�`�(C�!B! "B!�D"�@B"�BA�JBABA!�#�� B�@�A�� #�Bc� BB�)��0N"�0B"�@D8�! !�B !�B!�H!��@�d 1D#1�!�@�cFc��a�19b�1BI��A�a1�!�1BDB ��!�B!Dc� �c1�0c2�C!���BB�0F�� Ba "�A�`�!�ABa��!�B! B� !�1����a��$1BcB!�B!�PF�Ba�@HB�"�� � 2B �AJ��0��� !��$�P�d$!�aA��!�C�!�BaLA�aDa� J!B!�B"�e "!�Q�B!JE�"�!�0 $�AD���C�B%BA�!H !�2D!�B%�B#� d�E!�"� !��!��#��A�0F!�!H!�!�(a QB��Fa�Ba�1�)!�BA��!� !�H!�cH ��"�#�"A�c� �C�B #�!�A�0PD�0B!!D!�Ä1 #� F C2�!�H#�Ba�!��!�L#�0F!2"�c��"!!c 1� b1�"1 !�Ld��#�!A� �"�`�!�BA���2�� R)� BB��1H!!�@���0�c�AFa�0a� ������@�%1Fe BH b ���2 c�P b�1� �2� d "�b�A�@b�A�$�1B���Ab��A�� #B !CL!��&�b�1�b�1� B!�B�b��C�0�e�Ba1�"�Q!!2�c!! !a� "�1F d�A�C�HAA� C�1�B!�B��!�L&�"D)AQ� "�!�#�!�E� !�1 "�"�0c�1Bc�0B!��c�1�B�0�c��c AH!�0�!F!���"��J��!�!�`F#�1 c "B!QH�DcA�D�1�!�@�C�A���D"Dc� �$ABA�0�B1D$ F!Ō1F!�AF��C��A�!���0�D�1 d b!A����1���1� e !� C�AFC�A���!�b!Fc�0�a�F �� �8�A d�!�A�`F�D!�(%!� ��BFA�1D ���D�C� D! "�a� !� �!� c!�!BD�F�0BD� �BB(a����#�H0!�� !� �a�F"��!�D!�Bc���!DAB!� B!�@�!�0B��0�b1F�s�(B 1�!�#�!�B !�e�1�b�"�!�B#�0�!�� b�F"��!�D!�B$�B!�0�#$B��Fa�Ba�!���N!�B B��aHd�0J "!�a�Fc�PH !�D!�1 !!�C�1DC1�0! A� � B�A�� E�@�&�1F"�1DD�B !�D� �#�!����!�1BC�B !F$��DABb��!� DA�!�"Bd�B!�@�$�Db��!�@B!D!�B #�HB�B��BFaD�� !�0D c�0�#�D E1�(!� �$r���!��a�@ˆ � %�!dA )��F(AQB#�B b�!� bAB�1D"� �a1�C�A�c�1HC�0�C!�a�B�c�0�c�D(%�HC�@A�"�a� �b� H"�A� �b�Dc�bB�B 1�a�A�b�0Jd�0B��1Ja�B!�B!2H b�1�B�Q�a AB!" A��(��QDa�0B!� JA�AB!B��Hb�%�P!H� !Hb�D$�D"�B!�B!�A���1�C�!�($����AL�%��c3�#$B��Fa�Ba�!���p�!�B� DC�@B #�!BB� �(#����B�� FAABA�!B!�`�!B"�F $�D��B��J% �"�Bc�F!B8A��AB!��"�0B��B#��%�@B� H!�0D!�� $��a ���)#A�#�0�C��(%�AJ a� a�0H!�A� !d�F!��!�$�J "�PH !F!�0�!�F$�D"�Ba�F!�Fa�aH��BBc�!�#�B!� ����C�B!� B#�0BA�F!�F!�F a�B ��0�!�FA� Fb�B!�BA�D�1B#Da�F"��!B!�B"CN$���B#!F ��0B #A�Ä1Ja!���!� fb��2� &�!�A�!� b 1���!!�1�d2B!!b B�Œ1�#�0�$�P #�AH$�0BD�BB�Q�C1B����@�"�B���A�!�C�D�� D!1 c��"� #B!�@�" !� #�1� ��!�g2��2 a�  "�B�" B!�B"�!����C�B#2B%��!�A�!��!�DA�N#�0BA�Fa� �!�B !��!�!�"�!� d!�b�!�# !J(d!�#!b� J�aH"�1H �QHĄ!Dc�0�!�B�Q� c �c�P�aF"�F"�1�# �# Fa�PFa�PFa�PFa�0Fa� ���B!!�!�1�A��b�B ! 1�%2�#�0J!d1�A��A��!!Hb!D�� �A��!�B��(!�QD$�� ��0�!�F a�F!�@� !BB �� F� !�d�$� !� ��@B!����� FA�B!Q1!�B!��aD ��B��!$�D!AB��0B��AB#�ABA�1�c!� C�1�c�B�D!�!��C �#�0AF A��a��(!�B!� !B D 2�a�2BC�B��B!�BA� !�#�0BA�Fa� �!�B !��!�!D!��!� B"�p�!��"�0B#Da� !�F! !�"��A�0�"� H!�0D!�Ba�a�a�1B#Da�F"�� !�Ba�D #��8%B" B!�0 !�Dc�0F &�0NA�$ 1B��1D!�0Jd�0B��1Ja�B!�B!2H b�1�B�Q�a AB!"H!��0!��a��!�B!B��A�a�� d����B!�BA�D�1B#Da�F"��!B!�BB)� D$�D"�� $�A� ��B BB!�B��B��ńD ! e� !� �!�PL!!Bb�!!J"�@�#A��a�0��BA�F1!� !�!�� !�(d�B�2��D!B"!�D�1Bb�J!�2�!�0B��F#B!�PH! !��A�0�!�!F F�B � !�!�J!�AHeA�#�@B!�Ba�1JA� F"1J�!BA�J!�F %B" Ba�0�a�0���QJ '�H#�RH#�1�CbB0a�(&�B#�FD�� $�B!!�Bf AH��# �a�!�C�� ��a� �c�F � 1�!����1Bb�Fc�0F#��!�D!B B !D(aBa�$QB!!D(B�!�E� ���@�"��"�1�A�0�B�"�E�0�B��e�Q�%�PB !�#QF� !B ��P� c�0J�2!�B�a�F!�FC��#!� ��(C� �C !���$�2��2H(a1F��1�A !HB�A��"�D!)d�1!��@!d1F)cB)eBeB�� B)��1� �1� a!�!FAB"�Bc�J(��1�!�B!�2�@��PaF)a2��A� ��QF)�$�� "D�A�(H$B@$�1� !�B#BB0!� A2�(d"���0�e� ��! !�1�(D B�2 ��A dc�D�F"�AD���C�H! !!a�  ��P�!��bB� #��$�B��� !�F!�B!�B!�@H!�QB%��E�B%��E ! "�0� !�F#�!�Bc� "�PD� �"1F#��a� &��B$�D"��AB!��"�0�a�aBÜ �D!� B #��!�!F"�!�C�1�! A!"��A��!�@Hb�1B!A�!1B#�1F#�B%�BAA�%�B�C� � D!��� B%� Da�"�(" 1�C1F(dA"�B !��A�F"�B#�A!$� b Bb B!�BB�R��0�(A�A�B&�0F �1FÄ0�!�1B#� DD! A� Fd�FE2�g�P�#�!BB�0�I1!#�0� #�B�A !�A�BA�J# !B%�0BB�0D!� D��Hc��!�B�0fA�H��1c�D#B�c$B�!� b���a"� $�1�b�B!�0���A���4�! !B#� F!�4�a�1� !���1Bb�@�#��#�@DA��d�0D��Da� ���$ Dc�� ��@Dd�1� d B!�1B#��!� Fa� �!��AB!�@B!�BCd�rBI"A�E�1�$�#"�@"�!B A" G�D ��1B$Dc��B 1�(#�1�C1�B!�B 1�b�!�c1�"�!�D����c�@B! !��$A�C�FA�B"� FA�!Db 1DA� �(!�B"!�0BA�b"DB�"BD!�!�Bb��D�PF!!�A!Dc�J�!H%�@B#�!�"HDBC!C�!D!1� #�2B�BB�!�#1J#�1Da�0�C��#1�c�QDc� �b�1���!�C�2D(#�(E"���PDB�� E� F��PF��AF $�b�($�0DB�!Fc�0J0"� J!QH #�0JE�QF)B"B�QDd�"�(B!� �A� �"HA1F"�c!D "�A���1�C!DA� BA!bA�b J#��A2D cR�B�C� B�@�"�:!1�"��TdFc�Q�@�QL!�`!�BC�AJ(� 1H��D(%�P�#�B !�H)����2�(&��C�F#��#���!�B�!!���!D"��A�!F�1� B� �AA!"!B� BA!Da B�A�Ba�P a�� c�0B!�0�C�!a�� B2DaA!�!FC�B!�BA�D�1B#Da�F"��!B!�BB�Ba��"� B'�B!� B#�0BA�F!�Ba��"�Bc�F!B8A��AB!��"�0B��B#��"B��0BG� H!�0D!�@B��A�"� H!B!�#�aA�C!D��B "�CB���!� H!�0D!TN!�B !�F��A�A!Fa2B�� !�!�0Bc�B!�0Fa!�B�AF$� ��B�� A�!AAF#!�D� BC!D#�c�!�! !FA B� c!F# !F!"�$� �!!BB�@b!�B�"�B Bc�AA� !�@�D�Db�D�H��B! "���0�!��BCA ! b�Bb�!�!�D F 3�0ba�A���1�"�� "BD "� �D�!�a�b�CB!�0� c !�B�!�C��A CH��B�QJB��B�B!�B�b!�C!�B!�B!�d� DBBB!�"!� "�B1DB !B"FB�!�a1�b b!�b�1�c1F!� �!��CB ��PJ a�d�AH#� !�R�c Fd�! !���E�B�"��$� c�A��BB�Q�a� H("B��@D�"F�B��e�@BB!D!�PB!�!D����BA� b� �d1���B ���A��B!�($�H !2�8!�AD"�@DA!�B"� ! 2� #�Q�xd�DŌ1�c�1H8b�1�� 1�e�1����%���ze�1�c�1�c!B���!�!�#1�#�#A�C�!�b 1�B�@DC!FA��!�PDA�0BB��a!F"� ���A�c 1�a�@F �S�"�1�D"���@�D�(�"J e�!J eRF ��(B!�FAJ#"Ja�0!��!�a!�#!B"�JD1Dc!�!D!!� !�bDA�!�!�AFb�Da��(!��"!�B�CQF"BA�C�!�("�4�0E��A� �f!�"Q�C!D"�� C�0���0� a� B�!�0A2�c�"HA� �a� �a1FbHa�@� $�0�aR���0�# !�B2���!�B�0�B �C�PJD�!�e�Fd� ���H��0�"�A�b�1�E�1�#!BD�1�aA�D�D$��"�@D!1�!�F��Hb2��� ��"C!Fd�A�c�!���!���1�c�!�c�AF"�F#�!�A��b1�B����1D!�BB� �"�1�C��"�!�B!DA!�" �� " B�@� "�$ A��%�  "�@D A� #�0�D�!�"�1�b ���B%��#�A"FC"� !B�#�! �����0�#�a� a�� !��c�1Ba�P�c�B cBB D�  � $2B �B c� N �BB!��A�D%� �!� DB�FA!$�BA��!Ą`!D�B2��!�0%�H# B!�P�B!���1�%����@JB�1F(#� A��A�@B!�0B$�a �AF�BF #��D�"�(� a�c !�)� 2� eQ �B� C�B���!!C A���Q!�� $ "1D$2b1� d!!b� e��!�QF$�D"�B)$� Jc �a��(C�!L!�A�a�0B�����#�����C�H#�BjB!�BA���C 1�!�@�d�@He�1F#�2�A R�bQ � 2�(�BHe�F���(!�QD$�� !�0Hf�B!��A�#�B!!Bc�� f�B�b1!�!�c�!DeA!B !�!��B&��a�!�0B�2B���$2� " ��1D �D&bL�c�0�B�1fb�(a��!��!� F�!��1H)$�0��Ba�0�(�B � R� �1��"�$�0!b��B�@�!�@BC�A�2 !�� eBD CB0C�!�c�0�!�Be�1Ja��dA�D!B#�B��0D c�J!���!��1H)$�!!�B !�q� A�"����@�(��2$��a!B #�Hc�2B�"� b�@�E��"�1���!DA���� �d "�C� F# !�b�1� ��!� B�!���C��B1�b!�b�# !F"�@�"�@B!�@J�� BB� �(b� D($ B!� Fc�!F(c�!A�2���A�c�1�c�1D�"H !�!�B� D���dBFA�@HD�1D1�B!��B��0!�B�� b!B!�b!�A�A�!b�"�q )bADA !� C�BA� �d2�e�B&�@B C��!�D C1�(#�@�CDA"�"�F !�qJ$�D"�BaBA�1�a�2���!Fa1�!�B�� ����C��(A�0�B 1�"�PD!! ��"�B(a��Jd�0B(d�0FC�0�XDAH bA�D�@!a ��A B1!�A���@��� �A�B�A�""� a#��$B�� $�!�!B8$� $ BA �!�#�� ��0�C�BB�B!�B!��8"��E�1Bc�Db $� BHd�!�@)3�!�4H"��B�1H" � !�J�!J"!HA�P�" !� C !�D�@HcA# !F#�!�A��"!DB� �"!�#!Da "�!� B)�DB!���� !H!� �Ha�1� ���!�1���1�0c�!�B�1�D2���B"�!F) F(!�PBA� !�#�0BA�Fa� �!�B!� B!�@H!�0B# 1 A�����C�B!� B dA)!�""B��H��B!��0%B$B$�1B#Da�BÄ0���0�a A�D�FCA�" A�d� B!�B!�Db�DA 2A#���"�0� !�"B��D(��(A�b�A�D�E��A� BACD(B�DA�!�b�ADB!�#�L"�B!� !!�0�!�0�a�� #����@�A!F"�0�d�!Db !�dA�B#DB�R������B� A�d��(C" !a�!�c�Da�� AB�#�1�!2�!�0F(a2B"!�#��!��C��b�!���"� c "�����!Dc�1BA1B! 1Ba�a�"BF� �!3�A�DAD!� �F�! $ C�!�B"B !�B�!�C�" 1�a� �#�1�B 1�bDe�Bb� Bc�1� #����D ��!)d!H"�!B!#Q���!�)d!H"�Ie�@J $2�a�B%��B ���C�B!� B!�@B!a�RB)��1�(��0�!�0Fb2� �� A�! " 1De�0�a�q�0ÄA C �#�2Jg�0�0���!�B!�RH �H!%AD � "�0� D"�0JC��c�0� a���c�q� � $ 3Lb�0� !�B��H!�B#����J A2B b2BAB�@HBA� ��AH �! d�AH f�!�D!!D !C2��1F!�@F ��!B$� � # !�#��d�!�#��d�!�d�Db�!�B2Db 1D(a�JB�PBb!�e�H�!�D1�" !� C�A!C�1�D�!D!1B!��)c�!�!�B!�0F!�PDE� �A!�B�0�aA!!Q�cH1�L� A�#�A�B�A�$� �B�D!�`J$�D"�B(a"Bc�0�BD#�0�A��f !���3B0� BB� FAABA�!#�HB�B!�H��2F�H�� !�!��(��P�!"�B(!�A�(B�H!2B! QB#��A!H0!�1B�B!�B!�0Jb B$�Ba�0J A�Ba�B!�!H�AD ��`"� � $�Q� C���1�A� D !�0D!"�%�B%�J!�B c�1� ��� A�Ba�B�2����!D "2�c�Q���1�(� a��2�#����`�"�!�c�1� C�A�����C�B!�P ��0�B�0� !�@B!�F!� �C�2�B��$�!�# !Bb��B A���0B� aH��0�#�`"�0a 1 &! #�� !� B!�!�!�b� "�!�A�!����B� �B�!���1�B�1D$D B"!���� 1 !�0� C�@��@Bd�@�#�d�@�a"�(!�  A�����C�B!DA�!Jb�� !�0�a�F!�!d� �(!!B"� B��D$�D"��#�#�PDb� B!S !��(c�1�!�F!�B!B!D"�D"�@DB� H(#�@B��1H"� �"�2�A�PH!�D!�PBA� �c��a�#2� !B#H"�F��@B"�!H �3 )!BB!� �! B�QF�����D!��!�p�(��0�AQB#� !!� BAB#�F!1B"� !C"B!�@ D"���C�C !�"!�a�1�b��a�`�$�1�f�!�a�!���2D��BH$�� "H"B "1Bd F(!�PB)� H!�0D!��"��"�B�(��J $�F)$��a�!D��0� ���C��C 1D!�`Hc��#���FA�@D!� !��D!"B B�J!�F %B" Ba�0�a�0B($�RJ8��@�a�BB!��E�PLa a�0�"�1�C�A�c��b�!�c!� CADDAB!DE�� b�$! D�b!B"��A F��! c�!�c����0B�"B#����Pb�0J!#�B"�AB��0J ���!��0#�LC�F!��c� �E�D0� D�1�! !"�@C "�"�B� Da�PB#� �(!�J!1�c1� �!�" FC�0�%�0�D�1���1�(a�1�b�!�a�B�c�0�A�R��H!�BA�1B!� �aB�a1�A�p�cDC�0F��D "�� %�PF0�D"!B !!�%�!�b 2B��B!R�b�!D)b�A #�0F ��PB#�� "�1!a�0���PF �Bc"�DBc�2� ��R�!�Q!��A� D�2�� "��F!� �!� �#�@BABa!FDA���0�a !�D�0#�!�(A�Q�AdR G�A� C�@B��1D��1�d�1F��0F!�1�!�0D!�0�C1BaD"!B��DC1B��1�b�!�"��A� �B!�A�0�B1Bb�D� !�!�0�a�0�A�"�1�#c�Fa�DA��#�0�a�Fa�Fa�DA��#�0�a�FA��!� H!�0D!�!a�2�(e�F)#�RF b Bd�0HC��!�0� �!�" �"!!� B"��2�B�B #�AD�a� c�"�CQ�($!�C!�#�H0!�� !� �a�F"��!�D!�Bc���!DAB!� B!�@�!�0Ba�1Hd AF"��!C�0$�@F��@Fb1Fc �""Da�!�c�a�a�1�#�0 !��Ō�$!�$� D c1 A "Ba1HD�D� F � 2DA "BB D$�@F C�qDB�AB)d 2��A�d� �b#d� �b!� D�0��B!��#�0H!e�0�($�������B $�PB!�1�H!�F i�F#�BC���1c�$�@B 1�b�0�� 1�b�0b�0Fc�Bc�B��Ba�1�CHA�!�A!� ! !�"�a"�B BDa�D0#�B(E� �$"�(C�!�C!���!���DA�1�" 1D��1�e !�B�Ba��"� B'�B!� B#�0BA�F!�Ba��b�!�B($B�)e�1� A !B! �!��aB��1B!3F#�1 c�'�D"�"��2�b1F C�0�!" D�0B !��d�@D!D!�B0b!� FA  �� �D� �C�!��!�!C!b1�!�!�0�! d�($ �a�B$3H(c�F!BD�H„ �"�BFB�B�H!!���B$��#2�!�Lc2� a�1F!�@� a" "B!�A������(!�1�CFf�"BAa�B!�B%�2F��Q� c 2�b�A��(c�B!�Bd�P !�B� DC�@B!!Da�1FB�B�a�F #B" B!�PHaDCB��SB!BF��0Fc�1�bBD���F)a�Fa�!�0!E�BJ)ecF ��2 $�!Fc A�a� !�!�0�c2�)���!�Q��H#2�!" d�!F��@H"�� !�A �2�#�@B� A��A�Q�A�P�@!2H� B��d�1� d�F�  !�!�@D D�B!�AHA�� E�B������!�bJ��DA�!� !�B!�BA�!�#�A�a� !�C D&�B!1F DD ��� �2F Ð@D�d�2!$�����C�B! �$�P A")d��d�BC�Ba��"� B'�B!� B#�0BA�F!�Ba��"�0B ��0R���C�B!� B#�0BA�F!�!�!!�F!�F!B� b�0B!�2�$�0N ���C�B! BB#�$�� "�SF�2 C��(b B"�HaH$�D"�B!�HB�0�#2aH$1�C A���A� c�B$�� !F�� H!�0D!�!�0a� � "�Ba����1H!�1� �B$�1� "!�!�CD!�D�� �� !Q!!1!�@�!�B#�0�!�� b�F"��!�D!�B$�B!�0�#$B��Fa�Ba��a�!J8e�SF!�B!�@�"!DB�0�(!�QB��F!�B%�H#�@F���!"� D���"�!�F)a�B!�B!�B� �c�1�d� �a�@�BB��@D"�!��� �'�1�(�!�"��� �!1�A !��� c��B 1FC� AFc� �"!�#�Fc�B#�PD!��a 1!�1�c�a�F$ 1B!��H#2F! 3� !� �!�B0!�1Ba�B��F "��C�B��F "��CB���! "�"�B��P�!A�!� a! �D B�F��� AA��� D�B�2�B�Ad !DFA�B�@�B�1�B� �B!� � 1�!�)D�rB�H!!� B2H B�@����#B���(BHE!�a�"Jc�@H��H)#���BbDc� ��1DC����!"! !��$A�C�FA�B"� FA�!Db 1DA� �(!��B #�$�!F B!D a��A�� D!H$�A�a�P�&�!�(C��d�1�a1�#1�B��B �B��A�1�"B�BB�#��A�Bb�1�a D"���(%� ��$�A1DA�""B��!BP"�@B ��P �AB ��@� !!�# AH C 1B$� F" !F!�1FB�0�!�@H!1�a�0�A�FC�B(A��e�0���@B"�� A�@�d"�CA�8!�FC�!F B�0B���B!BaF� !�!�H!�1�B� !"B#�qD! "Ha!�#�F��@ !�@F$!�"AD ��b!��� ��� DA1� B�0�#�1)��PJ #� �!� Bb�@�!��C�QF!�2F&�`BAAB$�1DC�0Fd�1�C2�� AB���"F"� C�C�!�b��C�!�1B����0�"�0D�!$�!�8!�@H(�J%�P�C�P�#�!BB#FB F! AD"�!�B�0D��@DB !�0�#�Ƅ@� $�qL$�D"#B��B#�� 2!DB �A� !� ���0B ��Hd�c!� �A�f� �c2�� A�c�a��A� A�!� d1�1�Ĉ!F #� �b��0B"Pb�AB"��d !��0Db1�#�@���1�(c��Ō1�c�@�C rL � "�b�!�B"�c1�d�1�c�A�B�2�C�A�!!!��A�F"�B!� $�H! !f�B!�PD(C�B!$��e� J!����A�b !bBA� �!!�A2D���# !H��B! A�"Fc�!Bb�� !�B!�B#�0�!�� b�F"��!�D!�B$�B!�0�!��!�DA�N#�0BA�Fa� �!�B !��!�! a�@H!�Da�0 !�!�0H!�B���B��0!�1H$�D"!�D�$�!Hd!�b�! C�F"�0BB"��!�#�0��"B1!B� a !�D!B!��!�B(��P�B� 2B(�F!�0BA� !�#�0BA�Fa� �!�B!� B!�0�%�@ a�1B!��A�0�b� � "!F!����B� A� !�!�B�"�$"H#!H��BD�1� A�@� !� A���"B��0BG� H!�0D!�@B��A�"� H!B!�#�aA�C!D!�0BDrHA�PD ���E� H!�0D!�H�B(�B$�� !B!�1B#��!� Fa� �!��AB!�@B!�BC�B ��PBe�0D(C��"�!�C�!� !�!Bc�QF"B!��C�@D$� B!��A�0BH! �"� �(�"�(��`���D�� �B �B�1�$�0�D!BA�BA!b� )"�Be�0�%�0F1��0 !�1�&�B!�B!1�B�Ba��"� B'�B!� B#�0BA�F!�Ba�����!��#�F!�0�#��!��c�1�c�0J!D !��F��0�a�� ! 2Hc�!�0�#� Bc�B!�0D!�B"B���!�BA�B#� �#�0���1�c�!J ��@B��D!A�#�!�A F(C�A�D�ADB!D"!�e�Bf��(d�0Bc�0�AQ A� B(b�1� ��!FA��$�1F!" D�0B�B(B 19!!��@���  � A $�@�� B����eRL A�@B�� �B2�c!� C !�D�1��1�d�1�c�!���2DB�2�C !�c 1�0!��c! #�!�B"��!a�0�B!�0B�"�0F�0�8a!�!�0�a� �'��!�� C2�a� �a� �BD!2F���a�BaDĘ�1�C� !!H"�1�"�!�c �b aFc�3�a�@�!#�B�d2B��`���B"��$��!�D��0��B B��$� H!� ���D0��!��F("2JC�1�d 1F��a����!c�!�c�A���!�(B !�C !�c�1�c 1�(B���� a��"�0B!�BaA� ��@BA�!� ŒB!�Ba� Bb �d�!�B� �B1� B2E!C!�� A�d�aLA� FA�0�b�1� b1�c��a�1BcC�p� !� b�1)%�1�! 1�A�0�AD!�`�a�AJ!� B!B!�1B!�!�"BA�0R"���C��A�QD "�@�C 2FC��!�A !�C�!�b�2�C�1�C�"H(b�!H(�� �!"�CF!�0B)� H!�0D!��"�0B#Da��a�aBBc�F!��C B!�1B#��!� Fa� �!��AB!�@B!�BC�!�!� e rPb RBd�A�(�� � ��BɄBa�J!�B!�!B!��(�� D $� )��@D��! ��C Q "����AB!� B e�0F!�!B e�F!�e�B!��$�D!� �D!FC!D!�0�c2�"1"!� A�B!�0�b�@A!ABc�QB)ƄP $�a�C1Bg�2�(C1�( "�C2�� "�#�!��!���!D "1�(C�1Da�0cRHA�"�"a�1� c�F"!D#�B2�b�1�C�1�cA"�c�1�d2�$�1�c!D!��A2�c!�B��CAFC�@�B�a !D #� �D����1Bb� B(#�"!� BA�BA��$BA�CA�d1�(C 2�b�A�D 2 C1�bA�b�!�b�Ab� ���!FC� ���!�bQ�E�1���0�!1�b�B#� ���!F c!�d�Dc�A�A !�c2DB�1B�!�c"F�� A���A� �� H�� HAF"LBDA�1�aB$�Dca�#� BB!CB��0�ÄH��aHf1 $� ��0�$cH�bH�AB ��0 #��!�@D!�B "�0Bb�@ !�1�Dq#�1F��1�#��c 1�b 1�(c"�C��c��! 1� d�1d !� C !�c�@�C�Ba 4�c!D B3� �1a�0� C�� " !H��AH%�aH$�D"�B��� D� H!�a!��B�a�"�0Ba�0RA�Ba�0B#Da�F"��!��"��B��#�Ba�!�E�0HA�0�A��A�QBd�B(��B(!��D��a�� !�2 D� !�!� J)h "H �1 e�0� "� B!$AD$��"A� �1!$� $�B B1���!B� �D!FE�@�(B!�b � %!�(D !D!� !Ba�D"1�C�!�@�c�%"FD�DbADDAD"� �a!DD�0��2B)���b� �!�Qc�@J c�� Ab�0�a�1B!� aQ�$��(��A�c��$ 2 eRF #!!"�"��C1�0cAE�A�C�a�a 1b�0�%�BB"���@B# 1�AT���B!$!F��8B"�B�QD1�!��! !B!�D#!B)�0D!2FC�F!AB#1� #�P ���#1� A A!b�Ad�A�a�!� 2Ba�B�� '� H!�0Dd��A��8$"�a�!�!��a�`D0"�!B!� BA�!D!1� $C� �d�!D!�1�!�"�c�0H)�D��!���(a�Q� eF(#�� !�Ba�B!�B!� J�Q��" a�1� !� �!�BC�B�1�#�!�# AB&� H!�0D� B!Ba��A��b�F #B" B��Ba1�!!B!�!!�F$�0�”0�%���!�D!�AB�1F!B„0� !�@B„ �($ �(&�B!!�L$�0�#�P�a!c�B!�B"��!�0� ��� ��C �B�a!B"B!�� !�0�a�1�#�"�(��@H(#�2��Q�(��@D�3J(��A!B�b�CB�1B��B�#�!LbBC 2� # "�a�!� 2BE�%�H(!J(C� J%Q�(B�A��"�a� ! 3B"��!�DA�BC�B d�!H��AB�ABA�!B!�D!H��� �ABA�!B!� Ha�BC��!� H!�0D!�G�P �"J c��! !�!� )AB$�@F!1B$�PH E!�#�0�(a3�#�0�0!��c #�!�B#D!��@AA� p9��pF " !D��@H#� D!��!�B#B !�B!�B#�Bb !�c qF�� ���c�J%� !�"!D"!� ! BF$��A�� ��B0B��#�� ��F a��($1Fc�0B��0FB ��C�!D"D��!HCAHC�B� #�F�1LA�H��!�b�"� c�  !�2�A1�(E��A��(�Q� f�1 e���Bd�A� b�A���c�F!��!� B�!�A� F��� ! !�E� B"�P�"�0D�H!�0B!�0B!�A�!��"� �!� �$� D!�J%����D1HA�B!�b � B�A�A !FB!�A�@�B� �" "�0 BAH!!�A2B$�0H ��L$! ! �$�@F �D ��FC�"Hd�J(!�!)���!��#�F!�0�#��!��c�1�C2D��1Fc�0 !��A�#�8��#�b�1D �F��0Fc!� c2Fc�0�C�!FB1�8��qD1�#F D�!B��0!a B�B� � %� d"!�BBQH ��@F &�AHd��#�1A2���0�c��#�B�1D A�1�!�2� ��P�# 2 !2�!�! ��PH���# BD��B a�!B!�0Jd�0B��1Ja�B!�B!2H #�A�b��B�Q�a AB!�!�1� A�D(C�Ja� ���@�D�1Fa 1Fd��#�D $� BC2D B�BB2��!�"�R�d!�!!J$ !�$�&�@�A"!� D!�bJ# !F"�2� � �c�c�1�B�B"! B1� "!b� "�2�c��! �#!�a!! D���"AB� $��!�B!"��f�A�A� B� ��0� ���A�H"�pL"a�� FF� ADc�a�b!�B� D����1�DA�!��c�1Fc�0�c�F(#�� a����1�!�0F!�!���!��1�B A��1�B !!A B�C1�b�`B!�0"2�0"�A��b���a�&2�c�a� � #� "� �� ���1�cQ�b�A�#� F(#�@B8��b�!���!F"!�a�Hb�BJA��d�F(a� Ha�0F ! C�C31b A C���0�A�0�a �b A�1�A C�@�b A�$b�BA�C A�1�A ��!�!�0�a�1�C!d �"�"�0B #�0�$�2c ���!�A !�0�c�!!a�0BA�0B�!�d�AHC� �B�!�B�!�B1)CB�b��A�F"�B! �b�1F!"D c��0� b�C�G�"�!D�C�� R!� 2 d�A b !���A�B 1���!�# BFC1B "� Ja!DC1�C$�c 1�C��B� Bc�0�!�F #B" Ba�0�a�0 a�1B# 1!!2B!� )d�F�"�!�!D ��D0�� � cB(��� $ B! BB�Q�C1B�AH BB!� %�H(��9D2B b2BA�1B#�!F B��a B�b!��!�!� 1Bd� �B� #��d"FC"��B!�B ��PBe�0D(C��"�!�C��c�@HA�F"�1�(a�A!B�� a 1�("J!B�PB)a�"�$�1�"A�t�B�1DC��i�"�"�"�HLjaDdD!���A�d1Bd��0C1�0AQFd�1J0!�2� !� !"DB�0D! �$� H!b �b����1J&�B#�!�!�B ��1� !�@�c��c�0�$�QB0!��a 1F!�JD�1 !2�#�0JA�Ba�B!�B�#� �"�2D#�!aF !�Qa�F���C�BC B(�2N(e��!�Q!A�H AR��@�#�  d�@!�� B� #�A�d�AFa�1! 2�!!�� �b�a�a�HA��a2�c�1� B� F c�1�d 1�!#A��F$�@D$B!�B C�B!��a�B!�F$�D"��a�aHc��a�!�a�A�L"�@�"� FBA�$�B!�B#�!e�!e�Q� �2�C�1�d�1�(��1�"�BbA�A� DBQB"��A���� De� D��PB�H�Q�J" #B0a�`�(��B%�0�$�QJ #�� !�Bh�1J!�F!��#��A� �!!b!D#AD��@DA�CB a1� !� F!� �A�!�c�1�a�@�#��b� J�1�!1�c�0�"�"�a #�0B�0�B Q�1b�!DC�!%�"H��1�c�`Dd��A2�A�1� A�@�"�!�b�!�C1�c1�b1Lc1�c�0DcA���A�b�0�cBbB��1���!�!� !!B!��B���" ��" �RD!A�B�($RH�A )�� H!E)�!!�� b�0 b� � B�A�1�d1b�A�A�1�d1� C�1��1!�FC1�b�A���2)��"F(b�0� c� Dba�D� JB�0L� �a"� ES�(f��!C�0D!!�0�˜0Đ D #�("2�a�1�c�BH" "�(��!H!RB��A� ��@�d�!F ��1�c A��1�"�A��� �� ! "1�A!� #!D��0�" AD! 1B�1BC�0�!�!a1� #�BH�R�B� �C�!�c���1�B�!B!�!�"!�!� F A�"BDA ��@�b� C� � !A� & B!���a"� g�B!� �B�!D"#�"�� ��! Aa�B�!�1�!����2�c1B��1�A�BA�!�(b��b 1Fa#�E�1BC�0Ha�B!�A�BA"D� � ��" B��!�DBBAB!�1B#�� !� �a�F"��!�D!�B$�B!�0�#�Bc�F #B" B!�0F#�F#�0�0$�AJ!!�1�C�Ba��"� B'�B!� B#�0BA�F!�Ba��� 1�D"FAB#�#1�C !� c�C�#!�(d�0�b�!Dc�a� #�b�0�#��D 2�C�1BC�0� $!Bc�Fc !���B� 1#�!� �# "F#�BA� !�C 1� c�P� !�A"�2�c�A�� "� D!�b !�D!�a 1 d�A�a�1B��� B�A���1�B 2�C 2�" DC!�B�DC1� B�!� A�C1�a�0�A "DaB!�1B#��!� Fa� �!��AB!�@B!�BC�1B!�AF!�%�AFa!� BAB!�B!H!%�0���0B$�F!��$ �!�$BHD��B�!� !��B !� ��@B!��� $�B&B!��0���"���Q A�1!�0� #��!� B!�BC�B G�Ba��"� H!�0D!��"�0B#Da� !�F! B"� �B��(#� �d�"�0F"��B1BA�C��C�0�e�!�#! #2�B�@�C�@�C�QB!� B!�1�!�4�C�D!�HA�F " FbQ� ���d� �!�FA�0�!�1DE�0Fc�1�#1���1��2F�p�� 1�� # �g�F9$�Ne�h�  !�PB� 2a2�dB h�PDA� B� D���!�A�  ! 2�aB��2� a3Bˆ�Č!�a 1�"�a�BA�" B�@ �B�D�� !�0HD�RFA�BH!B1�BB"�1d �c C�C#�cB� c�!"D�a�c ��1 C����AF!�!�d"�"��B!�" !H c B C 1�"!�A�B DC�A B !FB� �� '�d�J!�� " �B� A!N8�� D E1 ! R� !� Bb�"B($��&3F �1�c1B!�QBc����AFa� !�!� B��2 �!�(D SD!� D��@B��"H�F��0Ha�0H!1Fb !�d1!�!�A��A� � d!D A�����C�B!�0�Cq�(��"B $B�D $� �A�1D%2B!�R�%�0B!�B!�$�� c1�a!�(e�0� !�$�P #�AH$�0B$���1�b 2�#1!�!�A��A� � d!D!��!� B"�p�!��"�0B#Da� !�F! Lc3H*� 2R0� %Db�0�!��j�0�j�D""�A�  B�Ba�@�!�8d�PHc� �B!�C�AD#� �"!�b "��1��BF)d "�%�J#�P� !� �a�F"��!�D!�B#�D#� !�Fa�!F!� F��D "�  �B �B !�B ���B�BA�� A� "�@D($�0H !��C�C�1���"� �!�1Db �#�!�C#�b� �a��!BB�Q�!��b�2�e�@�C�"�dBA1�B1B 1��!�B�!FB 1!C�1� c�!� B B�B 2B 1BA� B�!�F!�NMA� "bB(d�aD!�B$� DB� �h"�(!�!!�1Jb���E�0b AB� FC 1��"B �"!d1�"R�� !FAB�A"�A�0�( �$�1Dg2B"��B�1� #�1�1�c�F)��"�Ha�!�"2B$�@�!�B"� � �� D" �"�!�$�A� b�0H!�F #�!�a�F!a�# Fc�Q�a�0F%�QH��PH!QHA"JB A�"�!F!! B���b�QHC�1�($�!�(bF " !�a�QHC�Ba��"� B'�B!� B#�0BA�F!�Ba��a�@��1JD�!�!�0F�!BB��A !D�� B$�0c 2B(��A�c��a� B!Da�!�A�0�A�1H�1�$��bA�1��"J�"�B�FC!�b"� "B("BDD")" R�E�Bc C� B1Hd��c�A���P !b� �B"� D�"#DBB�C2D"��#%!�AC� �� � A1�c�D�0H��A�b 2�A!!A!�f�T��0Bc� � aJ(��0�C�!�A!�#A �� H�AD$�PJAd� DR� ��B A�@H !��(B��CJ�"BA�0�a�`DA�B�B�B�B A B���QB(D�P�C��#�1D!�"�0F"�@H"�!Fc�F!� J���a�Bb�1�#!� #�! c�!B �� BD�!Hc�F B"�$�AB � B�(D 1Db�0DA�!�DB�"�("!�!!�"� F!���!a�0B!�!�'�%��bF#!!�b��2�C�!�! 1D%�Fa�B!� B!B��c�B!�BB!BF a��A�BD��8"ABA�!B!Be "�!AB���aF�DB!B%��B$2B #�0� C�B$3H!#AJb1�cRH�C�d�!�F!��B���C�B!� B#�0BA�F!�Ba��!�Ba�#!FF��!�1�a�!1�a�1D#� !�0D%�Ba�!L#�0�C�0�ABB �FDA�! c�!�B"DA� �a�!��!a�0B!�D��@���B�Hd!2�d!�e�cB�!AAA"�C�Ha�1Fcq�"!�#�aHb��B b!�(" 1! 1DD BE��(E�"� #�2�#�!�!�0�a! b!FE�F #�B �!BC�B!�!F��BJ!�D!�0���R !��#�P�"�1Bb��Hc�F#Ba�0J#�$1� aQF!c�!�DQ� #!d1FB !�c��b� B��0�e�1�e�1�B A�e "�A�!C� BA�B "�BH!�#�E !B#��b!�!�FA�� $!DC�QBB�J)!C�!1BcB$�D"�B��Bf!Fa�0��r���1�D� $�1�b !D��1�!�1�#3d� �c�0�#��! 1�b�0D c1�#A�e��� F ""�!d�PN(��0� !�0B &� d QC�@� C� C2!��p ABH#A��q� C�H�"�0DA�1a!�a��D�Ba��� B#!"�F��AD(b� ��A���B�(��" A�"HAB�!�2"�"��� Jb�D$�D"�B!�F��#D!E�P �BD $�@B a B��0BA�F"�B!�!����1HA�BA�Ba�@H#�BaFA��"�DAABA�!B!�B#�PFa� �!��AB$����H!�B!�B#�0�!�� b�F"��!�D!�B$�B!�0�!��!�DA�N#�0BA�Fa� �!�B !��!�!D!�AB'�B��0B �BH� �a!B��a� !�D#1B"B" B��AB!Ba�B�0� $�A�D�0B !��H�ABA�!B!�F!�F"F)%�H#�RH� �a�!Lb�)���1!S ��A�A��C�1�!�Q�&�`Bf�!Jb� A�0B#�!�!�J �� )c�D b��(A��(" �a �D��c��"�1�#� !��0!D "�"�A� ��RF�"� b�C Q� d !�B�0� ��!BB�@�c1�#�DC!�E�"�B� DB�D($!� # !� %!DC2F��a 1B!Q C��D ��1� !� �!��!BBa�a�Bf��� AD b2�B�0�a�D�@B�� a��#�B��A� È�#�0!"�0BD"�#"HB�1Bb����`Fa� &��B$�D"��AB!��"�0Ba s�b!� �!H#�D#� #��!�0���H!B" Fa� �!��AB!�0�9A 1�B�A�$��"��$�B#� Bb�D$�D"��!�D!�� D�F��#� � "�Bc�F!B8A��AB!��"�0B��B#��8�"�!�!�Bb RBd�A�(��F"A�B�0�#�!�B�1c� �$��(dQFB�0c��A�B#�1��1Hd%2� a���c,B�f "�B�!�c�1�"D���!k�1�C�0BÌ�0#2�c����B(B B(��!�!�1H"�QH C����0�C�R�e��e��E�1D!�PBÔ!J(d�2���B��BB��!���"����"A� b�  B�R�B�!�"�1�d�A�"�!D"�!�A !D c1�(�!��!H �1��!B�  ���1BA�FA!E 1CB� a1L DBDAB"�0B0„1B "!�FB��! D�aB&�!� B�1�(cBJC�!Hb"�0A�1�� Q�%�C� �"D��`�0$�@���0 "�� !a4��!H#�1�"� B "B � �B�B!�!B� BC�!B��A� #�!�D�1D� !D#��B�D! �&D0!�C� �B�` BFB�!Da� DB��B!�B!Hb� ��!�BLDA�� B��"�a�!�B�@�a2�% A�B A d���0H(B���@D $�Hb !a�@B!!D a!�B A� C A��DA�� "� ! B�c� �cBb�D!�Fb�#�0�b!���1B!2�!"BbH"�@)"�� "R�c F!�B#�0�!�� b�F"��!�D!�B$�B!�0�#�B!� ����C�B!� B#�0BA�F!�F!�F a�B ��0�!�FA� Fb�0B !��H�ABA�!B!�F!�F ��0J)��@�a�BBd��C��� HD� �� !B(E� �!��E� DA!BA2�A�0�a�1 "� B��PBC1�d� �"�c!�a !Bb� �a !�c�FC�"�1�c�0B���! qHD� !cB!�1�a�0F!��a�0J$�HC�! !�� �"H!��A��B!��@H�B!� 2� � !� aA� DB� AH�Q)��@B"�$"��Q� �A e "D(��a�a �� 2�(��1Dc�A�c S�B�1�c�1�c�Q�c 2�A��a�1�A"� "!�!� B�BC�A�$�0B! "�!�0B a"�!� �!�HA��A�Ba!�B!�B!FA1�B 2�(A�1Hb1�f1�#!F!�1�dFA��a J!��!!!A�1 !�!F#�1B(A�" B�@ �B�$A�"�0�c�A�ABDQ "��A�B� � E!B#!!1�B�FB�@BB� �#�2�A!DB�!$��a� �a ADa� �C!� A!FC1!bAD B!��!!�2�� 1H � 1� � F!��e�PF!�BD� e Q�"�2� a�0�c1�0A�1F(d � B�(!�"�a��AD#�!�"�!F!2� C2�(B�� ���"�a� HB��#B !�BcBc�0� � A�"!�"�1"�1�(��BA�d"D #2�$�BG�0�a�A�c�0�#�A�2�c 1�"� c� � a���B(A��aS� �b1BcB�!FA BDA�@$"D �Q� B 1 �A�B�BB�A�#� �BC��"DA��&!B"� �B��b1�B"�b��B� B�BDD C !B!�@�AB�"�0F �� �B4�b� F"�!�#!!�0�� NB"�C�A�1� c��aBD1B"�!Fc�0� !��!�0�B�WBc�0B B�FD1D(A�2�d� �E� ��B(!� "�@Hd�AH��@J("�AB!� �# "���0� #�4BH! � A�1�B�0"1�$A����D�!�b�"�B1�c��b�Da��!!�B� �(A9��A���1� !�B�%�0B!�B!�1�a2BC�BB�!ABC�0�c!�D�Bd"B !�E$��A�B Q�(CA!�AB!�"!�!1�"!�A2�B�D! B�BD��!�0B�3�0b"�F�Bb��#BBA�0DaAHE� B�ABA�!B!��!�B��D�1�0A� �C#� C�A�b��#�2HC�a�!BC��D�@D�A D$"��!!D�Ad�]�̐� @� ���8 4f7 itraismeomfaioubopctcanealmirtacgenticanunbailidndbldbatsceplathdiojfnescislbuuepiamumadngupkiemhobrpeigswruavuispulviwaonsohesiveloectipodacrexmokessliserorifibotrpltatostlepaorentedemacoarrechurerprincldeforgurlconresstacljenvapprefkeimapstrrecmaiingdevsrcquetimgitulttypcodfiglogsetnamentdocsitlinintpreorifixputreawebexcordderterwwwtexchamarwarensspestemonvieargjartesthttpleindatacorefilepathservjavaringrepoourconyxhtmlusertoolroutlistportevalutilsigntentroottionwrapponslectheadloadbodieclipcreattranssourcerrorcolorsbuilvalidexteninputselecclojurlicensdependpluginreleasrequirtargetpprintcomponmastersswordprojectversiontemplathandlerplatforelementsnapshotdescriptctsdreolipuamnfhbgkvwjxyqz����^⫁^K[���X��?ۊ^Y�_��D�Q� %��A�ޒ�Q'��I�A������������A���X������U����f�H��TN�K�H��TN�Q'�uY���E�z��hz�e!^�e!^˧��[R�� ����E�z��hWܐ����R/�n��ԟuY��ԟ�f�?��j{f2N��-E�f[-E�f�C���C��|�D���(?D���(?|�+ + |���|�f�C��|�fD���(?|�f+ |�f�\�d[�f�0UfiU�\�苏��g���/ܬ�g��� ����g��gɪ�V� g�ݑ�h��Kۼ���� ^�[�z��h}��]�(�yG2N���� ^�[�f�Q'�uY�j��j��M���gȞh��d�K��lR�����z��h�lR��\I��ԟlR��fҀ _�D����-b�����T��ܒܒ܀��f��-b��܀����GD���O���4u���ޒ�O����7?�5����e�J�O��ޒ��7?�5����HL`�����X��R/���O���W�`��nZV���*���kZn��n�t�f�n���_b�� �n��nf�`#���ܒ�kZnfc�i=�Y�f�\F�ob��Q'\F�de�����Q'\F�de���̡B�+�hkZ�(hkZkZkZ����ob����obobob� ���U�O+އ ���U�O+އ �k+އ �k+�kZk+�kZk+�+��(L�V�Q���T�(dA �0U�0U�(f���������f �J�fi~ �J�����X\�j�������� 8`Մ��(��f��k��k���nY�ri=����k��k��p��f�DUob����� 8`ob����(��] ���vc�O⇉`X�Y*w���QI�6<��z��a� �w}���C6���g��gɪ��g�W`��hK�Y��=��W`�QI�6<��z��h���a��b��Q��QI�6�f�^.U���]�*�_H���]�*�_H�^�����]�*�_H�j��Y}�Z��O�%a����ޠ�-�DU�-�f�j�j����DUf�ob�]�D�aob�������-�������@xN4bxN��@xN4b�@xNxN5��@xNxN5�f�xNj{�@j{��b��@����j�j{4b5��@xN4bxN�c��f����xN[�[����pTr�pZ�}���X\�pc����p��Zr�p�prupru�dk��p �pLF��\If�pL�a�����Zrob�F��T&� �pF��T&� �T��� �d��w�e�T��� �d��w�e�T���e�f�w ߢ � Ue�\Ic����r�)��\IO�w ߢG�w �e�f���i`̢��T���e��uY�Q'c��� mc��� c�O�n���h�զ�k <��h�b�0��uYm�M�0��m�M�m�M��ӟ �m�M�v�⦦+������C��]�D�a��g�>M��n��h�h�0Yh����h�f�y#S����fs�V6�j{fs�L��Q��j{fs�y#S��� �]�R���fs����X�DU�����A�fs���M-����� �]�R��I�J��V��fs�|����R/��-���b ���M�t�f�e�J��)R�b�e��g�=��g��g�r�)W��W��d��UX�UX��W`g�e�����ӟ �&ޣ����j��j�TD㣿��f�P^���� ���P^�f"C�"C�P^��J��/��P^�P^�P^�c"C�P^�p�9�P^�����be�J�� ��_b���B�P^����f7I�"P^��7Z� �/��P^�f�"C�rhL ��\��\�UX����\�b0U0U>>��\�f�U����oT�T������\��\�r��ޭ�\�����\�f� �UX�Lm ��\�f��]�D�a��]�D�aob�=� ��V��ob�]�D�amob�m�M�UX�UX�UX��\�?�K��UX��\�?�K�j{j{�j{Q'(,e�&�T�L�Y�(,A �0U�(,f�j{j{�܀j{j{�f�������f_�i=��_��n�kK@K@�K@ob���������ۡl�Yob�@�d�L�ob�J�d�܀ob�d�ob������ob\F�����ۡl\F��n��������$$�e ���}B]癍��� ���vc�O����I���I�W`g �C �C����l���I`#���l���I���I���I�W`g���������l�B�驩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fҪW�ݢW� W���NZ]��EZLr���Q sTNDU�W�K�R�cb��NZ�ޢSI� �W�LߪW�Lߪ_�a�ruW��� �W�Lߪf�W��ruW�ݣ�8�� ��W_O⣢�W�ݣW���K�j�r����W��W�ݡW�L�d$�W���NZf�i�i��d[���SW���J��W��qr�8Kܪi�r�ru�����SW�ݢ%a�r����W�ݢf���篋�ob��ru��������ruW��ob�����d$�W��qob�>�2�W�L�d$�̪W�L�d$��t�2�?UA �Z�c^� �� ��]�v�A䠺��/�d7ddUP��r��c���-fdkZ2�?U��r�)���6�c���S���[P���[�-����kZUV�����r�)p2�?Up��V�t�f������2W��p2�?Uc��iUfc�i=�Y��⺠��P�77��P���UX���P��b��P�UkZ��P�V�� �����<�fdob������P�\F�̡��P��|�d�5VfO���|�W_j���"j����J��j���|�W_� P�P�|�W_�J��|�W_p���p��i���[j���pW_���|�W_O���pO���DU|�d�f��vX|�d�[e^|�W_�.."�O���|����|���[W_�p���fP�P�l�����:�Xl���������LGB��|�O���W_O���d�|�d���X��l������y�Y�d�y�kd�i � �M�i��X\��� �M�Y0a� �-E�M� �"_���y�Y�y�d�y�Y�d�y�ky�d�y�kd��<�y��]��_H�y�d�Y�y�Y0ar�篣�ܱy�Y�ky�Y0ar�篣�ܱy�k0a>�90a=2�:D��BܣY0a ���py��f�y�\�`y��<�y��f豱�c��#=ߠ:��Y0a�c��#=ߠ:��nZV���*���kZn��n�t�f�n��&�rR��bn� nr� ��_b�� �n��nfϓ � r�R��br�8�� R��bp_b�� ߚ�f�1'�X� P�R��bkZnfc�i=�Y�f�\F�ob��Q'\F�de�����Q'\F�de���̡B�+����d��A �0U�d������A �0U���dmP+��di��df�d������A �0U�A �0U�df�L�M-C�O�7�H[�kZn��X���df���dmP+��dP^�������f�\�`q��d��d\�`O�\�`��dP+��df�g�I�W ���P^ޞ��g�I�W �0UA �������A �0U�A ���q��df��>�2���P^�H[�H[���P^�mm��P^��d����b�ob\F���P^�kZn��X�obH[�\F���P^�\F����������P^��b5�ܤb L5�]�R��5�jS5� �1#����d�X�r�)s�(���]�R��L�]�WN=��G2N5�1#���9�5�٠dr� t��L��L� ����M���B�O�����L��L�k������b��s�(�t����|�t�5�1#�������|��L���]�WN=����]�WN=���|� �������L��L��j{y�Q��_�a�j{M�y�Q��_�a�����#�j{����#�M�����#ݛnKj{""O]9��"�W��M�"����#������#ݛ�W�ݛW�ݛ�p��"�"��""��Q��_�a�_�a�;Q��_�a�"����#�_Q�U_�a�*�""����#��1���M�b�WJ;�*�GQ�1���M�bܛ*�SI��j{^�N;1���M�b�;f�jܛ���M䛛���q��W��f�1���M�b�M�$�e_Q�$�e�_�uiQ�� �iQ��fc>����]�e�J�� ��M�e�J�� ��_@��DI���_����iQ��e�J������_�V+e�J���� ��_b���B�_�uiQ��f7��>� �>��f�M-�X�e�J�� ����>_����U��>_����U����>_������e�c���<�,iQ���X�e�J������M-�X�e�J�� ��� ��>_���kZ��_b���B���>�f7K�K�F`b�K��F`b�������Q'\F�de����f7\F�ob�_�F`b��`S����܊c�K�B�e�K�B�e �� ��K�B�e���NZS��K�B�e���N�����ۡd�B�K�B�e�K�B�e ���N�����ۡʩ ��K�B�e���NZS��K�B�e_RK�B�eHNS����܊K�B�e�K�B�eQ'_RK�B�e�7��7ޱ�����ۡ ��n ��K�B�e���NZS��K�B�e������ۡ��K�B�e�K�B�eQ'_RK�B�e �⋏����n ��K�B�e����S��K�B�eK�B�e&�f��`�`K�B�e ��fL�c��@j{��Q��V6q �J��q��L�K�B�e�@�`f�i=�L�[&�0��K�B�e�nS��OobRkC۩L�ob����ۡʩ&��b%���ob����ۡ��K�B�e�)RK�B�en�k��`B��eゞ.�e�D�� ����.�D���XI�h�k�� ����k��p"k��`B� ����i���h_xU������f� �x'Li�y�?��D��?��D����D�V�B�T��XI� ����.܇��� � ��IA�.,x�x'Qy5��6��M�#=�?��D��D�� ����.�f<�?��D���H�D��.���A,eゞ.�f�e�?��D��_2��KD��.�f<�Qy5��6��M�#=�?��D��f<���� ` ��X�+�j݀cbCL�aL�a��X���� `f<�y��IA�.,x���D�V�B�T�i�a߱��e�eゞ.�g���� ��.�g�篞eゞ.�g̞.���l���Z[}��L���Z}B���*��^���Zru��^���Z�L[}[}f���ZY}��L���Zh���Y}��Lh�����Z}B�h����ݠY}��*�^���Zru��L^���Z�Y}Y}f�L�d^�}B]��W`g��}B}B�&� ��X\�>�LY}��Zrui@��\I� �L}B�&� ��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`����������������_�]��N���Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�������]� ����&��˟uYӓ,[R��S���]� �����&��˟uYӓ,]� ��Jb���S�����˲mW�m���ge!^�h˧����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ��ٝ$f�Ο�-EܟӀ��e��N/詩��g�1`z���z�z����vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf�Ο�-EܟӀ��e��N/� ��橩��g�1`z���z�z����vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf�� ��d^����vc�O�Q��E�j���Q��E�j���Q��E�j� ��J~�>��������]� ����&��˟uYӓ,[R��S���]� �����&��˟uYӓ,]� ��Jb���S���e!^�e!^˧��[R���v��d^���l��c�:���c�:����#F����g��g� ��Q��E�z��hn��v�A�Q���Q��E�f��݃k^ޕ�e��aq�t��K�j�G)Rq�Q'c���C�� G�� G��� � � �)��#W�y&��K�j�G)R ���܊�t��K�j�G)R��܊]�(�wG)Rw��&�l���#F����g��g�l�ޟ�j�G)R�j�wG)Rw��vc�O�i�b�v�A�w��� ��P����gɪ�V� g�ݑ�h��Kۼ�ȋ �2��#F���� � �����7#ۂf�"UU��狏] ��^O"U��狏] ����������bZ���f���������Tf����_Rrc�����c��f�v�MYދ�] ����T&�v ��~�>��bnK�.��vk5�kc���MY�v�A�f�v����] ����T2߄��X�Y�����dr� ���A�5�fd��+�WJ����5�5�kc����+�f��MY�v�A�5��MY��X��+�5��+ދ�] �c��f����Tc��[e^rru�U�Vob�e?oj�e�^ob_R�#W۬�ob_R��v��] ��������s< dP� 8`��t⤇J��U�VU�V�܋ ��k��i ����#�2��d���T�2ߒ�U�VU�V�� ���iS ���a_22�J�����`���`s< t��t� < < ������i������d��� ����d�������iS ���a_iS ���a_���`���`�t��t� < < ������V��T�p���f����k��U�VU�Vi �7��k�� � �7��k�������̚�V��f��ob����k��\F�̚�i �7��k���d$�eB�t��vا��i�g=����J��=���˧��i�g=����J��=��䧄����e����N@��e���g�e����N@��e���g�e����e���gF�W�V�e���0�gW�V�e���0�g}B]�GQ��W`�4�hlSl�������g��NZ����$�eB�fҙ��Wߙ���XBA�adn��XBA�aզ��XBA�at�Q'[�`B��* ���v/�]�]��W`g,]癓d d �d d i~l�z�lLJ���) A� ��V�����) A���S`#���������������g�i�<��`NU>�te!^g��^e!���-]�D�aiQ������V^茄���XBA�af��������$$�e ���}B]癍��� ���vc�O����I���I�W`g �C �C����l���I`#���l���I���I���I�W`g���������l���橩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�Q'�7��Q'����#���CO��COojꝟ]�\��COoj�ojꝟ��I��F^��l۝l���`B��g�vc�O�l�wlw����-� b�R �����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����\��f��l�e!^��v��规����规�����k��Qlتl������W`g�����W`g�(�V����CH�g����C���CH�g���C���CH�g]���iQ����g��gɦ������z��hK1^�nKی��ئf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Ο�-EܟӀ�� ��橩��g ���Q����g�l�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا��`#�������C�����g�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gf�5��Y`��Y`���� ���w�Vܦw+������C�wv��w�����ࢣ���Ǧz��a�}����܊}��Vܦ+������C�v�⦡�}��ʤVܦ�+������C��v�⦦���� ��g���h� �ȦǦz��hK1^�nKی�٦f����b�vm\����mm�M��vc�O�\����t�L��e�J������`���݌�����gm�M��(]�D�aT?�]�D�ay1%�����^��y1S�=y1ߦߦv�⦦�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����\����f�p=dk�dk��S��j���r�S���S��f���]�\��#dk��X\܋�]�\��#dk��X\ܝf���]�\��#dk�r�X\܋�]�\��#�X\܃r�f��S��dk�O�S��dk�O�S��j����S��nK�S����S��f��S���S��j����S��nK�S���S���f�S��j���uYS��j���f�X\ܟuY�X\�f�r�S��uY�r�S��f�r�X\ܟuY�r�X\�f�ǟuY��vO&�]�s����t�t�]�(�v&�l��vvO&�]�s����t�t�]�(�v&�l��v������t���L�v&�l���O����vOV�"t�|�������t�]�s�f�������uYob���i~����Z�)R�� � �&��b�&��b� �&��b���T�Z�)R�� � � ��&��b� �&��b�f�&頓� �怠�@ Xd[�q��L�� �� �iޠœ� �&�ܓ� ⠠�� �� �,�� ���L�Z�)R�� �i�]ܓ� � �&��b�&�Z�)R�� � �&��b�f�Z�)R?���� � ��&��Z�)R?���� � �&��b�f�"�"����#�ir��l�63��.�ܫ �"�"����#�ir� �f�ir� X�.S� �i���d������ �i���d����ir� Xi���� �f��� ጱ�� ��mm$�ec�:���0���A �0U�a�_ sܧ���e���X���dz��h��X�0��A �0U��X�h��X &ކ���*&�&�Q'����#�&�&�Q��h��&�r�=����0��&�k&�&�dL������B�r�=���* $�e�=���* �X�0��&�k �-�z��XI�$�e4��� ����i�<��=���*̙��$�e&�&�H[�$�e̱�&��I$�ez���XI�$�e���5��<0��_H��0��[�]�(�e�0��3�X� sTN��܊[V�e��5�Q' ���܊[V�[�]�(���T� �f�{c�:���J����܊U�V�>���K�j� sTN��܊��Jj�w��J���J�)�ʌM��t�y�l��DU�j���ۥ�g]�D�a��-+������C����gɪ�V� g�ݑ�h��Kۼ��ӟ �lM��M��z��hM�댄2�=���M��f��X�b��X��A��X��A�"F�[��F���F�[�"F�[�k��j�j�j���X���XS��a�f�{dhdQ'<�n����NYބ��nf�L�S�������nf�Lob�LjܭS��ob�S��jܭ��ob���jܭ�ob���j���Xob����j��X��A��X��A�F�[�F�[��NY��/b��NY��NY��/b����ob�]�D�a��]�D�aj�j���̡j�蠀��Q�d�����W�|�H[�|ࠀp��|�H[������H[�Q�df�ޠ����W�|�H[�|ࠀ|�H[����H[�Q�df��H[����B��NZ��|�H[�H[�Q�dH[����B܋ޠ�|�H[�qLN �N�Z�H[�Q�d������H[�|�|�H[���܊Ţ��H[�Q�d�H[�Q�df�|�H[⠀|�H[�"Q�dH[⠀��H[�W�V^�W�H[�|�|�pqH[�_�a蠀]���c���۠�����������|�H[⠀H[�Q�dH[�Q�df�{����B��NZ���B܋�obLN � �������Q�d����� ���H[�Q�d� ����P�� �����W�������V� g�ݑ���Kۼ���P�� �����z��h��P�� �����z��hP�ܝ�5�����P�� ������D��S���P�����f�ob�P�� �����obP��� �������P��� ����ߝ��c�:��P��c�:����g�w�j�w��m����S������S��r�S��c����b�nKb��ҕnK��ҹVJ�bnK�VJ�b�ҤbnK�b�S�� L��S��Ҧ�ҟ�^�c����b���VJ�b�b�S��b���VJ�b�b��nK�L�\���f�S��]�q�^�f�b�b���uY����uY�VJ�b�VJ�b��uY�b�b��uY�S��uY��uY��ܢ�/nS��[�ܢ�������Q��bK�ҴrT �](����K�Ҵ��� �S��[�GB��[��\IS��[�+����[���L��S��[䀣������S��[�Ң��S��[䀢�Ҵ�����܀L ��Y$#S��S��[��K��dk�[�f�Ӏ@�݀^C �M-��M-���T��M-�\If��ܢ�/n�ܬ�W`g�Y$#S���^C \@��W`g�H[�\@��W`g�篢��iQ��������[�uY�Q'v ���]�(�+��ylQ']�J]���fS��� ߤQ'v ���]�(�yQ'q�l5�n���%�+_����;�`]��5�fS���ob�P��W��MobP�܏�Y_�ob_�P��+�b�loblP��+�b����[H���D��S��v ���� ���lg�#F����g�n؞P��W��MP�܏�Y_�P��+�b�lP��+�b�-P���j���j�w��m�P��m�d��ߪd[���܊ �j{Yrc��� �j{������?�9� �j{r8� �j{r ߽��Y�[K �j{y�k��j{������NZ������Y^?�95�?�9j{��j{���� �j{A �EZyy�k��Y^?�95�f� ߢ��� � � ߽f�?�9?�9��l����l����l��������A �EZyy���Eg�篡��l��P�� �����W�������V� g�ݑ���Kۼ���P�� �����z��h��P�� �����z��hP�ܝ�5�����P�� ������D��S���f�ob�P�� �����̝�e? ����ߝ�Vܥ��JO��g��o�o�g���c�:��P��c�:����g�w��m�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY��ԟʩf����K�j���c�Z �e���P�b0�D���]���'�E�]�� ��]����<�]��c#��]��Hl��b�� l���� l��� l����<���<����5�5���?[ �~�>��c�:���#F����gc�:����g�Q'�� s�]�(�������h�z���P�he���P�����P�f���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�fҗۣ��l���]�D�a>\c\��X\� ��V����g �������ۡ�g��g��l��C6�H����vQ'o����^�A���ܕ�o�c�O��o�Q�]�(�����<���g�W`��h�=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f��`A,EZ�`����`��Li��*�by#S��_� �EZA,f��y �KLi� V^� V^� ��� V^�E�0a V^���T���_� V^����y���2��X���-����-_bfW�����]�]癚������̚�������_xU�Ս� �`���K�j�kC�f�{�(�J��f�{���(nf�����ޭ��Z�䯋��(��NZ�(��NZ�����(�ޯ�d[����j��(f���2Ne�ob�(�2Ne�(��(�j�j����f�{�(f�{�obf�{ ��V���ob]b$<]�D�a��]�D�aob�]�D�a̭2Ne�_xU�Ս� �`��f�{�(f�{���(nf�����ޭ��Z�䯋��(��NZ�(��NZ�����(�ޯ�X�ޭ�(f���2Ne�ob�(�2Ne�(��(�j�j����f�{�(f�{�obf�{ ��V���ob]b$<]�D�a��]�D�aob�]�D�a̭2Ne� ,�<쫁i諁����` J���+ �WJW��0 �<� ,�� ,�<쫁WJW��0 �<� ,�� ,�<쫁i諽i�M������i���۫�f�h��mp�� �� �� ���5\�L;mi~5\�L;kH�"��aHܡH�mobi~5\�L;���ۥ�ob�� �ܡ ���*d�ob�5\�L;̡�5\�L;�������� �I��q U������d�rV� �*���M�������������V� �*���M����QnbIÛ*������f����� ����""���pI�����q������QnbIÛ*��� ����f�V6qqR*�V6;��r� a �R�]�H O� �;��qL�_�a�|� �q� �q���6��#�i@�di?U��V6qqR*� ��fqR*�̱QnbI�-2�����Z^��r�)��\۲a1����W���nK�|�i��bhDU�c�����C��@P�L[&��y1�TI�P���Z�\�F��T�\�d���P�d����C��@L[&��y1P�h�0���@hd��P���C��@Lf���Z^��r�)��\۲a1����W���nK�|�i��bh�0��P܊�DUT��c�����C�P�L[&��y1�TI�P���Z�\�F��T�\�J���J��P���C�J��Lf���Z^��r�)���y1y1S�=�eゞ.�g�ob��b1�F��TF��T�b1��P��@J����C�LPܤb1�� `��y���ܝ_H�x's��������y���ܝx's��������Q'�YQ3�M�����Y�NZ��f� `��_H�x's�������k��5y���ܝx's�������.���ݮYQ3��X��Y�NZ��f���a `���aM�M�Q3�x'�K������M�YQ3�f�YQ3�x'�Y����M�����M�M� `���A �0U0Uk��5�_H�x'�K������.��x'�K������Yf�Q3�x'k���졡������J������� `�����̝ǮY���P�dk��P���_�a�P�r��P�D��� P�f�P�@�SS���qW��p?,�P���f�Tr�NZ�N�P���c�f��rTr����}����}P�dk����� ���B�r܁P�dk��܁����� ��7��2�?�]�P�dk�ۏ��b��SS��SP�f|�N�����2�?�]�b����,���P�l������;�` �������a;�`;�`Uf�;�`nK";�`��^ ��;�`kf��;�`f���,"�,�,ZWj�DUj�;�`b�K�j��sa�[V�"�,;�`f�[Vܢsa�[Vܴ�O�z3�X_H���L� sTN��Q�� sTN[V�sa�[V�f�z3�X�܁���z3�Xf�"�,����L�""�,�,f�Q�c�r��� �`���nKb�b��dޛ"b�b�� �s����c��ۍ�f���篓,��O␢Z;�`bob�;�`T�Q�c�obk��Q��oby1S�=�;�`bd$��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f� q����d�@� `B��� q��f���*�`B흗��`�_�O␡��d�@� `B���`�_�O␝f�`�_H���d�@� `B���`�_H�f�`�+ޡ��d�@� `B���`�+ޝf�Q�&܀���d�@� `B���Q�&܀�f���[����d�@� `B�����[��f���a��a�#W�dr*����af��屝�@� �U ��杗��ob���d�@� ob��̝���d�@� �iQ���MY�_��TN�MY�_���MY�_���_���_��_� ��V�_���R_��_�]b$<_����c�i=�Y��iQ���MY�_��TN�MY�_���MY�_���_���_��_� ��V�_���R_��_�]b$<_����\F�ob5� �����5� ����_�m�M�H�qi~[&�8�ki~fk�mh��`��h��`��mx'x'm�����b��X*i?U�xNmWJW�m��F�[�mhTI�D�iS e��mI�8I�8m��@�*�b�m0U�@0U�@Q'E/<����dm���*�b��mqi~f���"e�J ����,��9�D�b��,�TI��8K�r]�_H�@�TI����TI�@ X_�a���#W�ru8K�TI�f�H�fk�ob�H��*�bob�*�b]���q�ob _� _��rru��qi~a����-R�i~ae���O����q�t���[�X�  ��_b^��nt�*��ZV����[W��[^��nt�Lnki �t�f�v ��kQ'�d� ��[j{s<$�W�Lߴ+���["��[�j{L^`f ��Q'�d� ��[L^`xNs<$�W�Lߴ+���["��[�xNL^`f ����S�W�L���S܋�W�Lߋ�W�L�W�Lߠ�kZs<$�s<$�v ��f<������j{L^`���᠝f<�kZnK��t�� �Jf ��c�i=�Y���� �JK�]癱 �Jj{L^`xNobkZL^`� �JW�L�W�L� �Jf7\F�ob�\F�ob����<���[�f ��f ��f ��\F�ob�ۡv ��� �� �J��L��a@�G�G�|ࢢ|��a@���G� ���G��L|�G��f��ݢ��X\ܢ���� ߣ��f��7��7ާ�A�������� ���cbC����X\ܣf��������X��a@��ݢf��a@���G� ��G�q;��X2�g�7ޱ��������G���5�j�P�O ?V��jDf�xU�Y�j�P��xU�kZjDf���j�P�`��������0��jDf�j�P�`������*�b�0��jDf�]�����j�P�`����� �$ �0��jDf�d�>��j�P�`�����xU��X�jDf�����\��ï���܌�f�I��>\��f�b� J�ۤbe�LϤb�b�U�b�b��J����դbk��b�kK�B�eՌ�fs��_xU����O��̤b� ��X\�d��M�M���c�:��_xU�� �_xU����OO�c�:ތ_xU����O��՛ir� X���զGQ��f螞 �_xU����_xUob�H�9^�>\K�B�eob�U�^�?b� �H�9^�����]��N���_xU��sa݀_xU��sa�@ X?�Rb�xUqi �J���_�a�i �@>h�-������ ��?�Rb�xUA��?�Rb�xU�]⸎b;��?�Rb�xU�]��;��?�Rb�xU�;��?�Rb�xUP����@�>\ ��c�/��:�� 8`|�i �>\c\���Z�$�_xU_xU��f>�-�>�-���r�_xU?�R?�Rb�xUf>>�-�]��>�-�h>�-�fha��>�hhru>>f螞>�-�>�-�fa� ܥ�篡>\�>\B���D��]��b�&�&�fS�����]���5�]�(�fS���b����� �W����� ��g��� �K�Yz�b� �����z��h�b� �����z��h�b����Ӥb��D��S���ob�P�� �������f����P�� �����ɥ�w�t�w��m�"p��[�� �����[f����[e�J��8�C��C�����[e�J��8�..�����[e�J���C�3�� �����?���<�>3�� �C��W�T��dWU�Vf[SS��C��WfpY�W[SS��pWfpY�ob����K��� 8`�N�ob��������� K����W[SS��W������Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��������$$�e ��ʥi X����������m�M� ���vc�O�0 �����,�%�ۥ�驩��g�1`z���z�z����ۥ�g��gɪ�V� g�ݑ�h��Kۼ����� ����M� �z��h���������ʩ����⩩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f�� ߜj��w�j��j�t�w�j�ǝw���t�w��Q'o������k ߠ��t�� �J&����<�K�� ��_b�__�O���f�?[���T���?[�����f�Q'T���?[��0��0�f�P��C�2�t�e�JT���K�P��C��?[�e�JT���K�2�t�Z����2�t�Z����?[�P��C�2�t�e�JT���K�C��?[�e�JT���K�2�t�Z����2�t�Z����?[�?[�:?T���T���f�?[߇�K�f�K�� �JK�]癱 �J�����������?[�iQ��?[�� �J�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<��*�b z��*�b^�r<�f�^�r<��*�b^�r<� z��*�b^�r<�f�^�r<��*�b^�r<��*�b z?,��*�b^�r<�f�^�r<�ob�*�b^�r<�f�ob��̝�*�b^�r<��sac�J���.�c���c��#�`A�@c�c���r�)�@hUX��@����� ��@`h�ht�f�e�J�ob����ۡ�c��#�ob�@UX�UX��@N��r�)�@obr�)�@N��� ��@ob�� ��@N��UX��@����ob����UX��@N���e�N����GQ�=��� ����� ܗۆ���� ��d���O$�=��� ���ۘ�� ����� ܗۆ���� ܘ�� ���ۘ�� ���ۗۘ�� ����]��ۘ�� ����]��I��q�ۆ���]��I��qŗ۠GR�dQ�Q�G2 G2 ŗ۝Q�f�Q�Q�(�D� �����f�ob��̝Q�(�D�耺bk����"GBd ��X�j��k����[�X�j��]�\]�\������y����k^�;y�����a�y�����ae�^y�������������������f��e�JJ����bk����k���������B�����f�[ۺbk�������������[ۺbk�����X�f�bk�����������������X�f�y����k^�ff7ob\F���\F�̏��P�P�qob�d�F�;ob������]�\�����k����k������������B����B������C��������S�S�q^�^Ced[�a����X��Xq^�^Ced[�a��C��C��q^�^Ced[�a��d[�f�a�a�i ��i�pmmh���a�f<�m�m�M���]⸙��졙��e!�a��y�y�4��s��J�۝�y��<�d�J�۝s��J��|��d��s��J��S��S����ddds�-E�ds��J�۝s�\Id��ds��f���#=�s��fs��|�ǝ�|����b�c�O������R/�\���#ܜk <��\�b����\�ͣ͡��\�����.�t����@��b�d�=��g��g�e�������g���h���e������\�� �2Nz��hc�O���(��)R�����\�f����f������ދ� �8�e��P^ހ���ܠe��P^ހ�](Uc��I�}p��|�����݋� ������ދ� ��C������ދ� � �p]�*�M�p]�*�M�p�����f豱�� �̋������ ��f� }��� :��{�R�f�f� }������f�f� }������f�f� }���c��� f�f� }���c��� f�f� }����*f�f� }����*f�@�P�ob��#�ob��̝^���#����/�C/�Csa�[KV��HUOV��HUf��sa�[K���a`B���bf��_Rsa�[K���a�O�Uf��sa�[K���ay��*�b]����af�����a�nY�sa�[K���a�OdL�f��_H�sa�[K���a�O_��bf�ob���̓�����g���g���g�vc�O�C�C�����t�t��}B]��\@� ܥ���躞 ܥ���N��]�� r�&�� ���.g��.2 �Y�h ��Dk��_��z��hǥt���Dk��df��������$$�e ����_�ET�ET� ���vc�O�[�ީ���g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ�ET穩��gf�Q'�uY���g����gS�A ܋���� �����g� ��g���h� ��gH�9^�h��H�9^nL���a�9�ԟuY�ԟH�9^f�n�H�9^�d���\IH�9^� ������]��N����\�`����\�`��#�������\�`���\�`�"���\�`Wܐ�"\�`C�\�`f����#�����\�`������\�`���\�`�"���\�`Wܐ�"\�`�\�`f��"d&��s�l̝iQ��ǝd&�Ýs�l�Q'����#�&�&����`&�q&�"%�;&�&�Yx�q�� �&� ���_2��K&��X�&�x� �-�;_Q�$�e4��� ��&��I$�e&�&�H[�$�e̱�&��I$�e5�&��I$�ex'&��I$�ex'�&��I$�e���XI��d���XI�f<���[��5���[�dk��X�������XI߱��P�ik��P���UX���P�����<��@d��(_��XIߡ���P�����������������_�]��N����RgH����Sd� r�&��R](��K�H�����B��X�}࿧�������V}Pb(�hPb(䧄�Pb(�Pb(�[�b�#��R�b� �� �ᪿ��g �`#�����g����e��� Tg��gɪ�V� g�ݑ�h��Kۼ���aC�hW^Ce���GQ�K1^�Pb(�2�?�R��lPb(��aCfҡ��lt��K��M-i��㧄���㧄��3�����3��������.ܞy�l�������� �������ۡ�g��gɪ�V� g�ݑ�h��Kۼ����l���X�z��h���lf����b�c�O�ͣ͡���C�r6�����.�t�l��ܟ�%u�0ܞl�=��gd d �d d �d d ��g��g��@]癞hQ�&�]白������C�r6�����?z��hC�r6�kCU ������C�r6�f����b�c�O�ͣ͡���C�r6�����.�t�l��ܟ�%u�0ܞl�=��gd d �d d �d d ��g��g��@]癞hQ�&�]白������C�r6�����?z��hC�r6�kCU ������C�r6�f��'�E�]�� ��拏��gc�:���#F����gc�:����g���ܿ����l�4�4���ݜw��e�������g���he�������Dk��]��z��h�#F����c�T]�Dk��b�_bW�L���Dk��]��fҗ�5袔�����W��ruW������c��d��g��Z��j���������W��[N����ob��������RW�L�d$��ۡW�L�d$ݺ���ܖa�d$�j��ob��ob��l̗۔�������RW�L�d$��5�j��_�O�2��X\ j�clj����a���GB�T��2��X�f��y�5�j��_�O�� S j����aclj����a�y���GB�T��� �f�?��D��GB�Tߤ?��D��f�Q'o���j�cj����aj�ܤ�GB�T�{�篤{���a{̡{�bU����d�n���C5�b`f�����ܧ�ܶ���������ܶ������\IQ'H[v�A�����������nf�]���]���#F���d������a��J��[���M��d���Q�_xU"������\If����C+��ܦQIߍ������6������6�`6��j��=�W維n�(�nf�����ޭrW����j�_xUW�p�nf�f�{��f�{�obf�{ ��V��j�obj���W�obW� ��V��j��=�ob�=� ��V����]�D�a��]�D�aob�]�D�a��V��W��ri=���c���f\F�� ��f�"G�f��O�Uf��O�Uf�f��[e"f�[ef�f\F�Q'\F�f\F�Q'\F��[e"f�[e"f\F�f�l��5�����ru�޻j������]�A �0U�e�j�]��a_�bGB�ܓ b�d����bU� �_�a�bkY����ܤbk�b�Xۤbk�b�b����[N�e�eゞl�b�bg̡�l�ۆ����?��WL^`v���髣�0�%)5�%)0� ��ݏ��ikK���^ ��U�_Rk��Ql��Tj����Q�c��k��Q���Tj�����d�B���U�����<��.��4ퟔ�d ��e�@� �靟Ο�k��Ql�#W۬�g%)0�ɫ��g�Q'o����^�A�vc�O�:�� ������ ���R��������� ��(������ � �������� ���g�e�������g���h�e���������TS��z��h��K1^���� ��X������f�\`d_H�[R��+ �����%����T����d ��GB��t�iQ��t�iQ����d�d�2��>��ӟ �t�iQ��t�iQ���.���z��h}���vc�O��t�.�������[�����Xe��g��g�e!^[R��˟�iQ��iQ��f��������$$�e ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ�ET穩��gf�����d��n�(դb5�5�f�D,(,�nf�D,_xU<��4��%���_�<��_xU<��c�_�<��H��a_y/K���k_xU<��4��_�<��D,f�_xU<��f�b5�ob�b�.�g��]�D�aob�]�D�a�t���TNl����q�S�M-�b�������L�#W��M-�_H��M-e�^f�Q'�M-�M-������S�b�#W��M-+��M-+�f���M-q ܁#W��M-Lx��_�a��M-f�b��� S�M-O��^q�#W��M-_�a��M-f�S`���]�D��G�J@ XP��P�Vi �P�VG�Jf>\XG�JW� ]��[�JW� ]���ᒇJW� ]��i �]�D��G�Jf>\P�VG�Jsa���XG�Jf>\P�VG�Jsa���[�Jf>\GcP�VG�Jsa����ᒇJf>\P�VG�J[e^��Q'P�Vf�>\�P�V�����obP�V�+������]��N������b�c�O�4�:���ݜͣ͡��0����.�t�i ����0�d�d����H��d�.z����d����g� ��g���h� ����0���H��d�.z��h��NZ�����0f��X�J��0_b�����X�xN]�xN�xN5��=�j�xNxN��xN5��=�j��xN]�xNxN5��=�j�xNxNxN5��=�j��X��J���=�j��=��X�ޭ0f�j�j������������ܚ��H[�]�D�a0���M-�M-��d������3����)�����)����k��[R��kZ�)��a�?�j�j{[R��dÝf�kZP^�j{[R���)����[R����>3����)����k��[R��kZ�)��a�?�j�j{[R��O��f�kZP^�j{[R���)����[R����>3����)�����)����k��[R��kZ�)��a�?�j�j{[R��f�_xUH�����(5V����?�?�9�(5V���̝[R���(5V�������_H�\�����]���������_H�\�����]���J����_H�\�����]����_H�\�����]������c�O�:�� ���_R��g��>�>\ET����7��K�e�_R����[��.����I��$����U�����<���_RoT��_R$�$�����d���g�X��5J��\���p���?,h�c��h�c�����ʫt�"e�t�lD�kb���[�-���c���M�W��c��蛛ꛛt�f���Z^�ruT����F���Tr��㢋ޢ��������[�l���%a�����l^��q��Z�@ Xi�i@��d^�W��M�W��f��������������i@^��f�c�i=�Y�l�#F���"c�Y�rru��F���F�������l��[���[�ll̡/9�O��&��]�j{O��&��@ X_�a蝝O��&��f�O��&�� �O��O��&��O��j{O��&��@ X_�a蝝O��&�� �f�� O��&��� ��*�bru�O_�a�� O��&��O��&���{�RO��&��_�a�� O��&��&���{�R&��_�a�� O��&��O���{�RO��_�a蝝� O��&��f�ob�O��&��ob��̝�O��&���x'/�����i~_xUd��y1Q3�x'/�����i~p�#�LF����i~pLF��p�#���i~p�#�J��L��x'/�����i~_xULd��y1Q3�/�Q3��>\�NQ3� J��x'/�����i~_xU/�d��y1Q3�Q3�Lf�-E܂N�N-E��a_���a_��-E�h�h�-E�ggh��dh��d%��g%��g�/�_R�-E���Z��Z-E���B���B�-E�@۫h��d-E�%��gQ3�f�-EZ�N_]療Nr>\�a_��r>\h��dr>\>\h�r>\gr>\%��gr>\>\_R�r>\��Zr>\��B�r>\/�Q3�f_]�]�j�UX����i~i~UX����>\�>\y1y1S�=������)��<��/�K�UX������J�J��J��|�i��bk���Jt�f��Ad�$ K�<��K�LN�� K�<ܪ��Jf����2�di����A�����2�i��i�t��K�i��C��t�d[�fZ�R��d�����2�df����2ܪ�t�����2�f����2ܪ��j��c��f��j��t�c��f%��X��0����v���TNYK�4��[��z��YK���z��F� ����Job��^[說YK��� ��W�K����-YK����������0�� ��ܪhh���`hS��\����`f�i�QS�QS�i��i�QS�p��-YK�f��T�hh���`�ܪ�X\�q�X\��T�h�]�R/��X\��T�hp����`f�hh ܥj���hh���`f�hh ܥj����h�������`f�h ܥ�篪�YK��� �ru��2��] ��nZV���*��nkZnn"�_b�t�G�f����Z�U����w���������n �P�T�ۂ�T�ۂ���7�iSd �b �nf��AJ�1�8iSd ��6� �T��6��6� �bf�� q�nf<�kZ� qkZnf<ۗB����Y�dL^`���]���f��?[��0���j{�0�kZfZV��[e^�a?�J��j���6�ۂ�ۂ���AJ�� qobR*�R*�ob���̡��AJ��Q'�Nb[K�b�bU_R�b_RUf��NbikK�b��^ ���k_Rc���կ�bk_R�f�{_R���U��^������r��M����U��j���o���o����d����UկW�LA,A,�� ��կ�b��bU_RS���#��U�b_R���P��� �O�9K����b�_Rk_RkfS��e���bfc�Nbf_R�b�_R�DZ��#��e�e��#���_RS���#���j��=趭n���nf�����ޭj���\��\��\��\��\��\�nf��\�����\��\��\� ��\��\�UX��\��\��\�f�����\��\�r��ޭ�\�����\�f� �UX�Lm ��\�f��]�D�a��]�D�aob�=� ��V��ob�]�D�amob�m�M�UX�UX�UX��\�?�K��UX��\�?�K�+������C���vc�O⇉`X�Y*w��������6<��z��a� �w}�����+� 9�z���+ৄ���-��C6��+� 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�fҝvw��_R[&�����+e!^g�#W۬�g�vc�O❟�%��7��E�M����a�%�%�ge�J������`�������.�l���N��� �de���X��<\F����.�l�K�]�������������g�1���K�Q������ߧ����_H�h���.�l���.����&�������_xUQ�� �K1^���K�Q��������������fқ�X\�rnKRa @ XRa ��]�@ XiޛqO�Ra A �A �f�{@ Xf�{A �A �f�{ru��Qf�dk��P�Vf�f�� ���b��� f|YA �UX��A �A �f<�A �YA �YA �f<�YA �YA ���P�r��'�EUX��A �ob�0�D�����E�A ���P��������k������c��� kt�f�W�b���k��n ��9�WWW�J��k��n�� � ��9 ��9 ��9 ��9�J��i~5�����/�C���i~5�����f��T-2� ��� � ��9f�e�J��U�^�?bWWZ%���T[ ��9 ��9Z%���T[������Z%���T[����Z%���T[�UH�Uf�m�M�m�M�H܀-����-e���O����qZ^���� J��-e���O����q�- J��-e���O����qkH�k$[kZ\Id�9�H�kd��UH��H�Ud��r���_Q�k-_Q�r���_Q�k-m�M�r���_Q�f�{m�M�km�M�kf�r���ik_Q�\�r���_Q�f�{f���������UH���Qy5��+���������0�����������_��[&��k0��fk�H�fk�ob�H�����-e���O����q J��-e���O����q�b�be���O����qkϤb�a��ǡ����e���O����q����>�-��_xU���?�R�=�_xU��`B�=���<>�-�������_xU�_xU�?�R_xU�?�R_xU�?�R_xU�?�R_xU���×�_xU]�sܝ_xU� #�f������_xU���?�Rf���_xU�?�Rf���_xU�?�Rf�>\ob��ob>\B��̝>\B����K��O��kd������K����K�������Q6������O���O���k�k��d�d��� L������K�������Q6�O���k�d��S���X��A��W�VT��-�]�\�W�V��W�V�f�Q6�Q6��W�VܟuY���W�VܟuYob��W�VܟuY��X��A��W�VT��-�]�\�W�V��W�VܟuY�pp]�*�ppQ�+]�*�bS�f�kZ]��M��p�M�]�*�����S�]��p]�*�@ Xd[�qpp]��]�*�d[�q5�T��QkZM��M�]�*�M�S�f�8�a=������S�� ���]��M��kZ�܀�e�����e�J��p-E�� �kZ�a=ߋ�a=�]��]�*��ppkZ� �� �]��M��kZ����kZ]��M��]�*�����S�f���a=�j�ܓ,�a=�Q'������T��|���a=������S�f������� ��ϋ� �识��n_���b5�S� �ܯt�vf识��n�b5�S� �ܯt�f�d�ᢶkC�j���W���?�9��nnf�]癭/��nfh��mfmob�m�M�ob�]�D�ad�ᢶobd�� ��V��j��obj� ��V��W�obW� ��V��_��ob_� ��V���b5�ob�b�.�g���?�9��ob ��V�]癌v�]�ob�]癌v�/ob�/�v �� ��/�v̡�v�����&�f��ǝ���g��鑞��������\PU<�AXU�����E�=�ܕ�_��NZ=�ܕ��K� �VJb���](s���[S��K� �VJb����aD�O�ߓ����R��02 r�&�=�ܕ������E�=�ܕ�_��K����K� �VJb����H O_ r�&�=�ܕ�_�iQ�&T�d :���_�]��N���S�`�_���dru�`�_�/�CQrQ/�CS�r`�_�QS�`�_�Q�&�S�j/ru_�a�f�r��dru�U�VQ�&����q�ru�O_�a�f�����@���e���+v��Y�YS`f�����@���f���[ ��#���߬�J�۬4��i�i����nY�`ެ�\��Q�&�e� �*������뻃*��ZV���S��ܻ�-f� � �kZ��\ �&�T�kZ��\&�T�&�T�kZ�:����\&�T� ���#F��� N� �i�fi���d ߪ�i�i��f��_H�����\�*��ZV����e�f��f��\��)��y���ܘ�i �)��[�f���>\f��ob��B��y����ob����ۡ��[��B���Q��g�������l��_���ΟGB�$��e!^����_R$�$���d ��ʫ�H�9^����e�k`e�k`b}[�U�^�?b� ��g���h� ��e�k`H�9�Q��H�9^����z��h�H�9^�����e�k`��H�9^�e�k`H�9^����f�����]��N��ܓ��X������X�����f�����ۡ�̱`b[�[��� ��� ��ᆝ ���f��@���@���@��f��������f���]�N/�]癝N/��/?���<�d>N� K�<�ŒS����M���?���<�LN��^� >�@C �Y K�<�Wޔ�d��f�U�V71����g���g���gɞl�vc�O�b���C���C��g�Vܦ������g� ��g���h� �� ��Ǧz��h+������C��+������C��f�ob�� 3��8K���� ܋ޢ\��0���O� �\�`�\��0���O�\�`� ��0���O�\�`� ��@��މ�0���O�X/d�@��ޢ�*�㇉��ܢ�o�����*�b5����qde������)q� ��kߣk�nZV���*���nk�iSdn�r,���ZP������ ��nK_b�__�O��a=�iSdnf�nk�f<����̡��ZP����T(۝U��YO� G2 �������#�����#�T(۝�K��G2 [K�T(۝�Y�cG2 T(۝k�Y����f�����ܱ�����J������ܝǝJ��[H�d$�t�ۣ��l� ���#W۬�ge�J���gl������;�`T�.ܞ]�D�a��-��l��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����d$�f����b�c�O�\����t�e�J������`���݌�����gy1%�����^��y1S�=�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����\����f� ����g�$�� ���vc�O�y�l�=��gɪ�V� g�ݑ�h��Kۼ��� �l �^�&�z��h���� �W�L���� �lfҗۣ��lʗl�vc�O���gɪ�V� g�ݑ�h��Kۼ��\� ������z��hcbK� �&�K1^����\� �f� ���4�+������C���v]�D�a�+ ���g��g�j��w�j�vǝw��j�t�w�j��t�w�� +������z��h�\�nKی��?U?�R�� +f�G���Gc���c�k��Qk-�� ����c���� �`d_R$�eB�d�$�eB�d ��$�eB�d$�eB�d$�eB�d4�$�eB�$�eB��_R$�eB�̌$�eB�� ��$�eB��$�eB��4�$�eB��t�f�d$�eB��X� ��9X��d � ��9�d ��d ߫�Lf�NܫX�k���d �=_@��NܫX��d �f� ��9X� ��9X�N�\[ ��9�d � ��9�d ߤN�\[̫V+bP^ޤN�\[�0�%)5�%)0� ���%)0�Fb�*�#W۬�g�Q��[�[����GB�ʫ���������W_b �1���������e!������S�ru_�a�dr� �*�b]�}�P�Vdr� e!���?�R������k܆b��d :���A��e!���t���ޡe!���e!���f\F�G2NG)R�#W�e!���\F��e!����C���܊��*��k ���܊��*��k ��d�B���܊��*��k ��G2N{@�C�{@�C�z�� �)� �)�pz����Zl����D�i@�A ⧟ʫA ⧟�*^��S��z���m�l�y�]�(�/y�]�(�f\F�\F�]�(� �M�\F��l\F�]�(� �M������X��K ܅�������U������U����`BI���7��Km]�R�����g��������7��K�e�_R��g��_R$�$���_RoT��_R��g���g���g�vc�O�C�C�����t�t��}B]��\@� ܥ���躞 ܥ���Dk��df�H����vc�O�n�����?�զ�����-]�D�a��g�z����?�E�W�z��hY��M���?�����i@nKۤb������?�f� ���vc�O���g�U���u�]�����K�f�ͣ��t�w��t������.�t���_B�^���_�g��g���� �l��g� ��g���h� ���������W���h�@��W��G2N&�`�c���������fҡ�Q�t�H����vc�O�n��Q�զ���+������C��]�D�a��g�ӟ ��h��NZ����Q�fҡ5���t�v��vc�O�dkW����gɪ�V� g�ݑ�h��Kۼ��5����>�\Uz��h�b��5��P _GQ/��5���fҞl ����g�$�� ���vc�O���g��g����I����I �ɪ�V� g�ݑ�h��Kۼ���h�V\��z��h]�\�h_xU�i@��h�f�}��ʃ�NZ�N���}���N�}��Q'o����^�A���g������}����g�vc�O�ɪ�V� g�ݑ�h��Kۼ��`B�?�R_��z��hK1^�LcbCd8���7��`B���`B�?�R_��f�������iZ �eゞ������u��gɥw�����g�W`��h���W`ȉ�h��NZ���؞������f�p �ru�\F��X��Ap �fru�\F��X��A�f�D�ob�D�\F��X��A\F���D�\F��X��A���X������N@� �`c��� �` +N��N@� �i�� +N� �t�f�� ,H�i�� +N� +N��N@��b<i���b<�b<�篓�ob����ۡ��e�J��N@� ��b<J���͜bD����]��&�fS����t�#Wۢ���;]��5�fS��#W�́#W�t蜁#Wہ#W������NZ�����n�D��S���� E��g�j��j�w��m�}B]癍��ݥ�]��B�l�]��B�ӡ�+���P2E ��g���h� ��|� ��-��Ӿ�+�f� ����f����]��N���Q'�uY�_�j�ӟ �����g0��M�b�ɪ�V� g�ݑ�h��Kۼ���M������>� G�z��h[R��v�A��M���?����M��M�fҫX� ��9X��d � ��9�d ��d ߫�Lf�NܫX�X�=_@��NܫX��d �f� ��9X� ��9X�N�\[ ��9�d � ��9�d ߤN�\[̫V+bP^ޤN�\[�[Vܢsa�[Vܴ�O�z3�X_H���L� sTN���Q�� sTN[V�sa�[V�f�z3�X�܁���z3�Xf���篱d$��D��]��b�&�&�fS�� ��g��� �K�Yz�b� �����z��h�b� �����z��h�b����Ӥb��D��S���f����w��m�����,�<�J���J��J��<J��_H܋=�}��e�L_H܋=�}���b�@K�`�����_��`B��gɝc�O�_R�c�O�_R ��� ���\�`��g �������ۡ�g��gɪ�V� g�ݑ�h��Kۼ�����U�Z���z��h����ۡ����H�9^&�>�2��V��?�R�����Uf�����T&��b� \����*�b������@�������( a�*�b�����*�b����*�b��ru����c�T]����*�b�:[������fc�T]�Q'\`B�Q'o���( aH[�]��}Bg��&��b� \��\���ܥ�篢�������(�}Bg�篡ZV��e�^]�j��]�e�^e�^f�[�]�[�]�)��]�[F/�[�f�]�]�)��]�dF/�f��NZ]�]�]��a__�a�f��C��|��M-rq@�]�C��fC��|��M-C��r]�C��fC��C��|��M-C��Q]�fdf]�f\F�C��Q �]�QC��i ����nC��|��M-ru@ X���ruR�dC��C��Q]�_�a�]�f�]��Q�)���QQ�)���Q�Q]�Q�ik��������U������U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2Ee��g�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���f�����7+��l���5� ���T��+������7��#W�l���5� ���T����#W�]�\�+��y��c���C����7+��l�����܊]�(�w��+�۝s(�+��6�Q'c���C��#W�y����7��#W�l�����܊]�(���wde�ޝ����#W�&�l��l�ޟuY0���#F����/b�l�ޟ�vc�O��#F����g��gɇ���7fҤbkM����M���� �� �ܛi��t�f�Z^����U�b�@d��"U"�i~�W�L�����n�b5�.�"Uk�b�@d��d�nn���bk�bkf�Z^����Z^����f�di~adf����QI�y౱QI�y�QI�y�QI�y�M���� ��ob ��QI�y��.ܤb�.�g�e�J�QI�y�����W��R/����W�V,i�_�a���MP�V,i�j�b��쪒�|�i�_�a���MP�|�i�j�b���k��_�a���MP�j�k������ �H O�b���MP�a���_xU���MP�j�j�����MP�_ sܭf�{A �j�b���MP�_ sܭf�{j�k��a���_xU���MP�j�f�{�G2 �X�������MP�f�ob�b��MP�ob��̝�b��MP��]U�.�����] ]UTS�] ����W�����] A����O$]U�.�����] ] f�] �]U�.�����] ] ]U"qnK A�� pq �] �]U�.�����] Aۄ�p]UTS�f�]U�.����.����A ܄���A � k��]U��.�� A�����.���.��]U�.����� Aۄ�p�] ]Uf�[\p�.��[\ A��.�� A��*�.��"�����.��[\�� Aۄ�p��[\���.�� A�Q' A����O$f��.�� A�� nK A��.�� A��*f��.��]U�.�����\ U]U�.����.�� U���.���*�b�����^b��� k�ۅ�^KdF���]U]U�.�� k���.����]U? U�.�����]U_�a�]Uf�D�\"qnK��\ k��f���V��nZV���*���kZnnP^�(B&��P^�P^����^e�J�� ��"d[�qM�e�J�� ��nK"d[�qP^�e�J�� ��nK_b�__�O�� �n"�t�f��e�J(Be�J�� ��_b�__�O�� �(Bf�(BP^�]AaP^�(Bre�J(Bf�D�kP^�P^�kZnf<�P^�P^�`#�Q'\F�de����Q'\F�de���̡`#���U ,�N��N�R�� �N����"_��ۛt�f��N�c���c��N���L��N��N�_�a� ��N���?�R�N���f�?��,2�ۂ�"q�2�ۂ?�������2�ۂ?��?���N� ��N�f�T5W5V��q�N��N��N�i �T5�N��N�_�a��N�����5VnK��f�5V��f��\�f?���N�f 5V̡5V��Q����4b4b_�����i ����������S�����S܇�R�0�ދ�R�0��m���Y�ۋ�W�V��ۋ�q��mW�L�W�V�W�L�f4b4b4b��܊��4b���4bp4bfj�����4b4b��܊��4bfj�������i ��J}ࡣ�J}��[H�MP����J}�苏 ����=�W��L�W�݋�&��b�ދ�L�W��f�W�L�L�W���V�i����V�����Q'W�L�W���= ���V�L������B����W�L��=�W��L�W��f��Q'ruru�� ����=�W��W���= ��ruruW��f�4Tr ��������� � ��= ��4 ����=,Yb �ru�N�4���ruS�ru �f��=� � ��=� �f�^f�^fiQ���&��b�ދ�ru��ru�N���=�W���=� ���=�}����g�= ���=�l���=�l�W�L�i~���S�=��Z�lW��kc������i~aG�O�i�i~���������G���*��G�i��e��W���*����*��p�t�f�k��j����c���j����k��Gf�f�{&�ң���*����e�fi�d}i~�fe�J�i~W�L�i~lW���W��obe����dk�dkW��̡lW���[V���hhL�hrh�[V�_xUf��W�L��DU���hrhW�ҽ_xUf����hhLTI�TI��hrhTI�TI�����`_xUf����hhL�hrh����`_xUf����hhL�hrh�|�����`_xUf��L_xUob��R�t���P�hobi~��P�����<�j�_H��#݆b�t�ҧt���P�����������������_�]��N����RgH����Sd� r�&��R](��K�H�����B��X�}���U�����<�����gɕ�2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O� ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gfҝ5�]��]�� L�X\�f���]��]��*�bde��f��N�ܥ �2� �]��]�N�ܥ �2� �� �3�Xf�O��'O��_�O��O��]��]��'_�O�����a��{�R]�f�]��]��]�f��]��]����]�f�l]��ob��̝]���D��]��b�&�&�fS�����]���5�]�(�fS�흤b����� �W�������b�� ��g��� �K�Yz�b� �����z��h�b� �����z��h�b����Ӥb��D��S���ob�P�� �������f���P�� �����ɥ�w�t�w��m��[��[�z�g�����k <���\@�A �ǖa&�uY�X�^<��[�z�[�5��P��r��P��r��f�A �\I�f�{�_H�\Iq��M-^C _H�\IMV^C j���iSdA��-j��@ ;���M-���\@����������k �� ���#W۬�g(�������/b�v��d^����_Rl�(�������/b� ��V��_R�_Rt�wvw��vc�O�yn��J�܇�v���n��K�j� ���܊�n��K�j���܊�lt�]�(�oj�l�%�+~�>��vwt�w��v&�l��l�ޟ����K�j���c�Z �e�j��j�t�w����S�9F��9F���Slg�#F����g �����g�T���9F��T���9F�f� G���Z Y�\������U��Z Y��<�����pLF��U�<���U���LF��P�� G��<�����,^���Z�<۝���LF��P�f�^���Z��^�dR�X��^���Z^���Z^���Z��^��X��^���Z^���Z^���Z��Xf�� #�*f�ob��U�LF��P�F��T #�*LF��P�F��T #�*�LF��P�\��<� #�*̝LF��P�\��<� #�*�L�J�� �#���"q�M-���M-O�����J��q]������J��i��9�A,q�j��j�]�TS�j��r���=軒�i�\�`xNr�NZ�=�?��L^`J��1�cbKj{WT��h�UL^`i~r�j���M-��pL^`f�h�UL^`i~Y��UL^`f�eゞ.�g�(ET��=��=���b1�i~obi�b1���UL^`L^`�b1��nZV���*���nk�iSdn��N��/&��a=߂N�N���ZP������ ��nK_b�__�O��a=�iSdnf��a=���Z� ���a=�y�EZ� ���a=��*��� ��� ��_b�__�O��a=ߚ�/f�nk�f<����̡��ZP����b��_H����������_H�f�b���6���������>����>�������>������>��2�?U��6�f�L^`�L^`L^`�����L^`����L^`����]��_�a��L^`f�W�d�������M�\�M�\�����M�\���逗��W�d���M�\����]��_�a�W�d�f����������]��_�a��f�i ���xNfxN���>蠿�PJ�c��ffxNob��#��� �^����>�2�?UIb���>����JY�&��q�&��bJY�f���`dP�e�L&��bJY�Ud��y1S�=�U`dP�`dP���J��� W�dP�JY�&��b%���`dP�&��bJY�kd��y1S�=�kK�B�e��JY�&��fs�y1y1S�=��U�^�?b&��b%�e�L ��ޓ�ob����ۡ��&��bJY�J�쩃��e���K�j���܊��K�j� ���܊]�(�ww��e�&�l�����K�j���c�Z �e�Q'_R��b~�>����c���CQ'�Jb��K�+��y]�(�e�&�l��c��Q'y#S��q�Q'q�y��J��vT���t�]�(�vw��e�&�l��vc�O�l�ޟuY0��~�>��l�ޟ�>\c\�LF�SNv��d^������ۋ�#F����g��g��T���f��]U]U�����������f�Q'@�P��d޻H[@�P�}�5�@�P�f\F��)�P^�j{e�?�R�O�)����a����)���b�a����a���f�c���nK@�Pݛ�f�l�c���@�Pݛ�f\F�l��@�P���f?�R�O?�R�O5V�����a�ߗ$��5V����T2�M��X+�Q'�ދ�磧���d�G��Q'���Gܧ����pJ�pJ�hz�e<��ݣ��Gܧ���[�Q��h�hpJ��pJ�h���f�{���h�J�z�hz�h��ҝ�h��X�e<� ҝ�a���z�hz��I$�e̝��&��I$�e���H[�$�e�z�I$�e4��� ��z��I$�e����>�-��_xU���?�R�=�rc_xU��`B�rc�=���*e!^� ��*��������E���?K���_�Lru]�W���<>�-�������_xU�_xU��`B���<]�/�C�_xU�?�R_xU�?�R_xU�?�R_xU�?�R_xU���×�_xU]�sܝ_xU� #�f������_xU���?�Rf���_xU�?�Rf���_xU�?�Rf�>\ob��ob>\B��̝>\B���Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�t�_R�Q'����.�t�w���lw���w���lw�����ŋ������_R���� ����g���� ��� ���v]�R�����1��/b���S�_R��gk��Qle��� Tg ������Q��]�e!^g��g��_Rc��� �n�bOܐ_R��_R�f��TN_��� _��\�q\�nKWf��TN_��� _��\�Wf�_��� \�nK_��� _��\�f�_2���q���q� -�"���-E����������iް�������� -����p�"_�� �TN_��ff[�ffdri�X�������_2��K�f�*�b�����P�������P����*�b� ���P�-����P���� �drf�������l��j��E�+@�f����������l �����rru�R��l��l�ްob�R��l�[ۍ����obE�+@�j��=�W維n�(�nf�����ޭV�W�rW�V��W����j�_xUW�p�nf���rV�rr�X\���rV�V���rV��W�f�f�{��f�{�obf�{ ��V��j�obj���W�obW� ��V��j��=�ob�=� ��V����]�D�a��]�D�aob�]�D�a��V��W��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���g����`B��g�vc�O���g��#F����/b����h�/b���g����[Q�^�[���g����l���gɪ�V� g�ݑ�h��Kۼ���NH��K��NH���z��hd�r� a�NH��K1^���^���NH��K��NH���gf���g������U�����<���_Rc�O⃪���e�@�����le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f�/K]�\�Y�J�K�j� ��J~�>��q��)�CV��K�j�q�+��y���K�j� ���܊��)�CV��K�j���܊�N��)�CVt�]�(�w���Q'y#S��q���K�j� ���܊��)�CV��K�j���܊��J���N��)�CVt�]�(�Q'~�>��w��v&�l�ޣ���)�CV��K�j����K�j���K�j���c�Z �e�w��l�ޟ~�>��ʋ�#F����g��gɡ�)�CVt�ӟ �=�@��)������CV���)�CVf��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ��S����g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf����O&�}�������v��� �M����}����gɥv�c�:ޫ���Lf�{c�O�#��R�D�g�V��.�V��.��M-V�g��gɿ���ۥw����w��Q'o����^�A��V� g�ݑ�h��Kۼ��W_��.����z��h��X�V��.�K1^�������W_��.�R�D�gf�������]� ����&��˟uYӓ,�&��˟uYӓ,H�9e!^[R��W��[R��S���]� ���W��G���&��˟uYӓ,��&��˟uYӓ,H�9�]� ��Jb���S����X�W���d������W��1`�K�j�����퇉8K��Q�z�>��W��1`z�>��W��[R��G�H�9W��G� ��ݪ�V� g�ݑ�h��Kۼ���������z��hz��������z��hd>N��#F����g��g���������c��#�H�9 �������ۡ�g�vc�O�H�9��>���������v� ���g�;�`b�������w���;�`�@X���t�w���w������\� �Ǣ;�`������f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���_xU��2�?U���2�?U�&�j{&�j{n��s�d?���T�ᢁ����UX�����������UX��&�nf��������UX�UX�젝�2�?Uf袁���&����UX�UX��&����2�?Uf�j�a�k��_�a��X\ܕ�k��k��_�a�a�j任j�k��k��_��j�_�"���f�j�k��a����X\�d��j�k��k��_�a�a�_���_xUT-2� ���_��j�_�"�_xU�f�&�:����f���&�:������f��UX��UX��&�:���&�:�j{j{&�&�:��t�&�:����g���g�y����f�{��� �U�b���C���g����l�vc�O�f�{c�O� ��ݤb���C���C��g�Vܦ������g� ��g���h� �� ��Ǧz��h+������C��+������C��f�_Yt�_Y�)�f��)��������)�W����e�J�j*j��W���� 8��[�Sk_b[�S_bkkj���0��0�_Yc����k_Yt�f��[�S�k��T�&��b������������e�^�������e�^�[�Sk_bf����k+E XU�V�X����������q�<����U�����U�Vk�0�f����U��������7Y�Y�����kY�Y������q�<������������������_Y�������)������篁#W���d��&�d>N�\I��&���J��c���"c��S&޶f����m��Y.�8K�0�Y.�m��d��&�d>N�f�1`1`��ggO1`�g�Y.�8K�f��7�\I����J��������EZ�X\�\If��7��7ޱ�r_R� �7�\If�EZEZ�5���&�5�������P^ޚ��{�R��8��$C����)��)�kn�����)������S���������)������S�����)�i~�)����d3��� ���{�R��8��$C��f ������P^ޚ��{�R��^�������)��)�kn�����)������S���������)������S�����)�i~�)����d3��� ���{�R��^�����f ����f ��f ��ob�v ��\F�̚����S���������S�nn��S���D��D��3�����Q'\F�de���ۡv �ޡ�N���Y^v ����S��ͣ�j���[��=��e�[��=�����b���g����l� ���\�`��g�vc�O�ri�K j���ri�K j������_����_��ru�ru�^[�j����^[�j���?�j���?�j����Tߝc���S�@K����e��gl� �����g�e�[��=��t��V� g�ݑ�h��Kۼ��[��=�������.�z��h=�ܕ����&���QI���[��=��[��=��f�j��=�Q'I��=�f�{�(f�{��nnf�����ޭ���c���kkDU��_�ܻ�_��DU�rj�k��nf�������4�䯯����_��f���ܯ�����ܯ���f��fe�J���c���bj�obj���j��=趻�=�ob�=� ��V��f�{�(f�{�obf�{ ��V����]�D�aob�]�D�a̡�b�J�]�D� �]�D�J��f���p��o���>��j��f�e�J�8���>��o�ob�>�������Z���C5�ob���C+��ܦmob�m�M�j��=趻�=�ob�=� ��V������ob���� ��V��f�{�(f�{�obf�{ ��V��j�ob�]�D�af�ob�]�D�a��̤bZ识��n���C5�t�f�j��=�W��=�W����d[� ߶�nnf�����ޭj���������i�ܭ������i�ܭ�@�@�@i�ܭnf��d[�a�_�-E��_�"�d[� ߶f�v%���i a���a�i h�����Z�����a��ᡙ��@�@%������%����%������%����]�D�a��]�D�a����C5����C+��ܦ�%���=� ��V����� ��V���]�D�a�%����p�2�?�����q�qV/�Cq�Jb���q�qV�Jb�f����-���f��������_x����-��p�f���-��������*�nKW� �q�������f����������*������c�T]����*������*�fs��qV�qVl� �`B���ۡ`B�]�f�\F�ob�l̡�qVl��(� ���(fi �(��������e�J��8�i �(����#�������e�J��8�i ����f�{����(�Q'���������#��(i~k���(����"&�T��K�� �����������#��(i~k���(����i �ci p_b���B�i �(xN�xNkC��(�f7��k����C�k��s<$�K����f�Q'k����C�k��s<$�K�������#�f�ob\F�����ۡl\F��K�K�F`b�K��F`b�ݱF`bi~i~F`bt�]��F`bob����ۡl��f7\F�ob�k��F`b�j�Ij{`j{��GB��`_xUI_xU_f�GB��f�j�Ifb����#�_xUIf�j�Ifp� Jhp � A�a�ha�p� JhG2 �|���R`B�G2 ��dÝ��R`B����Ý�>\f�hh�|���f��hfob�Ǟ ��B��R`B�ob>\B��GB��ob��B��fb\����������ۡ�̝��B���SUSU+ާSU��c���SUW��SU��L���f����j�M�W��q�SUW��f�M�1��b�M�M�M�W��f�%a����W������Y����f苏�ǧ���0�U<�������̠��0�U<�������?������a)᫠�篠��0�U<5������X\ܢ�$ �����_Rl~�>��_R1��L�foj�_RU�#W�_�f�~�>��U~�>��U�����^ �Uf�~�>��k~�>�⯞mW�L����q�kE��P^�"����^ �q�5�f����fP��\`B�Q'o���2��X�[�އ@���|�+� L�*�bP�\|�o����mob�m�M�_R_R�#W۬���U�^�?b~�>���(_R?[ �~�>��E��P^ޡlE��P^�̫��j{_��NZ��W�݆b��j{�J3��NZ�f�j{_�����NZW�݆b��j{�5�� _�`B�j{_��NZW�݆b��j{��_�_H�G�J_�a�f�j{_��NZ�NZW�݆b��j{�:��_��@��N�G�J�f�j{_��NZW�݆b��j{_�a�_�a�d���?,�f�j{ �W�݆b��j{�J3���f��ǝ�W�L��b���b�ܝ��J�K�j� ��J~�>��+��y�t�l�K�j���܊l��J��]�(�w��c��l�K�j� ���܊�t�l�K�j���܊l��J�ܡDHt�]�(�_b�DH�%�+~�>��w��v&�l��l�K�j����e�l�ޟ~�>�����<��#F����g��g��DHf�}�� ���܊}���d�_Rv���#W۬�g�vc�O�Q'c���CyQ'q���� ���܊�1�Z�����܊]�(�w���Q'c���CyQ'q�w�� ���܊�1�Zw����܊]�(�w��w&�l��l�ޟ}���T�b�*b\�g�#F����g��gɪ�V� g�ݑ�h��Kۼ��1�Z��\��z���h��)��NZK1^����ς�K�����3��?�R��1�Zf�hh�I�qh�I�f�e�� J�ۃI� < d����e��Ue�e���J��Q'�X�iSde�_H�iSde��0�iSdqiSd��L�he�\I�I�e�h�b�I�i rd����e��kK�B�e�e�h�I�fs���iSdiSd�I߃Iߡ�I���U�^�?b̃I��_R��:���qϤb�f���Y��J��e�Le�L�Y�e�L�U�Y�Y��J��0U�Y�0U�kd�ᯯH[��0U�Y�+�Y:��0U0U�>H[��0UH[��0U/D�ϮY�kK�B�eϮY:��0U��fs����+�Q'�(L��:���:�C��d��:��:�4����(:�nK�r� a�a㽭f�y1oby1y1y1S�=4���ob4����+��+��+��+���U�^�?b�:�ob:��S]���>\H[��0Uob�0U��̤b��S]����+������C���vc�O�_REZ��_R���K�`6��d�_R���+� 9�z���+ৄ���-��C6��+� 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�f҇�`X�Y*w���O����O����z��a� �w}�� ���܊�������X\܃f�{wN��w��}��N�ܡ ��}���N���O�����O�������g�W`��h���W`��O�������z��h�O����2�K�����O����f���ܿ����l�4�4�l���ݜQ'o����^�A❣�w���w����&� �������.�P�� U�g�����c��P�� U�g`#���}B]�}B]癝�`B��gc�:����g���g�W`��h�W`ȡ&� �]��z��h��(F��T���١&� &� f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f����b�c�O�ͣ͡_R������.�t���g����L�@�l�N��}B��g_b��]�R���e�J������`�(%�%�g]�D�a`#����=覦.ܞ��g� ��_R���<�?A�z��hU�V��ZP���_RN`��_R��f�[S�9����K�YۢK�Y� �K�Y�_R�����=��<�]��N���_R��W����b�c�O�ͣ͌�T������.�t��d ���H����YK���v�⦦���f�{��y1S�=�+��>�.ܞ���l������y���Ey���E��gɪ�V� g�ݑ�h��Kۼ�ȃT����U��z��h�����X�d��؃T��f�wvm���#W۬�g�v2bc��``b2b��N@� ��b<`b2b����b�c�O����L������b_R����Q'ikK��L蝝�L��L��L��Tߝ��4 A��<��Z�L�P��I����gQ����gO���%�%�g���ݩ���gة���g��gɪ�V� g�ݑ�h��Kۼ���L���z�h���L����L�f���g��(�VܤVܥ�Fb�*H�����_R����vc�O�f�{c�O� ��݅ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B����S����V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$����S]�D�af�ΟӀ� ��� ��y1S�=e��N/� �������ۡ�g����g�1`z���z�z����vc�O��������U�V�5L�MS���M� ���g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�G)R�w��vc�O�I����I �`B��gc�:���9F��9F� ���d�ۗ��J}�]��dX\�gc�:������ۡ�gc�:���#F����gc�:����g�w����V� g�ݑ�h��Kۼ�ȉ�h�������W�L����N����-�� �>�2�]�c�:�[�K1^������S��J}�f�����K1^�\Q����O$����V}l�Y`��������MP��. ����W���������,[}�����g�%�I�� 2�*1�I�� ���g��I�� ��I�� @�\�T�b�*b\�g��gɥ�����d ���j��j���������V� g�ݑ�h��Kۼ��1�:I�� z��h?�9K��^CO$ ���1�:f�t�_R�Q'����.�t�w���lw���w���lw�����ŋ������_R����[�v�v[�v�vc�O�]�R����Q��]���1��/b�e��g��S�_R��gk��Qle��� Tg����Q��]�e!^g��g��_Rc��� �n�bOܐ_R��_R�f���g���� ��� ��[�vw�������������b�gy1S�=��gɪ�V� g�ݑ�h��Kۼ��y��<�t�@������^�/��6b��z��h@������^�v�A�v�A�+ �D����F��e!^���[R���t�@������^�p������������6b��z��hz����������6b��z��h����2�/����������������f�}�d��]��ʇ�a�w�����<�]��z��a�w�(� U���#F��܋�w�}�d�l�4�4���ݜ����J��w��e!^�e!^˧��[R�� ��]��c�:��c#��]��c�:���#F����gc�:����g�gȞh��d�K����<�]��z��h���T�&��#F���r�)� �����<�]��f�A ⧟ʜ�A �\@��v�A�˔����`B��*��#�\@���X�^��_H�T���`B��*%u�0���S����g�=��g��d���=���=������i� ���de�����۔�����۔�����gɪ�V� g�ݑ�h��Kۼ��a��E@K\��z��h��ۥi Xi������2���a��f�$���]�(���k`89z�`#��������^��7�lE�V���DU�j��DU�j��g���aS�]��c�*�]���'�E�]��� ��]�����(S�=c�:����g���ܿ���������g�W`��h�W`�iC����]��z��h�2�?U��iC����iC����]��f�\�`biSdl�vc�O��K��M-i��㧄���㧄�s�����n���������3�����3������<���<�� ܠ�d���=���=�������^T��������gT���������|#����ݓ����y�l.ܞ�������� �������ۡ�g��gɪ�V� g�ݑ�h��Kۼ����l���X�z��h���lf�$��}�d��]��ʇ�a�w�����&� �]��z��a�w�(� U��Nj�w�}�d�vc�O���ܿ����l�4�4�l���ݜ���w��e����'�E�]��&� &� c�:����g���g�W`��h�W`���&� �]��z��hnKیL�$���X������&� &� f�nV��7�YnV�>�2��7����G�A;�����'��7�������7����c��#��7����c��#��7�c��#��7���g��R�g����h��K�]������V�M-c��#�lDUc��#�l�X*�M��M-�X*������M-�^`��t��7�t��7��7�z��h�c��#� ����7�f�+��y� �:?��K�j���܊��c���CQ'�Jb��K�]�(�lw���Q'q�y��K�j� ���܊�:?��K�j���܊]�(�lw��[&�&�l��l�ޟuY0����K�j����c�Z �e�l�ޟ��#F����g��g�:?z�T��h:?�:?f���g� �����g�$��}�d��]�����o����^�A�vvvc�O� ���c#��]��#W۬�g�vc�O⇉a�w�����<�]��z��a�w�(� U���#F��܋�w�}�d�l�4�4���ݜ����J��w��e!^�e!^˧��[R������ �@�c�:���#F����gc�:����g�e�������g���he���������<�]��z��hN���r�)� �����<�]��f�d��c����{���{���J�5���ojꝝO��r_�O"O��JWܐ�Wܐ�_�Wܐ��{���{�ޝ�O�靝5���oj�#W�O_�b��ruWJ�*��5�*��5�_�f�w� ߁#W�OO� �w��ށ#W����P�_�a��f�oj�_R�oj�foj�_R�oj�f�_� ��_R�df����{��f������_R�_R�#W۬�O�O�#W۬���5� ���_R_Rǝ����`��e���K�j���܊��K�j� ���܊]�(�w��e�&�l����K�j���c�Z �e���_R~�>����c���CQ'�Jb��K�+��y]�(�e�&�l��c��Q'y#S��q�Q'q�y��J��v?�R�G)Rt�]�(�vw��e�&�l��vc�O�l�ޟuY0��~�>��l�ޟ����#F����g��g��?�Rf��NY��/b�H����vc�O�nL�aՌn_RT��զ��ʌn_RT��w_RT��ww��Ռn_RT��t�k <�n_RT��b�O� ������y����y���=��g+������C����-]�D�a��gɉ�h_RT���،n_RT��f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�j{j{ �O� � �d��c��#ݍ�d��M�Q�k��c�k��Qr�j{��j{d�� �(2�5�j{(2�(2�����d�� ��d�(2�c��#�f� � �(2�j�(2� ��J��sa � �U ��� �(2� �� �A(2�5�f�� ���܍�U ��J���M; �` �� ���f�k��Qk��Q����(2�c��#=ߠ:��]�L�%a䢢����*�b_�a�]܅�f�%a�OL�P�V�G��_�\�`�i�Q'�f�OO␢ � �\�`��_�a�\�`�f�Q'� ߢ�O⢱ �G�� ߧ��_�a�f�����$�e̢�]��W`g������� sTN��X���$�e�䐓�nKq�ӓ���䐓�f�h�\��\�h��C��k���J��h�\�h��C��kh���oC��k���J��h��C��kC��# �C��kk���C��k��f�//�� �� �b��c��f�A�# �ob���-̓�?�RG������ U��?�RgD�A$��?�RgD�A��ݓ�?�R��"�6���R�Z��"���R�Z���Z���I��R/��I�Z��f"�6�"��I��R/�fs�"������"��Yޠ�� �p��_�a�p� 躺� ���R/���?#�\IKIUX�pA����?K�I]�s�K(BUX�W�ߪ�@ Xps���� ��6��6��6�� �GD���R/��I��R/��I��R�Z���Z����RUX��T�����RUX��T���b�r���dP�R��b�H[b�������������r���H[r���dP�H[dP�H[x�\���\��� ���|�_2&�T�J&�T�]��H[��T��e��T�H[�H[-E�kZ��@r��(���r����8�(��� �k�����r��r��(���r��8�(��� ��N��[���������q����&�y�Y�+ހ-���d�r� ad�bS��d��]� �z&� ��fd�b�]�(�-ɗ�p�����nKҗ����`����җ�]����`����Jb�"��X��]���*җ�H@ ��fd�bd�b��J�ۗۀ-]�(������/�C���d�b�җ����`�����"��X��]���*��/�Cd�b ��fp_����X�&�]���* ��f ��e�^nK��$�e���i�<��=���*�K� ��$�e���� ��$�e�UX��N��c[V�[V�UX�N��f��UX��N��cM�Q��M�Q��UX�N��f��i ��ai�����������O� UX�UX��N��"_fc&�I�&�Iܝi�-E���&�Iܝi�UX�N��UX�h�N��i ��i�i f�UX��N��c��fN��A �0U�h�N��c��f�ۡ�������b����&�I��������b��ob��f��ob��`B��obc�UX�B��obN��UX�B��̝����N��UX�B��N���Ο�-EܟӀ��e��N/詩��g�1`z���z�z����vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf�������I�����W8K�r��W�"_�����8K�r�����iރ*��A ��oa������TI���8�COf�ruQ�rkZh_ s�8�COmla�_ s���e�8�COmle�TI�|�j�W�xN&ހxN��X8�CO]ܞa���T�����X8�COf���x��+�_������ ��pqx����M�I��� �d����d����W�xN&�f�ru����x��a�����a�������rruDZ�Q���mlobi~Q��\F���A�Q������b�c�O�ͣ͡er�)����.�t�e�J�Or�)�����������W`gr�)�����������W`g�e�J�Oe������������W`ge������������W`g ���#W۬�g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����er�)fҝi~�C�\�`�C�s��C�s��C+H���C+�C�V��C�[&��C�i ��C����i~�C�\�`�C�s��C�s��C+H���C+�C�V��C�[&��C�i ��C����\F�ob5� �����5� ߝ�C�� LA�b8K�܁�� LA�bY�X��ݢ���f�r�d[�Q�_H�W��W�ݣW��f�d[�_R��d[�Q�_H�f���C��E���OEZ�rEZr���C��EZ�p��NZSf�ru�ۣy�EZ]��rEZfy�EZE���y�EZ���y�EZ��^��ry�EZry�EZru�EZyi@�y�EZf�_R LA�bC��C��ruE�� �_RC��E���OE���Of����ru���]b���y�l�>�2�W�L�d$�裣f�j{j{rc��rc�rc�i=�������/�Cj{�f�j���j���/�Crc��rc�rc�j��i=���j��j��f�����f���f�j�܏���obc�T]��d�oX��j�܏����4��j�܍����ob��d�oX��=�ܕ��C�_H�Ȑ�P���_���=�ܕ r�&ܴȢ�����Kۼ�]@�=�ܕ�� r�&���.�$���[�]��N���C�2�=�����}����}2�=�f�C�2�=�C�2�=���� 2�=�f�/�� �/��2�=�f��� �܁2�=�f��� �C�2�=�f��7�o�7��7��7ޱ�d2�=�d2�=�f���ru��ru܁�7ޱ�C����7ޱ�ir� XkZkZdd2�=臉2�=�|�=�@�>ߏR�u�e�J�|�=�@�>ߏ諺l�j�_Rǃ��j����_R�\F�`B��ob�����dޤbdf���̡:���=�ܕ[ =�ܕi ^TiQ��K��E\�e���K�0�]��N�����X�@�\i~i~V@�f�ru>\i~fV@�8�S����d��[&�Q�oby1y1S�=nY�c���ob�nY�y1S�=nY�M��obM��W�nY�y1S�=���CP��j�ob����CP�i~obi~���CPܡ>\����CP��ni�ܶ�(������� �_��J��_�""i�ܶ��i~�b�f����U"�����U"���U���A �0U��Y�X\�c���U""��4�䯯n�b5��.�U"�i~������k�����J�����d��B�en���fs���B�eobK�B�e���nob�����.ܤb�.�g��]�D�ǎ������p���Q'�uY�l������}��}��}���F��V�e!^gɧ r�&���g�W`��h�=�ܕ�W`�����������z��h�����&����>�2�&������gfғ,l��-E���Z�K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�iQ�&T�d :���_�]��N����0�JW��J��e�L��j��i�i���C���J&�T� ������X�J&�T�L���nY�-��6�-��kZ��kZ�EZ��rEZ/������W ��X��X�Ji� �����&�T�J&�T� ����L��&�T�J&�T�LQ'��Q'���{�M�]�*��J��Q'��`B�P�J�-�kZ�Lf�Q'Pߏ ��f�{]�*��J��]�*��J��]�*��J��D�b]�*��J���Cc��LW��X�J��J8�X�JiS ��J8�X�J]�W�� �LW��X�J/�M-]�*������������������W ��X��X�Ji��f��=��=���X�J�X�L#��J�L#��e�eゞl�����M�d=������L� ��������$$�e ��� ���vc�O����I���I�W`g �C �C����l���I`#����U�^�?bl���I���I���I�W`g���������l����g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�y��[��� ���܊5� ߝqVlt�����K�j���܊]�(�t�w�����[y5� ߝqVlt�����K�j���܊]�(�t�w���&�l���������`B�]�ɝc�O��#F����g��gɤb�����_R����j���c�Z �e���V� g�ݑ�h��Kۼ���#F�����R/�Q��q^�����V�qVf��������$$�e ��� ���vc�O����I���I�W`g �C �C����l���I`#����U�^�?bl���I���I���I�W`g���������l[�ީ���g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�_xUH����睭nk��W0�f����n�����nf�k���睤b���f�2߄�n��n�2߄�q������睤bf�H��_xUH�����U�^�?bobn���] �2߄�2߄���] �ob��̝n���] ��ruh�������Q'�X� �����1���X����1�� �� �` �f4��� �����1��$�e���1�흱$�e��W�ݗۢ%a�W��f��W��q/�C_H��\�`q�ۗ�W��f���ӗۗۗ�W��f�L��M���M䢅�8Kܢ��f��8K�obru��&V�ɓ,�z�J����t��<��l5��<��l �����<��l /��Οʫ��c�O�k��uYZ`�z���#W�t���g�����7���gɉ�h��NZ����nfҥ]癣���]�w����b�3�܌t���g��gȞh��d�K�ȉ�h��NZ�����3�܌�b�3�܌fҬ��{t�O�� U��������: s�����:�������P�� U�ge��g}B��g��g�gȞh��d�K����{�_�A��z��h�UX+�j�i�����{����:fҡe!���t��=��g ������ǢA �T�b�*b\�g��gɪ����� X�)����ߞ���R/����c��� �������,���c��������e!���� Xf�\�`\�`hGB\�`��_���h��df��li=��lf�p� J��p J�ۇ��-E܇��p�&�U���� J��f���I��_xUB05茛t�f�_xU�rj���_xUru��_xUB0_xUB0f豦j�����������ob��̌[H���g�$��}�d��]��ʇ�a�w���&� �]��z��a�w�(� U��Nj�w�}�d������L���&���&��ɝvvc�O� ���v��]�R�ܝc���ru��ru������U��靝�c��"c���ru�ruǝ�����l����l�5� ߝ�ͣ���e�e�J�w�������-�q����[�b���_R�������e�J�O�=��g�=��g�������e�J�O�#F����g��gɉ�h�NZ����f�e�@�ʫ���b�c�O�ͣ͡�����.�t���gɪ�V� g�ݑ�h��Kۼ�ȉ�h��WCj��������fҝ����ܿ����w��`#���y�l ܡ&� &� ���(S�=c�:����g���g�W`��h�W`Ȳ&� �]��z��hDzJ��V@��3�ٲ&� &� f���l]�D�a�(�VܤVܥ񡦦.ܞ �������ۡ�g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������TNlf���8���w�N�ܒ�|�QN��S�nY�Y��N�� 8㫪d[��K�d[�fZ�RY�r_����_bf��ۡ��-Y�YK��� ����8�����S���S܋ދ�W�L�W�L�f���� ����S�f�{c���W�pxNpf�{��S�f�� ���f�{c���W�pxNpf�{��f�� 8`��S�f�{� 8`��f�{� 8`f�ލ����ob�b�W�LߓT��Y��M���dsaY�Y�Y�Q�r��Q�r��f�I��ruxNL�ruxNW�GQ�f���qnK��d��qrf�Y���dobru�̱�,�z��|�|�GQ���|�|�GQ��|�i��+�rc�r��܊�rm"�NZ ��_ܛ|�GQ�f�md�f豱̫��rru����K1^�蝾� �J�]癱 �J�K�ob �J�e��P^�� �J����c�i=�Y���� �J�]癱 �J�K�ob �J�e��P^�� �J����\F�ob5� ����̝GB��5� ߝ� �J�D,(,_xU�D,_�a�(, �f�j�a�����_xU�j���_xUf�4��� ��nj���X��c���A���⥃ ����>���vc�O�k1`[R��w�������V� g�ݑ�h��Kۼ����(N<��(N\c\� ���\�`��g����ۡ�g��gy1S�=e��D��e�\�`#�����,�����Z`f�}�����gɪ�V� g�ݑ�h��Kۼ��`B�?�R_��z��hK1^�LcbCd8���7��`B���`B�?�R_��f�+������C��m�M�l�����g�n��bH@զm�M蟦�����b�c�O��V� g�ݑ�h��Kۼ�ȉ�h��NZ���ؤbH@fҭ�\I�f��V�X�DU�0��X�f_xU��V�X�f��X�޻���|�i��bk��_xU�0��X�f�TI��(mTI�h�(mh�(i %�f%��%�lmob�m�M��\Iob�������̡d:�%���t�e�k`e�k`b}[]�D�a���gɪ�V� g�ݑ�h��Kۼ��>M��n�#F��ܞh��ӟ ���fҮYk�+�t�f�i~ri~a�c���i~ai~�Y8�d���坮Ykf�i~a�(8�d�����篡�+��f�{Lx��Lx��L�f�{Lx���f��K��Q'@�P�B\N��,���B\N��,�����[��Q'c���C?�Ry��&�W�V� ���܊���܊5� ߝ��P�t�@Xw�;�`�(&�l�����xN5�����xN5�xNf�f�ob��xN[�[��̝xN[�[���ͣ���e�e�J�w���-�q��������ʤb���_R����k�.�����e�J�O�#F����g��gɉ�h�NZ����l��f�/�\����`j{�X\�qL^`�\�L^`�\�f�a��=��3������*i~����i~ppruxNqY�D�ra��\����`f�j{��j{C��w��\��LWqj{j{j{�X\�f�i~�i�i~af��UL^`����V�(��Y�D�fL^`�����H[���CP�i~i~fruxNq�=�ob�����CP��i�i~obi~���CP��L^`�����H[���CP��y���y�Q� ܤ J�kZA �N/�0U���y���y�Q�X\����e�^�kZ���A �N/�0U���y���y�Q�X\����e�^��_YkZ������y���y�Q�X\����e�^��_YkZ���A �N/�0U����������f�dN/�̝�y���y�N/���N/���N/��j��[}�aD���TN�TI�TI�j��TI��63�[}�aD��TI�TI��63�@�TN�TN�Y@�TN�TI�;"�TN;�`+��TN�TN�-��TN8��TNd�TNdf�Q'�YL^`�����݀�L���TN��TN������T��������TN��TNf�;ob������TN�TN��TN�����@�TN�@|�TN����@�@����ru��ob��l��TN�\��Q'_R�:��ikK���^ ��U�_Rk��Ql��Tj����Q�c��k��Q���Tj�����8��]�R�ܡ_���d�B�y�����_R��d ��Q��[�l�ޟ��Οe!^���N� �靟�%)0�8�_��Q��gk��Qlɫ��d�����d���f,���,���ffd�����fd�����f]����]����f������������f�e�J������e�J�����fe�J���e�J���f�cb��������cb�������fcbC���cbC���f|�������f>\���g�������f��������g�������fob���5�]�(��#F���n ��H�fmob�m�M�_��ob_� ��V���ܶob ��V�c<��Jde���de��obW��-�ob���-f�{�f�{��obf�{ ��V��j����ob�]�D�af�ob�]�D�a�����TN蜤b͜� �_� �_��쥌|�c��#� �_�͢de���(X����n>M�圤bb�>M������b�c�O��(X����t�_K��^��V �.ܞYK� � �S�=I����I �y�l�l.ܞK�����-�KZ�lKZ�l�=��g��g� ��g���h ���)����O����� X�_�a��(�=���(X����f�������]� ��ۋ��-E��&��˟uYӓ,[R��S���]� ��ۋ��-E���&��˟uYӓ,]� ��Jb���S����ݝǙI�W�``B��g�vc�O���˲mW�m���ge!^�h˧�����-E�� �����g��RYgH���h��K�H��c��爂;�����D���z��hc��爂;���R/���c��爂;�f�n�L�_զ�L�_t覟��(����b�]ߦ�=覦+������C�� ��V�����) A��ۦ��S � �S�=�ly�l�_R��g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����L�_f��������$$�eΟ�-EܟӀ��vc�O� ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��P��I���z��hP��Iʩ��P��I����gf�W��_b��Z�RW��_bf����߀���j��r�_bW�L�e���S�S��M-A,?���J��qS�e���S�^Ce�^Ce^Ce^Ce�xN�����i��V� �*��� �`i���i�ܣG��i�ܣ_xUH��m�M�L��@�d?�_xUi�ܤV�i��i�ܤV�vmvC��ܪ�_RI��W��J��|�i�_xU_b_bW��_b��Z�Rf|�j��ǣj��W�L�S�S�H[�e!�a�^Ce^CeH[�e!�a�mob�m�M�_bobj�]�D�aj�|�i�obj���ru�W�L�W�L�L�������e!�a��.ܞ.ܞ���b�kc�������d��դb5�.ܞ���� �_�L� �_��_���b���Wi�� �_�_��p �kf�.ܞ.ܞ �.ܞpUf誒�|�i�Wd[�e�J��d[�d[�j�j�l��l��j��K۴�K�j�hcb �"�_@��c�:�lP�܉��K۴j��f�Wd[�obd[����W�b5�ob�b�.�g_��ob_� ��V��obj����_ s�obj����(ob�]�D�aj�ob�]�D�af�ob�]�D�a��̤b���W��� �V,�� �q_������L�;�O␢�� ����V,�� �f�;�܁Y�4�O⢢;�f��a�dLi�����a�dLi�r�)��V,��X\������r�)��X\��X\ܢS� ��r�)�� ����r�)�y�TS�=�xU�k���@��A��� �Li��� �V,V,�� �f��� �����)R=ޥ��篢ob����������P��S��E�xN� �������裣��U�_bςTr� �������������� ������U�_bf��%a���N����L��A��^������� 7U�� ��K�j��W�L���K�j�� � ��K�j�� ��X��K�j�N���� f��N��W�LN����N��N�����W�L����N��N��W��f��W�L���K�j�%a��� ��X��K�j�%a����������T�W�L�fpI��ob;������d�l��UX/�袁LJ����LJ�UX��LJ�UX����f���-Eܢ�LJ�8pLJ�I�LJ� J�۠-Eܢ�LJ�%a�ru�ޠLJ�pLJ�LJ�[Vܠ-Eܢ�LJ�8�I�LJ��J�۠-Eܒ�LJ�ru�ޠLJ袁LJ�%a��LJ�ppLJ�pLJ�LJ��NZpLJ�I�LJ�LJ��LJ�ru�ޠLJ袁LJ�%a��LJ�pLJ�LJ��LJ�UX��LJ����LJ�UXf|�7��7�rpf�%a�ob�L�����obUX�LJ� ��V����7ޱ���LJ�L��A �0U��bkc���n�b5�t�f�d[�Ռ=�Iܶ���j�nf�[�sa�br�� ��y����A_�� ������c�_�� ��p��f�]�D�a�����|�i��bk��_�d[�f�b5�ob�b�.�gj�ob�]�D�af�ob�]�D�ay����Ae�L�ob����ۡ�Ռ=�Iܶob.ܞ`�̌���l���S��g���g��(�VܤVܥ�Fb�*H�����_R����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�� ߤQ'v ���]�(�yQ'q�l5�n���%�+_����;�`]��5�fS���ob�P��W��MobP�܏�Y_�ob_�P��+�b�loblP��+�b����[H���D��S��v ���� ���lg�#F����g�n؞P��W��MP�܏�Y_�P��+�b�lP��+�b�-P���j���j�w��m�P��m�d���&C� ܙ+ ���i�� ܡ ��ruc���nKc���A��ru�^��c����NY�K����`M�Q�f�5�oj�_R�5�oj�_R�J�#W��d��J]�D�J�5�f�#W۝5�nK�5�f�ۙ+ ܗۍܙ+ ܗۙ+ ܗ���+ ܗۓ� �� ܗ��nK� ܗ�&C� ܗۡ ܁#W���f<۝���ob��\F�GWob;���_R_R�#W۬�̫�Li�k��y������c���Q'@�P���[��B\N��,���B\N��,���y��&�W�V� ���܊���܊5� ߝ��P�t�w�&���y���k&�c���QA ���P�"Q���J�ۋ��lK�S�l��^ �K�S�l�(&�l̝c��蝝]���c���S��S��8NZk+�`�k_b_bMS�MS�8NZ�MS�8NZ��MS�8NZ8NZC���8NZ&���fs��]��S��_b��ob�Y�d`�]C�ob���GR���c�T]���Z��Y�d`�]C�_R�����Y`������.�t�v�Y`����gɋ���g����$��}�d��]��ʇ�a�w��� ��]��z��a�w�(� U��Nj�w�}�d�v��Fb�*�#W۬�gɝvvc�O� ���v���ۗ�W���� ⢋���Y�W��f��W��q/�C_H��\�`q�ۗ�W��f���ӗۗۗ�W��f�L��M���M䋏L������f��Dž�8K�obru��&V�ɓ,�z�J����|�d]�C�S�|�G2��C�S�|�C�S�S�MVT����M-����M-��� � �\IT��C��S�f���|Be�|� �|�� (�ruC�C�e�JS�MVc�����������|�C�S�f�B�@iQ��n���ruru���S�ϙ���j�j�c���@�C���j��������|ࠗ���f�Q'������@�C�f��j�ܠ݉�a>�2ߝ��P������P������P�c#��̝ ���rܤ��������P��"""c��c���""i�sa"]�""A"""c�۽f\F�obi@��^���Z������>�2�G2N�����G2Nc��>�2߃�+5� ���X������g����](O���Kۼݐ��=�ܕ�+5� �]��N���H����vc�O�n�զ�����- ����ۥ�g�i X�������������N�����������������t�t��������X\�=覦]�D�a��g�A �0U�h����=��]�D�af����]�D�a��g��g�H����vQ'o����^�A���ܕ�o�c�O��o�Q�]�(�����<���g�W`��hK�Y��=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f��Li۔�4���������������d ���vl �@<����Z�@M��nD���e!^ۂ�\@�>M��nD���ۂ� �M�>M��Q'���e!^>M��nD���e!^ۂ�\@�>M��nD���ۂ� �M�c��� �k <`t�_R�5�Q)D�c��� c�O�_R�i��-E�_R ���e!^>M��nD���e!^��e!^Y�T��ۂ�\@�>M��nD���ۂ� �M߫���b�c�O�4�:���ݜͣ͡��0����.�t�i ����0�d�d����H��d�.z���d����g� ��g���h� ����0���H��d�.z��h��NZ�����0f��]�� r�&ܪ�V� g�ݑ�h��Kۼ��e��E�l���e!^�?�R%�%�g��W`�b sTN�W`g����v�E����P �P ���g��E�l�-2��z��h�X���-2�e��E����E�l�-2��f�P��Ssa�t� U ��V��y��#F����g ��V�l�ޱRG�RG�}����g����H[�\@�\@��W`g ��V�D���g����D���/b���gɪ�V� g�ݑ�h��Kۼ��P��Ssa�z��hǬ&ހ-���P��Ssa�f��TN �JkZnK�j��D��TN �J4����X�^����y�TN �J]�y���Q6����f�i��TN �J4���TN �J"�TNkZnK�;�`+�kZnK��TN �JfK�]癱 �J��TN �J�M���#�������c���c���}�^�N\F�[N��*�b���*]��*�b�\���*]�D��A[N��*�b���*]��*�b�\���*]犆��[N�[N�]����,,���[N��*]�[N�[N���[N�G)R���܊��ZV���ZV�V���܊W�^�](���V�^���Z��܊W� Y���ZV��3���T��Z^�W�V�V�V,^���Z�a���Zf�Y}�>�r>���Z>��Of�����>�[}ru>��Of�>��d^�}B]��W`g^㱥��dF/��\�XL�@�1����(�K�i?�豆b� #�*�i�p"q �qpf�\�`\�`hGB\�`��_���h��df��li=��lf�p� J��p J�ۇ��-E܇��p�&�U���� J��f���I��]�Q����O�W@ Xq �nK?[��q�����=���f]�Q����O�?[��q�����=���fQ����f��8K��_H�W�L����q��?[��f�E㋏L�������fru����E�+@����>�%��Wߓ�@ܹ���O����B����A�H[q�� �� �� �����O����GQܝf�8�[&�d����oby1y1S�=��@ܓ�@܉�a���A������]犓� �� ����A�ob����B����A�ob��̝����B����A��Lx��Lx��Lx�۝l�q�q�q��l� ۝��f�|� ܡ �ob���l|� ܡ �ܝl�/b��l�^���5�f�ob�l�/b�\F��l ܝ��I�-�GR��0���P��I�I�5���,�M��f�{���If�{�I�I���R/� ��bY�I��Z���I�I��If�{�I�Ip�If�{�I4��UX��f�ob��obUX��T��̝UX��T������b�c�O�ͣ͡���C�r6�����.�t�%u�0ܞl�=��gd d �d d �d d ��g��g��@]癞hQ�&�]白������C�r6�����?z��hC�r6�kCU ������C�r6�f�t�r��M�:�M�:c�}��M�:,���ru ��=�r��a}��-}��M�:���t蝥�M�:f�t�}��M�:,���ru ��=�r��a}��M�:���t�}��M�:f�r�ob�}���t�ob�}���=�`#���ob��̝�M�:5� �}���Q'j�ruW���=�|�i��bj��=�nK�\�`�j��=�nK�|�i�i ܇I��qW���=�_xU��޻�=�f���鉯�mh�m�X\�rnK���hf�mob�m�M�rru��=�`#����]癝�DDsa�D�a_H�D[��D�a_AWf�D�a_&��b�8dW� b�&��bD�a_Wf�D&��b�@�D&��b�@�D��D�a_H�D&��bD�a_��8df��fE�+@��ہ�ہ�ہ�+�"����X��ہ� ��+�"����X��� ,W�V������*9ہ��*9��*9?� i�i�ܝ�*9ni�A ��i�i�8^�i�i��*9 �(��Pi�i���P�*9��P�4��� ���*9��P�dt�f�d/D�kdf�G���Gc���c�k��Qk-�� ����c���� �`Q'EZ��c���d_R$�ed�$�ed$�ed4�$�ed$�e[�df$�e�_R$�ě$�e�$�e�4�$�e�d$�e�����*�b������V�����]�d������i�V��������V��������V������������*�b(\d[�?�\ �����*�b(\d[�]\ �d[�]�d���V�" �����*�b]�df� k��� ���D���< �D�\D�\��\ k��f�D� k�� ��9D���U]�W�]��=]��3>U�b_@��="q�b4�䠊� ��_x���_x�۠�_�a�]⸠���a�_x��O�_xf�k�Aky�f��a_y/K���f�qq��[��nKq�qqsa�q����[f�]��/�C�_H�]��/�C_H�f���Q'�Q'Q'Q'Q'�P��f�YE������_xUj�j�|�i�jDj�"_xU�jD_xU�_xUj�|�i�_xU�_xU"���|�i���|� f�{|� ��fd+ �|� �ݢ�q|� ���r�)� ��nK�f�{���|�i�a��ݢ|�i��'J� �|� G�|� ��Հj��b|�i�+� ��V�|�i��f�r�)� ��nK�|� j�|�i��|� _xUa�|� G�|� j�|�i�j��bj��_xUj�_xUj�j�|�i�_xUj�+|�i��j��b|�i�+�j�|�i�f�b|�i�obj���|� G�ob|� ���qj�|�i�+��T\� ��V�|�i� ��V��袝�[V�\,��e�J���❂N��\I������⢝8�������j�����G�G܂N��\I��ܝ�N��\If�\,愄���] ������2߄���] ۝���̝2߄���] ��s��J����R/�Xc�T]���R/��X흰y�y�4��s��J�۝�y��<�d�J�۝s��J��|��d��s��J��S��S����ddds�-E�ds��J�۝s�\Id��ds��f������R/�X|������d���R/�Xfs����fc�T]����d�fc�T]��#=�s��fs��|�ǝ�|� O␢O�L���rusa�� sTN�� dk�ۢ�Lx����_�a� � f�O���f� W� L��O苏O�Y���r n�^�Q'_�a� f�OP�VruWܐ�_�f���̍����ob�GQ��ooob_�a�of�o�o]�[�A,oq�_�a�obob_�a�of�oH���_�a����obLx��obob_�a�ofo@ Xd[�qoof������a�a�$8���J/� ���V�����p_�ۀq��߹b�)Lx��ob_�a�o\If�ۀ���ob�)� �o��)l)肂e���S�W �ۂb��e���S�"W�d[�S�f�]�]��=TS� �\� �?���<��X\�U�Vd��������e�J8���� ��oS�e�J"qۂb�� �N]�TS�@ X]�S�qS�p"O␂Nq�N�NS��S�]�S촣�Np\� �e���S�f�8 �obS쪣 �ob�����EWobW�����Eۂb��W �ob������E�S������E���gɃFb�*��Z��vc�O�v�c�O� ��ݱ�d�܍���}��Q'o�����S�������w����ͥw����w��}���ʀ��b��gɪ�V� g�ݑ�h��Kۼ�Ƞd�����z��h���b �\���9_���ؠd��f�%�%�g%��e%�g%��9%�g�(%�%�g����e�J������``B��g�vc�O���g����ۡ�g�U�^�?b,�����@��b�d��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����i�7���f���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY���E�z��hz�������]� ����&��˟uYӓ,e!^[R��S���]� �����&��˟uYӓ,]� ��Jb���S���W�e!^mWѫ�e!^m���ge!^�h��˲e!^���[R�� ����E�z��hWܐ����R/�n��ԟuY��ԟ�fү�5�b�X\�c�������d����N�^�b�k��m�Gm�t�f�G���c���G�^i~� Jc���c���__���Q'c����qW JhLhLi~ JLF��e���F����i~LF��e� Je���F����i~e� J���m_Gm�f��k��j��J��j�j�k��D��Nj�"զ���b�k���D��N�b�kf�hK1^���^d[�+ޙhK1^��G)Rd[�+ޙh���rmi \I�i ��i~i~����N�N���mm����i�<��=���*�� ����C���C+��ܦ�t������Lc�O����K��PJ��PJ����g�_R��g������g�H�9����2EiSd���K� ������K�����gf��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�iQ�&T�d :���_�]��N������HE����HE����HE��HE����H�HE�I�}"�*��I�����#�HE��[��I�P^����X�����ZV���*���kZnkZ����X���ܴ���X�ZV���*���kZnkZ��X���ܴ���X�ZV���*���kZnkZ�b�X���ܴ�����kZkZneれ��������X�eれ����Q'\F�de����Q'\F�de�����X�eれ�����Q'nY���u�ur���8u_�u��L�����W_O��� �u�Jb�ui~���_�u���uf��Jb�u�Jb�uu�auu_�ui~����_��NZ�(f���NZ+މ����8����W_O��� �u�Jb�ui~�����Zu���u�Jb�uu�au��Z�UXi~i~u�ru��ui~������Z�NZ�(f����rc���8����W_O��� �����Jb�ui~���Su���u�Jb�uu�au�ui~����S�NZ�(f���NZ�UX�b�ob��(�NH���(�(�NH��obu�NH��������ob�(�NH����R/��UX�����NZ��(�NH�����]��k��q��k��S���_@���]��Uq��U��]��kq��k��B�e����P�]��qs�fs�k��-E��]��k��U-E��]��Uk-E��]��kV�"�s����c�T]� ��S����B�e��R/�s��I��Lx���fs����&�\F�f���f\F�l�k��c�T]��S���O�k���k��f���Uc�T]����B�e�O��UUf���kc�T]����B�e�O��kkf�S����B�eobc�T]�c�T]�V6YW�VT��K1^�]�D��V6YW�VT�����[`�_�O�f�`���[`�_H�f�`ޛ`�_�_�"��[_���[`���[W_ ܛ`�+��fD`���[`�W_`�_�i�`�_�W_�J��`�W_`�+�f���[_� ܛ q��f��[� q�f���[_� ܛ��[��f��[�f�.��[]��`�_�f��[W_f`�_�W_�_�p��[f� ������ �����̡��d�@� �i~i~i~��P�kH� �� �� ����P�_f�K�>\�i�GB�� +�K�G�>\�M�i�GB���i��i�Yj�ܠ�f���@�P� ��*� ��f�i~�ݠ���fi~�������i~f����i~��P�2�?U��P�*� ����P���aSHܡHܝ��>�2ߝ��P����e�Je�J��e�J�e�J�� �b��e�J ��gn ��ge�J�O�W��� � ��(%��(%�%�g���D�0%�f��?�R�?�R ��g���D�0e�J�O�fdk�e����5�� 圝�� 圝��N+� ob ` ��ob4��� ��̝ ` ���j�Ij{`j{��GB��`_xUI_xU_f�GB��f�j�Ifb����#�_xUIf�j�Ifa�M�hhp� Jhp � A�a�ha�p� JhG2 �|���R`B�G2 ��dÝ��R`B����Ý�>\f�hh�|���f��hfob�Ǟ ��B��R`B�ob>\B��GB��ob��B��fb\����������ۡ�̝��B��軄���l,����CO��iSd��8���������r�����r��W��z��W��z������ۂb�� �i�iSd�����Jv���v\�_Y ��J���J�J���nK�|���C��C�� ��_�����o���:i�o<�0���_���C���C���r��C���0��C��C�� �� �d� ��v�i���S���߀�߀S���X\�C��f�{C��w&�w&��b���� �怠�@ Xd[�q��L�� �� �iޠœ� �&�ܓ� ⠠�� �� �,�� ���L� �&��b�wZ�)R�� �i�]ܓ� � �&��b�&�Z�)R�� � � ��&��b� �&��b�f�Z�)R?���� � ��&��Z�)R?���� � �&��b�f�.S� �i���d������ �i���d����i���� �f��� ጱ�� ��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f������[���,�Q'WTI�z�mTI����f�{�S�c��觫]� ܧ]� �e�LkZ���9��9��9⧫S�L�@�W����J��qS짫�,����`�,�f��W���j�rnKW�����Jb��,� �`W��L�@�W��S��S� ��L\`B�L�@�W��f�g�gc᧧���f�L�@ߡL�@�l�9��9�⧧�⡡��mob�m�M�̓,�z�J�����P�� �����W�������V� g�ݑ���Kۼ���P�� �����z��h��P�� �����z��hP�ܝ�5�����P�� ������D��S���f�ob�P�� ������c�:��o�o�gc�:���c�:��P��c�:����g�w��m�S��dދ�S��dދ��d�fd����7]�(��� ��K�S�W�L�S�f�{fj{�X��d�rj{�Jb� ���� ��X��d�r �����Jb��X� ��������]�(� ���� ��������j����j��@d�_�O�X�j��X������a=�����j����j��@d�_�O�X���������j����j��@d�_�O�X�]��X�I���X�@ X�X���������j����j��@d�_�O�X�I��i�j{�X� ����fd����j����d޽��K�S��d�S��dދ�f��Kۋ �obT�\F���a=�obT��j��@d�ob�d�7[e ���� ����7[e�S싏7[e�0Un\I Ꝍf�j��=趻�=��������\I�n\If�r�)�r�)_xU�y������t�\I�_xU"�������\If���]��\I�]���\I����t�\If�j�rUX�W��I�� 'UXx���#T_|]��r�)UX�UX�W�p"(2��r�)�r�)�]��\If�x���#T_|kZr�)������W`g��j�obj���j��=趻�=�ob�=� ��V��r�)r�)\������ �obό�(er�)y����ob����ۡ�����̌�(er�)�ا��i�g=����J��=�^|���Q'o����^�A�ӟ �Q'�t� �ͣ�&�l��w��E�uY0��E�4����L�l�ޟʙ���9���������-� c\��@ X����g�#F����g��g� ��g���h �� ����o��9���z��h�#F����_b��o�K�����3�����o��9���f���g���g���g��(�VܤVܥ�y�l�v�(�VܤVܥ��c�:�c�O�f�{c�O� ������ F��TF��T�-�]�]�}B����g� ��g���h� �� ��Ǧz��hK1^㡦١��f�_�iQ��dd_�_�TI�_�a���X��(�>\j�dDUk���(j�k���(i��Ӥ\�����(��(\����C��d���=�4����(�ۃ�(74����(�fru��(�f>\ruTI�TI�f>\ruW�ru��d_�f>\k���(j�k���(i���f�(obiQ��\����\���ۡ>\ob4����(]�D�aj�j������(�\�������M-��M-��d�/�/��7���諽����5���M-/��_��f�����e�1��M-�,�M-1�+ U>�2������M-�����M-��d��M-���5��M-��M-��d�f�>�2�����>�2����ۤb1����b1������b1��M-�M-�b1��b1���@�b1��Ο�-EܟӀ��e��N/��vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g ��橩��g�1`z���z�z������˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf����`����\@�h��䧄�t�UX��$$�t�t�UX��$$����UX��$$��j�c��� vj��j�vc�O�w����2E�_R��g���l$$���l$$�ɪ��R�g��呞h���K� ����b�����UX��$$��UX��$$�f�-E�`B��*�Q'�ا��i�g=����J�h�=���-E�`B��*����˧��i�g=����J�h=��䧄�lvlvvc�O� �������g�l��g�l��g�l��g�l�=��g�vc�O� `��g%u�0����d�����g����k`٘�$�f�`B�l�2��vf�{c�O�2��vc�O� ��ݤb_R����2���#F����g`B��g>\c\�Fb�*���U�����<���vc�O⇉a�w��묗�T?�z��a�w��}�d�}�d��]��� �����g��]�� r�&ܪ�V� g�ݑ�h��Kۼ�Ȭ��T?�z��h��DZ]��ج��T?�f�;���\F�GW\F�GW� ����c������c���\F�GW_�a����_R�� CG������ CG������c����� CG���f蝮��f\F�\F���� CG����_�a����_R�� CG������c����� CG���f����c����� CG������ CG�����f�\F���R/���<�X����r����� CG���f�5����R/���� CG�������� CG������r����� CG���f�_@���NZo����ۀo������ۮ�����f\F�o����\F���R/�o�o������oof�U�ܒ�� ?�\F���`����;��M�������@c����q��@c����c����f�dk�� J��e�Ldk���@c����Ud��U}B]�J?��J��\�r?��J��\�f�{W�c���������e�JW�f�{Y}LN �����e�JLN ���I�1�I����1�I�S�c����dk���J��?��J��\�?��J��\�d�����I���Id���@c����kd��?��J��\����IpkK�B�e��@c����fs�+ �+ ������������U�^�?b�������I�@.��c���������l����������l�c�����@.��諺l�j�_Rǃ��j����_R�\F�`B��ob�����dޤbdf�:���=�ܕ[ =�ܕi ^TiQ��K��E\�e���K�0�]��N�����X�@��2������M-�����M-��d��M-���5��M-��M-��d�f�>�2�����>�2����ۤb1����b1������b1��M-�M-�b1��b1���@�b1�����D��$(�iZ �ء�$(�iZ �&� ��Z��Z&� ���g�Fb�*�l �������ۡ�g�vc�O�������w��� �iZyp�����g�W`��h���W`��������1���z��hK1^�$(� ����������������iZ �f��������$$�e ��� ���vc�O����I���I�W`g �C �C����l���I`#����U�^�?bl���I���I���I�W`g���������l�驩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�w���Q'[�`B��*c�T&�uY0���c�T&�-E�`B��*�Q'�ا��i�g=����J�h�=��䧄���S�AJ�v����g���g�c�O�f�{vf�{vf�{vc�O� �����Sc�T&��>\� ���]⸎b��g�c�T&����z��h��V� g�ݑ�h��Kۼ��&��bc�T]������b��c�T&�����Sc�T&�fҔ������X\܃f�{��`X�Y*w���M��6<��z��a� �w}��ۣ��l�]�D�a>\c\��X\� ��V���V���g �������ۡ�g��g��l�l��C6�H����vc�O���g�W`��h�=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f�+��yc���K�j� ���܊� �ZQ��K�j���܊]�(�w��c��Q'q�y�K�j� ���܊�ZQ��K�j���܊]�(�w��v&�l����Ud�/b�l�ޟ� �������ۡ�g�#F����g��gɪ�V� g�ݑ�h��Kۼ��ZH`��ZQ�h�#F�����R/�ZQ���ZQ�fҡ�uY��g�vc�O�d��b=臉��b=蜜������V}W�V�[�d�l_�N�[�d����[�d� ���#W۬�g[�d�D���/b�[�d��l�%a���Zl��b=���Z|ࢗۿ����w�����b=����ʟuY���V� g�ݑ�h��Kۼ���b=��Y�[�����z��h���+��d�����b=����f�e!^[R���>���>��[R��˟vvvvc�O� �������g���g���g�Q'o����^�A���g�vc�O�>\c\�>\c\܍���R*�c\��"0��c\�z��h� r�&ܪ�V� g�ݑ�h��Kۼ�Ȥ��V���9�� ����K���K��X���"0��c\�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�y��<����\��/���E���h��\��v�A�v�A�+ �D�z�U���E���z�zh��U���������U�����t��=��ge��g�l��g���g�W`��h��W`��U���E���z��hK1^㝺5E^�?�R��?�RE�����Uܬ����f�+������C���vc�O⇉`X�Y*w��������6<��z��a� �w}����-��C6��+��O 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�f���g��(�VܤVܥ�Fb�*H�����_R����vc�O�f�{c�O� ��݅ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B����S����V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�Ο�-EܟӀ�ʞl�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����S����g�1`z���z�z���`#�������C�����g�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f�+������C���vc�O⇉`X�Y*w��������6<��z��a� �w}����-�+��O 9�[=�Nz���d�H�g���QI�6���gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J�����������6�f҅ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R��j�v�j���g�j�v�j�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�e�������g���h�e���������TS��z��h��K1^���� ��X������f���-��ӟ ��>M��nD���ۂ� �M�U���$�ni~a c��� H����v��vc�O���)��lt�Q'k�_R�Q'oj���Tn��)��lզ����=��gP��r����-��-]�D�a.ܞ��g��gɉ�h��NZ�����)��lf�l�ޟ��g�����}�d��]���}�d� ���܊w�}�d��#F����g����g�#W۬�g�vc�O�4�4���ݜQ'c���C��[��y5� � �t��� �? `Q'"kC�Q'q���܊ ���܊���܊��܊]�(����܊��[]�\��CO�w���&����܊��[�]�\�l�ޝ��w��e!^�e!^˧��[R���e�������g���he������� ��]��z��h���r��� Z��� �f�b�Gb�k��5��X\�G � �5���b�GpLi�]-���5�5�c���5蟝f�b�Gb�k�����X\�G � ߝ���b�GpLi�]-��❟5�c��蝟�f�� ߉�a���[V� ��[V��X\�c������ sTNO� "�nkC���� �� ��X\�c���n���r ��d���� �Z������n"�� �f� �Z��ob��� �obԟuYobkC����uYob��rru���ob�>�����̝�����������E�j�%a�"������ ��j�%a�"������� �j�%a�"������� �j�%a�"������� �j�%a�"������j�%a�"������1���j�%a�"���H O�^A ����?۝j�%a�"������?۝j�%a�"���N�ܝ��杝f����� �j�%a����W�����?۝j�%a����W��]�ob�����obK1^�����ob��̝������v&�����e�&�>��&�;�`~�>��Q'}���u����6� �������~�>���/]�(��� 8� ��f�{Y� 8�_�c�"�%�+ ������~�>��A �0U�h�=�Iܤbh�=�I�i~ak��#W�v.�-~�>��T��c�i=�Y�f�obQ'\F�de��LF�SN�LF�SNob�������W��] �] �] �W��] ۄ���W��] �LJ�LJ苏] ���e�~�>���t苏] ��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�[R��[R��[�t�ӟ ��d ���vc�O��s����n��[�K1^��[���g�ɪ�V� g�ݑ�h��Kۼ�Ȅ�����[�z��h��?,�n���[R���؄�����f�=�ܕ��C�_H�Ȑ�P���_���=�ܕ r�&ܴ����������g�����Kۼ�]@�=�ܕ�� r�&�[�[�d��iS jb�N���������E:�]��N���Q'�uY�Q'e���R ��܍���S���\@�\@��W`g0��M�b������[����W`g���W`giQ����g��g���Kۼ�ȟuYZ`�z��hO_���߀[��&��؟uYf�fdS���de��}��X�f�de�ޢl�̅ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R����g���g�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�ӟ �e�������g���h�e���������TS��z��h��K1^���� ��X������f� :��AG�� L ��f� :�T�U:1� �M ,H�\� :��3[$��3[��3[� :��Af�_@��_����M�i�j�sai�j�sa�*�b/�C���W�LiENG�J_�LLk������j{_�a���S�DK��_@��]�D�G�J�����f��3[$�\��篱 ��I�_�T�Uob��CO ��G��obT�b�*b\��\ ��I�_�����_H�\�����]���������_H�\�����]���J����_H�\�����]����_H�\�����]������c�O�:�� ��V,c��d�_R�_R��g��>�>\ET����7��K�e�_R����[��.����I��$����U�����<���_RoT���_R$�$�����d���g�X��5J��\���p���?,h�c��h�c��������U����`BI���7��Km�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf��������$$�e ��ʥi X����������m�M� ���vc�O�0 �����,�%�ۥ�ީ���g�1`z���z�z����ۥ�g��gɪ�V� g�ݑ�h��Kۼ����� ����M� �z��h���������ʩ����⩩��gf���g�����}�d��]����(� ���܊�,���w�}�d�vc�O���ܿ����l�4�4���ݜ���w��e!^�e!^˧��[R��r�)� �� �@r�)g �������ۡ�g\������ �c�:������g�e�������g���he����������a��]��z��hc�����������&�?�����a��]��f���g��(�VܤVܥ�Fb�*H�����_R����vc�O�ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�ddN�9��"t�@�lF�J��ͣF�J���e�j���܊]�(�lw��&�i~N�9��F�J��l����(�@��c�:�c�O��@�l�ޟ���w�w�j�lw����SY�����#F����g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����N�9��f�$����g����}�d��]��ʇ�a�w���&� �]��z��a�w�(� U��Nj���R��&� ����w�}�d�vc�O���ܿ����l�4�4�l���ݜ���w��������.�P�� U�g�����c��P�� U�g}B]�}B]�c�:����g���g�W`��h�W`ȡ&� �]��z��h��(F��T���١&� &� f�&� ��Z��Z&� ��&� ��Z��Z&� ���g�� �?�R>�2߆M� �k <؆M� � ߫�cbC�����r��@NO�����_R��gɝc�O���@NO����Q'e�J_��X�Q'e�J_fd�t�M� e�J��t�M� e�J�t�\���#ܡ�M� ��ܥ��w���lw����l�����V� g�ݑ�h��Kۼ�ȉ�h��NZ���؆M� fҀ-�\���Vߔd���V߭��Vߔզ�L]�J�������?�F/� H����Li۔�4��������������Vߔb�t���Vߔt覟�+������C�������-YK�]�D�ay�l�l`#���e��g��g���R�g��呞h�R���b�������Vߔ�2N��z��h�]�0K����Vߔf�+������C���vc�O⇉`X�Y*w��������6<��z��a� �w}����-��C6��+��O 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�f���[s�Y��;�`P�V��[��;�`"��;�`;�`��[��;�`_��;�`�b+�j����b���b���bC�s�Y��[s�Y+�j����b��[��[s�Ys�Y;�`����[s�Y��;�`s�Y;�`s�Yp��["q���bs�Y��;�`"���bs�Y��;�`/;�`��;�`_���;�`"��;�`_��N�_�ob���V��V�����;�`�7��^�E�Wܐ���CP���CP��^�Y�nY�M��Y�nY�M��nY�M��M����Tr�)nY�c���c���U����nY�V@�V@�i~�y1kf�Q'��Y�Y�Y�M��rui~��Y�� ��f�{Y�nY�M��Y�nY�M��f�I��d��V@�i~f�{�V@�>\i~i~V@�f�ru>\i~fV@�8�S����d��[&�Q�oby1y1S�=nY�c���ob�nY�y1S�=nY�M��obM��W�nY�y1S�=���CP��j�ob����CP�i~obi~���CPܡ>\����CP��)ہ^�e���E:�E:$C�Yv���b�����) A�iQ�&T�������P��r��U����d�X�>��2N��0a��>^���Q'C������_ s�Ǒ���kC�kC�0U��z��h�WJ]ܫ+��Q'� Jc�/�Z)�����Vt�����0U����C�������A �0U0U��_��obP���+�b�ob�P��+�b��dk�D�]��A ��dk�&�&�fS����V� g�ݑ���Kۼ�ȱ��9=�>���9K]��d]�P�X���#�� ��^���� ��f�ru ��8K�ruW�L����qru �� ��W��f�e�J�]�P]��dX\�ruru�̡E�}�+@��� �J��Q�&�I���i��S��J��S��o�S��H[�S�H[�S�������� �J��Q�&�H[��f�H[��J��Q�� +��j{i�nK� +��j{"���Qs�"�"�J��Q�"_���s�H[��f��H[�S�H[�H[��f�s�l�s�l�s�l��]�(�_� �&�r��܊&�_� �&�r ���܊]�(�lw��e�&�l����[&�����fde��a��c���C+��y]�(�e�&�l���_�vt�7OsA���r�%�+~�>��Q'y#S��q�Q'q�y]�(�e�&�l��vc�O�l�ޟuY0��~�>��l�ޟ�d��#F����g��g� �H� �d�lK1^� �7OsA��1�+dU��gf��_� �&�f1�+dU��g�f�Սܶ_��vmf�{��W�_���nf������j� ��d�� ��� �����r�NZ�=� ��W�_xU ��_xU �ޠDUxNxN\�` ��� �����r�NZ�=�xNxNŠvmv�d[�Ԣ_b�f��=��=��� ������ �����[��T�`�ܶob ��V�c<�mob�m�M�_bobW�L�L�����C���C+��ܦ_��ob_� ��V��W�obW� ��V��f�{�f�{��obf�{ ��V��j����ob�]�D�af�DUob�]�D�a~�>��k_R1��L�obv[��T�`��[��T�`��q����p������������>\>\I��>\>\���>\I��>\>\�����?�ϴ_�a��(f�>\��>\I��>\�>\����f>\>\>\>\"\I>\��f�ʹ[S`UUW�����kk�����fs�>\�>\Q'\F�de���UWk�obc�T]�V6YW�VT���(f�ob�(&��(W�VT�\F��״ϴINW�VT��L�L�@ XqL�L����f�@ Xd[�qY*bf����H[�H[��f�Y�Y�\�Y�Y� �Y�Y�Y�Y�Q'_�a�f�L�������L����L�Q'f�L�������L����L�Q'f�((f膆2�ۂ���2�ۂ�����Q �ӆf�2�ۂ��>3��2�ۂ��>3�܆�Q �ӆf�2�ۂ���2�ۂ��$��7��2�ۂ��_�a�f�2�ۂ��>3��2�ۂ��$��7�>3��2�ۂ��_�a�f�H[�(�>3�ܡ�7��^�K��///��dV���A/>3��/���� 8����\�`/!�j{��T]�R�ܶ2���T]�R��J�� ������Wt���� � ��� 3�@�X\�>3�܅�/��d���d� 8���>3�� �>3���/!���U/!�i�J��n��T]�R��fU�Ve�/!�1�����LW��[]��� ��e�^]���L���?��t�]�����M���B�O�����L��L�k������b��s�(�tK���|�t�]�����|�]��������L��L��%a�8K�ru��AX[� �c���A��\��P�QobA ���P�\F�ob���<���X�7��P���7�l�7��7�l�7��f�Q'��de��fd����lQ'��de��fl�7ޱ���l ��J}��nZV���*���kZnn����_b�__�O�� �n"�t�f�P^�d�P^�kZnf<�P^�d�fQ'\F�de����Q'\F�de���̡`#��0�%)5�%)0� ���%)0��l��ܟ�����(����U�����<��Ο.����b�$����g������ʫ�����ܿ���ۥw����w���������b���&� &� c�:����g���g�W`��h�W`����>�&� �]��z��h����>�W�L�a]�����>�&� &� f�`B��g�vc�O⇉`X�Y*w���rG2�z��a� �w}��}�����g����� ��g����h� ��rG2�z��h�K1^�\���9ru��rf�� c�� � WJj{j{ <�?�c��X��X�~a�[&�f\F�[&�) A��۝e��GQ��=��gN���v%u�0���S��g��g��g[��{�%u�0������k`٘�$�f�}�������g�vc�O�=������� `��gɪ�V� g�ݑ�h��Kۼ��l=�}�� z��h����e��a�����2��\���l=�f��C�����,A,���,C���A,����,��,P�P�f��*�bC���f��*�bA,��f� ��*�b�*�f��*�b�����X\�����d�����dde��}��e�@�}���vc�O����ۥw���lw��ӟ ���gɧ r�&� ��g���h� ������d��0��z��hyॶK1^�y�EZ�������d����df�y#S����fs�V6�j{fs�L��Q��j{fs�y#S��� �]�R���fs����X�DU�����A�fs������J��V��J���f��M-����� �]�R��I�J��V��fs�|��ͯ����C�.��.��J��O,bc��J��;�`]��P���.�vfS�����C���CP��Ssa�O,bc��J��obO,bc��J��P����_�̝����CP��Ssa�O,bc��J��P����_���g�j��j�m�t��V,�(t�YK�]�D�a+������C��v�⦦���e�J������`�e�����۞e��g��g� ��g���h� ��=KSz��h��NZ���ؓ�V,�(fҝ����ܿ����w��`#��ߡ&� &� ��`B��gc�:�����(S�=c�:����g���g�W`��h�W`Ȳ&� �]��z��hDzJ��V@��3�ٲ&� &� f��J����o���k����b��UM; �`_xU�_xU"�j��;�_�a���� �`� ��ܶf��Uob_Rk��Ql̍�;� ��V�V��8K�TI��f�L�@�TI��f�8K�TI��f�8K�TI���#W�f�8K�TI�S�f�8K�TI�8�f�8K�ru�?�RTI����l�c�f�c���f�c�d��f�c���f�����ꛛ�X\�nK�j�L�c�b��d�@�P�@�Pݛ@�P�c�f�@�P���f�P��[&�l� �Y K�J����V�(�<ܞ���J ���#�<��J��#�<�P��r�����\��������f��obU�V�>���^[����U�V71�����i@r�qrnK������f�`a`� �`i@r�f�af� �f����Ο$���_R$�$��.��ʤb�������C���܊��*��k ���܊��*��k ��d�B�%)0���܊��*��k �ɫ��g�lv���#W۬�g��g�vc�O�Q'o����^�A��U�^�?b��^�A�+ӟ � ��g���h� ���U�^�?bz��h���B�kZK�B�e\������U�^�?bf�|��g|�����_�ET�ET���g�|��.����U�����<����_R$�$�ʫ���;L ߯n�b5� ]������`i�a߱��ܛnK�D��Nt�t�f�W0� nf�X��i�W0f� � S�*� S�*�]������g�m�P��m�d���lw�d�w�lK�wlK�w\F�lnwlnw �e�J�GQ�lnw��_R�)Rd_RYK�]�D�a�ۦ�#F����g��S��g���1��L�lf�S���\@�\@��W`g`b�����1����4�ɤb4�`ʟuY��4ퟟuYf��9��9��������D��=�fQ'���Q'����Q'�����Q'����������EZ����������Q'��X�f L]� ߾�c��#��* �����D��GB�T�D����fQy5��6��M�#=�c��#��*f�i~a���i����D���X���dd�T��GB�T�i�a߱��篡i�a��(�����I�`��ܥw���lw�� 8��(�3� �+��U7 ����b?��>�������������e��D���<����L�� ��^�K��^�K���g�c��#��7��I�`����I�`f����[W�VT���g�H�9�ʪ�V� g�ݑ�h��Kۼ��W�V���[WV�T�z��h�� ߄���W�V���[W�VT�f����b�����������g������Q��l��g� ��\���9 1�_�j����P�K1^��� P�f�[S�9����K�YۢK�Y� �K�Y� P����=��<�]��N��� P�W� ��� ��y1S�=e��N/� �������ۡ�g����g�vc�O��������U�V�5L�MS���M� ���gɪ�V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gfҜk <b���ӟ �t�v�t�vc�O�t�H����g]�D�a`#����=覦+������C���A������y�l����g��g��f���U�����<��e�@���g����.��l��ܟ$��ʫQ'�uY�Ӏ��ɪ�V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY�ԟʩf�������f��f������������[]ߒ�U�VfU��fU��obf;�`b�^[��U�V����U�]�\5�rU�U�dU���W�MW�rrU��\[�AX� ߝf�Z��U���W�M|�|�dk�b���J��U�MrU�U�dU���W�MW�rrU��\[�AX� �M�f���R��b|�|�dk�b���J��U�R��brU�U�dU���rrU� �R��b�f�W�M|�|�dk�b���J��U�MrU�U�dU�MW�rrU���M�f���U�U��ǝ�U���e�;�`��+����Tv ��ݯ��K�j���v�5�?�R"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+�����c�Z �e���+��������ۋl��+��>�V�K1^�e��a������g��+]�(�e��a�N�����������#F����g��g����?�Rf�c��� mm$�e����1�����1��c�:�����Jb��I�r�3���Jb� �`�I�r�3�� �I�r�3���I�r�3���X�}� v�A�mm$�ec�:�^�Cۍ�M��I�r�3��H[v �mm$�ec�:�^�Cۍ�M��I�r�3��H[� c��� mm$�e����1�����1��c�:�����M��I�r�3�܍� �`�I�r�3�� ���1�����1��$�e��I�r�3�ܱ$�e4��� ���I�r�3�ܝ�$�e�"����_2���0q���q������4��"���܁��0�0�� �����_��_��f�W��W����������W��p����rd��M���������p����p_��� �����rd��M�W��i�"����p����"���ܠW������p���ܠW��W��W��W�L�d$�ruW��f���������nK����f�����������������G�`B�G�f�����f<ۍ����obi�i~d$�W��W�L�d$�̡����d$��1�NTN�#W�n�ܶ�LVJW��J�c<���W��_��߶���H��[r� ���߶����v�f�W��ob ��V�L��_��ob_� ��V��߶ob�[&즍ܶob ��V�c<�� ��V�v1�NTN���g�W`�������W`�=�ܕ��\ob��obG)Rӓ,�z�]�R��ob]�R��>\�,�z�L�@�ob>\�,�z�L�@�L�@ߓ,�z�̝L�@ߓ,�z�����_H�\�����]���������_H�\�����]���J����_H�\�����]����_H�\�����]������c�O�:�� ��g�X��5J��\���p����_R��g_R���7��K�ek��Ql���c�ET�ET���>�>\ET�h�/b� ��拏��g��g�Ο.����U�����<����I��$���_R$�$�ʫ"� � �f�� �"� � �� �f�"� � �f�W�e���Q�&܇ �r�X\�� ��]�R/�O�� ��9��W� �i�W� �"_���W� ���d��dr�rW�e���Q�&�"� �W� ���d� �"� � �f�r�riQ����xNs�l�Li� ��by�c�����((��Sdc���kU ��bf�a_y/K���Uf ��((��(f(#y� � ���a_y/K���kf��e�J����U���obc��#�c���%�c���( ��9c���(�篛��]�\W�L����f���]�\]�f\IV6y�&��X��K8N��&�l(fd�� �⛅�]�\`B�N��Ƕ2�Q'�uY���g���݁#W۬�g�O��giQܡ�g��g���ݟ��iQܡ�g�O��g�zF����F���z��hz��V� g�ݑ�h��Kۼ��F����F���z��h ߄�kC�F���ԟuY�ԟF���f҅ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R��j�v�j���g�j�v�j� �����g�j�v�j�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�e�������g���h�e���������TS��z��h��K1^���� ��X������f�Ο�-EܟӀ�ʞl�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����S����g�1`z���z�z���`#�������C�����g�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gfҭfdd�ᠻk��d���d��,� �`Q'TI�%�TI�%�%�TI�%�TI�^`����ޮ�� �%�i~�X�i ��M���#讓� �`B��-b��`B����U_�O�� ߠnf����<�����<���������M��iSdn&��fU������kZnfc�i=�Y�fU��ob\F�\F��\F�����<��������obik�Q'\F�de����Q'\F�de���̡�袣�J�6������J ��Jd��25�ru�J���J���ܢ�25���r�J �ru�J���� �r���J�������J �f�r�J/��J���� ���JnKr�J�C��O�fd�J/�hL������C���C����J��r�J �f�/���X��X��٢C��C���K��EZ�Eܢh �<�7ޢh �<�����E�=_@�ݢfd�Jf���J��Jl25�25���J25��"O����B�_Y��J��nK"O␂��"���B�_Y��4��"O����B�_Y�����B�_Y��j�܂����B�_Y> R��b_Yt�_Yt�,��_�a�� ��-R�\�`���B�_Y��� ��J�$���B�_Y��j��f����B�_Y"O�O�"O����B�_Y�������B�_Y���B�_YR��b_Yt�� ��-R�O�����B�_Y��_�a�f��J�����B�_Y_Y4��nK����B�_YX���� _Yt�q_Y_�a����B�_Yq_Y� ��J�$f���_Y���B�_Y���B�_Y_Yt����B�_Yq_Y_�a�f�ob�lR���_RlR��� �����g���g���gɡd$�5�WJd$� ���_W���������d$������}��d$������d$��vc�O�w�V@��|�_W����gɪ�V� g�ݑ�h��Kۼ�ȉ�aG����쑞h� �\F��a�>��K1^�ى�aG��aGf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���g���g���g��(�VܤVܥ��v�(�VܤVܥ��c�:�c�O���� F��TF��Ty�l�-�]�]�}B������g��g� ��g���h� �� ��Ǧz��hK1^㡦١��fҁ� ��xN\�`O�uru"qxN\�`W� xN\�`xN��T]�R��� ��xN\�`�� ��ruq�_�a�xN\�` ��f�ruxNrWܐ�\�`ruxNru�rxNQ'_�a�\�`f� �����p�� ��f�=� � ��j�%a�r���=� �����f�=��=���� �����[��T�`�e�Lf�s����rc��܊c���s�p���rcr��܊c�pc�kZc��܊c�r�)s�i�*bs��NZTf苏�޾���W��r�)ŋ������Z^��r�)r�)ž��f��ckZdf�cc�J��kZ4��ccbCdf�ir� XkZkZkZddJ��X\��]��������R/�e�J�i�*bs�i�*e�������W`gcbC����Z^��r�)c�r�)�J��X\��]���������Ǿ�]��B�����W��J��X\�ܾ�������c���c��#ݿ&��b<�� M�#݀&��b��܊&��b�"c��#��� ��@�� ���܊&��&��b��܊�@�� ��&��&��b��@�� �"c���c��#�"c��#��� �&��b&��b��܊&��b�ղa&��b�� ���܊�s���� ��@�� ��s��� ���@���_��c��#��� �f���@�&��b&��bݿ&��b,D�b?��&��b��܊�_�݆��_�a��?��&��bf�cbCc��#=�N����[�x�`���� B�e����e���Wܠ�c��� � � �����Bܠ�_H���e�_��_�a���O��e�e�f���� B� ����� �܇W�d���i ��Wܠ� ��_��_�a���O�� �� ��f������;� �ܱl�0�>���l�0�>����� �ܱl�0�>���c��#��G}�c��#��G}�����#ݝ5�Y�f�{�l�f�ޝ5�"e�t�����$�F/���UX�/����]�]�p"�N���UX���]�kZUX����UX�����۝��X�kZ����`M�f�dF/���UX�/����]�]�p"�N���UX���]�kZUX����UX�����۝��X�kZ���`M�f�dF/�����r�)kZ;�`;�`���������$�F/���fs�]�kZ-E�kZ-E�-EZ�����dF/���fs�c�i=�Y�����DT������2� ߠc,= ����������������_�]��N�����K�H�fd�LiENd]�W��X�}��RgH����Sd� r�&��R](��K�H�����B��X�}࿌����nf���a�a�i �h��a���f�i~ai~f����i~���[�i~afLF������ �`���LF��������LF��f�i~aLF��/�CI��܇�_RI���J��_��ۇ�k4�O�rI��qp܇���f����")�rV� �*���M���ߋ�����������������Y")�j�")����f������苏���_Rru���i~k�� �����O������Y���k���� ����� �^�C��%�W����p����"%��O � ��r��X� �>3�� ����� Z�X_2��Z�%�`�_�O�q�bV6q����nK ��>�\�`W_obde��W_�X�T�� � �S�?��?���_W[�WO�%���[�O�%���[�N��@W � Z�X����&�_���&WW����^����(�NZ;U�<�0K��S�]?���\U�V�O�� �WLi�K 6�W�����ob�&�U�1����09��UU�U��F<[K�kZ���kZkZ�F3��W2��W2�Q'���M�c���������c���Tg������Ti ���T���Tf�����c�c�����T��T�v�`Ml��v�`Ml�����E������z ��������z��hz ��������g�������� �����zv�`MlS���z��hzv�S���[�[�+�[�[�[������l����5�VJ�[&�_H��d^�`M���M�`Mk����v�`MlQ�&�H[�Q�&ܽf�H[�s�Os�Of�H[�H[�-f\F�H[�s�OM�A �� �� �M�j{���@ X� @ XpH[�S� �dL�������@ XpQ�&�q@ X� Q�&�p@ Xpi ���Q�&�H[�f�M���H[�S���X\�M�j{���i ���H[�s�Of�H[�H[�܁H[�I��H[�Sf�������iQ���̡s�l�kZM��M�]�*�M�S��M��p�@ Xd[�q�M�M��ܻ]�*�bS��SkZ�]�*�� �Y��e�����"�,M�kZ�]�*�p���I�P^�pS�d[���� � �"�,M�]�*�"����݋� �������kZ"�,M�]�*�S�f��t�Sj�M�di ܠM��8K�SdM�M��M�-E�f��(i@�������� �I�P^�I�P^ދ� ��ϋ� �̡�� ��w��������b�gy1S�=��gɪ�V� g�ݑ�h��Kۼ��y��<�t�@������^�/��6b��z��h@������^�v�A�v�A�+ �D����F��e!^���[R���t�@������^�p������������6b��z��hz����������6b��z��h����2�/����������������f��)��)�O� �)�O� �)�O���)�_�a�kZ-E�O���)�`B�c��#�f�O� �)�kZ�)��)�O� �)���O� f��)�P^�/�CP^��)�P^�/�CP^�i��)��)��d ��d �f��)�P^�/�CP^��)�P^�/�CP^�[R��kZ�)��)�O���)�`B�O� f��)��)�5V���P^�P^�5V����H[�)�5V����Q�Q<���A A R��Q�Q<���A A R��Q�Q<���A A R��Q����A A R��Q<Q�����__f��MMP���(}/d�ɧK�����:�����:������c��#��������c��#����������������� ��������� ���⏃����L^`}�v?�R�NZT�������ͣK1^�ޥ_R�������ͣ���gȞh��d�K���<��R���=���z��h:�� �^�r��V��N@=�ܕ_biQ�����<��R���=���f�q���K�j�q�y��K�j� ���܊���K�j���܊�t�t�]�(�lw���&�l�ެl �������ۡ�g���������]�D�a]�D�a.ܞe�������g�#F����g��g�lwlw���l�ޟʪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ�����X�8lfҝik��������U������U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2E�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���f��݃k^ޕ�e��aq�t��K�j�G)Rq�Q'c���C�� G�� G��� � � �)��#W�y&��K�j�G)R ���܊�t��K�j�G)R��܊]�(�wG)Rw��&�l��l�ޟ�j�G)R�j�wG)Rw��vc�O�i�b�v�A�w��� ��P��c�:���#F����g��gɪ�V� g�ݑ�h��Kۼ�ȋ �2��#F���� � ������7#ۂ1���f�dt�f�d/D�kdf�G���Gc���c�k��Qk-�� ����c���� �`Q'EZ��c���d_R$�ed�$�ed$�ed4�$�ej����d���4�$�e�4�Z�����4�kKI>M���X�^��d$�e[�dfd$�ee�J�$�e��I$�e��I$�e��[�I$�e�$�e�_R$�ě$�e�$�e�4�$�e��5�� (�d$�e�j���diQ���#�j��bj�DU��diQ���#�j��bj���\�iQ���#ݹbj�|�i��biQ���#ݹbj��[V܊DU��iQ���#ݹbj���diQ���#ݹbj����߀R�d��|�i�j�j��_xU��_xU Lj�_xU]�f��R�d������j�|�i�j�_xU���f�R�d��|�i�j�j���_xU��f��=�nK�|�i�j�j�ru ��=蠠_xU�=�f�j��_xUf�y1S�=j�j�����=�`#����j�j����������^�O�^�#W۝O�#W�,�dk���O���P�i�S��O�#Wہ#W��^sa���S�����c��#ݝ5���L�_�a�Of�L�"�7���L�"�Jb��S�O����#W۝Of����J��S�^�L��b��� �^�Oq�_H���L�f��7��^�^�^P�"�Jb��^S�O�^�^�Of��7���O���TI�r�TI��TN����TI�TI�f��TI��TN����TI�f�Q'�Y����T�@TI� 8`�@"�63�@|�ܮY�@���TN����j��kZ�TN�*��ZV������TN����TN������631��L�0��f���TN����f<��TN��TN�������@|�@|�TN�����@�@���� 8`ob�LF�SN�����TN��] �� �� ��K�B�eS��S��K�B�ei�K�B�e���-E���� SS���O␂NS������`��܊S����܊+�+�f��`�`K�B�e ��fL�S��d��J��qV6q �Q��j{���@��L�qS�����@S��K�B�e�@�`f�d��oby1S�=�K�B�e[�[���d[�c��*����D�G2 c��V� �*���M�d[�Dd[�c��f�c�bc�fsac�kAkc�f��*�b :�Q� c��*�b����*�b�*�bc�f��*�b :��*�b��,/�C�*�b`B�c� :�Q� ?�R :�Q� c�f� :=��*�bH� :=��*�b :=� :��@�K�*�b[$�� �>�2� :�f��*�b��\��\��*�b������2���f�c���e�;�`��+����Tv ��ݯ��K�j���v�5�?�R"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+�����c�Z �e� ��V�d�B�z�uY ��V���+��d�B�z�E������ۋl��+��>�V�W�K1^�e��a������gK1^�e��a������g��+]�(�e��a�N�����������#F����g��g��d�B�z�?�Rf�iSd�*��ZV���t��_b�df�j*���]��j*c�O��]��j*iS �0 j*iS /�j*iS �iS ]�� ����b�b� ��t�f�i�i�W �i��������t����o���63����o���63���iS iS �o���63����63����6j*C���������8��b������� �8b������� �M�b������� �b�������b�b����������b����������������������� �i����b�b�f�j*ob_n]���n���\��l���nn�G)Rv ����l�v[Hw���v �����*z���oQ'\F�de���ۡv ��̡v ���A,�v ��+�l�v ���wv �ޢ�c�:�W0v �ޮ�#Wہ#W� ��+�W� ��+�l�v ���wv �����v �� �ޔ������ۆMv ��f �ުd[�v ��A �0U�1���~�>��5�_��_�~�>��k�v ��7v ��k�v ��c�i=�Y�f ��ob�v ��\F��Q'\F�de�������<�Q'\F�de����Q'\F�de���ۡv ��̡v ���%��]�R/�O���T�U��T�]���]�\_R�+ ܗ$�n�wv���������H@��������wv�H@f�wv�H@�e�J��cbC���8K�re�J�f�e�J�ob_R ��ob_R�#W۬�obH@�#W۬�rru�ob_R����ob�ǥ�ob�����_R���-��#W۫�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��&�.�&�.�g�c�:�c�O�`#����_R��go�o�g��gɔ������X\܃f�{}��}����K��M-i� ��g83�������83�ܧ��j��j�Ϳe�J��ۥw�����V� g�ݑ�h��Kۼ��&��aL@_�@���z��h�(&�.��1u��&��af���U�����<�����g�vc�O��2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\�]�D�J��J��S����]�e�J �M�e�J ���7�iSde�J �7��f�LJ��L 8`�e�f�{������e�J&�T�|�&�T�����M-�e�J8�J���M-�e�J ���]�e�J �M�e�J �]�D�J��f�͒��J�� 8`��,J��L 8`���}�JpQ'������TiQ���X�e�J_@�ݒ܂bR�0��Œܒ�|��"�J���N����J��f�J��J���M-�e�J9��]�e�J �M�e�J �"J���N��J��J��f�J��J��/�M-�e�JKJ��J��f����̚�S�������;��������쫁�-E�������;�:�ۂ�������쫁�-E�����[H�,f ��Q'�{�MV��-E���+ �MV��������쫁�-E���Q'�{�MV��-E��������E��MV+�f �� ��fd���BC�r ��+ �� �>�2�rf����BC�|��=�g��obb��]⸙�f ��ob ��H[� [����� ��fd �� [��蛅�]�\d��t�f��c��#�ruW���)�%a䋏���df���T�c���T�|����Ti����Ti�i~ai~a� �� �|�|����T�f�i~a�5��q� Xi~a�5�fd��c��#�f��i~qi~fd�5��5�f����T��f���T�[e^�)��)�l�� X� X �iQ����iQ����t�c�T�$����U�����<�����g�vc�O��2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\ܓ� �e�L����ۿ�@e�L��@��@�� �p��@e�Lf�� �|��@h�=��W�ݿ�@�� �|��@h��@�=�f�� �|��@hru�޿�@�� �|��@h��@���f�� �� ⿿�@�� �e�L����ۿe�L�"�<���@�@\I�� �������@"|��@�+v��Y|��@|��@��L������ۓ� �� �h�@��J��|��@|��@�� �|��@h��@f��@|�I��|��@�@�@�@��S�^��@��@�@\If�ru��ob��l���������ۡl�e��@��d������J�^[���J�E,b��%�d ߪU�V�J�f��J� �J��N���J�J�^[��f��J�^[��J�+� 8`��J�^[���f��J�^[����J�^[�"�J�+��@_��nn"�J�_���-f��J�^[��J��J���J�^[���f��J�f������^[��������ob�J�7��] ����]����r�)�rur�)R�d��|�i������ᢁUX���yUX�Z��UX��ޢZ��f�S��k��Q��I���f�j{Z��O�G�%���j{Z��O�G����r�)�rur�)R�d��|�i������ᢁUX�j{G(�UX�Z��UX�G(N�Z��f����j{Z��O�%a�j{Z��O�G�j{Z��O��dk��j{?��R�d��j{|�i�������j{�����r�)�rur�)R�d��|�i������ᢁUX�j{UX�Z��UX�UX�Z��f��Z��W��{�W ��V��r�)�ru���ǢZ��W��{�W ��V���H��a_ 8`]��63i~a]�df�n�*��ZV��W�a__b��H�f�nd�W0W�a_�LJ�f�LF�SN�W�a_LJ� �W�a_f���?� ����?�j�ܓ,rc������?ے�|�� �K@V���3 �W0f����?�f<�H[�]ܡ]�Q'\F�de��LF�SN�LF�SNLJ�LJ�ob���̡K@V���3�pprpp��Zrp��Zpru>���Zrp��Zp�X�e�JB_�pc�T]���rup�X\�prp^���Zp�X\�p��ZpB_�pfc�T]�>���Z��Zrob}B�&� �p�&� ��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`��������������_�]��N����T�hh���`�ܪ�X\�q�X\��T�hp������`f�hh ܥj���hh���`f�hhQ��Q�ohi�"�X\�K9 ���LN ��T� ������ �\,^�+��h��\,�hhQ�ohi�"�X\�K9�\,� ��T�\,�\,����h���\,��fh ܥ�篪�YK��� �Q��obru��2��] ������fdW d��M�W �@NO@NO@NO��W��ҟ@NObc���@NOW қ�c�:ޢW @NO@NOW f�ru8K�q ��J��nK�/�C��W��f蛛ru��� p� pru�ޛ8K�r� p��ru8K�f�@NObc���c�:�W �����rru�@NOc�:�@NO�c�:�W ����@NOW �uY�����d���쯭n������C5����C�t�f�n���nf�����ޭj��j{ 8��j{�c����ru�j{Ռn_RT���O��d�� 8�����Űc���ŰDU0��c���nf�e�i��?��.�`Ye�S��+��NE��'�0�i���0�S��+�TH�M��'�0�i�� ��S��+�S��d�S��T��ioS�� �������S��+�f�oS����S��f�ooS��f���n_RT��T��_RT�����C���C+��ܦ��]�D�a��]�D�a̡]�D�aQ't�e�J�Ռn_RT�����g��(�VܤVܥ�Fb�*H�����_R����vc�O�f�{c�O� ��݅ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B����S����V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$����S]�D�af�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�P�ViS ��CO��SS �`B�P���SS �c���`B�P���S+�f �ߗۆbD�W� q�bD�i �nKrqrnKr+�S ��X\�]�\�ۗ�S �f����a��m�M�pc���/���CO��SS�����CO��SS�c�����CO��S+�f ���9�y#S��5�EZ�9�����^���>\S����>\S�c����>\f ���܁kZ ��j��d ��c���d�� �� ���5�i�df��܁d�� ��K� ��$�eB�d�� ��frruiQ������ۥ��kZ ��j�� ���5�f ��K� ��$�eB�i�$�eB� ��$�eB���3���蝝��f��]�_H��X��U�_H���X�ޝU�_H�f��Dr��X�������X����]�\de���X�����X��� �_H��X�����X�� ��8K��X�����X���A�b ��X�����X���LW��X�����X�ޝ�f������ ��f�ob��̝���� ����T�S��\�GQ�hh���`�T�h�]�R/��T�hpS��\����`f�S��\�e���-YK�L��T��ܪ��TߪS��\�GQ�f�w �Qp��S�i�QS�S��\�e�f�i�QS�QS�i��i�QS�p��-YK�f��X\��T�hh���`�GQ��X\��T�h�]�R/��X\��T�hp����`f��X\��Tߪ�ܪ�X\��Tߪ�GQ�f袪j���heセZ��O⢪Z��O�hh���`f�h ܥ�篪�YK��� �Z��O�Z��O�ob�Z��O�e�eゞl��ru��2��] ��߶f�{��f�{��npt��pd3f��j�W0�ԭ�nf��=�nK�|�i�Ծj���=�Ծ����f����߀���|�i��K۴�d[�j�j�W0f�_j��Tr_�NZ��=��N����Z^���܊r�)�=�f���Z^���܊r�)��篾�]��B�3������l|�i�obj����f�{�f�{��obf�{ ��V��߶oby1ߦj�j�j�obj���j�ob�]�D�a�ob�]�D�a���l�`B��*A,ru��Q��ru]�Od� z��#W� z�*�b z`B�������f�W�LA,A,_RruA,rui@� zr��A,ruf�H�nKq��eq z_@�� z`B��J*`B��*����_�a�`B��*f�j�q]�R/�H�����"b z��O�Lx����_�a� z_@��f�ruru������� �������ۡ�gɝwl�lw��vc�O��^\L����g�j��j�l������F��e!^���[R�������z��hz��V� g�ݑ�h��Kۼ�������z��hm�M��l5�K1^���������f�_Rű5�_Rf�_�a�_�_�a�m_R�o������_�a�c���m_R���}�W��W�L�i�i��b��_�a�}�5�f�rJ��Q'��� �`y�GB��J��Q'�y����� �`Gcru�Gc_xU�f�Gc5�j{GcGcru�N�Y�X�r��M�Gcru�f�md�K1^�om_Rf_R5�[e^y�����i�a߱�ru�N����K1^�K1^�̱�̆b��W�L���LJ�LJ����ߴobk��Q����ob�e!�f�bL�aob�be!�̰H[�Q���d��ܧ�����X\܈�d�hz�dp��d]�d�f�zz�TI����Pߞ��ܧ����f�P�����Z)��T�&޽��T�&�dr���Z)c�������c�����������c����������ac������� LTI�&�Z)��z�TI�d��T�&�Z)z�&�h�hz��dpTI�h�������Z)��T�&ޖa&���f�gg�ⰰ��uYz�z�����W�VT�̆b�z�z��W�VܟuY�����d��՞���C5�m���쯯t�f�߶����=��=��X\��X\�jܶ�Q��A����߶f�{��f�{����՞fj��d[��K�j�r�)�����߀���|�i��bk��TI��gb�C�����^r��N��nK�|�i��bk��_���gb�C��f�e�J�Q��AobQ��A�����C5�ob���C+��ܦmob�m�M�TI��gb�Cob�gb�C ��V���X\�jܶob�X\� ��V��W�obW� ��V��߶ob� ��V������ob���� ��V��f�{��f�{�obf�{ ��V��j�ob�]�D�a�f�[V�DU�ob�]�D�a��̤b��諺l�j�_Rǃ��j����_R�\F�`B��ob�����dޤbdf�:���=�ܕ[ =�ܕi ^TiQ��K��E\�e���K�0�]��N�����X�@�����X�b�����[b�$ ��@������� 8`]�RG�{��ޔ�W92���W92��M-�*��X���X��?�K�*��X�ޛ*�;�� � �������X ��f���b" ��f�{�i ܆bD�rnK�M-r?�Kr�X��f�j��=��Q' UW�f�{�(�J��f�{��nf_�_������������������_�"�f譡�i@�]�D�a�f�����ޭ�K�j�ʹ�K�j���d[�f���ܪd[��>ߏj�j��|�i�W�d[�f�i@obi@�>ߏ���ob_R_����X\��X\O����gb�Cob�gb�C��j��=�ob�=� ��V��|�i�j��obj���f�{�(f�{�obf�{ ��V��]�D�ai�܊DUf�ob�]�D�a��]�D�a�Ռ>ߏ��X�������X�����2bkc�������������M-2b�M-2b���������(�2b2b���������(�"0����������+ޱi~2b+�j����I���Ii c����M-2b2b2bk�(�2bi~mmk�(�i~2b�M-2bk�(��M-2bi~�ޱi~mi~2bpW�L����2b�t�f�e�J�K�B�e�)RK�B�e[�[������ ��)R���[�[��� ��)R� �[�[��L�ʩ����ۡʩ���ʩ�����ʩy1S�=��`b[�[���2bc��``b[�[���dk�����K�B$�eB�^C s�-E���$�edk��dk��D�$�e^C s���-E���-E�f�����%a�pc�������%a�p�K��嫁�b^C �M-L�a�I�W�� F�|�dk����U�<�6���)�)����[$�e$�e���M-�W�V��M-^C $�efBB�I$�e���$�e�Gc��Gc��W�V�pJ�pJ�F�W�V�zzF�W�Vܫ+ ���T�+ ���T�F�W�Vܤ��W�Vܢ_Hܢ_H��W�Vܥ�F�W�V�W����W�����W�V� sTN sTN�W�Vܫ��W�V����LW�VܡW�V��^C $�e��[�I$�e�D��F�I���������� �3[F������[F���f����YF���[F������[F���YF���f�������[}Lru^���Z#��[}Lf�p���������ܱF��T��E�X�p��\�`W����d�\�`f�p���������ܱF��T��E�X�p��\�`W�cbK\�`f�p������W�p��`B����ܱF��T��E�X�cbK����f���F��T3��LW��f'������f�"G2 U�V���� �Pߏ'� ��������M��fT�W���������M�iSd�f���7��k���U�V���M-c�O�_Y7��k���������e�J����4�e�J��LWTߓߢ���d����4�d�4�K1^���������4��4f���dru�e�J��uY���>��iQ����4�uY�+�j����b=�I��ܾ������K�����K���W�\��dnc�O���a.�nK������b����l4���F�����F����4��v�d _b���4u�g�:�� M�b�������e!^giQ����g��g�R��b^`����fҢ�����䡢�Wߢ��䃴����f�=�ܢš�����lGܡ���lr�L������t�f�W�nKܣW�f�=l�lGܡ�š�����lf�܁�����f�_Rru�𣣁#W�l_�a袿�#W�l��f�_Rrul_Rru�������c�:�����#W�e��a�����_�a袿�#W�l��f�ruru��ǡ�P��̱lP��+�b��iSd�iSde�J �k�ciSd�biSde�J �2�e�J �W����t�����Lf�ܻ���-��ޗ��������-���������0U���Q�+iSdk�e�JiSdk�SiSdSiSde�J �����k�f��ޢ��r�ޗ�ޢ��r�ޢ���ޢ����0U��0U�0U�Q����ޗ��r�0U�N0Uf�0U8K�r��dr0Ur0U��O��0Ui@�0U�f�rru�ob�d�ob�F��������S�`�_��M-`�_�5����S�`�_��`�_��M-�`�_��M-�f�`�_�5�q �L����M-j{2�.�5�5���������`�_��M-fs��S���a� �"��a��a�S���a���a L���a L�f��aZ^����q�X��a�-qnKG2 2�.�L���5�5�����������a� �fs��M-j{j{����aZ^����-��a��5���G2 2�.�5�5������5����򝝝������M-����d�_R���b�e�J���g�#W۬�g�v��vc�O�>\c\���g�������:NP�`�狏��g����y1S�=�U�^�?b��ET��9�TS�T���V� g�ݑ�h��Kۼ�ȉ�h��^�W�__(B��]��__f��&�.�&�.�g�c�:�c�O�`#����_R��go�o�g��gɔ������X\܃f�{}��}����K��M-i� ��g83�������83�ܧ��j��j�Ϳe�J��ۥw�����V� g�ݑ�h��Kۼ��&��aL@_�@���z��h�(&�.��1u��&��af���g��(�VܤVܥ�Fb�*H�����_R����vc�O�f�{c�O� ��݅ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�t�F��+���k_R1��L�obv[��T�`��[��T�`�A �0U��������nK�|�i��h�h�D�9�NZ�� �_ s��+� �F������F�������� ��(F�� �"j����nK�i�*R�d��c����DUF��O�(F�����(F��q����(F�� �"j��=�nK����nK۪��c�������NZ��j��+����p�NZ��pd3f�����7�f3������+��+��+��(F������[HF��������]�,_@���*_����*��d[����d[��*"_�����Z�����Z��ZW� A���Z�*�b_�a�^���Z]��b+f���Z�]ܠV,�O��^�V,A,���ZV,���Z_t�^���ZW���Z+��b+f���� ^���Z��Z��� ^���Z`B���� f�K �����]����,^�K �A,���A,���Z_�a�%�c�:�K ����](^���Z%�f�&��b&��b�� ������*���^���Z&��b��L�ab��*���A,L�ab��*�����Z�*���A,V,^�N� ��� ��� ��*�bL�a��ZV,2$O^���Z ���Zf�L�ab�L�a�^㱥����Z��Z&����g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f�$����U�����<�����g�vc�O��2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\ܬ_R��������{�d�_R����#W۬�g s�����:ɬe�@��]@�c�O�DZ�.�y�lr�)��Z��3�X[�e����b�>\c\�}B��g��g�������:���l����:DZ�.�m�M�y�lr�)��Z�gȞh��d�K����{�_�A��z��hUX�+�j�i�����{����:f�dt�f�d/D�kdf�G���Gc���c�k��Qk-�� ����c���� �`Q'EZ��c���d_R$�ed�$�ed$�ed4�$�ej����d���4�$�e�4�Z�����4�kKI>M���X�^��d$�e[�dfQ't�e�J�$�e��I$�e��I$�e��[�I$�e�$�e�_R$�ě$�e�$�e�4�$�e�d$�e�l�_bl��w��JU�V_b�JU�V��J�K�j���d[�nj�_b�d[��K�j���d[�j�_b� ���K�j��l�_blҠ�1��Lߪ ��A �0U�Y~�>��5� sTN����v �ޟ�j� �rd��t���v ��f�v ��_b_bft�t衟uY��_bobԟuY�v �ޟuY�s<$�W�L�+[��kZ+�f �ޭ�(�)R�_xU�f ����s<$�W�L�t�i�����i�t�f ��C����TN��_��U�O����T���(�)Rf�0���ޱ�0���f ��K�]癱 �Jޱ� �Jv �ޚ�� �JW�L�W�L� �Jf ��f ��\F�ob�ۡv ���kZ+� �Jv ���_Z���saZ���Z���_/�CZ��ܗ��)R�O�O�_Z���AZ����O␗��O␗�O��)R�O␗�i �O��O�)R �O��)Rf�[�=f,���7�ri�"_�����7�r��7�rf�7��X\�ru���7��7�rf�__)��)��Gb$�q_)���)R�)Rf��q)��Gb$�q)���q��)Rf�pp�#W�rpI�f������7�ob��*Y����� ������ �����̗��*Y��������rW��rd[���d[d[�f��������������Y}����r���d[fk4�ӥ�cbC������f�����������fob����ob���Ν����0`V�>��3��X�����c�/���=�ܕ��C�_H�Ȑ�P���_���=�ܕ r�&ܴ����������g�����Kۼ�]@�=�ܕ�� r�&�jb�N����pN`]��N��܅ࢣ�����TS��z��a�}����g�Q'o����^�A�vc�O�:�� ������ ���R��������� ��(������ � �������� ���g�e�������g���h�e���������TS��z��h��K1^���� ��X������f���������>��y��g���t��������U�V�5�-0N�i e�����۞Q���(C��C��5�����������JO��g��R�����d������(�����d�����\�� ��� Jf�{�H�9�L���L����xU�k���@��A���� �b�� ��(���� �`#�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ�����>��y��gfҪ�000��ruW�ݪ���W_000����[��S�?��W_S�?��W_����[��S�W_����[��S�?��W_S�?��W_����[��S�W_����[��S�?��W_S�W_����[��S�W_S�W_�S��S����f��S�=-E������Rob���N��ob��̝���N��蠚�t�� �J&����<�K�� ��_b�__�O���f�?[���T���?[�����f�Q'T���?[��0��0�f�P��C�2�t�e�JT���K�P��C��?[�e�JT���K�2�t�Z����2�t�Z����?[�P��C�2�t�e�JT���K�C��?[�e�JT���K�2�t�Z����2�t�Z����?[�?[�:?T���T���f�?[߇�K�f�K�� �JK�]癱 �J�����������?[�iQ��?[�� �J�@ X�^�nKW� qqW� qWW�B��[�W�B��[��M���e@�W�W�"� �nK���^qnKW� qWW�B����e@�W�W�"�X�� � �@ XW�V,�WPAF�JfW�� �W�� �W�W��2�?�q,�� �c�T]���c�T]�y]Gobb\Q���\Q���̍����ob� �y]G�mU�c�� �`2b"��������2b2b��L�2b_R�2b]� _R��� _R�W� _R�_R�sa2b_R�W��]�_R�N�NnK��_R�D�m�N���݂N`D�_R�A_R�f`m�N���2b��`f�2bi~2b2b�2bk�(�2bf2bf W����P� W�dP��2bfvk�mfi~m�mv�A�vf���i~�j���%a�ru��i~f�7��7ޱ��f�����Iob4��� ���(�(����ݩ�N�ob�N�mv�A�ob�����U�^�?be�L��ob����ۡ�̝�9������>�-������?�R�=�rcR`B�rc�=���<>�-������R��R]���?�R�=�rcR`B�rc�=���\ob��ob>\B��̝>\B���kZkZ��kZkZ�b��kZkZ-E�kZkZ�b-E܀-kZ�b�-�bkZ�#�fs���T�>3�����*�T����*�T���*,�X��3��r�Ir�IO�����M����H[�>3���s�����a_���M��O�����H[�r�I�H����*�kZkZ��f�kZkZ-E�f�-f���*f�b�b�7��7���b���b�X�8�@<�nZV���*���t��_bA��-����[K���� ��t�f�� /�\�U�V1��A �j��"�,�|�������X� ��A ��_b"_bde���A �A��-����f�c�i=�Y� ob dk��򙅡��e�dk���~�>���� ����e�Lv����d������i��W�I�[r�� � �[r��f��N�Z��*�N�Z��*V�&�&�����NZv����d�������N�Z��*&�]�V�&� ������������#��N�Z���Z�*�b_�a�i��W�I���^���Z�NZ&� ���NZf�&���*���*V�&�&�����v����d��������*V�&�^���Z&� �V�&�V�&� ������������#�^���Z_�a�i��W�I����� ����f�V�&�V�&����������V�&�v����d������V�&�b�Yv����d���������������#�i��W�I�_�a�b�i��W�Iܽ�b� �f����e������������e�ob�������L �̡���e��Q'\������� *�]癢���� *�]�Q'\��� *�]癢 *�]��_�����Lx�ۋ��L��Y`�7���_�����Lx�ۋ��L�狏�L����YY�k`�`�_��ܝLx�ۋ�f�Y`Q'\������� *�]癢���� *�]�Q'\��� *�]癢 *�]��_�����Lx�ۋ��L��L����Y�Y`�7��Y�k`�`�_��ܝLx�ۋ�f�Y`Q'\������� *�]癢���� *�]�Q'\��� *�]癢 *�]�����Lx�ۋ��L��X���L����Y�Y`�7��ܝLx�ۋ�f�Y`�L�Lx��l)�]�]癝l)Fb�*K1�ob�Y`K1���Y`Lx��l)误�S���b���S���b�1��L�Y�b�k�bf�[r���d��զҟuY�b��#WۺҤ�uY�b��b�i���-E�Ұ����-E����S���VJ�b�b��^�S���bf�d���X�����d�X����������[���� �`Ұ]�(�uYj���]�(�uY̢�����[���� �`Q'Ұ���uYj���uY����d�X�ҟuYҰ�-�Ұf�����P�#W����������X簁#Wۺ�G����P��-R��X�̽�#Wۺf�b��uY�H�.Tf�HUH�.Tf�V�UH�.Tf�V�U<�H�.Tf�y�H�.Ty�f�Gc� �]ܮGcW�d���Gc"H��@NOGc� �]ܮGcW�Gc"H���GcW�d���Gc"H��@NO�GcW�Gc"H��"@NOf\F��X�d�����Gc� �]�@NOH�.TGc���H��Gc� �]��X�d�����Gc���H��y�H�.T�X�d�����Gc���H��@NO�X�d�����Gc���H��@NOf\F�Gc_�a�GcW�d���Gc"H��_�a�Gc_�a�GcW�Gc"H�� ��f\F����H���X�d��������H��Gc_�a��X��a�H�.TGc���H�����H��Gc_�a��X�d�����Gc���H��_�a�f\F��",�H��"H��f�eH��H�.TeH��f�H�.TH�.Tg��H�.T��er�)����c�O�B0�>��c�O�kC� �c��#�&���� �� ��� ������>��ʝc�O���g���g�W`��h���W`�Ԅৄ�S�]�����z��hi��kC�W sTN�*�����L����Ԅ�����^��������f�^���Zp�9?�ZY2�=��9?�ZY� �2�=�2�=�pp� �� �J��J�������IJ��W�2�=�p� ��J�� U�I]��If�^���Z�9?�ZYc��f����F��T� �*��r��g�� N���F��T #�*� �)� �)�pz����Zl����D�i@�A ⧟ʫ�ruir� �ir� �f��j���j���j��f���ǝ��b���j?@������L��������_R����c��t���P�����.�t����L��������_R����l�$���v���W���W�M-�"��e�J/�b+ �_�ܡ��W����pW�M-_�ܡldf譭eァ1���W���eカ1�l��(�1�̡�1��k��c�:� ���a���M��X�\I�&��[e^Q'��@NOf�4��� ����SiU�����6���H[S�d[���W��ޭ��(ժ��f������8)�(�(����8)��]�D�aob�]�D�a�n����8)���g>\c\�� ��g���h� �ȦH�9�Q��H�9^����z��h�bۦ_����H�9^�ئH�9^����f�����]��N���c���]�(�΢��L�O␮O���)Rj���O��ܢ��O���c���O␍�i@��f�]�(� ���iQ���fiQ��ǝ�]�(� �������g���g���g�$��}�d��]��ʇ�a�w���&� �]��z��a�w�(� U��Nj�w�}�d�vvvvvc�O� ���v��Om�M�%u�0�>\c\���g �������ۡ�g��g�N���@N��z��h��V� g�ݑ�h��Kۼ�Ȭ.ܿ�@��N��N��f�Q'����b�v��_R_��#W۬�g�vc�O�k <���>�b�ӟ �t��t�>\c\���gm�M��U�^�?bɉ�h��NZ����f�����N���e^�=�z��#F����g��gɪ�V� g�ݑ�h��Kۼ��)�lz��h�N��]�/���_R�#F����)�lgfҮ���ht��_� �T�t�bn �c�:޴1��N���nf��_� �T��_� �T�0_Y�MY�_� �b�b��^�_Y�MY�_� �1�1��MY�_� �����n_Y�MY�_� ��e�@� ��� ���vc�O�W�e!^mWѫ�e!^m���ge!^�he!^���[R��m�M���gɪ�V� g�ݑ�h��Kۼ��fi�<��#�z��hf�{�i~a����fi�<��#�e!^gf�t�Dk��dt�lw���4��vC�C������t�t��iQ����g��g�\@� ܥ���躞 ܥ����j��Dk��dfҺd�����d����������c�O� ����ۥ�g�ݡ����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����[Hf�wvm���#W۬�g�vc�O��U�^�?b����g��gɪ�V� g�ݑ�h��Kۼ���kb�f�k�Lc���D��Nt�t�f�����LT���aH[� ��V���>�9� ���-E�>�9� �-E܀->�9� �-�9�_Y?����e�LC�� �f�I�`>�9� � ��V��7��7�̇L� ��}�����gɪ�V� g�ݑ�h��Kۼ��`B�?�R_��z��hK1^�LcbCd8���7��`B���`B�?�R_��f� ߠ�g�v��g�c�:�c�O�}B]��j?��g���W�����W��g���=���=������ɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����l�f��O,bc��J��Q'_���;�`]��vfS���ob�P��W��MO,bc��J��obO,bc��J��P����_�̝��P��W��M�O,bc��J��P����_���g�j��j�m��۝e��GQ���g�l��g�l��g�l�=��g�vc�O� `��g%u�0����d�����g����k`�ؘ�$�fҝ����ܿ����w��`#���y�l �%u�0�ء&� &� ���(S�=c�:����g���g�W`��h�W`Ȳ&� �]��z��hDzJ��V@��3�ٲ&� &� f�~�>��t�~�>��kc����a~�>��kf���m_R���L�m_R_Rl(������_R1��L�f�t衟uY���L�=�I�_R���L�(������(�������/b��v��诌���c��nkϯ��� �k�X\�c��蛯��� �kt�f�e�J�n��� ���U�^�?b̡ ��nZV���*���kZnϴ�n�ܬ���� ��_b�__�O�� �nϴf�`#���ܒ�kZnf<�c�i=�Y��l�Q'\F�de���̡�����X������N@� �`c��� �` +N��N@� �Q' ��[VZ�2ߡ� 6� (�obru�A��-,ob�� 6�LJ�LJ��,���i�7�� 6��� p�X\�c����>\[?��>\���� p��L�t�f��U���i~ae�oT�@_:��#�e�Kl��}�W��i~a�Ld��i~a�#��ud���+�T���-2���a_d��c��e�f�>\[?� ����-2��-2�����-2��-2���=�`#�����e��-2��-2���cbC���� cbC?,��cbC�i��X\���܊�-2�dk��5�[Sӄ���-2��d��c����]�\?�R��j�J��W ��X\�J��j��j�LW ��A��_xUW ��A��d[�f豱e�M��6�M��6�ob����ۡ��� �W �j���q&�M��6�j��� ��M��#W��_����a�[�rM�퇉k^�]�-Eܰ\I���#� 8`Wܐ�T���_��n�b5� �t�f�d[�W�� ���=W�[&�#W��c<��-� nf��d��M�i��Wf�[V� i���� ���f����Y}���|�i�=W��o�i��d[�f�e�J�c<�c<�� S�*�� S�* � S�*̡[&��j{xNj{W�xNxNW�p�f�j{j��=��NC�)i �? �=j{xN�NCL^`���a�NCxN�)L^`���a�)xN�NC�)\�`_Q���j{f�j{L^`�(i~�j{f��n�����L^`L^`������L^`n������V@�c��V,c��d�B�y1S�=����g����/ܬ�g���� ����g� ����g��gɪ�V� g�ݑ�h��Kۼ���� ^�[�z��h}��]�(�yG2N��%a��� ^�[�f��vc�O����+� 9�z���+ৄ��+� 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�fҴ[Vܢsa�[Vܴ�O�z3�X_H���L� sTN���Q�� sTN[V�sa�[V�f�z3�X�܁���z3�Xf袇��� �< �]��� �< ���O��O⢇����_H�_H�f���篢ob��̱d$�� �������ۡ�g��g���� ������������g��gɥw���Q'o����^�A�`#��ߠ���DU�j���vc�O�e�������g���he��������aS�����z��hK1^�������Ǭ.����V@��3����aSf����b�m�M��vc�O�\����t�e�J������`���݌�����gm�M��(]�D�aT?�]�D�ay1%�����^��y1S�=y1ߦߦ�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����\����f҄���\,�q9�] � �஄�f�&�T蠄�e�ri=��e����&�T�|��K���p�����\,�f� 8`ob�LF�SNob���LJ�LJ苏] �̄�W��] ���]�[�� Z2����y�^��@ۛ��]�\�G���̛*�c��蛅�]�\]�������������������������[� Z2����,��L�rnKc���� Z2����f�%��N �9G2N\��3�K���S�^�R�Z��ܤb�V���#W�l�۟������e!^ge!^�������e!^g�v�=�l?�R��?�R���� �k��QliQ����g��g�Q'�X������w���lw���V��������z��hv�A���y���_�>\����V��f����]�D�a��g��g�H����vQ'o����^�A���ܕ�o�c�O��o�Q�]�(�����<���g�W`��hK�Y��=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f��*�bWe��T�O���e��]�2�T�\�W�*e��]�2�L^``B�e��]�2�L^`�T�T�\�L^``B�-�L^`�T�T�\�L^``B�\���L^`�ob>�2����k��ob��L^`ob���L^`���k��̝L^`���k������ۥw���ǝ���w����d �����g��g�ӟ ��V� g�ݑ�h��Kۼ��i��\�'��z��h����Li~a\���K1^��i��\�'��fһ���-��"_b���J�ۚ�f�ﻻi@ X���޻�����8K�rur 8����J�ۚ��f�ޚ�f��f\F���rW��f�ruru�̡��~�>��� J��]�R��-E�kZ-E����/]�R��A��[V��� J�� `-Eܠ4����L����/�C/[V�f�/C��������S�C����A����S�C�������^���S�C��C���[V���S�C���C��5�ǝ�b�C�흡C���( ���C��̝f�E�������y��篝� �����>�9ob�>�9[��C������ ����0�obC�����I;VY�0KE�ob �[��C���( ���C��̫�EZG(�G(��b���ge!^�X\�E�?�CEZG(��y�a_y/K���dUEZG(�G(��b���f�EZG(�G(�p���L�a�X\�E�?�CEZG(��y�a_y/K���dUEZG(�G(�p���f�E�?�Cfob����b��e!^�f�{��nf�{�nf�����ޭj��;�����F���Z)j�j��j�=ު���K۴�d[�j�j�j�|�i�j�nf�f�{��f�{�obf�{ ��V�����X�j�j�����]�D�aob�]�D�a���X�����b�c�O�ͣ͡���C�r6�����.�t�l��ܟ�%u�0ܞl�=��gd d �d d �d d ��g��g��@]癞hQ�&�]白������C�r6�����?z��hC�r6�kCU ������C�r6�f�l����ޔ�d ��ͣͥw����w����d �� ���Y���Y�W`g����Y���Y�W`g��gɪ�V� g�ݑ�h��Kۼ���Ulr� a����z��h��U����kZO���Ulfҡ��lt��K��M-i��㧄���㧄��3�����3��������.ܞy�l�������� �������ۡ�g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������lf�j�k��d�_xUnj����ޝj�k��_xUnj��t�n�f� �� �� ��i "��a�1�NTN �� ��1�NTNob�1�NTNob_xUH���ob��̝�1�NTN�]�RG���H�X��i?ށ#W��a_���P� �]�RG���H�X��#W��a_sa�]����P� �]�RG���H�X��L�c Ude��]����P� ���]�RG���H�X��]�cfd���P�]�RG���H�X�� ������]���f�f����f�ob4��� �����H�X�����H�X����?����H�X������H�X����?����H�X���%��]�R/�O���T�U��T�]���]�\_R�+ ܗ$�n�_Rt���nKj��oj����́#W۫ �ށ#W�v�_Rk^��ob_R ��ob_R�#W۬�obH@�#W۬�rru�t���_R���-��#W۫�n���nfH[d[�W����H[d[�����d[�Wd��d[�d��L^`� �Wj{L^`� �j{DU Z�W Z� Z� Z�WWd[�j���nf���]�D�a��]�D�a̡]�D�a��l����ߡl����߭l������l�G)R��e�@��j���j����V���X�aP��N��V��M�X�vc�O���g��3���e!^˧��[R�� ��g���h� ���aP��N���/z��h[}K1^��aP��N��[}:[��M ^r���aP��N��V��M�Xf�@�l������� z��hz����˲e!^���[R���=��g �������ۡ�g�l��g��7�.����� ��g���h� ��@�l������� z��h�(j�@�i�*K1^���@�lf�Q'�j���H�9��H�9�j�vH�9�.ܞA �0Ui �������� �1�I߯������)� J��i~ J�i~�v�A��RgH����Sd� r�&��R](��K�H�����B��X�}�s�L�.�U�V@ X|��|�i[����DJ_�B� ���a�S���|�?[���� ���a�de��dk��� ���a���J�|�r� a��|�r� a|��A�|�r� a|�|�r� a4��� ���އ�|�r� a�J���|�r� a�c�f�c���f�c�d��f�c���f������c��nKb��d�@�P�@�Pݛ@�P�c�f�@�Pݍ� �`@�PݱP��j����^���P���@�P�f�@�P�P��[Z ��@�P���f�P��[&�l���g���g�c�O��V� g�ݑ�h��Kۼ���3�K������Y���Y�W`g]� �����Y���Y�W`gx��W�����Y���Y�W`g����Y���Y�W`g��g�e�$��k���z��hY�dL^`���Y�b���e�$��k���e!^gf�w���Q'[�`B��*Q'e���R ���@U�����2\ܐe���RK��uY1`�a_&�c�T&�uY0����S�AJ�vc�O�c�T&��>\� ���]⸎b��g�&��bc�T]������b��c�T&�����Sc�T&�f�Q'e���R ��S���\@�\@��W`g0��M�b�������k ��c�T]�qK�fc�T]�&�I�&�"qL�f�{pp �&�p&�iSd�pp �pf�{� p �&�� p �&�q�N,ǂ��p �&�iSd�piSd�p�J�$,�&�&�qKI&�f|q�d^�#�dk��&�2��|�܁p �I��,�p �ru N�GQ��pc�T]���pp �ru�*���X�_�a�ru N�GQ��pfc�T]ↂi��M&���M�篆�&���MWJ�\���9�� ����������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fһ��Z^��r�)��\۲a1����W���nK�|�i��bhDU�c�����C��@P�L[&��y1�TI�P���Z�\�F��T�\�d���P�d����C��@L[&��y1P�h�0���@hd��P���C��@Lf���Z^��r�)��\۲a1����W���nK�|�i��bh�0��P܊�DUT��c�����C�P�L[&��y1�TI�P���Z�\�F��T�\�J���J��P���C�J��Lf���Z^��r�)��篾ob��b1�F��TF��T�b1�y1y1S�=�eゞ.�g�Pܤb1��f�{c��cj{j{ck��k��k��p Lf�{p� �p� p� ���-c�<���2� y����y�c�cj{�y����c�;� y�����y���܏�����.,���y�c�c�;j{���b��cj�clj�cf|y�Y*k��y�k���Y*k���k������#�Y*k������#�k��2Y*k��2k��i�Y*k��k��f�Q'o������-�2���.,���b��,�k��j�c{��c{�>3���L� Ud >3���D�9f�>3���L�L���>3�܆��i>3���L�f���O�W� �]���2ߚ�O�f�]������"O�]�������O�f� 3�Pa��2ߘ�fA�����a:�A��������� 3�Paq ��_x��Aۀ����"�a:���� 3�Pa��2�f������������� 3�Paf�e�����B������#���T[V�|�hh�l�xN�����B��h_xU[VܞDU[Vܞf�B������#���TW�DU|�h�l�xN�����B��W�_xU�DUDU�f�Q'pI��j���=�l����"Q'pI�l���j��"��TW��l��xN������j�W������j���=������j��������b_xUL�=�f� �E��� ���g������U�����<���_Rc�O⃪���e�@�����le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f���g���g���g��(�VܤVܥ��v�(�VܤVܥ��c�:�c�O���� F��TF��Ty�l�-�]�]�}B����g� ��g���h� �� ��Ǧz��hK1^㡦���S���f�Q'k�_R�Q'_���Tn���զ��_R$�$�������b�c�O�ͣ͡������.�t����J�^@����z��_z���ۥ�g����DU�j�� �������a� ���\�`��g]�D�a]ߦf�{���=覦���g����l�������gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY���E�z��hz�������]� ����&��˟uYӓ,e!^[R��S���]� �����&��˟uYӓ,]� ��Jb���S���W�e!^mWѫ�e!^m���ge!^�h��˲e!^���[R�� ����E�z��hWܐ����R/�n��ԟuY��ԟ�f����]�D�a��g��g�H����vQ'o����^�A���ܕ�o�c�O��o�Q�]�(�����<���g�W`��hK�Y��=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�fҥt�w���ǝw���t�w��5Ve^��W����ܥ�Y�d5Ve^�5Ve^� 5Ve^��*9�e^�HN5Ve^�5V�e^楝e^�5V��)Re^�5V�e^����}�񥃟}������ �M����}����g��gɪ�V� g�ݑ�h��Kۼ��5Ve^�z��1���hY�d5Ve^���5Ve^�T�`}gfҥw���`#��ߠ���DU�j��DU�j��g�$���Q'o����^�A�vc�O���ܿ������������gc�:����S��g�e�������g���he��������aS�]��z��hK1^�������Ǭ.����V@��3����aS�]��f�n����զ��c���C+��y�t���K�j���܊]�(�w��&�l����>�>\ET��l�ޟ�vc�O�y1S�=����l�������`#��ߍ��� N =��]�D�a�Y������>�>\ET��_�ET�ET��#F����g��gɪ�V� g�ݑ�h��Kۼ����� G2Q��z��h�7� �����V�������f�z�e!^[R��˟Q'e�J��A ��P2EQ'�uY�$����g������I����g����.����g����˟��g������U�����<�����g���������g�����A�l��gɪ�V� g�ݑ�h��Kۼ����ꆟ�'�z��h���}��5�ʟuY����ꆟfҝl�dk�l�dk�l���Tl��l�e����T ���l� �ͣ�lw �ͣj�lw �ͣ�]�(��l�S���l�ޟuY0��l�ޟ��#F����/b�l�I ,�ʪ�V� g�ݑ�h��Kۼ��V6YW�VT�z��h�#F����K1^��K�����3����V6YW�VT�f�e�J������`�(%�%�g�vc�O�������X\܃f�{��`X�Y*w���QI�6<��z��a� �w}��e!^[R��[R��e��QI�6� � ^���_#2B����J�0��V�������������>��[R�� ��݃ ��]�\�>���>��ʬ`#�6���C6���g��gɪ��g�W`��hK�Y��=��W`�QI�6<��z��h���a��b��Q���QI�6�fҬ_R���#W۬�g s�����:�_R���t���{t蜬��{b�����{���� s�����:ɬe�@��]@�c�O�DZ�.��3�X[�e����b�e��g}B��g��g�������:���l����:DZ�.�r�)��Z�b��c�O✬ ���gȞh��d�K����{�_�A��z��hUX�+�j�i�����{����:fҡd$�t�ۣ��lʗl�vc�O�ؘ�<�����y1S�=y�le��g�#W۬�ge�J���g���������0��M�b�.ܞ]�D�a��-��l��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����d$�fҫ�d�_Rl)�dt�l)���t�l)t�Q'o����^�A�\c� � :�Fb�* ���vc�O��d ���d� �������]�\lWB����e��g��g��gɪ��g�W`��h���W`�l)z�`M:�h�K1^��)q 3�Lx�������l)f�Q'�uY�Q'e���R ���܍���S���\@�\@��W`g0��M�b�������de�J�O ���]�R��iQ���g �����g���Kۼ�ȟuYZ`�z��hO_���߀[��&��؟uYf�fdS���de��}��X�f�de�ޢl�����`����\@�h��䧄�t规�$$�t�t规�$$���ܧ��$$��j�c��� vj��j�vc�O�w���_R��g�zl�l$$���l$$�ɪ��R�g��呞h���K� ����b����ȧ��$$�٧��$$�f���g����}�d��]��ʇ�`X�Y*w�����&� �]��z��a� �w�(� U� ���܊�,������w�}�d�vc�O���ܿ����l�4�4�l���ݜ���w��e����'�E�]��&� &� c�:����g���g�W`��h�W`���&� �]��z��hnKیL�$���X������&� &� f�c�����������������b�c�O�$��}���ͣ�w�������t��������.�t�L#������KZ�b� g��g�ۥ�g�=��g��S��gɪ�V� g�ݑ�h��Kۼ������(�Q���g�&�Iܞh��������f�+ ���b��X��NY�+ �i�ܭf���� ���b��]�EZG(N[S���dk��^y�EZ�<�EZG(NQ'Wѓ,�/��@�_Y+��0�W� ���TT��W�W�W�W�W竁��[SW�W�+���bDU�+ޚ�]�+���b��� ���b��]���b��bf���]�]ܚ�\�����b���䫫UX�\�����b����y��NY��NY��/b�ob�]�D�a�+ �\�����b�����_Rl�(�������/b� ��V��_R��-br�d�_R(�������/b��#F����g��g`B��g�vc�O⇉`X�Y*w����-brG2�z��a� �w}��}����p��^��V� g�ݑ�h��Kۼ���-brG2�z��h�K1^�\���9ru���-brf�+������C���vc�O����+� 9�z���+ৄ���-�+� 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�f�w�������������b�gy1S�=��gɪ�V� g�ݑ�h��Kۼ��y��<�t�@������^�/��6b��z��h@������^�v�A�v�A�+ �D����F��e!^���[R���t�@������^�p������������6b��z��hz����������6b��z��h����2�/����������������f�Ο�-EܟӀ�ʞl�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا��`#�������C�����g�������g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gf��=�nK�|�i�_|�i��biQ���#ݹb_��iQ���#ݹb_��diQ���#ݹb_��Xp�(|�i��biQ���#��W�`�[V�DU��iQ���#݈�diQ���#�j�_Q'��Cru ��=����B�4���_xU� �e�Y�]��=�i@�� ��V�c�:��b��_K�<�� `_xU�=�r�)?�K����B�4����=�4��߭�=��C��(4���_�a��=�4���f��=�`#���_j����+Q'4���S�4���Y�D����ށ#W�q�4����#�j�GD�4���j�M��6��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fҜj�b� ���`B��g�v���b�c�O�ͣ͡j�����.�t� ���ۡ�ge��ge�J������`����ۡ�g�b��g�b��g�����)��X����a������=�����g`#����=��g��g�l����g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����j�f�<<<�2ߗ�d$�i�i~����W�Lߺob�d$�j��ob��ob��l̗۔�������RW�L�d$�语��b5�t�f��������Kۢd[���f����E(����������M�>��>�`��������[����LF��i�*f����������������)��pi�*fob�MY�Ib�ob�IIb�j�_bobW�L�e�k`��ޢob�]�D�a��ob�]�D�af�ob�]�D�a�b5�ob�b�.�g̡Ib��fd\F�_H����b\F�����*����b\F�����*����*����b\F���ޠ�����_ ����b\F����b\F�A��-q_ w�0GW �c��t�f�����������ob��ob �Obob�j{Obob�e�J�OObob�ObobikObob�Q�]�Obobe�J�OOb̡Ob�kZkZ ��pS��]�R�����B�?[O_��f�ޛ2b�S������" Aۛ2b�S����� A� Aۛ2b ��pS��]�R�܋ ���f�ޛS��S��������pS��]�R�� ��_R���f��2b�"qkZ2b��S�� J�ۛ��� A�-E�@ۛ���]�R��-EܛS��i����]�R��-E�_R�S����� A�_R�2b_R�J��pS��]�R�܂NnK��f�����ݩ�S��]�R��]�\��q������O����k���������[�����OO����� ��b�� �����Q����O�X�5� ���O� ���f�q�����PO��]��k������O]�R�����OO�����f�qk������k��k�����k���Ok��k�����f耀��(ET��������kZxN� �k���@��� J `����� ��V� `G)R�l�Q'J����M�Q'�[&�Q'[&�z��(�a� ��V� `� ��V�+ ܞa�f�_�e�j� `_�"e� ��V� `�f��j�_�e��j�_�e�j�p ` `� J ` `�j��j�����#ݞ_�e�j� J `c����p ` `�� ` `�j��_�e�� `c���p ` `� `_�ruxN_�a�_�brp `_�e�j� `f���� � `��� ` `�f ` `�Ǟeゞl� ��V� `G)R�l�Q��r0U���P�0U�0U�f�Q��r�0)������k��_�a諁f���ikK�����^��^ ���ikK`B� ��de��4���L ���^��^ �c��� A �kc��� Q'O�]�M�A �mA �fkmkfc��� mc��� fA ��kkc��� c��� mZ�����i��mfM�iQ���rru������$�e���4���L ���m$�e�y��*c��ac�sac��ad[�y��*y��*c��aA�*����D�G2 c��V� �*���M�d[�Dd[�c��f�sac�kAkc�f��*�b :�Q� c����*�bQ'�*�bi��*�bc�f��*�b :��*�b��,/�C�*�b`B�c� :�Q� ?�R :�Q� c�f� :=��*�bH� :=��*�b :=� :��@�K�*�b[$�� �>�2� :�f��*�b��\��\��*�b������2���f�c���"�K�����W� ����\��X�\��X��=�nK�|�i��=�nK�|� �DU�� A�"�K��j�d[�fj� �"�K�� �"�K�����f�Q'�� ��J���ݻ_xU �_xU �c��� �\��X�f���fj�ob�K�b��(�@.���b�r���dP�R��b�H[b�������������r���H[r���dP�H[dP�H[x�\���\��� ���|�_2&�T�J&�T�]��H[��T��e��T�H[�H[-E�kZ��@r��(���r����8�(��� �k�����r��r��(���r��8�(��� ��[���������q������g�����}�d��]����(� ���܊�,���w�}�d�vc�O���ܿ����l�4�4���ݜ���w��e!^�e!^˧��[R��r�)� �� �@r�)g �������ۡ�g\������ �c�:������g�e�������g���he����������a��]��z��hc�����������&�?������a��]��fҗۣ��l�]�D�a>\c\��X\� ��V����g �������ۡ�g��g��l��C6�H����vQ'o����^�A���ܕ�o�c�O��o�Q�]�(�����<���g�W`��h�=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��=��g�-�lFb�*�vc�O�+�S�K�]�(����L��W �9�]����Li۔�4�����\�2�����b�����������lw�����w�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������=�Ve���f�j{j{Q'j{q��*�`B흗�ǝUj{�c�������U��L�۝f�lj{j{Q'j{qj{c���?��\��*�^`B�Uj{�xNW��xN\F��X��A�c����^�����L�۝f�l�]�\\F��X��A]�\\F��X��A�xN\F��X��AxN\F��X��A��\F��X��AU����lU���ll���l��llf�ob��lf�\F�ob�ll̝��\F��X��A��1`�W�V��1`�]�d�h�qi~a�W�V�_�a�i~�f�hhz���������GDGG��>���f�}�G���d��M�������J��f����nK��[qqV�"�q��sa���[f��W�VܟuY�2N��f�{[�d�D��S��S��2N��f�{S��2N��S����L�S��2N��>�9f�S��i�S��2N��4��S��S��2N��+�f�S��2N��f0a2N��f�{f]����D����D��S��fk��Q�J��J�����LNm ��a�� �`S��d��y1�kS��d��y1"�S��fS��f\F�y1y1S�=�@��-E�kZn4��nK��__�X�kZnT�`�_��f�nZV���*���kZn�������e��r�2q��e�J��9�nK��� ߠ"���UU�V�K�����M����M���U����Mޒ�r�2f�ZA�&�A��1�K<�kZnf<�_��N�Z���#�nfd�7v�W�J��v�A�c���c�i=�Y�Q'\F�de����Q'\F�de���̡����^��e�J�q��dk�ۓ�L��dk��bdk��L��,�dk����,�dk��L��f�M;,�dk��M;f��,�dk�ہ�f�b��,�dk�ۏ��f��o,�dk��of� ۆb��3�,�dk���3���\�dk�ۆ�3f���,�dk�ۆf�A,,�dk��A,f�P�V,�dk��P�Vf��7ޱ�dk���7�f�Wܐ�_�dk��Wܐ�f���L�,�dk��L���f�]�@ Xq�N,�dk�ۂNqf�,�dk��f� �|�iF��|�[Q��DT�i�DT�-E�kZn4��EZEZ�ܒ����pDT�EZ�rEZ#����ߒ���f�]�[H5�nZV���*��d�DT�_b5�G�f�DT��J��kZn4����=��X\�j�Q'I��DT��("kZd�DT�Sd�DT�fDT�pkZnDT�9DT������ �DT�f�EZ��r8KEZ��pDT�f�DT�kZnf<�DUob�����̡DT�~�>���&�(2�[N�q_�a��*�b&�r� a(2�&�(2�r� a�-R�c�T]���R/��(2�#Q� a#�fc�T]�j{����q_�a��*�b&�j{��&�j{���-R�c�T]���R/��x���{J�fc�T]�UX�L�*�b&ޮ=_�a��*�b&ޠUX�L�*�b&ޮ�-R�c�T]���R/��x�� �&��*�bJ�fc�T]��*�b&�G�싐���&��*�b&�_�a��*�b&��*�b&�Y�dGB����E��c�:�c�T]���R/�� ��&��*�b�fc�T]�&�r� a-E��Z��_�Lr� a(2��*�b&�r� a(2�i�*&�(2�r� a�c�T]���R/��(2�#Q� aB<�*fc�T]�_xUA����-E� ���j{-E��Z��j{�����*�b&�-E�j{��i�*(2�kZ-E�c�T]���R/�Ϙ��{-EZi�*fc�T]��kZ��R/�c�T]�fdc�T]�kZ��E�������2ܮ ������2�f"�6�"�6�"-E�"-E�"[V�"[V�"� �"� �"T���"T�����]�����2�����2�����2�=��"�"���>��>��O��]�R/���>�>�>����>LW�]�R/�c����P�q���P�]�R/����P�Q'��Q'L������L�� ����^f��]�R��k���J��q�S��]�R��f�S��Q��O�� O�S��� Q��O�S��O�f�S��S��S��iS��S��S��+�f�hi���'EZ�����'EZ����S��h���h�i����'�'hi���'�'pS��f�EZ��r�d]�R��k��hhi��i���'�'�'�'hi���'�'S��f�W��EZ_RT����W��EZ_RT���W��EZ_RT�ạ_RT���]��nK]���/�Ci���Z��_H�@ XG2 ]�D��r�@ X�Jb��������"_�a�� ��a�i�����Z@ X@ X]�D�]���O� ��V�@ X ��V�]��f�� ��V��a��_��� ��V���a��_�����a�_��f���?\I�a��:� i����@ ��V��@fQ�� ��V�Q��f� ��V��f� ��V��f��� ��V����f[&� ��V�[&�f�a� ��V��a�f�� ��V���f�N���N�f_���_��f���� 8`����� 8`f 8`� 8`f_����_��f�( ��V� ��V��������̡��ik��������U������U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2Ee��g�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���fҔ������X\܃f�{��`X�Y*w���M��6<��z��a� �w}��ۣ��l�>\c\��X\� ��V���V���g �������ۡ�g��g��l�l��C6�H����vc�O���g�W`��h�=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�f�{f�{O��f�{f�{��f�{f�{�f�{f�{�Lx��/�C_�a�f�{ K8q|���a`B��7��f�{�Ui��U|�?�R�@ X�|�?�R��Uc@ XA��_�a� f�{�f�{��_�a� � cy�`B��7����L��y���*Q'j{c"y�`B��7��f誝`B������������F� ��ob��K�ccbC`B��� �`B����`B��ob4��� ��̡�K��j�j�j�G2 |�j�G2 d��M��k��Q'�ruW���=�k��i�y����y����=�I�h?�R�j�k��pnK�m�M�h_�QnK�hnK�m�M�_�QnK�f�nK�_�Qh�*��DIhrnK�_�Qh�*��c��hrm�M�c��nK�m�M�h_�QnK�f�hc���*��mhc���*��hLh�*��c��fhDI�*��mhDI�*��hLh�*��DIfj�;�� �KLi��*�by����f��GR���mob�m�M��=�`#���hobh�/b���*��GR������0�bk�bc��#����`b�zz�0��0�iޤb��bz�z��0�����e��W��e���t�f�bkf��0����]�\�����c�����0�f�b�5�bc���kCUz���`zc���c�������c����0�f�b�b�5�bzkCUz���`z�e�f���`b�z���`b�z^���̆b��b�^���̗���^�����X��X���-�WW��-�]�.]�. ��V���j��j����W�W� ��V������C���C+��ܦ���������0�*���������ۥ��e�e��̡^�����*�b�*�b�*�b�*�b�*�b���*�bf����L�X\�J��f�{�� Jp�fÛ�������J���^S �����X\�J���X\�J��f�{Q'�fû���X\�J���*�b�*�b�*�b�*�bru��*�b���*�bfܛ*���fdf�f\F��P�b�de��J���f�{�P�b ��b��|�r� a���g���g���g�y����f�{��� �U�b���C���g����J���l�vc�O�f�{c�O� ��ݤb���C���C��g�Vܦ������g� ��g���h� �� ��Ǧz��h+������C��+������C��f�O �V@�V@��,� �� �[V� 8`�@U��܊i=� 8�ki=���܊L�� �f��@�@� � �_��]�rcrcr�d��"Q'ikK� 8`��aD�[&��@snK���W 2��X� ��O���@L\�_��@�,H[� L�)�����@����@� � �f��@���@�$�nK�s���߃f 8` 8`�_�\�d�X�����Y�]��@��߽�K1^��nZV���*��nkZnn"�_b�t�G�f����P�T�ۂ�T�ۂ���7�iSd �b �nf� � � Z� � � Z�p���f��AJ�1�8iSd ��6� �T��6��6� �bf�� q�nf<�kZ� qkZnf<��^�>U�� Z술f��j{�0�kZfۂ�ۂ���AJ�� qobR*�R*�ob���̡��AJ��knK�c���dk��nknn\Idk��n�t�f�D��Nt�UkjSf�kUGB��� �>�2�nt�UnUf�_R� �Unt�kn\IikKnt��^ �kf�_R� �kdni~i~�J�ی���nn��i~�b���i~O�W�I������i~n\If��nd�B��GRe�^ir� Xc������nt�f_Rdk��n�A�UX��^�A�e�J耀��nn����b�ob���O�W�I�ob�����t�������ߛS"�"�K��S��]�,nK"q�Q'���� ��� �"�K�� ����S"�j���S"�"�K��"�K�� ��O�K��� S��O�����"�K�_�a����P��"�K��f��K���^�K�S��8���^� �T�P�T��� ��K���4��� ���#W�� ��K�GD�S"��e�N`��]�\1��L�� �GD݆Yޫj{�LGB��W�ū� � 8��L�9�X��W��X��_�a�j{c�sa��X�\F�GW�X�[&�f\F��U�i�Gc�U�U�i�Gc�Ue����Ue���Gce����U�X��*�b��i�V� �*���M�e���]�e���e�����Rd�B�I�$ + �i��_��R/��i�f\F�\F��iQ��DZ +��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�����V��0��]��N���UUQ�5���\I5���nK��R��b��5�f��� ��>�9��"R��b ��"5�fddr*�C�����Q�dr*�dr*��X�dr*���C��H�������AX\���p�XC��R��bf���dr*�R��H�C��Q<SI�cNO��AQ<C�����^�.���.�����^�.���.���fR��dr*���q�Q<Q�f�5�dU�@\�i�GB���� +�K�G�>\�M�i�GB����i i����[r��f�d�QI�y�df�b�.�gi~i~QI�y�m�M�m�M�F�[�TI�Iob>�2ߝ��QI�y������QI�y�nob�QI�y�QI�y� ��ob ��QI�y����ۥ�̉�aQI�y��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A�����������ۡ�g��JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�fҡ.N5�Q)D��b ��ݡ.Nt��܃���ݜj��j���������+������C��v�⦦����������������g��-]�D�a�UL^`�UL^`g�U`���b��y�lN/�i~le��g��g���Kۼ���UL^`N/�.��[R��&���.Nf���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f���g�l��g�l��g�l�K��M-i�g=����J��K��J=��䧄�����g�lv���#W۬�g��g�vc�O�llllc�O� ���Q'o����^�A��U�^�?b��^�A�+ӟ � ��g���h� ���U�^�?bz��h���B�kZK�B�e\������U�^�?bf�k��Q�dUM����Li۔�4������������`B��gl@ X� I �y1S�=����g�Ǭ.� ��X� a ��]Gd�T�f����i@r�qrnK������f�```i@r�f�����͜bD����]��&�fS���� ��t�Ӡ ���D�Q'����S��ob�P��+�b�̝��P��+�b�d ����g��gɝw�j�m����:�Y 8�� ������ 8��f�Y�Ydf�""" ������f����B�,� 8����q��ir� X�YkZdd��t�nVܮY>�2��7�e�J�YnV�>�2��7����5����E�t��<��l5��<��l �����<��l��� /���_RoT��_R�=��l��ܟ[e�#W�`B���$���_R$�$�ʫO�� ��'�c�:���c�O�k��uYZ`�z��k�5�5#�j{�j{�k[Hkf� ����܊�5#�j{�f��~�>��A �0U�h�=�I�k��e���e�~�>�⡋5#܄�[H�v�-~�>���@�]�d@�]�d�63ru,�@�]�d@�]�d�63�2�?�q,�@�]�d@�]�d�632�?�@ X,��63c�T]�c�T]���c�T]�c�T]�/��c�T��/�����b�c�O�ͣ͡[&�����.�t�c<� S�*�]������g�e�������g���he������� S�*�]��z��h��NZ����[&�f�N`��$��.2�r_��ۆbD���B�qY�2�c���Y�i ����B��N`��B�����B����$��B�_����B����.��B�Y�fK�q��fdh�(�C����TN��_��U�O����T���(K���������-�����t����Ce���������e�����������=�eゞ�����eゞ�����_�UX���(������(�������gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������-�����f�����d��n���C5�mW�L���� �ܛ �ܛt�f�e�J� ��ob ��H[����C5�ob���C+��ܦmob�m�M�nob�̤b��NZT�᝝f�ob����ob��̝�����e!^��v�(�VܤVܥ�-�]�]�}B]���SiQ����g��S��gɦ������z��hK1^㡦���S���fҘ�ۂbiUf��iUf��d���iUf��� #C)�T��]�(V-l)衇$(�iZ ���g�Fb�*�l �������ۡ�g�vc�O� �iZyp�����g�W`��h���W`��������1���z��hK1^�$(� ���������������iZ �f�խ��Vߔզ���+������C�������-YK�]�D�ay�l��gɪ�V� g�ݑ�h��Kۼ����Vߔ�2N��z��h�]�0K����Vߔf� ��]��a4�+������C���v]�D�a�+ ���g��g�j��w�j�vǝw��j�t�w�j��t�w�� +������z��h�\�nKی��?U?�R�� +f����uY�vc�O�Q'�uY�e!^˧��[R�� ��g���h� ��ԟ���z��h��NZ����ԟ���fҧ�ҧ���m�M�A �m�M���H�N�e!^g���Z��A ���Z����H�N�e!^g��g���Z��lc� �z��hcbC������m�^��m�M���Z�����Z��f��� ����Q����� ��v�b�c��0U�d@�0U�^:�v�b�c��0U�d@�0U�^�b��� ��3��c�T]�i~���f�{�� ���b����[�b��v�b�c��0U�d@�0U�^�b�����������i~��djT߆b�WJ��WJf�ob��8��ob��̝��8��袀��n�-"4�䢀�������nkfS��_� ��_� ��ob_R�#W۬�obt��Iob_R_�ob�P���Q'S��G�P��P���I�c�O��c�O���ҝ�nK����܊a��c��5� ��f� ���C�̡ ����Tj����d�B�c�O�f�ҡ�uY���uY� �靟uY�;������p�(��rh�(���Jrh�i~f��fi~E�� �D�� ��bg�����^\�l�^\`b`M�^\�^\l��+��[�v��烇�a�f���i~aj�i~�bfi~��fi~ob�+�i~a�T���H�����vc�O�b�d�_R_T?�+������C����g�4���n�_�ئf�dI������t���g �������ۡ�gE/<�]�D�a�)�l��-`#���.ܞ����g� ��g���h ��dI� ������z��h��� b��{�R����E��P^���dI������f�S�� I��$�l4�S�� IS��iQ����g�l4��viQ����g�����k`٘�$�f�y�l�l����g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ������>�>��.��f�\F��g��g��g[��{�\F��g��g���z��h� r�&ܪ�V� g�ݑ�h��Kۼ��� �� �]�� ���f�dI������t�E/<����g �������ۡ�gE/<�]�D�a�)�l��-`#���.ܞ����g� ��g���h ��dI� ������z��h��� b��{�R����E��P^���dI������f�le�t���gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f�ͣ���e�e�J�w���b���_R����lg�#F����g��g�U�V�>���Jy����U�Vd��NZ���f���e�q��\�l�]��B�l�]��B�l=�Ssa� ��拏��g�#F����g��g�R��f� ��J��MP�4��MP�j��f�MP�MP�MP�f� �MP�f�Vܐ������_2��KrnK�X\� �f�,��qVܐc��fMP��D����D��j��UUf�Q'[�D�����LJ�oj�LJ�>�9f�D����D����f�@�i�� Z�]��S�d[�W�0�EZEZW����W�0C��W��q��U�������)R�0��j������0W�ݢ[N�ob��lj��ob��EZob]b�y�lW��qob�W�L�d$�ob�W�L�d$�̗۪W�L�d$��D&��L��DA,&��&��bd[�D��L��f�?�� A� s�&�� s�?�� A�>��&��>��|� L �C?�� A Z s���Z&�� s�?�� A���Z&��>��|� L���R L���R>��|���R|�p?��?�� A�?�� A�f�f�{��Z&�A� A�Q'c��f�(�K�� &��D�� &��L��&��D�&��&���A,&��A,��&��C&������&����Z&��|�����R/���Z&���&��bA,�NZDA,�NZ&��b�A,��DA,��&��b����NZD��NZ&��b�����D����&��fc�T]���Z&�A�&��b �C��Z&�&��b �C��Z&��������r�&��b&��b��Z&���i���J���i _H�f��>��nK�����>��[&�0]�\5�[&��0 ����>�����k�����k00�i~ki~���k�]�\GB��f�y1S�=�������>���̡����<�i� < �i�i i �i�i�i�GD�i �睻��S��f\F�i�i�i [&�[&�Z�����[&�i ����i J�i�i �f�i�J�Z�����%a�i~J��"H��i ����fQ'L�Q'L�k������������_����c�����f� < i ob�i \Q�Ji [&�ob[&�i \Q�Ji J�i~J��obJ�i \Q�Jc���obi`��̝5��NZ� �>�2�>�2ߝ\Q�J����������������ޝ�f�����[V�����[V���������[Vܝ[Vܝf���������߀���f���������߀���f���a��a�Z^����O� ��-��af�Z^����c���Z^����f�i ���ޝ�-f����ޡ�����ob��̝�������k���� G2 G2 d[�e� `d[�[V��� }�k��]�s�_�a�d[�[Vܝe� `}�k��]�s�_�a�d[�[Vܝf�k���� G2 G2 d[�e�d[�[V��� }�k��]�s�_�a�d[�[Vܝ}�k��]�s�_�a�d[�[Vܝf��ܝ��d[�e�d[�d[���L��a_y/K���d[�r�a_y/K���d[�rd[�p�(p�(h���h���Q'dL�aJ��@�h@�e�e�p�(p�(h���h���Q'dL�aJ����j� `��@�h@�e�e� `obi~@�l_j�@�l_�_xU@�lobe�@�lob��̝d[�[V�e�@�l�"""c�۽"c�۽f\F�"""c�۽"c���f\F�"��"r_R� �0"c��c���"�9�"c��c���""]��_R�;��"i�sa"]�"�_R�;��"A"""c�۽f\F�obi@��^���Z�����ob;����>�2�G2N�����G2Nc��>�2߃�+5� ���X������g����](O���Kۼݐ��=�ܕ�+5� �]��N��ܒ�Tr��qi����[_bd�ޒܒ����f|5��d�B�i����*���R/�qi���qi����[_bd���� ����f|qi�ܠ�#��"qi���"��R/�i��_bqi����[_bd��fc�T]�c�T]�d�� �e�J�� �<�� ����5��qi����� ���ޒ����_b�i��5��c��#�@ X@ XW��DU�*���B�c�T]���[��[L���B苏L����B��)�f����L����j�]��q��ߢB�b�)�Lx����_�a�b�)�f����L����L����)�i������������)���ߋ�c�:����B����Lx����L����f袁��������ޢ��de���������ޥ�� �i@�㋏f����������������������X\���S�`#���B��)�`#݋�� �B�`#�l�r��ZfrWJfrf�������Zf���_Y�WJf��_��f_@�������Zf�_Y�WJf_��fQ'`�� Ldf��d���rri~�� ��Z�� L-2�r`��f�r�r��r�rr����I����ri~�f��`�i~��f��d���Z��B���� ��i~i~ ��rru������/� ���b�<��܊ ���X�\I[ � �����xN���ii �d�i\�i < i\�UW�m�mm0Um��D��\Ii i\�kifk�WJWѫ��0UDU�j�����X\�h��WJ�0U��D��\If�mobi~\����i\�i\�fk�ob�H��\�����b��_H����������_H�f�b���6���������>����>�������>������>��2�?U��6�f�L^`�L^`L^`�����L^`����L^`����]��_�a��L^`f�W�d�������M�\�M�\�����M�\���逗��W�d���M�\����]��_�a�W�d�f����������]��_�a��f�i ���xNIb���>�fxNc��� ���PJ�c��ffxNob��#��� �^����>�2�?UIb���>��]�zz��z �w�W��]� ����ޝy� �wে�]� �W��f�c���z�UL^`�Uz�� �e<�zz����� �e<� J��UL^`c�� ߧ�z�9�zz����� ��9�e<��UL^`c��z ߢG� ߧ��f�w�UL^`��Wߢj�zlw�UL^`mm�M���8� �w�f� �< ������8�f�_�z�zl�m�M�m�M�ob����̝��zl���g����R*�c\��AJ �����9 � ���� �������ۡ�g��gɔ������X\܃f�{�[1�de��}��}��ʝw��Q'o����^�A� ����H�p������F��e!^���[R���[1���� ����z��hz��gȞh���[1���� ����z��hK1^�e�������`M�V@��3���[1� ����f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��T�S��\�GQ�hh���`�T�h�]�R/��T�hpS��\����`f�S��\�e���-YK�L��T��ܪ��TߪS��\�GQ�f�w �Qp��S�i�QS�S��\�e�f�i�QS�QS�i��i�QS�p��-YK�f��X\��T�hh���`�GQ��X\��T�h�]�R/��X\��T�hp����`f��Tߪ�ܪ�X\�q�X\��Tߪ�GQ�f�hhj���hh���`f�h ܥ�篪�YK��� ���ru��2��] �������[���,�Q'WTI�z�mTI����f�{�S�c��觫]� ܧ[�]� �e�LkZ���9��9�[��9⧫S�L�@�W����J��q[�S짫�,����`�,�f�����W����Jb��,� �`W��L�@�W��S��S� ��L\`B�L�@�W��f�g�gc᧧���f�L�@ߡL�@�l�9��9�⧧�⡡��mob�m�M�̓,�z�J�������_xU���2�?U���2�?U�&�j{&�j{n�բ����UX�읢���뢺UX��&�nf�����UX�UX�젝�2�?Uf袁���&�UX�UX��&����2�?Uf�&�:�����f���&�:�������f�� ߠ�ܣ ߠ&�:�Z����� ߠ��f�rru���UX��UX��&�:���&�:���&�:�j{j{&�&�:��t�&�:�袀�W����c���j{qj{a�d��M�j{�aB��e�J�O\�e�J^�5�e�J�]�j{W����L󢀶���5�W���쥀���W����W����5� ߝ�5��fS���j{�aqaqaj{�aB��j{C��X��]�j{Q]�5�j{Qyy�5�j{;J���#�����#�j{qj{f�a�J��J��a��܍�Tr��a�aqaf��]�5� ��g�篡�P���Q'S��G�P���P�� ������ik��������U������U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2Ee��g�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���f���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f���]���UK_RU�O�8K�G2N�^�� �<�NZk��}]�^���` � �<U�](c��#ݢU�8��`��U�&�8KܐO�k��}8��`kU��eL����t�]��]��O�8K�O�8K܀G�G��k��k���k���k�r��`���M���B�O�����L��L�k������b��s�(�tK���|�t�]�����|�]��U�O�8K���|�O�8K�G���|��G���q�NZ��|��k�k��}]���|���k���8��`k��|�r��`������L��L����rxN�����rxN"��rxNxN��rxNxNf����O� ruxN�����GB����"��KZ�����O� ruxN"��O� ruxN����O� ruxN��f�����O� xN�����GB��j{��O� l��M�j{j{xN/�Cj{��"�xN��GB�Z������O� xNxN�����GB��f�����i=�����i=��f�{A ��H�9��[Y��k��KZfk�UX����KZ��� ��H�9��[ffk�\F�ob�H����KZO@_��V�W�K1^�e��a������gK1^�e��a������g��+]�(�e��a�N�����������#F����g��g��d�B�z�?�Rf�i�fEZHA �0UvET�i i�f�(ET���(ET�i�e�fEZHp�#ݤb2b�A �0UY�D�_��EZHLF��]�c�e�]�EZHi e�i�fe�e�ET�ob����ۡ���(e�W����^�S�S�^�C���^�S�S�^�^�S�S�^����^��)R_R?�Ry��[�� ���܊�P��r��K���܊��#F���t�]�(�w��&�l��l�ޟʣ��e�_R*�_R*��#F����g��g���������#F���z���Jb�h��Kۼ������#F�����Jbz��h���[W����,���c����#F���������#F���f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY��ԟʩf���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f����b�c��i~�j�c��vi~�j�vc�O�\����t�DU�j��DU�j��g�������b������^�H�L��e�J������`���݌�����g�c�(]�D�aT?�]�D�ay1%�����^��y1S�=y1ߦߦv�⦦�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����\����f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fҝik��������U���ޜk���b���U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2Ee��g�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���f�c�c���(N<�X\�e�ob���Q��T�b�*b\�]��dX\�d�_RQ��gc���(N���t�t��5�t�t��ruǰ僰_R\c�O�+�\_Rk�\ ��ݫxNxNL^`�xNpxNL^`WL^`f�xNL^`�Wt�f�TI� 8`LF�SN�63�@�TN�TN�Y@�TN�TI� 8`LF�SNkZkZi~�LF�SN�TNkZ8��TNd�df�h�TN�TI��TNhhW�,h�,f�]�xNL^`-E�kZ4��xNL^`xNL^`k�J��kZ4��kZxNL^`kZi~LF�SNkZxNL^`k�xNL^`�f�[��\��@�TN�@|�TN����@�@����f�obQ'\F�de��LF�SN�LF�SṊ�\����c��TE� ����c����s�EZ�c����c�f�DU]�W�]��W�L����=DUc�q�XEZs�DU�����`DUDUEZ��c�f���XC������o�X\�c���DUc�f�EZDUTE�EZ�b�DUEZEZW��EZDUEZs�DU`B�DUEZs�f�r�y�EZ�X\��W��rEZW��f��X\�y�l̡y�l�DUDUB_���e�J���B_���e�;�`��+����Tv ��ݯ��K�j���v�t�T���"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+�����c�Z �e���+���Q��E�LF�SN]�lv��d^��������ۋl��+��>�V�K1^�e��a������g��+]�(�e��a�N�����������#F����g��g�����T���f�nZV���*����X�޹��ܴL�� ��c��#�����)R�)R��i��)Rpi~a��_xU_�a�i�f�i~cbCi~cbC���i~�)R���i~�)Rj�i~�i~���)R��)RpcbCi~ap_�a�i�f袁%a�ru����袁�i~_�a躢�i~�f�j�ob����������� ��i~a�#W�i~d[��Q����R/�LN WJ`�rus�s�\�� as��J��-E�\�� a\�� aý\�� as�[LNLN ��X� ���\�� a ����+� ����LN LN ��X� ����6�\�� a ����+� ����S�H[�\�� aojT�|��]��-�Q�&�LN f�>��������LN LN [LNLN ���Q|��[LNLN f�LN LN |��?�RLN f�>�2ߝ�s�l�iQ���c��� c��� H[�s�l\�� a\�� aH[�s�l ���d&� ����s�l ���� ����s�lLN LN s�l̝LN �s�l�e�;�`��+����Tv ��ݯ��K�j���v�5�?�R"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+�����c�Z �e���+��������ۋl��+��>�V�K1^�e��a������g��+]�(�e��a�N�����������#F����g��g����?�Rf���[/���[[Uk��[�UL^�/���c�����[&���[&���[��[i~i~��[�UL^`/���kc����U���i~����i~i~���kk�_�O/���fU��[�UL^`/���c�����[e�L��[�UL^`/���Uc���UUW��[��[�U��[��[/���[[Ufs���R/�/����(����T��i ���B���[_�a���[�Ufc�T]�����U�(�K���[&���[��[�UL^`gUWk����iSd�*��i~i~obi~���iSd�*����ob���iSd�*��UL^`���iSd�*��RgH����Sd� r�&��R](��K�H�����B��X�}�Wd�o]ܲZ�DNWѫ����Z�� �|�c�������������&�T�W�R�0���W�W�|��W���e�J�W������T����̫�R�0��ū���|�ū���e�Jū���ⲹ�d�X�d�X��X���]�M� �iSd ���� �W�@f��@WR ��@��������$$�e ��ʥi X����������m�M� ���vc�O�0 �����,�%�ۥ[�ީ���g�1`z���z�z����ۥ�g��gɪ�V� g�ݑ�h��Kۼ����� ����M� �z��h���������ʩ����⩩��gf�z�e!^[R��˟Q'e�J��A ��P2EQ'�uY�$����g������I����g����.����g����˟��g������U�����<�����g���������g�����A�lɪ�V� g�ݑ�h��Kۼ����ꆟ�'�z��h���}��5�ʟuY����ꆟf�e�@��Q'�uY�vvvvc�O� �����g���g���g�vc�O�=-�=-l`#��ߞlɪ�V� g�ݑ�h��Kۼ��c���X�����2�c�b�]�(2�(2�Ţr�)c����\�� >�2�c����q��������]�f�L��LN ]�������W`g����U�^�?b>�2�>�2��r�)er�)Lc����ob��r�)er�)��(��(�]�G)Rer�)(2�(2��]�G)Rer�)�����]�G)Rer�)�]�]�[VܮA,b]� �]�]�[V�_Q���A,b]� ]�[V� ]��%��]��]�[V�ru�i�%��]����L�G���#�]� a[V�]� ]�[V� �����U]⸽]�[V� kZ�]�]�j����ob]�j����ob`B�K����obj�K����ob4��� ���[V�]�]�j�����Lx��|/��p�pc��#�p�"_���|/��Lx��ZV�Lx��Lx��c��#�Lx��Lx��c��#�f�rp�r���"�r�rrppc��#�|/���p��rp LA�bru�pprrp�r�8K�����|/��p�rZV�p�rpc��#�p�rpc��#�f�rupru]�ru�rrurp LA�bruru]�ru]�ruruppc��#�f�+ޓ�p|/��p|/��|/��pru_�a��X�\Iru�a_SI� ���f�obZV����P��ob����P��ruru��e�J��P����XI�nt�t��-�t�P��r���XIߛ*��*�" �M�_���XI��XI�f�j{c���b��b^�&�������� A�*� �M��D���XI�D��t�j{c���b��b^�&�������� A�*� �M��D���XI�D��t�j{c���b��b^�&�������� A�*� �M��D���XI�D��t�j{c������ A�*� �M��D���XI�D��t�kZri=��[&�j{c���XI��XI��D��t�D���XI�nf��XI��XI��XI�lt��XI�l̝�XI�l�;�I�DU;��;����qq;�I��I��_Rr���V�"I��rupq��X�sa�Q�X\�f�>�2�]���R/�d��M�f�{xNf����R/�d��M�f�{��@�Cf����b^`���b^`�|�i�"xNf�{���b^`���b^`�|�i�"��@�Cf�{�]�\d�������b^`�\I��b^`�f�(t�r��'�E;��;���̡���P�����������������_�]��N����RgH����Sd� r�&��R](��K�H�����B��X�}�`i=�Q�����Kj{G�M�c�/�_�a����� �ܭ��M; �`�`��`�`��s�@NZ��ܧ��d��c��#�����`M�]��a�� �܊M; �`�����������f\F�Q'��C�r�)���B��NZ����B�ru_�a����B��-R�c���Cc���Cf軻k��k��k��j��k������#�j��ir� j�f�Tr�7��7��7��7�ru�7� ��7�f���������ۡ��7ޱ��篱k ������V���^������e!^g�� ܴJ��>������������t���0��5��d�J��>�ⴜt������>��b���5� ��ݥw���lw��t����A�;��t�t���b���V� g�ݑ�h��Kۼ�ȉ�h��NZ�������A�;��f� �����g���g���gɡd$�5�WJd$� ���_W���������d$������}��d$������d$��vc�O��aG�����z��hz�w�V@��|�_W����gɪ�V� g�ݑ�h��Kۼ�ȉ�aG����쑞h� �\F��a�>��K1^�ى�aG��aGfҝik��������U������U���ޅ� ��ݤbk���t�bk������b�H����vc�O���U�����<����P2E�=��gy�l]�D�a���g���J�NY�K&?]�� r�&���g�W`��h���W`�k���d���z��hd���nk�����k���f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f�$����U�����<�����g�vc�O��2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\܇�`X�Y*w���Qd���z��a� �w�������X\܃f�{��� ���܊}��}���ا��i�g=����J�h� ��=��䧄�� �C S��U S��U���]�d�����]�����������������gɪ�V� g�ݑ�h��Kۼ��Qd���z��h���(�4�����Qd�fҥw���lw�����ŋ������_R����ا��i�g=����J�h=��䧄� ����g���� ��� ���v�_R��g��g����]�R���k��Ql��g����e��� Tg ������Q��]�e!^g��g��_Rc��� �n�bOܐ_R�� ���_R�f�Ο�-EܟӀ�� ��橩��g ���Q����g�l�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا��`#�������C�����g�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gfҡiSd�*t���g��������������K1^� �, �g�UL^`�UL^`g J� J��W`g�eゞ��W`g.ܞ�����_R��g�P�a�P�a��RgH��h��K�H�ȉ�h��NZ����iSd�*f��RgH����Sd� r�&��R](��K�H�����B��X�}�Q'c���C��#W�y� ���܊�t����܊]�(�w��v&�l��l�ޟ�l_�N�c�:���#F����gU���le?l_�N�ؗ �O�� �����g �����gU���lɪ�V� g�ݑ�h��Kۼ��(�D�0z��hi�X��:�ܠW�8��?\I(�D���(�D�f��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf�V,��ƵYހV,��Ƶk���]�V,���Y��a=�H@f�׃*��ZV���������� �� � J��kZ4���kZ� � ��f�M�-EܠM�d�� ��J��kZ4��kZ�ܠ�M�kZ��]�*��� � ��kZ�]�*�� �Y�f�]�M����J��kZ4��� � J��kZ4��]�M�kZ�܀f豋� ��^Ce�^Ce^Ce^Ce/�C^Ce^Ce �^Ce�ru�� L^`�L^` �� L^`��ru�i�L^`� �/T��dU�V8d]�e�J�"^Ce�N�^Ce^Ce�N�^CeL^`��N�� L^`ߺ�N�n�..f�^Ce��^Ce^Ce^Ce�^Ce9^Ce�^Cef�C��^Ce�� 8`e��r�oKH O��C��p"��^Cef�����iQ���X�L^`�����<�����<8͓,L^`� 8`�,L^`R�0�ޒ�|����iQ���X�L^`��������M-�X� ��X�"L^`�f� 8`�N�ob��ob���̚�..�Q'c���C��#W�y��c��j���܊]�(�w��&�l��`B��g�#F����g�vc�O�L@���_�흝 ��݉��uYZ`�z����Z�DNe!^˧��[R��l�ޟ}�����gɪ�V� g�ݑ�h��Kۼ��L@���_��z��h���L@���_��f�q�l�G)Rq�Q'c���Cy�G)R ���܊�l�G)R��܊]�(�wG)Rw��Q'dF/�G)RQ'dF/�w��Q'�w&�l��w��l�ޟuY0��l�ޟ��#F����g��g����K��W.�z��hz��V� g�ݑ�h��Kۼ�����K��W.�z��h�#F���K1^��)���?�����K�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���c���C+��y�������K�j�v��܊]�(�lw������&�l��l�ޟuY0��l�ޟ�P��r�䌜g� ��P�� �������ۡ�g�#F����g��g�lwlw��ӟ � r�&ܪ�V� g�ݑ�h��Kۼ�������� ��z��hG2N��T\S����9^������f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�[R��[R��[�t�ӟ ��d ���vc�O����[�n�����{�RG��[��[�K1^��[���g�ɪ�V� g�ݑ�h��Kۼ�Ȅ�����[�z��h��?,�n���[R��ل�����f�=�ܕ��C�_H�Ȑ�P���_���=�ܕ r�&ܴ����������g�����Kۼ�]@�=�ܕ�� r�&�[�[�d��iS jb�N���������E:�]��N���W8���2�������%�b���+5� ���X������g����](O���Kۼݐ��=�ܕ�+5� �]��N���Q'[�`B��*Q'ikK���߆��߆���f�{�Tߝvvvc�O� �����S��g���g�v�⦦+������C���vc�O�`#���%u�0�]�}B]癞 ���W`g�eゞ��W`g��g�ӟ ���o���ا��i�g=����J�=�槄��lE�M�z��heゞ��W`�K1^���؞lf���g���g��(�VܤVܥ�Fb�*H�����_R����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��������$$�e ��ʥi X����������m�M� ���vc�O�0 �����,�%�ۥ�驩��g�1`z���z�z����ۥ�g��gɪ�V� g�ݑ�h��Kۼ����� ����M� �z��h���������ʩ����⩩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�j�����$���H���e�J������`�������`�(%�%�g�(�VܤVܥ��v�U�^�?b F�Z%���T[�c�:�c�O�]�]�%�%�g�%�%�g��g����.ܞ��gɞ.�Z%�[��Tz��hz���g�W`��h��W`Ȟ.�Z%�[��Tz��h F�Z%�+�<�.�ٞ.�Z%���T[f��������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O� ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gfҫY��^m�M�^�N��[&����mIi~Im�M��e�Q'�̜̜mIi~Im�M��e�Q'i~c�:ޣI�0�0�mIi~Im�M��e�I�^��m�M�H O�mIi~Im�M��e��d����d����d�/�C�mIi~Im�M��e�/�C�]�\�Y�m�M�[&�����d����d�mI�I0��-2��5��i~I�m�M��e�f�ob�e��-2ܤ�-2��ob��̝�e��-2ܤ�-2���r/���?r<�ru�r<�f�r/���?ru�/f�bW� ��f�bW� ��f�b��aNc�:އ`_2]�r_���1���1���r`� ���bU�V�G܅��{��� ߹bf�bW� f�bW� f�bW� f�bW� f�bW� f�bW� f�7�I߹b��aNc�:އ1���_2r_���r��+�V@�bruS�ru�*�b�bf�r���������� �E�O_➅�8�Yޅ�c���� �1��^Z�b����T\����W��꽶�^�k^ޔ�����1���f���.����bq��b�f��e�Le�L�b�e�L�U����b�+�b��J���kK�B�e�b�����bfs��0U�H[��0U�����+�j��+�ob�+��+�>\K�B�eob�U�^�?bob����H[��0U�\Iob�0U�㞞 �̤b��������]��N���OB5&⦿�,����� @ P �@ ��@p�@��p�H0(�x4�"���@� �2�p@\�6���x�"��8� ��@80:@0� @6��$�|��J��t� ���@�F��"h� �D������N X* ,�P�`-���b� �3�\�`n� �8`��v�;����~�A@���� E�$�~��7@��R�3 ���@�B`�"`�HK@ ؀�f X)� �� X� <(����T H�)P�@�S� `��� E` p�.`���_� �'P���N� �+ �@�c� t,0���N� 8�.��@�e� p�*`��c� p�*P�8O� X�1���H\@ �6@�@�O� `�1��@xO��7��Hm �� ��v`�<���`{�����p{@�7 A ���:`�!�4�:`�H?  �:`�"�� �E�R@P)`4G��p�`,�G��"p��,F�$��`P�G��$��@PI�*�%�� h�G��%��@��M� R�#X� �� <�#X���P D�( ���G` F�)@���R�F�(H�`��V� ^�(x� ȂY@ j�(���]0 �.�) ���v/����` �0Ġ��bP �� �� ��c� �A0�@�e` x�2�� 4c� �/À,g� �A4x�`j0 ��5Ӏ��j��6���� �7��� p��7��6`�9(l��6`�9@l���g`ҁ:x�@��g`�;h����a�A<��`Ѓz0�P+��� �>���|}�Z?Π��h�B@*` ��0 ��A��`�0 �@B��� m�T� �� (���T� �*�!���Cx@ �����<�a"P�&� �� P�"0���2=�!8<�6G D��`:Ӏ���6G aTk0 �H�\l� �P*�|�T@&��$�� FI0�#l�PL��"@h0 ��I�#��!�R�J*a���F�@ B%��0 ��<���qpJ�80�@�g�Z�K����T�KX0A��0�� � 1� Є�pl�Kh .��pr�N� -�'�qPz�� �@ ԃ�p~P @A(��` �BM8E�(���ARP C����ԁ` �"���5 F�)̃xP�R(Na'<���"� T�*X�E@AU� R�*\����BVXYa*h�����X��p����� ��,FpX  ,t�E��W \ ��0��V e�+����҂Z( \�,����BY� f�,������W�* �����@Y� n�-����B\( \A.��P�BY� w/����W� |�/���j� �l�-�.P�` �/� �BH0 ���Ca0 l�0D�`bH �! �pCb( I@1DŰa0 �1���`h ��08���"�ap �1��Ca0 �a1@�� ��d� ��2X�p �a� �A3D�Ͱg� ��3x��4�f� � %|6P@�6 �<�V�= �!���P��i8 �A����T�8X ��$�� Z�8p ��5��� `ClH�a���l�*`��D�X��6�Ҡ��h���6��ܠ �n�  ��`d0��7���JAo8 ��7���T�  8��� h�A8,�0 ��8�p� �4�ԃ���?9$�h(l��r���9 � �t���9 ���@  P���r��@l�D� �8�r`-�����r06� �@h@sp�A9��JAo8 �@8N��'��7�� �9�ġP��@t��:H�0�uP�!9T�p�Q�ف(h��@@� :\����h:�;<�p�B ���� th ҁ@�� t�ҁ@ t��h����@G��`#���@��4 a#x����@G����i@RA5��dm�T� ��@�� >�7 !#@h0 ��I�#��!�R�J*a���F�@ B%��0 ��<�������C�a#8�p A)�@���� �x�@<��ʃ*�D� ���0 H�y@Ӏ�R�F�(�����Cz��@��� {h��=��n`2�R�D� ��� LBF���>��y� �7� �>8<�6�6��`#��m0 ��A�a��j` F�4 ����k� ��Ӏ�<0�J(!%��a��8 x`$� PBJP �@��D�H a#x��@J�I�a#��y� ��6��!�� A)�@������>h��l� �4��?���0 ��A�a#�Q�F�4 b�( �8 x`$� PBJP �@%L"p��H8(A�����A8����y��!(��hq��h�@@D�P�(Ӏ�D FA5��`�TP ��5��@����<` �@|��B=�C!�� ��H �@$a�P*@���P*�"8p �(�`�� ��(��`L"� ��� h<�TP+ :8�o� @80 �!#(��@ B��!#��P��<��@��|���6�*@h<�T�6�*@�!@�"BL� q@CX !D��BtX�����@!&���B\� !!@��C����"D���#� �!��h"�C4Q!:ć�|���!4���DD4"(��B����@! � 4x �� X�`4��pPJCQ���4�q���j'A�q�āk�A�qbC @6��� X� Ѡm� ��4(�0>�m� �!7��DD�#bD`T@&` l�?��JD &�D���"�BPH�!E���"Z�-� ���0Dh]�E(�z�ZD`"�E\���BP ~ 9��bĈ�P@F��h�"�A)h�@��A"JD -"��p!~���E��j[p]�E��Pl�H �F܈a#p�8) G0�ƀ#t�:�P�p���9����#nč�>�(��#l�B�0 ��Đ  ܈�� �7,��rD �{���"�#zJ`9"�=`!,s�9�H�ƀ# �P*@���C�`H"I(�%�$�`�E4�$�@�hh���&�#ZD�`N�4�=�#@�hD`I��%�$�A�h P"JH�'A��T�J��$�D�T�J �$�D��=�8�zP%��hU"Kh�Q Õ�=��.�#���\�Jq�%�D��_bt 0��D�-� (��%��{@ (2�"�@�p]bL0�.���f"9� s`�]�Et%��ĘHb"Lt 1�"��P ]bLt� & �Hj"� ��D�Xnb��n�&�e NX�n��&���(d�����٠Nl91���@rb"`'�y"O� �0��&�"OH�0��&@D�NЉ=���b���OЉ��'����N�91'�ěmPt�l(E�mt�l (EC ��L��8P �C Q(��XC� �@@��D�E���BQ,�C�(��X(����>H��P0�E�(�B�0~�O�U� ����bQ0�Ga �D��!@�H�'؂��la(X� ��X �A �(���P�"Q0�`��0 (�(|�@ҁQ0 =b� D#X��R(0��@Z�R��L��#0�B, )��� 8d�C�8�X���@ �/�̀M��B|��bN�����@)p�9�:EP �BSM14p�� �����@|��T �)X��p�@T �  ��R� @�P�Bd����� ��P�Dp�A`T���p2[p @��R���H�!9��`*���H�@� T'�C� ��1<�X�`�Id�� p �`�*�`�BUT G �C����E�� �D�`,�G�XE�p��U� GP`�x( �8��XQ*�( @?Ȋ���~�I�� Z�T�� �AV$�*���b� @?Ȋ$'��~(��,�Y�lŭH�AV$\�+�Q� W8(!�AG�>��*'�����W� �PTD}� UN� ]q+v���V^A+z�0���>��*'������Wԇ]���Q��D���B`�?�$��Bx�?ԇ��îI� a1,@ H* ,����"X �@�0�X �����b� �P,�E�HA` �$��� @Y$�$<�"��e�,pH* Y�� 1��8)(�f�,�����Y<�� -�����"Z< ]�!�E����Z\ l-����l`KX�l�%���@��l h �E+�Ӏp�QP ��(�D T

� ��0F�`#` �0`#*P � ���:�����x�A�U0 ��A0�a����H���Q� �P*��0��7Px@=���ڃ{�P>�a�|0 *��m0�A€�@a,�'��`��X�Q0 �@*�x�`�lx �a��� �@�h �a@���N�Ę0�bP <�/�Eŀ C��q1�� P#$���Z�p��h � �ư��?��hpV�8�cL"`>��x@�<�T�0 � d���2D�����d����1�6��6����30'#����2V�4 �d��QP ��(�D T

�g��h@���*`��|���`�T@ ��(��4����  zP2� ���d�L�8�����z���<� 5��A4�(F�h �4�F��H#i ���4���@Ii$���4��$@I�i ��A �@�`Ni��Q4��E�i<��Q4�@�(\ j .P��Ԡ ��CKP �jX �q5���` �AH��A����YCB ��5�B�[C,���5��]�>`�� �:�W# l�����!�?t�6h�XhaC,�16Ă D��#P6̆8F�l@�І�m�ߐ6� � i���a��H �,��6��Xh�� �1 �ژ΀-��� �F۰AB^L"`�Cz��<��i@R)��`dm�T� �*` �h�i�J!>�`҃|0 a>Ї�f�p�`h�� �܀� nȍ�1 ��A�on��Q7��4 ��n��Qp7�P*� p�7��7� �|�`8��m��� ��ۀ n�u�6�F����|�o�CE��$؇i@ �7P�`o(�Q�F�4  ���� �� P��(��� �A>�x���0��<��h<�T�6�*@h<�T@�|���FXq@,��!��ߠ��+��8���t�88�F`�B�Z�:�V2hl�pԃ-��@(��pÁ8 G�@�#q �!��`�q�q8��X�@0���8�h"�;4�Q8��h�cq � ���<q����/Ao@��!9�0��q��j` F�4 ����k� �A��M@���C`)@�A9*48�0��R�'x)�r8� �A�h�cs� qP R@=H�C�����*` ��� �)��t��� :F������q:"�P�`h�� ��>�� �p ��i@ � �:BG��u��:JR(m ā5�\� ��(0R��P" ԁ:*��8��l��7�`��U0A�(BG�� h�/����_���E�`��+\� �9���_x� 0��"��`ב&��� @�l�:���t�u��;��&�!Av�9!;�DH��CN��!'BB��r�v�9� �BH�yBO�� ;fQ�z�(D��'.��P���ܡ�B�b!<���t��|@,��;�@x\ 0�������\ �������"�<�!�@���w|�v�|��hYCB �<�A��D?0<�G�Ӏ��<��`�#'�i@����/�����x�}��� �A���ā�˃y�!��J�4�� ���t�����FA5��`�TP ��5�����i@ ���x@�<�V@t�*`���<��<�� �؁6�*@h<�T@�)�2���=� H. zH =������X�C#���*DI�T@r��"Z�I��s0ӣ2P�1(���90�F� [��#������P׃����P�#{8z�=4�#P��zh�i�=� ������!pXz�=��p��F����#`��G� ����ѠR4��=�G�P/a����(8a���F�A@��d����!p%@ �x@���.�� x A\��ڂC�������cHߠ8� 7� ��X�b|��`?�Mpc` ����`@��=A>�( x # >ć���A ����`�|t���GGP)`��`>�G����|��q>R�H��|�`>:B ��#�����GGH��|t�>��'8}���Q@qP @d���G�hw ��!��P�DA}������`A���>�G=P�!94�0�8�y��?Z� -���Q#؂#��D� �~��p �}��=��s@~̏4!?�GP #9$0���ib~D P?�G���c~���?��!��C$�-�?<IJ��@x�C�?�����C$�-�?<���  @��!��H� ?��� @@�C�?<������?���H�c~���?t���0&���l� �4��?���0 ��A�a#�Q�F�4 b�( �8 x`$� PBJP �@%L"p��H8(A�����A8����y��!(��hq��h����! @p�R@T@&` ���L`@�Q�a �r��Y �8�B�Bq �8"�@ �q�#Pd�I�@"�# dRL B&ZB��%L rA0H� D�@ d�A8� |�A� �����X�H !"��G�H�#(!&���@�Bi ���G�j�# _�8�B�#('0��� P���!�0��� Y!X�ȀR�B�D ���ppa��X���3C\#�!.�0tF�!^���C���BV� 10ą0��B� �+�C0��B�D���CȐ1:8X!Zp�0CPtp!X����h� i���ؐ�C^Aq:�X�Q@�`� G0 ��+p<���2 ��q*`�� � �@���P��� �4�Fp!8@#�!�8�8@#P��T��D Cy �(���Q � �v�X��%!�R8 C�( �� �� (";��0�G1� �Ga�\A DR�A{����(ţ�B� ��(�ãx��Q��a���x��Q "R�HA) ����HA �(%�D��@"L��4�K�)0�8��P�R�y") *<��D���H$� ���D�D�"QD�ɡ1���`OLɡ18 �E ��@<��^��� �p�=Q��aHTd,�0���8P.�@��X �����`HV$M�0�hW�t,r����#�h8�Eԇ��*�ph �H�x@�/ "Q�`#�q����!L"`��F��X�Q0 �@*�x�`�l� ��F��@�R �Cp>#����0��g�����Hx`�� |��P>�g���3����?�!p%@ (�CT��!*T@ x)@ch ��E4F��l�L�z�E4F���o������". D1�%f@#)`��@F@ #��R0`$������+0�J�$E�`�0���s`́9���peČlh �@#Œ��i@ �1#[`X�52 ��*�$��6�F�P*@��'���)#p�8��#od�`�=����΀�D�:B���tD�0�P*����DC�`���H�*` A�AYx@�q�āk8 �A��m0��h���68> �A� Ӏ�>��P*��G�� �A���@ � $��̑'�G�8��@!���~`HI@$�!���H�A8D)��H�:PbQ�"�H@��,F �A#������i@ �#a$��?L"���(���I�����Dp $ P �!8<�V��$��,Fā$����Y1I& %�M L��X�",�J���Q0 �(ȃ�%q :�P�K�D���F�(�y �J�������&� � ��pPJCQ�A`{�Iā����NR�6 ���O�>I�%�!�#�@'���DQ� <�%x���RB�� %�DOSrJH�)!%��(Tb @*Q�Dd��P�@%����!X%���X������V�.�*ql����Ȅ*�Ρ��\IH`�ĕ,�>�^ ,)����X���,�%΀�@�h�-ZA4�D� �Z2 B�D !��Qp�6�*@��~PK"��`�D(�z��A�`��\���P �A�P2A��i@ ¹@��X�Q0 �@*�x�`�l� �� Px@��u��P+�]�h�T� h ���@�hn�*y Ӏ\bKFA5��`�TP ��5��`o��i@ .�%� �@�h�-ZA4�D�[��j` F�4 ����k� ��6�*@��P�.Q+�^���% @ �%���p>�g� h �FAPӀ�^�3F�A@Ӏ$<0 B�x@���3@��d� �A=���!p%@ H� �_� |I �O"�g�K*B40��hL��0q���`P�����@L2�=�x�$.P@�A11&������L� 4Xx@��P�h � p@� �*�PBRP ��}4� � �l�-���� X&ʄ�� �A3�x@�<�^P+�-@���T� p&��@�g@h���&�$�L�RDq`d�CL��4 ��P��� H ��X���I �&�$9T�j��Q0MAR����I �#J�E$;B��R�#�F�a���38A!\���M�� �&a��M@P�� #�L@�AF��4m�T� ��D�h�M �7�&)@�o�\@ �K�,��N\@ 'K�bp�p��/ 'K!)�^�+� / 'K!)�^� �4�ܢD�i@��(��`L"� ��� h<�T��!��y� �� X����02�3'�@ �qBN�P*�2�A7H%Р�@�P ��P�!:Y'�i��v�N�<[�l�- t�x':�l��x"� �'�d�A��=M��h@��= �`((�zp�8(�� m�H>�' ��h�=��'�����O�I$i a�}�O��?�'�$��ppP�8p ��4�9����@�tm�T� �"� p� � 4���v�T�6�*@��� PF4P�`h���~`��-���� �A=��/��ʑ@ X�����P9*�_ (�/$�$ *A��.@1��R9��b��@[�&�-�0 (�# (mQ ��a��0 �PP �A� �- "@��AY �����P@AQ(Š�!��`�a "���`�a��߀P��B) ��4���P� ��8h  ��(�Bl�i@ BDq(��X�Q0 �@*�x�`�l� �� P�`����7�� (t�K�)�A=� 8s�'�A)(e�(� 9���ѡ H�BQ6Athe��5"@X�(�D4� C֐FBrt���aPD��X�P. FI �`�$���� ��0,���Q����1���@F) �!1�� �X �A3�=P4�H�Cr,��Q$E�(� :4��@Q8�F�E�x� �Q��x�(�O� ��Q4 H�%M� �!9���0�t<R�D�("E�D@�)��00�� TA���@�P�E�㢤� �rRP JI)*�T��C0(BX),头��R؀Ka:��� � ؀;x)-��SZJ��)2e����4j 6E��@h)4� ����EL�)4%i �"Sp�I1)-����RfJ��)2��Д�qS�M�)G����St�N));E7��x�N1)-��� >�B�H* 9���7�A6���L��(~�4 @%�L2T~�4*BE�쁠2 ��P�Ae��T�BQ1*�@�i���4�����i0 H@P*d"���2 ~�4 �@������)�`����TBQ1*�@�i�� �{�L�i��R�٠� �L� ��4`b`L�l� �B&��`01 >��D�<�N� >��Ӏ�8�� �P*����`�&� 2a&�bBA� 5�؄��AM� J�' %Pj�� �'���BP ր(ԄP��Q@ J�$�0�QX HA����>N ]`(X"`�A�$!6�m�T� �*�%,�� b�L� x@���P�� � 1� 4�P�Mp -�%��� HBl5�P�� EOP>a(�zP�O A(��0�Q� �(�����;H Ja(X����:C|�@��P�D�(0�yjBS@ ������T@ XN�,�!@��XNe (��T���*QE���T��p*[@�,�� H ��l��T��BYP%l���Q���!lA ȆQ`Rw��@&��T�a��U �Z(k0UR@@c@�X��.�)����R� H ��\�X@�HX%� �U�JB�"��t� p .@H(«$�C� 6�8 C���"6����\���1D�h]%D|�@+`Ł0��V� � ;!�0�2V��`�G<k1�B0d�8�p�ź�eŬh�0���g��L�"��D�j%J���VրM� n�8���DH+�L�t0�J� ��0t@Z��"X��z�9�a]X��ފ9��(��H�s�#q%���2G\yO�̕�W� ] u <���“xOB,$�'��Brx�A,�'Q0�B�xC,ȕ'!W��x�B,`�'�U�B\yqE,��'B��ysD,̑'1G�� y/D,ؕ�bWĂn�+����V��ʓxw� <�VpW����+\�I���W��]y��I����sp\`�<�W�V�p\� p���ʓpw�Iܕ'�� ^ w�I8�'qW� p΁ ̕'�*>@�p �9p� ���pyD��W��9�D� 야2 ��5Ӏ��j��6������ P �!��W��BQ( ï\���T� �F�p����7�@� 2"��`yE(�z��A�`��>�� H���>X�_��@P��B����b��2X �`�O�0��J�O�����!�xaC$�#V�� �� �C` ,,�� �0�@��bp0`a���� �@\�#p�E< ��K�h���P��b��s���8�"Ƃ#V�� C�'� �`@80  �0,q@$�`X�@G`b�X�pXKG`b UX��*:�*<�� `��� �X؀bY,��c4��*H�#�tŲX �h,����Ē*:�bIt� 2� �D?��Q����'�d�Y ��B'��P��N �=�(����� x��BY8Ce�,e�38��. ��� ��P@䄜�,rBN 9�Y�f�,�c�@9�(�Ğ0�� p"`:�g�}•0WR��@{�� z�(>K-�%���Z�0�ų� �@0 Q ����(��3` -h<�TP/a!�Md�L�*&Ą�@j�� -�&���t�Nh  ����"� c.�A,��\��X.���\�p! b��r\�py��Y��F���%�(��\�KrQ.ͅ���B7���`8G.\A( ��8<�����`���BPP��!0���x�"���t�)�%��Z��"݃!Lp*�K@ �E����t�"݃!X��!�s�.�%�h0�]� w�.@T�O�BPp{��t�`]��E` �Lt�C�� v�.�e� �]�Kw�.�BT��P 8� ��@�������C�� "��@8D@(��H�:PbQ�"�H�� �bO��=�&���H {»\��^������P B�P4����%��&@(� ��P4��2^��/ӀP� ?�*�@ eO��=A(܄1���M� 7a �Ğ�r���@t8 �!D��$��� :4�AQ(�&�M�(����Ky1F kH#�0�c��EB����D�U�?���K���Er����Bz9/|� �����=�(:� �����z� �X.�^$GH�e1��r^���8 �%M�.���z�腽H���^$�{��E� #p^���0\༜7!9�Kc�(:�H��p^��]@p��^$|i e1��q��z���0(�PQ, `DAp���  )�@d�` � �@0� D#X���\ L�BEa"��]� U�D�K|��0���D��H(L$�d&�$�/ �̗��DD�/ �0��Da"��'��7� ~`��P@_�}�/����R0 �)��"� H� ��U� Z�+x����X f-����\� t�((>C���3�jX{`�̑(r_� �#l���9b&��`�� $�+�=� c�/l`���=0G�Hr`s� �9���`l������~aa0��BI��x�d(P�*@�@��� ��0��G�/� P:�Q��0��J�Q��0�^�z`�%0C�^P��P/�%�$M�^P�a`( �$t��� S�HC1 ` X�� ��Vd�4�@`�dz�Y4�? �4�~����p`���:��4`  �a���� 0 ��|�`JC1 ���cp �@0���À` �1���c�` ÁA0 �(�c�`LC1 ��ā�T@rH��0��R��&�M`:$3��`� �0�v�0�`���z���H�H��R@ H/)��� ���h 9�"A&R�8H)`�����H&$+��K H �F�z� 聃q0���R@3�)�@�-�T@r�Q �(�; a&�[�0��P.  �� � Sa2L�0H �� �a8 �a�I���@���"4���!j�����p6�> �|@ ��p0@�PE $��BL@�Ĉ�Cb�'(1b$ �O�a\�� � pbPL�Il ���4T��� +& t� XL��(���h1������� �A (����X0# (%PH��1@ (���GY���$��0>��H}#9����b@ra|���0>�G@{�`$ ���{�G(�saB  ���$��0> ��1�!`T@&` lA$�=�V�0&�Ѐ@܋X2ƽ�������1"`�߰j�'�D��"Ac��4  eL���'Ҋ* {�H�3 �[ �A�ܘ'�n̍�18�7L`n̓�@T4��$�� ٤ �� 1rL#�1ObԊap��H* 9��$t̎9*;��,�C3����1@f ��z �x{��<�=pT�@�`��1��:Ž��A t%�cvL� At���� n�l7t���pCG2a���c�LG�1����1L�+Y �DR�0��LG(��1���v�q)2FFR�0pd���� ;f�h ��L�� �"� �� �)�"=�t��Aqp_%P�A���!��-�d��<��P�1l@9hA���1Z@9|7!�Ay(A`p`؀rh(Z&�� �� 0�h$�U܄ �4F ����LX2L&����VB�Q t�l� X@6�Nf8�l� ���,��d� �L7Hݠ���2��`�` LF0Ar�L�*� 81�a2UN� �1�� L�0�"��L�*h �����ـ�d�a� ��0p2݀�d�n� ���� 8�d� �a2��|�`��7 �a�� T�7�Ja��Q0 �@B���?h<�T�7� �|�|��H C�)�vR;���re�A �2�$ )��6�*@h<�T�6�*@*��LP���,�����2*��L�IBeT@��ʨ�*�H�  �((6`6��QX{�G(�=p0�F�8 +�� 6`e�� �2{�G 2a6�ƕ�GaL�I�'��8}�ʬ�HD��2 �8��� �g�`�`j��J��+S+��c�R(� p&@O8 $�h%P� �']&��.SMH��2[�ˀ��pB��3w t�0��L��u�G�2�:�����t��P"h���� DL�"����`�W�L� 3g&̄�L�e�L�Q3`��0�!3l�'�^&���Q3lFX39�!�p@Ch����.|Ğh{�G�w�[�L�9 �!���[�s�g�(���\��W!-_�|�w�UH�W9 �!|���.HKaP"{⫐���#�ʞ�*{�]��=�\�h���4���'|8 �!x��U�K-�!H�BQ�!p3�N�� �0 ���84����c|0���f��0 ƅ ���a� ��(��(�`d�E�3:���BQ��q, ��t@��(8@����U� V�G���#h\�9��`U��*ª<��!��3���,���"��@�0�:c*v���3V�L�;���Y� �.��@�3Y��d:�� '�3�"��S���3\ p��0�Üq{� 0%� �)�3��B�Ah8�@4����h �4��� L�i@ � 5,�����j'A�q�āk�A�qbC @6��� X� Ѡm� ��4(�0>�m� �!7�` �L��b��� }F,>�gA%� � Q ������3!.�9g� �#�D�F�'0�PD�pi�8� h %@�@(�Bn�3%���0��Xh :����p��D�MA`��p�bh M���P�L�I `����`m� ���:B�@ l@��U�4% 4��FW �G�6 h� �m%�4�P��aK��@�xh%x�R p���F$�A���f(Bs#�ǠP`$ �16�uX��� �������:��1����a$D�`h����� ����XP��Fl�J�8͍P��F�CC;��a �� �#��H4h@,���h��H4B �hn�@" ф�4D@�9�i$�P;�F�A�i$�#h�1��v �Q;��P4/�v ��!D��7@ �E3 ‰@4L�L�D3 j���Fi��#�ɋ���lt�h %�"�,�IND�ag�v �IP;v@�@4J�v�A;M�Q4�Ɲ�@;h���$��V�=@�`��V@QEa���: ') �����B Ea��!`�B H�(  ��( E�D���PJ���$E�Pp��h�@5�(�0�CQ0 Fa �0~CQ0 �)(��sp4h�+��L��h]�<�*�Ƴ� �+���`U�"P���0NP%��4UB,xN�� �`xi8'P���0I3i$ͤ�2r���@i�E�"��XlQj������`KS%*M��4`p�-qitD�4�A�T�K��D� *�Tl�_�F���р[��h0 ������i@RA5��dm�T� �*� �NC"H0�8`|#��`�Ji��90 ��!� �0 F��B�c $ ���BR;��`��P�6Pw�e�;�f����Ұ;wG7����N��y��,ݠwL��1.��NԎڑw� �� z����c?���@�������cb\�N�9 F� �axd t��:xd t��:x��1<�g�h��x��H< �(�6�BQ< �(�����h-�;��4�X<[ �������� ��h<� � ��h�Ǟ�����B� (��<����Py*pp���P�.��<�����Sy��<����Py��<�8P��>�G�,�����Q@�D��$�@�S@*@p�?��� ��F���?L"`6�G��a��Q0 ��� @�i@N G%��T�0P Ӏ�<0�J(!%��a��!(�`�qpJ�80�@�����3�'�  �P�P���N�@��<8Dt� �6�a!���~`��-���B�AF8��ԃ�� �A=� Ѓz�2AX̣ ��� ��ԉ�� ��i@ B?�:�� �i@!h<�T@�x@���.��B�BE@�p��I�� #��PR��X�|��y�AFh *@ ̆ٱy�@8��G����T� h �g�4�c�bT�T�4 ��0 ��5Ӏ��j��6���p:Oq�*@4��12"�D�� d��0��� �`6�M�@6� P`��yP��&!����0���@Opl<��h �yP�AL"`�Cx��<��i@R)��`dm�T� �*` �o� P�� �����[4�@�@�Ap��$�Ӑ�B| �<��`2�|����m0��7 ���� TO�0`�D��0 ��5Ӏ��j��6�=A ��a0�A=�`���QH���x@�<�^;Hڀ`h��q ��(��@�AF�)@&$��` �B�! ����>���U Ѓz�"@ � Ia(X��z�B8��������P,B]��1`MQ�`���� �) �,z�4��y=�� �k0 @�ҁ=��(��܋p/ k�so�N�( :� ��1E��D�e!k��C���9e!k��j�� (�t܀�)J�(���^~C�=�B$p�@��` p� �#���M̞o`(�BP��$,�O�����@� �@{h��A��ك(��� ��?��� ��p �}4�t � X +�Q��F!�p Q�C��hA�P7<`��(|�����4F�,��!� @B:0 =b(�!Pj��I @���>A H���,ۃ{r��= �`��Cmv���=~`y<�ݳ \��I)`�(�܃=x��������܃=x������Ԟ�X���I�@����{l��<ڢ��ߓ{���=~�����S��<ڢ�|�� ��A��� #|�88F"t�'��mA�#���>��7@���R �@N>0���c�(���A=�2!(0�Q�#Ga� a$��- >���$��` �B IA) k@v@>8�� ���� ���L"�|��(��`L"� ��� h<�T� Q �T<��@���g�0�`0&�O������L�T@&`ȧ�@��<�G�Q��8�B��`̓y8��34�@� ��i@ B?� `�0 �@B��� m�T� �*��@���r�j��G�D <}�OĠ� #��L@�AF��(z8@ �)��m�KR@=x�����&�MPԧ������`AR,�� )��c`�GP��C�u��:(�!V�v�Ũt���Ƈ��A�|��B':�V�C|���@�X!�C0��!�F��(U㣌� d�Mh "`1<�� )#��CX��QB�{�g�d�a5:D��"٧CX ��! ��  ���A:Hx`� �� ����l�#�OCq ��t�F��OC� ��޴���} F�> �_x�B���> �Ht���P�OCi(̡�4���>A��)�G1 � �@:0��A�1 �F�?:�Ht���}�s��(���!��G��@�AF �`(h<�T@_Q(���Q~J4`������G���(�� �� x Ӏ�S~*�' ��U�K�z��)? `D�.I%9 a�y����= ��h !$��o !A|����~��p)�"��-�~.B X?��\�s����!�7l�@��o�"$��-@.B|��G|����t��[�Ѐ�t�o�b �-���o� [ $��-�(�o�)�����C.B|��G|����.B h?[` h@B�o`Qa ������F��lč�6G���rh 8BGP��#�G� �T@r�7�F�A�s�6H !A�`AbH��n�H@�`s�9"H�=PR@���%0������9X�a$�Dc� ����T@r�* ��� �7 @%��1����Z`���@�0 D�mK��#� �y0 .�00\��������A (�E�� P p�x�@��@ S�9�a��Cs��%�0mR@�I �L��S��y3o�L�73 ���9�&�����Iq��2R��6) �P*� �������T�?�'�ԟ�����?����T�?�ā�R����?������!���L�i���30�  ��(�� �D� $1 ��5Ӏ��j��6���� �8 �# �D��� ����`�� X(��K�)A����m�KP�@ �p�KR@=x�@(g���8�� l�� ��4 a#x���F�Ӏ�Q��4�D�$���pP�@ )A% �0 ��I�#��!�R�J�@�R��A8���C� ��J�� 8�t�A40@*�O������4 ��0 ��5Ӏ��j��6����>`B(@ ����L�#ၠ`P@ (��@T�m� ��)І@TP '��� &Eh�`��y��A h)��v0�P*@4���"�=��puPA�H��, h d/ �)p��$��4 �-�QP ��(�D T

PE��$؇�� �A>��@��o���� �>|�|`2�R�D� |� �CF���>Ѓo�2�7�@�����A>��g�4�c�bT�T�4 ��0 ��5Ӏ��j��6���p:Oq##"H��@�@6� �A)x�ِ fC�(�d���0��`R�H J�����'M ���kH�Bd����68 �a!���8� �A�o0 ��Ah�`Tk0 �H�\l� �P*������@|�o�i0 A)�"`8�a>Ї����>hC|�o�D>���h<�T�6�*@0T�@p!H� ݲ@�4� � �z �rBv��e�@�t������i@R)��`h�P� P*�4�1�P+�Ѓz0�BF@@ݲ@��<A ����A4�<��� �0�!<�Rp��4 ����Q0 ��6�*@��@#�[��|���z0�=�����i�J!>�`ƒ|0 a>Ї���6����� ā ���?��O@p� �D� � q`�FA5��`�TP ��5��@�A��� P�`D,<�T@88 �a!��āJXx@�q�P*@����T� �!@��&�F܈� �� ���"N�� ��D����-x`�i@v�*FL�#F�J8(a�m�T� �*��@�(�� X�@Di� :�� �&=�!� ����� �@� #�� �р[��h0 ���x@��o��A>0����p,��A��ݠ��.Zx@��tt�A�(��`L"� ��� ���0 ��Ap���T� �x@�����;�@`�yR;�x@�m�T� ��4d���Ap���d��@�C���(d!-�Ă �l!.�P�B_ ̓04��"Ceh��3���ARCba i!-$ �m� ��/�ܐX�pH i�8t���p� ɡ9$��}x��"D�0���A=����C�POB=�h X�Cԃ5�`�Gp ��z�KЗ�b_�*J��(�PK�J:�C����;�� C��CD�M�!"��V��w�)�>�&܄*}H��?�&���`@���p��&\�e�>���dn�Up�=� ��Q ��(�R�` R:���(�@$��� �:J0��!��H0��JK!D� �>�q���-�L C�/1 ��1��CTJQ)ID�� ��IA�|�a�"z�9�^��: ��dB��@(�h��V���)�Eb�#bz�����TL �Hŀ�*@&hD�)<�F4��#�AM����b�@#HA�T��lA `� 4�1��@�AM�� H�  �D\ D"��h�$�C�� �� pD�)@"H���`DH�рF� �� ��FD#��� h�F� �@$rD�)0�F��!@ ��q�P^&Q(/š8l���%�D��B�I$=|(_&0Kd.Q��D��8 �@= ��Ud"���6 �`�T0���D�HD���> u�PT�68������ X�@��QDFC8�A�"�&Nȗ3'0l��6� Q�Q � <��IF�@Rx�7� �2ZF'�(�P��*`_3��= )�� �X���b�@��X"��C�'��FyF � �?�����3�A )��F��1����e0C�F�C�����Q�F�0���� �\���.p���� 4�0��Q�y^ X��`}�8��hЃ��C���FsB�� ����Y#�q���oEȂ?����F}0<�"�4�Q�� HCid��#g�8�h��C��A=�)`(ԃ�� �� Px@p�HÍ&I�IA#�n��Q/�F��$n4I�O X�'l �<��iÆؔ��P��(��A~ҏ�P�p@CX⾄��� ~����a|l���/��H�a 8�BZ�����|�+�@8 �A�����b[` ����/�����x��/.����Bq� ��� -��C�q>�'(∰x� � GŁ�P��QtX�G,8���`! `���qD�8 �($��@= G �($� �@'(G��|c���9BG �L�z�� H=`��w�����p��{L�z��K=`G���iP��X!���z�P*x a=w4�xG �1��0���8 �x�P9:�����o�9��(Ճb ���G�t���8:�h�C<��!�`�G7�u�P��Q��G�(`أ0X�=,��E��a��`�G�f�ܣHc� 8��L؀f`"� 8�(�|�� �G�܀�i���0�fh�y�����Cq�ykn� �@�̣��@�h���#Xs�A>�U@ *�� 8 eU[Ï����죸� �?�� ����@i�R �B�`� ���'���bOh�U1�.@�`� �P�C�HA#@�4�BAi���$ �!����*P�F1U ht�T �A�<�4�@`� ��P3�@�A� X�* �@��T�R��E$"����C[c" 9��0&���)HA,�"�.�X�5�f� �.8H�:�H�@���4&�Ao�� "�����A�H�羴��jE���e������������,R0D��4�a�� �i�D ��@ ��t�֣N�=H ��PD@�H�&��% � 8!H��O$BY=D"H�pEZ�)���J�e� �F+`$.�!3!��2.��6!aP��@mB��6!�V�@f@�X�h�AF�>�F# ��,2R�X�d$���AFb Xh�g��A�XI#����GJ @���_6�w�H �t$��҂i@t���@RII$y$�TBRG�H $�a�H�#��TC � !�#u$��@RI)`$E�ԑ<�IE�$���cH&Ɏ���&�IJ9�$� �&�ʇ� p�� (�� qR�Q����5����`N̉�@�����`M��`TR`���t��I� ��$��h ��$��p@C� �����P �(�� ���N�)�`�0� VQ`b%�F�,�Jb%1�����@:�,��X�t�d� 8D�%����d@ߨ,�%�$ q�KjI+�B0���&��D�`6��JZI e%����VH2�%5��‚K* nB߬���PVRC�D�$�d�@(0),@*zFTHs@Ĥ9@��� `t�p�@z��l��2Aq0 ` l ���Ơ1I l���(�L �$�-06��-�0��@!b��1i P��06�#*Ф�(Z�f� P9��o ��B�$-�b��3)`l�:`�@�8-�TD� �;�Ix"{$�Dn�M��S(�P�AM�b')�=k�� e���P�@M�I e@��! �Cq�Pp��T�� �I;�� �D(�@r�5�� $��@(���I@<�D(���5�� \��@(��?���&夜T���Nb�#��L����&eK�Z� 4P(�'�L�MR��rP�@l���r���M��&� �{��?I� ���BP"��Ct �{�@����A0��Qp�c` p���`@H)�D�p��4"�& dp���$�dpA�' 08p��M��08�O� ���  ��A 0���F���'u��D�(&(�� ��6P( e<�B����� ? ���S�0 ()�cC���\I� d�Ta`JvI4I�����?V�YP�(� �Մ<���BF5�* 7Фcc`:Br`�a l-��� Qal��1��@o�G%*�ް���Qa � ��(E�l̀P��� � �(Ѐ���r/ ��,SEh�D@��1`C~Ë0J@`gT��� � ��`���d��(F��\D1 �(F��\���ЁQ�H��D1 ��2� �� @$�!@ ��d�� 2B �� )Mr4R�X( )Mr������E�!P JA4�D`L"`�{c����� J�?���F���`xrz�R"C����� �E  �\T��p�� ��x�C��A=�! �z0�P)+��"HP*�!����p�7H%���Q~J4`�����z��)?��{D�^`~ʏ8?р���0 ��A@?姒|������8�$��S~���D̃pI*�'@a�!0� @/0?�GT��� ?��{(�C��A=�C�dm�T� �b�(��.��0%|��R2IIi���@.�B)������4I�E)(����0I�0Ii����1 ��AHJ��\��j` FH�\l� �PHJ��\��Д�Ҥ�O�*@%0)@T�Jآ� ��4 �J@*a�I�4MTzS@*1�I���T�5�H%M����J`R<�����T�J @z0���dz�6�*1!3)>s ��1�0�2ka-b�<���,X�X�5�����?jk�6�E�L �R��HφЀgm�ͳ�[����1�8�L�3�n�9�8�Di?��6�f6<h�@f��i`6��V?�MGH, ~\�-�"�`��Gmh�s�~\g�td4�JGVL"�t [Ӏԃ��8�����td�(M@������B_T���^����)�g���a����2�Dh��A?�:S���Z "��`J'�q� U*h�$� �[ �E��G@B�B�0! ��z�0[p�@�8G�:�#P1@ԃ�a)0@#(�@� KQ4,Ž�@<����BѨ��GP�U(J�tG�b.�#� @����u����6V�hT�FP4���)`�0���ƈ0 "����`9�8(�����X�� ����$��B�D�0F�A���D���D�@) Mq���( �� ƈQ0 �$|� ��0 F���`� E8 ��P���ĂU�J��PT�t�D@|pV�*a�����U�.�*]%����VjV�*���"\�U�J��*]%��"��U�Z�E��t���0�JV�*i�a��R|�J-�(���X])x%�"���J�+����DјF ,���Z�BE��%�H�#K��NT�`�XRl�jt%�ĕʒaHE�,]�����c(2iI-�%�x�W���hЃ�Z� ��ki��"Ӗ��[�K��1��4�R�QK���T�.0��� ] $`�^���p/d�?�� �`�?p� �@H�0��� AE��ITO��6�\BHC, 1����x#�-m��A��Y�,g)m���w6����Eԥ���G߱K��~��ld�6K��,��.�4��@H��|�!>��@�O< / �H�#�9�?���x#�H/ŕl��� H/� �C *p6�4s6�^rՂ/�%�dc@ �4�<-pTR�E�K�������9L�I0��s��`2�0 ��Ut@`L��9&o�qS`L� 0 �C`l@z�L&�`�� LB`0���cZ ��@��V~W+\%#q�����o�*� �(��X�, 2]��r��e �1E& �$S� }C2]�� &��L�IY��$> �L�I,0���&��L�H,|60�,� �Y0 ��2S��L�B2I&̔���L�)3A&ͤ`�[�D�0ȃ (�`�`��( �=L"� H� h<�T[4�-���� ����a=����{���4d���A0�A>���0�C}��L� v0����$�g�B4H��3��i@ B?P�� �i@!h<�T@�x@���.TP '�zP2B �)�{,��>��<�x@�{�y�AFh *@ ̆ٱy�@F�D� �� LBF��!��C�6 `y0;�Z����`8�c ��1�Ah����( ��L"� H���� ����� ��x@p���F�H88 ���m� �A�`�`D�c0�BB ��T!���B)P��$��P �[h ��D@P��'�\�\��)��ĜW&V�j*��D��1'�Ɯ�:�m̉�1'ZkjMmcNH#�$��Ɯ�F�5I# �~CfmcN��9чVS�`MmcNd0���NbY'���7�HK�G����T��Fv`�R1�!� Q�1���Blb-�IȦ�Bf�l*��p�&�B� CmB,��6A#�DlxM���h��q�Jm�M���&�T�8�X���5a @���nBԌ��@8,� �&�T1x�X���T���X��� $��"`Do 0���T ��X�em�&%��X�.�_�& =�C)`��9����>��q+�!C���ox�oz ҃D� �/.�[q+�����V��[��Z\G ��:,� 9�G�K�@}�$% )���/�E� � ^�[���D "@�&�!$�5I ����A:H)8$�t��A*�e�p�0Z�q*N��8'ㄜ�Sq2N� ��� ^�8X �A�ܐtC�0� @�l�XL�@�96Ath@4��!H 9YCB ���J��@�3|ތ`���h�Sv@P�섖��L�;�%����©)2ѡ9D���xB�`#p�P �B)� +(�P XM)� Р�VS jpp=�`#��&1��FXN|�0��XM)`5��#��RP� @l< ��/�]�F�.D#@rNA"���� �H� ܈�R� (�@,H���~�u� ^�7\��0��� ץ7\��W��(��̈�p]�ʌ�+ba,`�00@�(�I@�������( ��~C �:����@�:�7��!��Y� �H���Nډ;�M4�L�R@�@�h \�i@ �d� ���� �Dn� ��4 �bTk0 �H�\l� �P*@�@<�^B8�A��հ�=�A&$��@"Q8%��r���.N�0M�D����`n�;�+"���t�ԩ:9� ��h�`n1 ��5Ӏ��j��6���ԃ�2=�!�m�T� `� X'���#�Nx�d�q���N� ? ��� �4�� ��A(Ӏp�Q@ �H���Q�\�P*��4� �"8��3R4�� X��0 ��A�>#%�����Hx`�� �� P��� ����B8�#Ѓz�P�"p�PR@4@,���!��b�� "Pԁ0F�߀6�o@��7� @�� Pi�������hm��� H �8��t\v�N� �석�p�I;]'0���v�N`�l��t��� ���:���u� 8���A4�x@����T�K�.� ��� #����R���d�p�CF� #���2Bw��� ����?"%��i@ B?�)a��i@R)��`h<�T@���� ����ԃ��8�����z� �`�Łā��Q �(���B ������ ,� 4g��4�{ <���D��SA�D� �'�4 ��(�D !��Q�TP 'A�'<�T;H��;���PR�Pp� =�'h� �� Px@�<�@Cp� ;H��Ğ�z��i��q��A=���(Ѓz�dB{�؁($%���=xJ=��.N�0M�Lh ��{��c�L"�-FA5��`�TP ��5��@��\P��!X�� �H���.�A8����ɣ��3�O��L"�-FA|�D ȧ��8X K�>A�0 �@}�O��>�'���T��I *a@�a �@}�O��>�'�������@�q��Aj(E 0�=!�Ğ8Kn�v�'w���S��O��v��!����#?ѧڡ�SP (��ˀR� ���`~C�P �@1Ď�B��AX+��7�ŠbG�0!�@����B�o� �!$(���BB(P�@%�e��2 �����&� � ��p V�8H �5h��p:�J�$*� P@(1L�t�Op:I%���(����H @�����X. �n ��6) ����   �!0�´� S�:�&l�1�ȂX��X0Q�,�a*J<(A ����� p�V� �� Pk�!D�5��@x6 <@�c`6܀)r&�� 060�p��/�P� @� `� ��A 2)�Ch<�T�19� ����@��h �B��h<�T88�����B8����c�&"`� v0��7��`�@�hP1� x)����i@ B��* L���P*���}@P�@|�o�lP�A|�o�"(� (9~0������o>�r0�|�`�0�xd$��a&p#��()��d�D�� E&%�C�1Q&�()���D�r�-���6�XH2�!7$�>a���(2I�D�Rd ��BQw�D�(�T�`( ����P@Q E���d�QHY?$� +�BJ�AV�PR�"�BI�d���R�H�p( d�$0�AhI�Ѓ,�����р[��h0 ������i@RA5��dm�T� ���| pJF`e�բX��bQ-�E��p ��7H+*���bS���o0��F��?@�h���*�Ӏ���6B�aL" F���`���F�@ B%��0 T�4 '��#��JH *a�qpJ;��@�R  �6+!@��&� 6B8�D��6B8�D� ܇�FA5��`�TP ��5�� @�i@N G%��T�0P Ӏ�<0�J(!%��a��!(�`�qpJ�80�@�����3�� �� ���5�D� �(�0(�0�x@�<�M��6Q�pm�Md�<���5�D�HP*pm�M@7��D�h�T� �x��hm�� �&�D�Ȩ�hT� �F�`l�X@;ӡ!�(��+,�� ��&(��`BL� 7J`��t�H�Q��(�E�z0/0!&Ȅ�@d�X��  �A���`6�&(��l��� 6�G1 ࣀ� ��&�(�0k R6�&�(@�l8S��!�U � H-� �o`(��8�r�` � �dԨ�L`@F� � t�!� < D*F)#u&Eh� u���^�o���7��L`@�8�����Q� ��o5* �"���5b���C!ZDD 0�O9~�5�A,�9(; �t���X� �p� ��t�ԁ:��r�I��4�3� ; )A�3�*�< �B��PiBM��1E�HR�Cċ$�D� �C� ! :h(��� $����� b(0��18�H��?0�4��C9����T�r�u��ʠ1 ��ZI`80���V���Y@I��%��� X(`���UA rF��0@���p�� 0����T� 4)`����oNjB<) (�ZY+@J�(%��” �����ABCa,)(�V� p��p�Ź XRY�p����Y`�4)��Jh]�"�P�P��!0��0 ���96�"\��b��X���\�i`��b��JU)��X�@��R �J1���> �R X)��X���bW�!t�-�Q���b��J1�IJ��X +�����uaa |�,U�BI �(��R�P( @,T "�P�Hb�b����@  CK5%��R� �R)�K5�'��C��D��T "�P*h(�4��+�D�@^�|��Х���Rt��< :�P�D x_�W<�j����X�K��=�*h(t��< �ʓSa��T �0�À�DbjL����W.G��'!�/E>�V�R�cx�����p�DK����& ��$�dc4�0I��x�\|2�h��)р����$�M�=��0��:D38S��'�!>��i�C�5�!h��)`MuRPP��\|r�>P l�d�� R�p�����!�T�2�!*����:D�)��t��!�PH�������CX��8��"@ ��1���E+�(\�MՃ���-�E8. #2Ic��� ���Z��nJN4�!'������Ed.���<8�N��yp�@FpS �4���"��@~Џ��$�sH��-8I���\�fb�H�� � �p�AR������\Q64�90� )�����DRԌ9%)`���-��-. )$E[�\@qH �B����\�9 #���D����-0���چs�S_&$9I!)`�X�m!��:e~C��ARH �")�B�� ����~�� $��~� @? ��@���N%���J�R(�X YQZD� w O��<�p@ � zJA4�px� 8��0R��`�-lH?;e�ds(�X��ҧ���"��)1��ԁ~�����lP�a ����s���T4$�ß �P1`lP�!P��Aq�@P�0��û�b &�P�� ���C� �p:$ ̌�qH�H9$�t�rH �!9$�&pR@I9$����C �$��03f�� �ap��03fs� $ ̌�18H��$�� 1H ���P��C� U{��*?��t P�+�(�� *W@b6�.�!� +���� ��B�`Q %W��`�,>$��M� ��r�\ĂY@ j�&���QA�H%��C���R �Je�����ThE �D� ��X%Ё���� ȏ�0�3�T�  �i��4�(��`L"� ��� h<�T���"��A>0x@���BP+�(���C�*�%�q��A=��yD�L�V�Q���ԃ� ��P���($�0����� 8�K���� �THa�Щ6�(��`L"� ��� h<�TP+ :tr� <��?�R` v� �� P�@�m@�SH� ��p ��8�T�AO��R0(BH�T�*��B���A��R@2d� ���*h HUf)UӀS5�FA5��`�TP ��5��@��J�6���T�*"@��6��@��*p@8��� op)0E8� %U�o� ���R�!�*�h��rU��A4�� L"�-FA5��`�TP ��5��@����Ba�@� r�8 ��\�� ^=�AdzP2B&H� ��L��A ��"dg���8�� l�� ��4 a#x���F�Ӏ�Q��4�D�$���pP�@ )A% �0 ��I�#��!�R�J�@�R��A8���C� ��J�� 8����A��`#�U��0�#l��0 ��5Ӏ��j��6�PL"p��H8(A������J�D�$���pP�@ )A% �p A)`� ��CP ā!��`%���[� D�:4���Px*��0 ��A0�j����H���Q� �� l�"Lv@&�a"P�&� �� Px@���� P��m� �A8H���zP2�6HJ��\@�����$�2A#���*���b�@���& �X�"]M�/������E�!P JA4�D`L"`�{c����� J�?���F���`x��C/XJD`����&B �*@��Ю��$����I"R@%I2�����$G�(�!��@�.@���( ��.� @<:�:DB�WЁ x�z�'�\^ ���|@� t@�x �6�ftaApN��sH�!90P0��)�b�����T@r� ^�����<�W��*ȫ= ����b�j0y5����� �J�+F ���U�W�J^ � ����W�HXy䕼� _A$�=��U��jXyel��W{�GXyek ��b �+�> 8�����(�:0i�0�+pƀ�H��+��?AS�W�J��g�? �)0Ԧ��4�,�Ҡ6iP��4��@ _�4A>p� d�� �� Px@��@S��L�B_i�M���& @��+A��H� a�����<��AO��R�~��#ؖ~%z2��rl<��h �yP�AL"`�Cx��<��i@R)��`dm�T� �*` �o� P�� �����|` ��FtӐ�B| �<��`2�|����m0��7 ����@" H�C�+o�J ��������Qe��t� L:�-�(�a�� C�(�"L0���E�S �0)��>R;�(��-� ��*�)�+��n�Wd%��i�D�� (8���A4P�A`��i@ � X��X�Q0 �@*�x�`�l� �� Px@����O�7� t����H���x��L��Qr�jh#x� ,

,AD����R� ꢞ\���h���c�z�� �`(X��V�Q@ ��d�� ��R ր($��` �R �`#�q��A4��A�i@ �F��?���0 ���?@h0 ��I�#��!�R�J*a���F�@ B%��0 88��̃p A)�@��� �Cp +(,� ��4 ��$�Q@ �H���Q�\�P*��B/����}��?0$ �aуz�T@&�� #d�p  ��jIA)��T��RX�Da5,�$��RXKa�����;h���h ��(��bU<�TP+���6B)���P���'6�F(xb#D,zP2;����$BYh���`�A�(̓y����Y�P̓#x�� ��0(�o��!����@`#H��5e6�2�2A�,��6Ś2�l���� G�#T,��8�ŲX�#����8O�#죅2,���|)0�6��@Vmc�膍`!���22e#Xd� �n���ݰ,�J`.sE7l 1���\� `���@P����ex �X��8��+�L� @&���~�L� @&d%P �!(��`�B�/�W�^"�/���d�B��x�W��DR�^�8/I �Cc1^�x��� c�B����XY�l���,4V!x^���Z�� �+p,���� �4��б�I�X�����@��J* ��?�@� ��! q�,��8t@�h \�`p��%��Z \���ձ� �� �Ϝ?�M�BN�&?�,lR0���ؤr4l�:6a'��,?s"���3�ca��gN��Y ~f��Ǡ ��0Y H 96Ath���P�M�@֐F�9� q�P�8A�8"@t�=����Y=k|p�qD@ �Y=�t��� d�G�K��Ct�=����Y=k|pN�!�(@+$�� Z h��_���rB h��0��ʇ�D�-�5 �Vm8ZH+i)-P���0Z�ahI��-�� (1@�6 ���!��r�hՆ�5T>� Z.�hi��� �В?Kkh �����r��X�մ���zZP�L����0Z�ah ��-VM�Z@$��p@C� �`'� b�08�!@���b��0dà�c1H 0� �(��0 %���b E�X�t` ��Z!n�L��VQa�Aj�A'��� �!j �!�C� ��t�Ơ&r�E! �?0u�^�@�(E$���Q*�Hb�`� . FIi�`�BPl�� b! <�G( ���L�&,L-�U�K1 ��&8��0 ��x Y�1h�,���b� ǀ�{�6�1� 5�J:0 ��08�PQ��� D�`����Z�ke-p��V�B��ja���������W\-���`0.�ek���|�c��H��+|E�1.[Kk! �b\�G��Z�¸4��յ�V+�ZX����V�4�ʉ�)��km�����M�Fak80{�J����Z����U"�"�c�l�� U~8TC��WPQ�+@T���l]pCPAVz��$*E� \��J��Q�Y |H.�!�4*G� \����ԂM� b���T�JRQ�� &�"��R%�K��Њp��U��:Xa6D� @�P `6L�P � X*@ ��NE�z @��w�CP��,F�NE�X�C��ԲT��x�f����N�X*�TԀP��5�0�� �ZM�i5!��Ȧ�;�@��}���&��#`��Ԁ�jjh5}�Մ�0 ��0 f�̓p�� �2Մtt����@�ff���@$P�0 (�  ~E0;Ϣˠ-����(�`�-���B@QϢ_ ���V�5E��Ӷ� @Qb�-�e�V�A[ �m�(��P��( E�-javPT-� ��y��� �(�@( 8` `p �o`(��@@�P�o`(��8�� y��<��$���U)@cp�@,� � �8AB�̭�b��h1 *� ��P(Dcp�Ad�y����#�V���h1 ��t��@(��hi(�����Ѳ��h1 �8���08�X���PȃC1>�(a yp(�D:H��-�$�����P�*R�X!iB��"9�Kc�(��(�`d�EY :`9���t�����,p��B��"9�Kc�e1���`�������qVH�h5�� ��?Q��Q�(�?��!p��J �l�`���� v��,�1�!�� x)�!�-�� H* 9쁻�Ȇ`"c`C0&�!�� �)`L0 ��L��L��7����*C�$�)/�4z]F�P�� W�@`ʤ�1�$��2�"H ��,�L�� v�L@��e�Up�H�"`$:To�[�C5��~C��P�@��Vѡ�#�P��l� �4��?���0 ��A�a#�Q�F�4 b�( �8 x`$� PBJP �@%L"p��H8(A�����A8����y��!(��hq��h P�����7(n��� �� ��"=��-�"�@�Hzk �-(�C�RyK��P����[io�-��VC���8t� ���-�8t� �"���z�8t� ������&9�-�"� hz뫸�H����&��k0 P��y�����(�/�ž�;T�N�P @Č�>��F@,�-����V9�b�-@!��|�o폎 (\�o�-"᷀���8D "�����8D���@'8*ZbF<6�0��6�` A �x�&f.�U�� \) ���\� xOb�0���Hb�`P ���@��-�`0:`5�w������5����X�� �@T��`*@$�(�X \�@,$���hbA��FA��@�2��p�-1���c�"�Id�'����xObp :@�4��Cc�!�QOPJ���z��P��`(h�B�4��%�h���� ��'��ɡF� ����ǙC��E�4�҈ԃy0V�Ca m� ���#r@��p=��`(��7D`|�9x% �9�;@(tD��;@�#r ���@ �h��� �A4��`L"`6�G��`Tk0 �H�\l� �4�D�$���pP�@ )A% �0 ��I�#��!�R�J�� FI0�#l�PL��"��.�~��!q4v0��6��b�qpJ�80�@���PR�P��a�~P"���8���'�U%���j� �-O��WNj��Q%��jK 8�pR[�CƵ�D�j�0������p0�P-@�* 9X�� )�pR[��9,.�Q�q\ ��,��@�R �q9�и���"M�qA���1�f�\�K�H�/��\�qM.���&���"M�qA���1��y\w���"�4���+rq�/�&��\��Z@���1���;w�Z@���1���\!DO|�B���\!DO|�B���\!DO|�B���\!DO�PK�JX*`!��P�z��C� �b��)�-y�0 �����bI�r1��P�*���$�̕P0���Ѩ���>�U�\��`��zKu�c ��"�*�Dz3��%�7s_4��\sd�\����\��sE�+�=S�(]x�3 2a��B�1��tɛy�d@]��t�:c.P� ) ��"+��>�"`P�Y@$�(T�� �@$�HTa:9��Uc��1�`:9e��V�`L'�Pc��Q]��0�&F ����)D ��}� �� D��0 ��A�BaTk0 �H�\l� �P*�"���P��!��PP+`�)4�¥��$� �A=�J�(�p`LCRP ��4����<�AD��"4�}� ?0$TȐ,,�� ��)�eiR���wH�4 ���Q` ��4 lh<�T@�x@���.��� �BE@�p��I�� #��PR��X�|��y�AFh /A ̆ٱy�@F�D� �S"LBF��!��� ��F��D�ȰP�4 �>l�QP ��(�D T

Ia(X��BRP C�����@f���V�0+��t�,��`��C|7�/�u(���.c�'���p]D�um��c ��1���DSa ��1����$` ��1�i�:P�U J�����.>�/���0^"0�C�/��7H �_耄�/�i����FD@C�� 4������C|7�/`V:�������CP�!9d a$� �kv�3a&j���"`�(Ю�Ū��f� ��j��]D�v�PQ� t�]Ё�0���'pQ�]D�(T�pt * 0@�t��! 0�rt` @0a�t��! 0� rt` �q=�BTtW�"*�E,������B)��% �z������E��RP �� �]��<�ӻ�PyHӀ������4 !)��QP ��( ����k� ����IiwU��p�P��1a�!��х����x@�<�@Cp��wq�ߵ5�I6I'�`�����72�`Ѓz0�~�*`�<�2�=�?4zP"@�]�y��0��=�!�����8(΀-��s ��*2C��pP��4 �<��Q@ �z�D �<0 FA6��C&� �0�E��#"H��@��6�*@��8�*@�+v0��7�� � g�4�F�D� l�p��0�a#@�QP ��(�D T

h����Q��C�J�@��AD��" ����<��`��p R�6��"0����P*@���P*�%dzP2B&p�kxA�h� LDMXӀ�5�FA5��`�TP ��5�� @��p ��W&�� d����=(^``�ԃ��"�i-�hz@"@��$��`= h��a�= u�a��5�ZD}^&��m�T� � ��(�A� &�:P��X(aE!�8�����Cya����`C̆�2��X��kU��䕼���`�Bd!�������d�嵼��`^��8����WH, ` A`0���+{8����F�5 {�!𼄀u *<�- �@�� B�y �!��h^��y1�� ��u *<�- :� (�A��@ � ����X�^7�($�u#�B�7�A0u�G�7� ���?�G=�2�(8�@0s����%l��0��(���R`P�Q`��6��@|(F�(� �����́b�A0���0�A�s�D@�ӋzU������^�k���E�h���K����E H�bF�s�-`S �^3�*�m!x�WL�^�"8� `��WL���*�m!x�WL�^�"8�m!x�WL�^�"8� `��WL�^1E[���CP+` ��`V:�Y�B0�!����ƀ:��8� ���2{�� �E^��<�`Oy�@�1�`Oa*��O��`O�V�u�]��ę8���� :��� c�'��� �P��t� �A�: �� �F�1��:��P��7H e����/������M� ���u@#�����P^�AP���,�2 TX�-��� ��AF`0?�n2[pbr�������@N(��` ��Q���(��y@�AF8)�@��dBm{� z��=x� $��` ��L�^D!)(�=৆�5 2{��z@d�b�a\ p~�4�7d�2 �@�^ @1�Ő��P �@{m/�ս�����)|/��O~p�++��Q7��5�%?���U F(�K�� jA,xT�*Rэ����(�G�Ѝ����(�^�����FA�^�!�/�U��׻0_��]��$�$A7(_, 94�$���3@_� p�V ����X�Q0 �@*�x�`�l� �� P��<@ rBN�2x@�$�D�M Ѓz�2�C�J��� NjXx@����"@04 ��L�@[pCA��� ���w ���T�x�@�Ah4�8��` ~�?�9���@� ��4�X��!,$� )�BXHJ!)(�)h@�X_4��0.h��04� @�����`�^�4@(� &��@�+?��r�p_~���’\A�*���W� �W,���QA�HE7ܗ����T@7ܗ������� ����%j ~%��%�H� 8��0��A4�� L"�-FA5��`�TP ��5��@���C8 �+����T�H�@ch�n�rC7P �� � ��� 7l9!'d����a"��D��D�(�=A��b(0���d��3���|�~��1�\b �0$��Q�4�B |�~�� d L&)0���M@�B� `c�����bcc<� �b(0���d��1�^a�,���@6�^a`l���@6>�kc�������cc<�� p���c(�l�;p�* 9��1�� �#��*�+@6� w�g���A4�� L"�-FA5��`�TP ��5��@���� X��!�R� R��A"���R �M <@ $��+�}�/"�o �KE���<�P�@ ����< �n�_)JM��[���� ���t���RS` ���W��+X�G![������T nA&�����T��Lp*�C���� ��e �Ğx�e �/c�A�@|���(��P��$���Z�M�Q :�����0 ` ���U`�` ��U@ @o�U�(���[`���-�TE:8��*�(�B�@��lX�FP'��� С����B��@ 1إĐ&@�Q0Da��h UQX�(��@|�%X�4�(���#� �*I @��D�@�H������H*b���JR[@()`��Bd�d ��"VI *b���J�*�� � c;@���1x��( @'��� 7����uc� ~� ��dB7�tQ<��S� �c<�� 0�1�c<� ��'� ̋[`5� <��S #�������@s`�!�<0�$��`�a(q�a�*�%�T�i��x��ΰ �?��1�3@�_ �P�?A(�U�<�� ,B'r���p�*����2�l8 ����@ �QG�*@x#���X*�T �pzC��F �5���XKl��p���$� �l*���Ц�P�Km�M�6Q��^Sm�8`p�R�n�7z� 7�&�#>@nz@hM�i.��/�e�&F�0�M@C7 ��jF�`��-$�~� �l�-����T@rH �x����P` m�+��z�W�`�xd���0� ,$�� ���H#9�8�Fr8=���j�+a%p��8c C�9���[�D��6�@��Ӏ�F)8�a�T@ ��(�@���� X�-���� �������l` *b6�V�@Xa#���TBO� *b6���`2�R�D� ��� LBF���>��@&�;��� }a� ���9����A��`#�U��0�#l��0 ��(�D@�����4 '��#��JH *a��i@N G%��T�0���v088�@m VB��M��N�H�!�,� �[8 &�# � 8b�E��!� 3�B��0# �x �@"�P�A�0'���G!: �&fԊL� R�"9aF@4���>�����aN�"`�@c�p�(LИ�`: c"`�5�6 ܄�+lL7�Hh�Q�4�(X�/2 �� 8,����a��u0�`��=���u`G�:���&���XaAaO��&VXC�"�`���f�� 3"@����"h�Q�'�����u`���ؐ�C^Aq:�X�Q@�`� G0 ��+p<���2 ��q*`�� � �@���P��� ���ߐ��U���\��T@@���D�2RV(?d���&��.�ـ������p�F�Rh*  u�C"�(��$�b��a2l�����@`� �>�z� 1 h��C�V� � �0h4`V� C+� ��$� �0@"`��a�B�X!�0�bV�UX!� ��Z �a�@R�I�؀a��A��Bh������ ��R|&Ą�`�0��QP ��(�D T

S@�D��3*�;�B�(�D� FI,l �����3�"P<�@a.LE� @q%�D!� E`6�:(��Qrbc�B%��f�i�(m ��8��Qj]����Ŋ��b���`��I� F�5�L"�X9�b�!��`�2�o�4H1��F�,BF��@1Q!*���b�1T��A*J�b�Bq��� `����1\ �8.�X� "@��%".�i J�`7s��bPLq��q�A�P"J�`�Ŕ� �P1(�ތ�P"J��@1%�f ���} �@�>��a* 9܁L��bU�N�E`��Xr�t��x���LE��J�tՃ�`*�0�b|�;c*ŧ�3�"P|��`*�X0{��S(�� K ���ꁂ0tB<ԃ=� �����TT1:!�xp�@<\�� �#0!V��x��.R��(`��R@ pB� w!��L( Dw�@t�)�]����pr�bXL�����ʻ �"���VR�'Hk%x�P�C�lJ�l1��P�B � �](�"pD=hZ�4�-�U��pP(k%�����X+ %����P�XH�@�� ��p�A8��>�(��A)��Ȅ8H J)��1E @T(�A8��ZDk�����s)`Y}��Ś�#p) �D�O�"���b` �5G�RS�-"�����P�#p^���1��Xsp��9��6@&Q��-��0�[pC�8GP�X�(c� V��z��Pp�� p���c0 ��NQ'��c� �A$�����@c��1���`�Œ��m�+�6fČg�O0G�'�X&�$� 945v0fČXcM��L��Ăap m� �� �CBa{ �7���#xcqō17����HÍ�7W��"e�ŕ/�'�XY�c̱�@��X�4�,�M�j���vl��NP @�H-A�5��ĩi UC,�=�&r�b� ����r�b� j"7D��qj��85j�Ԩ�SC$Nͩ95D������ǩ95���0�pj�ǩi UCx� =N��85�()���c% �()����2QEI �Pd$�D�KxL,�1Vr�X���F{'�q�px�h�H��?$�[�FnI"������z��i( P;t�:K1��<���1�i�=�����c�i�������c� <�=�>�D:X�i������{A ,����ǣxȈ����$Ea�ca���1?���{ ��qz0W�͠��WЃ�$�\)܊f�1?��= s�f���h�cOa ��1WhF��c4�0�1�1W�D���`��Q$@a�b��>6W'�+E��IQ$�cO�̕"A3�Aw�4�0�I1W��WJ 4# �������S��`��Q$��( }�f̕""�= s�f ����S�s�H� z�t��_a@R��@3YJ�}�f�>6���+4�H��GA3��c}�̕"A3�Aw���0�I1W�D����ь�R$B��c�Ќ"� C�s�H��>6W'�+E�= �Q$@�cs���g��P*��P+`���<�F8D ���$� P��!X�p)~� c0 8 ��h�`n1 ��5Ӏ��j��6����K�A7D�s�p�KR@=x���@�hpBǀ Tü��B撦0*�j��QP ��(�D T

C����C}�@�Ԡ �� P��� �� P.�D2h0��PP��(� qP �A @ ��|�O �D�)��>���H2~�O�I?�'��y,��O�)�'�����O�I$q� h<�T%�&� L2PEzP) ���EzP �T�-�,�X���р����x�X0Q�,�a"�l � L��&�A`�- .Y@Z` <�KK@�[�I����D8+a%����d�I`O�> P)+,6�7V�JxX�`�'�2Y�xXA< �@S �_� ���W�Cy�d @�] L1�'`Ja ?�7��R�d�$70�0����@h<�V�=p�Tm2���0�@y,<�T�8` � \�B�*@��M��� P� 5,<�T@p*)�8$��S)- @�Y�TR@qXw|�@Q���g d�t��:c.L��7�&-0Ȁ�PW�2u�\�.�R@6�EV8�f� �� Px@�<�V@[� ��>Z�X-��%���7� |P�0��h<�T@NP 9�-�N��A>0�@��@� �@���P�� �d��$�O�T@;�d��$�O�T���d��$�O�T@P @[��(�XK{�P�R%k�� �M"`�G(t�}�k0 J�4 ��n��Q0 DY6��D��1�HYA��E�уzP��h���@�h�J@i@h<�T@/�@#cd@� �6�A���O���(P��M"@�L�PdzP2�3pр�P>�(��`L"� ��� ���0 ��Ap���T� �L�y��y��@ �m�T� �x@�gpʠA4�� D�S�����X�Q0 �@*�x�`�l� �� P��|��� �H��@|�o�NY:��`h|���������F H�K,���R��h ��l�T��A#hIQ,�"�?���i�,��T��bP? 1 ��x�C.H��D�\�TY@<сk,�U� ��*�����h� ++F`���+�a��i@�!�֠ �� Px@p���TP �A�"8+�4��� �sH�a�x#� ��G g�-P���Ѡ ����4 �[��3 ��5Ӏ��j��6����-\P+ :t��@8( ��(@NR��6xe�L@���T� h � %�2Y�P�0B��h��QhY� ��)�pɼ�X(A,<��0 P�%��� t�JA4H�B&�0 ��A8�bTk0 �H�\l� �P*���.�4�*`��} �� Xm!6#A������� �@ �"���v��x ���� Np� Dn� ��4 �bTk0 �H�\l� �G-�e�C���8�� (|��0>�� �A!��o0���頖)�� n4�ܢD�i@��(��`L"� ��� h<�TP/!h� zP2B p��@�h�-ZA4�D�[��j` F�4 ����k� ��6�*@�_� �D/����QP ��(�D T

�GaD4 � x"CD ��a�f� � ,l@�E ��`W=(�p�.�8h\�C0�!���f\�qD�I��Ĥ�� `p��!@7����.Ю�A_g� ̈pF�>��g�!v��j` F�4 ����k� ��+ Ӏ��δA_a7�`h<�T�D�M@��\S`�`���" �*�$�� �� PA\�64��Y�HC�d�0��� ��������O��${���h0I6FB�S8`�P�&ɞ�Ӏ�r6I��( �`�T@ ��(���@�h�-ZA4�D�[��j` F�4 ����k� ��6�*@��0� �%ǜ] L� ���@|�o��:G8�!,��T��J�4�� ��� � ���A<���D� ��!<�(09�xL"�<��(�x@��}�/����c_� ��T �$�p �GX�#x���@=P�y0gp΢�9Cg_���0�9����Tp�ҙ:;gӀ�3=!J�6�*@(���7 ���q� ��<��@D�s���9S� x� ���#x�i@ B��C0����4 ��m�T� ��B�}A<�ž` x@p��p�@��@yD���<��� @ �%���p�Cxh ��� �CxL"`�G��a��p<�@x`h<�T��� `_� �/�[�*� �@�G8�#,�<��`PJ�(v�<�GXg!� ` m��� H ��x� �[`O�-x �P��xԢ0�$�ē(��I0�$�� OB����`����� xO�-8��3~F4�@C� 0 ��A�>�g�R0 �@* x`�m�T� ��g� �=�AdzP2B&x@ ���R@=H�`�q� @R�$�b�P����$Q ��r�q�T%!��\�����:�(|��*�%�d�M��vRcPS�V�@S:D��$���;� ؂#��읉�΄J?�'C��1��P�B)�$�� ���A�� `<<�1��C=�Ca��z0��;{ }���pv�C=@d!P��P���x@�<�T�!#d� �12�) $#dl�y� ��8� %#�� @@��0 ����0��QP ��(�D T

A (��(�v�0�_�A]����%�_M��/��F�h������@`@4��$d��hM@/%��0`@4��$d��h�@/%0 A'�dD���2���vF�8 *a$�"��@�I` ��!�v��<�d��dx��@>(; � ��N�Ɉ�'e$Ó�"��@�Ipx�y@�h@�� (`Tk0 �H�\l� ^�H�D� 8m�T� �*`D��<��<�� �؁6�*@�m�T� �8@c�����(@K�8�S@�X:��}�fbJ�G[ ,��ҎBH{Cc� v�4��`�`Y1�tp �HS @�y��@��+)m�<����aPi+��������K�i ��0W.J@ �A������T@hi.ͥ%���P�K�,��4��aH��|h;�Y�I*�3b�fMc` "� �f�����&�� 0 �D4A�Y"�, �E4A0��h�@D4A` 4KD�hMH���X13M� �1�����&��f��H���!��Vx�@��7��HyC�L���B�>5M�4%��٘Q�L� a6�Z0�-�4�f6��M�i �݈(�D�>�C�Y�ܐ��U�i7b�E����n�U� ���5�h�7�O��i�"JX���Ӧ��i� JX��`r�O��9��i`rCN���8��v#�A�� �!�݈�Drڍ�9�FL��rڍ�9�F��s@ H* ,��s�p�⤀�sq�@Ĺ8cD�B4�O���������3�"�� !种����I�a�����I����N 8��|�"\P8)@�t����#�a'�}1�n�@Ĺ8``p�V��� `�)�h (39 5�Z@T�Dm l����60F�R`�&B [����P(F-*؃-P� HFͨ��P$@( ���0� j[84�m�P��4�Cm ���"Z@|�Ӏ �-�P:P(�ah��� �� 8jZ@, ��0~�đM��,�F�) �,�F��f%4�,̲b 5���P( @����ZR��I,P�F�� Pj�!9�.@�C���:��@�C��ԡ,5?�R�1L ?$�����XK��0&�H��ij��g��F��R� Ӏ�,5����S� Ӏ�85ܐ��S�GӀ�85���S� Ӏ�<5ܐ��S�GӀ�<5��qj~��1���g�ڎp ~������v�hjm���/R�J:  @�(�C@CQ �!,ҒWҁXP-�M�� �P��R`�B��� >0v�N��4HR->0��N�Br�ȁ�$"@� T#�@ vJ��Z�?�Ex�U'*M� �Ґ�P�( ��i$ (�B� ���������38` ��t� �<�A,���T�j7����BRU�j��BX5F����7`܀�p8�B�4 M����4M�9h-0q4�0)�M�4��2ƀ�4��sP)(�����j�� ?��#��`���" ��jG,��t�(�<8��P��r@���(P Hc΁Q�C@��#�A�j��%� � HX��p2A@�jbl�,�V�jd��&��Q [�E�-@h@j�j �9�c�+h@j�j��#������@7�|�!�QvEG�agp)��X��4 �$�c�X�1�& �cPN W�U �r(uv��CP\�4pa� H�� p5`�W���������Ws�\$6Ŧ|D&` ]�H�+u�N W�U�\�������jl��p�Z5q&��W�� ��V���� [l��p�Z�Z@ p+-�����p+�J�6� �W�p"�:P�@Gks������`b N��4'�D0[N�8� �Xk N� e����`-*���a`��.P6 N�581֔ �kt` � ��Z��`M(� ��FO� �' �f !@��'4���,z�h��e`�D�%���b��P1����9�z f�@Z~� -6�D@r`i� 0�$p�� �y( \��^�@�J(��|���hT��C�`.��0�b{�$�zPꁙH���5< �KP+` �oP��p��8�����BQ(g�|��� Z�_�<����@`�1쌴�1�F�P( �i0 ���8n� �5 �$�@T@0 �$���dH��Wq"g �7�U��8k|`p@> ���� ��AP��!��� �`�0Y�T֚ XkB�����cw�5�ֈ�m�U� 䪀@o�@ ` -���|��6 ښ��U�� ��A[ck8������F `k8`�5�"� ��# h�-���w�5^̋��wpj�;��`kc�9�Fr�A &��C#9tGН��H�� ăx ���A � <.�c0#�,?Qd ����1�����AX1b�1Љ��|�_b o�w�%��;�R��H�p.�;��` � � ���ڗ�h_\� �/�������k10�D<� ����+����cx q-Uh3.��_�kL�/qm���\�Ks�� �X�B1 ��g�oh ��)�J� P��,�{�V�=� `�w��AͰ �R(Q)��P ��Q)p��@AT {` �����ME� *��l�4�J� �<�BA�J� ��`D{ Ƃ�5��Q)�<(l�T !X@S ��)�~�y|�`�NqX@S`t�)\�00]���)���P6��u�4 >�T�h @p��#6��9!'l��j��F�(���P���k���� ��`���v��5l��5Ycd�a��\���.^�@ �1@^��H�Y�#��i|ற� `�p�a�a �0k��i|`ְ� `�pG�DB��@.��R�<)�C�r� BF�(��q�R��`6�� NjXx@���I�B8H��((�@bF�m�62( E��J�6�J� 9h���V��G��� &����($�T �gc�Dh����B� "@6i�R��V*�@+��� ���)� �P�m�Z�)��`!�C� :') ������l��(�C�I��D���C1���Y)ZڠE�Dd�g{ �g��AW|�Q �l���m��� � � l�@#��a�����7(nb� ?a  �;~��8Pw�DC��O4� �'���;BE�|6�J�$�T���Vwҁh�+��4Pw�DCi � h���m�M���VVGC�.{���Jv�Cnb�!���Ğ�C{�0��(d���5����N:m� 2�6��N:m��q��T@rH ����V�i[+� 21l@��\ �T�Ԇ��s@m�bp���m, � ��M14Ő�R�j�i�!�)���3C�P ��+�6 �C�P �!P(�C�P �!P�Šd�!7C1 ���M�!P �� �M14���R�j�Q!��-����_A�&:��C�P �B1D �TV[Q @���ֶX�đ= @� ���Ă��bA���&� � B& ��l Ll B&��!�?�M��mbA���&d򇐉m�A,�ئ�Ll� bA��6� db�n`�I���?b����Y��V`�E��m�0���w L�H3?�ɶ�f�G��4ވԏ(B`��q�mNh4���ls,@��Q?�N��B&��!�t�q @o'A`���)0�M���E�0��00��a ��F?G����R?��1 ��1��ch�j�QD7�!d�����ԏ�1q&��pIs������l�m)����A2�m`��`�z��mw���60� ��+a @�W���o�m� �7�u��* n��O7��A�x%��H����~�+�m������A�x%�� �W��~�}�0����y%�ⷁ�l�'^ c8:@�p�~�}�0���^Ir�m` �W�@r#c�L���A�x%����Jt@0#[� ���R�0#[� ��;�F��al��ɑ9���9s�Lp��L �Zf� L�9b&戙`Sa���9b&R�Ԫ`� L�9b&戙Xnl`*�31G�D 0`� L�9b&戙;l`*�31G��aSa���9b&R@�Ynl`*�31G��rcSa���9b&�� s�L�3Q�[ P ` Ԁ��ܜ�X) f�47�&VnKs;3�͹���R0� "�-�͹���%n�U`��N��j@ � �ԉp A X\���!:D�`���Ԁ@0�U � �Łђ�Y������h�b)`�+ݶ��?�-��0Z�hY� �����Vh$��)5.��h�"���B1Z�N#a"��0��2Z�@#a�'��>0Z�@#�|` X1��H���n���>�H�VL�4FP6��u�4 >�T�h @p��#6��9!'l��j��F�(���P���k���� ��`���Pd �vM�Yc�>�`c�� �����`������ �A����P��v G�`��F-�Y�.�]�� ��1�R�_ �0�� `!��]���0����2�l�;�8�# �S�� �n `��-�S�@z)L�I��6e�۔<;E7T���R���M �������JZ�VP�O4ݦ u�2�g���StC �AP7-�bJ �+j�-p+���D:����v�� v� �0��&���n�m�p7�6e���)���U����u�) ����VTxKZ�V���:�x�����Vޘ� X Á1�͢Ăy�bA�7-0E̛��M ��#$� E����LE0�a � �fb�Az[(Sd ��vp�n��hB� � q0��0� ��D0`��)b$$� S�HH#!:���� ���$�OGH�<����8O­ ��pT����D�Q��O�#T }"*�>Qo�D�'��I e@����DG(=B,ā���@�@<��It�8�#Ă���MK���DG�=B,����I�@<��It}�#�B�Po="�8�#�D��=B��}�#(�> ��bT }R�@��bA��7}�OR�> f�D�'��X��`��0��> )C���Fa6��XH�D�� }�2�IG �#�}�2�I��'ba�u���:�z�b�� ���$:B� ,�#��F��:B� ,�#�7�XLG a8���:�z�,�#���0�p�# � ���(,��|�ڤ�*Q��1����PX>逫��-�۞X>Ca�H��@&��}�p��"��{�*���L�&����*Z��7������Y>Ca�H��@&��}�p��"��{�*���L�&����*Z��7�Vy(�Q���;��0A��g��� �o ���7��[Y���X�_G�0>���Q�o��` ��>* �c���>"BRp>���>BRp���U��X!'�����!��>���t�O` �FW�:b%Dķ}�:D�[� ���`����? @�����V�8�8��*� �n���7�8 p��ϸ��Ăhnt�pN:Œ2�̈`�aF\@�^�`�� ����@��?b `t��0f��1��cw��n�X�7���'p�� ĝ���[��obph����Lp�C&D��� ~c�M��G��� �o� \��ؠ �D�b!���Aj�F"t��Z�� �E0�C�Z��D�!���P�>�o�&���Z���I|�4�������o���7 A��@�H-�&��1C}�k�o��L�@�(�oԷL�@�(q�o��L�@�(ɡ���� H �%` ����`L�%����d�?"���&�DZ� H�� ��jD��XCՈ�-����X�j`��!R֨�c ��-�2��[@���x�Ó`!��$� x�< �2��POb8 ��Gq(�':<�� ��>)=B, ���$:�> e� ���$:B�b�G(��Otx!h ��DG���# ��x�Ó�q`8 ���$:��`@��}�I�� ��� �="t�% �B�A<��It��?��>D �}�h�H�}R�@�e���C$��>�l�Q���Z@� �< 0�O��X��`��0��>)�⿥a��T@ H�b �`؀98���� ���9�o�D^�G"��KF� 0J�ߌ�)@^1J�����)`��ר��o���y%�� �2�l����R_ �����ۣ0l@^�+G"� �#E v����a. �Q���`�J^9A�e�(�㿥� C�sK���Ga؀��W�D|G6�@��o)`i��\$��= #�䕼r$���8�Qb�C��0��";�"������$|�DpO�I �"� �A����W�\�#pE�I<��P��D�O�I��"^� 8j� ̆�]��l�'܁ h��R4F?�O�;���$�w`+j�U��S�V�-`ܡ�=�7�ēlE�� p*� � �!�����O��٥,h�~��w���I< ��V�ʫP�B�pZ��Ó(5�Hp�"�D��d�I��'Q�J�{ ���"�A3�.b,��"�@�.�O� � ܁�!8� !��]rH5����"� ��� �/w� �Pp[ત��R�8 n \��>@ `�+|�bb>�P)�|��\@ �(��1�ق���W�,����lI@�m���Qc��A�`����U�(��1��> =��+���G�|�:Ȗp��*��� [0�Pp[�|z�\@ H,�`���p��*�e,8� [R�Pp[�$�E�ଃl�\@�m���X��s)�,ق���W�,� [R�Pp[�|�E`d �: n \���\@ �(����p��*e0� [R�Pp[�|�E���l�\@�m���Q#p)`0ق���We0� [R�Pp[�,F`d �: n \�E�@�kp7���� tH5���$<0 ���d�.� \a=$��a�C\A� )�9����' H�qpNp�� � H.@p�R@ t�pN:��P@$�8*{N@8I'�ʞ�DR���.��H �'6��pNFR<$Ő:H��Ty�p�0��́ @FE��� ��3 FL8q<��` �1H�Cp�۟1 @�� `��Z�pk�_��Z�,��Q�p�b�L8 �V.` ���� ������1��$�ZY+ke�\���V��Z �1@���ZY+N­��$\TX+kE���V�D��nOT8��'DX+O��U��V��Zy w<�[Ó�pW�It�+R��y��@�+�.,cx��1���$��X+O�I���oa "\8 ��\�z9��j` FHx`T�286�]��� zH������.�l��@,m`�΅�p@�<�w�jƁ�a),���1F���p�l�}���R�K� ,G ⅼ�I#�D���1��R��á��A�9@�A0��%@�����f�H ����QWB\�q�h�1#����c� �q ��!�@�A�>�o���L�!h�!4�`���9�@�!h��� �@p �B8@���!TfāH%�@����U�ߐ-NHИ�u�J܁4@��6Bn@ @Č�!��tx^fCrH�6J�R�`D�l`'� a�I<��Q�ĉ;O�!0��!�����lj� 7� ��ap�M`6���f��C��0�Ó@\@r���!:�`�24�p| �D���t0pC��ug,+��R���a�t�І��l��� ���Ư��`1����Vpx%,n �.>p��E6�{�����!$����� ���:n��1���!$���Ac,�� n@�Bc0�JnP��C,��:D� ��#H �� �I  @d��� $#����� ĸ8�d\(3.D�2h\��Ӡ�ŁQ`���޸qq�`Bp\�PB�d#j���q3.���ȏs ?����8�;h l�-8���B[ ����8���)�g(܃��T@&` lA$�=�|�� ˧{,�����P�`(���R���^� ��$8�`��GP�C�C��� ���Dx���)�B�`�� k ����X��2@6��@[t�zp�B�:� �6 �P��� ��� �P=}����P���������؂#���G`؂#���|�h@�xla(P ���W)N����4XR@P�������#pN����4X�SIš8 ��2X�B h3��9d�����XHl`Ȁ��J `���8&��RP ������`�C)��4XR@`�� G0R@6Hf`�!!3 RHm�HdF0E��2JJ! 0���#Hl 4����#`�@�6����CB�@�60 �l,� ���dE�Z)x �-���H�@x�$`),��H@(x � 2��H�dG�-�@�ނ��-$ �ނǑ��-x\c!� x��13��� �A+�,o�^֓��� <���҂��q@�U�� '�R�xYZi.d �@sH|`�9��C*�C� ��OH< �D� �P8* 娴�� Z@ �-��� ���h�-�x��i<-@l�ƳO�A-@l�Ƴ8*-�l���B��+��rT�J p�H���>�0Z��<�.A�x͡}� G�"��bz)��� ���SK�ɉ�%���Ԓcr ��� ��7������o89��Z�@��N�w���ZXK�`��o����7����}����1�F�pr�������� ��` ����\O�rQN�=9(�ܓ aA,�)G�G��r�D,��P厇X�a���p�‚,9�h��u�(�r�d�Q@ FA)����S� FH���Q�T�*`����Q� `A,���ԂQ` n.��`-��R���r* ����F �n � p���C �r^��5�a��Fp)�i�-0���K�!8����0�rI#8�œ�Kb��9�����q'i��ghJ�3 aN�%�C�CpH����0'��!�!8��~Ø3 aN�%�C�CpH�ĝ1gœ�K� 8��P�"#se.$��H�"� `�Ef�����#x�bi�D�8s �_XE���>hn�94�a�H x#)�Ĥ� K �,)�ˤ�.��"����-2W�\a)@͑9 cbR@ Xs�Ĥ���0��I)�͹9 cbR@ hs��0�����11) �a���I)@��9 #|T�<�,����"1,���4}h�92W,�I)�a�R��Cs&�92��0L xsd�aȒR��0]&�Ȃ�0L�#s!�Ҽ����11) �94�aR��#shä�7G����,) �9 �eR@ �,h�@�P�A�3:@����� � ����p�#Ή:��p��q̹�1��ęq�qL�I!���;��8�c$Ť�s``�͹:�$��Ks��=�;W��#�s^aX�:�����W^�+x�8'��s"��������*^a�9��ʜ��f�Q H�/��kq.�Ĺh0)�ܴ�yN�I G��#�g��i�$���4D+�^�<G���'�����60 E\�1pދ�s[`(����B�I~�)��a���0\�H#.p@PR(dž&%���B� 4�������s\���'���s��0>7 ���B L��B!��B�sA�P�;�� ��� ��I=��a�@�B��!A@���� A@��=�ЉA@R��#�`��BW� ݡCt�n�(:E' HA!���� h@ ` ����DCY+D`�ć��'��"4`((�@( Xt�` 0 0 � A@ HA�� A@R�4@�A@t� �)@�@B!h���n 0 0 � A@ HA�� A@��4@(� h@�; @Ѐ# h�P4�4� h@���`O��� �BHЀ#P� H�2��@����"h�P4�4� h@���`O�p!h�4�4:P���K��ѩ����b��sp�`b�A�sp�`F� 0J���)�A��@I�`�  u���H���9:#���l����C� �8�Gw9R�{t���� ݣ#E v8:HWh��ap��r������` � L�GG6�@�pt���0\���) �=:Gg��`�ё�";]�+4��0���a��@@t��E� �D:7�����9�@@t��@�# ��.���i<���?�;� �;�B�6.�@@�w\ � �߹(H:��&�| �?�;&2�K���L:d0�$�a��� >���E(�� ���2����pA-���ta��.��i<��4p��h<\�.�w\ � ��߹(H���gpǤCs�Z��I� 撤+�K����@CP)`��L�؂ X `%T.�B�\�K��%���$�0�-�(��" ���.��Ŏ@�p��2M@ �5H�"E@g��)�$�0(�����,ݥ�H�.�1x�2���t�a�q:M��@��i��Y:M�6���t�����*4ݥk|�����;�ԅ:?�v������4�����t~� `K�����u�^�M�F]����0 �� u��)`�c�ULݩ���DH T��Ʊ:т��*�5�ՉPu�N�`�SW�J��|�T� >��EH�!$��m`�B|����Rq�� }�7�� >ڂ��!>�>7.B|�Z >����P���n ��B!��!�BP����h "�"���@!�Ex�P��@!.B|�A ć�L�H H* ,f"�3A# �ȇ?���C���J[�a �K�C0�N��& �K�C0�N7�:��>�|� �.�����2��; �J>@V�I^��u[-����2���h��:�X]&��kֱ�����Gau-�ձ�ߐIh]}�$�����R@` �+����T@ Xl�z��>�\@�K4 ͅ���r�u�~��4g��1�~��(���8��혍@�V�\=��l��?��W�*��h���'��������I�`��>��� @�I( �$���`�l�I� �����( w���\� z������`� `'�<������F��������F�(�a�~�3 ��(��p��o�u{�M`>A��u���6`@�F"t� �0x�7������Q( F�L�߀��� �$���#�A �Adr@� H 98�"@����<\���|��u�2;G�]E� ��h ;d�� �� *�V�h �$�$�P�0� ��� B.DVJk���� Ȅ� I!)(�bW�@H ^� ���C A9X�� � o�����@P *��0�00bA � 00�`��f` �!00�@;�f`� �3��|� �8�.��>p6��Kv�.������l$;`C�z'`�@��� �F�6Fh��!� Pvʎ� e�쒝�8o�@,;e�Ά�Cv��w��e��ƲCv��w���$|G� !I��2(|G� 1,$)���.���e.P�$c�P������ š8B��� $5;���BRH b�م���8�]H:3�م$���Bҳ IA�م���]H�%Ў9�$��C��%�"$g�B�BI@����� �&��SC'�L��O\�vХ�QdM�� �i�hw���fa��N<i�w4ĩy t¸<�i7 �̩�E��:q�DH(2t¸��"�"� ҘvàT�9��H�6���P�j�m�M �%�f���� �� * ,�� x9s�L�3A���Y�v��ڀ�v���ig����v���ig������ x�5s���B���Y�v��ڀ�v���ig����v���iga��;r(戙� ���9b&x ��%��`Gx��i��ڀ^3G`/7����6P��K�!�,�k����"a5 ۱���lF �5�f��QlF �v,�l;�QlF �5�f�`3j�ͨ:�f��QlF �v,�p;�Qt�َͨԀng3j�ͨ6�، �K}�/���R0 J�(p�`�T0 �@* x`��� V+h����W b�,����[p pA.���������A?�p�9RT8Vd� � o����g��.�$��v��@����I����G`� ����8��{B��@9��#(  ԃz�Pr�@�!���c�;qw�#(��0�� ' �q%@N8�_�J��x{�@�!9��w��@9�J��p�CN8�1Ɲ#H��0�Q�#p @N�6��w����g��)4�0ȉB� ') Q��%p� X�B�,�*�I�ºX@������l�x���*8�W���W8�Zq�#���� h��+w�O� ��/��G�pU@����1�W�.�F�T�0���� ץ��*� �!8w�U�`c��!�(� T�`cl�����;  �@w*`�@/Н �`��i@R)��`ht��S�.�� ��Hw��(����2� d�m$�0LCFP �u��T�|��>ԇ�tFB�*� � ��HE�HaݙPJ��p7H������\����u緐� �#��R�[�]G@ ` p�R�[�]G@ `� ��`FJ/��$��2L� ` �0�� g p�R�[֝�:\�H� 0�J��rw����"������N鰅R� ��P) ����Q�Dl�G�Yw)����*^ š8�E��U5J��J:�(y7����w� �;z7��]��w�%x0^L���{�zK�k �%d��P^LK�� 4 ���]K�&�%0Ȁ��êwkޭ;����]�C �)�;zW��RpA@ޥ��@��ݼC �)�;�!��]�w)�z�;p�%4���]��wH2 {����w"�u����@��R?�ށ����]K�-��%Ļ��MZ��w`��X�%�Z6y1n������T���d a$�č8)��O���!�wD�r�{G*�!�(@|�P��K�ߩ����b��sp�`bA^��s���� ��|�H�X�ߥ#��%�wF� |� ��%�w�D^}�0p�%�w�d�|�0ԁ �w�#P|����1l@�+|��F�|�:��h��#��0�|�E"P��"Z�p}����"`�� D�[!X��;~�B �2 +�-�B��C���;�����C�.��;7���xo�<��^x�N�<�7��P x��� ��W����x�.� ���^�x����;�W��� x��������� ��<.�� ��*��� �@&�P��$��� �l�-<.��t��l�-�� �4�@@=X�]a� O=��������AIᩘ��0@#h��� �@&A[�m����������>(�V�{�C��:h�ԇ��ZM���FI���$ZM�P��T���{ZM}�=,����P4@���+�z����+T�F�X���+0 �=` ma4z�R pZxk��5�� ^#o(<�FE�r4<�l�� �1d a$Ăn`���1��}��sx�}���Y���,����*��1����V�>آh��"���>}��1G� ��� ~���&�����YL�g����\J�yPE��ap �x0����a� �!$�PQ, `DAp���  )�@d�` � ��)�T��FϛX�@ɶţx�D�@� c0.ƅ0�b\*��0.i�Y��w� �a �Ÿ0���0�x�%�ie�x\������3.ϸP<�FRx#��.�FR�q�xƅ��F$��x�q���?*��x��qݠ�zO�@��qI!)�GRy�C7�'<@�� ��qI�nH I0���4��ϸ0�/4P �)��0�� (C"/$a!�D� H)���\@ `��Ptǐ=�CB �BL��8:�cxc|��i0 �UYVA�d��D^ ���1���C�b(y����=�!N^�HE)�l�<8��5"� �Gb�#)�l����D��y#/v�����G>�G)�0qB!�H����C8��A�@��l�C8�i���y�`�Y�eD�@�`{@X��g����C< �':D L)� s�!�Ğ0"`O��k�E��5��\�Xc.:RBJ)/�<�7�F^�`�� �Xc.�Ğ0H){�#y�E�p ك:���!T^�p �֘������H)&����@JH)��#�'�F�ȋl v���=�<���C8��A:�c@J`��;@�'��K߱<��|��j��h�0 ����Q< ���4��B <�i�(X�o� ��9-0 PIHa�� ��`Z`< �3 X�Ù��QP��p��Ù�B\���\ '(*��E8�bH� �A!(��R@�p` w ܁LPLE&x �� �� 2Aq���8��C� ��!hyw�@�"s1$w �C`*�@&x �F,��v#o�MZ�,*����n�ͼI �T���`*���k7�fޤ��LEr0�"98&��V�JV���]�A��@&(0/��b̓yс[$�a�A=0�d�W�@&(Z'�#f��Q�-�1C2�f��5o�ѼQ�@}�/�ž�R0 J�(p�`�T0 �@* x`��� V+h����W b�,����[p pA.���� ��R@P)`� �T��Psd�� ��ܒ �yn� �31G�pKn� �%���#�n��q����s9�-q�9b&�4�n�-q�����yn�p���n�yn�p��p�[�s�L�h�ܒ[�8�-�%.���#�8�-�<.���#�8� ����SɡG$���@�b���C����0��h�&0 t�yPf��G�(� �Y#k�ȫC �u8�` ĪC ����U���+@&���dc��رb�a�����h�t��y;�:輝� ���) L �;|��{M`��+��(���W" 9�A6�و{ v�=`x����BȫXu�Y#�*9��gR� H?�0�;� ��{w��e�����AofD� �zSK =%�"�az3#"��R�aHC/"=�@��@�;3#"�� �� z3#"��^D�c�0��-���BO�e�"R0z�A�)��-�az��Eh��#������%e���73"�azBO[��=�XRz3#"��؀l1 BO��m�{����={�� 6�fFD0 B/6����<��0��Rzl p� �`l@豁�Rd`PB�= ��@@z�)����C/Hz�CH�M���(eD�&���R tG,����M�`�!d�`4��Q6��00�a�@/�Er���@w�ީ�ڢE� ���E��k{�,=��Z�U�;��0(�PQ, �+M/$8=���zzD��g���W�@*�8=@D��\DD��������X�(t�PiC ]Fmm,�!��F�X!��������p�i�� ����p�i�b!,M �4��#��R���H|"$��n� }��� ai,�ϲ4>��� ai,�����{� aiR���H|��t$>!,M �4b��� ai^@ �4�fꥀ�gi�^ �4)`�1�����X�V &0�'�X � 1�,��@5T�BXTc!:���X�`b1�g!0�f�X�����l�a��XT�,�ap��Kӑ|��>��t$KC, ��k���t$>1,MG���#� �& �V ��T ai�Gհ4|��L�t`i�Ga�4��OX ai:� ��0X>a!P���H|�BXTci�����L, a!P��1 ��0XT� &M�5���)K�'t@8W��I���ù �#�p(�^:�.V/�����4@C�z �P\�t�]����."��4Cp�:���@,4�� ��x8W��P�Ca( š�z��PЏt`���H� >X=�� �K���Ca(��K��~����ACI �@tCa( š�z�P\��p(�^�K��~��������z�!���� �Dpn� |����u $�)PQ��7P %����p�`��8�:��@[�w0 �Pqal��|#��@�;�n [@ �;��n�i`���Ÿ=��alرB��.���9�)�"��.(\O|�;T@ �\/|�v���� �t�s��g ������^��*�y=0L��z�����&`���0��0_/`0�1�����#{��tm��G�E�#{����1`���z��؛�)�@� `��)s`o~#�����`��@�0{ ���0�X, 9����� � C��;� �̫"��10N�*G�`F���ej�!8PF��m���D&x �F�̛�� ����7��8� ���@�0{�b�"`��f���_��Z�k{���7��AZ g�P�)���@{��M`6��ÞpV���� M���FI�`��@p��� $���7L�U������M�0{k��1�Va�Z��k���=&�*�^���B� �g�8E��7L�U����� � P�-���C�` �a�ЅhD��B4bt!�$����]� �4����(F"t �:�"�%�3�K�h ��8.��Aqp �M� ����ۃ{;#�N 3��a�ro�� �G&�6dg�=2�@��Q`n�Mؽ����r�nb9��P ��{ ���7�A6���M������XP�  ��� ��X`�A4 7!rC��!@�H!��� ��O��ǐ E�(��袽�p��h��=p��P)`�����&ͤ"`��CP0��`��!}j�8~C=�{}��ՃI# ��)[ <�-���PPe L�-0��S� ���=��R� |)@� >���s��dE��Q�<�(��@��P��!�)4��(|�X>o�"��`��d}%P�;h�c���0�@ @ !l�p �A8 P@T��BFH JA ��"@!��+���B!��+� �Y"@�b�����@� ���+8��(�� ae�8��bvHX+cā�bvXQHa�8���B(���Pm � H ��u�ԁ:(䥼� ���8|�O��% �6��I|V��X���U� E �%�dT���8K�eO@���΋U8/i�����W�5 �-���@�䥼��KyA ����BtX ��@�h �C��`��@ F`0��B��o�����@.� �0p@P�`<��'`���|�U������|���Q��'`����<>���|��@>�px8��Y��~H$ @?� o�H*��C�AVx��d��%�$�$9��"�a� ��+x�@) ͝#v�쌑�`v̎B�|�O�d�;cgvB�p^!��"@!��+� � ��S�@,+�$� x?$��9�� ���I(��H܏ x!ݲ�R��)@��/(5�AP)`�����p) � `!�W��B�2ѿ������QȖ)п�A0A�B��Q���oP ) %�T@ X.�7(�ߠ�@XT���p� (��Ą~S"`-�O�]0F@`-���l>ֲ��C(�#M$��H�"Aa�#M� E"rC������,P H* ,���,�pJ"( %��<���7�FI|�ϧ$>���|�OI�ϧ$@��+a6��p)0��B���R�F�@�o, ��FXq����~�0�/�ā��(Q"�a�� ~H����@Sn(�)IA�(E��D�� 4������+ ?$��H*h������F_ }�!$�W�� H @���R��a* `��RV��A���O�+}���a���C�+���>`��@&(�@��,��v��)����6v��+�O$ɡ$�&�M@rP�� �C�"��08��!!��z�H �B*��H[�� ��)+)��VRp� �u@ ��{}����*� �T``\~��91a����'�@�}8��ه@Ϙ}8����R� ��8�G�%� �(��R�L@�@K8���X8 Ja�q d�#X ��}�/� �o�) ���~K�X.ຨ��R��X*[����@���Z�}�E���Pl��� �=܇���L���p��}�@���h��`hz�ڂ P�avl#��0�@!����C}�@�԰�� Xm�6̃�<���-�`��D&@�3Z��-�?��X�c!����5r�}���Wdr�n�}� ���t@� ���P"���8�@) �s� �A�E����B H* ,� �[�@�!�� H�a Ca����L H @4���A�Y mp�Pm�H H�f����\� �}s ����͵�}�o�����͵�}�<�ޗ�xl � ���@d�) �5��B��og��� ���l�@t�U&YDcM+�>�"�"�}8�%�1|ߪ�t '�>�j@Q2C��4�������}�()�!���X��o |��'��h8 Gq���%����{Y%� �৏�� �� ~sb������#0�.�ŀߜ��o��~�O��p� (���?~Sv������'4�p` *@��+�C X+D ��7-X� HV��9�@) �3J��+ ?�����{�� ?���_� 8�BD�s� !D�8�@&����p�����QB�o�� P�țp��M�CqP)+����* `}�=T@ � * ,VT�@#�B, ����XPS� ���@8�/$��R�8�/�%?��_)P~%`�%�RP�C���B0�;�.D�x`O�/�w���z~b!�5?跧@��C�%�4 @jx`O�!���ߓb^Cd�����x~ү��װ��S ����F�<[�~Ρ���0֨����&�5���p k ���װ&����U��fD�s��q� V+����5�I��8���~`FT�V��� �!�������Xh3�����f� �aFd��"�ߌ�~ `RT��EȃshX�!�9��а��b�=`!,���4�V0#�_+�y��a1�I��*C�"��94,�0#��s���a)� ,�{`FX a!���N�2�����8 o�0ֲ�����G�0ֲ�h�,� @.tY��\���ȅ����~ ��9%��!h�xݡ;�ZP4��~L�Ȁ�Z��������T@ X* 9�� �[P �+��0�` �O��7���W ��q�?���+ ���R@�x��?��� �ϵ�#��R �G�oI8�g����#�����}$���3;��)�?p����b�bڼ��������`ڼ���7� HԆ�#�$��3�h�Q��*���;��윿���t���6��=�i���#Ԧo�i�B�8 `�?����V%`���h�P�qH������PX�@R8���A�x���5��7�Ѐ�c�#)<���8�� �W) ��G�XDAČ�!؀X�A#�x4�B�hC���'�Q�a(X�P)�`�B��4t@�D��� q!�B�%��B� �CиC���'��P�D;� �0�Q�Da(X��`�D!h��ADА! \� �Fs �1���B Q:; �pB  D� �� B v��� p��7�OMS o���D|�4XNħM'�!��p"b8��v#��i7�� ��=t�X0Ӏ����V N�iNħM����O�fcX���Drڍ�V!78�1 ��4� ������n�4�i7"78��v#rڍ�9�F������#��L�h��4�D:7�tKv�\��M:ܑ#����9�a.b�H�b����;�E�{�2A-pG@ �"ZD��@-pG���# P�hQ��_�ba Ď�0pG����p�I�ښ��|�����"\�hk�JW�J\��0(P�8 p�\��@�U�>��\U��m�U��@!�ŏ|���*p�ښ��;����IGt��;����M����[�� > �@����Ŏ�W��_�|`k�]��N���C���3�����` 4P��_�����ŎI�t`n�"�������# ���.r��t��lp;r��t��D ��E�c v��0�E������R_�}�`��Q�L�(8�`�T@ ��( @�V� \�+��Y0 hA-����\� FA� ѕ�a6,D��^ t�p_��0s�PC0Gzë�a��6t�8�0iNR�4')��Hs���4')� #�iNR��`Ҝ��+T���4�\x"M$ɡ$�&�M@rP�� �C`������a;( c�(D!����E! �eԥ���K\H��4E>�����.1��GY�Y�����/���(���e��@Q^ Q�D!$����!�1�!M�%�7�@�@/������`Bf� �4!=�Q B��0�!=��0h�����3� � p݁���� C�� �` p��W�^�P��A0���!` B��tp^D:`�*�0�(E@�y���:� ;YV�C����V�A�` ���"� H* �G��sh��?G R@�p-"���"� H*E8-Ѡ��H�b*"�GР��HP ��A���0 4pVA)�� �����`g@X:@T���4��g`h š8,�HqXI�EV��@"��@�#΀�R�(YZ d!��%��� � �� !@�9����pP�DX �� ,��@����c�,X9�YJ�,��@�H<�@���G�h �q%�ǯ8[B��_q8� (! bęg@ (%�p ��J@ �3�,@Ǡ%p@�"s1$w <�v�Λ�H s��Ge*X@��7�&-���l 6�s��T����0@`�9��`�؜7��;�M�h��*��fΛU�:��́@�H�"U0�T�*RE�H����ᘋ!I @���\ �P)`0�p��97�:�x�.��獀؏�@�C��& �c}�RVR��X��D���g@�Y�#d�,ġ*G�� h3�@��X \���ձ���3'��`��S���Q�����~���&���`б� 8~f����g��y ��?s"���3 ��8P$`H��>���|���o�ĄI@��$`�i5��v�� � Z%��3 L ���i`���� L���h5X�L��@��<� ����j��1�=�G�c�r@ 6ૠ��a�B�B |�l�Ա��(ZHЀM�:6R@E���i`6�Aђx@0�&�� s`E+��`��9�  �`�J(F�7�! Z �0 F�G �@&��'0 F��z ( X� �]� H�� �y�X� X'0 (��\^V@=Ȁ M�0��A�=�m�0��A��O��b� ��81R@^�Kx /�S�Dr�hP9���sw�q�� �=��HأV0)�@���t@� �(K?��@���4��~�N;<`��&vx�8�ED HaO �H�Þ`�J�*(#G��l@ZH Hـ��CF�6 a�H)t��@��l�v ; R@ H���� A D�L/�U�D=@#l#8� % �و @*ܠV�XA8����W`b�������(h+P���*X`=� �@�@X�n`���#� XX`=8 � 7ԃPpn!7��A=��`��An`�g����q�� ��9���AA[��� �zP\ �b�!$�� �X�<�����*1�r,� Hq�\���>�\ �bȁ�荨�DzBTqQEJ�Ї$E� ��,b�o�����y����y҇ �i"$��@tp�Cr���&@t��00��`�&����: X� (3�{@[����@�@��Df��*Md��&xzO�J�-�i �g`G������� ����a�@(��� {d����@i"M`APA���50�s�70M��4Qk �i�����{` � `A�=�G��H�$ك@�= `�@!���ZY�z@��q=����E�zd��!����Z�B��!DѸc k������Ё�h\�� 4�m�H�A#��d[�Fb�A#��d[�m�6�6�d[�mb�ѥ�&�f�l�m�m�ɶ� �x��j�����c� 0���Q"J ���Q�� k���jЈa06�� 0�C�`���j��a06�� 0��a�" ���F���J�x�E��| �����s�@ �p[ ``ݒ �>�c�b@�}� �J��� @��}dXU�-9����R�����H�� ��>+ce��O!�Q�00}���s�6 l�m� ۆ�G"�mt�}$VƊ����m,���6� 0�m���چ�1�@1���a`�`�00�m����GcB�#p��D�'�Gd��}$V���G"`����ȂX �A,�1!�Q ba��߰�t�X�G}M1�# �F ��D���P\ ("�� 4F@�� p� P$ �4�~܄1P$ �Q4�`܄1P$ <������"�"� c�Hrx1�A4�`�Dy��Mparh����EC�F��� �(���0��> ���R9�H��$� p�5X#�t�R�qJ�\�L�4�xq_��w�"`�4�x����"`@ 6�x/�`�`�N�;����#���NL�\���H�F`�f��#0�XP�bA � ���! H�+�=���"�4�x��� bA � � �K}�/�e��QP F�#0����Q@R)��`$U� XA+p�`�X d�,��`؂[� r�.�(��T@ XpE�4`WR�]y�se��4��J �+�c���fW����s�����T@�X� H 96Ath���P�M�@��(aO� ��@�`L�7���W�A�� @�J_e�1� �'�� x"d.���`_�9|�@��* mD�U�60��Fm��t�VH�`/��4��tt`i��H��(����a8����+�!�@�Tk0 �@B�������A6����V�Cr�(>�tq 2�� QB�Ѓ�.8�'�Q0)���s�0\P+`]�}�y4F�A�8�yT���5@c��u�2� �NH�HAQA=��\Nh��� H+� ,A�Mq4�d�̣1 @H* 9$�@�BdF�CXA+��H��XA0p����V �+�����` Z�p�`�0;V� ZA�c@8 ^�9x��B�1� RA#�!�� ��+D�P>P@ H�Cd���&\� H ���;� � L퍸���F\`j6��c�.����KI�� �fވkڂ\� ���d �>�, `Ol�7���qM6`O�c�'R4W���fʇ�(o�51�7⚶ �"[�C���� p5 �W�Y�DHk�ClA�&2�Rq5�ClAP��# ^� v��?�@h`��0 ���b `�H��Lp*��#H`�E0�ArhÀH��L��#( `���X� �_ �m4�&�#( `��L�6� ���40�Aacp � GP���&��k0 P��y�����(�/�ž�;T�Nq�(��F�d��)Q�$|(�=��t�d ��2h���7f ��R:�L�f�$�hL�� \�9p.PJƀ(���( }Z�`,%a���ZAF-\ q�P4t��)��82�J�|4�h�z�4��!���T�t^�#8D@=��� �K}�/���S4��L�E���Y2��)��(��P4���)\`��`=`��L�Ai�[�o��V��+���x �F7P��Ʉ��{�}`�]�lM=����ؚ�QZ2K�(-n��d6XZx�lq����ԃ=�K��4p����ԃ7�KRK�(-��O 6��M=�%f� �[S���%�`���Ra��� d8(m2��!#�A�� ��B6�j2��a�� ��C�� l5���i�jJKF��`d���� ���p���0 �/�Ӡ���֒4��h X�Cԃ5�`�Gp ��z�KЗ�b_�*J�8����W�P2����t���Ԍ��@�1 9� 0�@�x&�D=��b�Lԯx&�`��'"4��2QS Dh5B�*"�MɄlP f��bS�+]��0LTd]���88��Q�J��D�8X�cS) ����cK}`�?!U@ X�)�� >��9 !(��@CXS� (�������3�R@d+ ����f�P�� E,���v"[ �l���T�&Pi*�0pg��4��>��9s�m.�v�rX����9� �S)) ����T@&` lA���(N�,���S�[��8�:�T��p*��AȎ:�T� t*)�",��D�J (�������D  )�`@i�� �!94�0R@�HN%��P'@�Hb�>:�� uЩ8PQD �f�Nԉ-`� �c�� :(;�Dt*)��Tч��� �>0�"ч�@#`uЩ����� �� N%�lPP؞p�!� 7�'��1p.�A�����q* �A��1� ʃSa e,��P�1h(Ơ��l` J�0 �N8�`  �Ơ�:h�1h(��Ac�P �@$���b �A �sp��p* ���V�=@ �l�����ɋP ���y��9P��S��y����`� �Ѐ�́9�'/�Ѐy����xV�*-0zUpW 0�a8EFa) ��_�6YTH) l�O�R���d7�F܈<8 ��P�1���܀�4���7�8 �@o�pԁ9(�7$��S@"Y�D�$���cp}`�0ׁp�"���(����nh()�����IG8�a ����N�4��#��S�IS���)t�� +�en���T AA,̭���hC��0ZT �[�����:BL!9���:Br`��t�`@r-*�t��")�YG a,����D���������0ZTL�vl����T@ X.�ڱ�?��`[p,�]y���@4��!9�$@�� xW^���h .Cr�I�pH܀dѿ�@r�I�-��w�a#C�$�/"�`[`��+�)@- ���v ?$�p��]�S$,�d;P��ͨ6�،`3j�َͨԀmg3j�ͨ6�،�lF �5@،`3j�َͨ�ng3j��5 ۱���lF �5�f��Q � T @$�= �� 0�BCxa"T���LD� )��4 �fXI!Z��*��0�E�B@������� M�4)`Ф�`Mj5,�X�VcUZ�����+P�=`U"�W`��(4���(�����ƁG �Y� � �d!$��B`�C@�Z�"|!��� h53��4�V���*����A�Z h��$.pA���0#DB.p�s(�� 0�*��G�a 4�i�� �`��8��[�Kp���0��\�� �c�"0<�@RMbaxl�0<6���baxlJ8<6% �c���ЋX�� P �����pxlK(��0�c�0<6�%����0����P, � P ����baxl�L8<6@& �ch��4�X`� � �����pxlN(����ctB�0<6���<����P, �IX����!H5���1 ��𘄟pxl�O(��$4�c� K@} à � �$@a  ���BPXB�X�%@�� �(,���Q(@a �����9�"(�I`L �`'� C�#�@TXcb襨�@P�����!�GT�ɁL�t�f�@:`A�D��0&��^� ��I���Ya|DI��DPHo&��@T� cb襨�@P�����!��GT�ɁL�t�f�@:`A��$p ������d*D���8� �@�÷�m �W�*|��@��S*���1��y���� 4���2T�����р�B>� �@�,��D6� ��)��[�6^�Z!� �h�64hЀ��h N!4�� �<��A4�r���  ,T���0�1h��>��7��B3h����EOh���]�O��.��0�1�?h��>��7���� #� ������O�� �#DЌ)��O� ����@3h�����h � f�4�a�,�?F��`{f����@��>�c��1���ڧ�)����"S`��?���{�l� �4��?���0 ��A�a#�Q�F�4 b�( �8 x`$� PBJP �@%L"p��H8(A�����A8����y��!(��hq��h�����3F��i�W@,�����R� )���9Q�H6��� ��\�UxY)૤`��ˊ�_% t��2 _� � Z)�,<��J �F�*h�X�U�@��*�P+��P R���*@+����h�� � ~�4�!��,,.�*�P �� P_%�#`�A,�*i�t��2 �ApVaw��P P*@(���h�����X�U�J�xa��`�B (���WI4�X�Pb�W _�C<�C�Ă� `"��0��H�])@,��֓�{�H� X�/�E�{i=)�*��� R�U�"_D,��֓�{�H� X�/�E^E&8�A,��֓�{�H� X�/�E�{i=)�*��� R�U�"_D,��֓�{�H� X�/�E � $�$T@ X.�D� ��� V~O,DA�P�X���:(Z�B�=~/:��\��Cb!:����<-@����Byb!:�Phat 9��� ���{�A 6�(���i���(���^a�A6�-s��G,DAD:���D��}"�� P(@,DA`�-�� ���@ �� "A����  ��{�Am!x���< ���D��� ��m!x����H �|pR��. �@�� X'H���w�@8� 5@q�NjP'���M# i�-��Fi�A�!5T���x)j8Ƅ (|DE�`C�F��A D�jl�!a��)-��k������+��k� @H* 9��Wp^�+���(����R@��e�B��2r�Ct�� �a���+D����0 ���h�¢9����� �6<h@,P�@  �f�E3  ��i�E�4����#0�.�ŀߜ��o @R�$�b�P����$Q ��r�q�T%!��\����*�%�d�M��vRcPS�V�@S:D��$U��>[��� �� ~sb��).� `�-0�R@p�\�m�)4�T@ X.� `1���� �.*&l�)d���uQ1)�0�n� �B�E�l�a�a7D�z��@ X� x�o��a�I� x�o��a�I� �q�JCi(  0���B!��+���"@p "��D� s �A(� "�@aD@��\@��E�0�\�ڪ+)��)��\@ x���p�\R���A ,�O�R���A ,��T�H,@ńC� ��e����!a������,@X:��f ���ƀ9<��̊�#��a�b�j3p0�G��g��b�`�������������8�8t *�@~`����(��`L"� ��� h<�T�7�|�!�@8� �C� �:� ��!� �Sq) 8G�T@ X. H�=��J=�`��Cm!xz�:d��m�=�-O�Y�B��u( �@�`��m�j�S@�6�P���\@;Ls���9R�� ��,��@�R �q9�PR@P�-�1C��;|�b���f`�����.��!� ��*�Cp5��)*��E8�bH� H @���\L�X. T .�L�N( ���@p^aX����Uy!D�(�.���L<�2�0��"@!��+����`�%�u� ��,�����WP��-��$ڂW�m�Z< jQ<`O�I<�R@m�`O�I<�$���x,�I0��A[` m���'�$�B�"*�<@ rB�A0� ���D�5�2 @,�C=�Y�!��@��b&(�W�IȦxB�!��@��b&(�=�!�Ƌr�a� �] ���D�x�aO�a�#���7�4�=Q+^c�$ *�=1 |DT�I�4�=Q+�Ğh����@EPJ�"}�8*2�gbL���y��Ƥ�"�S��!��C"@E�!`k��5B�CT kd�<����X#����5R�L�! �(���frBC8 �G��@���b�--�u��4>�(�"@�����EC��~h!�B�h�"��p��BH�'�� >�BH�)Ĭ!!�@� /@%M�!�����)���p�73|D���uB�d ��ꄐ2!�L��F�#�p��D� GS8 �(��`��H$�p�@8� ��Q�'�KDa,-00� �D� .00�Q0G!#Dm!x�B ;� �<1J��@� �*�PBS�IA)�<1J��384�`h<�^�98/�����C(���̃����_�x@�<�^�98/�����C�*`����2��h�Dl�<�A� J@ ��$b H�II ��R�p p@�FM� �1 8@ pU��U��8A �+X�p�('�) 9$P4� � �!,��4� � �!,��T�h��|�!�$~H$ @�,;�H��� -��CԊ�� <�"YL��,�Z����(I����$�&��"������R�'H)t�f �(^B�M)@�E:��) ��� :�0( ���%ܔ_�C<�O�R@( ͠C�P4� �A4�z��P" @(�����@�d� *�sI �C�$Ҳ,D��P$�%=�`��@�h ���0�X, 9���� H�"}L�=@"[Hn)L��Δ�S�� ����0wVE�=�ڞsHn�G� ��M�h@�d�-� ��(T!ЀH��p�0ݒ]��0~��P���gpGv���T��TQ�p�T �RQ��n�.[� ?PQ�BX�T)���bCD �0$�� H.`��_d�C��@���Tb&��nץ��S$X#�(d�^��v]*X�!�]��*�B���8��RZ�ʎ,) �����#pN�������@�e���0�s�C!d��K Hf`�!!3 R@#�qH(��� @^ID $�BTcoy%(��P�J: ʇ����B�D`�T ���`L��4���܄ H()�!5��P�KB�4��t��& �l �?T�-���C �$���� ��!� ��C4 ����#��"^ /�Xx��E��� ��.��C| 9���R� ��19LDC���sъ�+Vb�NE,1��C�.�4��10��q0"���'#b����2"ƳbV̊��Sb �n�n����2C�n���.B)�E��*��܀!`U[�_Ѐ-�gp�F�q��@� ���bn�"��� ����l�?�;4�Lj3�⺴�@Q6"yH `#*��E��"-�%h�4@�_�%̺�0�>J����Q^ �� @�����Z&Ť �BtD�"4����:��0)|u @�E��I1)n� ��cL ��:�#:��&����o|6�"&�-�Y��pU>��Fݣ�2o�T��Fݣc�_�@��+$��(�|�7�'���y#.�3Db�Bg\`P�����u�ވ�� ��Fb($�$*���I<�Q¹��H�.CJ$ �$�D��$H"'ɡ$r`-dSId%Q6Q���U"�)�*Q%Z �TU���M%Q%��PI|S���DkQ �~�IW$D�+�B��" $� +�­P @?��dEX�f%���XbH��%~- ��R�J�(d��x�����%*��{rOK���褀H�  � )�1Щ�߸E�6 @&0����Hb2! �Rab�(11&��R!ab���01&� ��IM�=��T��Ra ��8QR���T�h a���|CH x�&�DI�s"ȉ)` ���()BP"m�HP�"!�HC - �Z�I�u�i���(�~��(౽��R@8�����   �-D���PD�'h( E|���:DCi(�4����N��@t��� �NdK��Ct���!J�h(����#R��:8Ba�� H. �������m�ea����8"���#b��am�e��#bX�zY8"����.T@ ��d'��u�ׅ P$<�}(z�.z����B�d�u��E?Q$N�:X�u�����ĉX{`�EO,)�h��- ��S��{L���C"Y��T�DER1֏OT$�'��D�O��\�'�EB�0���>Q�<ڄa>���>q�(��%@�H ( ���! �G�)�֨�d6�O�-��֨�d����*Z�4��0��������"=0�!p��P �TFyJ�|��a6� h Aq��� 2��S�O��y� 6O)0/A&�Z�4��(ZB1(T ( �"�P ��� Jsz �D��b- 0\��(n��`�Q ��hP h�J�LEq5����J@)�<�q I� )���� �U8��~���a�5*A3�Q0 ؀Cx@4b�,0 �" !�X��AkT�f:&���Fk(�R��$Em� 0)Ӡ�N�J@)Ѐ֨�d�@P`N�A��! T�6�5*A3Y5�R �i�@Hmp0��6X�€)6�@"� �R)��<�g� ��� �!��㑰S�22�)j ���*�{��!� �8V���FHC����Q*!*�ڒ���Rq��@� �8�������E,�!H)�*h� �~�@���#JĆ�A X H��P�(�����?l @��A=���`0�"����`6d���D�:a&VHA�#@�� �b � @�!�DA��` \�is��[� D #0&�yy�"'}E�`0�� 0���#�J48 ��@�BXl �#�E����'HE*�C� '���� ��!�4)70'� j�! c�P$C�:�&@Q]�q�� X)~�y�AkT�f:dq�P���"�Y�4�8�A)��5@Z�4Ss�PH@pT�H8,B ��`NC�@PQ���p,�qo�q  ��#|�a�!�x@��_8�A)0>Ch�C {*Q(��7���A j(Š87q�d 2-����tn��pK�5�b �&�-L�i�~ �D@�1`��BkT�f�@�Q� �<� *2(���^�!�%�@T�Ũ�� ��{���`6���R"9@�� �<�Sk\�1q�A:p�H3IR�!H�-@�� �Q�-&��!d�J)�J"` �ƣb�A Q�@}���"j�'H�;�����A�k�@�0 ��(k�-��`0���@��T��R�'Qbt�t ��X\>2�G�ZK48�@ <C� JpP'|�$t�/Р������H2(��0&�"�f��֨�$ v �����HqC � 7����O �]� �� ��h�J�L��"0��� J�P����R h�y���`� �PVW � )�`t�R�]�<C�D @ *4Ft�"4�H�E��@(k2L�O�� /~�>t��+�NQ|�`@�6� �a��Q� ��@/��J�Ca؋|�Y�SV���Z�4�!�<�@4C� Ai( �#� EX0%`c��� ���)` |>U�0=�E��wc��(��N@)�C0 �*4�4�&T �`�@D ��~�F�A%���K�5*A36`! � h2���d3mca��`cĔ�V� d�B����4�L�EH@ �B�`�82A ����j@��p`��/�%��Z���� 6H�0*��C@J�!��@������@Xq ?q7b�S� Dv ��0���p)͑ �)�,`�d��@���I}�P$G 2� ��J�(� " =�0P���7�#8u�̀,h��z�b|�@A� �$�b�.�A5F4B���Hx���J@�"E�`�X��c���g(m ��6h>C m��2�Q ��@�R& ��`Y����'648 �@?p����V �X&2!�/D.p P � �����#@`�o�$��)�7@^�H��P��2d�"�Q�2@t�CPc��PЌ�����8،䧀��vF�(�D��@�� �O��"%nd���qG�3! V��� �6xFC�(�� ��� >%�U prF|F����Ѣ-p){ ���0PЀD���C�x o�O��r�5p@ZC} �=8Ɖ�%B �H:H ����XM�� 1!*P�(�{�X��R@6 8�$"b('Zc^�40�/D @�@:�(O��T�d��%�F@��;Á1Da`c�8h��(�2G&�6(�` @�_8�A)�`�9b&��!H���C@� :�h1 @�{0'�>�j�� �oP ��6��h��W�6(#�4�]Xck\?�`��� ��P�2���"d�Al<�ON���S �'��:���xY�8@@=���)��a� �8� ��D���Aq@ZI F�p�~as���@�-��A�`�6�`jI)X6����� `��`@u�9�!ȍ%p�w% �6`=�`(~���Gj��eq�6�n�$�t4R�UY ���*—92����h@kT�f2���@ �7�l�,�1 b��@�C��A ��g��V�*��@�t߈F��ot )+L7���Hۨ���� '�����+�Ddu�cX(A&.V8�QV�-�O H'�(�PJ�@��� �cR �B�GH�#Wn@�D*�a!���S*`h@���6`N>Ch�`!F&B�RQ2�Fp� h�J�Ldas̃PQ*���KM�8�c�x *`',>@P1�� � 1� 4��`� �r�8�@�(|£T�`yp�y$E���_-R@ (���� B�2�^A?�C@��C�'<;��Q���)1 PQ������l���`� X�I����@qxl�`�/�V��V� ��9 G�`kT�a�S*�D�vT@E��D��b-��� �!�$a`pLDr�l��`(G��I�(3�� �( ,P h�H�9ҽ��[��`'��̆�0 P��1Z��|�2>~�@���N �ͣJ�8t� m�[r�RB1�ye E�|c��0�a�)�`4 �zB ��D��Pitt�2DGd�J@ �C����! 9���F�t4��F%h&�T D ��`@t���������T �P��������/���(b��h)�:�@ V3`bA���� R��X�@.��q�ݣ�� �:��0:��\�]e�AkT�f2@&��b-��! ��4G����u�}=���cJ`haG0�J@���1HԊr�P`#���'��1TQA� 6�EA�Z'1 ��S@����` �C&��Q8�FPG��%��P���� )���sI�$ ��0��Q�!�$�C����2�h]�*A �W���G!3���M���x@P0 ��]���@(J �I��^�8������`�x�� ���R�����a`34F@X�l?����1;�,@�8 �8�m�@o� J�Q � T�>�h�E�5*A3 �J�����<6���-���C�H8@`��`0�LSP1��p�u `X�"��"A&�)�hmP��wZ@ š�4�P��F%h&C`y 2a~�C�\s��?m�4�F(.��"h�J�L��|`&�6Kf�GQh�J�L�� �6P1�9F�* `0:��13"Bz�K =n :E"T��aN�QԓR� �A@F�`=�Z�4�!`�*`�`�R���E{41)\:9^ �0;�Τ� >2�>�f� ?`���)�I�m�5>�7��ƼX hPJ'��F%h���J���F%h&Z�4�!�ڠ"�����dZ�<�BkT�f*���!J��&�D����0�4��p0؁!�<�`� T@)0�h��P b�!0�� ��$�{TC� ���(��'�@)�t�'�І� 0��:� ����J"�Ht��@>���!L�R!(P�/� �>�؀6�!��`�F ���`�@t P(�@,�>vT;�������� �5*A3�;���$��G�,� A�xY�� ;` �7P ��Gh0�� P�`Ԋ� �Da( ��(��:� �a�t*ZH$w����A�GY`� �����pK�Q � ���2� =h š<4@`ʀ+)@sć��@�� n`���$�w�U!!?BޢZAa[�q?Z�PZ���x���08��a)f�NՄ@kT�f�5*A3q�R@8�Q ��� m`�A)tjh�y� �8` ��X T@ ����R8�8x�T���R@�XU��`@D�jR@ H��`T��'���h���ĕC��H��j� qE�Lx�� ���� ��)�R 0G+l@`'>@ ,���Jd0���f�� ��j@�B�Bk�@��!� n%@d��89�(أD�D ��`�Ir$�!P)�T#�7��Op�� (B�00 fC�D�C�'��� �Bd�{ ��W`� N$oR@���F%h&�D/���D�N�h`T@)��@�lPr�!*2�.P�B�=��` �w@ ]�0Ћ���`0fØp-�?(���upJۡ�2!)�QH�9� @'���� ��pI�`�A@"AAb˦#�70����H ��R� p0��U4ph��;�T1(F�)@���.`������@�>� )�m�4�F(c�Ft���Oq�`@�@8�x9��q������Aq��R5 F�J* �@0� �Pb Q�u ��� �y��ԃ�DpX@=������>�/T ������/��1'Y ��NfpPHĂ� �֨�DlKv)� <����@rveA����SN��4�y�8�m~�{d1��ю�����ĈL�Z�����"B�pJ���� Ȁ���F" � kEP �B���@��J(BK���@ψhƀ֨�T���€yp�� J��<��`� �T �> ,��!P�qh ��m2D�6� �p ��d�K)@f�P �� x ��Ki( e4O) -C<6����!B���( ! �82��T���+NH ���������y� C � &F���� �6�a#�R�H H ����T�!���"0'�`J46f��b >@ ���9�@� ��0*�`��ga!h�J�LZ#hZc^�40���Cp!K� ��@tC� �i�J!>t�x��`H#�����x?��2@ VCJ�tJ� R@+�k�`�R��Z��@1�@�T@8k�,�@J �SvbL��1�r�Z C^��T�#x���&T�O�$�a aJpP'�Ȅ@�y��0�HC:0`���ِ� s��p�8��� � ��F0+�b)�i- ���"��R��&@Z��%�I�ưV���I�NI��c H�c� c@��1 ���'q�LACmp�� �F%h&Z�4 P c�D����6�S�dh�M� �;�5*A3�e�T�Q���R1I�n�5*A3m ��8P�@N�<XE)�� k �!00 �*DF �aG���`g��GF)�#�B�>�6���5*A3�@"yd %؂ ���%�xC@"��B1�X�֜H�"��P�֍N��4Rd hb��R@�)��pm� � ����v�"�_�8+r?�H@�/h� `<�$��R�'���@ FP���@������R@2��"]��x�����Pt ȁ֨�DkT�f*��B���l9z�@ ��G1>����229 �'�@PH� ��p0� �b� 12���H�Ɇ!� �>@����`�H�`0 ��  "4�O�h���'J�F��ՐN�!�!��Hd�p$�S�I�C� ��F���e�@�]r�I�5*A3�B@2Hd*� !���r�&CP��J=�P�H Aؑ�lq`Б#H��@o�Y*��} p)P �Ft�z �}�xd�r�)�0$0CH�;!�`�G5& �U��`���R@� 7�`��~ Cn �a���s�������:u�6�-9O� COeC�ւ#R��6���3� :`p�t����`jA�A $�c���`��֑� �ݠh� �a�� p�F\7qV�cE�`Cp��!PB2ԓR� 6��Q�X��p��V�%P�HD8H��7 I�����@�>р� ���� �d�6FI����$Y MI�q$��!x ��!� `BL� :�$� ����x�Р؁��PB�@�F�8@E1������T��I�e3'��@h��@,'i��W�IC����� �6�a#���EkT�f+�-�Nr>:B ��1H @`>�i-4��(Q AL+A�Z�4�V���' %C�!P�`؃P 4�5*A3A�*PP�H'�Lrr��yk�gDI~e*d��H��`��� F� @ v�����,@� �:D �*�1PI#0&K.V� �-\��3��@ �+��� �` �d[� ��ڠps��< C���y�"�!Xq�>���IP P�hAk̋���F%h��8��>⍨Z�4 H � ,9EdB=�ge �X�KB��r�zFsL^���L��$�$���т:�!�ZrK6�'����)�p��$ ` � ����P�5�M�7��a#S��0@c��V`7��Ȁ @+pF�� � �Ft�8E4���%@o]RmeEC� 6��,�5(��� � *�֨�d�P*$m�}�E� ���@=�l�9���$Q �� � ' �6�o��`l �`6O g��Kb���`��l����>�<���O`���)#h��P9P ���!A�Y�jh)����s�� ni@�R��5*A3����h�J�L�@LB1�y< ��&)$���$2�?hP �AP ��`��P��0Ћ$c$pJ��0B\X6`!� P* D(�1�Ę�o'�@�� Td� -A� Z�4��?�0����AJ�H\�%�o���Q ��`P� � ��M�0O�(Z�`(ڃMP�U�(}�`�@> ;i�8ЩILz��X����a&� FK��FV�r0"��SZ�Z)��`(~AA�2X�w� X�Q ��͔֨�"Y/�A p�4) �IQ�@4��Ԥ�X�m�t��� D@ah(Ít�� "�!l�6�&[ dx�VA��C:�3} � r�x\ �!lQ � ��8��i`6���t�1`F�Z� �`L�y0Ë �4h@ �S�:�Z� )�@�@���H�b6 ��"l�������!T�R�z�dH�L@ �A p"� ��T3�Gf� ���}��r� �s�\���� ��~Q����NPP�h:Ű���?0܄0�ux���e `�A*����vrF� x�d `?h䊘��*�JX!Ȃ��@�����L�/�Q�ƈH�$hZ�4�Q � �O`G ���>kl ���R 8�,��QOJ'�A_D C�JA�pF��U+�Q � 2p�N���JXA�v@kT�f�5*A3� z�h ����@�V�=$"k�ɏ�� � \J��$�DSh�(��'A�QGax9�� aO~�� �"n� E����d�s�L` ��P��O��� �d���w�����H�5�G��Cl�� F ?M��_2�ā `�!%� �&�����@��� 1(�A�t��1Р�`0��S� ����iPe�4�O��R @��[ڀ֨�ĜPC8���� 92<�Q ��N!�M�(��4H" � �C�+�!P@��@p��P�`t��BG@��G&JE�a��8���w���7��"�)�h%����p@0^� �Ӡ� ��zR�I�{�G`�23I����Q�!�+������:���� ��SЀ��@kT�f�5*A3�X % x .B�3> ڠG��%�y��@J@P��GG0�F%h�_����D�F%h&C T�8@A�֨��A� c�"0�`6�Jx $�b�Z�4�0� �?h�C�T�0PP�֨��BT��F%h&Z�4 x � >� ��D) PL�HiV:ȗ��l0R���6��y� & ������0�6�<���H��b �8x~��@�R;HC?���0��R`N�' � @�&%b�H�@`$0�ZauC&؃M`� �bX+D�s�C�T�K�5*A3"�9,�6� ��.a/Z�4�Q ��h<�6B)�U��E@P �7P������R�~�5��Z@@@)�J�Lnh�NQ �1/�m��z���@\���KH�8@)�"LI2���%� C� �6�@SbC���!�x@#l�R�2� �6O����c���p oNP ��P F�<�a0Ȃ\ܔ @,�hV��p�NY �T � $b�C� ��F�� x��P [4B@��P <�0@)q=aP��� J�b$A�D�a���0p p> �v��z§�'���U�6�9P�`@�B��\6a|�J�$O�A+͉�b���� x*A[0@&�eD� HŁ���G�(����kEЏp�|�=0��l �!)�#�fTr2�޸��Q\�N��lD��8 !�ZP.� Q���"�A0�R+F�R� �E��)���J@.( F��J8��7�k�2�z� ��9&�@�m@kT�f"$� P�S)T�"�(g%S�Q �W@� �����DEqP��d�L�J�d`�y��J�t>�Q1��B�pZ�E�(8`4FgCc�)hP��r��H��G9�[ (�( 0�0@����� ��� F�0�� h�J�L���R�/J�D�bs����� ���� ����~ECy(�G [�Z �8diT� +p��� V��#�…:�`�P A �51k�G`����Dv){�]R@�2�G�@�*�K�X�@���� P���  JA xY�-�a0,�<`�I=�Ja0dF0;A�H�e*A�pc�A@�����/,�R%�Ρ �;�#��Fh��S J��`g#M���A��Wc�h�� � J@)�@+j��Pl�U�F%h&@ �;(2A T E1+i�J�L�@��y� �A)�I�� <1�A!S '2��uh�<81��?��T+9�l0�`T��JAE���|�� ���l�2\.ec���G�2W���� �6�a#��AkT�f�c�hZ�4�Q ����RPh�J�L��)���@���֨�dA6 �h��veB1 ��`D����ͬ#���b��pE �C�l0��xb�`̆0 �F����T���A�Z��04��ih��|�CT@)�5*A3��0���JP ��Y� Z�4dh�s����:�DZK� ip)�(\C)�ޣW≔�AOP,蕔p��q� �(� ��9)�R��W�!�Wb� �B~e :�X��0& V��!Π#�f����ƼX h��'x#8`� ��Cr`� kH#a0R�^�rc8��:������@"<OH�I���R ����+�v ţ���h9�$ ʞ`��:�D�/, @o��h��X��"�5��p���X���b� P��0'�� l@��\l�y� A �!�Y2!��Q��(�B�0J��s占�D�S� \Qx�z&�4Q�ZC�P 8.�l�_�>�����0 ��y &�����ʂ �� ZK��R��X ����b��8�j"7t "�9� ��"L2�,�IPP�(|�H�h�J�L�`��+��z �#� p@jT @F5C,�a *p���jX;$K��(�"���0 F?Q��dP��3Ƅ��� C`-� ����� 7a0P�D0 ����8@sL^��,�"`�p�! � @�i�� `!R@;��@"|�!��88��`�C�3�6(�CX�@& F P�`P�ő�ā@P�@�,�%8#4Kg��8 *@TP���/x�h�Q9:�ztjB��gIkT�fŠa�_-= �`��RT…@i-Z����R{@[��� QGe�D`Yi�*F���@����@ !m%�¥ ���~�E Z�4�1/������)�+�(�@-A�#Cz���� CyH��X�CP ��6�5*A3�]�$ɘ`$<`��H�H,DZ����B����<(��7�li~ (aO��Q�w � ��?��lY .���ْ�8#G��)���m�a8Nt0�`�8(�-��U��*$mp�� ZQ ��0)� lA�5R A-)��֨�DkT�f�5*A3����h�J�L%�8�x!J@)Ѐ9m^��(>C,��R �ɄT ��|m�% ��y� �J�/�)����b�� ���I��R h =!��M@R��IV�_H� �A@����L����|�LP�`\�l{��d�%����RJ��C ` � @�j� ��`�>p� �J(*�l- :��Z� "�R � ."�@�" R�4�)�* G#��9 f���'���� H�|�(��$ XV)��/��0��@<�p`B)�5*A31'�P Ȏ;a�˯ .� ���+‰s ��lj�BH�L�(����%�ݸ$ С:Cpd� h ��֨�TOJ'�5*A3�R� T�Q ���P �7P�@0�>Q!Ai( �@�@pLĉ#�`��E � nBLr ~Er@H"I��$�Ę� @:Ap�F�#�@�(ţ`~`���Ȁp�e:���l�����H ����d0��q t/?�V,��N��0��!P� ^b�*��R�A^� Dpd@��ऀ��p�2�Ab^B�`k�!x ��b����J%8"��Dg�^��P��@�RPK�"�!)@d a$ �;�@�� ��BR ����é�P,S��1;bL�˵ڸ���P����u�J����ģP�a�i��������ev��ȄRPJ��Р�o�HĄ������yJA=)�Ѓz�=T�E+�$���=� �?�]� ��'2 ������ I� )8�d�y&�!X>� _���y)Р9�Km`�ƾQ" ���Pnč�*t* �A4�)�`L��/oD D }p��S��:���N1'�P��h�@�5*A3��~� A � �@����/i�0��� q��!x��֘k �i�p @�R�K�!P�@J�:E"���s�@�R���0�5�@#F�oъ�`�#�"�E�� �Ch�J�L��ph�4(XQ��`�6�%�F%h&C� �� �A��m@kT�f2�h��P �Q ��h<��@P:� CkT�f�e����`0���E��`0�I{ �(QK� 8D��M�@&"0�B,�NQ �8�N�Q1� �2�� ��j�ni�`����9�6�A���c��F��`�I�}R�!� ���JTd���8��|e �)��|F�4 R@��+���@J��� �R�CR�9��n`( �*����]$B�HP!|@0RG��"`2'�t���i `���������1L(�2&��J�E`^Ȏ`hR��R����>TAPc'0��10� �L ��*�8H ������ �0 �@H�!�& �������!�0C���� A��J��*�������g���3��0� V�@ `����!�P F H\ ;�ǐ���P���С\�!��@y��! ��G�o �o �d: c)�� �6�0 ��c[&J�$��Q(�֨�DkT�fIA)}2����_x@ 0��9����xQ<�0H o�8�'8(s�֨ʹb`V)��F%h&��MH��� �o� �!0�@P ���I��:*kL�0��   䆳� A��RB0@���B h(O�K����$FwX�OR��h �NeG�$E�4��NY ��&�p;� �a���(�@4��bZ���\��@~X�&Q��d>%��@�;�����х�A~ D���d`@C0��#��}T�9[�i%�`#e V`N,!���:�1��1`�S�����` 4̣0T�KY�r�C��Kc)`��RJ�c�R_� ��SRJ4�5*A3�@���!��@%����h�J�L��ph`��$!�����Ah �0'R�O�� �*KD)� >h5X�(�R� 9�T�� �C�yJAA�'����5 �?) �@��ZD��E��ՠ��d(de�{4�-�^ � �hY%�� h�J�L�@a �`��FY0/s�+4�)3�#:�D@#��a@�߀P�#h)��hC�;�`���@1��y����<�l�� 8I ��@���P� �(C�� @�5 mP�æ������y� Ș�%l�'>��� }% F dA1hLC% � 0��p0�CHS���JA��(�0��`���F� ԓR� ��!h���N���͔֨h�Q�`����P��^���bp�!(�+��d�G)�<*A)(��Ak��% ����p(�p~ ��J��a��$P��3 ��.�� ���od?����a�&��z0伪H�`��z���A 0)�"|��Q1 ��� ��~���K>����O�w<@& p��}8 ��!�����6>�c� �|��锧OB���v#��)X� �C�'��H����.�4h e@�� X�=��e!:(���7�(+�L�0R��0w੨��8aȴ�\V#=����'������v�����`��q d� �m����� t����� �hF��;c�A}h��lh,@A ��[��8M�_��u�� ��� @�@���E+���B@X$T��(^���,���@kT�f�`d��}� � ���E,R� X�K(�  D{6���QY�� ���К1E Wl*�+ �A 0|����� �@)� |@ ����H�+�����=0RF`L.P�@q̭l�t�B�p)���d�> �@)`�4FP2��u�4 >��NP��8h��� x�t�$� hoJd�@Py(��p���T paL�@ -T���E�@>�7��)��q���J< .@&: �� }��_�U���o)P�����*� +���*JE�.���n`2!��( ET�ˑ�����`�L? ��W�*��!��� `�@`�R@�@@�A�� /)�/ @�1:�<>)�hU h�y�� �N�� 0J�%�Ld�쁱Q$IT렕� �@)�8@�x���@9%Nh�R���r)�̥�2�#���>wA 4�0�V!h�P8~ ����0@�� ���U��;T����H�6�]��)@�@`���j�@� 3A#�`*�L�%���Ls)�L @pT Xa�O�A%@���!� Ȅ�t�SJ���� =� �#s�)L@�<���v�`YY�@���}}��LC�y�A)-�3ql��1���~D��Q�� Ӑ�B|�0�>�P1X� Y \"�!�QA �@l���� v�� TD@�R���nb��p9��3R)� @ ;X�p�`Y�+�V�$�h����jA x��죓 3�Q���@����wY �2{P�Aj����GP)�x� X� � �8߱<<*F�T�C<��W�����)� ��r)�-E @���#�<��C�� ���F�� � @�om��1-X H���t$>A�, 0 ��q�93 H��{����@_�C��al�@33A�|a,�@�� )����*A@uH��G� pD���,Д��ep�����*F;P��h9\�A P$/��7�> pWE8@�D#���E ��=h ���fv@�����wD @��Q��L^ �T��(3�� @�fD  ΐ,,� "A P��O��Lh�G��L@ ����2A � '���j��4��G�N t,l%VR!��b���� AŨ��"���`h�D��E�������s��h9�dgr& � ʈ@r0�L#��=�D X HEg�e�``tH��@�T (Z4�H8@��N�>�}��0�� ��e*��G���#@p9R��`Y!R���)�0r�1h ����L�l ��G'�� HS躨��3�� �*�+���� �)� @�?S\�/� ؂#��@S���� �� `��+͡�Aq@�@@P1R����@68 JD=]):��7|% `)@�)� � �����p�CH �,X��9#�@�v²sk��{R���09�$@�<���v�*m� a#�� M@ \�$�T�� �c�N(���C p��C �b�! ��T�S At�`W&�0ih�J�L� ���`A � �'� @�=����%Ѓ��K�T�+L����`S������4�51,ŰV�&�1Q�}���@�/��{$�~�_:���֨�d6�O�-��֨�d����*e���$ �F%h&�a pCCCEz6�2�/��C`�����Ke�����~���04T��) �(C�} Ƙ�ς�$��i6� h Aq��� 2��S�O��y� 6O)0/A&�Z�4��(ZB1(T ( �"�P ��� Jsz �D��b- ��� ���Mp�@#�5*A3� J�Q ��(�Z�4S (�@@ $I8� ��� � G�`���w0C~3 �F%h&@0 �p�F,���!R c ��6��Q ����R ���\tJ�����R4��L�P 8�J(�` @Z�4�!�A�9�q��0Pڀ֨�d��K)0�!q I�����`) ��W�(�L��T�ų���_���J���HX�)P���d`S�=EȐ�A� C@E�#$�!H�a���FmI�@i>��84��А-#�V-�)$�TD�`6Ѐ�$�D8;�9��DF��@��@� aR@ � ��*ȫ_8����!��@��R+22�����o��zP��80 ���`0�"����`6dAJX�L�� ::U��U��MSN�sU���$:W�0� 3�B �'0)2`K@th: H %���[�*N����K* �`:�O )��H���:�"�"�1'�0� �D˄,�`*��(�k@�"n��V��h�R@kT�f� �alE@�BPp��o@" �P�)�q�!�x@#l�R�2ڃ2�K�jrE��f Ư(�!+U�|���`>�:�C� �6P�������2�c� Dr F ��+��S�5!J���RR#@)����p#PC��� ��-���漼�Z����B0`q��S `�P ��P l X!,��Z��*� aF��� 9"�X4[@ |�PQ�0!�p@p��8H �IA�rÉ@1�H ��GC�c���Pi�K5����H(��!� a��.�x�8@S��?�<���� �� �Y 8�-{ �F%h��A��)���,Α5�@C���a� ^4�5*A35�}%��D�C1#�D��s>6Λ'AE��C�"��!@\���T1�AM� �'�B� P:�0�m�T� ���C�3�68��r�RP z���D���P �#pg�@� ��!�)+�@�f*^�X#-�;`"��4���`L��,�F%h&a ���l�̣ܠ ���J��ZR D�Z� \���p�G�If� �+N�$0Dr� )�@y@��"�c⤃t ��f���C� [4�Ρ-:@?��[���T@?��[� � <��p0��\)QI��xT 0H J��BPD��)�@tQ�RJ�)@TQ��F �� ��p ��_��5�W�0��I ��e*\D�҃�(1:�:`I,. �ͣ\����z��!��8��������hP h�J�L�w���@-� ~�)�"@��D\��l6�������r�P@0�"nHX���T� n0v7�2p�c�5*A3�� �6( b  XK�� �jR���G)8�@Zc^�40�B)�Օ�B 0"�p%��<�� ���0xQc�PJ�Z� ���9�ȋ�?�J H��TM�`5�f&���9�>��" òB@��;�VI( {�/� ��b � "��03B ���Z�4�!�<�@4C� Ai( �#� EX0%`c��� ���)` |>U�0=�E��wc��(��N@)�C0 �*4�4�&T �`�@D ��Z`}����11?��T�?�p� 7�6*�0'^�Q � � n@ �@�Ȅ�PZ� ��7���d3mca�S3kj�C�1bJX� L�2a!�h̀NA�a&��� �"$ R�uR 0� ���h�J�L�5 m�80����RP-|DYH�VP \�! ��`m JA�_J ��� �2�K��$�8���8��1ҩy";�}��D����^D�%�[ ��0��@Dn���4Gb4�$�� ��jT�rxf&�@mPd�] $|� +p�C(A?�@ *���h(�@1�߰�`d��mc0���R� ��E4�6X�����D�K@���hP���.�Fp0^!v�����F�R�J � ��A�x�|�� � �A��-�g(�� �S&�5*A3��X �$!,+ғ5���G�NB"R��)�֘ka6O)�5�@3ՓR� �Q �BEƾ��dpnwF�+S!RC�0 �P ��"cY�œ6�d�G4m@k̋���G%|��)J4�@%�@�)HD H *b2B�R�L�I)��� Ɍ�`āJ((m�)��X �@T �JZ��D���Hڠ���"h�J�L�����5J��}`��TF�&�6�  0]D)𚐡��Y T�K�T� 'p2m � H_l�M�� 4(v�P�t�N��o ���!,��0�2z��D��"�Aq����h�J�L�`(j`؁ p �� g�Rh�2� )�,x!r��b\��D�F` AJ�!6�҄M�96�f�l�`h�� ҁD`p"�� �0�w@T@�̸B�� ]���.sj  �q�@�� ����q����C0(BR�[A�`�[@T��-� ��3�9b&���08��7�Ϩ[ ��*P�P.�D�XV)��@���v�BD�����\�3�@@�ZV< !�)�(ac8��Z����>����i 9� 0��'2�` ��&���c���X ���d���09�1��4��bBT�(�!P����N)���l@pID�PN�ƼX h`0r_ �c$���"F: 0,���Ó������h���~䦳�6�Ab���q��p` @�!�2� `y0��= �0�D�̑I� J@)��hP A��Xa����eR#�F0��0ZL���I(�O���&H����Q�fdC+j�y� �6�KZq5j�R`0"Ocpم5�����k|���� x�,B��ƃ����h;�`x٨�< ����5��qI �Em��Ah�'~ �0 <�!���C�T (�@+� ��.�/lN���Ȱ�2�`B�F�� A-)��4Ap �= �6 �p#'1��.����G ��� �H �?� C ��&؍��D<��A �*� ��?�;�@E�2G���R h�J�L�@"p��!�ڠ"���6��@,���N�D,�����!����]��F+��Qp��_��oD#}�7:����Qrh�m� |v�`H���`Կ��P"2�:��1,� +�(+xP �Ч$��y�(�` @@P���1)T �B��$‘+7 r"�����)0� HXA0'���A�#�h)�(V#���F%h&��9���(����&#�� �`�cA��1J<� �x@���P��B0�E� �A�!�n< ��( X`�@ )j� @��h�j@8��O ��<���� �Az��>�ء��uO�!8��ThC@"���XqP��22 8+4��^(� ��e��q� �A38�l��0 tJ��y�� ���Zc^�E��S��0��� ��H��M^ �(�#�e�8��e�Jy�����4�#�{���l vb��l��%lh0�N���e|� J��G%�p>���@��<��b��*��`fD 0 ����P�C:��+T�B�� �����DG���g(m`HAN�d��D8��& �Q ��9�Q�A4���z�#(,�"� ���T�@��:�����T�d�(,����1%�D:t�?(�C.6� ��a:���f0�@ ������� ؁X�+8�*��0( ��e�`|�(��B��� ����xWY@o���� �� �ƼX h`HD)���+�(as_O�����@� ��$,Dv �"���6�fܔ�s�����AN �`d���㤘8�**U�� �~@�$&���c (��; �1�@c�$��;�G� ���`@� �K F���-R�70�� ��I& `N�&C� H8H�@&�e0 `ѺU<� � �' �Bf$���Nj� ��`� 9� !�nr���4�%�P4��� x �I�q96O)#��X1�@H��?����B,���a`34F@X�l?����1;�,@�8 �8�m�@o� J�Q � T�>�h�E�5*A3 �J�����<6���-���C�H8@`��`0�LSP1��p�u `X�"��"A&�)�hmP��wZ@ š�4�P��F%h&C`y 2a~�C�\s��?m�4�F(.C�%q�4  � $bE���� >���Lm ��8�*�$���� �l�b<�s�U@@��@2У6X�qc�Ǎal�T�@�!C�y���! �Q :E"T��aN�QԓR� �A@F�`=�Z�4�!`�*`�`�R���E{41)\:9^ �0;�Τ� >2�>�f� ?`���)�I�m�5>�7��ƼX hPJ'��F%h���J���F%h&Z�4�!�ڠ"�����dZ�<���Q � �v� �8($B�AH�!x �!�A~��ϣ 6O)H�@�C� ��F�� V)#�$�&a0&���aU�Dt�J�`�;A��<�(4���$�P���I��@��PF�XG�a�R@t�QI����ǡ�a?�)U*Jx`�nj��i7���xm�����~� (a��_��@���~i��F ���`�@t P(�@,�>vT;�������� �5*A3�;���$��G�,� A�xY�� ;` �7P ��Gh0�� P�`Ԋ� �Da( ��(��:� �a�t*ZH$w���ɁaPe�}, ��"hC0IH� "�>�Z�4 se �z�@�Cyh �� �WR��)?ҁ��H%�ITBB~� �E)������~�>+�(� ��f�t�4��D� | ��Al ��C+�R`V�TM8�F%h&Z�4�*D�s���� ���@��@��6�����@�J�!���@��́ �K(��,���H��� t�U�9R ț�{��E�I%  �QQ�b����~W0 <,@P5`���"�&<�PY ��@���� H*2�`0�V ���N|� X0����`6rC7�i�0����/�>�1�����I+� �)C�J���*0��qr���QN,B �{�ȓH��l��0I��0* ���`$���� �!9�z EH�l�hx���S�lp��� l���$� A (v�֨�Ĝ���ЩR � ( �\ T �A)P&����`�� � :� ԇ�7�B�=��` �w@ ]�0Ћ���-0�(�f#{��1Ƅsh�A@0 ��S�% � I��Br�Q$H@p: `��t�"���!8��e���� � ��D��� �MGHn`h!�>6�#��`�'� 9�h�&�ځw46�bP�$ R�l)]�h<�6B)p�A�%q5��'�X!�C� ��F��@�%q�4 ��Dc��S��0P1�1^��p�$A����,EaP��T �Q�� �lL-�1�CTh]�&�*8E�@?i� +P6�>�>)����� UB)�D�E8��Y ���l*�N�B@0*sR���)4��ZBKh��/Ū�⃓�� ���5*A3�ے] �d"�����7S���e�!���D��ln 9�� Q�@�)��fd�<� B�6?�=���tC ����օ�ABF;"J��;� #2a"h�7"F����)�@@.R�6 ^B",�`0 ���]@)\"կ�Dl�Hd%�%`��]�gD4c@kT�f*�h�a�<8�V����H�!�@�HF���M�G-��ߤS����A"r�jݧ���0J@S  $Bz�M��Á1m�"2 ��y�`HD6 3^ H2#��R��T�K(\JCi(C�yJ�h��)4?@< ����@ i�� ��(������&�A%0�v�'$�T Zq��R`T�<��!`� h�J�L�@���J�2�K�iR�H H ����T�!���"�z�6 � ��?�R ������؂�*��dN�|}�' � 0��YX�AkT�f�5��Z@C h��:����A70�������A@w���@#� ��F�# �?�~ �(d�@���D� `$��VP� ��) ��"�b0�5��p�YH�(�``蔝}g ��������yl w�+��;� �Z C^��T�#x���&T�O�$�a aJpP'�Ȅ@�y��0�HC:0`���ِ�dcL`2���?YB��oh�B+�N�֢����؋*���!Ł0@ M���JH��a�xȌ"�2��9���>�h��@|#u5���f}�*�� @�� �/p�TP ��U ��d�a0��0t*l��h��x���p4��!��"@kT�f�5*A3��16Qn@\�*j:�K�6���Z�4 XV�A%�_8�A) C�D�Z�4�!��@y��a� ���U�N0 ��S�,�@d�0p��� v6O)PZqd�9"-��}�m�AkT�f2)�D��@ J �@D��J�;���D��b"�b�9��E�����Z!i"$���,��������6�K�m�@� ��H���k�m0�U��ư�����Y���EAd�1 ��M�Q �2������8�B �� P Cp���*�7�^��\ (@��!Z��</�}��S ��$9����h�J�L%�@�_#S@1�-G��%��f' -�Q��`0b��L����Y8���1�xN����AH�`AŐbdPU32 8!��� C��|�dC#�4����`��A4D h�� �,WO����!�C CȠ%�H@�F�6H�@���J��h��/�� �K�< ��EZ�4�/ �D@q���/�K��!�>@p$�6Б�@.��d �6P ��g C�ɂ!h;�P��! :r)�� A�8٠�.�JAۈ�Ao��Z�l�@.:��df z'$��H�Ƅ�� ��B��A�R �A�F�N|��� �!$��!`�p��`���8!d`�AU ���"���?rs�o����@������}� 7����R�P'��A�@@�Z���r��;i'gDۀ�O���F����X����,( �/�(���"R"9�A�Q�ƈH�$h��1�� �D T<`@B���`����h�J�L��8|;b>�6�Y�` ��8��b��,��QOJ'�A_D C�JA�pF��U+�Q � 2p�N���JXA�v@kT�f�5*A3� z�h ����@�V�=$"k�ɏ�� � \J��$�DSh�(��'A�QGax9�� aO~�� �"n� E����d�s�L` ��P� �y8q��A#��* 6�>��$rc��'a`"R��lM)�~��|���OSp#����"q �dHIs� ��"@��!P.A) C��aP~/l 4(� ��v��1�gBY( �S0��A"�6�5*A31'�H��8) ^`�l�@7�D�hP &���d�֨�D���&z�n�������� pJ 8 @�(@0:�@�# J�#���0f�Z�I�qJ�;xl� ���VH��P��B�����Ey� /nH�i�PVD=)�$`�=�#��� �39 @�b��$�����(��W�l��@�HO�G�T m�+���Z�%hE�A-��wы�����&���&�Z�4�Q ����R�(�kp��t����%8ʌ�(�̣<@R��$=:�1�5*A3����$��~���˹��Q ���� PP8�5*A3�hr��L$�ͣ^ɩ&�֨�$ ��8�����0 T�5*A35ǁU��Q ��֨��Dd��p Q S&R���@)�D� ̆@.h�0� *`h���6�)0'�� 6 �#�29�C �_�$����R�P���(�#���� x���Cp91' '"sjN@�&%b0o"䆔����H`���� �L���h ŰV�� k�耐� ;P.�֨�d���2�����h�J�L�F%h&C� ��F�� V)#�$�&a.r ��pn� ؜���� ��AFr�`~���� �7P������R�~��~�svΣ�h�y��PʵR)S�ڠS���Bk̋���@�@�^,�6���!A ��S��Li�gz x�|� �6Д��m`�����-����8���`�<��>�!@V�Á�9A5��;@@@1 s��� rqS  �% 8��`Ł`-@�4��S�:����(�h<�6B)^��/��I~�(��-�� CT(�R ��8��0� @}�%P1�Nr�f�s����9]b1DaO�?D�� ��1��_�R����/�N@�"| p����ON�!P��?ls�$�� ���l:���H H�%2�V���h<�6B)p��/��I�E�<m����U , VV:����{�@?� O�%��HG�1����Nt�Q��D{�?Gp:�B��0�kAmPT�� [��t(P��EU�1AmP�D���(A�p��R�#V)`�"Z�T@ �P% ��J%����5S T=��`�@��6�5*A3h( Ʃ*Z�D����)��(��+���ZRerHk��8��U 2A&X%�2�ʼhZ�b(��@1�`:%��h��+���F� ! � �iQb ���Q�}` � �A��Ai( `�U"a�'�tn)` ,eDJ��" A ��! �h)�8|��/��Q( �@!hZ�4ӫ<���R Ѧ�\�"��|�)���!�ieʰ�6��!�DS�T���aVWZK���< ���#�-i-|2�4* Y�8`E�+K@��Y�B`0r�(� \���5�#0_A�U"��v���G�*����g���"z���@`�K �P�`�RX�q�+�h��8�6 A���A)(/+<�� 恥��@�!��� `N�1V �� 3��� *Fz�.SR�� ��%�~a)��*�����A����C@#���)%�l0���& �� ޠGԫ1i�T@��"��PJ�@�ZQ�z`k���5*A3�0�A � J�b(�YIkT�f2�6�m JM2 e@<1�A!S '2��uh�<81��?��T+9�l0�`T��JAE���|�� ���l�2\.ec���G�2W���� �6�a#������8@���֨�:����F%h&Z�4�!P��"����S8 �#`Ł J�Q ��:�l@ F�ҕ)�ʄb@����9d+l��YG����$��"�8��`���Ă�� %`���7��(-{�>��:`�ah8����F�����R@kT�f'a~A��J���F%h&�� � 8�u����4���RTQ��R�!�G��)ԃ��X �+)2���&j�1�7tI1����X�Bu��� X�!8�B��P����,� 50���:[O:-�/ ��(A+� :|�|%V+�W��_ %jE�hA`���,@}+T��gP����AT� Zc^�4����z�� �!9�N�5$��0)�?@�`�1�R�aiT�K ������I_Q(�@ Km�� `��Q<����#�K �� `(AY��[@�Ba p��/�Kr�u��u�A���bY �L�p�E.�b�"*�!H�@��o��T�K�.�@r�9�6E(��U��,���(x��c~!H�$$�L`0��\y#h$���@��u^'b��@�� � 0y� ��������R�p`� ��'| �<��(��yP`g��`�� ;���,�� ����) ��^@p,i�)��D �50�RM�NA8�y;C�]�i@&�% 8 * �O)�Q � L|E�Z�sdR�H-�J�Ȩf��! D81\ +b�di0RE@Qd�pB�&���'ʲ�l�0q��В���b���5v"�;�& J�F��28h�)�+ԡP��Dt�� F��$�_j�*�ID',�"`�p�! � @�i�� `!R@;��@"|�!��88��`�C�3�6(�CX�@& F P������H+�`P�ő�ā@P�@�,�%8#4Kg��8 *@TP���/x�h�Q9:�ztjB��gIkT�fŠa�_-= �`�B��������2�� � �Z��% ($6�����0�����ʠ1�����~i�N��e:�iBRq�pl4B%H���:0�q$�%@�!!��/��AkT�f�5��Z@Z�4 0e�`@��% ��bd@/?�3�d()@kyJ0��F%h&@�+�$�������Hk�r�X@�8>@y�2���-��o�@"H<%�$j�W % ��(������`6����f�l�@@\R �i+�Tx8�2 r��Z�Q0 F��)���R����ђ���� �%;�� R( DCd�� �!�@�"H~�f~��9I�J ��w#�989'/�`t�`���FŽ3����J�� @$P�H�pZ,�� x���Y�@�m B80������K� dǝ�����twf��)u<+G��_A\�7#f)�W�j�BH�L�(����%�ݸ$ С:Cpd� h ��֨�TOJ'�5*A3�R� T�Q ���P �7P�@0�>Q!Ai( �@�@pLĉ#�`��E � nBLr ~Er@H"I��$�Ę� @:Ap�F�#�@�(ţ`~`��H< %F� [*�Q ��]fq`0 �� ����1�A)0�@�� � J�! �a�zR 8 ���{�|iA�J)�?���D����`W~�!����!�=) �@E�5H h�l�Ib�O)ȗ���C`^J4X� D�0�OC�7��Щ`0dB��"��1��%����y����uv�bNB% �J�!��"@kT�f"�R���6��_�a0�� *�$C�L�1/��~�@��@+�C�؁�P t�Dh<1�!���-�a�j�F��ߢK�&�F@E�� �40/����� A)��+hP �� (.�8m�Kh�J�L�@����!Pڀ֨�d���8e��Ԥ5*A3m�T @>A �bh�J�L� �?0 A8C��c �#���L�̳zF��=�ge����X��H)�+a�r��%2H��8� W�e)$� =�RY \)�5�`�(  �C�C� ā��C؏��!�d: c)�� �6�� IA.�1Z�4�*���@��AXul�DI�"�dr < E����h�J�L� )(���O��Qs�� ���"2���/ ��)`�-�"�eN����V �*��֨ͤ� ��<�@� ���0����!�Y=�Q8@Ge��@�T��k@�"��@��l�C�*�ԅ�`)��ʓ�R���<�����S��@D�`0C��S�8I�+́s���H���?�@&�)�P*f� U�j��NY ��&�p;� �a���(�@4��bZ���\��@~X�&Q�BJ T���9DBU���d>%��@�;�����х�A~ D���d`@C0��#��}T�9[�i%�`#e V`N,!���:�1��1`�S�����` 4̣0T�KY�r�C��K0� b,��QJ@ p \�p�wuJJ@)��F%h&Z^~H ӓz�� �'s1Р�Z�4�Q ����N 4�$����� �m�`��D � VA^e�(�0�'����Ifd)P��x�LPJ�!�<���ՓR� P¿���R �a �-�?�¢X r�jPN�2�2�=���/���Q��K��F%h&@���P0XY�,��9�є@�C"&�:��ca;@��8�1X�a0ƀ�p�`�|�!� �� ��S��D�2J�/o�qA `j5�_U��TL�1)�"��y�$�Y1�B�)�e����A2�@�"�6� * b���=�%��� zY��0��~��) �_���tVi�q� ��T�#�(: HC�8�5��Q �I�?��܄! ��'(@P�: p+��NM2�dV�� ch���Si( *h� ��@�2��p���"�A'#�`p�i0R���F%h&��v��� ;�X���(�0����UL@�0�;03=� C�-`�T.��=v�*��֨�d0�AO� 2�(8Z�4 �� C�HDE0@&�a�9���8z�l$,Z�4�Q ���I�к&��H��� 7q11& ������� ��_x��=_��� 2�T�.s��6�*` :� �6�� `Eq�R$ �Ȍ`���/e���$ �$ m��(�Q �I�$G��A�J�`��P F���0�AVq�� ��5 �U�E룭��"`���7 ��|��/fC�x�����1�� ��|G��11e�@���l )! �I�_��?pKP �l!�4��-�$� w��/�$��s{f��YP ��P�b�D��2����`)��@�'&Jn��<3�`h�����{�BvG�'p����N A�����p�pHD��F%h�@c��u�+�4��>��� , %�Bi¦��d�l��B��0�``E{�� �(�G%(�p~� hM���d���P.e��C�øB �? !�]� сXb)��ԗA� �2 ��.�� ��+�`L�7��BJ���S-��B� � +�� ���`R@ �c@Ϋz�� ��Z����(�'��`�3�'�� L�'t�p�:@�PK+��R�����!A��;�J�cZ�|��Nb��f=!��1F�� �|��pY�G8� ��|L@@z� �{�d��އ#|) ��'�Df����E���_�k;)`�]�$2_@ |�Odz���N�� �/����縌a)@�0���J<*�5OpxT �� � ���!RM)"Дdȧ��K7�|��?�8���u��|�ϔ�>�'h8 ���O��>���,�s�O��x�Pf�`m�yJ xi�c�<���!���;��Ny�0�$���i7"o���0�@8} @�d�!=<��"L�F�PdHȀU��X��()��q���Bx�� a  Cp�� �{��L ��e`5�C� pb���0���(� �A8H��=P��謹 j�;8�0T� �Cw �4����x���X��0D���q�������9>�7�`�p�w�V�) +�*��H ���Q�=�Y~�!8)���~1?i�J�L�@��p�Z�!P����A*��J��@�q�� <��Uh !k�WA*�� P��0 7.�g)`1/����h�`s�@��E��t<��� < �\+Ck�@!0\A���(8� )��@��Rn����6��\*2~B ��H����H�1�@�0��� ( C��@�*���������HA��_Ե�4�W \;A��v ��It�T��p?���)��ShAq@T�<�#��~P�� �1�~��POB�P� �_x"�@����(@�$���,�#��Q"~V�꿥@@�R@ X [�,+��[J�n���\�R@70��l�"*��H���� @��N�~G�+@R��Ki0��� �@)��Y �f��yW}����* )`'�L@�1:�<>)�hU h�y�� �N�h(�8��{0�p��� 0J�%�Ld�쁱Q$IT렕� �@)�8@�x���@9%-g8�JZn˥2��� x���@���E)@�#� Z� �C�����J ��!��� XV�C�|@P1R�:�#8:���.[w��S� �|��e� B H���@0N&�Y@e��� V& 8*���'�� �WE��@�d����)����Aq�tؑ9�& H���a�V��,P ���Щ���4�'�@�29�&?� ��� 7l�1�2׏0A *�;Iȝ(wN Ӑ�B|�0�>�P1X� Y \"�!�QA �@l���� v�� TD@�R���nb��p9��3R)� �d��n,�wE�� �d ؃��/V H/�<�}t2a�>�c������. DB@` ^#H-Q�8|?�ht��P�I,P yId��X�#f���!���+��d]�A�SQ9���� Hd����~�a��EXN��@�Wh�� �6�O���E��@=,MG�t�B��0��W��3��`��H� :�D�A 0�� �)PQ�H43�����J�)��BP ��K-��� 2�C*T?z���� R4�p� `!AhJN�28@@S@� ��@P��H� (��R�]8���  � �� @�Ӣ�N������f3;�nn@� [;pG�~�9���� 0@���2c �`FԀ�� �² ""��1�����̄&}� ���0@�@ � �,�0�rb (��h��A9��p�@��A��&Qb%5�p��ω+ `P 3�M>����b���� AŨ��"���`h�D��E�������s��h9�dgr& � ʈ@r0�L#��=���(h>�F��@����*�����!��\!�@P�h��p�`�L}��a�A< 0%J�4 �B���!��=��\�@c XV�@�`)�@ +�\l Z�6:½;�gF[�����Fc<�R��.*�~>C0 �B) p��YU XV)�]���7�)�N�P������2|�L��\�J M@�;p\AhM�2�(���� ؕ���iP"� �J������+�K OM@�@T�O�C@P @ `��g�*-0� �)7�� �[��$�@�� ��Ɂ&�� ��3�Ph�V0�)�h�R$�𘄀�b��vh0�vB����BLA�!8�j�!�J1�@�*�)�� :@�+� f�4�F%h&@�H_y0� ��� ��fs���A @��%N��& �Q\A��@��@ �{�p�����H��0���u0���l���1�?�@��p����F�?�=�[�h ̚@@(�a��i�:T� ���8P���#F�q ���Th�)d��R@2B��J4DЍ�zB��)`'��yr��˂ /�?|���6(-�/-d �j���� �"P�`�A)0a"���"�j�aL����@�)� ��XE�!��J�k���0�@��]+s^0��D�D0�˘�� ''�"m��0c�L! ��:P3���3 hE�� TFЊ-C�+m�@������`���(Z�_�*�2� �� �A�KA�NPm�� FP D� �(����͇�:r����Q��8ޠ�A9`|���r������x� J 987@�P< *��r ��9�Km`�� C P)�vA� (��'�y�A���@| @ҁ1`8 �92(�`~����r��DxG���iP0ac��� M ���r4(�ؠT`�<��b.B �*��x��s A-HB�H*��`�ؘ�"R���jnN��� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*@��T� P*�?`R� H���`l����������!���� �6���?`��� �6��,l� �6��`R�H6�؀`��� �6���?`l� H�A@l`��� ����`鐂���6 ��?`R�t�6X:��?�����)�؀`����6 ؀`���t�6���?�l� �6�K��R� �����6B �6��`��� �6��� ��� ��`#؀`R��68�?`������� ��� �����l� �����?`��@ B���?�l��6���?`l� �����n���� H)�����R� �6���?�l�FB���?�Rp����?� R� H6���?`l������?`��� �6��� ���H)`#!`l� �6��`��� �����?`R� �6���l@ �)��`Rp7�6 ��l� �)���@ H����?`��� ����܍�� �)��`l���8�n���� �) �`R@ �6 �`��p6��`��� �68܍�� �6`#�����X:��l� �6���`����)��`l���8�?�l����!`��� ��`#��?���� H���� l� ��A@��`l� �6 ��?`��� �����?`l��6 ��?`R��)���?�l� �6���Rp68a�`l@ �68�?�l��6 ��l� �6���?�����6�w�?`lp�A@�-�����)���l�t���`���B���?܍���6 !`���B�`#�`R�H���`l@ �6��`��� �68`l� �6��� 6r6�!�l��)���?����B�!���@ �6����l� �� ����p7���!`�������`lp7��ҹ��?�R���������H6�K`l� H6���?`��@ �����?`R� �6��� l@ H�A@��R�������?`���tB���?�@ ����� lp7��`#؀�`6� �6�� �b��� �9�?`l� �6��,R� �)X:��n`l� H����?`l� B`#��l� �6�!`����6������ ��A@��l@ ��A@��R� ����`��� �����?���������`��� ���!���� ���w���� �����?�l��� l�?�R���A@��6��6 �`��� ��`#�`��� H6��`l�t�6�h�� l� �� ��?���� ������R� �)��`����6���?�2l� �6���������K�`R������R�t�) ��?�l� �����?����H�A@����6���?`l������� 6� �6 ��l� �6������B ��n�l� �� K�?`����6`#�`����)X:�� ����6 ��?������l`����6���n���� ��A@�� R� �6`#��?`��p7�6����l@ �����?`��� ����`����Y:�`��� �6���?�l�t�����?`������K�l� �������q7B�����@ H���؀����@ �����n�l�����`���H)���?��������`���F�)�!� lp7�������l� �6���n,l� ��A@w�?���� �6��`鰑����A@��l� ����`����68�?�������������6X:�܍�� �6���?`l� �6���l��6�؀`��� �6 ��?�l�H6���?�l� �) ��n�@ ����`��� �6�ld�`lp��`l@ �6���?`����6��`����) ��?`����)��`l@ �6���R@ �)���?`l��6��`R��6�l`l� ����`l����!����6�l��@ ���؀���)��`��������?`l��6���?���6���?���� �6���n,��p)�؀��l������?܍���6��� ���H6���?`���F�6������ �) w��R� ��`#�`�`6B �6X:��p����`l� ����`��� �6��܍�� B(6���l� ����� 6� �������� ��8� ���B���?`l� ���8���@ �68�`6���X:�� ��������R� ����`l� H��a#�`l��Z���6� H��!� l�H6�!`��������?�6� H6��`����6�!`��� �6�!`l@ �6�� �bl��)���n`l��������� ������ l@ �6���?`���H)���n`l� H)���?�6��6���?�6�H)�l�n����F���������6���?�����6�l��F�����?`l��)X:�`��� �6���l�t�6��,l� ���!؀`��� �6�h�?`R�F�6���?���p����R� �� ���R��6�l�l� �6���?`���t�6`#�� l� �����?`����)���`��p)8�?`R�������?�����6����t�)��,l�F�)�؀`����) �`l@ �)�؀� l� �6���?`l��6���l��6�!`���������?`��� �6X:��l� ��A@l�?`���H6���?�R�H��!�`R� H6�؀�`l��)��� ��� �6������H�A@��?���� �6 h�l��6�K�?���� �6��`��� Be��l� B������ �6��`��� ��8�?`l@ �6��܍�@ �)�������� �`l�H)8�`R� �6���`l� �6��`������6���?�l����؀�R������?�l��6��`��� �6�����������l� �6�l�l��6���?`R� �����?�l��A��� l�H6���n�l� H)���?`l� �)�w�?�l� �6��`��� �6���l�����`��� H�A@����B����`��� H6�!���� �)��a��� ��؀���p7�� ��l� �6���?�l� �6 ���l� H6�!`l� �����R@ ������������l��܍�� �6���?`�z����l@ H9���� B��`����6X:K`l� �6�؀�l� �6��`l� ����`l����"t����_�(�#���Pʘ�� eLC��2�!@BG( eLC����ʘ�� ]Z#t�2�!�B�h��i���B�p��i�P�4D(c$�1 ʘ�� eLC��2�!�B�H��i�P�4R(c0�1 �ʘ�� �,�1 �ʘ�� �+�1 ��F� eLC �2�! BG� �&t��P�4T���"�1 �:BM(c0�1 �2BK(c&�1 �2Bc(c�e��P�4Z(c/�1 :BE(c/�1 :BU���$�1 �˜� eLC �2�!`BG�~aLC�2�!�_Fh �2t���ZCg� ��7t����Cg���;t����Cg( ��=t����Cg� ��@t��*Dg���Dt��ZCgh��Ft���f� E�34��P%:C}� -�34���$:C}� ��Dt�*�zDg(��Bt����Dg(��Mt�:��Cgh��Lt���Dg(��:t�>�Dg���Gt����Dg���Pt���Eg���Ot�J��Cg(��7t����Cg���Ft�:�zCgh��9t���*Dg���:t�6��Dgh��Dt����Dg���Ht����Cg���3T���':Cm� �34��P :Cy� �3��� Eg(��Nt���:Eg( ��6t�B�ZDg(��2t��zDg(��Ft�B�jDgh��Ht�"�*Eg(��V�VQ*ZE�h͢UT�V�-ZE�h��UԋVQ,ZE�(��a����*:F����U����*ZF����[����*�E����_�VQ4�F����c��V�**F����[����*�F�h��m����*�F�h��b����*�E����h4�V�1ZE�h��U�VQ.ZE�hŢU4�VQ-ZE�h��U4�V�5ZE�hE�i����*�E�(��U����* G����f����*�F�h��_�V�3ZE�h��W����*jE�h��*�?���sb� �)��9:G7�G�ۀ����8c6�G��a#x��6�G������J�F_��������f� x��R"�H)q����pp�$���R�(��t��ґ��Ql����A`#x���()⢤�k#x���p�-y$���V�.XI��%���t#x��� �I&uh!E���"RD�H)���<�F�D�#hR�x� j�D5���&�'�l�"P� '-P�@uRO�IAi(U��t���p�<�F����c�JiRrO�`#x��p�L)��=���S�{r*�=�ǔ�܃JqO�I��'��Rܓ{N)��=���T�{r�)�=�ǎ�U�J�A�w<F�J[�+�2*����X*Kg)-݉�t'�ҝhKw"-݉�t'�ҝXKw".ͥ���R͠Kw�.ݥ�t�r#^ʍx)7⥇���CsH�!=4����C�K}�J襾���R��K}�J襾����_�l�i���'����~��)?�T�`Z~�� (?�ԩ���ZO�Ĕ?�w��1=��4�*�e*ZRD�H)"E����yH���&%"0�i�q���>ShMsI4���T�F�\B��� @$�e�R��RM� ")/���LSjZ^�iy���ꚞ�ݧ@��S��i?U����S�R^�)t����B� ��)t�H�!�O J;�' �R�H�:P �@-�a��� �zP�A=�ՠT��<�F U�.T��P�Nh ;�%섖�P�Nu��D=�D�P�CM5<�D�P�CM��� t 6�G������Ez�A�����<�F5�BԈ*Q�G��b���AQ��Nh ;�%섖PQ-�E��բbԌ�Q5�Ш�lT��Q9�F�գ�̎�QqfG��8��zT��Q=*�,�Cx΃@?�)�ʞ�A��1 ���r��i��$!�$���p�CH= 塜���pNBy(g'�<|��PN�I("�$���zʃH= 塜���0RI�H%�#���T������h II|����v��)�a������6B7����T xR%�I���H6" �RU�lhD�����R�J��*������R�J�%*����Z�RkI?�%�����Z�j K�%-�E�TV�J�K-���m���b*~� -�&؄alB�� 2���ԇ*S��=3U��'�ZSe�=6U�@Ԉ Q#�M=8����S�N�[�}q��y��A_���ӝ�Sw*Oݩݧ@��S JG�5=Wy�\]�s�N��4������jZ^Iy���e�R��H� U��j䍨��F��U�#X���ˬ�G�(Ѫ|d����G� �|�DM��U�jX�a��U�����:����aĪ��F�j��a�j��,c5�h�o���7Pߠ��+0@V�*Y-�����L��)?���SP~�� (?�T��*��*Cm� u��Ս�6Bȣ�ꚞ+kz���1 �� �>Դ�P��Ce`; )�z �Z�vF��;�Vo��Y������V�jcl�Ŭ���Z�"�Cq�D�r��A8q�D�r�A�*� ��p�s�Vר�� �#l��W��F�!8�U�4Wa�� �0��A��uu��:h�C��B%�ջ�Q��]�(v��j��W�^ūy��U��W�j^ūz��U��W�j^ūy��U��W�j^ūz��U��W�^ūz��U��W�^ūz��U��W�^ūz��U��W�^ūz5)������G[ث�a�F����_�\ (l����A����kz���ʣ�T�����?�������_��~��ů�D�xq�Mĉ7'�Un��*�r�[9�D` '-Pz��(�X7����u#�@���F ���n���6�!-�����BJH ��x��q��aX�4���e�R��H�K5-/մ� ��H�ˌ:D�%p��X7B`��f#֍PX7�a��u#�@���F�a#$V�P �c(���1����Jabu �0�:�R���KMB԰QP�FQm��u�2���XCG4j��#5���k�F��g���X7�G��A��R�:I�Cd���d#��V�D���"�a?���0J�~( �a���P��( ��4�(�<�F����?��k�R��� ����P ��R��� ��u�R ��A���Q�TB�p*!rF+�9�U��V*!r��POu{@ը�=��8肴�V5�L�Cz����tj�F��U���Rܓ{P)��=���T�{r�)�=�ǔ��cJqO�9��'��Rܓ{N)��=���T�{r�5=W��\��suZjL�0�P��Z�jL�0�V��Z�kL�0�V��_�kL�0�V��BSlL�0�V��ZSjL�0�V�[S L�0���Z�jL)0�V�$[jLA�� �Z+`:�� �&� �J(`�/����� �f+`���i�&��_�jL�0�P�[�kL%0��$BS L�0���ZSlL�0�V�[kL)0�V�$[�A�/�ɵ&�Z[? ���������qP@m������qP�m������qP@m�����֏�hkm�8(���֏�hkm�8(���֏�lkm�8(��֏�hkm�8(���֏�nkm�8(���֏�hkm�8(���֏c[k��A���~`[k��A���~`[k��A���~`[k��A���~`[k��A���~@[k��A���~`[k��A���~p[k��A���~p[k��A���~p[k��A���~��Z[? ���������qPm������qPm������qP�m������qPm������qP�m������qP@m����ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[unͭ�U��ܪ[u�n孽���V��[y+p�����V��[�+o%�����V��[�+o=�������[�+o]�����V��[�+ou�����V��[y��ѕ�W�*]��t������V��[�+oŮ�5�����[�+oݮ�պ�V��[�+o���U��V��[�+o��u�����[�+o���u�����[�+o��������[��y�ە��W�]y�x�長*W��\y+w�����V��[�+A�ȕ�jW�Z]y+{���U��V��[�+o�C�U��V��[�+o5�畷 ު^ykz�ŕ��W��^y+|���W�:_y+w�ؕ��V�J_y+p�╷�W�Z_y�u�ޕ��Wފ\y�}����bW� \yko�ٕ�ޚ_yko�֕�NW��[�+o5�畷BW�*\ykt�ȕ�.M��[�+o�(�u�����[�+o���5��V��[�+om��5�����[�+oe�ԕ�2W޺]ykx����.Wު^y+Hh�չ����[�+o -���W��[�+o%��ջ�V��[�+o���������[�+o导���V��[y�|�蕷Wޚ_yk`�ɕ��W��_y�q���X�J^y�v�Õ� X�:`y+t�͕�*W��[�+o%�����V��[�+oծ�u��V��[�+o��������z@xkq�╷W��^y+}�Ε�����[,o��ԕ�W��[ykr���W��]y�z����W�`y�q�֕�.M��[�+oݮ�5��V�[�+o -��z�:]�+om��5��V��[}+o��u�����[�+u���VW��]y+|�񕷢W�J\yk|�����W��[�+oݮ�շ�V��[y�s�Е�W�j]ykt�ꕷ ޚ^y+w�����V�\oe�ԕ��W�^y+t�Ε��W�]yk孼���V��[�+o���U��V��[�+o���о�V�[ ,o���չ����[�+o�����V��[,oe�ԕ��W��]y�q�ѕ��W�\o����V��[o͢�U��V��[�+o-�������[w+o-��5��V��[�+o������V�z^y�n�핷W��[y�}��J�|�_y�s�•�6W�*`y+o������V��[�+o����V��[�+om�����V��[�+o -���W��\y+w�󕷒W�:^ykz�����W�:_yk�㕷�W� ]y�w�ᕷfWޚ_y�r�ە��W�\o}�����V�J]y+Hh�U����JPx+�����X��]ykz�������[�+o���5�����[�+o]����W�J^y�v�ܕ�~W�J`y�~孁���!�:`ykz�ѕ��W�J\yks孿���W��[AB��Օ�2Wފ]y�z%(�ս����[�+oŮ�վ�V��[�+o ����V��"x�s�앺���JPx�s����W�j_y�q孼���V�J]yk��Õ��W��[y�y=�������[�+o �u��V��"x+y�ٕ�W� `y�u�㕷�W��]y+|�ӕ��V��[�+o%��5�����[������W޺[y�z%(���V��^ykt�䕷X�:^yk`�ʕ�vW� _y+r�長�W��[y�p����Wފ\ykp= ����V��[�+o��$��]y��ꕷ.M��[,o �������[�+o��ԕ��V�J_y�o�ʕ�ZW� `y�u�ו�X� \y�{�Օ�Xު\y�n�̕��W�_y�n����~W�Z\yky�����V��_�������W�J_yk����WޚEyk`୿��.M��[�+o=��������[�+o�C�5�����[�+o��u�����[yko���*W��\yks�Ǖ�VW��^y+|�����V��[�+o��������[�+o��u��V�[�����u��V��[�+o�����V��"xkp= �ui�WޚEykt�ޕ��W��_���ƕ�^W�j]y+o���U��V��[�����վ�V��[�+o%��5��V�[�+oM�����V�[�+o���������[�����U����J]y�{�•�NW��[�+o������V��[�+o�C����V��[�+oݭ�5��V�J]yk{�•��j_y+x�ܕ�Wފ_y�o�����V��[�+o�����V��[AB��ĕ�jWޚ�xky�ƕ�Xޚ^y+��ʕ����[w+o��5�V��[�+o}�������[�+o���������[�+o}��պ���[�+o��5�����[�+o]����V޺]yk{�㕷W޺]ykp= ����V��[�+o���ս����[�+u��������[�+o�(������[,oM��U���,�[�+o �������[,o��u�����[�+oU������<�[�k>Į���V��[�+o͢�������[ ,o���U�����[��~���*W��]y+o���50��<�[o=��U��V��[�+o���U��V��[�+o�����V�[�+o���u�����[ ,oݯ�u�����[�+o�ȕ��V� ]y+��ȕ�J�|�]y�w�ߕ��!�j^�+oU��������[ ,o���ui�W�J`yk��V��[�+o���u��V��[�+o]������[�+o���U�����_�+o���������[�+o}��5����J]y�r����FW��Qxkv�ߕ�W� ^y�z%(���RW��Qx+���^Wފ^y�w�㕷�W�J\yk�֕��W� \y+z���X��^�+oE�������[�+oծ�պ��,�[�+o������V��+o��ԕ��W�xk��蕷�W��^y+z������[�+o �����V��[�+oE������[�+oͮ�u��V��[�+o -��.M��[�+o]�����V��[�+oݮ�ո�V��[�+o���5����[�+o��ԕ�2W��^y�o����X� Zom�����V�J]y��ԯ�������[�+o �����V��[�����z�Z^y�s�ޕ�2W޺\y�r�ᕷvW� \y+s�����V��[��y孿��jW��[y+}�ĕ� X�*]�G�蕷�W��Qx+Hh�U��V��[�+ou��5��V��[�+o������V��[�+o���������[�+u���.M��[�+o���պ�V��[�+o ��u��V��[�+oů������[�+om��������[��~�𕷺W� ]y���Е��V�z_yk`�ӕ��V��[�+A�Ε��W�*^y�t���U��V��[�+o导��V��[�+oͯ�u�����[�+o���ui�W�J_yk�����2W�j^�+o������V��[�+o5�����V��[,o5�畷.W�Z^y�t���u�����[�+o���u�����[�+o���5��V��[�+o]����W�j^�+o]������,�[�+oU����V��[�+o=��ո�V��[�+o͢�U�����[+o�����V��[�+oM��������[�+o����V��[�+o%��u����JPx+v�����W�J^y�{��5NW��[�+oݭ������_�+oM��u����[}+oͮ����V��[�+oe�ԕ�vW�_y+v�ؕ�fW�j_y�z%(�5��V��[�+o���U��Vފ_y+s���Vފ^y+|���fW�`yk�孽��Wފ\y������V��[��~�ꕷ޺_y�|�˕��V�z]y�{�Ǖ�W�^y+~�ٕ��W� _yku�y���V� Zoݭ���V��[,oM�����W�:�x�w������[�+ou�����V�z_y�s�֕�NW��[�+o���U��V��[�+o���5��V��[�+o}��������_�+o���U����[�+ou��������[�+o���u'����ZB� -�?l���C�5��X{`l�� �k.خ�`��L� �k&خ9S��7P����o�yP�`� ��6X�` ܃���T�r� �g���Ei�%�Z��jQ�a#��6�6�Yԁ��~�3@?� @P�"a'�������T��2M�iy�����DR^�)5-/ִU�r,�9��� �C@��!����pa���?�X�r*�9��� �C���!�����a1����3fX�xv0��ݰ6����`*~(���Ԓ~PK�A-��EI���Z��jQ�@�(��t<��Q:J��*�t҉�Ȥ2���ԇ*S�5=Wy�\Y�s%9?��������j�H�K5-/Ӕ���jZ^IyA$�e�R��"�rBv�"('d( �rBv�"('d( �rBv�"('d(NU���!VĊ�o�N���x��q��pH���#vk�U�H��S%�ĖX[bM�=�|Ş��GP�=�|Ş��GP�=�|�"���W�J`��u#�@���F ��n�º�F�a#���@ɼ %�&�̛P2oRP�FA )6�P���6B8P�+VQp� ��@Q\�����f��ZY�be�����V��ZY+kV�����6X,��-���؇�b*")/մ�LSjZ^Iy���e�R��Hʋa&�*\qp�����J��~`��Ή9;'���&Z^싅�1vP��;�8�a#;cil���5��.D�cc"ձ� ���؅�|�D�:��������[t �-n,��:����Ir&��$@�N��c'�gDh��W�c{��5d�`c@V�v0d�`c@V�v0d�`c@V�v0d�`c@V�v��-�L֖q$k�8�e� d,���@��� d��� �\T��2M�iy������iJM� ")/���H��d�l��j���z �Z�vF��;�RkI?�%*����Z�jI?�%+����Z�RkɐUEDVYU4dU�UEEVYU4dUQ�UEFv( #;���J����A�-ā�P ����s�z�,�9��ɲ�qcX�e=����BJH �!-�I��${��_�V��r+G�W��#HJ�-$%�� jD����DR^�iyA$�e�R��RM��4���E����dC�F��?��!<C� lg $�d��>X�Lv�ԇ*RjRm!)����|.=M��&�K/ F�*���o�N��7P�`�~�z� ��7����ҟJH*!MJ�-$%���jQ��EI���Z��I05@�:'���B� �*ª��B���i\�+� ��,�E"T�TY$�U�H�E"]�tU$2M�iyA$����jZ^�)5-/մ� ���@"hV�ʎ�p�|FJ��x/���Kck�F��?��|�U�-ȩث?�X���i�ղNa'����vBK0��ԐRBZH i!���#)������G[���d�g�,���~���ه�g���J��q.��?�n���S��O��?�n+bEZ�"VD�U�vEZ0ZWD��vEZ@hWD�U���Z`hq��ũ�#l�@:B?PPV!p� �[:|B`��Un��*�r�[9��j0݌U�ʼ���b�yS t3V�*��f��U�M%PX�fP*B5��ԃ�P��P�6��@sh͡ 4���LSjZ^Iy���e�R��RM� ")/V�(��t���Q:V�xX��h��]>�v�$��sv�O�]>gg����h��A%��@(�CS�,MU�4u�2�FKS�(M�4���!�-MU�4��T�CS�iy��Դ� ��H��4��奚�DR^i39���6�C�Li39���N��Y!�$�u'����vBK�NtT��3;�Gřգ�̎�QqfG��8ӘөZ��jQ��Ei�%)��n,������&Z�h (`����p-� ���G iã���A����t<��Q:JG�(�t<��i� ��FZI������N,�I�p�⣴� TZۆ(�mC�ֶ�-k����mt���6�%cm��� XZ�F�8 8�#l��Pi�F��?������PO�La�T.-�-]P��iU��U�V��TU��U�VtA�TU��U�v�)�N;�.������Z�GÃyy4<���GÃys�m� O�>-��>C���h,�K2�,Ԋ�rjE�F��?4p0j��P)+���T@ � ��r��|�U�-�a#�iJM� ")/մ�T��H��4��������6�68O��D�(��<�F������ʭ�_�V��r+G�e���@�?�*�G�*�|���d�G�eV�#W��hU>�U��Ym*��\]�s�Gϕ$���b#x����J�q�ĭr��AT*� ��p�A8Q�ĭr��$>�BRm᝚���[oe��շ����[�����W�z]ykv���&Wފ^yk`�BW�z_y�x�啷�WޚEy�s�ȕ�*W��[y+x�Ε�.M��[�+o��ս�V��[�+o���u�����[�+o��գ���JPxko�ʕ��W�Z]ykq�ѕ��Wޚ]y��ѕ�~WޚEy�s�Y��VW� \yku�蕷���[�+o������V��[�+o���u����J]y�z%(�������[�+o͢�������[�+o������V��[�+oM�����V��[�+o���50�V��[y�t���U�����[�+o���ս����[oݯ�5�V��[�+om�����V޺^ o���U��V��[�+o�������[,o���U��V��[�+o��չ�V��[�+oծ���RW�*]�au����&W� ^y�n�ᕷW޺[yk���������[�+o]����.Wފ_y+p�ؕ��W��]y�~�ƕ��W޺_yk~�W�:`y�}孁��6W�z_yk}����W޺\y�z%(�գ�V�[�+o������V��[�+om��5�����[�+o ���~W��\ykw����W��[�+oծ������[�+o���5��V��[ ,o���u��V��[�+o��������[�+o���u�V��"x+q孽��&W� _y���蕷^W�:\y��ԯ�5���,�[�+o@�u��V��[�+o ��u��V�J]y�z%(����V��[�+oE����V��[�k> -��W��\y+|�ٕ���[�+o�����֥�_y�u�ߕ� ��]yks�Е�J�|�^yk|��W��^ykt�����W��]y���W�*\y+����W��_���Õ�2W�_y+s�長.Wޚ]y+y�����W�*`y+�ו�FW��]y+z��5�W�j]y+p�̕��W�`y+y�Ǖ��W�z_y+��땠�V��[�+o�����V��[�+o���u��V�[�+A�ە��W��[�+oͯ�U�����[�+o-��գ���[��y孽���W��]y�y=�����V��[+o]���Wފ_y�t���u��V��[�+oݮ���X�:_y�x���bW�z_y+w���Xފ\y�v�����Vފ]y�s�˕��W��[�+o���50����[�+o��U�����[�+o}��u�RW޺4�+oE��չ�V��[�+o��ԕ�&W�`y+s�͕��W��_ykq���>W�Z]y+w孽���Wު]yk|�ߕ��Wފ]y�v�̕��V� _ykp= ����W�J`ykx� �E�V��[�+u�̕�W�J^y�G����W��[�+o����V��[AB������Vފ\y�t͇ĕ�ފ_yko�˕�ZWު\y�z�ʕ�X�J`y��ԯ����V��[�+o�(����V��[�+o���������[�+o%��U�����[�+o������V��[�+o�ȕ��W�:_y�v����.M��[= om��u��V��[,o �������[�+o������V��[�+o5�畷 W޺]y�x�����W��[ykp= ���V��[�+o��ռ�W��[y�o�Ǖ��*^y+q�長�V�^ykq��������[�+oͮ�շ����[AB���FW�j^�+o���չ����[w+o5�畷���J]y+w�㕷�Wު]yk{�Ǖ��W��Qx��~Wފ\y�s����~W�J^y+{������V��[�+o������V�[�k>4��������_�+o5��5�ު]y+s�KS�����[,o�������z@x+~�����W�:�x+����*W�_y�|�ѕ�&W޺]ykp= �ջ�V��[�+o���U��C�[�+o��u��V�J]ykx�ޕ�FWފ^y+~�Ε��W��]y+o=��5�����[�+o ��U��V��[�+oݮ�50�֥�_yk�ƕ��Wޚ^yk{����z��]y�G�핷BW޺[y�u��ZW� \y�{�ɕ��V��[ykz�Ǖ��W��\yk|�����W��_yk����� X޺4�+o���U��V�[AB��ߕ��W��]y��ߕ�X�_ykx�啷�W�j]y�w� �E����[�+o���U�����[�+o��պ�V�[�+o��ջ����[����տ�W�z\y�p孽���W�j^�+oͮ������[�+o���5����J]y+q�����V��[�+oծ�������[�+o5�畷�W��_���ە�VW��^y�z%(�u��V��[�+o��u��V��[�+o��������[�+o宼���V��[��~�䕷W�z]y�o孁��2W��[yk����zW�:`y+t�앺����_�+ou��u�����[�+o���u�����[�+o��ԕ�WޚEy�p����"W�z\y��Ε����[�+o���u�����[w+o������V��^y+x�ӕ��V��[�+o �������[�+oU��U��V��[�+o������V��[�+oծ���ZW� \y+o�ڕ��Wޚ]yk~孼5��V��"x+}�啷�W�z_y+Hh�������[�+o����RWޚ\y+y�Õ�.Wފ]y+Hh�ջ����[�+o �ui�W� Zo���������[�+o5�畷VW�*_ykx��տ�W�*`ykp= �������[�+o%��u��Z]y+�ƕ��W��^y�v�ݕ��Z\yk�孿���W�z]y�n�Ǖ�W��]y�|�蕷�Wު\y+Hh�������[�+o5��U�����[�+o导������[�����պ�V��[�+o���ջ����[�+o=��ո�V��[,o��U�����[�+oE��ռ�W޺[yky���jWފ\y�x�Е� Wފ_y�n�y���Wު\y+t� �E����[��~�����W�:]�+oŮ�չ��<�[}+o-��������[ ,o�����V��[�+o���U��V��[�+o͢�������[�+oU��5�����[�+o���������[�+ou�����V��[�+o�C�50����[�(o���U��V��[�+oM��u�RW��^y�{��� W�J_y+{���U��V��[�+o���5����[�+o@���V��[�+o���������[�+oE����V��[,o�C����V�[�k>������<�[�+o%�����V��[�+oM��պ����_�+o=��u��V��[�+oŮ�5�����[�+o���������[�+u�ٕ��W��]y�}�ĕ�vW޺]y�t������V��[�+A�����V��[yks��BW�_y�n����W�:]�+o���5��V��[�oe�ԕ�vW� _y��ݕ��W�z]yk��bWު^yk�����X�`y�x�ʕ�*W�J_y+p�핷NW��[�o���5����z@x�x�ӕ��V�J]y�q�ە�6W�^y�w����Xު^y�o� �E���[�+o��ԕ�X�z]yk|孿���W��Qx�|�ŕ��Wފ\y+s�ؕ�fQ��[y�|����!��\ykv���!�Z\yk{� �E�V��[�+o������V��[�(oݮ�������[,o�����W޺4�+o���U�����[���͕�2W��\y+z�֕��W�:\y+|����V��[�+oͮ���V��[�+oů�ս�V��[�+u� �E�V��[�+o���0��V�z^ykz��տ�Wޚ]y+v�ƕ�zު\ykr��տ�W��[y�p�ؕ��W�*]��o�����W��[�+oe�ԕ�W�:�x+}�y��bW�J^y+y�ӕ�����[}+oͮ������JPx�}�啷�W��\y+v�Y��W�j\y��'���Z|�j� >Y����Z|�j� ��'���Z|�j�ɫ���d��X�Od��'���Z|Rk��#����Y�Op->�'����V�Ot->ٵ����Z�Ov->��~��Z|�k��'���Z|�ja->I����Rl��'���Z|�j�Iz�'�֏��X�G�ɰ�'��[|Bk�ɬ�'���ZX�O���'���Z|�k� ��'��[|bl�>A�����^�On->��~�[|�k�ɩ�'��[?�O�I��'���Z|"l�ɰ�'��[|bk�>Q��d��V�O�->��~��U�O�->Q�����|�Ox->A��$��a�Ox->q��$��U�Ob��'���Z|"k�>i�~��_�O�->��~� [|�l� ��'�֏��[�O�->��d��V�O�I������Zb�ON->)�����|�k�->ѵ����c�OX->���D��_�O�+>������|Bk� ��'���Z|�l� ��'���Z?�Od��'���Z|�l�I��'��([|�j� >�����Z|l� )���D��`�OHA��'���Z|�j�I��#����Z|�Of->i�~��Z?�OT->ѵ�d��X�O�->�����f�Oz->I�����Z|�j��'���Z|�l�I��#�D��\�Ol��'���Z?�OV->��� [|�l�>�'�V��`�OHA��'���Z|Bl� >������b�On->!��d��V�O���'����|�k�ɭ�'���Z|l�I��'���W�Oz->��~�[|2l��'�� [|rl��'��[|B R->!��D��e�OV->9��d��V�O�->1�~�[|Bk�ɯ�'��,[|�O���'�D� g+,^��x��� �h+,������ �i+,�������� �k+,���x���� �l+,���ж�� �m+,������� �o+,������� �i+,ĭ��‚� a!,ʭ���B� r+,̭����"� �i+,ƭ������ a!,���@���� �j+,ҭ� ���� u+,�����b� m+,ح�h��� w+,ԭ�x�‚� x+,֭��‚� �k+,୰H��b� �s+,ޭ�p�¢� �v+,���x��� �q+,�����¢� s+,⭰��‚� �[�+oe����V��[�+o���������[y�x��Wޚ\y�|��տ�W�Z]y�u�ו�J�|(]�aw�ꕷ.W�Z^y�r�����W�z]y�t͇ߕ�X��^y�{�ϕ�rW�:_y�{孿���!�J\y�w孻��:Wު^y+s�㕷�W��Qx�G�ߕ�W�Z\ykp= �շ����[y+x�長vW��\ykx�ᕷVW޺^ o@�U�����[�+o�����V��[�+o%��u�RW�z\y+r�ƕ�6W��\y��� W��]yko�ʕ��W��\y�p�Õ�X�z]ykz�Y��W��^�+o���u��V��[�+oE�����V��[�+o������,�[yko�•��W�Z^y�r�ѕ�:W�*^yks�蕷W� _y+|����W��]yko�󕷒W޺]y�t���u��V��[�+o����V��[�+o���u�����[�+o��u�����[�+oM�������[o��u�RW��\y�t���U�����[�+oE��u��V��[oU��գ����[�+oŮ�5�����[�+oծ����V�z^ykx����&W�x�z%(�5�ފ_yk}�KS��V��[�������W�:`y�p� �E�V��[�+o���5�����[�+o���5��V��[�+oE�����V��+o��50���z@xkp= �U��V��[�+u�ڕ�6W��[y�}�䕷X�:]�+o���������[�+ou��ս�V��[�+o�����V��[�+o]�����W�:]�+o��5����[,o���վ����[�+o=����V��[�+o -��X��_y�{�����W�Z]y�r�ȕ��W�_yk`�ܕ��V޺[yk�ݕ�bWޚ\y�r���W��\y+v� �E�V��[�(oE�������[�+o�(�գ�V��[�+oU��u�����[yk�����W�J`ykw�ؕ�jW�J_y+q�֕��W�z_y�s����vW��[�(o�(�50���[�+o��������[�+o=��u�����[�+o��U��V��[�+oE��U����J]y�q�Օ�2Wފ^yk{�ە� W�Z^y+z�땠�V��[�+o�����RW�xk|孻��ZW��]y�o�X�\o������V��[�+oů���V��[{+oݭ����֥�_y��͕�Xޚ\y�z%(�u�����[�+oծ�ui�W�]y�u�󕷢W�:]�+o���ui�W޺_yk�����Wފ]y+w��X޺]y+~����BWޚ\y�|��W�J_y+t��տ�W�:�x+Hh�u��V��[�+oM�������[= o��5����z@x�x�ѕ��W�]yk�����>Wފ_yku�ᕷW޺]y�s�͕�nW�:\yky孻�� Xފ]y�v�ʕ��W�:�x+x�ە�6Wފ_y�G�ѕ�ZW޺^ oM��ո����[�+u�Օ�X�^y�z%(�������[,o������V�J]ykz�֕��W��^y+Hh���V��[,o%����V��[�+oծ�5��V��[AB��ߕ����[�+o���ռ�W��]y+s孽���W�J_yk������V�j]yky�����W�\o���5��V��[�+oM��50�V��[= o]��������[�+o�(�5��V��[�+o���U��V��[�+oݭ�������[�+o=��ջ����_�+o5��������[�+oͮ�u��V��[�+oŮ�u�����[�oe��5�����[�+om��������[�+o�����V��[�+oݮ������[�+o��u��V��[�+o���շ�V��"xk}��տ�W��Qx�t���������[�(o%�����V��[�+o5��ռ�W��[y�|�Е�"W�:^y�t͇��W� _yk}�ȕ����[,o5�畷~W��_y�y=��u��V��[�+o���u��V��[�+o �����V��[AB����W��\y�o�ƕ��W�z]y�s��W�:]�+ou��5��V��[�+o���u��V��[�+o��U��V��[���Y��W��\y�x�Õ�fW��[y+Hh�U����z@x�{����zWފ_yku�ו��W�`y+��Е�����[o���U��V��[�+A���vW�:^y�u�ߕ�z�J\y�w����W�*^y��Y��fQ�z_y+y�Õ�FW�J`yku�ٕ��W�_y�|�䕷~W��[y+q�앺����[�+o���շ����[�+o5��5�����[�+o���������[�+o]����Wޚ_y�p孼�����z@x�|�䕷ޚ�x�������W��[�+oݭ������[�+o@�������[�+u孁��X��^yk}����X�`y�u�ĕ��W��[�+o���������[�+om�����V��[�+om�������[�+o�����V��+oծ�5�����[�����ս���JPx�o��������[��~�&W��^y�r孁���V��[yk`���V��]ykt�ӕ��V��"x�p���.M��[�+o}��������[�+oU��պ�V��[�+o �����*`y�t͇땠����[�+oE��������_�+o������V�z^y�|�y������[�+o��������[+o@����V��[�+ou����V��[�+o��5��V��[�+o��ԕ�zWޚ�x�p�╷�W� ^y�s孻������[�+o͢���RW��_y+x�Օ��W޺^ om�����V��[�+o�(���V�:]�+o���������[�+o%��$���^y�}�ƕ��W��]yk�╷6W�j^�+oM��U���,�[�o5�畷�Wޚ^y�n��տ�W��]y+������W��\y�q孿���W�J`y+w�����W��]y�{�ϕ�Xު^y�}��տ�Wޚ^y��ԯ���V��[�+o导U�����[o]�������[�(o]�������JPx�{���W�z\y�}�ʕ��V�*`y�r��տ�W��[y+p�핷fW��]y�|� �E�V��[w+oݯ�ո�V��[,o]�����W� Zo ��U�����[�+oE�����V��[�+o]�������[�+o��u����J]ykz� �E����[�+o���������[�+o��ո�V��[�+oe�ԕ��Wު\yk}�Õ�rW��]y+��y��VW��\yk|�ꕷ�W��[y�~�ᕷ�W��[�+o���ջ����[��y�㕷�W��[�+o���о�V�[�+o宼���V�*`y+|�Ǖ�X� ^y��͕�zW�*`y�z�Е�Xފ\yk�����W��[y+ou�������[�+o�ʕ��W�*`y�}�����V��[��~�ו�Xފ]ykq孿���W�z]y�t�����V��+o͢�������[�+o������<�[�+A�ޕ�BWު^yko�̕�:W��[y+p孽��ZW�j]y�|�𕷂W�*\y�v�핷.M��[�+o��5�V�z^yk|��fW��]y+x��X�`y�w�ؕ��W�*\y�r��W�J`y�q�򕷺W��^y�|�ŕ��W� _y�}��5>W�:`y�r�ʕ�W�j^�+o��5��J\y+q�ٕ��W��_y+y�Ε��W��\y�v���:W�J_y+y�ؕ��W� `y��ԯ�u�RWު^y+�孽���W� \y+{���$��]ykq�����W޺^ o���U��V��[,o]�������[o%����RWޚ^y�w孼վ����[�+oe�ԕ�"W�^y+��~W��^�+o���5��*]�!��VX\[a�m����VX�[a�n����VXL[aan���VX�[a�n�E��VXNa�m�� �VX�[a!n�E��VXP[a1n���VX�[aqn�Ÿ�VXl[a�m�E��BX�Ta�m���VX� a!o����VX�[a!,�E��VXx[a�m����VX\[aAo�E��VX�[a�m�E��VXp[a�l���VXH[am���VX�Tan�E��VX�[aAn�ż�VXT[an�E��VX<[aQn�E��VX�[a1n���VX|[aam����VX<[a1m���VX�[a�n�ź�T��aH �!-�����Be��U�U!@Y��dB?P���[���Cxȣ�!����hx0�a#x������a#��6G �A��<�Cx0�!���<�Cx���v#x����-8�+��x /�5�Rj:� 5�} �-�s@~ 0���B�} �-طs@��W�2�vH��!Gn�$�2�vH��!Gn�$�R�v�~`M��5�a#��=Zr�h�5�'��8!��r#�P#̄��\���tJJ�-$%���O���'����~�0-?�T��`��0-?u�uT��Z��jQ��EI�%���v� ��h�O�]>gg� Sb��JU��U%�V��D��o�HӔ��DR^�iy��Դ�T��H� ")/2� `�D` ���.�l�~h�<�F� lg $Es�@�����\q�n�8h87�����8h5W4@5�@˹���ܖ�syn�m >�%�\��s[�Nh >�%�ܖ�Z��m ?�%�ܖ�s[��m ;�%�ܖ�sy��Y>gg����H�g@?������P�F�a�F���*�����St���=4����*{��왩�g<��D�xlP� ݡ�LI?0%�ղVV�*P��&�'����Bt�.�-��t��� HXA��ph͡ 4�6��@�<�F��#l�m`t����a#��� IWԡ��6B�T��L�:�Jk�@��m���6@im����n�Xۆ,�m�[�ֶ�-k����mtk#x������P��g(��d �����2T��t�.�Cw*��;�GÃy�!<���G�C N�����tqG��T�*Se�LU^4U���:.�5�uÚԅ�Qu{<��aL��_�V��r+G�W��#(���|ө�P���}��t�>�o:u�7����R���W��]�(v��j�zW5�!U=�����rU�h����\����՝Wwr\�kz���ʣ犪VU΃�uX�]d]��u���ڐlA�>T��Pe�Cݺ�c6r]?�u���\�(܅�p��]� W0զ�T�jSm�L��6զ�T�j��#�C��)r;��� �C��9r;$��$�Cv݇��R�J��*������R*0-?�T��S~�� (?�T��S~�i�����f#�;�n6rK���f#�;�n6rK���f#�;�n6rK���f#�;�n6rK��<��<�hxȣ��<����.�������;� ��@|��JRG*I�$���iJM� ")/���T��RM��4���%��G��C0l����F��?<ӯ�L��3��%j�$v��F�a���J��Y%�@���k�x��m���C��C0�{��"=����R����R����-�����R����-�����R����-�����R����-ŎC��5i`����O�?٤�$�<�F�H/�야2M�iyA$�e�R��RM�K5-/��� ��f�,�=aV���f�,�=V�xX��a���Q:JG�(��s[��m =�%�ܖ�s[���=�%�\��sy��m ?�%�ܖ�s[�Nh :�%섖�s[�Nh �#l(X7a��u# ֍X7Ba��u#���X7BK}�.�쎓�%9��م=tK�R ��A���� TB�p*!rB�hU�TB�V*!rF+�9�U��T*!rF+�9�U�Nբ4U��T-JR�(MSjZ^Iy������jZ^�)5-/����[a�n���VXH[a�l�E��VX�[a�m��iWX�[a!m���/HX�]a1m�ų�VX|[aam�ŵ�VX<[a�m���VX�[a�m���hWX@[a1m��/HX�]a�v�E��VX�[aQo����VX8[a1n�Ŵ�VX�]a�n���iWXp[a1o�E��VX�[am�ųnWX�]a�n�Ÿ�VX�]a�n����VX�[a1=��H�VX�[aAo�E��VXX[a!,�E��VX�[a�n���VX�[a!R����VX�[a1=����VX�[am�ŵ�VX�]an�Ÿ�VX|[a�m���lWXd[a�v���VX�[a�v�E��VX�[a�n����BXH[a�v��oWX�[aw�ź�VXl[a�m��oWXh[aA8����e��b�*�F���U��VQ5ZE�h-�U�VQ7ZE�h �UT�VQ*ZE�h��U�V�-ZE�h��`����*JE����_�V�0ZE�h%�U��V�0ZE�he�U�VQ.ZE�hբU�VQ/ZE�h]�U4�VQ+zE����U��VQ/ZE�h]�Ut�VQ8ZE�h��W��r�**F�h��n����*ZE����X��r�*JF�h��^����*�E�(M�UԌVQ4�F�(��o��n�*�E�h��h4�V�3ZE�h����_�]�ү�m�Ws׶�+�k[�Uܵ-�j�ږ~UwmK�����_�]�ү�m�Wv׶�+�k[�Uܵ-�J�ږ~ewmK�����_�]�ү�m�Wq׶�+�k[��ݵ-���ږ~5wmK�����3�ݼk�<��5o�a�7��w͛g���3�]����y� �׼y��k�<�y3o���7Ϡw͛g���3^�f�̛g����3^����y� �׼y�k�<��5o���7�P�̛g���3�]����y� ׼y��d�<��5o���7Ϡw͛g(���3^����y� �׼y�k�<�5o�a�7�@x͛g���3^���y� x7�7�P�̛g����3�]���y�M��3�]�� �y� �ɼy��k�Խ�W8o�弝׭r��A�*� ��p��AT*� ��p��A<������ЛODo>��d��қO@o>����қOFo>������OBo>1�����ћOHo>!�����қOg>1��D��ЛOԅ ����^@2Po��B%�@���F�a#x�� j6B`��u#֍����^�+�W�˜ԫzaL�U�0&��^Si��U:JG�(��t���U:V�^�+�rBv�"('d( �rBv�k6'd(�fsBv�k6'd( �rBv�"('d(�fsBv�"('d(�GÃy�!<���GÃy�$��PFLB1 e�$��PFLBY�u������qI1��JE�H��{͆X�0bUÈU #V5�X�0II|���$>�� �7�2Ԇ�P�AMr5���^�{�G��x�^�{��yH�����ܔ��G[HJ�-�Un��*�r�[9�0+f�H�1�4�8����>�Ws@ �����6`u�0k��^T8{i/*������^CZH i!%��Ԑ҂6 jظ��WBn��Pe�C��5���ܫ{�jQ��EI���Z��8��;k@�5��`g �Hm ����{{����Zb$�� |�o��*�#l���<�F�#l��p.�Ź@�|�Y!|g��II|���$>�eDS����J�H��4������iJM�K5-/���T��<�F�;�%����Nh ��n'���B � �(�(���BW�j#x����*�MJD`xկ:|���%�×�"���W�����3fX�xv0�������J��t���P:JGV��svNL�����:�����(�a������|��$9�$�N9;I��$9����N�.:IN�$)g�d�N]5I��$����N9;I��$颓d�N�r6IN�$ѱ�$�N;It�$�����N��4I��$٤���M5r��M����P��]�̷�r� �J[i�r�堔(�kP �) �!<���`�C y4<�����2�F��?<_��/�Ł����� }q`����#l��TNw����?tT��3;�Gřգ�̎�QqfG��8�>BZH i!u��T���[H i!5�������Y����,ke�d���v2�ZY;�5l԰�zU/�I��Ƥ^� cR��1܈�r#^ʍx�+9�����T�S�C1�n?|ө�P���}��t�>�o:u�7��u#x�����P�נ�AT*q�D�r��AT*� ��p��A8��Ei�%�Z��jQ����V_�[}Qk�5����V��[}�K�ž�W�n_��}���վ���>��Ui8ͣ�ꚞ+kz�8 8JG�xX��a���Q:JG�xX��<�F�#x���& ��ݗ�v�Ez� *��J��+r���ظ"�?����D�8�Ii�� �Q!jD���WL���o"N��8�&�D��Q�Fը`�R��RM� ")/��� ��2M�iy��奨�R�,�A���Ȳ�qcX�e=�������1e�����o� T�7�a#p"�6�G��a#x�����7��ߠ�~�o���;�����oO��;���|� �o��a#@"º ѦU�VdZ�TRU]PdZ�iURU]PlZ�T�Y*�Ċ?�H�K5-/Ӕ���jZ^Iy��Դ� ��~P�1 +�;�b ��1 +�;�b ��1 +�;�b ��1 +�;�b �C?� �� ���G[HJ�-pY`�ZO�a#�;~�R��< ���6Bp0��!�_ɡp6�G���� �|�X��m���6�G�����U�bW�F��wU�T��H��4�����DR^�)5-/մ�tT��3;�Gřգ�̎�QqfG��8��R�KEf/�E�����B���- L������A9V�(��a���Q:JG�xX�� ��a#��6�6 �m�� QRm!)��� S�L}�2��.��2i:q��* 4rv���Y>gg��؅8�AMr5���U�wV j�(�a����|xH��(��S0)DPN�.P@��DPN�.P@��DPN�.P@��<��Q:J��*��t<��Q:J��=X���6$[H5<�D�P�CM5<�D�Pk�����W�>T��Pe�CA9!�@�5�� X�9!�@�� X�9!�@�� A9!�@�5�� A9!�@�� 8;'��\z�,.=Mv#x��Q#*D��EUrl\�ST%��9�W�V q�%6�G����<.�p �a#�� �o ! ����z�R�@#�[9��ʭ�_�V�����0Y[�X-�H֖qDPN�.P`���DPN�.P@��DPN�.P@���lN�.P@���lN�.P`����^^�+y���_�;�����C���_�;�����C ��_�;�����C���_�;�����C ��_�;�����C�����$~�oy@ �w��� s����w���o���7P�`#x���6�G��a�T�; 8���@��Rp�Q3*�A%������kQB�������_Yhƒyy4<���G�C �0�V�$B�lL�0�V�4[jL�0�P��_S L�0�V��B�kL�0��b+`:������ �b+`B��i�&� �R(`:����� �J(`Z���& � �~L�0�_�[�lL�0���Z�A�/�)�& �� `��� �� �P+`b��I�&� �Z(`���)��� �b+`�����&� �V+`J�� ��� �^+`b��ɵ�� �R+`z��I�&� �d+`b��I�&6ZE�hբU4�V�3ZE�h-�U4�VQ,ZE�h��U4�VQ2ZE�h��U����*zF����k����**F����]����*�E����Y��V�*jF�h��\��~Q0ZE�hu�UԍVQ2ZE�hE�i����*�F����_�VQ+zE����U��j�*�E���UԊ^�**F����^����*ZF�h��h4�VQ-ZE�h5�UT�V�6ZE�h]�UԊ^�* G����m����*�E�(��p��r�*JE�(��l��b�*�n����VXl[a�m���VXx[ao�ŷ�VX�[a�m����VXH[aqm���VX�[aAm��H�VXT[a�m���VX�[a�l�E��VXx[a�m���VX�[a�n���VX<[a!R�Ÿ�VXt[aqn���VX�[a�n�E��VX�[a�Ÿ�VX�[a�n���VX�[a1m�ų�VX a!,�Ŵ�VXp[an���VX�[am���VXD[am����VX�[a1n����VXX[a�m�� �VX�[a�m���9PV!�̢�f�'����zJOg���<�F��#l���p `�� ��;�`l�T%j�$�IB.���p� ��JGـ�����Qu{8�`��F��?l�� a��h#x��� N�80A�#l���#0=�����Cri��a#���O�?٤�d�� |��>�a#x���&0�a#��6�iʸ��nH�<�F�D�����&~�����⇂kp���H ��o�� ��^j~��z�O J/0F*#� ���ʡ 4�6��@sh�a&�!����a1c�Ōg3���|FJ�a#l��ys*��,{����6B�a#��6�6���Po`?�JW)8���A�; �lN�.P@���lN�.P@��DPN�.P`���DPN�.P`���DPN�.P@���鵛� �0�UA[*��@�DM�J��1M'��y U�iU@�UHUtA�iU� P�V��U��U�V؋Pi/Be�v�Qp�JW)8���w`�r��F��#�� <^��P6�E���"l�Mh6�@'����]��@q�e�8i�2P��@(NZ� T5-/Ӕ��DR^�iyA$����iJM��/}6j��R�p���P��g(�0+f�H� �b��0+f�H��a#l���Cz�����x���vBK� -��V� �?0>oU�(�t���Q:J��*�tHWpP��SP~�i� �*�����L�O0U����jZ^Iy��Դ� ��2M�iy���������8�*��LX7$�a#@"{� �7�R'�J�VvXYRm!)���`ƒyy4<���`�C �l��r6I�t��S�L��$>�BRm��RBZH i!5�����Chm�9��&�N��c'�ر���3"4I�$9���`R���-�3j���z �Z�v����P�@�)�&X�>�U�ȹ@�]$��8u��:k�1��`g �p�D�r�AT*q���p��A8� D�r�(0�N�4C��, L3`Z~�O������`��O0U�'����L�8U����Z> jD�����vs�@ù*�j���s�@˹����!Z����Fs�@Km ��o:u�7����N݇�M��C��S��f�H��7�(g'�<���P��I(!�$���z��I8 ��$���P�NBy���뺋�6 j�H��K�`�|FJ�a#�5ʀ�(V� �^Ћz�~P ��+{%�,���2p$���LSjZ^Iy������iJM�K5-/���$��j^ūy��U��W�^ūz��U��W�^ūz��U��W�j^ūz��U��W�^ūy��U��W�j^ūy��U��W�j^ūy��U��W�^ūz��U܂Yp f�-��`��\�W�.�+I�˃�]���7L� �_0 ~�0��� �_0 ~�0��� �_0 ~�0��� �_0 ~�0��`��t����J��*�t��� �R�H�~�3RB �!<���`�C y4<�`!,��Ym*3�̘a1����1X���4s� 4�������~�O[=3�X�~`M�蹲��ꚞ+�3����8��AJ�A�@�#l;�<�F�#�#l;2���H��#��T�<�F�v4ppG��*]��� �|��� ca<���6B8���d� �q2D�C���`�wvN��915�BԈ����^�+��ydRu���uX�]�RX�<�F��#l�m�<�F�4�zEp 6�G��a#x����A��a#�naZ9 8�#l�m L�����v���`�p��`5�BԈ��D -գ�̎�QqfG��8��zT��Q=*��~�3~��?C����|���a#���R���j䍨��<�F��#l;�<�F�#�#l;��v@R�F�+خ9S�f��3�k.خ�`��� �k"��\���I��'�.�D�|��9;���,��"���]>gg��f�O�WT� 'a��pV�A s����9IQXœ�(0aNR�0') *��q��Є9IQpœ�(NR��p�¢� �s+,����‚� �n+,������� y+,Э�x��B� t+,������ �$,���(���� ��+,έ��‚� �+,ர���b� �y+,���p�‚� ��),�������� �+,���H��� �+,������b� �u+,ԭ�(��"� ��+,⭰��"� v+,୰�¢� �+,����¢� �v+,������B� x+,���0��"� �+,ح�8��� �y+,D����B� i+,歰��¢� ��),ڮ����B� �w+,֮����b� �v+,���0��b� h+,ҭ�`���� �l+,���X���� ��+,�����BX �+,^�����B� l+,­���‚p �n+,���ض�B� �g+,Ю������ k+,ڮ�H�‚� ��+,i39���6��L�p39���6�(�L�p3���$ 7�)�L�p3���D 7)�L�p3��ͤ�L�f�`��n&P��@�f�Ll3���$�6��Li3���$ 7)�L�0!e U���+LH��&�l� caB��0!e Z����-LH�&�l� R��� )[�„�-|aB��0!e `8 R�`� )[�„�-�aB��0!e d����-LH�B&�l! R�`� )[�„�-�aB��0!e h���a3LH�&�i� R�p��0!e f���5LH�Ä�-TaB��0!e h���a2LHق&�l �4�� )[8Ä�-�aB��0!e c���5LH�&�l �4܆ )[�„�-�aB��0!e Y���6LH�B&�l �4�� )[�„�-�aB���0!e V���4LH�0&�l� R�p��0!e m���5LH�&�iX R��� )[hÄ�-�aB��0!e `8 R��� )[�„�-�aB���0!e e����/LH�&�l� R�p� )[�„�-`aB��0!e b���6LH��&�l� R�0� )[XÄ�-daB��0!e T����6LH��&�l��VQ*ZE�h5�UT�V�6ZE�h��m��j�*�F����Y��f�*F����X��n�*JF����Z��V�* G����U�VQ6ZE�h͢U�VQ+zE�h��c����4ZE�h-�U��V�3ZE�h�Ut�VQ7ZE�h}�Ut�VQ*ZE�h��U��VQ-ZE����T��r�*zF�h��U��~Q0ZE�hE�i����*�E�(��b����*�E����e����*jF����f��r�*�E�h��_�V�/ F����k��&�frH�I�m& ��D�f���n&S��D�f"��In&���L�f�L�p39��d 7��L�p3i&P���f�� n&���$�f"���n&���D�f"���n&P���V��Z�~L�0�V�d� `������� �V+`�/� ��� �`+`J��� ���B�~L�0�V�tZS L)0�V�tS L�0�V�$B�lL�0�V�tZ�jL�0�V�[�jL%0�V��ZSlL%0�V��ZlL�0�V�[S L�0�_�$[�~L�0�_�4[�lL"0�V��Z�~LA�& �R+`z��I�� �Z(`Z��ɵ�� �R+`*�� ��� ��p�uɄV��A����TB�T*!rB�h�TB�T*!rT*�9�J���J%D�"'��ւ6 jؠ������Ja҃yHs�m� 9LR��D�! :LR��D�! ;LR��D�! �BRmA�(��t�����nQ�6�G��u#֍@X7B`��u#�@����`Vn���T�R9�[� ���U�A8� ���T"S�L}�2��*��t���Q:j���z �Z�vF��;CV�0Y�ÿ4��c%T�U?0VB�Xm��������8 ��6B85��n���F�a#�@���F �a�T���6�6�F�j��aĪ���윘�sb ܃��U�PY$�U��E"]�tU$Re�� ��F���T�G`��#l��$>�BRm�:�PP�FA ��$�_��M�5I��$�_��MR�5I��$\�k~����" L�00�B� 1!.Ą��BL� 1!.Ą��BL� 1!.Ą��BL� 1!.��#l��Rm�ha`�e#x�����0�*@�b�g� �3�X�C���!Vz��=��U��I'գ�̎�QqfG��8��zT��Q=*�4��T�.�D���_�V��r+G�W��#P#fd �3�Ԉ���q4���G#~��q0����#~��q��aX��x��q<��ш�#~���l�"P��@�'�#l���MR�5I��$�_��M��5I��$�_��M���`�o!���[�9 ���[�o!�F�a�T�u��[�^7����u��[�^7����u��[�^7����u��[�^7��ؑ��G[HJ�-$�6�ڀX�0bUÈU #V5�X�0~���ه�g�_�V��r+G�W��#@&|����G�*��Y��tU>BE��U�#\��l����@�#l�� P��&�'�l��U�W�#W��hU>BE�HW�#�2���GIy������jZ^�)5-/Ӕ��DR^.�� ��q���6�6x$�d���Z��jQ��E)͢�4�f�,�=�h�̢�3�f���h II|�Q�L�^ūz��U��W�j^ūy��U��W�j^ūz��U��W�^ūz��U��W�j^ūz��U��W�^ūz��U��W�j^ūz��U��W�^ūz���r� ��L}�2���ԇZG]G������5z;������ZSe��=3U��'**{�*�Ē,﵄�<��`P:JGV(�#+���I���ZK�A-Q��d�֒~PKVj-Q�����ZK6�G��a#x���6�G��`#x���6�G���\��s�.p�-���$�J�h�K��4�>�g�`��3����:�g� b�K�(8P��4p`G�A$�đ�vF�I�'q$�đ�vFb��mg&M'΃W�D�A� ɦ��#{hjM�=TT��T�3����*�_bL|�3�%�ė8_bK|���� �RG�0��R�UJ�W)�_���R�l�HJ�-$%��4�&���FԩZ��jQ��EI�%�{va�*��$mI�s�.��(�¢� �$,���� �),�����‚� �v+,ʭ�xA�B� a!,������FT;k@�5���Pg �@?��p8� �Ğ�j��O�A��Ğ�j��O�A��N�{b���>�'�N;�N쉩�o�Ğ�{b���>�'�N(?�P� D15Q�����~`M��59�N��:���AHm��R'[H%o!%��ԐRCZH'o!-��`?�mr�B?�}��U�<�F�D�#섖�Z�Nh Z�)���dq�h��t�>�o:u�7����N݇�M��C�dބ�yJ�M(�7������6B Ŕ�9���<�F�D�#���`ƒyy4<���G��F�adZ�iURUHU��U@T*@(`�iU�V�VhZ�iU�F��?$�JW)8�������B���N݇�M��C��S��~ө�P���}�����R|L�)�II|���$>ڂ�5�Ht czL���h II|�#;���J����Aad�ҠHB$�P�CE�u�R��H�K5-/Ӕ��DR^Iy���eӪ�M��� ȴ*@Ӫ�L�T� �*����� д*@��Do>�����қOX@>!����ЛOBo>!�����™O@o>!�����ЛOX@>!�����ЛOLo>��d�`b,�Ű�����P<�@���Pq*Vū�l�"P��@�'������dq�h��X~�b����+��X~�b����+�%����R���A9(šl���CK *�j� �C���!����pa���?�T�r*�9��� �C���!����pa���?�X�r¬�"F�_& b¬�"F`pJ���K/ F�������d��]�(v��j�zW5J9�II|���$>��Nh ;�%섖�Z�Nh ;�%S�s�JU�*1���b ��1 +�;�b ��1 +�;�b ��1 +�;�b ��1 +�;�bj�D15Q L�00�"T�U?0V��X Uc����^�+%���`Xn�0,�ų����f�w�f;�%섖�Z�7����N݇�M��C��S��~ө�P�ha`���b��_�+~-�������]��� � ����]��� � ����]��� � ��ߢ�~�X�0bUÈU #V5�X�0�a?���0J�~( �a���P��( ��4�P�)5-/մ� ��2M�iy�����DR^�)y)/��@(�~�3��I�&���$�k���I�&���$�k���I��奚�DR^�)5-/Ӕ��DR^Iy�F�j��aĪ��f'���zU/�I��Ƥ^� cR��1bUÈU #V5�X�0bU� �@��g�H�3P����6E]2(x�E�iv��Y�f�@|�o���+�2*`ˀ�ph͡ 4�6��@sMϕ5=Wy�\A�����sB?� �@��*96��)��c㊜/ F�(��]��R�*jE�h �Ut�VQ,ZE�h=�U��VQ6ZE�hݢU��VQ-ZE�h�U��VQ1ZE�h��g����*�E����\����*�F����U����*�E���U��V�*ZE�h}�U�VQ,ZE�h��W��~Q0ZE����h4�V�0ZE�hE�i����*ZF�h��o����*ZE�(��p����*�F����^����*�E����^����*JF����^����*JF��~L�0�P�TB�jL�0�P��BSkL%0���_�lL�0�V�[�L%0�P��ZSjL�0�V�4[SlL�0�V�[jL�0�V�TB�kL�0�V�$[S L�0�V�[SjL"0�V��ZjL�0�V��Z�iL�0�V�$[kL�0�V��Z�~L�0�V��Z�~L�0�V�4[����|ө�P���}��t�>�o:u�7����>�D` �� 4�6��@sh ]4����PW p���8�C�H�"=4��� �C�H�!=4����C�H�!=4���(�CsH�G�=�?���d���g�Ĝ��e�H�4 ��섖�vBK�;�%�º�F���u#l��D�F@�a�nº�F�!_3l�eo .=M��& Q#*D����ٴT�W��O%�?���TB*��M�Q��܌s@n��,>֩�������?@?�d�R��H�K5-/���T��2M�iyA$��^��K@�ť����phq�9գ�̎�QqfG��8��zT��Q=*�<�!理�Cr�iyA$����jZ^�)5-/���LSjZ^ j�(�aC����O6�?٤������t���P:JGV�[p��Y_g���X���Ja��A;g��Q�Q) j�(�aá�CZH i!%��T�RCZH'o!u��t���W��^��o����@�'�����I�I?�:U�ppT�*w�Qp� ���=y4<���`ƒy�!<����rU�8����\����y-W�<��t���Q:J�7s!{d��=�Q�_�;鯇U:JG�xX��t���U:JG锳I����$�SN��������P�ԩ����"=����S~���h II|��Sl#�G�? �˟[,n�����ghɟ�%p�����G�x��r������ �i� ��>#%��!<�F��?�tP:h���J��Y%旊�_*R��S�(}� ��7�*���o�N��<�����o�yP�P��̎���(8A9!�@�� A9!�@�� A9!�@�� 0�!���<�Cx0�!���$L� �-*��4Hg� �A�tA�t��Sz:O�)=��c���F��?��p�L�8BO�L� L��(8h�@��RppG��F��?��!<C ! l����F��#���<�F��#x� �@q���8l���C:q�T?�iJM��4��奚�DR^IyA$奚���td��Q:�B�(�t<���JG�(��tv�"ZD���T��RM��4�����DR^�)5-/��&���j"x���&���*�-g\����Yċg�T-JS�(Mբ$U�R�MP q�l�8h9W4@5�@�����\q�p.����u�1P��!#�XCG4j��#5���k�F5�BԈ�I ��:P2���ԇ*Sj/�žXA _��NG��8��zT��Q=*��gvT��3���6�����!�~�/������!�/������!�/������!�~�/������!�/��� ����/>H�� ����/>Hn��p�V9�[� ���T�R9�J� ��p�R9� *���T�V9�[� n��p�A8� �a"��K��~ �I�㎤_�qG���>T?�PK�A�@��$�_��M�5I��$�_��M�5I��$]�s�Gϕ5=W���$a ��AMr5���Y1 Dr�x��T�j��aĪ��F�j�3~F?�?C����|�ϐ�EI���Z��jQJJD`���~�OR�$�")Mr1����9���(�#+��ґ��* 4B����%�ܖ�s[��m :�%섖�sy���=�%�ܖ�s[���;�%섖�s[��m ?�%�ܖ`X��x��q����v@R�XI1c%Ō��a�J��0c%Ee���j�J�+)*Ì�T3VR�XI1c%Eu��^�+H/�8�g쌟�3~���;�g��& �� -�?@���qK�и%���C4n �!����[B� -�?�b����+��X~�b����+��X~LSjZ^IyA$奚��jZ^�)5-/�����;�`l�T���*Z��h�����rQ��hi*�� L�00�Š�+��X~�b����+��X~�b��G#~��q4����#~��qL���G#~��q0����a}��q0�ǡ�2U��T�%Se*M�����T�jo*j�����U�jTI��t���P:JGV$�IB.��I(��$��z�CH= �!�����1NBy�'�<���P��I('�$��z��I8 �a'���-h�V�VlZ�T@T�VlZ�TU@T*@(`�iU��UHU(` T�U?0VB�X�c�F�� -a'�����"Sd�L�-��6 j�ȺW�g�+e��U��a#l��I��$;'@��!p�F��?l���C=W��\]�s�����>�g���3<��Q:JG�(�t<��Q:J'�E�HɌ�1=���-R{���b �̛P2oBɼ %�&s׶�+�k[��ܵ-���ږ~ewmK�����_�]�ү�m�W��<�Cxȣ��<���hxH��?$��V�B��"= �@��g�H�����u� ���dڷ�i�J�Z�Nh ;�%l����IX�8aecm���q����XaA���<�F��u# ֍@X7����f�c���������r�`�A8v0��;�}`��>8���l=t��ձ������s�`���q0�`;�}��ۜ������s�`���s�f�c���Z m����  &*/39?BHLQW[aknsw|�����������������������  %,148?DLRV_bintz~�������������������������  &,138?ELNRX[_gjlrwy|��������������������������� "'-29BHLOUX\ahqu}�����������������������",19AFIMSY^aekpsy����������������������� #&)09=BELPT[adiru{����������������������� %,13@EKQW_elt{�������������������������� $*26;?DKORY`fhjlnpsu{����������������������������� "&,47;?DIOS[adfkt}���������������������    % * . 4 8 ; ? C K Q V \ d k r w { � � � � � � � � � � � � � � � � � � � �    " ) 0 5 < > E H L O S Z ` f k y } � � � � � � � � � � � � � � � � � � � � � �    % + 1 8 = @ F S Y \ ` i n y |  � � � � � � � � � � � � � � � � � � � � � � �       $ - 4 9 C F I P W [ b g k p y } � � � � � � � � � � � � � � � � � � � � � � �      # & + . 2 6 : > G J P S W ^ e k r w {  � � � � � � � � � � � � � � � � � � � � � � �  !&+1:>BHPV\bgjqt{���������������������#%*.25<ADHKOVZadkow}�������������������� (-;>DRU\_eipvz}���������������������� "',3<BHLPV^egntx|������������������������ !%*18@HLOTZ_gr����������������������   &)/5;BDIMPW\akorwy|���������������������� "*.5;=DJSW\`fimqty������������������� "*,05;AFNQTW]bgiruz��������������������  "')-38=HMS`h{�������������������  ',08>@DW_cjv|�������������������������  "'-3:@DJMRXbinrw}������������������� $+.159?ACU]bfkr{������������������������� !#)-139@KTZ_gkty{������������������������ %,/59=BLPV]ku{���������������������� (14;@FLRW_fkot{������������������� $6=CMTY_ouz������������� #'*3;?DKPU[bhoty������������������������� "&,28;CJNTX[`adkpuz���������������������     & 1 8 ? E K Q T Z b h n s x | � � � � � � � � � � � � � � � � � � !!!!! !"!)!,!0!8!>!E!M![!l!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!"""" "$"*"/"5";"?"J"S"Y"b"f"k"q"y"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"##)#0#5#;#@#G#N#V#\#e#m#s#|#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#$$ $$$$$ $$$'$.$5$:$?$H$P$V$[$d$j$m$t$|$~$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$% %%%%#%'%)%1%7%>%C%J%Q%T%Y%]%b%g%k%q%x%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%&& &&&&&&&*&2&8&?&G&L&R&V&Z&b&g&l&s&x&{&}&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&' '''!''','1'3'6'<'B'G'M'S'V'[']'f'j'q'x'}'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'( (((#(3(>(B(F(H(J(L(\(c(j(p(t(z(}(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�()) ) )))!))).)5)<)A)G)K)Q)T)Z)^)b)h)o)t)})�)�)�)�)�)�)�)�)�)�)�)* **#*5*7*B*R*[*f*u*~*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*++ ++++"+(+/+0+9+D+H+K+O+R+W+Y+_+b+f+j+p+w+~+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+,, ,,,, ,(,.,3,:,>,B,J,R,X,_,c,k,q,x,|,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,- - ----- -&-.-3-7-=-C-N-Q-U-\-^-`-b-h-r-z-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-. ..,.0.4.8.<.L.W.b.e.m.r.z.}.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.// ////#/&/-/1/9/>/B/F/J/R/X/a/i/q/y/}/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/0000"0'0/04090>0F0L0R0X0_0a0l0r0z0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�0�01 1111&1-14191<1C1I1O1X1_1i1p1w1|1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�1�122 2222$2&2,2.272;2@2G2J2L2R2Y2[2]2c2h2u2{2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�2�23 3333%3+31363?3B3G3M3S3V3]3c3u3x3{3}3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�3�34 44444!4'4-444:4B4D4M4X4\4a4g4j4t4{4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�4�455555(5155585>5K5P5U5[5b5g5l5r5z5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�5�566666&6(646=6B6I6R6T6^6b6d6m6u6~6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�6�67 7777 7&7,747:7=7A7F7K7M7Q7T7Y7`7g7q7w7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�7�788888$8,828<8A8L8R8X8b8f8p8t8z8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�8�89 9 99"9'9,93969<9?9D9G9J9P9V9[9_9c9h9q9w9}9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9�9:: :::":(:-:3:<:G:R:T:Y:^:e:l:t:{:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:�:;;$;(;.;5;=;?;E;J;V;Y;b;g;n;r;;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;�;< <<<<"<'<0<9<@<Q<T<Y<_<f<n<s<v<<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<�<==!=%=*=/=4=;=?=F=J=P=V=Y=h=o=z=�=�=�=�=�=�=�=�=�=�=�=�=�=�=�=>> >>>">,>0>?>D>L>P>Z>^>c>e>l>o>u>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>�>?? ????'?.?6?@?C?M?U?[?d?g?o?s?}?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?�?@ @@@"@'@0@5@;@@@G@L@Q@W@\@`@a@f@o@s@u@y@{@}@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@�@A AAAA"A,A2A6A;ACAIALAPAUAYA`AeAkArA�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�A�ABBB B$B)B.B3B8B>BDBHBJBOBQBSBXB]BlBrB|B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�B�BCCCCCC(C/C6C>CCCFCJCQCYC^CeClCnCpCuCyC|CC�C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�C�CD DDDD"D'D/D5DGEGIGKGUG\G_GbGgGpG|G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G�G HHHH H,H0H5HIDIJIOIUIZI_IcIjIlIsIvI}I�I�I�I�I�I�I�I�I�I�I�I�I�I�IJ JJJJ"J(J+J4J;J@JEJLJPJVJ_JcJiJpJvJ|J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�J�JKKKK$K*K/K4K8K=KEKNKRKYK^KdKjKpKrKtKxK}K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�K�KL LLL"L'L.LELLLTL[L]LgLrLyL�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�L�LMMMMM%M.M9M@MDMJMOMZMaMmMrM}M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�M�MN NNNNN$N*N8NHNKNUN^NeNkNqNwN}N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�N�NO OOOOO#O&O+O1O7O=OLORO\OjOwO�O�O�O�O�O�O�O�O�O�O�O�O�O�O�OPP PPPPP"P$P(P-P4P>P@PRPdPhPxP�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�P�PQ QQQ%Q+Q4Q9Q?QHQNQVQZQlQpQxQzQ|Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�Q�QR RRRRR&R*R0R5R;RARGRKRPRURXR]RcRiRlRrRzR}R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R�R S SSS!S1S6S8S?SGSKSTSZS\SbSkSqStSxS~S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�S�ST TTT%T+T6T8T=TDTITOTVTcTwT}T�T�T�T�T�T�T�T�T�T�T�TU+UFU[UzU�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�U�UV VVV%V'V-V4V>VCVHVMVVV_VeVkVuVyVV�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�V�VW WWWW#W$W+W/W:W@WCWKWXWbWiWpWvWW�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�W�WX X XXXX%X+X3X;X>XCXFXNXSXWX^XaXfXnXrXzX�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�X�XYYYYY"Y+Y8YFYOYZY`YhYnYtY�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�Y�YZZZZZZ'Z2Z3Z;Z?ZEZJZQZYZ^Z`ZeZiZmZoZqZvZ|Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z�Z[+[1[>[P[W[][a[h[j[o[r[w[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[�[\\\\\ \&\,\0\1\:\?\F\K\P\R\Z\^\c\i\m\t\y\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\�\] ]]]]]$](]-]2]7]?]C]J]M]T]Z]a]h]o]t]{]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]�]^ ^^^^5^7^>^B^J^Q^W^]^b^k^v^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^�^_ ___!_(_0_>_D_K_N_V_[_b_k_u_}__�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_�_` ```"`'`)`/`2`:`<`D`H`P`U`X`Z`]`f`l`t`|`~`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`�`a aaaaa%a)a,a/a1a6alDlLlPlZl]lclglmlslxl~l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�l�lmmmm m&m*m.m5mnCnInPnYncnjnqntn{nn�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�n�no oooo o$o)o1o6o~F~N~U~\~d~j~r~u~}~~�~�~�~�~�~�~�~�~�~�~�~�~�~�~�~#,3?EL_dfms{������������������������%�+�/�7�<�B�J�U�Z�a�h�m�t�{�����������������������ƀ̀ڀ������ ��� �(�-�3�8�@�O�Z�`�k�t�w�}�������������������ˁсہ������ ��� �&�/�6�<�H�O�S�W�Z�i�n�r�x�{�������������������ǂ˂ׂ߂������� ���#�+�/�5�;�C�I�O�V�`�h�p�x�}�����������������������ʃ׃�������� ���"�&�,�6�<�B�H�R�\�c�i�n�y���������������������Ȅ˄҄ڄ������ ��!�'�-�3�8�A�I�P�U�W�[�a�h�m�s������������������������ȅхׅۅޅ���������� ����"�/�2�5�?�H�M�V�^�a�f�n�u�����������������†ʆІن������������'�*�4�=�D�I�P�X�b�f�m�{�����������������ć̇҇ڇ��������(�-�0�7�A�H�O�W�g�q�x���������������������ň̈ЈՈ܈�������� � ���*�.�5�;�?�E�M�U�^�d�n�v�|�������������������ĉʉӉ׉߉�������� ����(�4�@�F�P�]�b�i�n�q�}�����������������Êϊ֊����������� �����$�3�8�=�?�G�M�U�Z�f�n�t�y���������������������ˋՋً܋������� ���!�1�3�;�H�M�Q�X�]�a�j�o�t������������������ŌʌҌ֌܌��������� ���#�*�-�1�5�<�F�M�V�_�g�n�s�|���������������������ǍӍڍލ������ ���#�&�.�9�E�L�R�V�Z�e�o�}�������������������ŽȎԎ������� ���"�)�6�?�E�I�Q�W�a�d�k�q�w�}�����������������Ïʏя׏�����������"�(�,�2�<�H�O�[�_�g�n�u�{�����������������Őː֐�������� ����$�0�7�A�D�J�Q�Z�b�l�r�x������������������ɑԑ������������"�(�0�<�D�M�Q�W�f�o�r�|���������������������’ʒҒڒ�����������#�)�0�8�A�G�L�Q�W�_�g�o�v�������������������ǓГ֓ޓ����������%�*�0�<�I�V�g�m�s��������������������”ɔӔؔ��������� ���!�'�*�0�<�@�G�P�V�\�`�k�u�}�������������������˕ؕݕ���� ���!�'�,�6�=�G�M�V�\�e�n�v�~�������������������������̖ϖٖޖ����������'�.�5�A�L�V�[�a�f�n�q�t�~���������������������ȗחߗ������� ����*�0�6�D�H�K�T�Y�]�c�j�r��������������������˘Ԙܘ�����������$�+�3�;�>�I�P�V�`�g�l�p�t�|�������������������™Ιәۙ������� ����%�)�1�5�;�A�I�S�W�d�l�v������������������šʚКښޚ�����������"�'�/�;�B�I�P�V�^�f�k�r�w�}�������������������›Ǜћכܛ������� ���"�)�2�=�G�K�R�Y�_�f�n�z�����������������ǜ՜ޜ������ ��"�)�3�9�=�E�P�T�]�`�h�o�y�~�������������������ĝ˝֝ߝ�������� ���%�)�4�<�G�T�a�l�r�|���������������ɞО؞ݞ������� ����,�/�8�E�L�W�]�a�l�t�{���������������������ğɟӟן������ ��)�2�8�=�E�M�S�[�b�i�w�}���������������Ġ̠ՠڠ����� ���$�,�������������bartkeizjoansmithandybnilswlokahcawebdevelopcucumberpropeterdgvivacevivochiranjithdkowihendrikspppotanindraevalnickcharsleiflaviuratiubrasmussonguardiansghillsventorbenexuperojfuturrepublicwealthevacchisuchwowcriteriarotarimarcuswrlangfordjeffhjiangtkurtrmueltheprimebenchmarknoamknispelgertvvconnorstroombergjoelkuipglasgowpatthomasdarimontexpotiensonqininfraqueenolagenorhynquanilpcppranavrclarouxnsimlunkeechmabzgvenicegeomeggermomarceshsleitnercndreisbachkaverspectenragedgingkouphaxjoelittlejohncobalamincupmicroserviceuxcouchjalpedersensmarrapplenewreborgracepointmeshiandersfursethssrrukorizzimachjgdaveinicolasmccurdijhchabrankristfoundsamsungkanateamvesagahealthcareitnopenopenoptotallymikdushmiftomassettieffectivejavamshravanreddisparkledrivjackrushgosharedatayazzzubairqravicimalloryerikneverfoxnekjobavacoopstrangmetasoarrbelohlavekvoltaicagmarkbastianscratchpauldoojfacorroskatmateuszkubuszokcloverregardzgsumptuggiraldezcanassaklangjosephwilkvgesheladamwynnjkkdiamondapxeqimichaelnealbpoweskirsvpshaazaemilyforstchastelnathanbwrighttejasbubankangkyubmulvihilcoveralmscoutermarshexercistaraptorrcxhanumakanthvvnkizerxlmhelmetagalexclarkofficishahamarcopiousfreetimrtiksheekappraveenpugliacolinrubbertchinaowljtiggertreiffmbgeofftonkpilbeniiandcarrolhsjunnessonkarlmikkoasheldocarabinamsgodfclumsyjediluxbockduncanmortimpeejagrammatiphanhungradianraxodaidboxlunchlottoisaacgeokalacodilimfileservkonradxyzcosmocloudifivimrclpilrorygibsonmantragonzihpetulcrockeoprasogreenyettimeframtunnitjoaaltoxsearchclarkcbseantempestaohmybankinteijugordnungswidrigmorrislennisougatabhjknicljdyuhtastevensurgnitoucangrimhttpgctesthyjinkrkoeninglambontweetbookntalbdiagrampoweryannvanhalewynrmfucodefordenvtreppoterrabootevemasteripparkkinopetushallitupictshvetsovdmbartlebicapsidmachinbolttarcieridevnswartzajpocudgrnbrgspiralweavertakocasidiablowaynedycktesqjulechancerusselandrewvcfloreterrancesnydndhoulcawalapaulrdowainlewihautechtonjhwohlgemuthpreceptconarrghelardiucscxenaxenaucscacthpscavengfdanielsenbencodexegesitobyclemsonpotgzeurekaalexeymkpostherseancorfieldwombatwillowtreeappmazeamacdougalpocalotorplantjandorfpericldimitrijrumahsewaburhanloeinwolfrbramweltrapperkeepscotjtendantblaaghjerhowinfinispanvjuranekboardgamegeekcompounddanielnlunatibpdpkabobbaumgartnggaquizjindrichmynarzauriclkapwardenistakedasynapticlhallaperpetusisterdivinholeihackathonavalonbaritonehandcourseralucasdellabellasimrunndrdoofenshmirtzyadndmlbcoldnewjbranchaudclojuresquphssjestghlshurlikthelgasonerousgarchetypskurophanibcrohlmsmakhloufscrapinghubcodywilbournhodgesdpetchatcljspikebnadlerjrmathomjussiarpalahtiltwjohanhalebiasystmonteithpjtelegenkukuibaustellenzevcanweriotnowwobhjammersaolsencontoursimonholgdvosbertnybblhuntfunctapnkgxszfamyhiguchiyouyesunalexandrttkssharmamixmarjonahglovfengjxyepesasecasainadhhangshiisibwongthovengirirajsharmaexlbornaanhzhidragonfaxgabrielnicolasavellanedasdebnathbashoyangchengjianlaurenrothnelhagpatrickodhugoduncanudoprogmfourniertzachspazmtwosigmaclodocorplispcastprachetaspabeyonalajacgagcctraicanariparenskitllasramhawkmelonmanchancesparjhncolinfandrewdolbiadolbimoxajattendsleuthedpagetauramoansiblpomoriwskimarkmandelcofferobotdiscobguthrimvmusicdanpallatiredpixelshepmastkillmcurlgentlemanhbrevikephalurukdaveliepmannvisibltobluxrichardharringtonmartinklepschdanielcomptonfrankensteinchpilldaiyikenrestivotbnlpwdferenceleritanablaaemileswartvotinginfoprojectdjuitrakdmitriidreformbendyworkaudaxionjmmkwhatishistorinhlperuukkirailwaihughpowelseathrethelmuthsaulshanabrookvaguerinicmcphelspectornyampassnvlledanselhonzakanbaninstaskipdanpersacustardoakmacalexkehayiachocolatiphelanmrosundbevutapepayanglongmstangholguinjidorobotdamballadegasolvdjhaskinconduitfarmlogevermindcarambarnchaponbiluchatomnoonianmoneijuholeihullmilankinengunprisamuelthoughtworksincplumatdsttfarmdawgnscotsgamjakubholynetalgernonmicrubfullcontacttopeczlubyruffidasallfolkpyrbgabaillijoeraymbowlofstewvincentbernatakihirosudavideoamppatroxrobashtonjamturrekhajoshmlispmeistpradeepchhetrimbuczkorhysrirudyakbfritzforterbmhatfieldpharaujojeanpralobwilbermirwanalqzamateriancounsyltimbuchwaldtcswaroopyellermoonranganvilshokuninvixnaloomaiochrismoultonpczbhmccpraisondanihilfialkaffsakanaknusbaumsrishtyagrawkevinconawairoshannaikcrimgongsmhmclallenjinjamesmarvakonferkevpeekelancomraviperimarzadityasharadcherrylkishorvpatilnathanmarzujfjhzcluometamxrevanzhangferreromesosphersrdomanuekkamleshbhatterikdwcarltaoguanrahulkavalluacljmultunupadawansamcconvertxrivuletintrospectifesdjeenbijanbwbdevthleonmanrolamcnamaratclambgrnhsehangulsooheondeagorillalabmrcslwroryokanvadahmrmanfirecloudbroadinstitutwhamtetswannodettjamalpandeirodjebbzdelitescermbutlerwwilkerluciochristincloudcontrolcedricpineaumstinenvbnbuildpackuuuurrrrllllaeronotixdgtizeinspectorregionhbasekakaokwhojacobmorzinskihashobjectbrycecovertbearldapinstilragnardupgradingdavkennyjwillidanielszradsquelchminasmartmschmelelonocloudyochannahstaircasjoshkhlynaghkfriboostupzalandobattlegroundorionsbeltmcbotjaredllrplivelykernelbreezeemrjuhovhjonathanjlrsolitachatappaesterlinryfowdandakawarehousbertrandkalesguziktcsavagolegthecatyurrriqbachpactdiugetcontdexterminbensudelaguardochstanjgrochoemezeskkotarakherderpalfreiontrailjrostiplanhierarchangeljaencrisptrutskiflyboardgenartlibthobbjimrthibukkursevereoverflalgeboljonyepsilonsantoaaronlemongrabolicwolfibhaumanheimtimmcstathissideriworkspackninstantetymonlinoskarthcalumleanclopackmichaelblumflamboyieldbotsalavastudiosprartheneggspamiantruslovpleasetrythisathomtvanhenfcatoollobagexotalvinfrminijavamikedouglakoshagolchernykhvermadakaitkyroskohdomesticmousomcljbsvingenreddioyanglinzbkcarldtestnthousandsofthemnathanawaitebleafotfbteashawnbanditorhvskyhellalubbjoshksagenschneidvictorbrizsynchrojesterovskiidoomjaguilillayunspacstefanocasazzarydgeljebbstewartknewmantzanexitrumactframeworklcpmtddkasplundmarkofabianmurariurockinroelmfirricirclespaintzhuochenkiddmarkkolichrazielkbrockzlostervalyaladenkabzdanekpsfblairsteveklabnikzapovjeevatkmsgmltechempownbradidmacdsanjoydeskmartinkhellangnkasvosvkellabyteyepeaocramiusxendhamiltontverbergreenlawdonovanmulludwigpermeagilsaturdaihperadinkostyadithmethanherloctgrobframeworkbenchmarkdiablonhnpiritucllteacheroverzealcodewardonaldkellettjantmangrimradmullrrbrwkbarbernfagerlundajroetkwkaltjohnduartkbrezinamelissaseniorhighbleavendefcongonewestjkutnergraphagorafalseprotagonistshrayasrrwilsonjgregormembershipakoollaoputwylalifeinlightsuperstrexpeznaughtmqgaverhaalexanderkielborovskijdunruhfingerprintadamfreiresterrinconjcsavelichalexhellonicodictionjanherichdgopsteintomasuintfrrjacqtkevingreenmccraigmccraigdignatikneevijaykiraniperdomomgrbyteezbakestsauvleancloudworkfloappplepolyglotrtoalpogophaetecdarkofabijanstrikalymingtonprecisboxptttcljstigdetritukbaribeaufloselbeautificomamitcdarkrodrijonathanchufleetdbmaestromixradioarachnidatisnikjasonrudolphtextlabvinculumalbinfnxlazypossbrunchboiwideamcanthonichunseoklelmapjeethancrawfordblobblclojjajlopezrafdbraidchatchenbodrewrbrianmdzetawartbeddipusherglvalexrowhitconfunionmanuelpjannisobscodembjarlandbraintripmatrossdriietcdaterrenotixiastashovlucacervelloyogthochessromstadpxlpnkminamijobezagilecryfractalaerikssonthemikeepersbsdevprepormitchelkuijpcoopsourcrunbldeivantsovjunjiemarhildebrandwhitepagbuildvizcburgmernbergeratokrwenholznorgataerialjsafivethreeonernfivethreeonrobbspirazmfundingcirclmemoriacassiomarquezmilnasserracksecstanfordmldylanfpricdotfildimsuzrmoehntheatralialeadercultlukaszkoreckibroterritoriorfjackhhucnhyphzbltooltoxicfrogborkdudnbeloglazovblueoceanideamatsrietdijkprojectfrankduoktrateropkatzsimonhydrantsamsaraieurpovloidmeowcakorendliuchangtchagnonsiphiuelkirasystemsuligapmorganchrovibeebstermswiftjshintforebfontaintbrookravendbmarkwoodhaldvberkelkarmanautmartinsotojcfdotenvrentpathfalklandsnootymonkeibogofuzzysourcjtkdvlproblalbmabeirayrutjsonpatkiprathameshchaintoolghaskinaviariwkfarchivvlacsaapabrentonashworthjoeclakclikislacljmaryrosecookmarickdarknethenrygarngastovbsmrimmortalinmdipperiwunderbossprojectoddreititswansonmjamesruggierokolmogorovctfordrobochuckgregsextonunravelcimisnifflturbuljsyrjalametlogmschaefquantisanmadoucgarciabuichristophmrrodriguezcernerwilliamparkkulkarnipushkarfixturexmvitzantlercaribkostafeitrinitiatomixfigarojhaltermanmastodoncbbatsovoliyhjafingerhutreableditmattinieminenmarkikiseventigsnewmarkmuxxdegkeepsafpotokthompsonnickmedusauberimhjortericstewartmnesporslipsetmfikequerenkxclojurexerccardforcoinmhluongomdaleiduckimojotechmtkpnblumorplevinathanielksmithloganmhbclyfelamuriasidcartezisubmanioottomerkkijarcanarmincerfsbauerrundijustintaftmpdatxnagyistocmrwizardcldwalkerevittkennibostohaitchsledwindyuuipkdevboxashneoeasonyiaikolyabenjaminvanryseghemkausdevfdserrhiredgunhousbrabaduyouprofitmasptjoliveirabrunolighttablcraftybondavidcusatimsambolmjbrewerpgrazianorongzhumaheshibmtwaldroplihkindlundquistkennjasonericcrossonknandyamasteinhausfancyhnarenganzrpbannistsolgreghaynryshahpaulczarsivakomallomovwupeiranaldevigiedtubillarajwaibelchannunirajdpandrewrothsteinddaskalblueboxgroupursulapanxiafpringvaldsencgvarelabriancainerikprimstahnmaahpookdankreekershrugjeffmccunkylogcamlowwaynrrlinehanpuppetservcpriceiscbarberkendbtestjenkinfeltdecommisstbbirulllovewsfgokjulifdaproblematconfirmnvdcbordataformatcastabloperandsuddenlihexificodebasencodehexstrlancetresearchteargstlnkfcadebdesiritchdemandslowermagnitudimpacthugerepmaxtrufflblockchainpoorupcomlaziliadequedfcjoshtriplettdbdeefcftriplettjoshreviewibmvnetmckenneipauloregonstonidfadahmmishandlmutantiftekharshortcomkarkipratiktooooexaminreatsoulreveallearningclojurifierfbechooddbcnanchenstanislatonskimentiongivelooklistassetcircularsearchresultaclojurchromiumnegotinilensodcdfaebfasinghmansamratmindfreshlithoughtremembeddckumarvireshmakefilpetkaantonovbluebirdsuitablcdaappshargregoricallercdfsparklrockjackuniformbfbrealisquickliannoikeystrokfefetricklcopecleanersigintinterffdapractisdeccdaceadfdfchellerbffdfcsetqpzpagdlyresultsetfetchsizccdconcatencosmetutcnowdiscendumedakoskinenantticontradictcfedceleechinyenromdfccrobeybaurbaurericafcafannounchashcodportablwhatsoevmeantpreviousunreleasoctothorpjiraphbccthingiinstanticontributpivotacdcbeacadachapmanbenwiparityexceptfeashovkoplyatraversrecognitermmimedresdentumailboxecfedafebccvecvedetailadvantagamblisurricatapreceedmodifunderstandnotifoorgeclipsejettivulnsnykpgjdbceaskeepinaccessunisonunsurprisinglireferencadherhaskingregunlikassemblitrafficacfmarkmelboifunctionssspentfuelobviatschmancibunchwindbanknotakasupervalidaitonagoaerobiostupidprovisorderservicetestresemblbonusalariwireframwgsetcomplicfilesystemwatchlightweightfolderdangersimplistcursoriargwebflowprxmlsweatalterantandienttininotionbuildsummarireachlambdadheldprocfilarrangpotentiverisonbulkprematurindivbugfixbackportdemonstrsemantlibgdxpleasaccomodandbelongcomponentwillmounterlangstrategipresencagnostmatricdepedwejaridentiisawtootholdestritzinconsistfighwheelreformatstrangertethotkeishitfucktonovercomoopdbaupddatautoscalpassagsegfaultdrylaidomatunchangexplicitreadiblvaritihorskingpotemkintreatpaveleagucolourshortenideaverbagapproachkairosdbnashornblockliclassloadrelibezierseamminifibehavplacementhierugenmillostonchangbarebonggdistrogpioainartascciwasnaddontroubltypespeccomprenhenshangminifunwantswitcherconsolidleapsmlxlexerboilerpldirectliserversidabilparenorkfromwlumounmatchknnhotstderrhavendiscoverifaultermoderndropdownsigtermsighupocmmentmichaelklishinservicenamdefscreenradagastmeasurgutendropwizardcharsequcomicrepositoriincognitogendatadefgaugrobustcastlbounciaccuracilibratrefheapinnuendoparsleibulletaidollbacklogoutwantpossibliflexibltldrumbyteablattemptaudiobuffdeconstructtweakundograceepisodseasondestructpropagsingularisinianticfavorretentioncontestunneedhackicodeblockmacrowbartypemodroundtripsaxonxsltredundnnatprepcljitopolyphoniopendaponixexploudrectionthumbuprotorpushbackpbrthrottlpersistentvestigiguessablparadisbreseqstripmvnrepositorisubtaskharexclamusablutcmomentquorumconsisttmpdirunqualificlinetclourbigdataresendfavorittweetspeakerjakartajavamailseleniumdrizzlfirebasshorterregresslessonarmstrongcaretdefcompondabainsufficibattlfizzbuzzunifbyddiuselessoverflowallegedliquickstarttotpatrecappeasgrabclojureispeedsilenccoalitnoismistakdumbasskillhyphenlightertadhardwarslowsynchronpossiblslideinboundtodomvwebworkunfortunjlinercriddrivenleftpadexceptonfuntionclojushcouplhoplonomongohqswaggernewestorchestrjepsenodofficimltempaltgracefullifileutilbatsegmentlaidormantnewerrocksdbbotherpmddependnecinicknamwebscoketbrokeparemetlegiblslightlichooserproofildeterministwildfliescmodaldefsystemchekcaritiguardobsoletdeftemplarrayoutofboundsexceptrrbsonartypconditionreworkkebabcollidkaliumsakecuratsymlinknodepconstrainaheadtunepluralaccurgoalemojieidetagairbrakjacketstraightutioexceptexplansemverwormbastidifancispotstockleakmessageformatttravelmimicsunburstbringracebabashkadamnidiomlyriccapitalisstampcloxpfeedbacksidebarwerenmatchurnonsensscratchpadisecretkeidefautclojourflycheckluhntryislaleinouttrellopolymorphgroovicornerchatdocrootdpisuggestdialelodestructigtestgrouptestcasbukkitcliskcruxclickabljaxbparaboloidcrossnomenclaturconvergscarireadablroutinbackwardunconditionnulsixteennevamrequiremenmenumodulardescendclojurishsubredditacvanccloserstarterfullscreenquoinremakdinamcopastsetterdirtiextranmalformfigurgeodessubqueridiscretccrplethoraclarificleanlikoannooprecentcooperregistrnumelunnecessarirestartunevalurepliccomesendmailclipcopperdocstrligherdeveloibufftextnodecneofportaljnditringmandatorilitterdependendihugsqlconmanfavcursivsteambackupscreamnomipileupcutdependencibumpmidnightswitchreturstrictxorptypounmodifipanemonkeicurliclearermutualalpinrlwrapcpropgroupidcatalystcontainiumarticlcljcolderwebolunushistogramtrdrrecompilteslamyrecordcljheuristicanalyzheuristpathfindsnegamepadwonderdomplayasophifourthchainlousyweathcoldandwindicoldwindspetemperaturplacetemporarilitestfacttrustbashnxttipforgivmessifairlidecimromandimensndimpimplementndarraiexntendstmsfnprojdataframqrtzcraziloudtheurlsetsizdasherthisisrthestrcamelnewfoldfemisscainvolvpiecfrerethipinfoharderprimitparinfmalabarbatubulargermancommonjhelpwarningfwbreedceogobjboadhphackerparadisfbwhitelabelquartiliqrsetdatafivenummedianpercentilpowsynsubstituttextualrandombytbangbingfqlacarmencryogencreditdebitmiddlsalutlastnamfirstnamvendorcjapplifilestorkonservvoteearlimagentamaiorehlagsawwavemicdefunmacroexpansinvocdetectsuspicicolonmemberissuecomroundrobinaclmaxconnhasfailannotatedfailurfailjuringjsonrpccurrentprovidexplicitliganachtrufflesuitbrokenrevertminesmartethereumcljkkkeccaknamehashdistrictevmethbazaarpodisadatastorsuccelevenshteinnlpgetidvolvolumeiddevicenamrootdevicenamblockdevicemapecebanangramfinderchangeordertitlterminateddoriginatingchangeordoperativedboundariofficialnamcrossborderinstlastinstancechangintroducreservedcodlastcodfirstcodarchivedinstliveinstrelatedentcoveragabbrevigeographiongigrigisoldistributorbrandpedalcheckmarkunicodwssavrvgmnosecyymcoukjfxmcsticxspreadsheetscraperimmediunbalancescapvcfcardnamsubstrallcardrupurnammultithreadstdoutreportperfectlihuhstunttentaclkomatchercnamedstdatapaththumbqualitithumbnailpostprocessflatreadasdataurlonloadfilereadfrsickdataurlrstrestructurmdownfobjlooootvegfrederickassumstdoutmoedaprecisquantitiremaincurrenccoinnotarebuildintedverifisdirectheapstringablevaluatrhlhbinarypluthegreenplacbenderskielinfperidotnewsfeinterruptedexceptcurrentthreadisinterruptinterruptbackgroundjobcomplexexpiriidealplaybackellipsdefsnippetsnippetiscomponprototypjeffviewwithpropviewwithqueriminimalviewwithkeyfnminimalviewdefviewltreevipdisktenantpathstorcluciservercertificatemetadatabeangetservercertifgetservercertificatemetadatauploadservercertifprivcertcertifgetservercertificaterequestuploadservercertificaterequestamazonidentitymanagementcliidentitymanagiamconversfastainstructsamtoolmmapunalreordersensitbtahclojuredocavirentalstonemollifooddollartriggeredchunkitriggeredchunkaswapaatomchunkerbugvulnergetyearnomnomnomauthnrealmdangerouslysetinnerhtmlinterpretonclickfaimaccriciducrrevsystimestampprovsmalloraclrendercomponenttostrparsescriptstoremifexecutdsinkkeygroupcombindseqcarrotbananagetpartitmodnnppartitionnullwrithadoopptbmrcstepparkourlargerprocedurltegtesquarpcollsubscripttopicpcollectpbeginpubsubiodataflowdatasplashnewsymbolgetprovidgetenginebynamrubysymbolscriptingcontainscriptenginemanagscriptenginsurprisshoudlnlibssharrtrimlhackerrankfailablexplorstarrnaseqwgseqphtxncqrperfkeybytpermutsomaindentplistemackoeeoadiaabbaarglistschoolgradetnseqgeocommitperitufillrectlifeforkjoinforkjoinpoolapiodemungisomorphunmungmunggrimoirpidruuvifirmydinchcmlitedocxbakyeonodiviblnomistechdiameanorvmrcwirelessieeeethernetmbencapsuldltinvertpfjsonpgetnumericvalusolutbcdhorizontdefstyldefstylesheetsodiumlaciniatorturrcutorturbhrcurcupdatconventdefentgreedidiverdiversifmoustachchallengrpiwelthaallocorruptdecidpmstarttimdifferentibuildnumbbuildidappidlongitudlonlatitudimperiopenweathermaptomorrowenvrionforecastplushourdeparturbergenoslopmapparitinerarijourneitrainjourneiknowitdimanualgammagnoppluggnipexhaustrelevexchangsteepbitmaprosettacodstolenbresenhamgoyaiprojectlistifooprojectaccordionxhriohatnikanymoruntouchoverwritleavcleanuprotermpayloadclojurescorequerihashmapbzzzcampadaptordescforwardcampfirtbczerobytunpadpkcvarinextintrndfebruarijanuaricalendarstaticmethodsdfrecommendrtmsdslabrkeixanadutestservicwedsomedudtestkeirelaisandboxmailgunsigmoidhiddenpercentsgdquadratlossmomentumlearnepochtrainmsetoptimismatmnistshufflpartitmutepropensbiastrialrandometancestorldwildcarddattldnetwerkmxrpslinetsmaragdinsapphiramethysttopazdiamondopaltestarrairowidxcolidxpuikulabejewelslackexitcodmletbusoutbusinsockhandshakpcphotofionacirillaacceseffectfulpsamnthriftfinaglintersectlocenclosunboundsendablbroadcastfigfswthawfreezatagctctcagcagctaaaaaagataagggataaattagataaagaggatactgcgrcigarcljamindirectbuflensbunderlinshownoranggetstacktracarrorbadawaitbddeepthiamitbudgetmonthliillegalstateexceptdtbaudioencodbitratnodoctypedeclarationdelegvalidatorinputdelegdoctypvalidatorrequireinputtypdtbookvalidatorinputfiltaskscriptconfigurablevalidusrgetbynaminetaddressngservernailgunmartiansoftwarpromotdriftfddfacbdfccccedeffefcffablobstorblobrefnewlinodeidsequbigintegttobinarystrconstituflakeidnewidflakeunderliawarchoosgetidgenerunsafgetflakeidgenergnamehzflakeidgenerflakeidgenidgenerhazelcastinstchazeliexecutorconceptpkmdbrecoverivovictoropunknownusernamcouldnanswersenderidsendersenderemailsenderpwdsenderpasswordsenderusernamemailportgmailemailhostchedatastructurtsvcorporatempidseedassemblcollapsbowtisamaustreolnlinstgaiorecleftovotsvlapacktrangeimaximinblaenginopencllegaciclojureclcpuclblastexceeedblackholfolddividendratiolowsufficiexcerecipsatellitllcsigmadexstrengthintelligmccutesmoochsassiconstrictorboalolaccumulbloodthundrosanthonibabiluckpurefridaibathwisdomcfbtpubrsakeypairmicroeastzoneavailamicratepermanbrutegetdependgetcontributorgetscmgetlicensgeturlhomepaggetversgetgroupidgetartifactidmavenxppxppiquerisearchqueribadgcalloutbchangemencodestrvlibstaleclobberelectassistmonolithachievpracticconsiddisablchoicobvioureferncrationalnaivmckenzireiddefclasssexprrespondthizklasscjiasexpmalloialanhickeirichdictionarimrazikmateriaccompanitisnovskipavelgivendummidefcontextdescribcritichchipchatunpackvaluunpackcodworkaroundreliablmeanmessaffectleadmechanunpackdosyncarohnsomniumdpzipwebserviceapisinkssedeferregulartuplrebindcandexpensrabbitmqjocjwalkthroughsetconnectioncustomizerclassnamsetpreferredtestquerisettestconnectiononcheckoutsettestconnectiononcheckinsetidleconnectiontestperiodsetmaxpoolssetminpoolssetmaxidletimsetmaxidletimeexcessconnectsetpasswordsetussetjdbcurlsetdriverclassdatasourcmaximumidlexcesscombopooleddatasourcdashboardcardmetabasevenliexpirlifetimrotatpolexicographgetstrunkownwaitforanswmathkernelmacomathematicalinknamlinkmodcreatekernellinkmathlinkfactorikernelwolframplotswampwarmcomputworksheetjlinkfileformatgorillasetresizdefsketchstrokerectbinlenovoprojectoroptomaqaappletvideotestreusconsecutinstantppgtfvehttpbasicbackendiauthoriauthentmaxagpkeistatelesstokenauthbackendbearerstatelessfnilgreaterdidnthisfnkeyfniencodeclojurfasterjirawiebdarrickasciinemadelimitscenariolocaldatetimgatlomgadvertistobiazjpgpreferrainnisunnimidyoungfemalmalegenderaveraghispanasianethnicholdlifecyclgoodelbeventlogledgerslotreplicadifflogentriassigndefservbreakdownweeklixaxitbodisubheadfkvarcharwishlistcwlwishlistdimprovhasimagcaddisflilumenakvoniocloudupsertmomqclojournhaltfilenotfoundexceptkickconninfodbnamesqlexceptrepmgrhappiincrementstructmsgbuffdefstructgetschemmanifolddefstepcarolhatemovifakeyorckserializmyserializableevdefevunablnssdcdatomicoyetibotfloatvalupbprotobufnumdimenspagertripreportpagincorrespondscrapetripreporttripspscrapetripreportccscrapetripreportspsummitpostclimberloseradsrkrbufampgatecurvsustaindecaiattackdefsynthparagraphextractorboilerpipshortnamundeploidescriptorfntestfirefoxbreaktuftdatomishtrampolinresetallhandlresetdefaulthandlraisesigngetsignalatomsignalregistersignalatombeckonmultibillionairquirkistreetbiggerscoreaifewlinpiyofugacollatzshahexneedhighestsynonymdigestutilcrypographlucenstructureddynamtransducfinitfstdroidpreviewxcgfggtdttaastranddnaacgtggtcttaaugcaccagaauunucleotidthyminuraciladeninguanincytosintranscribtranscriptrnagetfullpathindexwebjarassetlocwebjarmagicbundlerhufollowtweetldimensionmtrxnomadtobiabootlacadzerkfledglightlifnhouseagersimilarupstreamconstructresvalmapvselectvcashlocurenthasrootdefaliacassafortwinnerleaderboardmeritapplenewsapienglishautocompletboostconectdeepsubscenopensubtitlpodnapisiaddictlambdacdlambdauiarraybuffkibanakiritsneimagezgpusrivastavavolumjmlrdropoutfcmretroboardcoolantstandalondeadmanshouterunlimitcheckercomplimentsquiggliacyclchibablmstrmspotifidefregistridefpermissrgdefcardfrontrowsonatypsomewhereovertherainbowcabinettokyolgpltokyocabinetherokuapppositoricentralmirrorfileuploadefteststasisummarcgetdefqueriyesqlformlogthinktopscrabblfluxspamscoptatutfuseunnamjcublajcudaneanderthuncomplkarmaceilicjbeasierdietermchangconchveliscominuexponentifractiondigitscanlexichoveroutlinarithmetreconnectpendingexceptunimplmilkliquidglassingredimealeatcukehasnbellifootnotfnametolowercashnlinkifistartswithgetcanonicalfillangnostmmmbrunchbbbmunchnomsilenttrickigensymdatasetinterppackprocessorenforcdashdashifidelegincomredefinipcrenderipcunparsesdcreatorbrewpayloadmultimethodunsatisfiformulaepmtiissatisfiaddclaussetexpectednumberofclausnewvarnbclausmaxvarnewdefaultdimacdimacsreadiproblemvecintsolverfactoriminisatsatdefspectcbaseurimiscaddertoggldefmutmutatfulcrojframeswingdefaultcollectvisualstudiostubexposmalformedurlexcepttruthivsomonclassicqonearlyfreespeechphxsshhowardlewisshipscptoolchestundumpfullpathhxgmcdrcraftbriandancelectronpeoplinterestdjbedroomgamerhackertexandjpancsoundcloudpancgrocerihebaccelerbeautibelievbarnettpeterturndonbonifaciosmokestashlargregexclasscastexceptunexpectmasktransmitsignalclassificlstreamtdtodosubmitbuttonbrtodoformdeployfsfusabostonfranklinlessercontributorhatassertionerrorpushbackreadvictoriandsbdpembdbgtagsoupdanieljanuplhopefoundatredistributsinusoidraskolnikovpuentbolivarpedrojuanautobuilddevcardttlrollupcarboncyanitspootnikcanreadloadurlcrashcrypthogetarocreatedatphoneencrypttickethalakjarjarrewritfilespecbenedekfazekamrandersonthomasaefsimleaplibsormillajavafxshimwebfxtextcontclasslistqueryselectoralqsaqueryselectorqdomtokenlistiseqnodelistgitiquaggregunprocessrejectclashcandidspacepunctabcdefghijklmnopqrstuvwxyztodaiforpatterndatetimeformatdatetimmatthiasntoolboxkamituelonerrorrunnablonyieldipromisgetbytwrappedbuffbytebuffibytebuffvoidcallablcoercunpoolfuturaroundpositoncambernacaindvchildevoluthydrofoilhitbasementtddphantomjbeathadedshafeeqgistagvisitvisitorpostwalkwalkerletfnnoveltiderivhierarchidownloadtimerinvoiclongerstestautomappstatnotebookmtgproneselmerdivisorbiggestsmallestlargestfactorsubtractfloorcastsqrteulerprojecteulapersistbrandmeymeikelsetscreenresumhideactglclearglclearcoloraddactorlabelstylbitmapfontgraphicgdxbadloguatsharptemperaequalplaylistairheadbedwaxjoltquackovckgunboatjeopardenemimovementcharactmissdogbrownlowercassentencpangramsubselectmemoristmtdialectcschemafullnamfacksubmitpgtestitrasactortransactorrollbackdbspechostnampsqlrillgroupvdomantelopbuffalozebralionguiattentpaitutencodebuffacountamapdisconnectdestiniworkeraudionodlamejcljsjmpixdeltalnmemoknotatoutboxcapacinboxbatchretriomitstacktraceinfastthrowminoraerobureqreppubsubgcusegnanomsgjnanomsgcomplaintsourcepathjavadocinleinpatchjgitmanagcmmaohpauleezelastigccreationdatabindfasterxmlplotxyredgreenblumonitorrasterbockobutlastdoorallowroommrcgetterstructurunmapcarecollishttpserverjoptjeluardmemoizrooklocalrepodatapumpelmnttheclimatecorporthreadpoolclaypoolownershipcorporclimatmousdotthesoftwaresimpletonellistengetselectelidmhashblakebfaffcshadabcfdbceabeecmultihashbasicdcljxnettibinarioctetjsdocconcernnarmareactjminimquiescentbreezwiltransientencodetagcljsontailrecursserialisilifecyclinitialisalandipertbuilderbakerigetabsolutepathmemfncfcloudfiluploadnullqtzquartzrelatgarbaggraphertrickinsecuralexpetrovguidknowledgkmghttpwagonaetherpomegranautoexpectsdkptaoussanidynamodbfaradaiclojurecupreplmtortcontractliabildamagliablholdernoninfringpurposfitmerchantportionsubstantifurnishpermitsellsublicensdealcharggrantmarrstefanrobinsonmanipulidempotprintstacktraccaughtcwdabspathcljrubihardentrypointsensconceptuchdirinputstreamreadmoveunderstoudstandardvalueofdevsrcfreshsanitrunclasssymgetfailurgetfailurecountgetignoredcountgetruncountwassuccessgetexceptgetdescriptjunitcoreasiligreatunsupportunknownembedreasonrequestspeccorrectrequestspectestftpfoobarsanitibeerbreweritastholstonadditsepercommaechogetruntimavailableprocessornworkerrservpiratpatavievalinputwebappsasscperformdegradannotunboxsettimeoutdisposiderefireactiveatomsatisfisprinklhinthappenelimindeadconstatntseeratomnexttickinteropdakronsmilewarloneworkercheckinuberwarproxyportproxyhostdhttpcheckintakeundisprimprimehypirionmixinhlshipjblacombinatorstatistiksubprocesstravipaleltophydepdfitextopengljoglgluegeninterposviewboxbuiltinsablonoleakienumschemaclassnotfoundsuitpresententercoffeemugtmpembeddeddrivderbienduromametofficweatherhecubakixiisystemlifecyclicomponentlifecyclarrowswisspfrtemtextareaeeeserifhelveticasanfamilisadefiwareartifactoriinheriteuosoreuplophonlinevpreamblphalangspellhousfacebooknwflensmkremintwilightwisemandeocdervideodronearturboshrimplemondronorstringifidominaillogscalenisoscelisocelequilatertrianglbasexchillwoahupperfinebobnightwebberriuncaughtdowngradupgradtenanccompatjetmagmaseekercostmanablightbileracecardeeddeterminreadfilesyncanalysspacersentimentlexemholeemulslicereshappythondimxxxisnanaccereducnanmeannanforevdedicthreadingmodmediadrivuktemochkatetribookkeepclumsublimfoguloomaysylustdravenjodafressianoversabstracttheoricyclbassrythmviiiviiiviiiionianchordgroundbpmpianoinstovertunpuppetmvccrandomuuiduuidjdbcdriverhsqldbsubnamsubprotocolensurdbpassworddbuserdbsubnampuppetdbdbtypecommitaccidentworrigitignorsidedualdarkenalignradiupointerweightareagardenmvonpressborderradiupadbackgroundcolortextalignmarginbottomfontweightfontsizalignitemmarginflexdirectreactivapprootgreetpnglogornexponnataldefcrumredundartifactmodifidoesntslashtrailbasedirsilliaccumargstreamprocexercisdelaichaptersicpglassfishzephyrlicenradicalzephyroverridhmactempbraidffirstpersonnanedbschemadbpartsucceedpreconditgetmessagsequentistakeholdsuslugemailtriggsqamazonicacompanifieldtasktrackwriteconcernmgtimetrackonmessagfunpostmessagtransferworkerwebsocketprodwebservlaminaengulfsuchagabsentwontedagentcthbillendpointbrokerhazelcastcthunsigbeatoctavtenorfocusflagrunnabletestlazytestrealizdelivyieldunmountunquothowdiredefexceptioninfoprintfoddevenpalindromspecialfnspecialiffnargnamlambdafnhsqltypehoneysqlcavmdetaildagptjobphasemailermixbasenambamretmapdirnamintrorecipimailpreadtextpastwritetextshowiteminfoldopenitemexistssyncdesktopopenexternmacdarwinlinuxplatgetdatapathclipboardlticontrolashibavectorzmatrixmikerametosinftvileftabsolutrgbagradientresizopactouchablshareteachfilllinearbundlmainactgettextinitializiautomatedittextdeclardefappldefactleindroidaddlaybindpopuplatlngfflnglatmarkerclustergroupmarkersetviewuciexamplmapboxmymaprpcshoreleavblademrhydewlmmapaddresssuspendtransportjdwpagentlibomglolrtbcvvimclojurpstorigquickinodereplbodilexectmuxredlbvalubcomparisoncustombattroztrvnkghregexppathnamsayhiisnuhdialograisintercomproducinfrastructurkafkachrootsmzkzookeepdiscovpztapdebouncdedupfocusubsystemdlrstorertrouterlengetheadgetresponsctxisendrspmutableheadratpackcszcihnzrubijberkelraildmllymlgrowlfseventrbgemfilblacklistwkhtmltopdfpdfkitlibqtwebkitwebkitcapybaralibgeoipcitigeoipcdamianlibsasllibmemcachmemcachincompletinstalubunturubygemgeminferuncheckgniazdostylefruitbdcprintgcsqlitexerialmpietrzakbitbucketduelinmarkprogramactiverecorddeliverinexudigestinifilesystemkitchensinklinterlintossfriendlibusiinnoqpromissumnippipersistcontinuoexplodbovinegeniudnbrwebercarmincaricasonianwallhacklibershalewagonautotestprismaphyrsesamopenrdfmarianoguerrapassphrasswirrlrdfizatbikeshvbauerjslintclojuscoubiwannearthdatanasagovpromptdevelalgorithmsftotakkjungnetworkjungerchangelogcomplementunitfhofherrindividuemacsclitimestampsolverspectracfippathocausgrasppinpointgsontestlibgwtcodahalidiomatsoicegdownraynhookrobertsimplifirestordefdbtestheibeeaeesymmetrdeserimanufacturcallbinserialstatsdmongoqucfpbenumstartupconformnormmemconstructorsutuberoakmanifestsekaonightcodpomshutdownnowmillisecondscheduleatfixedrpingrandpongongoscheduledthreadpoolexecutortimeunitprevioualtpreventdefaultaltkeipresskbkeybindbcpkixbcprovbouncycastlmonadalgoxssmishmashtemporariyadaalephelastischmurphydyelasticsearchecommerchaystackecmascriptjsloadtruxrasidecarquuxbazmacroexpandexpansdefrulruleclaratupleruldefloglibxsketchrespquilsllabsecondariincompattestabldootrieleanconnectormysqldrainlangohrnovemberaincorgranpandaofficmailmofficmedleighpageassortruedigergadlatestcodeinaemitshipnamtypeiddispositshipmasteriviewerbehaviorconflictprevpickaschemauniqucardinvaluetypedatascriptworkflogapfillxantondimaindeterminbarcenterminimumcccconstrainttopitalbottomcellarialspanithickdddauthorwidgetmigecregistfinishfillersimulclkschedclocktimelinscheduldeprectickjuxtmodascendcocosinsinsinenegpollunconstraindefsensorrsamplerrandomlaunchpointspritefeverretrocphikaripromesamigrantniwinzmustachspullarabouncerdclojurmpluxboxreplymainsjacketdrawbridgcdthnetoprimariundercutconclusfdefrenamtranslataddappendremoveallappendgetrootloggsetlayoutsetrollingpoliciactivateoptgzsetfilenamepatternsetactivefilenampolicisetlevelgetlogglogfactorirollingfileappendtimebasedrollingpolicirollrootloggspisimplelayoutconsoleappendenhancedpatternlayoutbasicconfigurpseudowhitespacbrepljarohenweaselgobidemoshrimplotrunnersessscalarshapevariabldatatypdtypeconstanttensorsetattropbuildobclosedynamtensorflowwatchablchannelsocketwsocketrecvchsksentasyncmdashaliterhackidentifibehaviouraccountsessiondebuggmerrorrethrowswallowelapsprngettimasetwindowinspectlistfilcurrenttimemillisshhmmyyyiunixgetpropertigetcanonicalpathconstsimpledateformatplumbglossopeulalimoesnamazonasynchronnottlfinknervoumacbytalengthptextctextnoncebytnoncpfxinplaceqxorcryptosecretboxmagicnonccaesiumnthrecordcfgcrawlcrawlerwhitmanwikiwikipediaensinglnumcalculmapcatcorpuappearinversidftfduratpitchamountkeymapaccessortemporunwraptemporalwrapptemporalaccessorwrapptemporalamountwrappobjectwrappguangyinfinalmessengpreparreactionreplicarepsubjectobservaeronentriclusterfxregnavighistoripanelpushicompressscsssassderaenhumanpjstadiglambadalambdaamazonawwortpersistentqueuconpoppeekdepthqueuestepbfdistancmanhattancsvparseintenumerpuzzlpiggiebackplainboldlightdumbansiplanckyesterdainotifdailiservisnastpathomcancelalterratewatchtowwatcherbrazilclubbirthshirtyearmonthisonameifitabularcapittriggerstrongcallbackcbpairconsumwsscodevibrathalfroundingmoddividdivisseparnotatpolishrpnbigdecimtoastnotifiexptmathkeawarreqrfrmmkdirvariantmaintaindockerfildockertimeouthttpchannelstdorgssltxfragmenthickoriarbdatemoforbiddeninvitspeechcheckboxmargintopstylefluidindexofdisplaicwbfaffdfffffchinesphonphonetcqperrorfshifttilelocallowerretrievhttpkitdefstatclownfishlcmapcmdhasmetadatacategoribokmalparametermarknamejohnverticedgrealunderscorrestrictampersandprecedinterpolplaceholdvertexorientdbparametgetnotxgettxglossaremotfactoriocommandsqlorientechnologiorientgraphfactoriorientblueprinttinkerpopogrcglossarspeccucumbfulligstringflattenprogressrequestsststatuntrirefcolgridrepresentascordercatalogcertnamdistinctcorrelpopulcmdbpuppetlabfornamsecretkeidefprotocolniwiantukhandreithunkhigherrankirendtransactmountiwillmountreifiboxrediclassnamownersidekiqdevelopfrontendsidequartcookicontactmytesteasimadecontinugetarraigetvalugettypidxmetadatapgobjcolumniresultsetreadcolumnipersistentvectoripersistentmapisqlvalusetvalusettyppgobjectrdbmtxtalgoconchdrtomschankthomadrisdefinedbilabelsubclassofsubpropertyofsyntaxvocabulariontologirdfgrafterhttpclientdatapromisparentxducercmrfallrxriakbucketriakmongodbmicroservicamqpexisttypicreceivphotonmapreducdissocsumloaderjoinerlookupundefingetitemlocalstoragstoragchancarddecktouchbannerimgnbspmisakiliquidzribbonpxmaxmediaprettifialternicofaviconiconshortcutscalablscaledevicviewportdorunnumstudinstructorcoursenamcoursenuminsertwrongmajorspoonpublishobjftriflrfcblogdragoncddrprismatschematalvhcapablicecapoffsetbuffalloccomposprotobuffershortfloatbytebufmwarnimplvariadinvokmethodifnacceptarisadjustdueunavoidimsecintervhourminutresubsequsleepmrepeatedliinterspacparselonglonginterfacsplitqcastoblitercascadtruncatpostgrdefdbkormadoctopupartiserialphabetmangareadrssfeedattrliulselectorfoxpatternmangamangafoxcanoncgrandgetcircuitbreakgetactionmetrpoolexecutordotosetbreakerconfigtimetopausemillipausfailurethresholdfailurtimeperiodinmillimilliperiodgetbreakerconfigisopenvalatbreakercljbreakerdeftypilookupbreakerconfigbuildbreakerconfigcircuitbreakcircuitserviceexecutorrerendtouchgetelreconcilshredderselectcommunpokemongdomdefuicruncherrefreshliveleipziggetelementbyiddocumentdomfrontfunnelkongeorcloneminipotoorequestgraphiqlreadischemaexecutpedestproxigraphqlbggframeworkjlineinputreadtrptcolinhappierfitterrepliinfmetatridentbacktyppropertistreamparsstormtopologigolfadvancsubmissproblemteamgooglemailsmtppwddarksolarschemeultravenantiuamalloijasyptcongomongochristophermaisandbarbeginnlispforeclojurstackcalcwirecortexaslcodehaummcgranajacksondecodencodfastbidenumermagicianevbdtspearinitrdphyzreladdrrepletvaultprinterpugetclansirosejndifformjschjcraftninjuddclasslojurdepotunclforkcakespecljniwibstantlrinstaparsobccbakpakinwebglezglibcatacumbainterceptorgramfordextersedxtrspanfootergloverlaigamejailclojailnightmodexternbeiconrxrxjforeignoutdatsccapturvvvvalvalvantqkondorefactornsorgdeclmdstablfilesetmwdeftaskexportbootdaemonyamldocoptalphagovalertdashboardblinkengovukfactsweetcircleciuseconcmarksweepgcxxxmseesawglobmidioscjnascsynthincubprogrammovertonsayidbillpielvanitifingervisualbenchmarkparallelparbenchbytepersistentbytwhidbeimerkledagblockabortpedantunlicensdomaingreglooktreestorehybridmerklmvxcvicennaquotavoidwrittenstringwritexpectircljbotspraffanimsocialcountriexpandextendblankdefoncfaceboardbindirchexslimparrgbextractchauvetfixturevocomputchanneleffectafterglowhiatexpissclaimjwtauthobbconexpnoticboundfashionphpcovertermreservrightborchmanndanielsetitemcheckrespectcurrgetcountgetcheckeditempositboollvsequncadditionitemindicsparsebooleanarrailistviewnekogetnamendswithisfilwavparsedoubldoublsoxibrowsjbossissuimmutinsidalhackishkindaadmitedlidurationinsecondgetframelengthgetframerframergetformatgetaudioinputstreamquestionstackoverflowsecondaudioaudiosystemsamplsoundnewlintrimshshellxmlbooktalkdaisidtbmdrremelemrowappldefmulticursorheightwidthsurroundborderdrawterminboardsnaketostrwriteranalysidumpfilenambytearrayoutputstreamcognitectcachipfeatureclogicdsldesdemonaprparamcomiccuerdaswoswpjarprotocollayerpostalavataremailpropgrgravatarperunverififlushshowquitconjurtestalflatlanduberjaraotskipcljfmtslingshotcreativecommonattributcreativnicokosichartstatistactivstravaworldprobabltotalposteriorlikelihoodpriorwinhashtablbayawesomfontthemedistbootstrapservicsubtitlngsubmanauthentlandunauthorbcryptcredworkflowclutchashafaoauthtowerclostachubercodfriendcemerickhttpclienthttpcomponbidikitstuffthingcoolcentintegrwebdrivprocessjnrplexuomaustinfigwheelchestnuteoipgvswapretsendconstantliresetchunkvolatilcntstrmfoundkvsectiondirectdefaulinformvalstaticscmsetupscrapeenlivagplgplafferognuaperiodcowholioglermarmarkdownthreadtrackusagjustifipremisstatementloginbaseelektroautohostawfuhyaxndiscussreactifimobilepatiregistercomponappregistriregistrinativreactnenablsubsyncdispatchsubscribandroidpatientmobilagetgetimagedatapositpixelblackgreenyellowwhitethresholdcolorgetcontextcanvaimagkatarobotscryptscopesecurhasherbuddisorttopologtodoarengrammarcyclicunionopsymbolcharexpraliawalkreductsmallexgdtransitfilepathfapplifmapnestdeeplideepfngreenyousautodocmavenjlinelauncherantcontribtechnomfirehairdesigntaskformminiwalletpandectjavaszxingsimplguavabipdbaschjdkscprovmadgaggooglecodbitcoinjdiegobaschpaperofflinbitcoinrawreplacfixintconjrepresbooleancollvectorombcommanddecgeneratepermutincantslfemployeerepublkabelgezwitschreplikativcollectortwitterthrowabloccurevalusafedefmacromikronwhitelistemittanalyzoptimexperimentoxcartarrdemformattmockitojunitfaultcloudservrackspacprovidjcloudpalletpalletopfixmtrotterfoorepetitlaziinfinititerdondropbigbeginsequencwairangwidemeditiidotimtestfnkrbruntimeexceptfatalfinfoftimescalriemannappendwalmartlabappendriemannlogbackconcatemptistageshutdownhealthisuffixrevissolervmcheckoutvcthrowlbbalancbackendgetpathextinstancprelocatproperzipmapregistcategoriseqabllangdatedefrecordexcludfataldebugspyouttmdoallservclearavowprecompilstefontimbrtaoenssodirectoriparserintegstreaminpututfcharsettokencsrfreqforgeriantiloggergzipsitewrapmiddlewardefroutpostwebsitislatimestoricontainheadercontentwrapperbodiminjquerilibgoogleapiajaxheadtitlmodecssunordtagredirectresponsdefpagdefpartinoirhomeviewtryclojurerrarraixsdformatcallargvmkdriversuninternxjcsubpolirepeatrecursnicemultipolygonpolygongeometrixfeaturfeaturecollectfullimplementdoesnspeccoordcoordintakegeojsonconvertsvggeocomparisonprintcontextdefmethodthrowndifexceptthrewnoecatchjoinreversactualpredctdiffreportflarespitprettitransformreadmpreventprivatmergsupportprojectnodejherokudeploidifficultdeletbitinlinresolvdepnpmpackagejsonrecurhighlightjumpputresultcurrentwindowchrometabcondpkeywordscriptmessagpopupconnruntimconsolkhromabackgroundtabswitchcloutweavejestroutconcislayoutvmrepackpassincisproperlipredicbuiltmannerevalchoosealicensmitleiningentemplatappcicirclfreemidjmichaeldrogaliadaptprefixanchorlinenumbloburijadebfineulanddesommerirhinomozillatrackerlicencssofwaravisonovwebpipelinassetextenstwixtavisoperspectivecamerameshcondchildrenscenereactthrecreateelreactthreejdefinitconvenieventgoogabbrevmacroelementsalamandreadslurpprintlnsummaricredentistringvalidacquirsemaphorutilwaitgengaugmetricinfostartstuartsierracurrentbifrostuswitchsizepagesearchhoundslamquickbenchdocdistilinjectswankmarginaliakibitdifftestcloveragcljsbuildcodecancienteastwoodjonascodoxciderspyscopslamhoundcriteriumalembcegpgtutorisynthesihrefconfusmusicsyntheditnoteletinteractexperisongmelodiinstrumentmaketextatomrenderclassdivstopclickbuttonloopstatehandlcontroleditorgraphjamuiklangmeistiiioiioiioiioooooooiooiioiiiiiiiabjabfabdabcabecdabxyzfghijabcdreaderioaaaeeddccbbaaassertcommentpartialdefcompcounterreduclinexformsolvfrequencletteranagramcheckunequlistoriginlengthcomparduplicfindsimplipartadventwatchaliasmoduldiroutputclientbuildportnrepljresourclockjsonpackagednprotectcleantracedaisecretaricommondevtoolbinaryagreagentshadowthhellerunshadcompilclosurgooglclojurescriptrcframetodomvcpprintreleassignenvclojarmasterbranchgitrepovoomcomponjettijmxplatformqueripeeronyxonyxplatformsrccheshirdatabaspostgresqlbetareflectwarnvarglobalxlintjavacalphaasyncjdbcexcluscatopensourcclausbsdgithublibrarijooqbacktoolkitsqllevelhighsuricattafuncoolxmxjvmmockservletjavaxclasspathnamespacpathsourcdevreloadautostacktracbrowseropenproductprofildestroiinithandlersecretgetenvsystemaccessawbeanstalkleinplugincompojurringenvironhiccupprodatomdependhtmlepllegalpubliceclipsimdburlbacondescriptsnapshotkevindefprojectsuccesscompletpendbeehivefuturcorrectliworkstatusstatufunckfalsremoveventuconcurrprecipicuncontendnetfuturbeehivlimitpermissgovernlanguagspecifimpliexpresskindconditwarrantibasidistributsoftwarwriteagrelawapplicwwwcopiobtaincompliancversionapachlicensbrooktimothicopyrightruncasenormalnumberincludjavascriptjavacarpetcarpunctuatignorblueredfishoccurrmultiplphrasefileloadcountwordunsetryanmcgmultisetupdatedfebdaaeuserroleaddadgenerhelperidstrobjectidbsonorgimportopermccollectmongerdefmigrmodelyodefinmigratcadenckeisignaturbagdoseqidentctxtsavelinkattachcreatfetchendtypeoutgorelrootdatadbconnectinitinrlrelationshipnnnodenrrestneoconclojurewerkzrepositoriwalletasidtrueforcpulltargetactionadminusernamapilocalhosthttpserverpassworderrordefaultpushvvvextraincreasverbosnilblahcodemsgexitseqconfigconfargumentinvalidfailconfigurdeftestoptparstoolclojurtestclimirthsynchealthchangmatchvecfntexturplayerfunctionsupplifilteroptionentitiassocswapappliargorthographcameravaluassociderefmainobjectmapscreenreturndefnrefercorerequirreplcljplainproblogindexgreatest� XA ¸��5 !"#$&')+-.012345679:;<=>ABCDKPRSUVWXYZ_`cdehioqruxz{|�������������������������  %,/8?@EGHLMNOQT\]^afjlmnptvw}~���������������������������������������������������������������  "#%&'(*FIJbgksy����������������  (+,-.13789:;<=@ADEFGIKLMP������������������������  !$)*/24?BCHNOQRSTXZ_`bcdfnopqrvwxyz|}~���������������������������������������������������������������������������UVWY[\]aehikst{������������������������������������������   "%&')./0123456789:;<=?@BCDGIKNPQRWX[\]`abcdfghijklmnprsuvw056>J^gjlmu�����������  STV_qz}������������������������ !#$(*+,->AEFHJLMOUYZ^eotxy{|~�����������������������������������������������������������������������    !$%(),./01678:=?ABCEFIKLNOPQ��������������������  "#'*+-345;<>DJMRUWZ[`aefghjprtuvwyz{|~�������������������&29@GH^_bikmoqx����������������������������������������������������������STVXY\]cdlns}����������������������������������������������      !#%'()*,.01234579:<>?@ABDEFIJLMNOQRTUVXZ\^abcdefhklmnoqrwxy{}~��������������$-/8;=GHKPWY]_`gituz|������������������������������������������������������������������������������������������������"&+6CS[jpsv����������     !"#$%)*,./02345678:;<=>?@CDFJKO�������������������������� &'-1BEGILMNPRTWXYZ[\]^_acefhjkmnsvwz}�����������������������������������������������������SUbdglprtux{|~����������������������������������������������������(+9AHQV`ioqy��������������� !"#$%'(*+,/89<=>?@FGIJKLSTUVY[\]��������    &)-01234:;ABCEMNOPWXZ^_`abdfhijklmostuwxyz{|}�������������������������������������������������������������������������HUf`cGKFMVDOG�j`qbGFPGW@DOlMHdIZOeJCFQX[HKmSkkGERGoP\YU�jaCd[SNiD@TJk]SCPMGjF\caBGGNeI@cmR_peG^ShuCGTa'&&'1$/6,$ ($'4,4 #.&, %+3;#$45*skYNW�MP}GD�rZeiGtGHvFUO@Qpm]CJKo`GWG]`Fn��WXjilDTtcG\RVCHQ]zn`bDz^M\FGiJAG<=460/4;9;4:<<<?=95?;?>=;:>0?;?><=<ZI]JOB[dKWRA[G[DjgPZmG_U912)#.)4"%+( ! +:91'.5--#,*+-'*%-62%VYhAE[vVCCZL�gMxHSLUWVOeizgEHTJAZ�|_fq��Hdti�KV\�O\FVpSN^De^eAjbGGSkT]VFIcm^cC[qC{PDFhi@U^�kKLTS[BG!!/ $)8&%(;&/3 6 !-$431'+,8*,$#6GGMMw�R@jNipGKK^AG_TS\F\�cR|ReiBFcd~SF|PJJ^bRGOUKlGSNh[F]]fvKgFJFiTREGHZ[XPD]EO=<=?8788;>15<(/?<83=?54?=>.2:=>?8;4|dTLLk�HM`sGaG]aF]s�JH\QGG$,,%)0+%! 7!%(0$-1 )10%!7 1(!+6#,GiDTnLFB�MnZmJrdgrWCFJ`ZNXq�|vZC\ZyPQxPbQLRQWObPeUd@�jFcPFApidyDPO[GAFVnaMF[EGRGRMTGGVcDNGPBPowITAG�j`jvHda_p4)4#52*'-&<4!&$71%. !3*&9/6%"+95)\@D�GFHlYjG|IGR`M_En@W`hJHUI7;<:<1<2=?3=;;1??;=;<0(>?<??>?=47):`Fa]_XDU_iUIGaL]OuKiJ{�UUFqC@[RYee_�ICfJVxNFpoyAeJJG^G)0*!627$,&)'* :&$ *% 7&0 +:$8 '246"#),(&EvaJ\QUFGUXNIKRUGF_Z^cJ�R_GaIltf\MVRi@IK_ZfOQ�_^ffGFOdGGBQHH|~d[kiDGs�mqp�]qFlQJ�HThXPaX�EAHbgQbGCJIPtEs #"29(49, %:$;)$(,7-7 -6'/:7,*&3QgIDJi^NkIEOzPlKFFxCL[�LokPpQSLZMDxGLAGnl\@iOC{dWQW_jPl�GGBrcJRlWF]JPMGGZIE35;=4/<-868=6??;9?:>749=<;?<5>><9><X\KLsUX^YFJQHVpEgLLHiFIfB[�CCL{uQKda_DiaPJLzLXms_EUMi(20&%6 9'<,8 ,$,06626/1%/ 526(7+-:4BYJWu��ALCHSrGoleXLdJ]LbghOSqJa^GIPI[�jFIGGVFJe^QGd\DyqBZGGonaINGiggcYKKlb�L\H*+44&#"111+ 0.0!%"8#%)+(!-/%&8869'w�bKF�WueEIQn_dogN^bfQD==9><3<::$<?5> 8:?;><=:;:<>?==38520�CJGF`[MA`GpG@hC`AqxUmMGF]F^IdSu_`CVcMAZ#*-(#7%1#(,4 %4#334,*=18)//4> ,$ MIeJi\kdLkdF^GBHPE[XeHic^c�K[YGXOFTFomcWR�FNEvZlJy]P]OLBTK_UfLKJvRS�MNKcE�HjcZq@S�GXPQ�OvaQf^�?e��D"5!B#(QE!35AD3�cFV111#1CcS4421!dRAD1EAB!BC1e11ABQQB51A13$"232!#2"!C$12"1##"3BC""1!34#1!1#13211D""""!Q!E#"!!%"4B#Q2Ca1A4#!"!151"Q1A1QQBB24C#5CA1#S23116!sAq1113A225A#"%Q"C#B�!T!&BSDA132#SDQT41"#!#!B#""$33""3"!B#D1US52C4C3$"#1$AAC8DBA$%2A!3AD!QB!s!A1#13�B##3A131!!q!!!11A1"S415B#1131"2#"BU31!!!1!!11A1"5Q1B#A"#"$$51A41217!!111A4$3$14$"2"#$#ARQ#12""""#2S2"2"#13"2!2""D#2A2ABB#3!!2$"$A2#1311!#1!11$11CC3"34#C1432E21#22�Q24$CS2!$21D!""2B2C"$"$"B2H5"B4"3!B#$#B!dD#UD!R3"33#"3!333"!B"#2#"2#4223#"C1B##33"24D4!F#$21Gb$!$2'!4122#B"3##343C34$'"$#2111BCB53AaQ$3!sB""!a!!##"V$2!3"3!#"#!"Q$""AA1!!1!DBA1"BbS31!!!1!!11A1"111!!1!!111!13v!#C""4$"A11!Q1C411!!13###3b2C4QA1t1QQS3AF$"BER1A1W!!11D!1"1W3B121%31'%5d#SCQC!Q%DDBSC1$SCQ#D####3A322E1"AAERC!1!AAE"!C!1!a!3Cb3QB!D4FQ!D$"!"3!2"1"#""$2"DBC2"BD$4311#4S2B13!gA111D$Q213B#QA144T4"#$5!"!4b!A"4SC1411CA4AD$!"4"$A#$BA!F$AQ1!SA1%1R!5D!A2A12���r��AA!A#1B#11!!11!111SAB331!212"2114$"C""!C42DAA11#121!!11#31!!q!!!11A13scf13fCf4f#B3c:3#2AB2&B2B2fRr!r!�!�!BQ!!#!3"#%4T11!&RA4Q!4Q"B#"1!%1B"1$#E!!#!S!1$!B"!$4C4ETDADE!CQBR2!"1BA"$A22"$B#DCB4$A!!22D1DCCBCA!C!3BC22D1ACQ!$1"32T21C&#A"""##""1!"3TD$A!41$41#4aaDAD11D$DC&#!2"3#2"dA3&C13DD4C423232#$4"#"A"B!Q!B!!"3!AA1!!1!2!131"###$14""$2C$2314"13c1C2C2tD3"T#%"1!A"sA"b"BAEBDEB"A$$22""A2!$""A2!$""#!a!23#""2!Ta13f3#133Q1B1!"$"BD5B#$"4$"$$"D#""R2A"U"$"#""CTAET1"AC3E15T15T!1B1CD14A3E"#!A!212#1!!2"#!!C#SS)32314#1Q1A#DA12a"E1QA$A2A%!"!4"2AU$"""!A"C""%"!D1!1!3A!A!31!3A1#13121211546B3B22#2%D!RAA!GE$7�$"1$J4�4"d2c2R!22!a36Ce3b3"Ee3d3$Ee3RT1#12CQ$CQ2QR2S!#2#"b""""2"%3b"2#"R$"2"3R$""!"243"43"1D5T2Q1"AC3E15T15T!#D!41$"3"!#""A"D!Q25!"32"""B"Cb!3dB$D#D"CCA1B#11!!11!1A1SAB331!212B1D11QARQ!13AG13$BBrG2!"C1'B#3$"B$1s1$#""Q1!111!!1!!111!13v!#C""4$"A11133224Q33C1C!Q#4343333C1S4C"EAB23##333CS4C1C#C31$�(3H�43R1#5RA3C!#�%�(%!1F!!1#3EAD41�23BDCR331111!4"2'!2""A!#B#2!#22"#!2C!4"2""#!!!""!aQ!!R11"B"C!!!!!11"1C32!SB"rTD$#!"!Q!#1%%B!QQQ!!$B$#$B2BBA"$3#"D"A1%DB$!$DBB!B$$3#$!A1!1A%DBB12A$4uQY$4#%4#B#!AB#A#DB'!AD1!"A!'B#1A!BA!4AA1Q!3Q12D2c3"23f!1Q4E#!AB"!#R%RQM41�11S1!%#1Q1R*C"!415"R#B#5B13#24#2!1#33BCs1r"939#3"1"�!1!SR!$#C3!#1"$23!3!2"""SB%"!"!!"E"#41"!T!"3R4#242R�1B"#$1323eC218C1QQ3#532D3#3332C##!2"$!U3A24BD2#!D$333"1#!"3!"$!31!!q!!!11A1"121!!11#21ES!!11#"3B%"7C1$1#3TQB#C1U4121!62#FCA1334A4A354Q3A114$5#2"BB2$5"$aD3C61!2"5!%D4D"3A#B$D#!R4DdBGF$1B#11!!11#Q�Q!!11!1AQSUQ31U141##111!1!!1!!11113$13!##12C1!!111AGACE#3$431!!q!!!11A1$#!b2"#2E&fCE%1(Q"c2""2$!"2"RaQTC312Ab3411"AD!!4!C#S231!!!1!!11A12D!!C%112Q1SE!!32!32"!11234%%#%%C%%%%131!!q!!!11A1"121!!11#QB#11!!11!1A1112Q$3%!TT4A""#!D2$22!!#"!"!B1A$!1Q1B#QSUqQ31U1312"!1$1s!!1A1C""!A1'1CB!1""%sB#C1C1d!1W"4A121%3!$1"C3$!!1!!BBQ2CA3!!31#"!CB!AA!1D!!1A$AU35!21C!d!1D"A!QQ4"11CuQD2"322BD$BC!$4!3#3"#4""13#4C3FBC$1$$$"2c1#CCS4RDC"""2"$2""C32#CA5!2TAS!TU2233S!T152US5%T31%$4"%5U54U2SUR&CCRDBCD$BBT#CE52A5TCQS51DA$$$DB"A'CBUQ1!CAGA!1q!2�1""11QBC(D"A"321A("B""1�1!!1!!1111131##!B##fC$#!11V"!1c%A11tQ31!!q!!!11A1"1B#11!!11#B2!!!164BQS5%$B$$B!sB#C3!s51##3!14!32AAD1!a15$$"""#"""1A#!A"3A!13133B2212$#B!$A"B1!DB""A""$$"CD""#bca2214!!11D211(ST!2A234#E1D11$"3%2#"34"3!2C$"A41##12C4!"!A66C6#a3"QT6Ca3$QT6#QTU41111"AS!2!12b!F2QDBfET4T132331ACQ"bab3#qAb"EsB#AC64dC&14A�51%#U!"sB#C3!s51##3!eQS"D�#��!�ACRS321#1!!11!!!!!11!1!1AQ!!11C1A1$311111!1!1!1!"111!!561Q3C13EBR!33$4$#S23DC1R23C4""%#'$T""2R"E�$#E!r$BA2B%"%RHBH1R2!#"hC!�$2%$21!3"!4""2RQ5231!!##Q"4%2QA"3C$!""$!!AB"DD"AD"BD"A!"DD$!2D$""22!1411CC"14#C3"C3"#C3#514#!#!""!!#"#B"22B!4!$#!213"!C"!1333R6C$32CDDD1#3DD#41$s2"72"!"!�1#!2!"4!42#r"SC123B!3#b3R#"!1"#C131C13C"12�S11AC1##q5q5A"!1"#!D1�#!t342!1�#A1�%A2#1#B#AC64C13D!Ab#B14SSA1Q5A1A1DDCAC%CACD"32SR$#31331!#!!3D2"!!!!"!B$11"""34!2D"#4A"3BC"!$B""!FUDQDU1Q4SS3BQ11E"3"BS3A4B$UTBBDRA#!11A1!BBBC4TD5%C$B#A%EB%"2"A"$D!SB"rTD!D#A!!B!"#3C24#SC$AC225C#3A225#$2141C3CDA3!E316CB4S3E3c3DTB3215E1Q111"D3!3Ae1"Q3E!#2RS#11"1"!3$2!2D12S2DCS2�"CC#C2C3B5D$$C4!ACB2#C2a3#3!TQ$"131QR#D2CT!!1A1C3$1D4C311$24"A1!1Q1B#11E1UUA1SE1##q3A#117!!1aQgCE3A$2#"E1dSC11aC411A$A"E1A113DD2#3#S3D4AD442%5#BE3%2421#!B311%#3v!1211B#11C3#11S3#C#3�#2"2#1##332!C1S$#1SD1%"43"131315233"1B!2332"C$5�$#"#B3"CCBB431B22##C2!2�#2#43�41C!"2B#!"BAC#!3!$232$$#!!"""!%%"!R"""!%"""!""""1"""2"R"A"A"3$B11S$##%###%1$1!"DD!BD423343#DDA$!$D#11""#C5D"R3"DA'6A34CAT4RBB2"!##ABr##!A#$"A!#3"4"#A$A!"4!11""CC&#%"!1!#1!#R#323QAQC4Q!4Q"BC%21##31#3c33a31#3Q$33A3XAU!XA$$!1$24TRCAB%Bb2d36Ce3RTUE3!2A"#c!!!EARA21!D!A"4��qYR�'r�ur"$'U!%"2r&SAq$!3#1C2333Q#33!C!#$2AAE!%"#"""B"B"#"#5"5""$B$D!a$1Q!ER5"""2!"33443#3DECA1Q1!&R4Q!4Q"B#"1!#131#131"1#131#a"1B1S3A443!CAD6aD433A$323C2ADCD3DCB$13CC22T#CE3C1322�S11142WW$""#GB44C!A4DA4E214!C31"�3!19#�3!#3#3332"$2D33BB42$33"r22"!!23#12V21!32$1#2CQ13!1QCA52%"111B#11B33312b11C2c1U11$!213!!11!"B!AD!23#BA"$A"BB!""$!1�1!!11!1!131#!3S1S63DG231#2tD44133312AE!1BE$DC%"2!#S222C55Sb4B#44#"2111"112!#"1!1BA"3"2"r2B"!B"$!!$"""A4B"""A!""A""#3B"!22C22$C5DCDB$3333424$CBB33$#"#12"31�2#324"ATDD2!#AA212!1""Q(3A3!21111s3"#2)H�4�13116!%Du%B#AA$1DQAeC!111!!1!!111c22$"BC"B1!1A11!!B#!AB3BbC!2!2t1!35#QB#2323"3"2"22244A2B#B#B"Q12#cc"323#21313Rs!db#!Ae1A415A2#1!!"#21D!D2!$B3#1!!3B%&3121"TT1t11QA1a124T"3211#3"523r$!%"""22D24223#3$$#S1!2#425#5#$#13C!111Ac3"3!cTAcAc1QS14A%"AA!112#!$#1!3!"#!R!R!1!5#A13y3BFgS!BTCWSC!"!"4""B23#""1"EE!aU3$$AA!BAaAbA1D11B"D11"#!3D!!1cC44!QB#112#1!"3315CD3%!"#!S5cB#Q3111#3#Cs1223B%AQ"3311"!Af3A"""B$CcbAAA"S!E1"1EB#!1E#B3#23B$D11S#!121c!!!#%QU"$1Q35BAC1#CS33"1E1#CD#DDABD3AAQ!R!R!"!B$1CB!4#%##3"21"�1�1�!4C""AAa4C"S!E1!A!3E143"a11TD4B11D#2�A12B233#DA33312'R6d#3CQC!A%DDB3C1$3CA3T31#Q51"%%R!4TQ266CS!2Q1"#!A"bR6t%WR22qB#B$"#1#1A$c#22D2621B"A"!!4"B"!#$$"!$#$"2A5B$1SU%%3!"5#S2T2#r#12%s%3"A#12%C%3"4#CU%Q4C2Q""##"3#"CU"#3D3C$2"1""R3�#C523!C23$CB!#"$4CDS!!1"!�2R!4Q!!1!#1424R#3#2##1C!1#22D1BA#AB!"B#A!#!AA#$"#"!24$#!!1!A"A2C"4CAAB441E$E4D$4CS4$BB4"S"22"C"D22"24"S"2S1!UAE!2CC#11QA1a1#"A"24T"32A1BC"CAB"6C$"$!%32"'S%7#"C47"27#$!t!rsRA!B%"!""#324D243C43T43C2T4A34""!q2R!5#E5C!D"$#1""1B#4""#1"1#331!!q!!!11A1"!!C6$QT3$$$B!"C4DDB1A"#!1212D32!S!U2f24!2#1312bT231c"c"3&"#Qc&C#33�R!%T32#�R!%%T3D3b3#ab26c3T6#EUA3AS!21"#cQ$EAA#2113rA#5131#1132#1b4$$C!DS31S33131#"!B!"!!!12!!!4!!2BAA4""!$AB2#2T$!AB1#A"%a%#"2�1"1!2#15%1!#!A"A2S%QQAQ%QESR2R#RAR!%"3T3GB""$"#"!1C$3)A$"!232�"!$##2"$22%!$2"22""##2!!3!#!3#2"!#!32!!!#A24$ADC#B1""!B4"R1#"B#!1441C""3!SB3R2#4#2"B1!D"##11A$1#!SA3!!2!##c!ACACAC!A"3"#E1dSC11aC%C411A$A"E1#F4421F44!!1"#111#E1!DbAA#!B#!!!D"422#"R"!!BT"$C$$B41!#!B#"4BS"C"1$!1!!344421$T!T"Taa3E22BB!B"##B4##R1aSC11aC411A$ACb"S3"Q#112QS3!C#B11!EET!4T!1"RQDEfU#"2"1"1"!!A"2"B!"2C4#""!AA$"TUf4!2C3DC5B335!2!!1$"B1Q3dC1SDaA5C�12C%42SEBa1i11Q!1tb11f11CA"""B$CAB15A!#!!#Gab!31!!q!!!11A1"sB#C3!s51##1%3A2�S111312Rq5q51$"$""#11B#11!!11#5AEQT4##"!1#1#D1!$BBBa51#EFr3#CT1AC%AgCx+(D3bS#DD412%""B'%$CB#"""AD!2C11$CB345C#32CBA2CC1"#3C353"CC3"2322#53#32#35$#A12C244%c$B#223#43##4S3BB332B#$ABD43S#2%3243A!#"7C"3"11"DB2""#"#"D2%"D2S"2$5"2S%"FR2"r$S"r$3%"5%34!2(D"BC"CA#17$"D#42#4"121!!11#11B#11!!11#RQCQd$3!C4CQ#"4T131!!q!!!11A1"121!!11#R1CUSC1rQG#411A""#C$!Q31!!q!!!11A1"515!!1QR13##B111412!"!1$1s!!1A1C""!A1'1CB!1""$AG!111B#11!!11!1A331112A1Q#r$5ABS4$$#CA3T"!2""SA22A21S"$Ab%%A$"$AQ#421"!2#2RUA"#2$2$3S"5!C4C1$QQ!D4#1"C!eA"CA&DA21A!"%RB2"%2$ER"RR"%%RBRR33#"%RR"R""EB2$%%"E$6#B!21�11#23##AS3""#1"2!�1!%1331122V2"6d1##"#2&3d!#11#122C1$32C!4AC#3Q1A!!"1133#3322TR"C3C"B"T4"1321!!1#111333!4!1!12F221##1!!2$#1#2"!#3"2"#222"#A!CB4#BA11S13B1RE4$23541!C2BS2!bB$2!B"$!!2B1QCBR5"B!$A"3!21C2DDT2D"#"#2"##2""#"#2$"B232&"##Q341QB13141#D2411#!131"333B"A%23$31!!q!!!11A1"121!!11#1%2RD!#43"%233C1CA#3%BQB2�%CQBQ%2%D1%3CC31"RQDEfU#"2"1"1"!!A"2"B!"2C4#"D!1D"RAUaF#Q31Cr1!q"11Qc"!sU$"2%12A12B2R2R%Q2'5aTEDET3&1%35AQQ155#3Q$B1#Q!!31R41#2"#R3"#!b3"1#A3#1"#1%3Q2!2A"!1!3!4DD!3!32#!3c3!$$%3$2#12#23$32#3$QA#C$!B""$$AB2Q$E2!2!"$B"Q$"A$"ABC1#4"3D1AC3SS1A&BD21!$D$BD$ACB"$$AA"!BC141"!2#F3DDDdD3"4TT$%ER1#1""24TT$%EBQD1CC1C!2S"3"2C#2"3DA""A!12#3!1D"a&f2C42C3D1!&$#A#2D2S4$228B41381#1E382#1B��a3"C#DB"##B"#"2T1145$a#2a2ACBAAG1!1#33$BC&#$A"#33�E#E3C1433##5B1cD1BU1EBC4QDQ4""1$$2!3$$###33C�&&B�C2$B"!!!3Qia4B$24$!!"$BAB41!"C#B2#23B"34"443A2!331DQ1"#$2#"#C11#2113#13""2##3#11"#1!#115#1!##A!1!!!41C31321"B312!1#!Q"Q!"#321A1$"CA11$C4CD4!A2BD"A13!21DED"1$"#A1T#B&b"a"6"1$C"1#&aA"1321E1S11AD"A$�2*14"1E1#d"BD2Q1A!A"S!A!DBS5tGT42#"$##S4B2#B$"#""E4C2RQ4U#"1"S#$3BR#$$!4AA4#CCB4"d44C4C44DC2"$G2C1CA4A1CA4T34D31#41C434441"16A31D133112A!!11#B3D2%121q#B"111B!'RaA12C%42SEU111QQEQ!SB"2E!DqTD$112DFC"A3AC3"AC""$D#C6152$132233223D133223C44##$4DDCD"D4$ts4e#"V#as!!R2BQ#UUQ#A3#E3R43$EWq3q3"!2$21"2##4C#B!"!1!aaca2"4B"!Qaa!1!3#2A1Q!A2C#Q"ET3E22RB""32$2S45#3!3!D322"#22D3"2$"12%R!#"B!A4BC""#"#2#4A43"3222343$#C4!""""1CA!!"""A3!CB3A133V!#2314RB$11c%AQ4"12R34DCb1!DBC3A#DD6$134B3DB#13222#3A3C3AF$"fQD#C4B3CC53C1(d"#12"1"21#B8##437#12C3$34CB1"4"4"4B21CS111D4%!"#QS42#5RU$ds$$3#3C4#c"E5EA%!AD"SB##3DA321S11CD3R!1RA1R$Q3SQA143$AA!""$!1DD#4"E4#D#C42B422!!SU!""R#22R3!"3"QDS!1B#bAb11A!!AC!2"2"4""B23#"2$QQ4#Q1!#""!Q123211##4C1"DQA4!C!ADB%A1$2"3$3C23"%2344!"64222323C#2!!!1!!!EBA1FA!A3uA51"1212!2U1!1U'!2!!A!"711!43323#43243Q3R41#151#!13#53#ABAC544TBUCD1C%BS53!#A�4!$CA22#"!&t#B#16IRQCQD1AD15"4Q%1D2E3dT42#1"2!!!11D11SBDQ!t$!$$G1Q"A2%#"2!"B1#C!SB"rTD$$B22A2AC"%$2$""Q"2DR�"2$�"%"ACH3$1t71q7�A1#1BSDQT4Ba!A!1A43!411B1�1!!11A33312Q#21R3!#3D4A"1"2!"B"$#C"242$ACS#"3�3AC1D#D1B4D34D3�3D333SA133"#21!1Q!Q11$$TR!"#ABGB$"3"#C1$R3"1$"1Q!2"DD!!4A2"2""%2"""#!"A"$$131C$3D23"B3S3C"C2$#C#23#2232CD#2#!"T!B#UA%B22!1"A"2!1"A151!A1$12"#4!36#"%#7"A!!2!D#!B!41B#2"A#2233S5#5233S5#!"1"22R53$21Q3E3%14$D#C44"D$"BE"33!CC$#"""$B!44!DD41#$#4CB"4CA2AU$"""!A"C""%"!D2""R2D#22$R$"3#"#S"22C4"324C#2$2D4"24B#22D""B2$"a11""%Q#2A1711!$41"113$313"213!#41#AA!B#2!&bB"#!2!22"!2"2#"22#aR"U!"B5"5%DD$Sc3131"313"33313#D2!1#$!V!!"!F2C2c#C"1""%C$T"C%$%$%$13!!!##"12"22#!"2"#AABRB2C""B23""81CRB�$43343$"2!2B35#Qc11b$##d#d2#d4#d!!C%112QQ11D3!21#c!121!!11#1B#11!!11!1A331112$31333%RDR!B!343$#Q!#2"$D333!##C33C3C331#Q!QQ#15!"Q#12R#2!#1#Q#A#1113232!""1#11"CA"1!"!5!!3#"#$1B%#B3""!"$2#$4$54D1312at1A2QT!A!4F22B6B&3BF3Bc!21S1!2!"!#121!!11#BQD1CC1C"3%2#"34"3!2C$""A!!41##12C4!"121!!11#22T15#CEC1SR!32AQ3DQ3�q1CC!"224S3#"3�!"!#S4#"#Q#"!#3Q"R$"S415B#1131"2#"BU1�1!!1!!1111D3311121#A""T1#!3"$A#B#11#A334%%"""&Dt"""!1""222"!1""3�212A321;&CT$242D3#AB"$2#$"E""�%%!A"B2Q$$#$QBBA$1BADD"R%bQ$bR"#1#GaA12C%42SEaa4�&14bBt,D�""�21c"�"&�"$�"B�T1B2y(3�1"2!Q#A"!2B$AD1!D1!E4#2#A%"DCb%b3c#b4b$44B#$3#3a6224B#123!13##D4B4B311"23!S#$2R"#bCB5aCa#22�#3$331cA1cA3fAB1c1"BAA!A"##B#1"CC31SCfCEUE%U!121!!11#31!!q!!!11A1"111B#11!!11!1113111231!!q!!!11A1"111B#11!!11!1A331112R1A1W!!11D!1"1W3B12#b#A24"4"6C#%!R"d#"6D!15"6"B"1!B!T!"$1Y4C1v!!1�2C!2!T41C3qdC"44141A#A2#4SD1EE%2"B%3#32"323B!33"3!2"!"!$1B%BBBE46ArU435B#%4!T"SBE$SRB!A15!1"!#"2235113d!!3C33#!!2213722#"B'#a!413#"3A1$311111!1!1!111!111111!1!1!111!!A1RrC!23122"3#!2!BCA�#C#!!A3"!!B!!"#12!2%!!C!!"!"#!!24#"!""#S!C2#1"31%#111q9"A93"337!1SS4!4AB4"42u!'y4B!4!!B##1"42#3%1!2S12S1"E!$DR!$D!EB"D"BD4B"D1R!D4BB#D"R"!"b"3"13"""b"B"""$""""23�qb2VB#12QT3CDQD3Q4BAb%21R4B23#!Q"5$E$!dAF2"FF"B##C##F"b!1242b$"B#!2##AA2A##CQ$3#5CCCC1"131�8 4f7 itraismeomfaioubopctcanealmirtacgenticanunbailidndbldbatsceplathdiojfnescislbuuepiamumadngupkiemhobrpeigswruavuispulviwaonsohesiveloectipodacrexmokessliserorifibotrpltatostlepaorentedemacoarrechurerprincldeforgurlconresstacljenvapprefkeimapstrrecmaiingdevsrcquetimgitulttypcodfiglogsetnamentdocsitlinintpreorifixputreawebexcordderterwwwtexchamarwarensspestemonvieargjartesthttpleindatacorefilepathservjavaringrepoourconyxhtmlusertoolroutlistportevalutilsigntentroottionwrapponslectheadloadbodieclipcreattranssourcerrorcolorsbuilvalidexteninputselecclojurlicensdependpluginreleasrequirtargetpprintcomponmastersswordprojectversiontemplathandlerplatforelementsnapshotdescriptctsdreolipuamnfhbgkvwjxyqz_���c��@ Xd[�qc��d[����+�#*q����9c��W�������pW�X����@ X_�a�*�_����3�ܐ�@ XQ�dQ�d����� ��c����qW܇ f�식ob식� ��\Q���̇ ����� ���y���y�Q� ܤ J�kZA �N/�0UQ'k������M�y���y�Q�X\����e�^�kZ����M��Q'k������M�y���y�Q�X\����e�^�kZ����M��A �N/�0UQ'k������M�����M��������M�f�dN/�̝�y���y�N/����M�N/����M�N/���U�Uf�U�^�_�a����P�fd_�a�f�X�*����P���U���P�ff�f�U�U�X�f�U�*��X�V@�T�P�V�Uff�`B���� �ɠr� a}��^���\�`�\IL��\I�(�Y`���T����I���_��X+r� a�U��� ����� 豇 �\�`Wܐ��*�b��R/��Wܐ��� �=�ܕ��C�_H�Ȑ�P���_���=�ܕ r�&ܴ����������g�����Kۼ�]@�=�ܕ�� r�&�iQ�&T��pN`��I���_]��N���nZV���*���nk�iSdn��N��Z� ���Ny�EZ� ���N�*��� ��� ���a=߂N�N���ZP������ ��nK_b�__�O��a=�iSdnf�nk�f<����̡��ZP����H[�kZkZ"H[���;�_�Q'|�O���O���kZV���O���O���kZ�O���O���kZ/�CO���"qO���O���kZ"�O�����;�_�úV���O���O���kZd��O���O���kZ/�CT�`T�`O���O���kZ|�|�O���O���kZi�O���kZ"k��O�����;�_��O���O���kZO���kZ"�O�����;�_�O���O���kZO���kZ"O�����;�_���M-���;�e�1�������;�e�1�_�ob������;�e�1��W�Q��h�Q��Q��GQ�W�Q��h�Q��Q��GQ�W�hLhQGQ�W�h�Q��GQ�W�hW�GQ�W�hW�GQ�2Q㇯��2Q㇯f| +BK��hLf2Q㇯c�T]�Q2�篧Q��GQ�ob�Q��GQ�hQGQ�obhQGQ�hW�GQ�obhW�GQ�e���b +Q2̡e���b +Q2�������᭣�0�"�bq�b��\��ς�nK��\��ςπ0�nK�0��nK�ϭS`nKۭb�b/�bnK۽nK������Q�&܀"�����u�����Q�&��/�b����\��ς�f���"H[��/�b���0�f/�b�/�bfy�/�b�|��<�^��/�b�/�b�xNruru�̡l/�b�������] ۚ� 8`���"���"����N����iSd���f��������������e� �&�T����"K/�d�9׮��] ۹��L�����ﮄ�f�஄�� 8`����f讄��N��f�����"�����@_��nn"���_���-f�஄��J�ۄ��f讄���f�LL7��] ����̀�����ob���7��] ��pI��;���qq��_f��)� L�b�I�����qq1���pI��;���pI��f�qqnKq��nKqqq"nKq+V@�q"nKsa�q������[f�qq��[��nKqqq+sa�q������[f�l1�����g�v�q��dk���2�?�q,�dk��qf�DU;��ob;����q�����ob��5���i~�C�\�`�C�s��C+�C�V��C�[&��C�i ��C����i~�C�\�`�C�s��C+�C�V��C�[&��C�i ��C����\F�ob5� �����5� ߝ�C��"���_b_b܀-Z�"�-?��f�{?��rC���I�`"�ܝ����2�"��J��S�^�f��f����2�f\F�j{��j{[K�e�LGO� j{[K�c�k��Q�c���� �`�"��"��Z�܀-"�-��_b_b?��f�{?��rC���I�`%���cj{�"��ܝ����2�f\F�?��f�{fob��"ob��7��7������2��7��]��q ������O�]��]⸱�������O�|������^�^�^P��^��^,��b��� �q ������O�"�Jb��S�蝁#W�,ǝ�c�T]��������O�L�_�a�_�a������Lx��/�����O�f�S�����P�VQ'�S�����Q'�����f�S���#Wہ#W��^sa���R/�f�{��S�����c��#����B�5�����L�_�a蝝�fc�T]��������L]�R����Lf��a_��NY��f�W��F�������W�� 㫫p���J�۫dL�۫�+�f諁���qO�۫��f�d[�a�����d��i W�|�� ^�d��i �������d��i i ��d��i a�a�i ��d��i a�d��i i f��M��-��嫁�d[�a��d[�af��F�������F�[��NY��/b�;����NY��NY��/b�� ��������H[� [����]⸙��졙��������obH[� [���e!^˧��[R��}��v}��c�O�}�� ���W����܊�E��/��������X\܃S�8^�V�N��}��}����E��/�}���}����-]�D�a ���.ܞ?�R%�%�g�vc�O�T�b�*b\�g�1��L��N�\`dK����gɪ�V� g�ݑ�h��Kۼ��8^�V�N���5��z��h�.�/������2�]�W�LV��*�1��L��N�2���8^�V�N�f�cbC�-�-G�f���K� T�kZn�J��kZnj��7kZn�J��kZnj��""�-��t��kcbC�-f�de���X�n]�ob\F�����ۡl\F��kZn�A����e���X�n��t�t�n��n��^������ruruǠ��y�������ob����ۡlQ'\F�de�ޡe�e���X�nQ'\F�de����Q'\F�de���]�.]�. ������de���X�n� �����g���g��(�VܤVܥ�H����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af��������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f��������$$�eΟӀ� ����_�ET�ET� ���vc�O���۩���g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�� S�*�]�������^�c#��]���aS�]��]�]� ����d�c�:��DU�j��DU�j��g]�(���k`89z����>�&� &� �&� &� m�M�H�P�b?�R%�%�gc�:����g�Q'�� s�]�(���������ܿ����w���RYgH���h�R�z���P�h�I��P����I��P�f�w��l�ޟ�Q'c���ClK���SH�9��[�[R�� ���܊�P��r��K���SH�9��[�[R����܊q�P��r��K���SH�9��[�[R��q��}/��M�G���M���G����xNG��G��?�Ry]�(�w��&�l��HN�l���Li۔�4���������������W`g�����#F����g������g�������`F���g�K���S��h�X�c����k}�xU�4b����y����)���/�c���5�H OV��b�SK����K���Sf�]�~�>��-E�kZn4��nK��__�X�kZnT�`�_��f�nZV���*���� E���_b�&�T��Je�J&�T�&�T��Je�J&�T�&�T�M���Je�J ��� %���� �� pkZn�� �� %���Je�J9�M��Je�JL �kZnR�ܙXR�ܴ�Je�J ��� E��f��� 0�X��0�X��r�� %���Je�JK�� %���� f�R��;����r�XR���Je�JR�ܙXR��f��WQ�0�X�� E���A0�X��E���]50�X�����I_]50�X���G^�XN�0�X��9��X���� ST�dR��kZnf<�_��N�Z���#�nfdc�i=�Y�ob���̡���V,����~�>������2Yޡ�7�l�H[���2���d��7�l���2Yޡ�7�l�H[���2���d��7�lH[I�H[���2f\F��Wcۮi ���d�nKq�c���d�f\F�ծ�ծc�nV�"c�c��#݀�c��#�c���d�f�ruru�̬>�2��7�l�=�l_�BZ����a_�BZE  ��� �`_xU������ۤ� Q�xUlj����a_xU�GB��f�eゞ�����cbC�����ۤ�M2�cbC�f�j�Q#��P���JQ�)�j��+�bj��k����k��j� ���j�j�f�_xUy����hru�h_xU&���T&�h_xUf�����`���e�eゞ�����f�Q'o��耞����ۤ����`�����R/��$(�iZ �_�BZE  ��ܤM2�$(�iZ � ���j�j� �Cc�:�eゞ�u_xU&�����`���e�eゞ�u�����a������̡���������K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�1���y��]��N���vkv�MYދ�] �oj�vUj��f�U~�>��U��T&�UvUf�v ��A �0U�h1�����T&�ki~~�>��~�>��k�nK�vkf�v ��]�(���J��v ��]�(���K�j����r ���܊�v ��]�(���K�j���܊Q'y#S��q�Q'q�yv �ދ�] �t�]�(�Q'v ��~�>��l�lw��v&�v&��J�K�j� ��J�K۴�b��~�>��i~~�>��f��� �< ����f�ob�(_R?[ �~�>��Ukob��狏] �oj�ob_R�#W۬�ob_R�h1���ob1��ݥ��v�MYދ�] ��b�UX�nK���_J�� � J]�.��UX�d�X�[SO�_��� �#L�c�:�]�.���U������0�]�./#���e�,�9��������&�T�W � �]�.�W � ��0�]�./#����0�,d��W �W �M� ��3���T��?[�f_�>3���T�f_�� ��f_�W�f_�?��6^f^���^[���_�ob�^[���^U�V7e�1���������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O� ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�Fb�*��Z��vc�O�Q'o�����S�������w����ͥw����w���ʀ��b��gɪ�V� g�ݑ�h��Kۼ�Ƞd�����z��h���b �\���9_���ؠd��f��9+���O$��7� +�+��9���{�R��Z`B���TZf�{��^����Z+ ܃+��{�R��9H OŃ��9+�\� �b_�����d^�� ��{���TZf�{��^����ZŃŃ��d^��� �����AX�� �b_����^�� ��{�b^� Z���TZf�{��^����ZŃ�^����f��^��d^プ�[Sl^���l�d^���`B�]���\`db��@<?]�S���\`db��@<�w���lw�����ŋ������_R����ا��i�g=����J�h=��䧄� ����g���� ��� ���v��_R��g��g����]�R���k��Ql��g����e��� Tg����Q��]�e!^g��g��_Rc��� �n�bOܐ_R��_R�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f҅ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R��j�v�j���g�j�v�j� �����g�j�v�j�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�e�������g���h�e���������TS��z��h��K1^���� ��X������f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�V,c��d�_R��_R$�$���_R��g��>�>\ET���_R$�$����7��K�e�_R����_H�\�����]���������_H�\�����]���J����_H�\�����]����_H�\�����]������c�O�:�� ���_RoT�����[����I��$����U�����<������d���g�X��5J��\���p���?,h�c��h�c��������U����`BI���7��Km��B���� �"�B�����L^`�������f�X��0 ��0 �`B��U�V`B�P�|��0 �Ŕ�U�V������xN�J��xNL^`4��,xN 8��|�8�8 �8d��X��X���7�M� ��0�xNd[����0 �xN_RrxN 8�xNL^`xNxNxNL^`p�L^`���f�rru���L^`��AJ����] �ׄ�q9�] �L�] ۺiޮ] � �S��] ۮ��f�n���� �n"���_������f�] �K] �p] �ׄ�f�������w����f�S�f�ob�\Fዏ] �\F�̋ �\F�obT�����7��] ��j��=�W維n�(�nf�����ޭV�W�rW�V��W�rj�_xUW�p�nf���rV�rr�X\���rV�V���rV��W�f�f�{��f�{�obf�{ ��V��j�obj���W�obW� ��V��j��=�ob�=� ��V����]�D�a��]�D�aob�]�D�a��V��W��_Yt�_Y�)����_Y_b-E�2ߗ @ X@ XMS�2ߗ _Y��Te�^��_Y"_b�J��H[�QH[�\�H[�P�&�&�H[�&�H[�&��X\�����D������QH[�Q�\��\�H[�'� ���ݽ�Q�&�Q s�D�>3���)���)�2ߗ ��T Q�m�M�|�Q�Q�&�QK���)���|�Q�&�|�QQ�&��`H[�_b_Y-E܂�_Y"�0�_Yt�f_Y�������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fҥw���lw�����ŋ������_R����ا��i�g=����J�h=��䧄� ����g���� ��� ���v��_R��g��g����]�R���k��Ql��g����e��� Tg���������g��_Rc��� �n�bOܐ_R��_R�fү���_H�\�����]���������_H�\�����]���J����_H�\�����]����_H�\�����]������c�O�:�� ��|��g|��_R��g_R���7��K�ek��Ql���c�ET�ET���>�>\ET� ��拏��g��g�.����I��$����_R$�$�ʫ%��ދ��d�d��c����NZ�(��NZc���%����NZ�(��NZc���,��L�����#��9Kd�c����(������(�c���e�L�(�"0����������-�d�dA��(��(�d� c���t�f��d�d]`I��(��(�]`I������(�]`I�ob�]`I���̡]`I�� �d� ��� ��_�mO� |�|�GQ���|�|�GQ��|�|�i��+�rc�r��܊�rm"�NZ" �f� �d�f�|�GQ�f�md�f豱̫��rru����K1^��=��W=��f� Ud ���@���]� Ud ���@���M� Ud ���@�������b������@�������5������@�W���Z�,,�M�@ XqnK]�����WM���^_2��Kd�i �nK"q�����d�=��f�c�/������e���������Ǎ����ob��N��������e��n���C5����C�bf<��Սܶ_��vmf�{��W�_���nf������j� ��d�� ��� �����r ��W�_xU ��_xU �ޠDUxNxN\�` ��� �����r�NZ�=�xNxNŠvmv�d[�Ԣ_b�f��=��=��� ������ �����[��T�`�ܶob ��V�c<�mob�m�M�_bobW�L�L�����C���C+��ܦ_��ob_� ��V��W�obW� ��V��f�{�f�{��obf�{ ��V��j����ob�]�D�af�DUob�]�D�a~�>��k_R1��L�obv[��T�`��[��T�`�S_2�_2�M�S�&���Z��L�&�&� A���&�&���Z��L�&�&�&���Z��L� A���&�&�f�&�&�V������&����f���Z&��������&���Z #�*f�ob����� #�*̝��� #�*�j�i=�� �ޠ ��A��-j� ��i� ��4�� �ޮ ��+�f��k��k���ri=����k��k��p"����X\� �� ��W�� �ޠDU�� �ޠ ��A��-f�UX�� ��� ��f��=��W��l�"q�fdpA �UX���CZ箮 ��p/�CA �UX�� �ޮUX�� ��f�ob\F�����ۡl\F�̓�ob����ۡlDUob�����ob���̠ ��[��T�`�5�j�P�O ?V��jDf�xU�Y�j�P��xU�kZjDf���j�P�`��������0��jDf�j�P�`������*�b�0��jDf�]�����j�P�`����� �$ �0��jDf�d�>��j�P�`�����xU��X�jDf�����U�� Z술fZV��[e^�a?�J��j���6���j{�0�kZfۂ�ۂ���AJ�� qobR*�R*�ob���̡��AJ���������$$�e ����_�ET�ET� ���vc�O⩩��g��gɪ�V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�����vc�O�Q'�uY�e!^˧��[R�� ��g���h� ��e�@߮X�z��hn��[R��dkKԟuY��ԟe�@�f���g����؋���g�#F����g����g�_R��f�C���܊��*��k ���܊��*��k ��d�B���܊��*��k � /���_Rq�_�Lc���CΟl����D�i@ �)�A ⧟�*^��S��z��A ⧟ʫ� U�{����ꝡ�{�������� U�{����ꝡ�{�����5� ����̝���ob5� ����\F��5� ߝ�{������+�j�JY��*��JY�JY��* J�쩄�2b��f���2b�*��JY��2bJY��* f��2b�*��JY�fs�A �0U2b_R�JY��* ��2b��f�ޯ��2b��2bi~JY��* j����J3���f�����ݩ�JY��* J�����[Hfd����d[���hfd�����(�hfd����i~��P�����������������_�]��N����RgH����Sd� r�&��R](��K�H�����B��X�}࿯k�Z�������t�f�����d������C5覯kf�D,�R�d��|�i��bk��(,�*���f�e�J����C+��ܦf�ob�]�D�ǎ�*����H����vc�O���U���ޅ� ��ݤbk���t�nt��k���զ����U�����<����=��g�y�l]�D�a��g�k��݁#W�d���nk�����k���f��X\����w���Fb�*��g�ͥ���ʥ��w�������H�.TH�.Tg���vc�O��V� g�ݑ�h��Kۼ�ȉ�h��NZ����{f�pS�W �7kZ-E�kZp�,W �?[�@iQ��f��iQ�������c���f�{�@iQ��f���@kZ��@"�@iQ��f�{�e�L�ob���������ۡl��ob\F����@Aob\F�����ۡl\F��iQ��iQ�����@� ��� ���vc�O� �������ۡ�g ���\�`��g��g��,�����Z`f�����N���e^�=�z��#F����g��S��gɪ�V� g�ݑ�h��Kۼ��)�lz��h�N��]�/���_R�#F����)�lgf�Q'7����E�R�����]�\�4`bnK�S�]�\_R���xU�k���@��A�4`bn\��0�_RLJ@}�� ߃*������@�C�.��l��ܟ��I��$����U�����<�݅�ʫͯ����C��J��O,bc��J��;�`]��vfS�����C���CP��Ssa�O,bc��J��obO,bc��J��P����_�̝����CP��Ssa��O,bc��J��P����_���g�j��j�m��c���c���xNc���xN����N�i=��NZf��Q'-L�xN]�������-L�ۃxN����N��NZf���N��xN����N�"�NZf�{���\���]⸙���N���\��5���^V��V��ۂa��f���^V��V��ۂa�f���^V��V����^f���^V��V����^V���f�lV�䢺ob��̝V����������V�bL�b|�������j������Y�ޝf�����V�b�\�V���(N<�篝��ob�����V�b��\�V���(N<��W�q��W��]��W��@ X�]�i��W�f�W�W�f�W�p�W�f�W�fW��b���.����U�����<��ʫ��g��g�{���������:r�)��Z�e�@���1`[R��gȞh��d�K�����_�A��z��h�b�UX��+�j�i���������:f�mW�m���ge!^�h˧����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ���؝$f� ��J��MP�4��MP�j��f�MP�MP�MP�f� �MP�f� �CVܐ������rnKr �f�,��qVܐc��f��c��fMP��iUHNH��Q����iU�d^��H@Q��Z��Z���� ��Z��Z��Z���� ��Z���d�H@�f����`���� ���`� ��� �M�5��c��#���[�G�*���*��c����*���p�*��f�{���f��c��Y���[� �M�̝�����[���[�l�TA�b �_R� r\�`b�Xf� LA�brW� ]��_RE�>�f�A�b L-2�]��r_Rr �f� (�8K���dru�ru�_�nZV���*��d G܀_��f�,}�\Iy� ��Q'�nZV���*��d G܀df<� ���X��i=��t��MY��0��~�>���Y�&�U��dsaY�Y�Y�Q�r��Q�r��f�I��ruxNL�ruxNW�GQ�f���qnK��d��qrf�Y���dobru�̱�,�z��c��� m�M�nmc��� f�mob�m�M�̱d����`B��g]��dX\�g`�����_��y�l��gɪ�V� g�ݑ�h��Kۼ��y���l�AL�z��h�b�y�l�@����K1^��\����y���lf�WN�N�W0�0f��N�_b����WN�f�%a�j��ރ���0_b����W0f���j�j����f�ob�]�D�a��������N�\[�0�N�\[��*�b���*]��*�b�\���*]�D��A[N��*�b���*]��*�b�\���*]犆��[N�[N�]����,,���[N��*]�[N�[N���[N�G)R�v���#W۬�g�vc�O�kv|�c����d�_Rt�t��K1^��K1^�ɫz��h�H�9^���H�9^��f�1�e!^e!^he!^e!^[R��˟˟ ��� ������I��vc�O�l���I��g��g �@N�a�a�W`gm�M�`#�����(_�Q �@N��a�K1^�����a���fҝ����ܿ����w��`#���y�l �ء&� &� ���(S�=��g�e�������g���he������Ȳ&� �]��z��h�K1^�L�aٲ&� &� f����b�c�O�ͣ�lL^`lL^`����.�t��=��g��gɪ�V� g�ݑ�h��Kۼ���L^`e^���z��h�L^`L��]�\�L^`��lL^`��lL^`fҝ��J���S �^���*�b�f�7��Q�+ �^��f�7��Q�f�\���`��+ �f���ޝ�*�b?�R�*�bf�7����������f����������f�f�7�f���U�^�?b�7��d�d�� �����%�+Q' 8��~�>��A �0U�h�=�I�_�;�`~�>��c�i=�Y�Q'\F�de��~�>��e�~�>�⡡� �t�m�~�>��蝣���ܿ����w��`#���y�l ��]��&� &� ���(S�=c�:����g���g�W`��h�W`Ȳ&� �]��z��hDzJ��V@��3�ٲ&� &� f����G2 ���Q'G2 ���Q'G2 ���Q'G2 �������M�G2 ���M�G2 z���M�G2 ���M�G2 z����Mޝ�ob����M��obG2 ̱G2 ���M���EZG(�G(�p���L�a�X\�E�?�CEZG(��y�a_y/K���dUEZG(�G(�p���f�E�?�Cff�ob��̝�b�e!^���Q�c����J��c������N@_��܍ܡ�N@ߠk� �`�X��X�k��Q��܊���N@� �`�� �`f\F�xN&�c���kZ[&�c�[&���܊f\F�k��QDZ[&� J��X����b���Q'o����^�A⃣��܊�������X\܃S�}���e�@�}����U�����<��.��l��ܟʝFb�*�v���b�c�O�ͣ͡ #�*����.�t�r�)��Z}B]�}B]��O������z���gɪ�V� g�ݑ�h��Kۼ��e!^�e!^˧��[R�� #�*���z��h�K�= *�� #�*f���ZZ���@�X�@Z������fs�Z���@�X�@�fs��@�X��fs�y#S����fs�V6�j{fs�y#S��� �]�R���fs����X�DU�����A�fs���������J��V��J��V��f��M-���꭭� �� �]�R��I�J��V��fs�|��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY��ԟʩf�Q'"���߆��߆���]�R/�f�{�Tߝ������ͣ͡��t���o������b�c�O����Y}ޢ�������Y}��ۼݟ\��T�bS�=Q��g ���\�`��g��gɪ�V� g�ݑ�h��Kۼ����\Z���������g�&�IܞhY�d�)�������f� ��i M������y �� ����L� ��nK]� �ܢ����y ��i ��nK_@�� ��nKmi i mZ^����f� ��i �� �ܢ����y ��mi i m ��2��X�f�m��f���m�-f�c��_�^�c��� m�_�^ޝmv_�^�v�A�mi�A �0UDU�j����r��mh��m�m�M��mmf��X\�h��K1^�OA �0U����DU���X�h��G2 �X\�W���᫁A �0UDU�j�����X�h��G2 �yT��m�M�����y ��nK ��i ob��y����X\�_�^��kt�f�_�0�_�0ܯ�5�bDU>�rc�������d��n�b5�kf�n�n�_��_�_�0�nfj��,d����v�A�_xUj�_xUDU ��a_xU�7�_xU ��a_xU�7��7�DU_xUDU_xUj{�0��7ޚ�j{�7��7�,d����v�A�d[��K�j�%a�_xUn�f���_�0�m_�0�f<ۚ�j{obj{DU>�_xU ��aob_xU ��aDU>�mob�m�M�b5�ob�b�.�g��]�D�aob�]�D�a_�_� ��V���e�J�nKیDU>�nDU>�蛋�nK���f����&��ۋޗ�&��A��������p��&���&��ޗ�&���f����&����NZ��&��A��������p�۠&��۠&���NZ�۠&���NZf�?��c�T��Z&� A�&��b��Z&�P����Z�������AA,����0��ruru��|�]�Dݗ���Z&��^���^��ob�#W�DZ�.�c�Tc�T��Z&�&��b&��b��Z&�ۗ���Z&��A,�0����A��Z�ލ����ob���Z&���)R�q���L�q��)RdLf�Q'-Lq��*��)R�q��*�xN��)R-L��q��)R�f������� ��3�ܱy#S��q����q��*�xN�f�k܀q��^\]�L��^\]�rq��^\��L��^\��rk������� ��3��LiޱL������� ��3�ܱ��q��*��)R�f�q���q��*���f諁q��q���F���f諁�^\]�e��^\]����^\��e��^\������ ���6�O�(_� � ��\I��q��f���]⸙߱��^\�����^\����e�e��^\�����F��V��^\�����i~ad�B� ��V��� �G�fdi~ad�B� ��V���G�fdi~ad�B� ��V���`B�G�i~ad�Bܝf�G�� �� �� ��� �� ��P�� � �f�� �]�ob ��V���ob��̝ ��V����C�����.W@�iQ�&Tߪ�V� g�ݑ� r�&�]�W����Kۼݐ�\[\��]�W��c���jb�N���C�����.W@�]��N���]�*�M� ���V��]�*�P�T� ���T�M�P�T� ���P�T�V��P�T� ��� ��� ���V�� ���T� ���T�V��T��X��d��{�R�X��X�]�RGd[�d[�d[����,d[�,���O�d[�d[�d[�"q��X�]��dQ�: d[�d[����,d[�,���O�O�d[�d[�,d[�,d[�d[�d[�"qq/9��?Kd[�,d[����P��a���d�]�>��Lx�� �kHܞ��P� ����P�i~��P�t�f�D��N�Jb�Y��Jbܴ�^ ��d��ހ��Jb�Y��Jb܀�d����a_�Q'��Jb�Y���P��cbC����Jb�Y�f�HܡH��t���P�����������������_�]��N�����K�H�fd�LiENd]�W��X�}��RgH����Sd� r�&��R](��K�H�����B��X�}࿌�����g>�9�����gJ�������g `�����g�D�W������g�W`��h���W`�H�9�������������gf��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�iQ�&T�d :���_�]��N��ܠ�"�X\���Q�䐮 ��T�h��hh��"����hh ���[R�� ��݃ ��]�\�>���>��ʇ�C6���g��gɪ��g�W`��hK�Y��=��W`�QI�6<��z��h���a��b��Q��QI�6�f�5��\�N�ܻ�t�� �P��r��� UP��r���� ��xN�xN��de���J ���#�<��J��#�<���J �/�P��r���J UP��r����J �P��r���J UP��r����Jde���(�L^`�C���\�C���\�n,�Wd[�f�W���-���\��]��]��Vܽ��5茌=�I�LJ��#�e�����K��^�LJ�Vܛ_xUB05茤V���f�{��T�t�f�LJ�LJ��J��y�]�W�#�rj���]�]�LJ��J��LJ�LJ�]�]�LJ�LJ�]�f�LJ���.�Ǧz��LJ��K�_xUB0j��j���K�j��J��kCۤ�J��f_xU�rj���_xUru��_xUB0_xUB0f豦j���j��j� ��V���������܌�������ob��̌[H�d��M�m��m�d�e�dd�m�EZH�EZHd�rnKc���df�i�>\dk����^�>\>\�i ��Gܠ�c���i G�G�Gܠ�c�������f��ob���EZHmob�m�M��dEZH���b�b�j��p_xU�k^�_xUp��_xU������@�M; �`��b�b�j��p_xU�k^�_xUp��_xUj���@�j�_xU�j�_xU"���f�k��k��j�����j�j����k��j��f�j�j�j�j��@[&�_xU�j�p_xU�k^�_xUp��_xU_xU�@[&�_xU"�V@�d��j��b_xUj�_xU�f�W���_xU�b>ruxNa�+��_Hܤb��bp_xU�k^�fy1S�=_�_xU��j�j����=�`#���� ��V��I������X�qA �O���[��[L���܀pA �m��[L���܆bL �L��L����[W� O�]�*��A���[W� O���[�U�]�*��d[��X�V@�T��U��[L����]�*��i�L��Ye��L��i��U��U�%a�i���lM�/�C]�*��*�b���*�b�]�*��p�^P�Of�ob��U�ob ���_RoT���[ob�U ���ǀ���P�O�_RoT���n��de��� �P��r���P��r��P��r�����\�����de��� ��xN�xN}���de��i���Jn�J�Jde���J ���#�<��J��#�<�P��r�����\�����Jde���J �P��r���JP��r��P��r�����\�����Jde��nK�C�� �d��v�i���S���i�]�W�����7�S���߀S��i�nK�f��de���Jde�ުobW��-mob�m�M����������_R��������{�d�_R����#W۬�g s�����:ɬe�@��]@�c�O�DZ�.���3�X[�e����b�>\c\�}B��g��g�������:���l����:DZ�.�m�M�y�lr�)��Z�gȞh��d�K����{�_�A��z��hUX�+�j�i�����{����:f�k��j�_xU�j�Q�_xU_xU��Q��X���+�� ��Q���*�Q�T���X��Y�4�k��j�_xU�j��X��������Z^��r�)��Q�_xU��_xUj��+���X��j�b�X\❝Q�f��X\�j�cߓd����#�_�a�Q� ��obS�����+��+��+�_xUob_xUH���ob����̝Q��+������]��N���DU��mp�(DU��mDU����K1^�/�DU���/�\If��i � �^�"��%a�ru����� �^㣢�H��ic�T��� ��_�a�*���2���p��� �_�a���� �^��\If�ru�����O��*�bru�a_�ru`B�ru���*�b�_�a��*�brui@�*�bW��f���DU��mob�m�M��������̱]��`A�T��"0����������+��_f�0�������������f\F� �Z���G[V�]�� �Z�������������[V� sTNZ�DN��f�Z���G[V�]��Z�������������[VܢZ�DN��f �[V����Qy5��,�+���������0�������������[V�G[V�f�S� ����d���� �]� ��y��*�b_�a� ��y�f�*��� ��� ��i�*� �� �� ������ۛ"So�*�o� ����S�UX�d�X�*� ��y�Q���_�a�]� ��f���.�`�d��-2����̝�.�`�d��-2���ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R����g� �����g�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�ӟ �e�������g���h�e���������TS��z��h��K1^���� ��X������fһ�W�y����i�y����i�W�y����=�I�y����=�I��=����=�|�i�a�j�DUeゞlkQ'��[�ruW�ݡ`#���kZW�y����i�y����i�W�y����=�I�y����=�I��=���a�j���[eゞl"��[W�W��X��A�W�W�W���UW���UW��X��X�W��X��A��X��A�[R��[R��ru ߡ`#��߻Y�D���[a�Lra�j���[��[dk����[rY�D���[Y�D�a�Lra�j�GB��rY�D��j�\�����\���ra�L�j�\����W�L����j�\���j�\���Z�����j�\������\���Z�������\��� ���[��[ �W�Q3�W� �[R��[R�� ��X��A�GB��"�_b�_�_�O�f軛� �_b�8K��� �_b��__�Of_f\F�M�[&���qxNd��_M��M�f�{ �`��i~a_M��i=���kZ �`���4 A�f\F�_��y��A��kEZ��yy�������rc�EZ��yy��A��d�����k�A�EZ��yy��A�Gc_�EZ��ykEZ��yy��A��d�����y��A��d������k�A�Gc���+Gc_�a�y����c�Gc��y�f\F�j{j{rcrcc�j{����_�a�G�Jc�d� f\F��MY��v�d�B�Q�Q�dQ�f<�dQ� `�N��e�^��^C ��E�K1^�� �b-E���E�ge!^��_�Q����i=����Q��Eㇺ]�(�Q�Y��-2��X��]�(⇺�#W������b=�Q�Q��E�̇�Q��E����g���g���g��(�VܤVܥ��v�(�VܤVܥ��c�:�c�O���� F��TF��Ty�l�-�]�]�}B������g��g� ��g���h� �� ��Ǧz��hK1^㡦١��f�L^`� ��M-Y�N����U�VdP�W�M-Y�N��M-�W�M-��oe�^�xNL^`�xN-E�L^`1� 8`�xNL^`j��"�,xNL^`L^`R�0�ޒ�|���L^` �xNL^`1��N�xNL^`���L^`f���K�1���eァ1� 8`�N�ob������L^`7L^`1�诞�K�j���v�t�T���"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+��l��+�����c�Z �e���+���Q��E�LF�SN]�lv��d^�����l��+��>�V�K1^�e��a������g��+]�(�e��a�N�����������#F����g��g���T���f��ܢ�/nS��[�ܢ�������Q��bK�T �](����K�Ҵ��� �S��[�GB��[��\IS��[�+����[���L��S��[䀣������S��[�Ң��S��[䀢�Ҵ�����܀L ��Y$#S��S��[��K��dk�[�f�Ӏ@�݀^C �M-��M-���T��M-�\If��ܢ�/n�ܬ�W`g�Y$#S���^C \@��W`g�H[�\@��W`g�篢��iQ��ǟuY�����[�uY��X�b��X��A��X��A�"F�[��F���F�[�W� "F�[�da�d����NY�nnL�af�n���nf�����ޭj��WddW+ �+ ���X�NY�_xU+ �j{� 8��j{���Űc���Ű�j{��ŰDUS��_R�0��0�X�ޭnf�_R�_R��n_RT�ᫌn_RT�ᰌn_RT����n_RT��F�[�F�[��X��A��X��A��NY��/b��NY��NY��/b���]�D�a��]�D�aob�]�D�a�Ռn_RT������dJ��r�)dO��@ ��dG�f����J��J��2����ۡp �2G�f��J��`_Q�����ۡJ��2����ۡp �J��_Q�G�f������V��J��3�XUJ��J��2����ۡp �J���G�f��?���`,��Z��ߠJ�� ���7��7ޱ�"q�� ��`��qS��?���`�?���`�@qS����p ��`��G�f��,|���Z^���Z���fG���(2�2b��j?�j?��y���� �e�L��ob����ۡ����Y`ʩ�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�i~�X\�r���=�%a䣣�=�i~��f���X\ܢi~��f�{������������)��=��=�d�d��ݢ L��X\ܢf���ܣ�r��ܣUd[�����ܣ�ݢf������������J�����i~�X\�c��f���f�{ӱ������X\�����������c��f�ӱ��\�r��f�{c��f����\��=��=���i~��\��kHܛt�f�b�D��Nߠ�������Z}B��Z�<�ߠLF��\If�kt���P�oj�_RUj��f� kfk�fdkZkf�oj�_RUoj�f�oj�_RUoj�f�UH�Uf�kH�kf�U���v�A�e�J��MY���P�2�?U��P� ����P����i~��P��<��<ۡ&� }B}B�&� HܡH�_R_R�#W۬��t���P��"�,"�"p/=�� ��_b���B��D�f7=�ob=�\����an��N�Z��Ͻ�\�n��\P��&�l���+�����/_�b}�/""�,/׋ _�a�}�/""�/p���_�a�}�/""p�^�^�]⸎b/=��b�kZn��S� ����fdn����kZn��b� �_b��O/ ���GQ�]�/�?,� ���U�V�_���9���@e�J�Jc�:�f�{U��cd$R���A��J*��\I\r� akZn�J*�ܠG2 U�V�fd�� �� �_���]�\\f ��7v ��kc�i=�Y�=��\�܃\7v ��kf ��\F�ob�v ��̃\��d��W��d���d���d���f�i��V+ ��� ���YQ�o��h�hi�Q��C��"q�����d��f�i�Wd��i��C��Wd��C��Wd��f��K���[��Yi� ���YQ��qrnK�i�Wd��f�i�����Yi�Q��C��Wd��f�c��d�X\$���+��:���ߑ�h��d��fل�ru�Y�YK��� ��]�2d�����2d�����@p�NZ�]�DU�@"p�NZ�]�.��kZp�NZ�]�IY.�r�)�@�9�IYL�@��� �_�a�p�NZ�IYSI+���IY�IYf�Q'J����M��=����=�|�i�y����i�y����=�I�p�NZp�(W�xN_xUru ��=�h�@O� DUe�]��@�h�@rh�@O� _xUp�NZ�]�IYDUDUf��IY�(�h�@c��f�=�`#����e�eゞl�IY�@�X��IYN/�� XGW����\Q�����qi ��������+�L���\Q��]ܢ��܊���]��������@ X�L��������]�WN=�r�)������j�"�������4��������L����������ܢ�]���G��d��G����]�WN=����"�������4�����������ܢ�]���"�����C���������Q' �Q'_2��]�WN=�H�� ��H�� ��� ��_be�J�� ���f� �V,� ��xN�����l����T]�R���=��W��j��hxN_xU��ŠrhxNj�_xU"� ��xNH�� ��G�f��|������6�<� ��X���7 ����j��i� ��4��/�CQ��ru�r� �6�Ń*��ZV����j��Ń*��ZV��� ��� ��f�ob�����ob����� ��[��T�`����J��_����_x�ې�\���_x�ې��_x�ې��X\� �ې��J�ې�"��J���_x�ې�� \�nK�_x�ې�\���_x�ې��_x�ې���_x�ې������.g��.2 �Y��*�A,b���@�_x�ې��_x�ې��X\�f��_x�ې�\��_x�ې��_x�ې�\��_x�ې��_x�ې�\�L�_x�ې��X\��_x�ې��X\� ��f���_x�ې��n�^y��*�b��q_�a��_x�ې�f��_x�ې���� ���*��ϴ_b�j{�>��]�\�>��|�R�0��]�\�]�\j��"�,��|�]�\Ň@f�{c��#�5�"� ��X�y�kZe�rkZ4��e�&�T��X���>���c��#��l��r�c��#�����[r �ϴf�]�\j��r"j{�>��4��U���ܛ�l���c��8���]�\8K�ru����c��#�5�f�c��#�`���c��f<�]�\f<�j{�>��f<�kZf<�_�c�" �����%�+�~�>��A �0U�h�=�I�_�;�`��c�i=�Y�ruru�ob���Q'\F�de����e�~�>��̡7����|���⢪f�j��U���|���⢒�jQ� af����������������|���⢔�����f��ݢ�ru�_�����B�`B� ۢ_�|����ܣ|�_�|���⢢�|�f����Q'ru�_�|�O_�|�ru�ru,�|�f������e�J_�����"c�:�_�|�\�`�|�Q'_�a�|�f�{�_��7S���� �O�9K_�Lru_�a�_�����B�|� 8`�{���|�A�O�A����@� ۢ�T����������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf���g������U�����<���_Rc�O⃪���e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�fҝl�l���Tl��l�e����T ���l� �ͣ�lw �ͣj�lw �ͣ�]�(��l�S���l�ޟuY0��l�ޟ��#F����/b�l�I ,�ʪ�V� g�ݑ�h��Kۼ��V6YW�VT�z��h�#F����K1^��K�����3����V6YW�VT�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���g�����}�d��]����(� ���܊�,���w�}�d���S��g�vc�O���ܿ����l�4�4���ݜ���w��e!^�e!^˧��[R����r�)� �� �@r�)g �������ۡ�g\������ ��e�������g���he����������a��]��z��hc�����������&�?������a��]��f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f� ���v��N��V���� ���#W۬�g�vc�O��d�_R�+�%u�0ܡ�������=覦>\c\� ���\�`��g����ۡ�g��g����g��C6�����y1S�=e��D��e�\�`#��ߡ����������,�����Z`f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY��ԟʩf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�[���>�9Y�d��"���[���>�95�d��F<>�9>�9[F�9������M�d��[���>�9r"����Nb��"���"���F<[>�9���>�9f�kQ'�E/<>�9F<��a<=�ܕ��Tkf���̡]��>�9��{����U���a�_R�{Uf���U���a�V��dL�U_�a��{�dL�f���U���a�dL�U_�a��{�dL�f���U_H�/���a��U_�a��{�_��f���U���a����a�_R�Uf���U_R���a��U_�a��Uf���U���a�V��dL�U_�a�dL�f���U���a�dL�U_�a�dL�f���U��/\[�_�a议SIO�Uf���U/_H�/dk���U_�a�_��bf�ob����ob���̓���Q'�d�NZ���{Q'��X*?������������ ruA,p]�K�p+ �[V���[� �i?U��i?U�3��<�����[Vܽ�NZ]癋��3��� 8�Hހ 8�H� 8�f��d���Y��d�>3��f�fc���ir�>3���fd_bK��2�9�(����X\�i�S�Q���� 8� 8�H�Y�������g��t�K��2�9�$�^]��]���_���������]� ����&��˟uYӓ,[R��S���]� ��������&��˟uYӓ,]� ��Jb���e�S����ދ�����vK�Ο$���_R$�$��.��ʤb�������C���܊��*��k ���܊��*��k ��d�B�%)0���܊��*��k �ɫQ'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ʩ ����M� �z��hʩԟuY��ԟʩf���ܿ����l�4�4�l���ݜQ'o����^�A❣�w���w����&� �������.�P�� U�g�����c��P�� U�g`#���}B]�}B]癝�`B��gc�:����g���g�W`��h�W`ȡ&� �]��z��h��(F��T���١&� &� f� �����g���g��(�VܤVܥ�Fb�*H����_R����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�d��_Y���dա�_Y���զv�A�m�M���_Y�������j��j��j�H���I.ܞ�vc�O��=�`#����)�l��-y�l.ܞ����ۡ�g+������C��������N�����������������t�t�������g��gɦ��e�������g���he��������_Y����&���z��h�_Y\`d��_Y���f���U�����<�����gɕ�2E�w���lw��ӟ � r�&���g�W`��h���W`�e��D��BK\Z]�D�z��hǬ��D��e��D����e��D��e�\�f��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK���� �����]��N���d�X�+ ��X� r�&ܢ��C���g�W`���](��Sd�]�R�ۢ����W`��]�D�e�\�`#��� �C �C����e��N/�ة��M� ��j?��gO� �C �C �������ۡ�g��S��g����Jb�Q'o����^�A��V� g�ݑ�h��Kۼ�����bܥV,�d���d����Eb\c\܋���g`#��ߍ����X\� ��V�����g �������ۡ�g��g��l�l��C6�H����vc�O��o�Q�]�(�����<���g�W`��h�=��W`�M��6<��z��hn�]�D�a�qj�U�V5����M��6�f�$��}�d��]��ʇ�a�w������]��z��a�w�(� U���#F��܋�w�}�d����vc�O�l�4�4���ݜ����J��w��e!^�e!^˧��[R��c�:���#F����gc�:����g�e�������g���he����������]��z��h�#F��ܭ?�R�����]��f��?�ܜbD���ܥ�]��&�fS����3��}L��� ��d_R��ܥ�]��_R5�fS����t�vj���t�vob��3��}L��� �̢�����ܥ�]��5�fS���3��}���z��h�#F�����\���#ܡ�3��}L��� �t蜟�3��}L��� ܡ�3��}L��� ܁#W�������3��}�D�de��?���S��e!��L^`�uY���ݟuY �����g[�ҝ�`B��g�j��j��ww��m�nZV���*���kZn��n�t�f�n������&�nEZn��r��t�]�*�e�J ����X\���0��X\�c�_b�� �n��nf�q����� E�r���E�e�J��܊��E�"q ���TE�EZn-E�_b�� �n������f�y��X\�EZW���X\�TE�f����������X\���X\��X\�EZf����2�N�I���C�'\�q����fEZ:�����kZnfc�i=�Y�f�\F�ob��Q'\F�de�������X\��X\�y�ly�y�lQ'\F�de����Q'\F�de���̡���;���Ep�����ge�J������`eゥN/��������g�v��_R�����ǝ��j�v�j����vc�O�4�˟˟��ʥ����ܿ���ۥ�����V� g�ݑ�h��Kۼ��e!^[R��˟nY�N/���;���z��hN/��@LnY�����nY�N/���;���f�G�蟋���g����$��}�d��]����(� U��Nj�w�}�d�l�4�4���ݜ����J��w��e!^�e!^˧��[R��c�:�� ��]��c�:���#F����gc�:����g�e�������g���he�������c#��]��z��h�#F���K1^�c�c#��]��f� ������ ��$�e$�e� ��P�s�ބ/��/��ެ�����������s��s������*�K1^�C��K1^��k^�C��k^��K1^�C��K1^�����<<����L^`R�0��L^`��EZ��EZ��b��-E�-E܎b�ގb��=�b�������*����A �f<�YA ���P��]�s�K[LN� U���ݔܠ|�]�dk�۠�p�d?�\ܐp[UdppV@�T�[Ud|�[Udj���X���k���i=���M-]��ݝ�3N�5�i=��e�^��:i�,��a�X\�r���WJ��Jbܝ��X\�r'�a��aWJ��p�*��f�{��f��P����3���<���r�rnKi=����p�i=��f��h�:i�<�o�:i�*��ZV��<��:iS��:i�,f���T�h �O��s�� �O��U�����i�� ���>3�܀���� ���*���������h�_�a��SIh�:i�f�����X\����Udk�v�c�i=�Y�5��3N��X\�ru����rru����v��v��obQ'\F�de�ޝ�l�5� ߝ�3N��d[���܊j{�͢G�j{�͓���d[���܊j{��Gܢ[V�?�9�j{��?�9��](�j{�� ߽�?�9��f���[V���GܣGܢ[V�f�[U����](�[U���](f� ߢ��� � � ߽f����l��̝ǝ���l����>�-��_xU���?�R�=�rc_xU��`B�rc�=���*e!^� ��*��������E���?K���_�Lru]�W���<>�-�������_xU���_xU]⸗�_xU]⸋=�rc_xU��`B�rc�=���<��/�C�_xU�?�R_xU�?�R_xU�?�R_xU�?�R_xU���×�_xU]�sܝ_xU� #�f������_xU���?�Rf���_xU�?�Rf���_xU�?�Rf�>\ob��ob>\B��̝>\B���`b[��T��3��H�t�`b[��T��3��H������ܿ����]�ww��ا��i�g=����J�=��䧄�L#���lR����gԟlR���5��M�l�ޟ$���uY������3��}[��T����e�J�O����������)������I��������)��������)���NZ�����3��H�fҀ�bk����"GBd ��X�j��k����[�X�j��]�\]�\������y����k^��y����;y�����a�y�����ae�^y�������������������y����k^�;y�����a�y�����ae�^y�����������������f��e�JJ����bk����k���������B�rcru����f�[ۺbk�������������[ۺbk�����X�f�bk�����������������X�f�y����k^�ff7���6�ob\F���\F�̏��P�P�qob�d�F�;ob������]�\�����k����k������������B����B������C���������B�G��j�G���݁#W�L�?,��c����J����c���Cq�P����K�j�q�+��yc����K�j� ���܊�P����K�j���܊]�(�]�\��COw��c����J���݁#W�L�?,��Q'q�y��K�j� ���܊�P����K�j���܊�P��t�]�(�w��v&�l��l�ޟ�LF�SN �������ۡ�g5�c�:���#F����gc�:����gɉ�h�NZ����P��f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�fү�bjS���m���t�f�����d��՞���C5�U"�b4�䯤bjSf���bf<�����߶f�{�(f�{��՞fj��d[��K�j�r�)�����߀���|�i��bk��f�e�J����C5�ob���C+��ܦmob�m�M�߶ob� ��V������ob���� ��V��f�{�(f�{�obf�{ ��V��j�ob�]�D�af�[V�DU�ob�]�D�a��̤b���A�a�|�"|���5�k^�_���$k^�^�_���$^�_����_������^�����^�^���^�A��-���-���^���^� Y����^�^���^� Y�^���d[� Y�]���^�L�^�^�L���|�����nK|�"|���f�8���W��>�� @��*��]����[��|�fl�#�|�����ݱ �J����Ucp���M�����:?�M������ �JpL^`O��� 8`� "�,������:?�M�����j��a�Q':?�M�����j������O���L^` �c"���:?�M������f�c���U���Ud[�q9c�M�����f�c1�cH[�r<�Kpc���Uf�͓,���,aa��������2E�L^`R�0�ޒ�|�œ,���a����pO���L^`f���3N��� 8`ob�_����L^`2E���3N��?��WL^`0�%)5�%)0� ��ݡ8��Y`�7���Y`ob�Fb�*_R_R�#W۬ǿob_R� Uob /��d�B�4�Ο��d ��.�� �靟e�@�e!^�l�ޟ}B]癍���$����U�����<��}���_R$�$��8�%)0ށ#W۬�gFb�*k��Ql /������p��첫��������]�fW�Wdd����]癲-�-fW��X��/�Cj�dDU`B�dfW�d&�T�� �Wѫ�����X�dDU�X�d�M-Wdd����]�ddfW�O���O��ޒ�O���W�W�O���TA�O��� ����]��O���]��]�O��ޒ����_�a�����X�fW���� ����f� [�� [������]癴fW�>�2��X���->�2�W��-���-�����]��]�.����j�j�����]�]癚� [����� [���A �_R��_R��8���M�A �_Rp_Ri :�O_Rd?��*�b� sTNү�_R�ࢽ��_R�f�[��܁ �[Ud�[�](�[���L� �[Ud�� ����j���� ߴ� �[Ud �rK1^��](d��pe�Jc���K� � � �Ҵp���K�K1^��](S��]�W���>�f裖a��M�uY�j���e�J�d��t衟uY��̬&޼��]b�M�Vܱ]�W��M�uY�Q��Q���6�f�Q��h�Q��%a�qh�Q����R/��Q��GQ�q�Q��W���R/�h�Q��GQ�q �h�Q��W�hW�%a�qhW�W�W���R/�hW�GQ�hW�W���R/��Q��f�82Q㇯8hL8��2Q㇯��hL��hLi��h�OhLh��R/�f�8��* �DUQ2�ۡe���b +Q2̡Q2���X������N@� �`c���G����e����dru�c����"5�k- sTN[V�k�N@� �`B��d]�Wܠ�N@� ��'�N@� �k���M�V� kZ�� �` �` +N��N@� � �[V� ��[VZ\��V��f����F�ާge!^�h����F�ާge!^�h˧��d���gG2 �)�l��$�`#�����gɪ�V� g�ݑ�h��Kۼ�ȉ�h��X�.��H�9��X��ؐP��.��fҝ����ܿ����w��`#���y�l �%u�0�ء&� &� ���(S�=c�:����g���g�W`��h�W`Ȳ&� �]��z��hDzJ��V@��3�ٲ&� &� f�d� ��dn� ��զ� ��b�����(�VܤVܥ� ���vc�O��=覦]�D�a�������g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h ���� ��f��\�nY�d��\�nY�d��-�=��g]�D�a���DU�j���ۥ�g����gɪ�V� g�ݑ�h��Kۼ��n8���@��h��b�*�<����ؚ�bf�S��j�kZf�{f�{fV���t�F��+��@C �Y K�<�Wޔ�d��f�U�V71��?��WL^`0�%)5�%)0� ����Y`�7���Y`ob�Fb�*�8��d�B�4�Ο��d ��.�� �靟e�@�e!^�l�ޟ��U�����<��}���Fb�*8�%)0ށ#W۬�gk��QlɫL^`WWL^`fU�VWL^`7L^`1��|�r|�|�}����f�� �i@��\T�b�*b\�������rru�̡ǡ� �����͜bD����]��&�fS����t�#Wۢ���;�`]��5�fS��#W�́#W�t蜁#Wہ#W������NZ�����n�D��S���� E��g�j��j�w��m�H����(�VܤVܥ��vc�O�i�������n����զ�������KZ�b� g�ۥ��_��]�D�a��-��gɉ�h��NZ�������f�^����B�A,�W_�k�W܀L��,���W���c�T]������ۥ�̇W_�k�������� ���UX��c[V�UX�[V�UX��f��UX��cM�Q��UX�M�Q��UX��f��f��ob��`B��ob����ۡ�ob��obc�UX�B��ob�UX�B��ob�(UX�B����^�ob�F��T #�*̝�UX�B����9��9��������D��=�fQ'���Q'����Q'�����Q'����������EZ����������Q'��X�f L]� ߾�|��g|�k��Ql���c�ET�ET���>�>\ET���g�|��.����U�����<���_R$�$�ʫ�d$�t�ۣ��lʗl�vc�O��<�����y1S�=y�le��g�#W۬�ge�J���g���������0��M�b�.ܞ]�D�a��-��l��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����d$�f�Ο�-EܟӀ��e��N/詩��g�1`z���z�z����vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf���g����`B��g�vc�O���g��#F����/b����h�/b���g���� ���\�`��g��g����S���Z�^�[���g����l���gɪ�V� g�ݑ�h��Kۼ���NH��K��NH���z��hd�r� a�NH��K1^���^���NH��K��NH���gfҢ�_R[VZ�2� :�f��*�b��\��\��*�b������2���f�c���nK�t�f���狏] �oj�Uj��f�k��n�bnd�m���쯯f�U�"����^ �Uf�k�����^ �kf��i~��狏] �ikK����^ ��i~df�����f2߄�n�b�bϤb2߄���2߄�q�����i~�np�i~��狏] �f�mob�m�M���U�^�?b������] ۤb�b��] �oj�ob_R�#W۬����狏] ��kZni=���l�i�/xNI��xN-E�kZn4��xN\�`i=���i=�����=��W�ݻ�xNxN�@��=��W�ݠ�@kZn-E�f�kZnUX�t�UX��M� �e��>�2�K��M� ��n��M� ��A �TA�b �Tr��L��A �A �� �A ��a.���a�i@��A �f�{ LA�bru� LA�bru������UA � LA�bf�r_R��|���|��� �OI��K�#W�de��ruI��_�a��� �OI��f�A ⱥ��ru��H�9T� �� 豱T� ��_Yt�_Y�"�nf�)���_Y��e�^��_Y"_b���U�V�X����������q�<����U�����U�Vk|�_Y_b���_Y"�0�_Yt�f_Y���U��������7Y�Y������q�<������������������ob�lR��́#W���������$$�e ����_�ET�ET� ���vc�O��驩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf���8dW� b�Wf�DD��D�a_H�DD�a_��8df�D�a_&��b�8dW� b�&��bD�a_Wf�]���M�]��]���f�D&��b�@�D&��b�@�D��D�a_H�D&��bD�a_��8df��fE�+@��]�� r�&ܪ�V� g�ݑ�h��Kۼ��e��E�l���e!^�?�R%�%�g��W`�b sTN�W`g����v�E����P �P ���g��E�l�-2��z��h�X���-2�e��E�����E�l�-2��f��������$$�e ����_�ET�ET� ���vc�O��驩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gf�Q'[�`B��*Y�[�5�p�[Z ��T\��4��������K%)0��v\F��g���O��g�+ ���g]��dX\�g�b��g� ���z��hH��/���?�K1^������� ��f�j�k��_xUH��nj���ޝj�k��/_xUH��nj�/��f���a��a�vA �0UDU�j����S�H[��af�H��_xUH���H[�H[�/�vnob��vob��̝��v����*R�������������������?,��5��0U�)Rg�)R#;䞿����*R���������^���U����^��?,��5��0U�)Rg�)R#;䞿��^����*R����;�.�I�J��.���?,��5��0U�)Rg�)R#;䞿.��Q�kZd�fkZ\`d�5���V� g�ݑ���Kۼ���P�� �����z��h��P�� �����z��hP�ܝ�5�����P�� ������D��S���fc�:���c�:���ۡP��c�:����g�w��m���g�vc�O�K�b.ܞH�9^����`#����-�������g��-���>\c\ܦH�9^������H�9^����� ��g���h� ����A�����z��h�&�nK����L�a��������A�f�����]��N�����ܿ����l�4�4�l���ݜ���w��������.�P�� U�g�����c��P�� U�g}B]�}B]�c�:����g���g�W`��h�W`ȡ&� �]��z��h��(F��T���١&� &� fҥw���lw�����ŋ������_R���� ����g���� ��� ���v��S�_R��g��g����]�R���k��Ql��g����e��� Tg�����g��_Rc��� �n�bOܐ_R��_R�f�2�=�� �pJ�������I^���Z/�Cp�9?�ZY2�=��9?�ZY� �2�=�2�=�pp� �� �J��J�������IJ��W�2�=�p� ��J�� U�I]��If�^���Z�9?�ZYc��f^���Z^���Z/�Cc��f����F��T� �*��r��g�� N���F��T #�*��vc�O����+� 9�z���+ৄ��+� 9�[=�Nz���d�H�g�����g��gɪ��g�W`��hK�Y��=��W`������6<��z��hnKی�(2��J����������6�f�5�5��������۝�YK��f�K��K��5V�-�K��\F�K��fK��,K���5�f蝮YK��f�K��K��5V�-�K��\F�K��fK��,K��5�ob��̝�K���Q'_R�:��ikK���^ ��U�_Rk��Ql��Tj����Q�c��k��Q���Tj�����8��d�B�y�����_R��d ��Q��[�l�ޟ%)0ަ�Οe!^���N� �靟��1���K �8�k��QlɫW��X\�c���W�L@�`�K������[V���T���a�` s�V���d�X�ޛ/�CW�d��L@�L@�i�Y�``i ��i�Y�L@�t�f� s�Q'iUfru���?�,���V���,����`�� �,����ۡ,���� s�/��TN�����hkZ�(hkZkZ�(kZ����ob�(����obob�(ob� ���U�O+��(� ���U�O+އ �k+��(� �k+�kZk+��(kZk+�+�d�(d�(L��� ��(dA �0U�0U�(f���������f �J�fi~ �J�� Xf��K�U�������?��\�n�nY�MT�MT�MT�nY�i~��kK�B�e��fs�>\MT�MT�W�nY�y1S�=V@�8�S����d��[&�Q�oby1S�=��U�^�?b��b�__�Ld���݋�_2��KË������틏��X��Lx�����L��f�Ld�������B�Ld�⋏�������1f �拏�������틏���������B�������ދ������틏��������������������� �c�T]������B�������޽��������+������ �fc�T]�������ދ����f ��苏���Q'q�y ���܊�L��܊]�(�lw��L&�l��lw��l�ޟʤVܥ����C���]�D�a.ܞLS�= �������ۡ�g�#F����g��gɉ�h�NZ����Lfҡ�3��H�t��3��H������ܿ����L#��lR���z��g��gԟlR���5��M�l�ޟ$���uY�����3��}D���/b�[��T����e�J�O����������)������I��������)��������)e!����NZ�����3��H�f��k�sa�� �c�A����ۓ� �� �)+�&��b�M�����ۓ�����ۓ� �i=�s����@c����� �S`���)+k��^�)+f��)+�)+��<��R���=���g��U�^�?bob��ob���������ۡ�̝�)+��<��R���=���g����b�c�O�ͣ͡���C�r6�����.�t�l��ܟ�%u�0ܞl�=��gd d �d d �d d ��g��g��@]癞hQ�&�]白������C�r6�����?z��hC�r6�kCU ������C�r6�f�?��WL^`v���髣�0�%)5�%)0� ��ݏ��ikK���^ ��U�_Rk��Ql��Tj����Q�c��k��Q���Tj�����d�B�.��4ퟔ�d ��e�@� �靟Ο�k��Ql�#W۬�g%)0�ɫ�@@ XG2 ���@ X@ Xf�i=���M-Y��M-Y�f�rnKi=���M-��M-f�rnKi=���f�rnKi=��[&��f�rnKi=��蛕�f���w����������a_S�� ����U� a+��+�j���ۡ���d�_Rk�.����g��V� g�ݑ�h��e�J��R�ȉ�h��NZ���ر�f���b����b�O���b������Ps��������b���b�����Ps��G�������|����s����b����ru8^��������b�������j�����d�K���X�����b��������b5V���������b��d ��@� k]�R��ybW��R��b� Q��R��bR��bh��^�O��R�2�=��T��*b�����? �O�{�Q'[8�b�O2 濠�R��bR��b��a��ݺ�,������O����a_P^�d]�s�]�s�4b�4bkZnf<�ob����kZ�7���I��X\�� ��I�"��I�_�=��I��X\�q��Iߗ�Iߗ�I��X\�f�]�%�-E�]� �Q -E�]�� V-E�]�A@-Eܗ�Iߗ�Iߗ�I��X\�f��"�_�"_���I��a_"��I��a__�_�ob�����a��,��8rq�2�,���܄�]�,fW�02�2߄����܄�]�WfW����������]�fW쪡��-fW�����ki�����]�]癚������̚�������������aB�����@xNxN5�j{j{xN�@�xNf�����xN�%5���xN�%f����%����aB�ǝ�%f��%xN[�[���%ff�ob��xN[�[��̝xN[�[����WWW��f�W�WWWW�f蠗�WI��_��0��Wf<�@ XU�V��"���"��I��p���Wf0��0���1�ޗ۠����Weァ1�袀���%a����rc���G�G�G�L󀢀q ܢ��܊�Ţ���L󢀶��0���r�Gܢ�Gܢc���S��[&��0�fS��S�=��Z��j����)�_b���X��� ���)�_bj�����ܠ���S�=��Z�q��)�GܢŢ���)��^��A�5��5��Ǡ��)��dk���)�dk⢀��뢀���5��\I����)�i@�)�fS���5��\I�5��ob�5��P�����j����5��P����g�m��bU����d�n���C5�b`f�Q'�f�{�����ܶnf�]���]���#F���d�_xU�����a��J���� �[�_xUa��M��d���Q�_xU�f�*��Q'��J��i~f�{��^ ��O��f�{� �l�W�����"O��f�{"O��f�{��^ ��܇�Cdk�k^�5�l���l%����z�����C+��ܦk-�����6���6��f�{a��J�������6���_R6�QI�6�i~�l��s�A �L�UX�A �] ���A �UX�s�] �L�UX�] ���] �UX�s���L�UX�����UX��NSB���fc�T]�A �] �S��\���-A ���S��\�] �A ����A�A �A �] ���A �] �A ܇���A �A �] ���A ܇:���] ۮ��] ۮ�����] ۮ��] Fᄈfc�T]⧄�] ۋ�] ��I��"p� ��C�j��"r���=�p3�X�=��X�ru��qru�=�f�o�������ru�TS�D�9^TS���o���A�i����D�9^���A�)��y��,� �j��� �� ��C�j��f�TI��#ݻ�=�TI�LF��8�COZ�����e�8�COZ�������?�F�[�e�|��W��X�DUe�TI��(8�CO]ܞTI����8�COf<�e�eゞl�=��=��̱�8�COl苏��g����$��}�d��]����(� U��Nj�w�}�d�l�4�4���ݜ����J��w��e!^�e!^˧��[R��c�:���#F����gc�:����g�e�������g���he�������c#��]��z��h�#F���K1^�c�c#��]��f�Q'c���C?�Ry�t���K�j���܊]�(�w��&�l����Ud�/b��vc�O�l�ޟ�d]���_R���� �������ۡ�g�#F����g��g�w����V� g�ݑ�h��Kۼ���<�_R����z��h����ۡc�T]�UX�p��F�J�a����S�<�_R����f��������$$�e ��� ���vc�O����I���I�W`g �C �C����l���I`#����U�^�?bl���I���I���I�W`g���������l�ީ���g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gfң�t��NH�߃�NH���[�i ���-E�Ұe�J�ң�@�H[w������M-����i �H[w�H[^C w��H[�^C G�ҟ]@��Gܡ�҃*��Yށ#Wۃ*�Y*be�J�^C Q6b��N�H[^C ҟ�҃*��Yށ#Wۃ*�Y*b��a_��Q6b��N�H[��U�^C �M-^C �N��Uw�N������N�f�[Q�^�[���N��NH���g�NH��K��NH���ge�J���g�#W۬�g[�fҰob���uY��N�uY��_���Vܯ�b5�t�f���,^�,^��_��f��]�?��r��bk��)��_2i ܠ ������۠]�)rW�L����)r_xUW�xN)��)r)��_xU�f�o�f�^컹bk�����a�^�sa�����a,�� ����a��L�_xU,^�f��^�%����^������[��^�sa������^�����^�sa��f袢�r�)��Z^��r�)��Z^���܊r�)���j��]�D�a]�D�ar�)����r�)����iQ����e�J�� #��[g�]�L�%a䢢G�颢���*�b_�a�]܅�f�%a�OL�P�V�G��_�\�`�i�Q'�f�OO␢ � �\�`��_�a�\�`�f�O�����O����� ߢ�O⢱rq �G�� ߧ��_�a�f�����������O��_�OO�����f����$�e�Q'�O���O�ܢO��]��W`g�篢�]��W`g������� sTN��X���$�e���������_�a�f�޻C��r����C��fC��r"����C��f�"���P��/�C��C������_Q��� ��� ��X绛*�j�C��Q����fdf����f\F�����c���C��Q �����QC��_xU����_Q���*� ��� �C��Q����"����f�����c���C��Q �����Q�C��_xU����_Q���Gc�C��Q��������f\F�����Q�)���QQ�)���Q�Q����Q�W�L�����W�c�O�hrhW�|�W�-E�_xUf��W�[}q��W�L�����c�O�hrhW�S�Y}S���J�ۻ�S�p|�c�O�-E�_xUf��W�[}q��W�Lhh��W�c�O�hrh|�c�O����`_xUf��S�[}S�W��J��W��8�J��W�S�S��8W�pW�[}f����P�Lh_xUob����P�����<�j�_H��#݆b�t諧��P�����������������_�]��N����RgH����Sd� r�&��R](��K�H�����B��X�}���b��b��bV6q����S���q���bqQ�r��f�S���S��^����b����b�^��Q'�^��qQ�J��qQ����I��S�����bI��]��q��b��r� a&����P���b��b���P��Jb�@ X��b��b@ X�Jb� ������^�d���q�q���@ X���b�q�qQ�ru��r� s�W�ݛ��q���bqQru���@ X�*�b��^��[H�f�^�q���b�i ���b��I��S��� �O�#W�ir� X�^��fdf�^�f\F�ob-E�[Q���^��[Q��e�;�`��+����Tv ��ݯ��K�j���v�5�?�R"de�H�9��K�j� ���܊1��L��e�&ޯ�_Rl��+����K�j��=�A��W�����=�W�������l��+�����c�Z �e���+�����l��+��>�V�K1^�e��a������g��+]�(�e��a�N�����������#F����g��g��?�Rfҝ�5�f� kf�U���Ufk��k���kf[�kZ���H��k�����c���Ck��f�i~����k�����c���Ci~f��������ҡ���mobm+�b�8��8�ob�����H����HܛkZ4��4��UkZkkkobHܡH������_R�#W۬ǿ�U�O� ��c�ob_R�o�obo�ǝ5�ob���ob���v�t�"e�t��0����R���5�]�\]�\�-����i�rc���ruqi������ޢ���ۢ"ru��G�J��ۣ"���M��M���R���R��R\�`��R���R��R�]�\�t�f��0�� ��L�c�L����i�����R���5�f�� �����c���8bc����c����0�f�L�]�\�-�c��f���R/�]�\V�/����� �����c��f�V�/r�c��f8bc��f����[�c��f�=�W����c��#�����r���[��c��fL�?�RL�V�/��[��[�l̡V�/� ���`B��g�vc�O�Q'c���C��#W�y� ���܊�t����܊]�(�w��v&�l��l�ޟ�ؗ �O��e?c�:���#F����gc�:�� �����gɪ�V� g�ݑ�h��Kۼ��(�D�0z��h��� �ݠW�8��?\I(�D���(�D�f�e�@�ojꝟ��I��F^��`B��g�vc�O�z5V�����V�Mވ<�����z�zhz督�w��T�b�*b\�g��g�jb�N����T2�M]��N���]�� r�&�Ȣh� ��5V�����V�Mވ<�����z��h5V������܈<�5V���f���ܿ����l�4�4�l���ݜ���w��������.�P�� U�g�����c��P�� U�g}B]�}B]癝�`B��gc�:�� �����g���g�W`��h�W`ȡ&� �]��z��h��(F��T���١&� &� f�-Eܴy�=���-E܂���{��d[�o�L^`d[�-Eܴ����{��d[�o�L^`d[���d[�f�����k���Y*b��UX��L^`d[���d[�|���d[�+y�EZyUX�|�I��|�V,��Z��A,?��������������q=QQi@�H��d[�QQd[�HNf�d[��J��@�pd[��J��s�i������@�pd[�s�rcQrcQ�&�� Js�d[�-E�rV� �*���M�@�p�Qs�q@�@�ps�d[�Qp-E�d[�H��d[�|���d[�QH��d[�fs�s�d�X�d[��-E�_�a�s�-E�Lx��[Y�_�a�Wܐ�\�`� �Nd[�L^`p�QWܐ�Wܐ��L^`Lx���Y�_�a�Wܐ�\�`� �Nd[�L^`p�QWܐ�Wܐ�L^`d[�fc�T]���UXobUX�UX�����{̡d[���{��&��nK��L�_�a���[k�+����.��oj�oj�ob_R�#W۬���U�^�?b̫�_RA �0U�i _R_R1��L�i ]�_R_R1��L���i �#W�?[e�]4`]�u�i �� �HW��y�oj�DJ��A �0U�1��L�Yi _R|��<�Y_Rl��Q)D��l]w��5� �VJ�b��5� �i _R��]�_R1��L�i �bUs�����������s���U"[r����ܢ� �S�=��Z��bk���,� �`�UL�醂i��"s�����������s���ks�����������1�+ U�5��3�܌ru��i��3�܌����ruC��i�`b�;j�<��C��X��M�k"��ft��3�܌ �f�ne�L�s�����������ft��3�܌ ܤfnK��3�܌ �fn�bU�bk�b�3�܌s���Us���k�X��M�kf��e�M �ruj�j� ����C���CO ��fn�nK� ��t��3�܌ ���e����܊e�� ���܊]�(�w��e�&�l����_R~�>����c���CQ'�Jb��K�+��y]�(�e�&�l��c��y��Q�t�]�(�5��Q��%�+~�>��e�&�l��vc�O�l�ޟuY0��~�>��l�ޟ�~�>���#F����g��gɋ�Q�fҝi~�C�\�`�C�s��C�s��C+�C�V��C�[&��C�i ��C����i~�C�\�`�C�s��C�s��C+�C�V��C�[&��C�i ��C����\F�ob5� �����5� ߝ�C��Ο�-EܟӀ�ʞl�vc�O���˲mW�m���ge!^�h���˲mW�m���ge!^�hا��`#�������C�����g����ީ���g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ��xN�2b���z��h�b�xN> ���xN�2b����gf�v�⦦H����v��_���T��k��Q��1��L�Y�c��� c�O����[r��������P��[r��d������P��dn������P��զ����ۙ���@��b�d�(�������K�b���-`#���K�b]�D�a��g�n8��Y�dn�hP������2������������P��f���g���g���g��(�VܤVܥ�H����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}��ʡ��e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�y�lɝ~�>���_Rl�(�������/b� ��V�$��_R$� ��V��_R��_R~�>��(�������/b��vc�O���j�c�:��l�]��B�c�:��l�]��B�c�:���j?��gc�:���#F����gc�:�� �����gɪ�V� g�ݑ�h��Kۼ��d]���_R����z��h��� r�&�|�s�����辯������d]���_R����fҙ��Wߙ���XBA�adn��XBA�aզ��XBA�at�Q'[�`B��*��g���� ���vc�O⦟�����g/�]�]��W`g,]癓d d �d d �d�'�LJ���) A� ��V�����) A� ���`#���������������gi�<������K�e!���-]�D�a��g��V^茄�� ����XBA�afҡ�3��H�t��3��H������ܿ����ا��i�g=����J�=��䧄�L#���lR���z��g��gԟlR���5��M�l�ޟ$���uY������3��}D���/b�[��T����e�J�O�����������)[��T����e�J�O���&�V���������)�&�V���������)[��T����e�J�O���P���������)�P���������)�������I��������)���������)e!����NZ�����3��H�f҅ࢣ�����TS��z��a�}�����W�e!^mW���쫁e!^m���ge!^�hا��[R����g� �����g�Q'o����^�A�vc�O�:�� ������ ������� ���R��������� ��(������ � �������� ���g�ӟ �e�������g���h�e���������TS��z��h��K1^���� ��X������f����b�c�O�ͣ͡ S����.�t���_RoT���_R$�$��]�D�a�NY��/b�v�⦦���f�{��������g��-��������W`g����g��g����]��y�l>\c\��V�����g��gɪ�V� g�ݑ�h��Kۼ�� S���vz��h��NZ���� Sf��������q�yM�����yM����f�oj�Uj��f�5�kd�k���v�A��a_d�f�U������^ ����Uf�k������^ �kf������ikK����^ �moj�m�M�df�����f��c����m���ޢm����mf�^m�M�oj�_R��moj�f�m�M�����F�������F��y������y�y��y���ۥ�mob�m�M���U�^�?boj�oj�ob_R�#W۬�ob_R��ob��rru�̫����]�v�A�p��첫�d�_Rl)�dt�l)���t�l)t�Q'o����^�A�\c� � :�Fb�* ���vc�O��d ���d� ���e��D��e�\�����]�\lWB����e��g��g��gɪ��g�W`��h���W`�l)`M:z��h�K1^��)q 3�Lx�������l)f���g���g���g��(�VܤVܥ�H����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}��ʡ��e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af���K�j� ���܊���K�j���܊��J��y��3N�t�]�(�Q'~�>��w��v&�l��~�>��l�ޟ�vmw��?[ �~�>���_R��g(�������/b��vc�O����K�j���c�Z �e���#F����g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ�����3N�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���I����U�����<��.��$��m�M�ʝ�vA �0UDU�j����h��m�H�����t�v��vt�vA �0UDU�j����h��mvc�O⡌vt蜌vb�ӟ �m�M���-��DU�j��DU�j���%�ۥ�ۥ�g.ܞ]�D�a���gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ���،vf��������$$�eΟ�-EܟӀ� ����_�ET�ET� ���vc�O⩩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET� ����M� �z��hET�ʩ��ET穩��gfү�����ܯf�{���p܌�f�b J�ۤb�b�bU�_xU����O�G��H�9.ܞ�X\�d��Mﯯ�b�b�J�ۯ��b5�b�Jb�c�:��_xU� �_xU����OO�c�:�kK�B�eϯ��fs��f�{f�b5�ob�b�.�g�_xU����_xUob�H�9^ob����U�^�?b�>\�.ܞH�9^�����]��N���]�(��]�(�c���e�Jd��re�JҴ�UH Ol��rwҴ�UH O_R� _R� r��wҴ� ߁#W�Oҁ#W���L� ���� L�c��#ݥT���l�c�:ށ#Wۮw�#W��]�(�y��]�(�f�]�(�����ob ߁#W�O�#W�OiQ��Ǣ��iQ���w�#W�lҮ�#W�]�(�]�(�uY� U ���1�� U ��r+�j�W���1��dk�ۛ*��1��ir� o��f� U ��I���1��+�j�8K�ru U ��+�j�+�j��+�j�a�O+�j�+�j��X\�+�j� ���0ba��������1��ru+�j�W��+�j�W��f�TA�b �����"i� ���1�� �� U��dru �� �� U�-�rV� �*���M�����" ��� � U����"i� ��i�ob�� ��9i�����f��1����{r�NZ�N���1����c�f�� U ��rTr���B� U ���1��fs�ob��� � Up ������i�� �� Uf��� U������ U����� U����R/�� � ������i�q� � Uc��f ������ Ururu������{����:�]���J��"_���]��j{�M-d[�f�]��[�-Lx��]��j{��j{��c������j������c�j{j{��j{��"��C�����"+c�:�]⸾���_�a�� �WJ]���-K�iL���_H�Lx����_�a�[�-f��7�l�7��7�l�7��f�Q'��de��fd����lQ'��de��fl�7ޱ���l ��J}��������e�&�T�|���܅����#�������&�T��9��X��6�d��X��X�C��`Xr�o���6��e�Je�J�K`Xp/�6C�/�6`XC��e�J`X (�ru�C��c�O�`X�6�6��69����1��6�[��K����6��6�e�J��6C��C��6?�_b�6f�TI�����������d����A �UX��_H@/UX��A ��X�p[Vܫ���f�Q'\F�de��LF�SN�LF�SN��67�����ࢣ���Qd���z��a㿔������X\܃S��(�ͣ��܊}��}���ا��i�g=����J�h� ��=��䧄� �C S��U S��U����������gɪ�V� g�ݑ�h��Kۼ��Qd���z��h���(�4�����Qd���fҜk <Z�X��b�ӟ �i~j���j� �� �����CO �� ���vi~�j�v���b�c�O�ͣ͌Z�X������.�t�����ۡ�g��i~�*d�I.ܞ���v�⦦.ܞ��gɪ�V� g�ݑ�h��Kۼ��gQDZ�X��h�b�$ \�X��R��H:Z���Z�X��f���g���g���g��(�VܤVܥ�Fb�*H�����_R����vc�O�f�{c�O� ��݅ࢣ���]�D�a��6��#�z��a㿔������X\܃S�}����܊}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�af�e�@��le�t�Q'�5���j{���W ���܊�����le�5� ��+z��h�����le�de��胪���W ߃��Q'o����^�A��������JX�l��gɪ�V� g�ݑ�h��Kۼ��le�5� ��+z��hnK��e�b�?�R���le�f�le�f��������$$�e ��� ���vc�O����I���I�W`g �C �C����l���I`#����U�^�?bl���I���I���I�W`g���������l����g��gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�0U]�0Udr*�"�-�q�GQ�d�Ij�0U0U0Uq_�a�0Uf�0U_�0U�f���ruq0Uf0U���0U0U"�-�f�Q'dL�aTI��d�I��X�bh0Ue�j�0Uf�0Uhd�Id�Irh0Uf���d�Ie�d�Idk�.�I�����>����Iob� Ldk�.�e�eゞl�e�0Ud�Idk�.���������$$�eΟ�-EܟӀ��vc�O� ��橩��g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��P��I���z��hP��Iʩ��P��I����gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f���˲A ���+��^C �O���^C ��h�A ���+��^C �O���^C ��hا��[R��A ���+��^C �O���^C �������A ���+��^C �O���^C ��h�꧄�d>N�H�9H�9���-����=ߑ�h�-�ȉ�hW_l�f�t�_R�Q'����.�t�w���lw���w���lw�����ŋ������_R����[�v�v[�v�vc�O�]�R�����1��/b���S�_R��gk��Qle��� Tg�����g��_Rc��� �n�bOܐ_R��_R�f���g���� ��� ��[�vQ'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f��݁��L�����c���C�G���G������G��Q'"kC�+��y�t����܊]�(�w_�ww���㣿_�Q'c���C�G���G������G����"kC���#W�y�t����܊]�(�wvww���㣿v&�l����1�ww���㣿1�?�R��>�l�ޟ����L� �������ۡ�g�#F����g��g������[H����N��f�� ]��r � , ,r�o]�*�e�J �M� M�e�J � �^�WM� � �^�iQ�&ܿ( ��@�=���z���oY]a���3�K,���8�I��{ac���� �^�Yc����]�*������e�J �M�e�J �i�e�J � �^�Wf��Wd[�obW��-�d[�( �Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�z�e!^[R��˟Q'e�J��A ��P2EQ'�uY�$����g������I����g����.����g����˟��g������U�����<�����g���������g�����A�l��gɪ�V� g�ݑ�h��Kۼ���%���'�z��h�%�}��5�ʟuY���%��f��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ��S����g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gf��������$$�e ���}B]癍��� ���vc�O����I���I�W`g �C �C����l���I`#���l���I���I���I�W`g���������l�B�驩��g�1`z���z�z�����gɪ�V� g�ݑ�h��Kۼ������� ����M� �z��h�����ʩ������橩��gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f�J��J������#��}�����S��s�(���쾯LJ������������L����LJ��J��\Iq����WJr�r�0U��i ��������J�LJ�ܾ���Y�݀[&�q��Lbc\IC�ULJ���TLJ���������J�c�T]�J⯯q��A �0U0UJ�LbWJ��0Up���q���J��J��e�J�}��� �`J��J������#��}�����L������J��\I�������L����f�LJ辯t����c\I�-�Dk��J��\IJ��Dk�����Dk�������Y�����f\F����d��d��Y����d��f\F����[&�[&�����[&�f\F�����X\���b���b`B�������ߛ�����b��b`B�f\F���� �ru��f��� �%�g�� +%� �?�R�2߃��K �2� J��@��,���$����R�G�J.i ܕ�? r�&�� r�&�=�ܕ�NZ��_�nK����g�W`���](��Sd�]�R�ۢ����W`�����V��0��]��N���Q'o�����Z��vc�O���S�������w����ͥw����w���ʀ��b��gɪ�V� g�ݑ�h��Kۼ�Ƞd�����z��h���b �\���9_���ؠd��f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Wѫa�UXa�Wѫ�Wѫpa�UX��@f�Wѫ�e��@�r�)a�DU�@�@�r�)�@nY�Li�;�a=��a=��a=�Wѫ�e�r�)r�)r�)�@a��a=��a=��a=�L��@�a=�Li�;�a=�r�)�@_Q����@UXWѫa�UXf|Wѫ��?�WѫWѫ�Wѫ�e�f����J��N��r�)�@obr�)�@N���@�@UX�UX��@N���a=��a=�UX�UX��@N���@UXobUX��@N����������;�w�@UX�Q���=�W2�M����M��7Uz����d}��IUX�Z@UX��R/�UX��@UX�UX��@N���"UU��狏] ��^O"U��狏] ����������bZ���f���������Tf����c������c��f�v�MYދ�] ����T&�v ��~�>��bnK�.��vk5�kc���MY�v�A�f�v����] ����T2߄��X�Y�����dr� ���A�5�fd��+�WJ����5�5�kc����+�f��MY�v�A�5��MY��X��+�5��+ދ�] �c��f����Tc��[e^U�Vob�e?oj�e�^ob_R�#W۬�ob_R��v��] ��D��]��b�&�&�fS�����]���5�]�(�fS���b����� �W����� ��g��� �K�Yz�b� �����z��h�b� �����z��h�b����Ӥb��D��S���ob�P�� �������f���P�� �����ɥ�w�t�w��m�C���f�Q'3�X#M�f��@�y#S���@�J��]��X\��@�u���X\�f�_xU?��j�_xUk��j�_xUӞ_xUӞ_xUh_xU�bh_xU�(�,T��_xU��_xUruy�_xU_xU+��_Hܞ�X\�EZ_xU�X\��EZ]��X\�ruy�_xUy#S��A,EZEZ_xUy#S��_xU]��X\�f�J�������������?�R�EZ�X\��X\��EZ]�f�����W`g��e�J��u��8��W`g�����V@��W`g?�R�EZ�X\ܒܥEZ����h_xU>�2�( ��]��X\�����( ���Q'�=�IܯA �0U0Uզ�]�.��n�b�k� �=�Iܭ�b�����k�b��t�t�f����W��ޭj����*��j��=諫�*���^���� ��a� ��_xU��nf��r�=���TI���TI���TI�]�.�=�nK�|�i��bk��k����TI�k��j��=�f��*���2��\���V� g�ݑ���O,bc��J��P��+)�_�z��h�O,bc��J��P��+)�_�z��h��ob�J��O,bc�S��P�����O,bc��J��P����_��D��S���P�����f����������&�S��obP���+�b�̝�P���+�b�c�:����g�w��m�����O�]�c�������O�]�c������L���ŋ������Y�A��3��U�Vc J�� (���TQ'������T������R�0��U�V�U�V��U�V��Œ܋ iSd>3��iSd�U�V��U�V�� ������U�VU�V�܋ ���� c��iSd>3��U�V�i����p���Œ�f�C��C��7��k��������k�����7��k��U�VU�VŒ��7��k�� � �7��k��̚�Œ��7��k��譭�J�ۭ�j�ܭ��]�]�bb=�i�����_��ۘ��"��C⭘䭾���f�bb]�W�"�=b=f� ��_:ݭ|�P�V@�A�#�WiQ�p���f����C�����F��C�fxNfxNob��#�����ۥ�̭C��F��>\W�� �M�>\W�� �M�&��b&��b �M���� ��>\ � ߝW��W��|�c��#=�>\>\ �M�\F���_�a�����-����>\" �>\ ߝ�d����>\c�۝�f�۝��0U[&�/\F���&��b A� �M�&��bf�LcbC����5�� �M� ߝ ߝ5�� �M� �M�5�� �M�\F��ߡ\F���ml�l\F��ߺQ'\F�de��l��� �`B��Q'\F�de��lc��cbC`B��Q'\F�de��l��۝�`B�ǝ��́#W۝LcbC��5�� �M��;�` �������a;�`;�`Uf�;�`nK";�`��^ ��;�`kf��;�`f"�,��W� �,ZWj�DUj�;�`b"�,;�`f��J��c���� �`���nK� �s����c���ۍ�f�,��O␢Z;�`bob�;�`T��;�`bd$���2�=� J��4��2�=�2�=�[Vܤbd��y12�=�[V���S��( ;�����2�=�W���2�=�pp2�=�[V�f�����2�=�[V�2�=�[V�f2�=� J��2�4��2�=�2�=�[Vܤbd��y1kZp�2�=�p�b2�=�[V������Sܤb2�=�[V�f�����SܤbR�f���ob�b�9F���( ;��i ��J}ࡣ�J}�y1y1S�=���S��( ;�դb5�Q'���dru-2� �ru|/�����P�����P�|/��j�ܛ/�C�t�f蠓� �c��#ݠ"�� �s���� �c���� �=�I�c���� �=�I�e�L�� �c���k��"�� �e�L�� �_�� �_��f�ru�� �Lrupruc���ZV�prupc��#�P��ru���8K�rupru��� �c��#�f�ZV�|/��f�b�.�gruru�ob|/�����P��P���P���e�J�=�I����P���Q'_R�:��ikK���^ ��U�_Rk��Ql��Tj����Q�c��k��Q���Tj�����#W۬�̡8��]�R�ܡ_���d�B�y�����_R��d ��Q��[�l�ޟ��Οe!^���N� �靟�%)0�8�_��#W۬�gQ��gk��Qlɫ�Y}���B���)�\InK�)��*�ܠru �f蠠Y}���Y}���Bܠ�Y}I��,�Y}Y}�q=�Y}2�?�Q�/��,ǠY}q�Y}�2�?�]�,ǠY}q�Y}�2�?��,�Y}Y}��Y}�2�?�q,��)��N�c�T]��ޠY}�)��N�fc�T]��)���*2�� p����q ���*2�\InK�*2M���)���*2���*2�p�)�\If�U�V�A�U�V�A�f�{�A�U���*2M����TU�V�A�p��*2�\If��A��A�U���*2M���A�����A�U���*2M�������T�A�U���*2M����TU�V�A�f�A�U���*2M���*2M���)����I�)��)�g���N��)��Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا�� ��`��L ��h� ��ԩ��z��h�nK۟uY���ԟn�f����b�v��`B��g�#W۬�g�vc�O���g����L�@�l�N�޳��zle��gm�M�>\c\� ���\�`��g��g� ��`��L ��h �ȫ�d�_Re�,�z�J���t�,�z����z��h�,�z��ؓ,�z�J���f��������$$�ej���j�Ο�-EܟӀ���b��_�ET�ET��vc�O�Q'ikK$$$]�R/�f�{�Tߝ��S����g�1`z���z�z�����g���˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ET���z��hET�ʩ��ET穩��gfҀ-�\���Vߔd���V߭��Vߔզ�L]�J�����W�V�� ����i�� �����LW� �������<�a_�Z����Li۔�4��������������Vߔb�t���Vߔt覟�+������C�������-YK�]�D�ay�l�l`#���e��g��g���R�g��呞h�R���b�������Vߔ�2N��z��h�]�0K����Vߔf�l�ޟ��g�����}�d��]���}�d� ���܊w�}�d��#F����g����g�#W۬�g�vc�O�4�4���ݜQ'c���C��[��y5� � �t��� �? `Q'"kC�Q'q���܊ ���܊���܊��܊]�(����܊��[]�\��CO�w���&����܊��[�]�\�l�ޝ��w��e!^�e!^˧��[R���e�������g���he������� ��]��z��h���r��� Z��� �f�vvvc�O� �����g�����g�j���j�vc�O��P��r�䌜g��R/�A ��J�܌���%�%�g�L��R/�%�c�/��A ܌���g=�Nz����ݥN��=�Nz�=�Nz�c�:����g��]�� r�&ܪ�V� g�ݑ�h��Kۼ��l��Yz��h�2���l��Yf�e�@쟝��I��.��l��ܟ�� �}�`BI�ɠ��9 �����ޟ$��`B�ɟK:,=$\����ԟ`#�����������G2N_R�S��;�`��T�U���c���C{@�C��������#{�������N�ʆb�_R.��l��܉.�`B�l��܅� ��ݫe�^\���\����J����ybU��)��e�^e�f��8��b��p�8�q�q�� ��8��e�^f�ybj��Uyb��L�ybUf�i�yb4��_Yyb+޽_Y"yb+޽�lR��b�yb+޽�lR����yb+޽ybfUybob\���\����J�܀� �Ң����j����#���_�O\����J��\���f sTN��a__��J��\I����������#���b�J��������ob�lR���3��H����\����3��H��a��R�ET�Ea��^[�ET�E���Ua���Ea�Ea�kZv�A���3��K��ܽ���vf��R�HN���^[�HN�����UkZv�A���3��K��ܽ���v�f�[Rܧ�^[����Ufs�kZV@�T�TS�nK�_�LE�+���ET�8���HN��8�[R�[R���8��^[��^[���8�����8���g��呞c�����K� ����b����](s���[S��K� ����b�����aD�O�ߓ����R��02 r�&�c���������E�=�ܕ�_��K����K� ����b�����H O_ r�&�=�ܕ�_�c���g�����\��]��N�����S��g���g��(�VܤVܥ�Fb�*H�����_R����vc�O⇉`X�Y*w��]�D�a��6��#�z��a� �w}��}���}B������V�e���\F��g��gɪ�V� g�ݑ�h��Kۼ��]�D�a��6��#�z��h�K1^�i$��]�D�afҝ�Y`��c�O��Y`�� ���Q'o����^�A⃣��܊�������X\܃S�}���Y`��_R���Y`���e�@�}����U�����<��.��l��ܟʝFb�*�v���b�c�O�ͣ͡ #�*����.�t�]��dX\�gr�)��Z}B]�}B]��O������z���gɪ�V� g�ݑ�h��Kۼ��e!^�e!^˧��[R�� #�*���z��h�K�= *�� #�*f�Ο�-EܟӀ��e��N/��vc�O�P��\`B����Jb�Q'o����^�A����b_Rܥ�������U�V�5Q�b���g����g�1`z���z�z������˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ�ȩ ����M� �z��h�X��A�dr*���Q����gf�Q'�uY�Ο�-EܟӀ��vc�O�Ӏ����˲mW�m���ge!^�h���˲mW�m���ge!^�hا����V� g�ݑ�h��Kۼ��ԩ��z��h�nK۟uY���ԟn�f���g���g�y����f�{��� �U�b���C���g����l�vc�O�f�{c�O� ��ݤb���C���C��g�Vܦ������g� ��g���h� �� ��Ǧz��h+������C��+������C��f�y�d� �M�i��X\��� �M�Y0a� �-E�M� �"_���y��<�y��]��_H�y�d�Y�yky�Y0ar���xN�ܱy�0a>�90a=2�:D��BܣY0a ���py��f�y�\�`y��<�y��f豱�c��#=ߠ:��Y0a�c��#=ߠ:��y�ky��X\�yb]�����e�J8"_b�kZ���"�b��d����e�^�b�"H��-E��Xۋ�d������b�"�b��J��kZ���4��_��yb�X�"H��e�J���"�b��kZ���y�kyb]�����f��X\�Li� ���rLi�Li�Li�rLi��X\�Li�Li�Li�TS� ���Li�TS�H�Li�y�Li�Li�TS�y�y��X\�f�y��b�Li�y�Li�f����X\�y�l�y�l�yb]������eれ������di��K�]�*���Y�G2 W�L�ܒܥ���M��G2 ��K� �ŝ���di��K�]�*��TI�G2 W�L�ܒܥ���M��Lx�����TI�G2 ����di��K�K��9�A �A ��9�K�TI�K��9� ��K��9����di��K�K���A �A ���K�TI�K��� ��K��ݝ���di��K�K�Q'A �A �Q'K�TI�K�Q' ��K�Q'��K�f�A �TI�TI�W���bN��ob��TI�W���bNobK�W���bNi���i��W���bN̝K�W���bN�j{��N�Trj{���X��X�ru�N�r�)j{j{���ru��r�)��� ��X��X��%Ծ�X��%�%i�� `��X��%i��A��- ` `���%���i���%n�����X��X�f�j��% � �Z�R �dU��X� � ��%�r�)�j��%�%��%Ծ�X��%_�a�Ծ�X��%f� `��X��% `���i��i�� `��X��%i��f�Ծ�X��%W`�%ܥ�b��<��<���dk�۾�X��������Ծ�X��%� ` `��X��%fԾ�X�����r�)j{r�)��X�����r�)�r�)��X�����ru�N��ru�����X� ���X������� ` `]�������S��%d���� ��%ܤL^`�����\�L ��\�L ��\���\�L ��\�f袁q�O␮O� sTN�\� sTN�\�Gܣ�\�nK sTN�\��\�f袢Gܣ�nK���\�f�܁��fO�fG�G�f���UX�UX��\�?�K��L�af�{���J�ۭnf�{�nf���W��ޭ���|�i��K۴�d[�j�j�i���T�`j� �Z�(���Z�(�i�Z�(�j����i����Z�(��%a�ru����/Z�(�Z�(޻�/DU/j� �/�nf��rc����nK�|�i��bk��k��k��j� �f�i�/�9�Oq/f�a�i i�f/A �0U�_�ET�a�f�(ET�j�j�j�|�i��bobj���f�{��f�{�obf�{ ��V����]�D�aob�]�D�a̡6Y�����L���c��������������Q'o����^�A�v���b�c�O�}�� ���܊}��$��}���ͣ�w�������t�L#������KZ�b� g��g�ۥ�g�=��g��gɪ�V� g�ݑ�h��Kۼ������(�Q���z��h��������f�`B��g��g�v���b�c�O��>����(���X⃞���Y}��(N�⥃ ��� ����ܿ����w������e!^˧��[R���V� g�ݑ�h��Kۼ���Y}���(N����۟�h�uY��� ������۟f����F�ާge!^�h˧��[R�㥝�w���ǝ���w����g� ��g���h� ��G�?T��e/=�z��h|����o�?�R�O��G�?f���2b�e���e�ߩ���,�-���-R�Z�۩ Ud ]�de�ߩ�d]�W�d��M��e����O�e���]�W�`B�f���f�2b����5����E�t��<��l5��<��l ����(�d�B� ��a����� � ������<��l /���_RoT��_R�=��l��ܟ[e�#W�`B���$���_R$�$�ʫ��c�O�k��uYZ`�z�����b�c�O�ͣ͡er�)����.�t�r�)�����������W`ge������������W`g ���#W۬�g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����er�)f�Y��M���dsaY�Y�Y�Q�r��Q�r��f�I��ruxNL�ruxNW�GQ�f���qnK��d��qrf�Y���dobru�̱�,�z��C���܊��*��k ���܊��*��k ��d�B���܊��*��k � /��q�_�Lc���CΟl����D�i@ �)�A ⧟�*^��S��z��A ⧟ʫM��M��M����@M��-f�M��V�|��+v��YT���p 8`��"_xk��\����T���5�"M��V�5�4��T�����5��d�������p|�M���f�����M�⋏] ���vc�O��Q`#���ɦ�Q���u�ئ�Qf�UX�� �� ��f��=��W��l�"q�fdpA �UX���CZ箮 ��p/�CA �UX�� �ޮUX�� ��f� ��[��T�`��7��7ޱ�r�7ޥ�2�?�R�7�f��@��[�>�7��7ޱDU>���TNTI�_R�����xNTI��#�_H�TI��#�r��f��TNob�eれ���TNob�eれ�������������h�eれ�����S��g���g���g�$��}�d��]��ʇ�a�w���&� �]��z��a�w�(� U��Nj���R��&� ����w�}�d�vvvvvc�O� ���vQ'�uY��#IVT����.���.�hk��(,��R/�n�ǽ���IVT��ԟl�I�f����c���nK�����܊f���������c��f�U��������O��N�흆���� ���ӟ � ���vc�O�`#��ߞl��l_����gɝ���f�pq�p�p�qf���Z�f���f���f�y�i�a߱��篱��Q��d�����+ ���+ ��HNhm�l�j�vw�j���d�����+ ���+ �vHNhm�#W۬�g�lvw��j�vw�j�v���b�c���r���=�%a��i~aG�]ܛt�f�}�G������c���b��d����}�Gf�e�J��=��=��̡��\���i�� i�i�� �d޻�i�� 5��f\F�i�� � Uf�i�� Q'��f��dru�i�� ��b� ��ru��  U�a_i��2dQ�諿����X\ܫ���h�f�e���\��$(�iZ ���g�Fb�*�l �������ۡ�g�vc�O� �iZyp�����g�W`��h���W`��������1���z��hK1^�$(� ���������������iZ �f�w�����g�e!^˧��[R���RgH��h��K�H���Jb���k �z��h��Jb�5��2� C���Jb���k �fҔ������X\܃S�a�}��˧��i� ��;��H��Y.�s��������bB���ܧ�����C2[U2[U�2[U2[U����g�=��g�l$���;���6���g�P^��)���b�������c�����������0��V�����f����b�c�O�]�W�t�d���X�ͣ�e�J�P��Ssa�����.�t���g����D���/b��8�8���X�g��gɪ�V� g�ݑ�h��Kۼ�ȉ�h��NZ����e�J�P��Ssa�f�Q'1 !"#$&')+-012345679:;<=>?ABCDJKNPRSUVWXYZ[^_`cdehimorsuwxz{|������������������������������������������  %,/8@EGHLOQT\]afjlnpvy}�����������������������������������������������������������  "#%&'+,-.013789:;<=>?@ADEFGIKLMPRST(*.FIMbgkqt~�������������� (5JX^_`�������������   !$)*/246BCHNOQUVWY[\]acdfgkmnopqrsuvwxyz|}~��������������������������������������������������������������������������������������    "hit{����������������������������� !#%&')./0123456789:;<=?@BCDGIKNPQRSWX[\]`abcdfghijklmnpqrsuvw}����������������������������������������������������Zbejl������������� $TV_z���������������������������������(*+,->AEFHJLMOUYZ^eotxy{|~�������������������������������������    !$%(),./016789:;=?ABCDEFIKLNOPQTUZ[`abefghijoprtuvwyz{|~����������������������������������  "#'+-345<>JMRSY\cdlns}���������������������������������&*2@GHVWX]^_kmqx������������������������������������������      !"#%&'()*,.01234579:;<>?@ABCDEFHJLMNOQRTUVXYZ[\]^abcdefiklnoqrvwxy{}~���������������������$-/8=GKPW_`ghtu|�����������������������������������������������������������������������������������������     !"#$%')*,./0345789:;<=>?@������+6ISjmpsz����������(+6ABCDFJKOR��������������������������� &-12EGINPSTVWXYZ[\]^acefhijklmnqsvwz}����������������������������������������������������������������������������U_bdrtux{|~��������������������������������������� !"#$%'(*+,/4689<=>?@FGIJKLMQSTUVWXY[Hst`cGKGMVDOG�jarbGGOGWN�SlNKdJ[fKCMNY\HJ_m�kIWAQDr^OHPXj�`leg}MZXfjDATLGoSnEIiKF�a�\ajGJGQeJBNc�UBxqeGcmezGRqo@q[P_�MeB�MJuu&!%'4.$1)-/(%733&(6-;#(52#)$(3)3[eBiG|GJ}GUP}Xehv_uJO�rgGWG�`O|��aufjjl�UthCGePVCA_]�XnbAptIDcGphKAHbI]J@PCZeNWRB\@QGbDjkS`tG_oVZj?=95>4:4:5:;96>;?>9645:6?>48???<><>@e�%4%+&(.-:4276"'6,+2$-%**9/$--2)&!8 /C����@Wq�MwmYIZpFXZOfi�f^GTJFju|a@A�p�Xj�h{FD��W�GV�SZ^V�`�fUV�dJGTt}cTFNdt\cC_iCsOGGs_`@qekJJTk]RdGGGF}z�L@q�XSiqGKAMZJNP_TSv$,8,&0&/07! &!&96/8</!460*%)0..&9gu�cL|VejGGed�XF|^JPbbPGOUKlGYMgB^Gdn�vLhGKGiUJFGNZPX`PD_�I�jfrXTLk]YHWzrKeGUfeGI\q�]K�QGGGiDTkYIR@�N��eRVXitTHFV?<?3;?<34881=-3=;4=?645:9=?782?<=3;dZNVs�X�vZC]Z�PRxCRpStRCP[W." %83$-.1*10)"/ 12'5),4)4(+&*'.&3GQeO�`U}ZoH_xZBsjcyDUUR]GBTvqMFWZCPRKVPRGbVfGRGPBSzMuLU`Ma�TtajvElf_pJgD�GG�Ol�jBGM�IGejX_InNlPohJJ�VO`Gb{_ZGWd�jeQGaAL^HH�vW+ 75&-0&3,&95*%0%#".,.67'.14',$:*�J��UKrFFYRVjiXj�DXN`6<>556=;=>>4(?>75=??=><?:9=:;>4><:hTAVwvKwo�IZKKG�U^�G@ubK�RffKIWiDRMQPRVGNbZvvkP��RfG�Imyi]IPSSRiGJUdfhYR�cakxAYGXdGGBCRHEy�c_kjDG~r��kDqSgTe�GlQH�K�XVjI��R{Jimrb( ,0('*,8,47$"-(''78#2 ,$7!7"#-('45+4+GCKMP�C�xhIDKjaN�uATvVlKGG�Kf[D�Nw]HM^cODxGM_IolC\jkIG�dcsfitQ~�GGBriKQlWGE\KLMGGZYEW\ZK_P�VX_YGKWHW�UhhLVH@jPBfB]��CDLoOz�_km~PJH`Pos8;+???54<?:>=?:>?=?<=<<:;>59=<>=?;CqVEiLjB&9+3 1+%4"9(3/ 2:66</1%9. 82!,70+3*ZA{Xw_x_K`RrGo|Lqe�LdJ�_Ne�lSSrRb^GMPJJe�ka@GJDGGVGKe_m�_iPxp�U^GGzqfTUGA~�htZQK_b�NrBaE~��NRON�ey�NJCS'#/5*(121'#4/'%'#&&( %$0,-%8:,.)6)'2eapgP_mfjDkl@�GBEFHG`[MQL\GqGJkC`Ar�F�kQGG]G_IdSuYaF^�QVl@jM=��$\ ) 0 P� �0 �$�@ ��0 �0@ ��< �0 � 0 P�X � �0�l�A �x � 0� �| �0� �$�@ ��� �#� �P �0@ @�@ �0 P�� �"0@  � � �0@ P�x �0� ��D �� �0@ �� �!0 � �� �H � 0� P�� �0�$0@ Ёt � (���@� � 0@ ��P �&0�$0�  `�< �0� � �0@ �X �� �0 0 p��@�8 � 0@ P� �&0@ �T � 0 � �P �0� ��� �H �0�$0� ��p`�| �� (ЁT �'�� )�� *�� *�� '�� '�� *�� +�� .�� (��� -�� (��B (�� *�� .��B (��� (�C 0�� 0�C 0�� 0�0��0��0�C0��0C0�0 0�C0 C0� 0C 0��0� 0�C0 �0$�0,C 00C04�0 �0,� 0�0@�0$C0��0L0C0��0��0X 0H�0`C0h 0(C0� 0l0l�0�C0x�0�0<C 0tC0|C0\00�0D0h�0C0�0tC0|0�C0l�0p0�� 0C0�!�d�1Fb�!�c�!�g�1�b���c�!�e�1�b�!�c�!�e�1b��b�!�c�!�d�1Fb���c��n�!�t�a�x܁Gx䁇{�ч|�A�t���� �R�!� ��!��H"� ��!���!��#�0�#�$��#�8I"�D"�$�TBI%�\�I&�\�I&�\�I&�\�I&�\�I&�\�I&�\�I&�\�I&�\�I&�\�I&�p҉'���(��R�)t���)t��J*����*����*����*����*����*����*����*����*����*����*����*����*����*����*����*��Ҋ+��K,���,��"�,��R -��b ���w��w�� �$�K.��K.���K.���K.��L.��"L.�S 1�S 1�S 1�S 1�3 1�3 1�S 1�S 1��L2�,�L"�,�L"�0��2�0��3�0�4�,� )�,�L"�L#�4��� 5�Xs 6�h��6�h��2�0��2�0�H3�0��3�$�2̐��2�$��2�$ 7�x� 8�x�M8߀�8߈�8߄��8�C�8�C�8�C�8��+��c�9��c�9��c�9��c�9���+���J:ꨣ�8눳;���<��<����+����+��B -��2-��2-����p�AO=�܃O>��?���?���?���+��@���+��3A� DPAT�A$B ѡ�B -�PC=QDE$QDE$�DE$�DE$QDEQDMQDEQDMTUD�Ea�m�Gu��G}��Fi�H��u���G���o��=d�@�4�H#�4R1� C�0� CL1�CL1�CL1� C�0�CL1� C�0� C 8$�D8$�D8$�DI$�DRI$�D�I'9�RJt��K-�ԒK-�ԒK&��HI$�DI$�CI$�CRI$�D8$�D�K0��L1�SL2�D M5�tS"8ir &�hr &�hr &�hr &�hr &�hr &��3A� DPN:��N~���N~�ԓO?�ԓO?�O?QB�PCU�QGU�QGU�QGU�QGU�QCU�QCU�QCU�QCU�QGU�QH%�?���?J-�TS�8��SO��+�@�TSQEGUT�1UtTEVQE�TT�1UtXEVQE�UT�QUtTEUQE�TT�qMWфUVZm�[qEGW^u�UW^�t�#��R -���X_��Xc�U�<��C -��C -��BK.��K"��uZi��VZi���Zl�t�#m�Ֆ[o�W\p�W\r�%�\r�%�\t� ]u�BW]��u�]w�u^w��^|��W_~�X`~�X`|���_�֖[m�%�`� 6a� FX?����>�6a� F�`�V�a�!��b�)�c�9��c�A�Xd�56Yc�5VYc�]��e�a��f�q�g�y���&�h��F�i�9��i��v�#n�����Zk���Zk��[l��F�l��f�m���n���[o����o����o����o �p� 7�8�x�M8߄�7߀� 8߈�8�G\q�gq�Gq�G�q�!��rt,��r̙t�#�9לs�9לsϹ��+�@�t�E'�=d�@MW�tePGGu��qv�����������]v~���v�q��v�u��w��� ,騣�:-�DG"��'^"��'^w�u7^w�u7^w�u7^^z�E^y�%r�8襧�z��^{��^{��^{��^{��^{��^{��^{��^{��^{��^{��^{��^{��^{��^{���|�Y'_��W�u��1}~�g_}��g_}��g_}��g_}��g_}��g_}��g_}��G��%��s���+����+����������N~h��N~`��;����e��s���+��מ{��מ{��מ{��מ{��מ{��מ{��מ{GU�QGU�QCU�QCU�QGU�QGU�QCU�QGU�QCU�QCU�Q�%`Ad�A��� ��� ț� 8 ���מ{��מ{��מ{��מ{��מ{��מ{��מ{���]v~��v~`��;����g^"� ETQFETQF ETQFETQFETQF ETQF ETQFETQF ETQFETQFir &�hr &�hr &�hr &�hr &�hr &��U]u�Uy噗�ytPAtP���ځt ��%�d��%�d��%�d��%�d��%�d��%�d�H� &���x�e�]v݅�] 2��� 6� � .�`� 2�`{��^{��^{��^{��^{��^{��^{���a�%�_":�`N:��Ja�B��R8!�����s�T(`��& o�&`�V(`�(`*�Xx!�fx����v~h��N~��v���]v~l�a�T�At�����]yՕW]y� � .�`� 2��� 6� � ~� ~� ~b�"�Hb���Hb�q�HG*���"�� (1;CJU]fp|������������������ $-4:GMS\`fms{����������������$,2<?HOV]dkuy������������������� $(-28@HKMQV]dkqt{������������������ (.6@DNVYalptvz~��������������������  '16:BHNU_dhlrx����������������� +29ENT[clou|������������������ !'149BIP]gov{������������������%*.7=@CNSZ]amtx|��������������������   $ ) . 1 5 ; B G L R X \ c f m v { � � � � � � � � � � � � � � � � �     $ ) - 1 9 > D H L O P V \ b d m r z � � � � � � � � � � � � � � � � � � �   " , 2 5 = K T ` e l t ~ � � � � � � � � � � � � � � � � � � � �   ! ( . 2 7 ; A I P Y a j u { � � � � � � � � � � � � � � � � � � �      ' , 9 ? L V ] h o t � � � � � � � � � � � � � � � � � � �  ")19@GINU]cgor{��������������lifeomartelapiogrimoirlibrmoehnmofficgranpandaglossatextlabsatellitsnifflturbuljsyrjalaaerikssonbenyfractalmidjmarickmbutlerwdiscusshhucncpfrerethjimrthilitedocxbakyeonoaerobioaerialjsaxmldatamraziktisnikforecastbrianmdmdrsbsdevyadadelitescerwalkthroughagilecrdignatideraenkneeidealiperdomokevingreenpftkriikprojecteuldestructhubsidequartmatsrietdijkmerklgoliathjoelwrusselcaesiumplaygrounddeniscostadscquilcvpasdechocolatgtfvealvinfrbuddilanguagnomikatzsimonplancknreplrefactoremaccommonjtestmfikeplayerasciinemarayrutjsonpatkiprathameshmultihashgreglookgatlmhjortjhneventlogkiximastodoncvijaykiranpathomwilkerluciofaceboardalexeymkdashboardmultunuwishlisteakrondashlumenakvotutorilaciniatirkarthiclojournprogramkristfoundedgjuxtagrajagsparxstaplrealdashboardbcapozziicecaplvhherderpalfreirateyorcktreppoexamplpathrdfjindrichmynarzlazyteststuartsierraleonmanrolaudaxionyetibotdevthclojurewerkzstatistikthomasdarimontchallengrpisolitatensorflowenragedgingstanfordmldylanfpricchangeloggithubwhitepagmeritmadeemileswartbrunchboipjewidealmalamcanthonichunseokleethancrawfordovertoncraftybonwortkrwenholzparsersubmansubmaniolexembertrandkuilambdasroidlpushereglvalexkirirowhitberrighelardialanrafdbraidbraidchatframedaicortexthinktoplangnostinaimathileiningenmikronmoxajcmfalklandsnootymonkeilighttablmonitorbrewalarmingcowworkbenchlogicmoerkbflareandersfursethretroboardnherzneanderthuncomplsoicodahalhttpbeehivtbrookkgxszlobagfcatoolconexpexotmonbuildelrobcoolantloganlinnavisonovjimdeadmanjjthrashanamyetoubiwannucscxenaserverxenaucscacthpblogviiiweaverapiobbbattlegroundorionsbeltcirclecioxcartarrdemstreammartinsotowebapprepltodoshouterprojectfrankfiledotmgrbytedsbdpruedigergadcmdclipalletboilerpipcgagincisryanmcgkbaribeauimmutsinusoidarximbolditjamesturnmpenetiowcybemzbintliffdgeorgievskimwmanleicyanitwarehouslenalexanderkielelectrongonzihbgrindatomishncalexanmentatmozillahalakcheckinnyampassmrandersonbenedekfazekaspotifiblmstrmsuricattamacroappworkfloappreadercomicfrontrowjachkafkamccraigmccraigclyferoblalrookbmabeimetosinsormillajarppwebfxradicalzephyrgitiqusmcgivernstudiosprmetrictrptcolinreplibbatsovflatlandjafingerhutamalloibeiconsqlmpietrzakkamitueltoolboxsystemmatthiasntokyocabinetninjuddfuncoolmitchelkuijpcoopsourccatacumbapreporhydrofoilmorrislenniclojurescriptmstangbeckonhypirioncodeadventdvberkeldatombeathagsnewmarkjkutnerphantomjcedricpineaucloudcontrolnvbnbuildpackherokumstinetoolspecfuturmilankinennestukhdotfilbenizisiphiuelieurorendkirasystemmeowcaktchagnonliuchangsuligappovloidringyurrriqcanweriotnowwobhbackenduxboxtrackertimenilensotemplatplatformonyxpolyglotplertoaldoctopugastovdevtoolchrometatuthighlightleinathoomcastlispabeyonalajanotebooklablispcastprachetaspnasarepositorimetadatacommonmschmeledecktouchpanceulerprojectndhoulkevinbuchmylesmegyesicorepatrickgombertvimclojurgunoakclojurbsmrnightcodimmortalinleadercultlukaszkoreckiliveleipzigbachctfordfrontendairheadedndragonclojuscquerenkxclojurexercutildbcljfhofherrcontinuoniwinzsourceventrillthiagofmshevtsovleonidxeqidotemaccodonnelatobepputobiatechnomwebclojarshokuninbganvilzamaterianstanislalubyruffialgernonudoprogakihirosudabwilberpharaujolispmeistjeanpralovixndasallfolknbergermbuczkoirudyakjoeraymcounsylrobashtonalqbmhatfieldbfritztwosigmamirwanmicrubtzachericbowlofstewabaillivincentbernatrhysrclodocorpaphyrcswaroopforterpyrpatroxtimbuchwaldtrekhajoshmfullcontactpradeepchhetrijamturmfourniervideoampnelhagmoonrangyellerriemanntopeczptbrjonasdielendikazoowiiblueoceanideadashkbmetabaslukasweltdpukylchrishowejondxdemogoushijisventorbenflaviuratiudkowidanielwegensghilldimodvivacevivoguardianseeyongrooviassilzmpaoloambrosiogeandybanaplanrlagunovdraevalnilswlokanickcharsleichiranjithjoansmithppotanincucumberpropeterdgbartkeizbrasmussonhendriksphcawebdevelopushkinazjvmcucumbarisharbab�4[@@ @@@@�������� ��:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�%:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�Jt�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:��СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:��СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:thѡC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СD�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СE�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�0t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�УC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:T�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:��СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�Zt�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t(ѡC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�u:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СS�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�P�C�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�*:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:u�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�}:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�С`�������x�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Ơ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������00 P �@p� @ `�@ @�@� @ @�� �@@��@@@   �@ @ @@/ � @@ �O@�� �@@@ ��������\��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0 �h�@H�� ��@@(@@ � @� �� @�@  ����� @@@�    �@@�@@@@��0���� @�� @@��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������6������� � �+W�\�r�ʕ+W�\�r�ʙ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\���ʕ+W�\�r�ʕ+W]�r�ʕ+W�\�r�ʛ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ[W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W���r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʛ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\9u�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ;W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W���r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\9s�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�s�ʕ+W�\�r�ʕ+W�\�r�Ε+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ҕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�t�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+g�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʙ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+_�\�r�ʕ+W�\�r�ʕ+W�\�r�̕+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+��\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+w�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�ܹr�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʟ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�˕+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\���ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʙ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ7W�\�r�ʕ+W]�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W]�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�ܹr�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�͕+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ/W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+_�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r��+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r��+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W]�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\���ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�<�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ�W�\�r�ʕ+W�\�r�ʕ+W�\�r�ʕ+W�\�r��` �@ P�P  p (@ �`�@@0�b  �@ �P���@   �@@�` @�@��8�M�������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� @@  p   p  0@0�@� : @ � @��� �������� \ $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H!A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� ,H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H�`+� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H!A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� ,H� A� $H� A� $H�`A� $H� A� $H� A� $H� A� $H� A� $H� �� $H� A� $H� A� $H� A� $H�!A� $H� A� $H� A� $H� A� $H� A� ,H� A� $H� A� $H� A� $H� A� $H� A� $H� �� $H� A� $HP!A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H��A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� ,H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� "$H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $h� A� $H� A� $H��A� $H� A� $H� A� $H� A� $H� �� $H� A� $H� A� $H� �� $H� A� $H� A� $H� A� $H� A� $H� A�  H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� B� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H��A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� $h� A� $H� A� $H� A� $H� A� $H� A� $H� A� $H� A� t���C�:t�СC�:t�СÇ:|���C�>t�СC�>t�СC�>t�СC�:t�СC�:t�СC�:t�СC�>t���C�:t�СC�:t��C�:t�СC�:|�СC�:t�СC�:t���C�:t�СC�:t�СC�:t�СC�:t���C�>t�СC�:t�СC�:t�СÇ:t�СÇ>t�СC�>t���C�>t��C�:t��C�:|�СC�:t�СC�:|�СC�:t���C�:t�СC�:t���C�:t�СC�:t�СC�:t�СC�>t��Ç:t�СÇ:|�СC�:t��Ç>t��C�:t���C�>t�СC�:t�СC�:t�СC�>t�СC�>t��C�:t��C�>t���C�>t�СC�:t��C�:t�СÇ:t�СÇ:|�СC�:|�СC�:t��Ç:|�СÇ:t�СC�:|�СC�:|��C�>t���C�:t��C�:t���C�:t���C�:t�СC�:t�СÇ:|��C�:|�СÇ:|�СÇ:t�СC�:t��C�:t�СC�:t�СC�:t�СC�:t�СC�:t��Ç:t��Ç:|��Ç>t�СC�:t�СC�:t�СC�>t���C�:t�СÇ:|���C�:t�СC�:t�СC�:t��Ç:t�СC�:t���C�:t�СC�:t���C�>t��C�:|�СC�:t�СÇ:|��Ç:|�СC�:|�СÇ:t�СC�:t��C�:t�СC�:t�СC�:|�СC�:t�СC�:|��C�:t�СC�:|�СÇ:|���C�:t�СC�:t�СC�:t���C�:|�СC�:t�СC�:t�СC�:t�СC�:t�СC�>t��C�:t�СC�:t�СC�:t�СC�>t�СÇ:|�СC�:t�СC�:t���C�>t��C�:t�СC�:t�СÇ:t�СC�:t�СC�:|�СC�:|�СC�:t�СC�:t���C�:|��C�:t�СC�:t�СC�:t�СC�:t�СÇ:|�СC�:t�СC�>t�СÇ:t�СC�:t�СC�:t�СÇ:|�СÇ:t�СÇ:|�СC�:t��C�>t��C�>t�СC�:t�СC�>t��C�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:t�СC�:|�СC�:|��C�:|�СC�:|�СC�:t�СC�:t�СC�:t�СC�:|�СC�:t�СÇ:|���C�:t�СC�>t���C�:t�СC�>t�СC�>t���C�:t��C�:|�СÇ:t��C�:t�СC�:t���C�:t�СC�:t�СC�:t�СÇ:|�СÇ:t��C�:t�СC�:t�СC�:|���C�>t�СC�:t�СC�:t��C�:t��Ç:|��C�:t���C�>t�СC�:t�СC�:t�СC�:t�СÇ!:t�СC�:t��C�:|�СC�:t�СC�:|�СC�:t�СÇ:|���C�:t�СC�:t�СC�:t�СC�:t���C�>t�СC�:t�СC�:t�СÇ:t�СÇ:t�СC�:t�СC�:t�СC�:t�СC�� ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� !!!!!!""""""######################$$$%%%%%%%%%%%%%%%%%%%%&&&&&&(((((())))))))))))****++,,,,,,,,---..//0011112222222222222222223344445555555555666677788888888888888999:::::;;;;;<<<<<<===>>>>??????????????????@@BBBBCCCCDDDDDDDDDDDDDDDDDDDDDDDDDDDDEEEFFGGGGHHHHIIJJJJJJJJJJJJJJJJJJJJJJJJKLLLLLLLLLLLLLLLMMNNOOOPPPPPPPPPQQQQQQQQQRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRSSSSSSSSTTTTUUUUUUUUUUUUUUUUUUVVVVVVVVVVVVVVVVVVVVVVVVWWWWXXYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYZZZZZZ[[[[\\\\\\\\\\]]]]]]^^^^^^^^^___________________````aabbbbccccccccdddddddddddddddddeeeeeeeeeeeeeeeeffffffgggghhiiiiiiiijjjjjjjjjjjjkkkkkkllmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmnnnoooooopppqqqqrrrrrrssssssssssssttuuuuvvvvxxxxxxyyyyyyzzzzzzzzzzzzzZ������� �L�2e�)S�N�2e�)S�N�2e�)S�N�2eꔩS�L�2eʔ�S�L�2eʔ)S�L�:e�)S�L�2e��)S�L�2eʔ)S�L�2e��)S�N�:eʔ�S�N�2eʔ)S�L�2e�)S�N�2eʔ)S�L�2e�)S�N�:eʔ)S�L�2eꔩS�L�2eꔩS�L�:eʔ)S�L�:eʔ)S�L�:eʔ�S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)T�L�:eʔ)S�L�2eʔ)S�L�2eꔩS�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�N�2e�)S�L�:eʔ�S�L�2e�)S�N�2eʔ)S�L�2eʔ�S�N�:e��)S�L�2uʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ�S�L�2eʔ�S�L�:eʔ�S�L�2uʔ)S�L�2eʔ)S�L�2e��)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�L�2uʔ)S�L�2e�)S�N�2eʔ)S�L�2eʔ)S�L�2e��)S�L�2e��)S�L�:e�)S�L�:eʔ)S�L�2eʔ�S�L�2e�)S�N�2eʔ)S�L�2eʔ)S�N�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e�)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�N�:eʔ�S�N�2eʔ)S�L�2eꔩS�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�L�:eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e�)S�L�2eʔ)S�N�2uʔ)S�L�2e�)S�L�2e��)S�L�2e��)S�L�2uʔ)S�L�2uʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2uʔ)S�L�2uʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�L�2eʔ)S�L�2e�)S�N�2uʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e�)S�L�2eʔ)S�L�2e�)S�L�:e �)S�L�2eʔ)S�L�2eʔ�S�L�2eʔ)S�L�2eʔ�S�L�2eʔ)S�N�2uʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�:e��)S�L�2eʔ)S�L�2e��)S�N�2uʔ)S�L�2uʔ)S�L�2uʔ�S�L�:eʔ)S�L�*iʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ3S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e�S�L�2eʔ)S�L�2eʔ)S�N�:e��)S�L�2e��)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�L�2eʔ)S�L�2u��)S�L�2eʔ)S�L�:eʔ)S�L�2eʔ)S�L�2eʔ)S�N�2u��)S�L�2uʔ)S�L�2u��)S�L�2uʔ)S�L�2e��)S�N�2eʔ�S�N�2eʔ)S�L�2eʔ)S�N�2eʔ)S�L�2e�)S�L�2eʔ)S�L�2eʔ�S�L�2e�)S�L�2eʔ)S�L�2e�)S�N�2eʔ)S�N�2uʔ)S�L�2eʔ)S�L�2u��)S�L�2e�)S�N�:eʔ)S�L�2eʔ)S�N�2eʔ)S�L�2e��)S�L�2e��)S�L�2e�)S�L�2e��)S�L�2eʔ)S�L�2uʔ)S�L�2eʔ)S�L�:eʔ)S�N�2uʔ)S�L�2e��)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�L�2e��)S�N�2e�)S�L�:e�)S�L�2eʔ)S�L�2eʔ)S�L�2eʔ)S�N�2uʔ�S�L�2e��)S�L�2eʔ)S�L�2eʔ)S�L�2u��)S�L�2eʔ)S�L�2eʔ)S�L�2uʔ�S�N�2eʔ�S�L�2eʔ)S�L�2eʔ)S�L�2eʔ�S�L�2eʔ)S�L�:e��)S�L�2eʔ)S�L�2uʔ)S�L�2e��)S�L�2eʔ)S�L�:e�)S�L�2e��)S�L�2e��)S�L�2e��)S�L�2uʔ)S�L�2uʔ)S�L�2e��)S�N�:eʔ)S�L�2eʔ)S�L�:eʔ)S;�@@@ @� @�@@      � ��@@@@@@@�  @� @@� �����#@&������� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ڀ+h$P@( ������������h�P�8�(�����ȥ������h�P�8� �����z�x�u�qxi`fHc0`][�S�J�B�?�=p:X8@6(1)�%�#�!���hP8  " ���T�8 1��,�4c � n���ݹs�}�������� fts_main_data�index fts_main_datatermstermdocid fieldidB ���index fts_main_datafields fieldidfield�9 }index fts_main_datadocsdocidnameTc Vindex fts_main_data stopwordssw�m;index fts_main_data�tokenizey�s I �string_split_regexmain � �regexp_replacemain � �lowermain { � strip_accentsmain-�0_macro_parameterstokenizessystemsystem6K$ (\\.|[^a-z])+*K *Kgsystem,K\s+systemmain;mainserialc �������c indexmaindata & __hf_index_idcommit!old_file!new_file% old_contents% new_contents subject messagelang licenserepos�c N��E{0a���������p azk�p�������� �p��b �p�������� �pX)�p�������� �p� aazxnrbw$�p��������� �p���p��������� �p����������p��������� �PK}�) abbrevzwolf�PK}�������� �PK}Ȥ Y �PK}�������� �PK}���������PK}�������� ���V aaaahzxnrbw$�$[�C aaaaaazookem����������� ���x�[����������� ���������������������� ۭu� aazxingP�� � abaillizoowiiۭ��������� ۭ��,b ۭ��������� ۭ� ۭ��������� ۍ� �� abaillizzzۍ� �������� ۍ� X��b ۍ� �������� ۍ� �������� ۍ� ��������  azzz$% �dm�HYLL� P� �Aa�`$ A CP�!�0C@ �p� � 1B @BA �B0�B��  � �@A0�@ A1 �0 �1� C�� �1�  Cp� D�!� !(` �� !� �0� � �B@ AD�0@ �` �@��C �0� �0�0 �0 �@ C@� �@�P�0 !�  1 B@ � @!�@q$C !� �0 0@`�0�1 ��@B �1�!�  ��P1� B!�G �0 A�@AD0D  � A �A0@0� A0 B� �@H@@@��C�@ ��(CA��0� DP�00� 1���P�00� �A �BA�P � PBp� Bp�@� A A@@`� �@ �Ea!P� �� A!�B � � � �B0�A @C �`D �AB �@� � CaB!�0A  �P � Aq �B@ � � �1 ��@Cp01 B!�0(� C0 @ @�C � � �0�E@@R �0C��D �0�a��0A �P0 � D B@!�0�B �@ �0�@ �01` D@! BPD� 0�1@QCC�AE@ !B@0B��p�0�� �  � ��A0 �0�0F�p �aA� A0 �  �B  B`B �A @ �� � B0A`0@!CEP� ! � �! �� E@��1@!�PBF0 �BDP!@@  �B@ @! � BPA����F 1DC �Ap �0A�� �@�� �0A0B @0$@ DP@@P"� �  ��!�0A0 � B @ �`� A0� �P! 1�1Fp$AD �@!��  � B pB@@ CCB � �0� �B! !��� B1��`@B p� � 0A!0��PB�B�0@ �0��0�0��P@ @ �    AA@� �0 � ��0A0 � �A1� �0@`!� @@!C �A �00�PB0�B��B H@0� A11��0��0@D@aA ����`�B0�BQ�@ �� �@ ��0 1 AA�0 B �!�0@ B �0D�� � 1B�AA!0 �� �@�@A�B� C A �PPA0C1 ���` �0� D0�@ � �@�� C B @�PPCH`p�� �PB`B �A0@�0@ @�`�E � � � B�1C0!��0 P��@ 0  �`�@�� �@� � ���@���  $BPC �0�A�0 �B � �0�@1 0@ �`��0�Q1 0CP�0B!�A 0� �!12�@�@ �� A@Q1�0� !A  � @0�A! �A �P�0C00 �P� A�0� ���2B�0pB�0D@ @I0� B0�E@C�P� B��@ �0�BC �! � ��0�P�0� BEED @! �� @�Bp�0��@ ��`�A!  C A �A��`D@� �1 �A�CP�Q� �� �(@0 � BA0A`�PA�!CB A� ! � �0$H�a�0A � � ���0B@@(C B0 AP� � A A@��P @P!G0�0C@� 1 �B � C� B �0�p@0C0�A� 0�B �0@ �@�` B0 B0 B0�� 03�@ �@�`�@@ @ � F0A@ ��0� 0CP�B�� B��  �� �@�� ��0@pC2 �0`�D@�PAa�AA$C@ D � � E���  C@� @A� @�0 �@�   �� ��� � 2C ` �@p�PB�@ �!E@�CP��@�!�@CB� b % �dm�HYLLu @�@��@A  CA@�0� ��@�AB1@�0 �  � @@� � @C�@�AA 0 A@@ @ �0@ A�@!�@� @ ���@��� � @ �C �P`�0�P � 0 A@ C C � �P  `A@@0�@�  P@ � @�� ���� @���00D0� � @C@ � �P� @@DP��0�0@ � @0 A� @� ����� @� �@��HC @ ���@ �0 A@�@  �@0�@ �0A@@ A 0 �B0 @@C@��40�@ �0CP��  0@@��� @   ��  0A@ @ @@� @ @0� ��@@E0A@A @�0�� @ @ 0��P��@�0B@�@  @� �� @  ` B� ��@��@� 0@ �C��B@�@ �0C @ @B�  @0@ ��D �A @p@@ A D  �  �  @0�@@ �  �  B@�@@0�0@@ A�AB @ PA� 0@0 A  �@�@ �@@Q� �� � AC�@0� @ 0B  C�A�  D�  DB@@0��AA@p �0 @ 0  � 00�C0���00�A�A0�@  @ C @AC � A�F0@@ @   @! ��D�� @  ��� �P@@AE���00E@P AB 00C0���� �0@��   @ �00�� �@ @ A��0@  �P @A � D@�P@@ �@ AP p 0A @�� �� 0�@�C�0�@�A@A@0�P@ �A@�AD@@D�� ��@�@@P @ �0@  @1 @�`@`��P�0 � � B� �@C �� �@ � � @� % �dm�HYLL5@��p�     d�p��0�<      !"#$%&'()*+,-./0123456789:;��PK}@�T     d�����9<      !"#$%&'()*+,-./0123456789:;dۭ���<      !"#$%&'()*+,-./0123456789:;Zۍ� �2 �  ��  ��������  �� commitsubject  ��������  % HYLL5@ commitsubject % HYLL @@A �8Y9c P�b c �������� c ��b c �������� b % �c HYLLu� 0�@�@A0 @�@���`  @0 @@�� 0A@ �0�@0@��@ � @@�@@ @@@� �@0@ 0E@@ 0����@@@ � � ��@��� 0�0P�@@Q �@  @� @�Ap0 �@ B@@@�@@@0@ ��@  �@    Pp @ � @�� @  @ 0@`@P  @�b % �c HYLL@ �@ �0� 0 @ @ @@@����@P0  0  @@�� 0� ��0@��� � @0 �@@@ �0@ @@ 0�E�0E���@@ � @ ��@@��@ @�0 P �P �A0�@@ 0 0��0 @@@@@@�@��00 @@0� 0�0  @ p�0(@�@0 ��@P �@ `@P� �@��@Jc �RzS;�� azero ;��������  azero % �;HYLL� @C� @ �@@A  � @� @���@00�P@@ 0  P @� @� 0� �0A�@�@�P@ @ 0@` �0� �@@@ 00 ��@ ���A0�@B@ @@��@� @ �A�0@�0�@ @ 0@��C0 @� �P 0`  @P�@@��0� � @�� @@�@00�@� �@��PB� @0� @��@@� 0�@@ 1;mc b c �������� c 0  0006cf29ffe1d2d3(c �������� c � .lein/prws/JLinktc �������� c �G .lein/prws/JLinktc �������� O {:user {�OP  {:name {:wrap-r�N  (ns mat{:user {4�5  { :nam{:user {6"S  {:name {:user {�uG  { :nam{:wrap-r���  {:user {Lc �������� -  { :nam{:user {_-$  (ns mat{:wrap-r�Q+  { :nam{:user {�|   { :nam{:wrap-r� �� �  { :nam{:user {� c �������� c 8� Add "-clWrite te�c �������� c   Use Gooutcnow-m�c �������� c ` ClojureClojurec �������� c � agpl-3.0unlicens c �������� c  0/leininzubairq/܂c �������� b % dc HYLLu ��@ �0� 0 @� @A0 @@�@�`@P0   @   @@@ 0��@�P�0�@0A@��@�@ ��@@�@0@ �@@@� �0@@ 0@@  �@E@@ �0����@@@  � � �� ��@@�� @  @� 0� 0 P @ @Q��A0  @� @�Ap 0 0���@@0 B@@@A@@��@@��00@ @0@ �0��@  �0� �@ 0   @  P @�  0(@�� @0 ��@P �@ 0@@P � �@�@ 0006cf29ffe1d2d3(% dc HYLL   C@ `�0 �@�0 @�0����@ �0 @@� 0��@@  @P �@@  @�`�@� @@P0���P� �@��0� @@@ � @ � @@�@ @@�� ���  ���� �0  0@@ � � �@�@  @�@@@�@�`@@p�@A �0� @0@� @����� @ 0�@@ 00�� @@��00�@�@�@�  �@@@`@@ �@�@ �A �@���� �C0 0� !�� �� @0�@  PC@��  @B� .lein/prws/JLinkt% dc HYLL ` C@@�0�@0@@@@ 0��@ � P���@�@ @0 `�@@@ � P@@0@p@�0�� @ @P���`@@@@@��@@ @@ B@@@ ��@� ��@0 @@�P P@@ 0 @0@@P � �@ @�@�P@�  0@ @�@� @��@� P @@�@ @  0 �0 @� .lein/prws/JLinkt% dc HYLL ` C@@�0�@0@@@@ 0��@ � P���@�@ @0 `�@@@ � P@@0@p@�0�� @ @P���`@@@@@��@@ @@ B@@@ ��@� ��@0 @@�P P@@ 0 @0@@P � �@ @�@�P@�  0@ @�@� @��@� P @@�@ @  0 �0 @� {:wrap-r% dc HYLL5 @@@@@ �@@@�0�� @ � @0�@ � @�@�!@ @���0@0@���@��$ @  �@@�A0@@� @ �0 @@  �P�@� � A���@� @ @ �@ �@�C @@ �! @  @�����00 � ��@ @��@� �� A @ @�@@�@0 @" @@ @`�0�A@@00� @�@@@�0@� ��  � �@� �� @@��@ @@@� � 0��@�@ �@`@@  (ns mat{:wrap-r� % dc HYLL@ �@��@A @�@ A@ B0�p�@���0@�@ 0��B�1@ 0 E� C�0@ 0@`@�0� A�@� A@�@@���@ @P� 0@ �0 � �@0@ ��@  @! � ��@��@� @@ pP0 @ @4D @@@ @�  �@�� �  @@�@ (@���P0� A@��@  � @���� �@� ���@@@�� @ �A  �@0@@0�p�@   �p�@`0@@@@� @@0@��@!@�@�� � � Add "-clWrite te�% dc HYLLB��@@ � 0B @ � ��0�@ @ �  �@ @�@0@@��@� @�  @�@ @@ @� �@@@P � @ @�0 ��@���A�00�@�  P @0�@ @@B P�@�@@� ��@A@@�@�P �@� @ @� @@ `�B�@`@ @@ @@@@@0��� @ � A!@�@B @  P@@�0@0 �0 @��0@ @@@@ @P@� � �� @@A   0�    Use Gooutcnow-m�% dc HYLL @ A  � ��0@@@�@0@@000@ @@��  �C@� @ @@ �@  A@C�@�@@@��0@@@�� @@ @00@0A� `P @00@ @�@B@@@ p ��@  � 0� @@� @D �@@��00� @  @@@�@@ @ @ �@0@ �� @� @ @ @A��� 0 @ 0@ @  0p� �@0��@@���@0@@P@@@ @� @A@@��@ 0@  � ClojureClojure% dc HYLL agpl-3.0unlicens % dc HYLL �@@@ 0/leininzubairq/܂% dc HYLL� �@P`p 0@0���@ @@ 0 �@ @p0 @@@�P@ @ @@ ��@0@@  � �C@P @ 0 0@�0@0@�p0@ `����0@ � ���@ �@0@ �@@C00@@@00@00 @@ @@�0��@� @ �� A��00@��� 0@@��P0 �@  �`�@@0 @P0p@�@ @�� @`�c Cz�zW{�{o|�~a��y�����ͳ l}80����  @`� � � ��@`����� p!� #@%p&p(�*��,p�.-�0 04P6p8�P���0<@=�>�@�A�" C@D�E�D�FpH�@�C�I�K��M�N�OQ- � 0�2@>@�5�P-�V pX�JD>�@�Y�Z3�&�J� ��2_ ab0dpJ0-P pPf@g�& �&�0�P0 3Pl0,�m�% �-@�r aps30 @PPv�px�y�>�D��C�@} C�3��@J��0@��H�`0p���-`J�J�D�50����� ���@.��CP �0 P��P � ` 5�a�N0Jp �� D� � P5� ��N�� ��]�� PP.PP`��`2 5P�0 @ �` 3p D� ,@ 3p�`020J� � �� �� �p �C�2� ��/�0��pP >0 5PN @ 0,P�` >�Jp �>� @� � �� 2`��  � �p���0 �P ����VD��ǀ J�EpD�N�ɠ �P � ���� @P� ���3 �0�0E?��0��NPf ,P @` ����N�p � `��ڰ ��݀ ��� �@5  �P ��@p�� 2�O`  p �5�3�P08��`��E�u�O0P ��5�n ����P�E0 0��,�3�25�0 �@>��`pPE���&��J��2� ���, +�E�J��>p �  �J�2 �5�1P@P02� � 1 �0�E@� 1 P��C`D�3� ?�mP D�P@J�,@3��� �?� Aa� ���-PQ �E Q1��P�3� �D��qa�?��0��PE�0 A`��0 !u #A@%�v�0E�� &A'�5��0)�P���+�� � -�P C/� @��03�D @� l0� �J@P6a7���p � &pE�@�NP�� ����>0Cp��,��?5���3B�� 0D� PEQ, 2@2�C�-��`KPJ�@0@3��P@GQ�HQP�P�,p J�K!J���~0N�PQN��Q! 2 ��P J@0=1PT1U�2�`0 qX�ZQ �u�5����\�5� ��]��>�F�� �� 2P�`3�,pb1@��@ � �5���  � �P P �@2�0�` 0 g�hQ���0� � 0 � i�/0 �j�k��& Pl+@,��mQ @Dp �mP' �n!�,p�C@� �rQ� ?@!s103�J�&@@PC-P�Pvq� N 0 P x!�� �{�� ���`Q,p�{�}Q@ , 3`P~�>�@*�x��& ���� �� 0�0� 0 �Q`���N�p �a3�-�0 ��� ��>��&` -�N@�����,a- @50 pJ`0@���0?K@����b� CP��&Pup���p 0�u� �-���2@���q� ��� ���!,�E`  ���P�1��Q�N�>���?�&��p��>P�� �1�. ����P����� P3P@`�� ���,�2�P�0��m�[ D ����� `2�30,P @0 ��[��� �?� � �aD0 ���`��C���p�q>`��>��q�P�1K�>@� D@D�J@���5��a/p� <�P����P �P5 ��@���>�Pu��� 020 P� ��ıJ�!<� ����ADpP�?���@P � pP�PPp`�Q�a���P��� 50D�>�  1���15�.� �@ ,P�Q`@ -�c� @�uC�ZPD�? ���`�Б, >0Z��P @��p�0C �ա`JPIq-0@-����5�� �� 5�@�� PځPp���C�ܡ����@�P CP�����ڡ2`Q�~P�Q@u�@P�C�3�1`-0 @>���'0�pJ�Pu0���?��0C����22��!�&����!J�-�,�-�J`CPP��Qk! P�D �� �a&0P ��-� �3���E�0QPP�ڡ�`-� p��3pD�jP�1?30@0>p �vPu��Q� ��`��20 0-@�q�P�p�P%� J�P�ذ2�u 0�.QP3 �@?�_p R3�3 2��qP�0�P�� F@� �D@ �N���` ���� P-�3� ����5N ?p��r?� 3C�� � D0 0 �@ EP�!@�J�.� � �� P������&ZP 2�0P�PD� ��Pa��!2)QRP P�>������ ��rr��2!����� �55P!2`!>P�R`>�!�uP3��"�0� � �!>0�P[1��R!��P E"!R J "P 5P��?�2�0"0�$R"P20>�&R�Q�'2 u�EPD�C�"�)�,0*�  3@JPP��F��PE�N�3��"�p,R-�a   ` �PV�=QD@~�"�I�"P0P�@�0>@C��#� `2�@�!4�@�E0#a�Q,� � @4��NP#���  ���b#37Bb�|�&�#0PPu` ��P 0�P"Q@�50p�#A�u�#� �D��5�#��#EP=�# E@?�E�DPP-���E$ $ $�� C����]�DBuPp E�! ʰ5P� �Pe�0`&�g�-P��h �� ?�&C� 0@jE�&3@?r?����&�&��J�m�2P0P�n� �0o� ��J�-���0u�P@�`-D�'��V0�0N�P5 CP'�p>�P2�,�qr�"�P�J� 15� ��s�  2P�'�0 � C�@'�@uQ" P����!v�p'�x�y��Q�C`�#�`?`$�+0zJ � �Cp2�{"�|�, �}�~Z0 �20���'2���C 0� �(k�-��@0`{5PPP �,C� ��P���P 2��3P"�@�;���  (Dp���?���,0����>�������@p2@ �2�� D��(DP� �(�@ ` ���@PN�QZ0��(�bPA���r!�"pN�W�C�P0"��1)�2ZP &P3f`���2@ ��r) ���)Rp!��pS�QO@J�&0�N03� @` N��� .���u�)p �)� @0!�` F�)N,@,0@p�H0�xa �)x�)N�.aP�*>�� ;P20*�� Pf0�������0����0&p�r'`J��� �@ �P��� @,0JP��*2��Jpo�P�5�-����F1��?� �B3��P0p@�,*��J@0,��R��� JP ��Dp�P�� �� 2@ 3�*up)+P� �2�%� �"���?�&�>� $!+u���� 5�-0+3 &����,�&@�}�`+,�pZp+�+�-@PA�*P5P�`2 pC���,�+���u� �� `#D0Nu�+ n��p5@&� ��+{�PNP �+`0�,���RP E�5�u �2, @,? ,J�JP, ��E �r!��P ' -P���&P@i�,G ��,PD*0�&�>p!@����,5�� P Pu0����A������W�p"�'P0 β���J�,NQ `Т#�Ѣ� �@P-0PN��`�` �2 �0-C0��0�PP-D�|� �";@&p-���P@��;2qN&u�&�,,�.�Pp`S1 �{��JP�2��By�C����@��C�-@�f?0�-�&�&�-2@��-PC�P�->� ��J>`N�D���7Q?�>P��-r�N�"aD�D��. ��B�D ._P&��b>�C@��A.b�3�N ��{���� `D�x�V��C� P'R�a� 2��P?�5`.�?pE �p � u� ,�>�5�0 ��,���` ?0"���� p.? Ӏ�26��D�|0���.N0��N �C�3�N�P5���.���Q���+����B�q�"$><�.P0qE�@@ �@ 2�.N�J��E�C� ����3 /N� P;�,� �B@��>`2�� �-50/PJ�D���P _P�����" B���/p� � A����0 �P Pu��0�J� Q�� �� ���p &0�@P�b� x!0JPP�k1�E�0fb,PP� �/�A�,� �/�"p �?� 0*p,`?P5 �0��0u `��PN�E 0, �P� ���!`0pP�PC p0k0�I!�� >�� �#O�N�P S5`� @� ��b�>�0E�0�-�P>0 ��0� 2@ -�0�%P�11S@���"��&P � � @��>0�PWPR �b`���'Su0S0�0�� ��p��h� �6� ��NPE` �Q@�]!�2;bu����0 `p1?@A�guPd1�0��50��1��2P2��P��QN0DP �� �ɢ� P ��P# 50 D�1�1� ���#��@��P�0@PC��apNPD�!� �ڑ2>�30&p� EP�@C���@J �2@!!�`p"P�2E�/ 2#c,05� $�`%��N���&� up�'" P0 9�Cp,�J@0�a� P�,p" &��"S!�� Q�3 &`C &#�{� �,p2P`��0JpP0*��2��(��P?�&� ��� �)S�22��+�EPP��'���?�]�,#��`&0��-�3PN�# �� .�N� ��|�}Q3`)P /P3 �y�,�D�"P �"�2��0?? @�&�D3'�3r� pN�P 3*0u�a @�0C 303��04� �C1>DP�0�C� �0��- 2�NP� P5���@�ur�7�6�7cP�P�3u@5�� >@�P~9C 0J�aP:SJ0�`Ga.E�3�;PC�>0C00V>��'@,Pi� P��"aL�M#N#��4o�>@&��@P�!P 5}A��u�0 5�&N J �N�-��@ �N� � pC� 5�0S#TUVS0J�p ,�,p55����]�X��,� >��� � ��Y�uPp �5�[#50>�$�� � �PP �5���u� �@-� �]�� �2P ��!�,�^�5?�!`3Pu@D�?�@� &`�a3 , 6Š��R300EP20J�@��cc)5P� 0@6P0e@`6p`��gC2P@�6 0 ��Pi�&�*������6E�P����!Ppk#?@�N��p&�# �,0&�P�� l03� ��m�0�PF� R ���6PP�Qp2 J� PuPo�uJ�E�P� ��@� ���@ � �>��1B�p R?�JP.Q � 7&C �W7DPd�l��0PPP r3$sC7ԱM�-@5P7�� �  C`7,p7 p �� ?P� �5�7�Ay��z�c){����� , 5�J�� � D@>�7�!V��P@.�5�,�75����&07@3�7J�PP�7u ���S�R �Pp� D 83� ����p!���S8W�P 5 p" �>@�P6q @���� ���8��8�#2�@� ��-����u&`00�n�S� �  �8 ` Pu���8>�)1��C0D0 �-0 � �#N� �8�c?@` �C�9��� u� �  ����"� 0r�,C����S�u�D�m`���-�J�,��` Dp,�p*�#�0@@ �5���P�,��;���� p9&PE0 ����@�D�, �[QD���� p"�9E0 @3p@20@�-�&@N�P0, =�9?�>��9i�� �0P ���P �� �92 C�9�B�|p��:�3-@�< Np a��q �P :-�0: �&P Pp@:$�@.Q` 3P�P$��c:&P�P@r���J0EP"� �s ���� �� 0N�?�"�#E�@�:?P/��3�S�����3 @P�:��3@+50L; @ �3���!,�2��D� &0'P�P-0 ���S-P��#P;P`;8P`Qp;��3�f�D��#�@3�pEP��P0�NP�� J�5��`2p0�R�@1 ��7�;`PJ�; N@ �;��p��� 5P � �; �� P���P&P�S�� raE�; [� �u @�s �#PR0�PPu`�� @0Dp�``-�?�T� @�  �� p @@rAE0<��02�3��S<� `-0"�& >���P�uP2`<P&p<0E`���P� ����ʳ< �< �N�N�*?��c3@J��'�<�BE��P�11�u`,PEP P P �5`-P@�@@�0�"@� ��v0MA�RPH�?�-� N3�E�uPϳ��@RQ- . C���P@��A+�� C��Q02�C��c@@ =~�: �D� C� �0=�P@@=q u� 5���,� �$Q=�C3p=P���=٣=@ �N��&�u�- ���ۓ ��=NP �5P&���.��� `�� DP@,���� =apCP&� �@ 09>C��� @��30� � "�#I� 0 �P�S �#�J�>5 1 3S�0PP&@207 0�a��@>u� &p?� 6�3 J`EP� `@� �> �P>u �x��c����� ?��>5��?�&�?� !1�?� 0��>�P>@`QAP�P2P4���M�>� �P5 &� Dp!�,P��3 C�>K05@P/� �>`2�=!�c�� SE�>?  0C����� ? 2�3�@�C?B� )1&NP@0 P?�`?5p?@P �?����?�?-�15P p00@7�y�s� *0 �?`�?2�?@@@�C�-�?<���@@�" @���@@ �2@��4`@��D��@P2�( �C�E�0 �, D�G� �0!Pe� ���&��� � P?�,@ѐ@�>�� �0 @ �3�H@0C0�0u��u` � �"� � .� � *]��u � ��@=ad- R�@>0���C 2A0 @�NA5� + A`����0 P@ �=AA,� J� �����20P��du��P ����P �<$@5���X�D02D0,Pa@��q�!� P0D��.�50JpA�!P0,`d`@0�3�AP7�p@�J��N��A&00 u��r@��At? 0�,QPN��A�2���D0���8P0 ��!4"�#�-�" �*CAE0��s�$�@�>0%TM� `0�M�P=ApY� �E`BpB5�a�B �u �B �*T ` � �N'>@3� � @�D�Bq�PK�0%� �@ �E&�B` P� -$i�5����#0P� �2�C�>P3`�� �S�B�P �,�CptRPq�@���B� �C@PPQ�PCNP,�2�u@�3� �-p�,���u@C-�PC�!�`C �YS30J N�>�7� F`��#pb0 `D� �#0,��P6�8�D�C0���  �ɰ0j@��C;�C@��A� 0=�;�C�C@TAdPN?�B4J�@C�[�DT�ET���@0 p?`DEp JpD0�D -0>�!����5@N�D@P-���P���Jt�0A�5�D�sL�D&  03qPNP��� ��D���q�0J�7��YQ�,� �D�QPT3�2 �Q��E�C E��P,��0u0E�AEU��@ )�N`03XaE P,P upEPXDY�ED�[�E]�E[�E`�Ea$FcDFedFa�Eg�Eg�Eg�Eg�Eg�E[�Eh�F^�F^�E^�F^F^tF^tF^�Ek�F^�Fn�E^�F^tF^�EpG^tF^tF^tF^�E^$Gs�Eg�Eg�Eg�Eg�Et�EudGw�Gy�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�Gv�E[�G|�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�G~�G�H^$H�DH^TH��E�dH^�E��H��E[�H��^�H��H�tF^�F^�H��E��G[F�4I�tF^F��a�E[�G�tI^�E��I^�E^�G^�H��E��E[�G��I��I��Ea�I�J��Ea4JaDJ^TJg�E[dJ��E�$I��E�$I��E[�E��J^�J�F�Fa�E��J[�J��Jg�E[K�F^K�4K��J�DH�dK~F[dK`�E�F��J�F��J^�E��K��G^�Eu�K`�Ea�E�F^�E��G`�Ea�Kb$I�L��Eg�Eg�E´E´H�DL��E[dL|�EǴE�F^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E��Ei�E[�L��L^�E^�L��L��E�Fg�E�M[M�M^F�Fa�E�dH^�H�tF^�E�F�F^F��HatH^�E�tM��E[�E]�E[�Mt�M^�EڤH��E��Mg�Eg�Eg�E[�M��M^�H��Ea�M�Na�E[$N�DN^�J��E[�E�F^�H�tF^�E�N^�E^�Fi�E�TN^�J��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�N��J�F�Na�Eg�Eg�E��N^�H�tF^�E�N��E]�E�F|�E[�N��E[O��E�4O��Eg�Eg�Eg�Eg�Eg�E��E�N^�E��J��Ea�Oa$F��E[�O��E[�O��O��E[�EP�E��E��E[4P�G^tF^tF^�E��E^F^TPaFa�E�dPg�E[�E�P�E[�P�E[�P �P^�E �P�EUH�E~TN^�E5QUQ^tF�4K��J[�G^dQ�E[�Q�E[G5Q^F^�QL�F^�E�Q��Ea�Q~Fa�E~R!%R^F#F�E[dG`�E[DR�TR`�E[dR'�E��R)�R��E��R,�R^�E��R/�E[�J0�G��Eg�Eg�Eg�Eg�Eg�Eg�Eg�EaS25S^�E(ES`�E[TS4�Eg�E[�E6�G^F7�Sa�E[�E9�S`�E[�S8uG8�S^tF^tF^tF^tF^tF^F��Ja�J^F=�Ea�S?Ta�Ea�SA�E[�J~$T|�E[4TDUT^QF�EG�J^�E^�T��E[�EIF^�E��EJ�T^�HL�Tg�E[�I��T^�EOF^�E~dJP�G`�E[UR�EadN`�Eg�Eg�Eg�Eg�E�TN^�ESF^�ETuI`�E~TU[TUVUO^�E^tU`�E[4IX�UZ�E[�E[�U]�E[�E^F^�Ua4I�V�V^�EbJ^DIcEV[4VdF^tF^tF^tF^�EeeVg%J^�Eh�Vj�E[�FkF^�El�Vn�E[dJoW`�Et�Eq%W��E~4Wt�E[�EP�TW^�EadWw�Ha�Wg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��Wz�Wz�E��E��J��E[�R|�E[�W|�M^�E�$J}�W�EmX��E^�E�$X[�E�F^�J[tK�E�4X��E[TX��E[$NKuX��V^�E��X`�E[DLF^�H(�R��X��E[DP��X^�E]TL^�E^�X`�E[dJ�Q��E�UH^�E�%Y�EY^tF^tF^tF^tF^�J��E��K�$I��Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��E�eY^�E��Yi�Y^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E�EG�5I^�Gg�E�Fg�Eg�E[�E��Y^�E��Q��E�dJ�uF^�E~Z��E[4Z��S^�E;�E��Eg�Eg�Eg�E��E[�G�5K^F�F��E[�Z�tF��E[�E��U^�Z��Z^�E��Hg�E[�Z��Z��Ea�Z�[^�H�EF^�E;eH`�W[�E��E�TN^F�F^�G��E�D[^�EcT[ed[^�E^t[`tG��[^�E��[��E��E��[^TW�tF^$La$L��[^F�\a�E[dJ��E^$\ʔKA%\^�E�$X[�E�5\^FgD\aF�U\��E[d\DŽW[t\�F^�E��\~F��E[�\�E[�\��\��\^F�]a�Ea$NK]a�EҵE�5]��E[DPXE]^F�e]`F^tF^tF^tF^�Ea�G~4K�F��E��H٥]��E[4Pe��E[dJ�E��J��E��E��[^tF^tF^tF^�E&�]^�H��]ߵE��]�^^�E^^��Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�J~$^��E[�EHE^��E��V`tF^tF�tF^�E�u^`�E[�^��E|�Eg�E[dX�uG�UN�^��Ea�^��^^F�F��E��^g�E�5Ig�E��E��JuK��E[�N�%_F5_^D_�F�U_�F^�E^�_�N^�GU�EU�_��E��_��J^�E[�J~�_`�E[�E��E^�E��Vp�O^�E��H�EvF^�F�E^�E^�E�N^�J�TN^�E^P%P^tF�4Ka�N�4`FLa�E[�ZP`^tF^tF^tF^tF^�ETuIN^t`F_�J[�J~dJ�`^�G��`��E[�EP�E[�G F �E[�E �``�E�Fa�H��`F�_^�G R"�E[�EPw�U�E[�Sw4\�E[Da�Q^�E^�G^F�daa�EaF�a[�E�a��Eg�E[�a��a�Ea�a�Pa�E[�Z��P[�P��E[b�E[�E!fG^tF^tF^tF^tF^tF^TH��E[dJ5P`�E��E^4I��E~�E�uL^�H�tF^�F�X[�E[�N"�T^�E^P5b^�J��E�J^�E��G�Eb^�E%fb'�b^�J[tK��Eg�Eg�Eg�Eg�Eg�Eg�E[�b|�b^�E^�b��G^�E�$I,�[^�E-�b/c^�E1&cP5c^tF^tF^tF^�E{F^�E�F^�E4fP^�^F�Tc6vcńca�E9&Iĥc^tF^�E~�c��E��c=�E=�c^tF^tF^tF^�E�DJ^�E��G^F?F^�E@�E�G�E[d�HB�E[F~�HC�E[DP#�E[DdE�^F�E[�E�udH�d^tF^�H`tF^tF^tF^tF^tF^�EJ�E��E[�KK�d^�EMF^�J��d^tF^FOeQ�Ga�ER�J��E[4eT�Ea�N"�Ta�E[$VU�E[�M�de^te��E[�EF^tF^tF^tF^tF^�GX�e��E^DM��E��J��Ea�O��ea�E[�e\F��e^�e�F^�E^�Z��EUH^�M�TH��E[�R4F^�E_fa�WatK|Fb6f^�EutGd�E[Tff�E[tfh�E[�RiF^�E��fg�E[tK��E��fg�E��J�4Mg�E��fg�EǴE�F^�K�DO^F�Fm�E[�Sn�Q��E[�f`�E[�Ep�G^4Vq�Er6gcg^�E^^��Eg�Eg�Ea�N�F^�HtF^�E�F^�EuF^�E��T^d\�tL[d\�tL`�Eg�Eg�Eg�E[dgw�Ux�Eg�Eg�E^DMa�J^�E�da��gz�E��J��E[�g`�T^�E|vG}Fg~�g^tF^tF^tF^tF^tF^�EV�g`�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�E��E�6M��E��J��E[�G�Fh�fh^tF^tF^tF^tF^tF^tF^tF^tF^�Ua4I�tha�E[�EP��Ea�h`F^F��Ua�Em�F[�E�vF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E�4Iw�G��W[�S]�L^TH[�EPuUH^�E^�h��U��EǴE�F^�E��h�$F^�Ep�Q�E[FF^�E�`^�J[tK��E[�O��G^�E[�J~�_`�E[�W��h^�E~�G�i�6i^tF^tF^tF^tF^FuFaDi^�E;�E��E[�P�M^�H`tF^tF^$L[$L��E[�E��U��S^�E]�i)�E[�O��O��i��E[�E��J^�E�vG�i^�J��E��O��O^tF^�E�S|O0�E�DS��Ea�\��Za�Ea�i�F^FuF�E�F[�ifF^�Erj�E��Mz&j^�E^4j��Qd�E�vF^�E^Tj��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[dj��J��E[dJjvF^�EʔK��G��E[�j��Ea�ja�Ea�EPu�ja�E�F[�H��[��E[Tb��G^F^F��E[�j��E[�E��G��S^F^k��Ga�E��E��E_F�4k�V^�E^Tkg�Et�E^dk�G^�E�O^�E��e`�k��k^�E^P�E^�E��U\�k^�E^div�k^�E^�b��G^F�F^�E�$bK�E[�k��F^�H��E�dH^�J�tF^�E�O^�E�l^�E�F^^�E�Fl^�E^Tl]�E[dl4�Eg�Eatl`F^tF^tF^tF^tF^tF^�E^�l��E]tF^�E^P�F^�E~dJ��Gg�E[�Eh�l^�E;�E��E[�l��E[dJ�H^�E��l^F�m�ma�Eg�E~TN^�E�6m�&m��E[4m�&m��E�TN^dm[�F��E[�O��O��i��E[�Eh4b^Fˆma�E[�g`�H��S^F��Ga�m^FP�4Ia�Eg�Eg�Eg�E[�Wڶmx�JuF^�E^�T��E[�g`�T^$La$L�F^�E^$Gs�E]�E��G�F^�E^�_��m^�E��m`�E[�R)5Q^F��GaT_^$Lg�Et�Eq%W��E[tLSn��E[4n��Eg�Eg�Ea�\?Un_F^�E���E[�E|�E��EN�Eg�E[�Ifa��E[Tf��E[�G��I��I��E[�n@�nӤn^�J��E��G�n^�E��Gz�E[�n�$d��E[�R|�E[�E��n�o��Eg�Eg�Eg�E�4Mg�E�^g�E[�E��J^$I�S��J�6o��E[$N��W~�W^�E�dWwUo^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E^do��U��E^�E��U}�Eg�Eg�Eg�Ea4Ja�o^�J�TN^TH��E~�J VN^�E��o^F�N�F^DG[W|dX^F^�o=F`�E[�o��E[�E��E^�o��H_�H^�E`�Eg�E[�Jxp��Gw�W[�E�p^�J��G��E[4V�U�$p^4p[4p`�Eg�E[�E65P�E[Tp�E�TN^�E�J^�E~dJP�G`�E~�EN^F��K��E[�G�F^�E^�n��K�fH^�HL�Tg�E[�O��E[�Z��E��R)�X��H^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�G[�p��E[d\DŽWg�Eg�Eg�Eg�Ea�\�F^F��JaTP^�E1&c �W[TG�F^�H�tF^�E�$J wR^�E^tP�^�E �p`�Ea�]�F^�E;�E8M^F��J�F �Ea�[�pa�E[�p F^qTuF^�Ua4I�th[V��E�q^�HL�Tg�EaTb�F��E��TMuF^�E�$q^�J��E;uG�5q^DL�DL�F^�E�FNEqF^tF^tF^tF^F�F��E[TG�dqg�E[tq`�E[�E^�q^tk[Iq�H_f��q��E[$c`�E[�EF^�E�E��Jg�Ea�En�q]F^�E1%S`�Eg�Eg�E��G`�E��q^�E��GF^tF^tF^tF^tF^tF^tF^�E�_|�E��qg�E[�q�G �E��G�TN^�E^4I�E~TN^�E�N!�E[�E"7r^�Ua4I~Dra�G$F^�E%F^drwFgtr^�E~�n^�E{�U^�E�$I('I[�J~�r��E[dJoW^�E�J^F�]a�E[�r+WL^�E �rwVL^�Eu�r^tF^tF^tF^�E��r/�Eas1F^�E~�`��`^�E{$s3�E[Ds5�S��E[�N��E6�_[�J�dsnuI^�E^�T`�E[�EP�E[�E��F7�E[dN��E[�q�X8�E9�G9F9Fa�Eg�Eg�E[�s`�W[�EP��E��J��Eac2�MiF^F�F^�Eƶ^�Eh�Vj�Ea�s�Fx�EEH^�E�s@'hA�Em$t*FB�ba�E[DPXE]^�ECGt^�G��E[�EE'cF�E[�S`�Q��E�tF^�E �H^�E^ttH�E[4II�Eg�Eg�Eg�Eg�Eg�Ea�N�F^�EJ�t��VL�L^�E^P�M^�E�t^�E�FN�a[tK��JO�Eg�Eg�Eg�Eg�Eg�Eg�E[OX�QP�E��J[V gG^�EQ�g^�E�]^IR�ES'u^�Exu[`�W[TG�F^oT�E�Fu��E[�EPu\�E[duW�u^�EeP^$I2�uZ�u\'m]�uP�u_�E�vg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Ea�Qa�G[$va�E[4vF^tF^tF^�E�F^�Kd�E[TI�E[4U|�Ee�Gfgva�Eg�Eg�v^�E�d^�E*�r��Ea�Ei�v��E�Fa�ifFa�E[�Pk�vm�v^�G��`��Eg�E[�Ro�E[w^w^�Ua4Ir�ErWQ^�E;�E��E[4Fs�G^F^Dwa�`�E[Twi�E[Twi�E[TI`�E[V gG^�E��G^tF^tF^tF^tF^tF^�J�TN^�E^dw`�E��G`F�Fa�G^�J��E�H^�E��H^�J�tF�4K[�N�tw��E[tb`�Ea�Ix�wz�wa�Eg�EF~�Eg�EatK�F��E[�J0�G�S^4Na�JjGH^Fa�E[4Jm�G^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E��^w�U�fG^TN^TH[�EP��Eg�Eg�Eg�E[�E|O�G}�Eg�Eg�Eg�Eg�E[�``�w�E[�Evx^�E��G��E�dJ�4I�%b^DG[W��E[tK|Dx^�K�GO^DG[dx��E[�E=`�E[�n�$dN�x��E[�E�d��E��G�tF^�Ep�EN�x�J^�EuF^�E(�R*�Eg�Eg�Eg�E[�EP��E~TN^�E^4I^�E��E[Ds5�S��E��ig�E[�x]�T^�Ega��x^�EQ�V^�EEH^�Ea���E[d\DŽW~�E[o��T��E[�O��G^$Lg�E�$I[dH^�Eudqg�E[$y`4y^�J��J��E[�s?�w^�G��EaTb�F��E��]\tku�E��]\tku�E[Ty��E[$N�T��Wg$P�7Ka$P�7K��yPF^�E��U��y^tF^tF^tF^tF^tF^tF^tF^�E�F^�E4Ws?�S^�J�TN^F��^��E[Tb8�K��Ea�\?�ya�E[�y��Eaz�'z�F^�E^�w��QXEz��E[�n�$dN�x��Eadz`F^�HL�Tg�Eg�Eg�Eg�Eg�E]�E�F��E[�Gg�Y^TH}TN^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E��z^$I�S��J�TN^�E��G�wn^�E��z��Q^�E(�v^�Ea�W�_`Fx�Ei�V��F^�E�$I,�[^�E;�Sw�S�4\^�E��^w�U��wv�E[�[��[^TH��E~�J VN^�E�6KB�T��z^�E;uG�5q^�G[�z^DG[W��E��JaF��E�TN^�E�F^�E��J�7V^�E��G^�Eu�G��E�7{�wF^tL[�L`�E��J[�Eh4Q^tF^tF^tF^tF^tF^tF^tF^�E�F^�E�TL^tF^tF^�E�$O^�E��H`�E~t{��E[�{��E[dJ��E��EadH^F_f��K&Pa�W[�J0�G�S^�E�F^�E~�{K�{^�E�F�DH^�E��O|�E��J��E^PUH^�E<�L?�X?�Eg�Eg�Eg�Eg�Eg�Eg�E[�J~$TK�E��J[�{��U^�E:�{^�E^�{�Eg�Eg�Eg�Eg�Eg�E[|%uM^F%Fa�E�tF^tF^tF^tF^tF^tF^tF^tF^�E�|��Q^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E^4|wD|^�E_fa�W[T|�w|^�E�tZ^I��f[4u��f^TN^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^TH��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Ean~F��E��|g�EɷE~�Y��J^�E��E��E�dH^�E��J��t^�E��Q^�E�wM`�E[d\DŽWg�Eg�Eg�Eg�Eg�E[�f`�E�dJ��LUH[TH^�H�tF^�E��d��|��E[�E��|]TH^�Eb}^�Eudq��E��G`�E�}^�E~dJP�G`�E[tK|�g^�E��R��E[dJ��Eg�Eg�Eg�Ea�E�F|�E[�EPU}^TH�dH^�H֧J��E��G^�E^�}��k��k^�E^PUL^�F�X[�E[�e`�}��E��E[�^��E|�E��G`tF^�GU�EU�}A�E��E[�E�F^tF^tF^tF^tF^tF^tF^tF^tF^�J[dJJ�E`�E�F[�J~V��E[�G�~�G^�E~dJP5[�tF^$L[$L`�E[~`�E[�N��W~�W^tF%~[$P�F^�E�4~��E[bvT~^K~�_��E[d~Xu~8�Ea�Ob�Oa�E[�Jxp��Gx�E�G��Ea�~��G^�E^�~]�Eg�Eg�Eg�Eg�E[�Vi�V^D{g�Ea�\�F^F^dw�F^QaF��E[�Z��E[�R��E~4W^�E��~^FaF^Q�Q��J^�E^�x��E[�H~^�G�wF^�Eu�r��Eg�Eg�Eg�Eg�Eg�E��J[dJSwF^�E^4`�E[F~�HC�E[�E��nitm^�J�tF^tF^tF^�ETuIN^�El�V|�E[�O��G^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�G��`��E[D��J^�E��J��E��J��Eg�N��E�4K��E[�\?Un^�E��E[�G��E�t��H^$HƷE]$HƗ^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E��_��EadZa�^�EwF^tF�4K[�N�4`���E[�E�dz�E����E[��E[�l��E[�Vm%P�^�E�6Vxk^�Eu�J^�Fn�E^�E�DH^tF^tF^tF^tF^tF^�E�4N�5N^�ETuIN^�E^�FWs^�J��E[dJ��E��Ig�E[4��E[�S8uG8�S^�H`tF^�E�4U�&n^DG|�EaD��F�Eh�a�E�tb�t��� �E[TI��Eg�Ea4F �[^�E �L|�E[Ԁ�|`�E��J�TN^�Gg�EaTf�F^tF^tF^�E]�G��J4�E[�Hb�E[$��DXK�E[4���E[�]��E[DP��E[�E�E��E[�EhdG^tF^tF^tF^tF^tF^tF^�E�V�^�EO^�HL�Tg�Ea�S?uRa�E[�EPu�Et�EuDH^F�$J�p^FF��EauF^�G��E��fg�E��Eu�J^�GU�EUT�Ea���F^�Eƴ�^�E&F^�E�7I^�E�^tF^tF^tF^�E�J^tF^tF^�E^�T`�E\ԁ[�E�^�E��E^F�aF^�E�E`�E[�E9�S`�E[$N\�U��E[�EP�E[d\DŽW[DP��E[�z`�E[4VdF^Tv~dvfF^DG[dx\�E[�E�d��E xF^�E���&�xF�5�a�E[�E�N^tF^tF^�E��W~D�%h�xF'hPa�E���^�E�`^�E)xI^�E*��`�E��J��Eg�Eg�Eg�Eg�Eg�Eg�Eg�E�Ă`�E~�EN^�E^PuG^�E ւ^�E^�T8�w^$e�TN^�J�TN^tF^tF^tF^tF^tF^�E��/�1(�^F�OaO^tF^tF^tF^�E;�Qw4\3�E[�G;fG4�E��E^PEG��E[�E��J^�Gs�E[T��F^�G��E[�EhdG^d���E[t��F^�E^$QH^�E~tfh�E[��98U`�Eg�Eg�Eg�E[�E^�JXE�X�E���g�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[d`;�Q��Eg�Eg�E[b��E[�J~$^<�Ea$QY�Ean~F��Ea4Iaԃ^�H��E�dH^�E�G��E[�KK�^�E^PuGu�U^�E^�F^�F^tF%~[$P�'T?F^�E;�Q@�g^�E �p`�E[�B�Ea�lCF^TJkvF^tF�4K[�N�D�7h^�EJ�E��EaT�eF^d�G��I8iJ�J[��|�EaĄZF^�Htք^�EV���E[b�Ee�G�4L�4La�EaT�OF^tF^tF^tF^tF^�H�tF^�G[d\��E[Tyw�^K~�_��Ea$]QF^�ER8���E�dJ�4Ig�E[D�Uh�^tF^tF^tF^tF^tF^tF^tF^tF^�EKx�^�G��`��EneJX�E[��^F^�E^PF^�E^��`�E[�J[�v[�E[�_vtm^�E^PF^�E^�_]�E[�R^�E(�R`�E�TN^�E��J��J^DH^drwFgtr^�J��Eaą�օ`F^F�Na�E[�E^�G��E xF^�E^䅻�Eg�EaTyady^�G[�gG^�E`wa�J^tF^tF^�E�Fl^�E~TZw$�^�E��Z^�E[c�Fc�E[�Eؗ}`�E[�E �`v�Et�EqF^�E~Z��E[�EP�E�4Mg�E�4Mg�Ea�IaD�^�E��G^�E��^|�J^FL�ha�E[�E�d��E[dR`�ag�E[DR��[`�E[T�f�H`�E��J4�i^�E^�n�F��E��Ig�E~�J VN^�E^^H6K^�Eg��^�EiHH^�E^Tb�Z��E[4m�&m��EUH^�T��E[����Gk�q^F�OaO^�E�DG`�E[�R3F^�E~�``�`^�EcĆ�Ԇ^�En��\�E[�Et�Ha�E[�EI�^�E�4U�6\^�E*�r\�E[�EI�Sz�E[S2eH��E[$N�T��W[4�p�E[�G�~�G^�HL�Tg�E[�G~�G^�E~4h�Vh��E[�e��^�E�$I��E[$�s�E[z��v��E�G{[�|`�E[�d|�Et8Ku�t^K~�_��E~TN^�E(�v^�E_fa�W[�Vm�Vvxv^�F^�Eot�^�E�$Q^tF^4I��^�G[d\`�E�tF^�E�4U[�F^F�Tx��zF^�E{ȇ`�E[�E}�v��EaTyady^tF�4K[�N�4`��^�E�F^�E�Fl^F��pF^�Gfgv^tF^tF^tF^�Eg�G^DG|�E[�E �``�E[�E�F^�E��E`�E�$�^TJg�E[tKK�E[DP��X^tF^tF^tF^tF^$I�4��F^$H�DH^F�h��F^�E^�F`�E[DP��E[tNYwG^t��F^�E�dWwuVՅW[�GO^tF^tF^tF^tF^tF^tF^tF^tF^�J[TG��E�5Ig�E[�EUW`�Ea�E���a�W���^�J�tF^tF^tF^�EKhG^�E^o��E��Ja�EPdF^�EY�Ea�E[���Q^�E�F�F^tF^tF^tF^tF^tF^tF^tF^DG[Ĉ�8Q|�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E�TN^�E��J��tf�S^�EuDG`�EtTG`�E[Ԉ��G^DG��E�TN^dVg�E[�E=�E[�Sw4\�EĵE~F�H\��E[�EHF^�E�%Y��U��Eg�N��J��E{%���E~TN^�E�H�^F�l`F^�Eh�V��E�t�^�E�F�DH^�E��N��E��E�OaV�F^�Ua4I�V�tF^�E��G�Ń^�E�xV^�E�F^Fc���؉a�ER�J��E[�O��O��i��E[�z`�E�$I��E[�E�F^�E��H^�E�����s^�E1&c��^$H�DH^�E^�T�F^tF^�E;�w��E��J��J[tO��O^�J��E��n^�E^4�^�E�F^tF^�E4Ws?�S^D�[D�i�E R Ra�Ea�Oa$F��E�dJ�h�`�EtTG��Eg�Eg�Et4\�'a��Ea$I��i^�E-�b^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^TH^dH^�E;F�gv�g�4\^�E~D���Eg�Eg�Eg�E[dJ�4I[$N�_}�W�E[�y�TO^�EoF^F��J�FO�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[4U)�E[dJ�UH��E[DU�d`��E��E��K��E[�o��Ea�\�F^X^�E��E^�E��J��E[dJS�E~�E_���E��E��[^�Ex�mw�W[dJjvF^�E^^H6K^�G[�Pe�^tF^tF^tF^tF^�E�_|�E[TG�����E��J[�O�ts�E��I[H^�r�X[$gs�r�X^tF^tF^tF^FFa�E��Ig�E�Ċg�E[DP_�E[�E��Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��J��EtTG|4K^tF^�E�DJ^TJ[Ԋ�F^�H�xF^�Qa�G^tF^tF^tF^�E^�E�DH�DH^�^tF^F1%S`F^�E��EuF^�E��^�H�tF^tF^tF^�E�$N�tF^�E���&�^�E�$���\=�E[�J0�G�H�^DIcEV[4VdF^�E�T���E[$QuF^�E;�Sw�S<�E[F�X^F<�L?e�a�Ea$�s�H^F@�E�G��Ja�Emt�at�a�E[DR��E[��^F^�E �``�E�TN^�E~dJ��G`�E]�E��G�F^�E^�G���=�E~�E��E[�E�N^F%�La�G^�E �p`�E�F^F^�h�Ƌa�Ea�Ia�G^�Gs�Eg�E[S2Ջ��E��fg�E[TG�F^䊾芾F^�H`tF^�J��Ea�W�H�Fxue��E��Eg�EǴE�F^�E~�^D\[F^te��Ea�~��^�E~$��5Q^tF^tF^tF^tF^F�F|�Eg�Eg�Eg�Eg�Eg�Eg�E���^�E<O^�E��G^�J�tF^tF^tF^tF^tF^tF^F^PuGF^�E�dWwE�^tF^tF^tF^�E�h��dH^�E�t�Ș�x�E�F^TH��Ea�Iʸ��F^�E<O^TH[�EPtTH^�E��G^�J��E���[�J~�`�E[�R4F^�E��E`�Eg�Eg�E[�R��EΘO�xF^�J�TN^�EҨH��E[DU�d`v�E�tF^4��F%6�aD�'�E[�EPwTWZ�Eg�E[�Et�h^F1�M�dPF^�JפR^�E��N��E[T���K^tF^tF^tF^tF^tF^F�d�at���E��X��E^qT�E�4I��Eg�Eg�E�Ċg�E[�R^�Eu�W^��ڸ���Ea��gF^�E�؍��E[TGwF^�HL�Tg�E[��F��^�Eh�G��Ea�K��Z��E[�R)5Q^�Ea�WF`tWxFa�K^�E��_^�G[F�T���G��E�t�g�E[dJS�E^dGi�E[�S`�Qw4\蘎^�E���'z*�E[TS4�E[Fxp�F|�W��E눀^TH�dH^�E�x���E[�f`�E[�ah�tVOg�E[�\�H\��E[�E��n����E[�O��O��i��Eg$P�E%~`�Ea�^Fa�E[�9F^�E^�}�(�^�E{F�Ea�s��S��S�F^�E��G�(^^F�F��T�a�Ead��Fa�E[�E�O�E[�\��Z^�E�h`�E[�����^�E�E\ԁ�E�F�ȏ�ԏ�J[dl��i^tF^�E��G^�J[�]��X���^�E�H��E[�E��E��O�^DG[dx��E[�R`�E[tk_f���%Z^�E�T�Uv�T�E[�W|O]�E[�EP��Ef�EfF^�E^dw`�E^tI^F�OaO^�E^D�I�G^�Q��Eg�Eg�Eg�E[�8N^�F^tF^F�W�F^F�G�Fqx��E[�G 6�����EUH^�Z���^�E ɐ`�E �^Ԑ�Ea�[F^�F^F� F^�EÅMt4\^4�~Ԑ^�E�DG��E[�G9KPJ^�Ei�`�E[F~$^Cv�^F��Ja�V^FڤHHF^�E�T�Uv�T�E �^�E���X�E[�G�����E[�JvuW����W��EeVH��E[4l��G^Ԑ�E[tKP`��Ead�~�[~DI~�H^�E�����E��XaTb�F�xb^FS�ga�Ead�~�[Fqȑ`��ԑ^�E�dWw�H��Nx�EY} �^F��a�E[F~4���H^F^$�0�a�E1���E%�P`$mX�^I׵Ea�G~4K�F&�Ea�U;UL�v�a�E���)����E yF��Ea�Fv�E[�G~i�&i*�Ea��,)Fa�E[�-�Ea�x.�Q/F^�E�U8�]^F�tka�E[�O0�E[Tf����Ea�I�X�ga�Ea$�3��4�E[tK��Q�_^F5�Ga�E[�JvuWgU]x�E~d���E7�dat�8F^F9��;ɓa�E�ԓ=�E[�EI�^F?�K�DH�F^F��Ga�E[d^�F^F�da�Xy�ga�E[�E�F^�Ka�K�F^F��a�E1���EfA�`&���Ea4�DF^�EE9�^�E^PE�^F��Sa�E�8O)����Ea�K�Xka�E[�O��Emd�G�EFy�^�E�m^FatZ^�E~�G�i�6i^F�Ta�E[�]|�EM�[܅�M�Ea�LI�Ea�\��Za�E[�EJ���E��E[$�|�w^�E �P�O��EL�E�ȔX%ao�E[�Hb�Eg�E[zM�E �^�Eudq^FN�Ka�Ea�[�F^F�F^F:Fa�Ea�lVF^F^dwOF^$q��E%&qF�P�E[���L^�F��[䊾�E[�S�ER9�^FT�na�E�Xx�����E[���V�^���DO��J^�E~d��t�X�E[��`�E���[��`��^F�ƕa�E[ԕV�a�ee^�E[�G_ �^��(q�����E[�G�i�6i^�J^F FaF^�E�V�^Fb�Ua�E��E[�E�OuFZ�E[�Ec�Ud�E[T�e�Efy�h�E��p�F%&J F �p\��a�E �^F��\a�E[�E~tb?�E��K��H^�E^�F�E~TO[F~��~TOk�K^F^ĖaĖ^�EY} �^�J[tKm�E[�o�E[�E��^�G��nq�Ea�I�$�a�E �^�J[tK��ks�E[F�D�2V�^Fvy�a�E[$l��E'Ix�F��Eg$P�E%~�F^t�hJ��i��E1���E���K��E[�G Fz�P^�E�Xv�E[zu��^�EeƗ^Fa�f^���DO��J^F�tG`F^�G��Ea�Ix�wz�wa�E}yW^�E�S|��~�E[�G~i�&i��E[�J0�G�H�^F^dwF^�E˵H���E[�E��J^�K�DO^�E��J�9�^�E����H�^F�6KB�Ta�E[F�tWvF^FY�P��E �^�E���Y�x���DO��J^�E��U\�~^�L��E%�LW��^d�ad�_�M^���G��E��U^F&Fa�E[tO��O^�EEb^���$���J^�EAؒ��E^F�6KB��F^Ԑ�Ea�NeF^F�y�a�E[�I��^�J��E �^�Eu�G��_^Fh�F^�EuTs^�Eu�G��Ea�EvFa�E[�G�)i^�E��g`�Ea�I�F^TH��Ea�E8�E~tL��E[�E�udH�d^FʔK�Pa�Ea�LI�E[dJ�yF^�E�F^F��_a�E[4m�&m�٘^F�5�a�E[�EĤX��]�Ea�~��G^F^��a�^�E��Y �E[�G~i�&i��E[���Eg�Eaj�Oa�Ea$���Ga�Ead�~�[]EMa�E[F~$^�F^�E~�G�i�6i^Ԑ�E �^�EadWwuVa�Ea�E|�G^�E\�E^�E_F^Fb4FdTFfF^tF^tF^tF^tF^tF^�E^�Fi�Ej�E[�Ej�E`�Eg�Eg�E[�Fl�Em�F[�Eo�Eg�E[Gq�Eg�Eg�Eg�E[�Er4G^tF^tF^tF^tF^DG[TGvtGx�G^tF^tF^tF^tF^tF^tF^tF^tF^tF^�EzdG^�E{�G^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E}�GH��E�4H��E�dH^TH��E[tH�tH^�E��H�E��H��Hg�Eo�E�I^I~�Ea$I�DIg�EaTIF^�E~dI��E[�I��E[�E|�E��I[H^�E~�I��I�DH^F�J�$J^F�F��E�tF^�E�tJ^TH��H^TH�dH^�E^�J��E��Ja�J`F^�J��E�dJ�tF^�E��J`�E�$K�DK�TK��J��G`�E�F^�JatK��Ja�K��E[�K��K|�E[TG�F^F^�Ka�E[�K~F^F�$F�L�L^tF^tF^$L[$L�4L�TL^�E��G^tL[�L`�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�L^�F^�EʴL��E[�E��L��L^�H`tF^TLдE�TL��Ea$M`F^TH��E�4Mg�E^DMaTMa�EatH�F��E[dM�DH^�E^�E^�E�DG��E[�M��M^H�tF^tF^tF^�E�4K��E�tI^F�N�F^�E�4N��E�TN^�E^dN`�E��Ig�E[tN��E[�Eh�F^�J��E�TN^tF^tF^tF^tF^tF^tF^tF^tF�4K��Ja�N�F^tF^tF^tI��E�4Mg�E[�N�4I^�E[�N`�G^�E�O^�E�$O^�K�DO^tF^tF^tF^tF^tF^TO[dO��E[tO��O^F�Fb�O^�E��J^�E��O��O^�E^P%P^TH[dH^�EEP|�Eg�Eg�E[�H^�Ea�EF`F^�HuF^�E^tP�^�E �^�E �P �E[�P�P^Q�Q^�G��E[$QEQ�Eg�N��J��E~�EuQ^�E�Q^�Ep�Q�Ea�E�Q�tMa�E[�QL^F�G`F^�G R"�Ea4Ra4Q^�EvF^�E$5K%F^�E&uR^�H(�R*�H^�K+�R-�E[�I.�R^�E�S|DM^tF^tF^tF^tF^tF^tF^tF^F1%S3�E[�R4F^�E5ES^tF^�E^dS|�EatS8F^�E^�S:F^�E;�Sw�S<�Eg�Eg�Eg�Eg�Eg�EatK�F��Ea�S^F>�S@F^F<T^�E��GB�G^�ECETE�EeT^tT��E[�EH�J^�E^�T`�E[4I^�TK�E��TMuF^�E�JN�E[�T`�E[�G�U~F^�EQ%U^F�F^tF^tF^tF^tF^�J��E[4U`�E[DU�F^�GU�EUeU��E[�EWF^�E��UY�U^�E^�U\�U^�E^�U`�E_F��H`5Ia�E[$V��E�4Vd�EcEV`�Eg�Eg�Eg�E[TVfuV��E[�Vi�V^�Ei�V`�E[�Vm�V^�E��VpF^DG[Wr�J^�GsEW^�E^P�Lu�E[FvuW�FxuF^tF^tF^tF^tF^tF^tF^tF^DHy�Wy�W^DH^�J�TN^�E(�G^�E{�W��E[$N��W~�W^�F�X[�E[dJ��E^$X`�E��E�Q^�H�EX^�E�eX^�E�T��Xn�E[�X�F^�EĄP`�E��R)�X��H^�E�X��E[�E��E[�E�F^�E�YUH^Y��E[Y�5Y��Eg�Eg�Eg�Eg�E��J[�K��K��H^tF^tF^tF^tF^tF^tF^tF^TY[TY��E[tY��F��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�Yt�Y��E~tF^�H`tF^tF^�E^�Y��E[�Y�Y^$I�Zg�E[�G�%Z^�E�5I8�E[�S]DZ^tF^tF^tF^TN^�E~TZ��EadZatZ^�E��Jg�Z^�E^�Z\�E��X��E^I�tF^�E��Z�5I^F�[��E�dP[dP`�E[�S�Fx�E^$[^�J��Ea4[a�E~TN^�H��E[4F�UF��E[�E�Fw�[��E[�[��[^�J[tK��Eu�Jg�E�F��[��Ea\�F^�E��H]�E¥L�T��E[dJ��E^$X��EatF�FaT\�U\^�E�uLx�EDž\`�E[dJ��Ga�L^�E��Q^�E��\��\��Ea�\�F^F�T�F^$][$]�UO^�E�U��EaT]�Fa�Eg�Eg�Eg�E[F~�G�t]a�]^�J��]��H^�EEPF�]^�E�4P^dJ�TN^�J[tK��Eg�Eg�Eg�E[dR��E��]��][�]��]��E[�E�N^tF^tF^tF^tF^tF^tF^tF^�E��G�5^^�E^�T��J^T^oFg�Eg�Jg�E[d^�F^�E�J^�G^tF^�E��^w�Y�4^�5\^F��^��Ea�^a�[^�J�uF^D\�tF^�J[tK��Q�_^�E�_�eT��E�U_ad_�u_a�E[�E�O��E~TU[TU��_^�H��_��E]�E��G�F^�E^�_]�E[dJoW��E[�_�`^`g�Em$`[�E[�E^�J��E��J��E[�EP�Eg�N�F�4KF`�F^�E���Eg�Eg�Eg�Eg�E[DU�d`��E�`�u`��E��G��` �E~�J VN^�E^P%P^�E~�``�`^�E^�`F^�H`F�DXaaa��E~R!%R^�E^PuGX%a^�E;uG�5a^�EVa�E[�E|�Ea�IF^Fata�E^�a6M^tF^�EFX�a^F�aF^�E��J �E �J^�E V`^�E^bv�Eg�Eg�Eg�Eg�Eg�E�dH^�E�4PF^4I[�E�4I^�G[d\��E�4Mg�EmX��E^�E�$bK�E[�EP#�E��J[$N��E[�J~$^$�E[Tb&vb(�E��E��[^tF^tF^tF^tF^tF^tF^�E)�G*�E[�E+6H|�E[�J��b��E[�b.�b0�E[c2U3�Eg�Eg�Eg�E[�G`�E^DM`�E[Dc�E,�Ea�I5fc7VL8F^�c�D\:�Eg�E[�G;FH^�J<�c[�c>�Eg�Eg�Eg�E[4J��E[�[|�Ea�ca�E[d^�|T`^�EA�Q�$d^�Ea�G�4d^�E5b^�EDVd�ed^�E^^G�dI�Eg�E�Fg�Eg�Eg�Eg�Eg�E[�d^tI^�E��dL�E[�d`�E��JN�Eg�Ea�dPe|F^$e�TN^�ESFe^F�$bKF^�EbUe^�EڔMV�EWVN^�E^dQ`�Eg�Eg�Eg�Eg�E~�eY�K^�EԴN^�J�TN^F��OZF^�E[�ea�K]�e[�Ja�E[�E�N^Q��E�N�DX^�E(ES`�E[�e`fxF��Ga$fc�E[TGwDf^�Eeff^�Eg�f^�E(�f`�E[dJjvF^�E��^^TJkvF^�J��H�tF^�ZlvF^tL[�L`�E�4O��Ea4Ja�f^�E;�f5\^�EoF^�E^g|�Ecg[$gs6Vq�E[�E�N^tF^tF^F�Na�E�Dga�E[dN`�E[Tg`�E^DMN�E��NǴE��N�F^tF^tF^tF^�EvvgX�g^tF^tF^�E�F��E[�I�Xy�g^�J�DH^�E{FK�E[�gw�gt�g}�Eg�Eg�Eg�Eg�Eg�E[deF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E^h^h�$h^�J�TN^�E~4h�Vh��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E_F�$J�V^�E^P�J^F�Fa�EaZ_F^�Fn�E^�hg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�J�tW|�hx�E;�E��E��E^PUW��E[�E��h]�h^tL[�L`�E[dJ�Ob�E[G5Q^�EaDPa�E[4J�E��E��[^�E��O|�E]�E��G�F^�E{�L��E[�G~i�&i��Eg�Eg�Eg�Eg�EaTGaF��E[�S]�L^�E N��E�Fg�Eg�E´E�Ti^�E^diXui<�E[�E��R^�E��O��O��i^�E^�J��E[�iwP��E��J[�O��O��Eg�E[�J0�G�S^�J4�i^F�N�F^F�6Xa�EaTGa4Q^�i`�E�fV`�E[$g��a[j٤g��E[�E�OEf^Djg�E[�E��J^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E�vj��i^�E��fg�E[�L��j|�j^�E��_^F�F^F^PUW�F^�H`�E�DX�J^�E%�j|�Ea�EaT_^�E��j^�E^�Z|k=�Ea�E�&k|F^TN^TN^�Ua4I�Fka�E[�E�vV^DG[�E��Q|�E[�]��E[tk_f��k��E[�EP]�E[OX�U��E[�E�fG��E[�E+6H|�Ea�k`�E[�N"�T^�E��ki�E��J^TH��E��Jg�E[�k��E[l��E[$l��E[4l��E[�E��E^�E�FS^tF^F�Fa�Eg�Eg�Eg�Eg�Eg�E[�E�N^�Eg�E[�EPi�E[�G��l~tF^�E^�F��E[�S]�L^�E��l^�E��l��E[$l��Ea�l�m�F^tF^�G��E[$m�Fm�Vm^�E�Fm�Fm^�J��EֶEitm^�E��O��O��i^�E^�F#�Ea�l�F^�E{F�k8�EatK|F��EaPO�F^tF^tF^tF^�Ex�mۆW�4Qg�E[�EHO^�E{FK�E�F��ma�E[�Er4G^�E[�J~�_`�E[�E��L��E[�m�F^�E(�R�Ean~F��E�tF^DG[Wr�J^�E�4U�&n^�E�Fn^tF^tF^F��S��Ua�E[tKP`^�E^�G^DH^�d^tF^�E�da�X^�Eefn^�E~�I��I�tn^�E��6M��E��J[�J~$^��E[tK|�g^�E�6KB�n^�E(�G^�E^�n��K�fH^tF^tF^tF^�H�tF^�n�uF^�E^o��E�dJ0�J�$o�Fo^�E�$J}�W�E[�JvuW��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�E�voXO]�E[�oX�G^tF^tF^tF^F�F��E��J��E�dH^�G��`��E[�o��Ea�\��Za�Et�Eq�G��Ea�E��SaF^�E�N^�E^�o]�E��N��U��E[F^tF^�E��WwZ|tWx�E^4I�E��J~TN^�Ec�^X%J�E�EF^tF^�E^dSEp^�Egp^�J��E[tp��E[�G�U~F^�G[�p��Ea�K�$_^�E~Z`�E[�E��n�o��E��TMuF^�E��J^�E��[^�H(�R��X��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E~�EN^�E�uLxuF^tF^tF^tF^F�]a�EatK�F�E[c2�px�Eu4K`�E��Ig�E[$N��p'�E[�E�P�E[�p F^F�%Ja�E[�S]�S��EatK��Ja�p^F��pF^�E �p`�EGUg�E_F�$J��Ea�[^�K�E��TMuF^F%�La4X^�HL�Tg�E[dJ�E��J[�Sw4\�E�4L�4La�E^DMa�TWqa�Eg�Eg�Eg�Ea�la�L^�Eu�JwF^�EF^�E^�E�E��E�g��e`�k�]^�E2F^�E^dQ`�E[�q^�J�tF^F^�F�Ea�E[S2F^tF^tF^dK~F[dK�E[�J~�q`�Eg�Eg�Eg�Eg�Eg�Eg�E[�N��G^IwF^�Ega|r^�[~�J��E[�E�p^�G��E[�\�r^�E^$r#�E_F��G$F~Dra�E[Tr`�E&'qgtF'�E[�G��E[�GX�E[�J��r��E��G)G\^�E��Vp�E[$N��Ea�\�F^�E*�r��E[�,wg��E[TG-�Eg�Eg�Eg�E[dJ.�r^F0sa�E[�G �[ �E[�G27s^�E4Ws?N^�E�N^ds��E�$I6�V��E[�EIF^�E^P%P^�E^diits^�E��L^�Ega��s^�s~�sa�s`F^tF^tF^�E:Fx�E^P�M^�J�TN^F1&cٔfa�Ea�ja�E[dl�E[�Vi�V^F;na�W[DP��E[�se�E[�E=`�E[�s?t�t^�FB�ba$t*F^�E�U��E[4tD�E~TN^�E^Tt2ft^�E;F�L^�Jg�E[b��E[�EG�t^�E��t^tF^tF^tF^tF^tF^F�Na�E[�tK�Ln�t��E[�EP��E[�aM�E[�ah�t�E��J��t^tF^tF^tF^tF^tF^tF^�E��Uu^�J��E`�pv�E[u}�E[�\��E�$u[4uR�E[�W�Fx�Eu�K`�E�Fu[oT�X^�E^�U�U^�EVwuX�E[DP�E�$cY�u[�u��u\u^�u^�J`wF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^vv~�EbF^�Ec�`�Eg�Eg�E[dJ`�E�Dv^�E��Q^�ES�G^Tv~dvfF^tv[tvh�E[DPH�E[�r+�I^F^�vjW_^�i`F�fV`F^�E �vl�vn�E~�J VN^tF^�E(�v^�Ep�Eq�E_F�$w[$w�E[�S]DZ^�Ec4w|�Ea�EtFF^�Eu�F^�Eu�F^�E�F^�E`�pv�E[dL|�Eg�Eg�Eg�Eg�Eg�E��J��E[�EvF^dK~FadKaF|�E��J[dJ��E[dJ��E��Jg�N��E�4Kw�H^�E'F^F��wy�w{F^tF^�Qa�G^tF^F��Ka�O^�E�S|O0�E�F��v��EaF^�E��f|�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[dX�uGX�kv�E��E��E^PUH^tF^tF^tF^�E^�w��Q|�w^tF^tF^tF^tF^�E F~�w^�E^dw��E[x|$x^$I�$N�D\"�Et�Eq5x^�E��G��E�Tx��Et�E�wx^�E^�s@F^�E�6KB�T��x^�E^^H6K^dK~�Hg�E[w^�T��x��E[TG`�E[�R)�R^tF^tF^tF^�E^P�x^�G��E[�E��E[�K^�E4Ws?N^�x�vF^�E��EK�E[�q&I��E[Um�E[DP��E[F?N^�E�uLx�G[�e�yKy^�E��O|�E�tF^TH��E��E[TGwF^�E�F��E��J�TN^�E>�sz�E~TN^F%�La4X^Dy��E�VW[Dy��E�VW^�E�gy^�E�4_Ke[xuFuy�Fuy��j�ua�E[�yX�y��Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�y`�E[Ds5�S?�E��J��Ea�^��^^�E%�S��y^F��S�F^�E�Gk^F�z�7za�E[�E|O�U�Wz^�E�6KB�T��x^F�Fa�E��TMuF^tF^tF^tF^tF^�E[�N`TL^�E~tf��E��G��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[tz��E�dJ0�J��J��E[�K~�z��E[�J��M�E[�Ro�E[Fxp�Fa�W[�Fkni�E[�J��b��E[�S8uG8�L��E[dX�uGX%hzgG^�E��[��E�dH^�G��`��E[�n�$dN�z��E[�Sw4\�E~�E��Et�EqEH^�J�Fa�z^�J��E[�z`�E[dJ�{c�E[{|�E[TG|d]^${�G{g�EǴE�F^�J��E^�F�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[T{`�E[tK��Eg�Eg�E[O��E[d{�F^�G�w{^�E��H^�E��H]�{^F��Ea�e`�k�dbFx�E�S|O0�E[�^`�E[�G��T��E^DMa�H��E[�O��G^�J�TH[�EP��E[�s��S��S^tF^tF^tF^tF^tF^tF^�E��GB�T^�J��E��{\�E[�S��E[�E��^tF^tF^tF^tF^tF^�E�WR��EaTr`F^TJg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�k�'|�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�E�wG��E[�e`fx�E�g|��E[dJ��E��Zl�ES�Zl�E��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E�dH^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^F��GaT_^�H�wF^�|[�G��|��E[�|^�k^TH��E[tK��JO�E[TI�E[d|�F^�E�uLxuF^tF^tF^tF^tF^�EoF^$I��|�Q��E��E�4Mg�E[�KK�|��H^�E]TH��E��E[$V��E[TGgH^dK~F[dK��E[�G�U~F^�E��Gz�E[�I.%}^�E�4}^tF^tF^tF^F^D}a�G^�E^PP��E�$I��E�d}��J[t}|�E[�Eؗ}�6I��E[�EP��EmX��E^�E_f��Z^�Z^�E�J^�G^�}~Fg�E~TU[TU�T^TN^�E^�}`�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��E��d^F^I`�E��Ga�}^�E~�}�gP|�E[�G�U��Kg�E´E�F^�E�F^�E�_}�W�Eg$P�E%~`�E[dJ�G~^�E fG��E��G�UN^�E�U�S^F�$F�F^�E��W�_|�W[DP|�~^F�~|�E[�E��E^tF^tF^tF^tF^�Eh�Vj�E�wF^F�]a�Ea�Ev�~a�EFaT_^�E��[^�E(EH^�Gs�E[�~��EaF`�EUH�K��E[�E��~^�E��G��E~g�E[TG-'^tF^tF^tF^tF^tF^�J��E�4ug�E[�E�F^�Ea�G�4d^�E^�n�F��E��Jg�Eg�Eg�E[DU�d`��E[�Vm�G^�E��O|�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E~�J VN^�E�W��E\4I�$I^4I��J^tF�4K[�N�d^�E��S��E[�h^�E~�n^�H����E�d|[�E�d|��Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[�I��^F�F��E[tG`�Eg�N��E�4KF`��^�E^^H�w^�K��_^�E��^�E��l^�El�Vep�E[tkc%���E[TG��Em�F[�E[TI��Eg�Eg�Eg�Eg�Eg�E[$N�$\��E[DU�d`��E[�En�q5�E�TN^�E�H^�H�tF^�Ea^�E;�Sw�S<�E�Fg�E[tLSn��Et�G^F�aT�^d�F^$I'�K�� ��^�E��z^tF^Fc����E[Ā��G^�E ��F^�J��J��E~tF^Fena�Eg�Eg�E[�E~�J�DS^�E�$�^�E�J��T^�E�[^�E�O^�EEH^�E^�ZH�^�E^�Fv�Eg�Eg�Eg�Eg�Eg�Eg�E[�l�E[d���E��TMuF^F>�S'F^�E^PUW^DG[TG��Ea$N�t� �Ea��aT_^Vg�E~TN^TJkvF^�J[TG��E~TU[TUA��^FHXa�E[dL�E[dR`�E[x��E[ā�Eg�Eg�Eg�E[$N��Eg�Eg�E[�EIF^�E�E\ԁ�E[�Y]�Ea�a�Pa�E[�^F^�E^�S:F^�E��U\�~^�E^P%P^�E�uLx�E�X^�E�F^�EcEf`�Ee�Gfgva�Et�E��U^�E^^H6K^�g�E[$N!�i"�Wa�[#F^�E^^��Eg�Eg�E[�Jx�G$X�&�Wat�F^�K(�E[4J�E[����E[��+F^�J�TN^tF^tF^tF^tF^tF^tF^tF^$I,F^�G[�p��E[�EPw�E[b-�E[�EI�Sz�ER�J��E��J��Eg�Eg�Eg�Eg�Eg�E[�\.��0�2�Ea�Z�F��Eg�Eg�Eg�E[�SuG�5�^�E~�cvD�^TH[�EPtTH^�E^�J��E~4W^�E5�Z`�E~TN^�E^�Fv�E6H^�E7xo`�E[�E5Q��E[�Gg�f^�E8��SF^tF^tF^tF^�E^�E��U4�U^�H:xF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�E���[^tF^tF^�E �H^�E��G�Ń^F�U^F��GaT_^F�F=�E�tI^TH��E[tp|4K^�E��d>�E[�EPwTWZ�E[�Ej�Ej�Eg$P�E%~B��`�E[�S�}�E[�p F^�EA(�^F�6�a�E��fg�Eg�N��E�4KDx���E[�d^tI^FEXFa�EFx�H�������EK�G^FL�Ua�E�DgM�E[duNX}^�E V`^Tv~DL�DL�F^F5��a�Eg�Eg�Eg�Eg�E��Ig�E~�E�uL^�E�wGP�E��G�UN^F��a�E[$�S�J^$I�$N�tF^�ETX�V�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E[��W�E~�J VN^�V���^�EY�Ea�E[�EP`�E[�EZF^�E���k��^�E�eG��E[�EP`�E[�E��E^�E(�E[�R)F^�J��E[tK��J��E��E&'qgtF'�E�TN^F\�l]Fa�Ea�N�F^�E^�E|4X^�g�E[�E^�[^tF^F�F��E~�E_�yv�E[�p���Eg�Eg�E[4l��E[�G�uGb�E[�H��E^�E1�M`4�^�E^�}�F^�E^�`fG^DG[W`�E[�G��K^�E^P%P^�H�tF^�H�tF^F�Fd�E[�n|�E[dX��G��EaĄ�F^�E^^H6K^�E&FvF^�E$uj�F^�Eeh��F^tk�DS��E[�E��nio^�H�tF^�G��`��E[�E�d��E[t�h�E[����E[�E%�Q��X^�E�Fm�Fm^Q��EIUH^�Ejx|���EatK�F��E[�MtF^�E(5S`�E[�G F �E[4Fl�Nm�E[�o�U^�E^DG�F^�E^�T�E[tLSn��E[�r+�U^�E^�T8�w^�E1%S�N^�E�4_Ke[x�E�^�E~�}�gp|�E��TMuF^�E}�G�E[�G�Fh�fh^�E_�Lq�E^TH�dH^�Er8�^�E�znN^�|��E�F^�EH�G^D��T�I�E��G�UN^�G��E[�Ro�E[�e`Fx�El�Vne�g�Eo�E[�Fw�E[dJ�Eg�E�TH�E~�E�F^TOg�E[dJS�Ei�Ea$NK��y��a�E[��|F^�E^ԇkJ^F�F��Eg�N��E�4KF`~����E[TI`�E[4l��Ea�[�pa�E~dvf�Eg�Eg�Eg�E[tf|�Et�G^�E^�`F^�E^�`�E[�^F^�K��E�tF^�E��T^�E%h��Eg�Eg�Eg�Eg�E�dJ�H�`�E�4H��EaT���a�E[�EhF^�EEH^�E�uw�E�x�a�E[�JvuWgU]x�ExD���Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��Eu�J^D\�tF^�E^$QuF^F^dz�Fx�H��E��Jg�Eg�Eg�E[��v�E[�E��J^�J�F^PE�a�E[��^F^�E����E^DMaTMa�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Et�E�Ȉ�G^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^tF^�J��E[tK��JOgF=�E[TGtF^DGuF^�E��|�Et�^�J��EfuF^�E^�S^�E;uG�5q^D\[�Ga���J^�E^�T`�E[Y�5YX�^tF�4K��J[�W�8�^�G��E[D��EaT��Fa�E[�Vie�^�K��E^DMa�H��E[�y넉^��^I�FaOa�E_F��H`5Ig�E[�J~$^<�E[��g�E[TI`�Ea4F�ȉ�F^$e�TN^�E��O��O��i^�E�F^TH�dH^�E^�K`�E[䉊�E[�x��X8�E[c2�M��E�4H��E[�EI�H`�Eg�E[�S�^�J��J��E��J��E��J[$���E[�E��E[TI`�Eg�E[Ds5�S?�E��E��F^R!R!F^F�FbDX^$I�T��F^DGut�^tF^tF^DG�exvi^F�DH��E[�b.�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�Eg�E��E��E[�S`�QfG�L��E[�GX^tF^tF^tF^�E�$N��E�4I��W~�W^�E��N��E[�f`�EatK��Ja�t^tF^tF^tF^tF^tF^tF^tF^�ES�r^�E�$X�dH^�ETuIN^�K[����J^�E�V}^F�]a�E��E[X^�E[tO��O^�E�4U^�G[�P^�J[tK��E[�W�vWx�E��fg�E[�E�d��E~�E_UV�Eg�Eg�Eg�Eg�E[�N��G^�Eu����^�J��E�H7gq^�H��E��E-ga��Er6g-ga��Eg�Eg�Eg�Ea��`F^�H�tF^�H�xF^�E�U^�E^H^tF^tF^tF^tF^tF^tF^tF^�J�TN^DGu�G��Eg�E[4J��E��E��K`�E��g�EF~�Eg�Eg�Eg�E[�E^�J��J��E��Eg�EaS2Fa�E[�^�Qg�E[��E��Ig�Eg�Eg�E[dJ�4Ig�E[$N!�i"�E[�I�Ȉ��S^�E�S|4���E�4Vd�EcEV`�E[dJ�8I^�EUW`�E[�S8uG8�S^�EaDP��Ea�s��S�F^Fr8���Ead^�|Dk�F^�F�F�F^�E$m^�E��E`�E[�`F^�J��E[�G���~F^�E[�J~�_`�E[�E~����S^�G[�z^�E^^��EaTb�F|�E[�p F^�H`�Ea�E��h�F^F�F|�E~4W^tF^�E1%S�N^TJkvF^�Eu�K`�E�苮�a�E�Fg�E�TN^Fx�H��a�WWVN^TN^tF^tL[�L`�E[�G��EĵE`�EWVN^F�~��E[�G¸X�Eg�Eg�Eg�Eg�Ea�Ia�G^tF^tF^tF^tF^tF^tF^�H��E[�s��E[4�|�E��Jg�Eg�Eg�Eg�Eg�Eg�Ea�EPw�wa�E[�JvuW��Eg�Eg�Eg�E[T�ƨH��E[�LLj�ɈW[�X`�E�TL^F����Ȍa�E[�s��E��E^PEG��E[Ԍ|�E�TN^�ϸE��G�F^�E(ES`�E[�^F^tF^tF^�E(EH^���g�E��J��E[$���N^�ETuIfG^$Lg�E��XaTb�F�xb^�E^PuGu�U^tF^�E^DG��Eac�NJUa�E�tM*�E[�y�TO^�E՘[��Eg�Eg�Eg�Eg�Eg�Ea�J�FטM^�Z��Z^�EGU[�J���^tF^tF^�H�xF^�E(�E[TG~�E٨��HH^FYxva�E[č��^�EutG`�E��TMuF^�E��a4K��E[�V|$�^F��X�5�^�E(�R�E[FxpaFw�WaF��E[D���E~�Ea$I�_~d�^�H�xF^�E�4U[�Ev�F^�E;FuGÅ���E[z�p��b^�E5ES^�Ea�W�_a�Gx�J[���E�$I��E[��8K^�EoF^�E�FN�a�tF^�E�Ŏ�Վ^�E^�n��K���^�E��O��O��i^tF%~[$P�F^F��E`F^�E�`�E[�E����E[�g`�^F<�L?�X?�La�E[�J~4���EaDm��H�F^F�x�`F^�E^��^�E�N��E[���F^�E�����E\ԁ[�E�^Ha���HH�����EƦH��Eg�E[$�|�E��E٥]����E[���[^�E^h^h�dq�Et�E�wx^�E(F^�E��e`�kqH^��E[$NKuXe'�K5�^�E{�W��E^�E^P�J^dV[dV`�E[�EvF^�E��EatK�F��E[�E�t|�EuI^tF^tF^tF^�E���Eo�Eg�EazuX�a�Ead�~�[`���^�E~�`c�J �a^Q��E�5K �E[�� F^Ԑ�E �^F���a�E�a�Ea$��`a�E[4\�DG��E�G �E[�Mt�M^�E~D��u��E[T� F^�Ea�G�5d�EatK�Fo�Ea�M��da�E[$NKuXe'�K5�^Ԑ�E[�y�u^�E~i)i^�E�dWw�H�NxUH[Tf��H^�E��n|�E �^�E���X^F�G��G��G��E[�y�^4��F%6�aD�'�Ea4U}F^F�G�``� FqXO�E[�JvuW�z�W[���� �Ea�l!F^�Ea�G�(^��Ea�E"�#F^�0I[Tb1�F����%�E�t][F~�G�t]ad�^F_�SŤk'F^��(����J^Ԑg�z^FhdG^�E~�G�i���^F+ɒbF^�EAؒ^F����a�E[DPX�S��Ea$N�F^�E��^�Ee&I1)I^F�da�azF^F29� I�^�E��JuK��EaT�|F^�E�dWwuVՅW[�G6)i^t�IF7��a�Ea��:��<F^�K=�S^�E^�T>�Ea���dH�$Ia�Eaj|F^�E�u^`�Ea�Ifa��gzF^�E^T`�E�F��Ja�Ea�l@F^�0I[T`F� v`Byo^FCI�a�E[T��E[�EPd�Ead|?F^��󔒪�J^F����F^�E��J^�FFy�[d�G�E[4l��EaF��E[�G~i�&i��Ea4mAF^�E��G^Ԅ��]Hل^Fʔ�^F�N�F^�E^��K9Q^TN^�Er�G~�E[�P5N��i^Ĕ[��L�U�v^�E�$�^tF^�E�ה^Ԑ�E[TG�Ea䔹F^F��ma�Ea�ha�Ea�S`F^F�fea�Ea�Ev��a�E7I[TbW`$ �^�EQIZ��Em䊾�E��^�E;�w]$�S�EaD��F^���GO��J^�Ei�iU�E�8O�����E[�GV9KW��^�EY F^�HZ�EZ F[�Ea�l\F^�E]ie�XV�^�E~��`�E���GO��J^�E~i�&i��E��Ea�``�a�E[�l�Ea$�\F^O]�E^4j��Qg�U^�E^4�XE�^�E5X�^d�g��^$J �XaTb��pa�p �eiF^Ԑ�Ea$]�F^�E^�G'�S^�H�DX��E[�EhT`^�G��Ea�Gj�G�����Ea�ElFl�E[����E��E�Ԗ^�En��^�E^4lp�E~$���^F��IrF^Ԑ�E��E��J�6�^�EaTJt)cu�Ead�wF^�E�F^^4p���i�^tF%~[$P�wy`�E�����_��[^�0I[T`yy`�to^�E~�``�� �E[DP�eG^�E�W�{�E[Tf|�EaFi�E�8O�����Ea�NwFa�E~TN^F��wy�w{F^ԗw�E[�J0�G�^�E~�G�i�6i^�E�S|4���Ea�Ev��a�E[�\���I�^�E^Tj��E�4O��E[tK�$���E[�Iʸ���Ea�n�$dNF^�Ea4IweGa�Ea�U%o^Ԑ�E[$N!H���W�8O�����E[$N\�U��E��X[Tb�t���E�F��U��E�8�~��[��]�EadR`F^�E��J��E[DP$�E�8O�����E[�- y^�Ea�n�$d Oa�E �^F�TFa�Eat��F^�E��_��E�TN^Ԑ�E[TG|d]��Ea�Fi�E[TG5�E[TG|��^F^dw`F^�E~����E[z~F^F�Oa�E�dH^F^�S^�G�tL^�E^^G�dI�Ea�L���F^Fʔ�^�E���g�E[�j`�Ea�I�F^�E�Fm�Ƙ��Ea�[#F^�E^DL��k��E^F�~|�Ea�E�F��E[tK��^�E~�G�i�6i^�E�^tF^F��M�F^F��N~F^F�G��U�F^�Ea�G�5�a�E[�G~i�&i��E �^Ԑ�E[FvuWgF^F]�g|�E��  "$'),02469;>ACEGIKNPSVZ]`bejnqtvx{~����������������������������������������� !,158<@EHLORUX[^aeqsvz}����������������������������������  "&*-058;>BFNTY\_bgjpsw{~���������������������������������  !%),049<?GMQUZ^bfkosvy|������������������������������������ #&*-15:=CHKNQUZ^dknsw{�������������������������������� #&,15=AFIMQUY_bfjpux|������������������������������� $).148;?DGKPTY]`chlquy}�������������������������������  #'*37;>CHNRVZ^cgknt{����������������������������   #'+04:?CGLOSW[_chnrw|����������������������������      " ' + 0 6 : > B F J N R V [ ` e i m r v {  � � � � � � � � � � � � � � � � � � � � � � � � � � � �       $ ( , 0 5 : = A E I M Q U Z _ c g l p t y } � � � � � � � � � � � � � � � � � � � � � � � � � � � � �       # ( - 0 6 : ? E I M Q U Y ^ c j p t y  � � � � � � � � � � � � � � � � � � � � � � � � � � � � � �      ! & - 0 4 8 ? C H L S W [ _ d h l p u y } � � � � � � � � � � � � � � � � � � � � � � � � � � � �       & * . 5 9 = B G L Q Y _ d k p t y } � � � � � � � � � � � � � � � � � � � � � � � � � � � � �   $*.27<@DIMRVZ^bglptx~�������������������������� $)-159>BFKPW[_cglptx���������������������������  $(,37>HMSW[_dinrw{����������������������������� #,04:>BFJOSW]bfjnrv{���������������������������  %*.26<AFKOSW_cgjmsv|�����������������������"(.7;>DIORV`elqw{��������������������&-16;?FJPY]dhosy~������������������������  &,05>AHMSY^gjqu{������������������� #,17=DKNSY_ejpuy~������������������������ $),15<BHLS[aflqtw|������������������������ !).48=DFIOU[]`fiptx~����������������������� "'*18=CHLT[ejou{������������������������� "(37?FLSX]bekrwy�����������������������$*,07=AHMU]cgjpw}����������������������� %+.25:=@FOU[bjqux}������������������������  #(=@DJNSVY]bhqt������������������������� $*/3=BGMNU[^bgpvz������������������������ ").4;EKORU\cjquw|�����������������������    & 0 6 ; C J M P V Z _ f n v } � � � � � � � � � � � � � � � � � � � � � � � ! !!!! !'!1!5!;!A!G!M!T!Z!`!h!o!p!v!}!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!�!""" """"#"-"2":"A"F"O"S"X"]"b"f"n"r"v"{""�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"�"## #####%#)#-#1#6#:#>#F#J#N#P#S#V#_#a#k#q#w#}#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#�#$$ $$$$#$($-$2$;$E$I$M$V$[$a$f$m$u$y$$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$�$%% %%%% %$%)%0%7%;%A%D%N%V%\%q%u%{%%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%�%& &&&&&'&1&5&;&C&O&X&_&a&f&l&p&v&{&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&�&' ' ''''$'('0'7'='E'P'Z'_'f'n's'z'~'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'�'(((((( ()(-(5(<(?(E(K(P(S(W(_(j(s(z(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�(�() ))))()3)8);)>)E)K)W)\)_)d)l)p)w)})�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)�)*****%***/*3*9*@*F*N*R*T*Z*\*b*j*s*v*|*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*�*++ ++++!+'+.+4+6+;+?+C+J+Q+W+[+c+h+n+s+z+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+�+,, , ,,,,),.,1,5,9,@,G,J,N,V,\,c,j,s,z,,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,�,- ----%-.-2-4-=-B-K-N-S-V-\-]-b-g-n-p-u-x-~-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-�-.....!.&.*.2.7.>.G.N.Q.U.Y._.g.n.r.x.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.�.// /////%/+/5/8/;/B/H/M/S/W/a/g/n/u/|//�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/�/00000 0+03080reifipathfindlevenshteinperformdiffcallgeographioncryogenvcfcjapplimixinkonservnewsfeprintprettiiamawpitchinstrumentsimulchunkerpartiwalkmembermacremovhaproxitoolboxparkourtestfactclararvmtentaclsectionfailjurpubsubdatasplashrubilibsshorderknowitwrappersumbighackerrankexplorbresenhamgoyabzzzpadmatrixgpurtmsdslabmailgunsimplifimnistrandometpsldninetprojdataframfxcqrbejewelquartzperfjungerformatsidecaremackoeeoadicigarbufschoolgradechazelexecutorfuturaworkprimarivictoropmofficseedmakecpuclblastneanderthuncomplrecipsatellitcfbtruuvifailurfirmimplementclasspathmavencookicppasslitedocxbakyeonoobjectcomparrnaseqstopsexplengthupdatinterfacmrazikhipchatlocatipforecastchannelssunpackconformjocjconnassertseqrotatpfproblemmerkljlinkwsodiumurisoluthexvideotestcheckstatelessoppendnomistechprimitasciinemaidbookkeepstatwishlistdcolumnmultiplrcurcutorturselftestzkrepmgrrealrateyorckdiversifpathstuartsierradescriptstatistikrpicalculwinnerpianosynthlambdauilexicoverlaireconnectdropoutstepdefcucumblangnostmockipccreatormonitorbrewsolvsatlogicretroboardproductenvironopervsomonhxgmechotransmitshouterdeployboilerpipfntestsupportsinusoidcarboncyanitspootnikstubtuftdatomishhalakcheckinpermissgitiqucatacumbaevolutbeckonvisitorscoreinvoicautomapersistlanglibgdxairheadpangrampsqlvdomencodmpknotatformlograndomcmmascrabblbockoworldgarbagjobterminpatavishaperumexponquotwebjarsicpconfreplicompanitimetrackhazelcastmeshcthuntenorpalindromexpressmailpplatformenduroashibaweatherhecubarowleindroidintercomdiscovpzeditorqucfpbfigwheeldeflogtriangldeprectickfeverretroaggregtensorflowdashadocumentinversguangyincashloclusterjoinnotifithemedailiconvertrawpostgresqlcontinuoasyncarbrequestparbenchpopulcmdbrdbmciderphotondesignjoinerspoonverbosdatabasauthlistviewproxibggsnakeapplenewsapiappendlogbackxjcgeoflarepackagejsonbackgroundelementsalamandbluebifrostuswitchwirejamfuturwalletbenchmarkmagiciantabswitchmakefilspearmacharmarchmirthsyncnaivkairosdbpatternoxcartgatewaiclimbergravatarinteracttestablframeworkinterceptorchallengfluxbayassetbeehivfootervarbasicopmetadataugenmachineriscsecurbareboncoopchickencennastrmflatlandmgrimmsudokuclubrandombytvalstaticsprafftinibuilderkickregardcrawlerzgcomprehensmultihashdummisumptucampfircontroldatemorsvpunboundnreplrefactorpatientmobillunchlottokitchensinkworkflowexecuttriggercloudifileaplexerhypirionaerobiomantrarreductsmallexcomparisonfrequenctermmunchpredicschedullumocipredictlifepetultunnitencljsearchsuitfsmfuncombchartjugsclojurexpecthydrofoilextenspedalgigriglandcompatdroidtrcatalogcassafortclojurewerkzregistricenterlazidropwizarddiplomatfrontfunneltoucanhamlrepositorispotifigrimhttpgctestgaugvarianthyjinkinjectcontriblamboncomenightwebandroidgeometriblobvaultmvxcvinavrmfuhostinnkeeppictbartlebismtpmachindrumcommonlogformatlayoutpicardheadlessforeclojuretlswartztakodesktopdestroytotemtesqquickengulfpomeulercontestretentcawalabgwriteryamllibxtimercountdownliterscanparsberricavmmemxsltscavengmenuboardkanbanresultsummitpostprocessklangmeistproactpotdirectemitreactionfrerethbundlscrollinlintransformopenhourwhitelabelfaceboardwgseqretrirenamuuidpostherhttpkitbasecodecurlwombatgamepadinputwonderdomplayasophitraingatlpericlrumahsewatrapperkeeptxboxgraphqlwatchercontextfactideainterndooreititexportreportbobassignmailitblaaghinfinispanhrclassloadnilbioicstepmergidentifipostpooltrustasidquizmoanmodularalephauricllinkinferconstreducdetailcmnbalancplayersubmitbmihwpeoplavalonlessonlucaarmstrongfieldguisimrunnfmyadndrillpinpointemulfizzbuzzemailuploadclojuresquimagsillireadcellarithmetjesttokyocleanlocalottoclownfishlcmapinteroparchetypjinjastreamparswebdevjartoolbarmathomdelaisortocclostachtelegencounterkatabaustellenintrojsoncljparsrepoinbuiltbodibootstrapstarfulcrosecretboxmagicnoncqueuenotebooklabmessengloggerleftpadrunbldnclojushscenarioroutercomposanalysimikronmanualattendsleuthleandataimportholstoninterpretreplmtablcoffejscomponscratchlksettutorileaderboardmeritmadepipelinvipattachchapterextqcastwebsocketbooleanriakglobaltrakpreloadtraceactivbindreformpersonrocksdbfeedbackrobinsonairbrakxymonhomeluminupmdrdfgrafterontologigenerexternjavascripturlforcheckoutkeenioriemannpushgraphicwhatishistoribideclojournsaapadtbmdrstoremisessionanselactioninstaskiptttcljloginchooserstartconnectbookdocppenginjdbcxastormbacktypgooglbupepaopendapscraperdatatypextractrefsambloglambdaclojuredocwildflihatnikwritegrimoirleavenevermindcarambardefaulttagdeclbundlerdependchatomtabmoneiwebapitxlogxxchcjiawalkthroughproduccljskeldefinitdevtoolchromestringcompojurluacljtopicmathcalckeawarreqtextwidgetdashboardinvitnamesubbazaaryetibotfpermanmongoteslagorillalabvadawatchbakeripalletoprootgenartliblexememojistorikitrepletmideploipublicnightmodetagyadaformjacketstraightmiscpathomwsscodepcfpivotbrokerrabbitmqsemverdirpioptslackpredcassandrauuuurrrrlllldotinspectorregionhbasekwhoissrssperunplaimastercardmtgmsgpackmessageformattkafkaraddescribprocessorsquelchfhofherrpotokprngsodivendorstaircassunburstvreplcronfriboostupzalandoamalloimoderuleobbjacqufreresongovertunsandboxhackernumberrpresponsrestgraphcmrfindhistorilifecyclchatappcadenceffectafterglowexceptwanlentokennlpcljxcatstorageventuninjuddimportcsstempparammultipartliveleipzigkeibuddisymlinkverifipactprovidwebappmigratidftfluhnlibrarievaltryclojurwebsitvimclojurfilesinglpolymorphruntimherdergroovicodewarrunnerjvmpeerlaunchlauncherartifactswankontrailcasecornertransitchatimadzerkconcurrapiohydejgrouplazytestdecktouchfoodemocruxjuxtbytestatementlumenakvopprintxmldomdatascriptsidebaroptimcortexfullschemaicecaplinelayerworkspacovertoninstantetymonlinmrnativclopackadventnomsamplstylebenchaccumulflambomockitotestutilinitgenerichashcryptocaesiumlanguagcontentsalavaversionpuppetdbfredjavapolygonmetaconstisolbehaviorhttpeggspamconexpstuffgtfvecirclecicompilminijavanekobotkoshapromisfaultjcfblgolnetdakaitscreenreddioadminmanagmembershippresentspectacliconsharefriendteachreagentdictionlibrefermarkdownimplfinderatomcompletcommandstatuoversmiddlewarcachchestnutprimenthdrivermediaaeroneventlogkixiclassifipecljcmacroworkflositemutablanagrammovecruncherreleaspallettaskinfoservisnccrnotifoobjltentitidomainpuppettutomdetrituimmutnoirintegrpotooprotocolstatelambdacdlistsnippetcomponbeautificreatkoantodoframenumelexploudgamearachnidavalidadaptjettilogrepmaxcglossapfrtvinculumprodexposmetafnxcascadsequencreplicastoreblockmapbarbraidpostaldrainsearchhaystackzetawarkirilayoutfixturtrackertimeaudiosobscodefastqfiltersplithtmlparserincisbufferbytebufsourcdragonmatrossdnatranscriptrnaetcdmutattixiclientravendbexperinodeselmerecnchesslistenapplethelperquildevsetupenvcoloremissmidjprotoextendthemimadouckeeperhyphendebuggitdiscussdevcardscrapereadercomicchangeloggithubsshhubuildvizcertclojarjunitradicalzephyrwortfunctionphasetnseqsqlitefivethreeonernwebrobbspiramemoriacodequeridesdemonaanalyzfavoritecregisttheatraliaprofilmysqlpluginonyxhandlerbroterritoristeambltoolbackuplabelmetabasapisidequartindexktraserialrecordsimplhydrantcontainiumelasticsearchpageplannereventcommonpileupcljambeebstersolverdaikarmanautsystemwordcountclstreamdeletcollectfcmbogoworkerservicrookavisoioruncirclmetricxorpnetworkdataneutronrolechaintoolaviarimaintemplatleinaspirbuildbootbackenddifftestleiningenclojurescripttalkislamessagerrortypestructurdarknetpotentialdifferorguktodomvcconfigurdoctopureplnightcodwhitmanbasicappresourcmoduldecodscriptswaggerspecringexamplmodelswansonmusickolmogorovuserdevconfigagentmetlogdeptooldockerfilclojurdockerutilreableditmarkikisitemapvieweruiviewuxboxfrontendalertmedusadslhelperdsbdpplanckrobotexercisperiodshalemodernroutsubmanprojectgemclipuppetservpuppetlabunittestcoremerkkicljserveredgsrcbdbddcefebcbfdeabaeccbaedcbadddcefadccadafdafdaafabcdbfcbecfdccbabeffacdcabdbbcccadacbadfffbbdcafffaeececfdfcbfcefdbfdeabbadbdcebfbebbbefdbaafadddeabcfdeafaddfadeccaebbbfabdbacddcfdecdabfcbbeccaafadfaeeaeeacaeecfdadbfaadbbdeffacbddbaecacedcadfdaebbaaddcffcbeaddfbbaafcfefbaebabcdababcceacfdcaafaefffcabdceebaedfaddbabbfbbdcccaacfcbdeccdceebcaadecbcabfafdfcdabcdfdfeadeabbdeebbbbcdfeabaeabceccafcfadafbfffbabbfaeceeeccbfeacaaeaafbfcccddebaaaaacaaeadacdcdeffccaccbceaccabdbebedadcfadadecebafbddeeddeefacfbebcbcebcfddddfcccdfedffafeedbfdfddeeaadfbccacbaacdadebacbddabfeceecdebaaaccaeaccbbbfefbeffcfdceedbefbbdaffaaeabcceaedfcdcfcfbcebbbafdedfbbbfdfbbbadfacbdaffeafebbcbefefeeffafadbccabebbbbbdcefbeeeaedebcfaeacafacaafeddbabcaefcfdedcafdccaeedaeebadfebfbcaabfcdcadfcabbcccfaebfdafdacdafecdabfebfacacbaccdabaedcebcfeadbeebbfadbbfdfbdececadfccfbcefbeaebdbaaccddbdecfdbcdaabbadfaffbaebababeafddedcccafbfcddcecfcbbcbbfabeaaccdfdfceeafbdccdfafcbeefebfaabeaecdbcbebffafdaefbebdaffdeefbeecabebaedbbfdbfdcdbdccdaeeafcbfdcaefaddebfbabbbdcebfcdfadbdddaefbabeeaaddcbcfcfaefbebcdbedbbcbdffeaeafebaebfbaaccabbcfccadacfcbcacedbcbcaacdacffbaeffffbcadafbbfeccebafebccabfaceacbfaaecaaeebfdfeebbafcbadecafbccfcabbfecdcdbebbdcfbabdcddcccaeadbeadaaacfebbccabcdfccbbcaeaedfddaadcadbbcbebecbfdfabbdccdfdccdddebfbbffbfefaabbbccabafabcbdbbbbafeeeccafdabdfbfddeacdccccddbfdabebdbffadddbabfddbceacffdbbfbbfefdfafccfecaacedbcbabbebadcadacbfafbdbccbaafecdabcbaaecbfcedbaffcecbfffebafafecfdadedbbfcaaadaccbafbcedbbcceccbfbdcfebddceecaabddefaceabbbdcebbbedfbcaeedaeeaaadbfacecbbecddebccedcabbabdaacfabfedcbcbdcabdeadddcdccfbdaceaadebdfacbdbaddccadecfbceaffdcffedfcfcdcfcccbbceedccdefcacaefffeadfcafcfbfaaafaeaffcdbeadffcafecceaaeafdfabeafbacaffaacadbcdfaaccbabacbababfcecbfcdafbaecbfbefdbfadbceafabfcfdbcbafbcdccbbdbdeeafdadccabfbffeefefefebcbdecdfdcebdfdcdddcbfafdccefbfbdddbacfedabaaebfddecdaceefdcfefdabfbadfefbcfcfacbabbbbeccdabaaecfcbdbecbbecafbafdffdfbdcafcdccbdcfabbbafeefbcbdcffefbbbaacdedabcbfbbeadacdacbbbdfecbacecffdcbbadedfbdbfeacdacabafbcbbcbecdbeadbafdfdedabddfcfeeeaffdeeaaecebadbebafaadfdadcdbdecbcdfccfbfeacfffbcefafadebfedaaeeeafacfadfdaabdeccdbeefcbdfefdfcfabfcedbdbccfbbafdbdcfaaddccfdaeeacaeeaaebecbdedcbebbcbaabacbbdefcdcdbebaadefcbadfdfeebadfabcbdabbccacbfcceabdfafdfdeefdbececacddaacedcbfcfbbeffdfadefbcbbebdeeebffdecbebbaffcfeeeefaaddfcadacfcfcbaeefdedadaceffdcbbcbcfcfcfbcdafeddcafbefdfeadfccdddcecdabbbdfeebadafdebceebfdedcafeacaeeeceafacdcfcfecccfcfefeaddcceeadbefbbbedcbdacbafbbcaddbcafbecaeabcdfbeafdebfecacafbccffaecedcafacdbbefcebecefaffaebfdaaadbabefdcfdddabfbfbcbbcefbdfcefecfcebeabdddfafadafaacfcadffacdfcddaabaefbfbfedeccccfeebfcbbebeefceebeefafafeebfcdfcadabbdbffaacdcbbbedceddaaefbbdaefbfbbfbbddddebdbcdefbecbcadaecfcfceefafaebdeceffebefbfbbbafebfadfbabaafddadffeaccfffaaecdfabfcccbcaabdbeaffedbceadfbbdcaaafdbfcfdeccfefdcddcdeaaccdcddcaedfbcedbefbeeadbdbffbcafcbaffccffecfcdfdefbffeacdaccbdfffaadeacadfafcdfeabdccdceaaecdddfcdbcdbeeafbeeafaffaddbecdddbdacbddbaafecbacaceaabcadfbddbfbacfdcdabaacdbcdefafaddaeebeeefffedbacbeecfdbdabebddedeaacbbbbcaebddffdefeeabbbafbbafcbdabcbeababcaedaadacbfcbccdddbcdacfacaacbceedbeecabbecebdcddcabfdfdcbdccfdadefdeecdeefefbcdacaedcdfcdfeaebddeacafbdcaaebbacaafcbaedbacadccbdeaeedecdebbeecceeeffbbecafabfafeefebebcafcdadeecfeecacaddfbfcdffbbcabfabbbbfcabefadcafcfffbcadafcdcedeaadbeeacfabbfdbfcbbcefadbbdbdfafddcfebabdabcfaaabfacbffeaecdadbafcdabbffedbbfddeaccfeccbedbcdcbfdcdacadadbcfecddcefcdaafafdcccbbdfebcabfcfbcabbecaccdbfdeeffafdcdeefcbffcdbcebefdcbadeffeebbaeaebceaaaaddfbfeeeafdbdbadebabcbbedcaeaddafcfbfdcebcdcbededfeedddcfdcbfedccbeffcabffcfccddbdbaecadebacdcccaeabfedbbcecebadddbddecbffccedbedbdabfcbfbaabbffaecbbfaadfffdcacabfbaaddaddeaffacecbaedbcfdebccffdcbfcebdfeeadcedfdbecddbcfaebefcbdacafdfffffccaacbdeafcaaceedeefbbacfcffabcaebffbffbeffecffcaefdffddbfcfbeeffbeadeccbbfeedffcfafbbcdbceefcbddcdeeabdcaccafbfebddabddcaaebbddfdccacdddecfaffcccacbafcaffdedadebafbfffdbeedeabffeecdcdcdadddbaafbcbbbecacfdbcdbbedafdbbddfaeebcfcefcbfeeafaadbcccfefcfbefcfcfbbcfebbdbaedadebecfbdaaeeafddfffeeaaddfadaebccdbcbdecbdfdebdbdefefbadbaaadfacfbacebafafbddfcfcdbafedddadfdeadbfdfdfcfbcbeeedadcceccfdadccaaaeecaeaedfabccbbbbbbcaeafffedaedfbaeacebeffbdffdbfebfbaaabeebadbafbbccccabbedccbccadbbdadfafaaebfbbcdaebfacecbeaefffbedbaabcccafdebbfdecababcdbfaeaefebabafddbeaecfcbcffecdecfaadbdfcfdfdedcadaaffaadbadaedecfbbfefcbfbbcbdefbaffbffabaeecebcfbcccdfedaaadbaeefabbabbbdebdcfcdcdcffcafceddebdccdfeadfccadecfcbfbdcaafdfebcfefdbccbcaddedafafacfebccfffdbebcedafddfeecdaccedfceccefffdcdbfeebedbfaecfbdabaacaccabacfbceedbbffaedcbfadaafbeaaffeeddcafcaebfcacbcbbbaeadcfdeeaeedeccdfffceafdacfbfabfacdddcbebdefaedbcfebbdfdabdbfccfacadcbeefbadbddbcebeacfccdbddedcfddbcddfdaeeccebafc�)@DD@DA@@DAEDAA@@@@@@@@AAADDADA�AD@AD�@@@DD@D@�@DEDDPAA@@@AD@A@P@DD@ADAPPB@@@@AAA@@@@AA@@A@��@@DDTD@A@@AaAA@B@A@A@@@@D@DA@@ADA@@@@@@@@A@@@@�AKPDDA�@D@D@@AAA@EA@@@APAD@DA@AD@@@@@@@@@@E@D@@@DD@AD@@@D@@@AA@@PD@AA@ADA@@EAE@@@@@@�D@@@ATA@@@DAAD@@A@D@@A@@@A@AA@@D@@@A@@�A@PAD A@AAPP�D@@@DA@A@@D@AB@D@@A@AA�@TAAD@A@A@DA@AAD@@@ADDPD@A!AP@A@AD@AAA� ADA@DAEDAAAPAD@DD@@E@DPAA@@A@@ADP@D@@�@@@@A@D@@DPDPD@QADAADEA@DADDABAA@DAAQ @A@PD@@A@DD�AQDAD@D@A@A@P@DA@DD@DA@@@@@TD@DPD@AD@@@@@@@@@D@D@@@@@@@D@AA@ED@APAA@AAD@@A@AAD@@@@AADDAAA@AD@@DD@DAA@@@DAD@@@@@@@DAA@A!A@PTAD@@@@DA@DAPAD@DA@@@�@A@D@P@@@@A@@@A@@AD@@@@@@�������� � � �b)�c)�b)�c)�b)�b)�b)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�b)�b9�b9�b9�b)�b9�b)�b9�b)�b9�b)�b9�b9�b9�b9�b)�b)�c)�c)�c)�c)�c)�b)�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�b)�c)�b)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b)�b9�b)�b9�b)�c)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�b)�c)�b)�b9�b)�c)�b)�c)�b)�c)�b)�c)�b)�b9�b9�b)�b)�c)�b)�b)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b)�b)�c)�b)�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�b)�c)�c)�c)�b)�b)�b)�c)�b)�c)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b9�b)�b)�b)�c)�b)�c)�b)�b)�b9�b)�b)�c)�b9�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�c)�b)�b9�b)�b)�c)�b)�c)�c)�c)�b)�b9�b)�c)�b)�b)�c)�b)�b9�b)�c)�b)�b9�b)�b9�b)�b9�b)�b)�c)�b9�b)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�c)�c)�c)�b9�b)�b9�b)�b)�c)�b)�b)�c)�b)�c)�b)�c)�b)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�c)�b)�b)�c)�b)�b)�c)�b)�c)�b)�b9�b9�b9�b)�b9�b)�b)�b)�c)�b)�c)�b)�b)�c)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b9�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�b)�c)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�c)�b)�c)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�b9�b9�b9�b9�b9�b9�b)�b)�b9�b)�c)�b)�b)�c)�b)�c)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b)�b)�c)�b)�c)�b)�c)�c)�c)�c)�c)�b9�b)�b9�b)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b9�b)�b)�b)�b9�b9�b9�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�c)�b)�b)�b9�b)�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b)�c)�c)�b)�c)�b)�c)�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b)�c)�b)�c)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b)�c)�b)�b9�b)�b9�b)�b)�c)�b)�b)�b)�b9�b)�b)�b9�b9�b9�b9�b9�b9�b)�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�b9�b)�c)�b)�c)�c)�b)�b9�b)�b)�c)�b)�b9�b)�b)�c)�b)�b9�b)�b)�c)�c)�c)�c)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�c)�b9�b)�b9�b)�c)�b9�b)�b)�b9�b)�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b)�b9�b)�b)�b)�b)�c)�b)�c)�b)�b9�b)�b)�b)�c)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�b9�b9�b9�b9�b)�b)�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�c)�b)�c)�b)�b9�b9�b9�b9�b)�b9�b)�b)�b)�b)�b9�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b9�b)�b)�c)�b)�b)�c)�c)�b)�b)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�c)�b)�b)�b)�c)�b)�b)�b9�b)�b)�b)�b9�b)�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b9�b)�b9�b)�b)�b9�b)�b9�b)�b)�b9�b)�b)�b)�b)�b)�c)�b)�b9�b9�b9�b9�b9�b)�b)�b9�b)�b)�b)�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b)�b)�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b9�b)�b)�c)�b)�c)�b)�b)�c)�c)�b)�b)�c)�b)�b)�c)�b)�b)�b)�c)�b)�c)�b)�b9�b9�b9�b9�b9�b9�b)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b9�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�b9�b9�b9�b9�b)�b9�b)�b9�b)�b9�b9�b)�b)�b)�b)�c)�b)�b9�b9�b)�b)�c)�b)�b)�b9�b9�b9�b9�b)�b9�b)�b9�b)�b9�b)�b)�b)�c)�b)�b)�c)��A�� !�@D!�*D!BDE�A��P!""@TT�*TUU���@B�����*!!B��� �(B@ DB �@BUU!B�� ����Q�*$�!%$�U��BQ�E��D@B���������B"!� !H�BA$!������*DUB� !!$! ��*!�*DBB ���!�*�  AA"B�!�U��� BPUA!"!�QUU��D!BE!!����D@A��� TUA�"A�P���!!�@ ��"�BU��� ���!! �P$�!����$@ � TUP�PU�����*!���TUU "DU ��@Q��B@���@@ D ��BUHBD"�"TA�*���B!��� !DD ���� HD"HQAI�@DD�*"A�B!""��� A!A�* $"DU!� ���� !!!!AUUUPD���!!!B��!������ $$(H  � �B!!�DA��@�� !AD �@B"� B������!$��B����A��B��@UUUUUUU% DHA@��B�P �D@D� ��P��(AD!����"�P@�@UADB!� � AA� UU�"��"H"*���!B�@� $R!�R!"!� U���* �� ��H@!B�����@T$B!B"D@�@�!�@��B!$R�B""B $AH  �@@@D ��@��� @� A"B�@@P$B��!A!(�@$! B�$!"�@@ ��@ $�� ����� "!�D"B@�������� �0�b)�b)�c)�b)�b)�b)�c)�b)�c)�c)�b)�b)�c)�b)�b)�c)�b)�b)�b)�c)�b)�b)�b9�b)�b)�b)�b9�b)�c)�b9�b)�b)�b)�c)�b)�b b)�b9�b)�b9�b)�b)�b)�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b)�b)�c)�c)�c)�b)�c)�b)�c)�b)�c)�b)�c)�c)�c)�c)�b)�b9�b9�b9�b9�b9�b)�b)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b)�b9�b)�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�b)�c)�b)�c)�b9�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b)�b9�b)�b)�c)�b9�b)�b9�b)�b9�b)�b9�b)�b)�c)�c)�b)�b9�b)�b)�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�b)�b9�b)�b)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b)�b9�b9�b9�b)�b)�b)�b9�b)�b9�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b9�b)�b)�c)�b)�b)�b9�b)�b9�b)�b)�b)�c)�b)�b9�b)�c)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b)�b9�b)�b)�c)�b)�b9�b)�b9�b9�b9�b)�b)�c)�b9�b)�b)�b9�b)�b)�c)�b9�b)�b)�c)�b)�c)�b)�c)�b)�b9�b)�c)�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b9�b9�b9�b)�c)�b)�c)�b)�b9�b)�b)�b9�b)�b9�b)�b9�b)�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b9�b)�b)�b9�b)�b)�b9�b)�b9�b)�b)�c)�c)�c)�b)�c)�b)�b)�b9�b)�b9�b)�b)�b9�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�c)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b)�b9�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b9�b)�b9�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b)�c)�c)�c)�c)�c)�c)�b)�b)�c)�b9�b)�b)�b9�b)�b9�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�b)�b9�b)�b9�b)�b9�b9�b9�b9�b9�b)�c)�b)�c)�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�c)�b)�b)�b)�c)�c)�c)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b9�b)�b)�b)�c)�b)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�b9�b9�b)�b9�b)�b9�b)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b)�b)�c)�b)�b9�b)�b9�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�b9�b)�b)�c)�b)�c)�b)�b9�b)�b)�b)�b)�c)�b)�b)�c)�c)�c)�c)�c)�c)�b)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�c)�b)�b)�c)�b9�b)�b9�b9�b)�b)�c)�b)�b9�b)�b)�c)�b)�b9�b)�b)�c)�b)�b9�b9�b9�b9�b9�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�b9�b)�c)�b)�c)�b9�b)�c)�b)�b)�c)�b)�b)�b)�c)�b)�b9�b)�b)�c)�b)�c)�b)�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b)�b)�c)�b)�b)�b)�b9�b)�b9�b)�b)�c)�b)�b)�b9�b)�b9�b)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�b)�c)�c)�c)�c)�b)�b)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b9�b)�b9�b)�b)�c)�c)�c)�c)�b)�c)�b)�b)�b)�b)�c)�b)�b9�b9�b9�b9�b9�b9�b9�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�c)�b)�b9�b)�b)�b9�b9�b)�b)�b)�b)�b9�b)�b)�c)�b)�b9�b)�b9�b)�b9�b)�b)�b)�b9�b)�b)�b)�c)�b)�b)�b)�c)�b)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b)�b9�b)�b)�c)�b)�b)�c)�b)�b9�b)�c)�b)�c)�b)�b)�c)�b)�c)�b)�b)�c)�b)�b)�b)�b)�b9�b)�b)�c)�c)�c)�c)�c)�b)�b)�c)�b)�b)�b)�b)�b)�c)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�b9�b)�b)�b)�b)�b)�c)�b)�b9�b)�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�c)�b)�b9�b)�b9�b)�b)�b9�b9�b)�b)�b9�b)�b)�b9�b)�b)�b)�b9�b)�b9�b)�b)�c)�c)�c)�c)�c)�c)�b9�b)�b)�b9�b)�b)�b9�b)�b)�c)�b)�c)�b)�b9�b)�b)�c)�b)�b)�c)�c)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b9�b9�b9�b9�b9�b9�b9�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b)�c)�b)�b)�c)�c)�c)�c)�b)���@� � PT�E "��P"���!"��"B� B@�� **T��� �@UU !RUUUU��!B@UB! "!A �����!� �@ADIED�(TB��B�*DA! ��@�"��@A"��!AUUUUUUUU� �A���P� �B@�TUUU�*!D���A@���� U"!!ADB�DB�� ��� !D��� �D��B@!����B����BE"�!�"���UUPD"�  UUU��� �@�� D��D�AD���B  �TUD��*QUU�AA@��D(A� UUDE� A �*(D�*�TUAUU�UUU��������@�@ ���@D! �BUU "B�@�*$!"A� � P�PUU!�PUU�""DDUA$"$��(��$T �""U� !�UTD� ��� A���DQU@P������� ���*�"IAA���!BU�BBUU�AB$��BT!���A� �AD AA�� "B ��!A!A@BDQE��UA!BBUU� HU�!UU��������"$� BH!A(D" "DDP�PD� ��UUUU@� D��� "!�BT�� P�����BD�P$�@@��!�@ B)�D��T��JDUTA D@$ ��!H��B@�PU *!�!" @ B� ��A B��P�!��B! !�� $��@  �"��@�@ B@B D� !��B (!DA�� ���D ��!B�� H BA A@BA@BI�BH "�! ! ��@@����X)@(('&�$�����hP8   G(G(�)A{lN�B��Bb�0�B 1Ba�0� ��1��� B�B)EB��� ! � � "�"��A�!�#�1�C�1Db�1�B �a��c� �a�!�#�1F!�!�C�qH��BC�a 1Fb�Q�%� �b!HC�"�$� �b!HC "D A�0a�PD"1B$2�!� BB"�$ !�b�!!�1B�A ��!�B(CQB%"�� !�D1�#�Fc�1�a1E��c��(b1c�1�e�F(c� ���Da�#�@Fa�1Fa�1Bc�1� a�H!�A�$�1!!�D!�1��!�b�1�c� �$�A�#�!FA!�c!�B !D!c!�b�!�c �b�!Bc�@�!�F!��!� FaBA��"FA� B� !B�B!�2F b�9a�0�!��&�B!�B!�0���@�!����0F! ���A�"��!�1F"��b"B!�!B!�0 a�Pa�Ba�Ba�B��AFBD !1B(��(�F#� #1D g��$�B@# B# B!�1 !� �A��� 2�"aD)#�Ba�B� !B��B���$����B#�H ��1� c�F� �%J ��0B��@J!�B!�0B!H(C�Q�"��"�@�� 2B!"DB�0�C��C�1�#1B!�0Fd�D(#�B� DA�0F!��(CB!�"� #�Qa�"H !�0F ��p��� �aC�C�!�a2�a�AD�2H C�0D#1H#A��AQ���!�C� D$� )$� � "�@�!�2B��"B$�� a��!�Da� �D�A""�0BA�0D����b�B2 � !�(#�@� D��B!�C�@F��!�b�0B #�  "�2�a�aF"�P���� !�AP��!Ba�!B!�`�A�A��QJ !�qH#�0�#�1�#�AB�����0F!�0D�SF8f�B!1F#�0F!�0Ba�"F� !� �C�!HdB�! "� A�AF "�BB C�2F��1H �!��"� dB#�B(#bBCB(��� &��! CB!�!�$��b "�D� � A!�BA�# !�B!�B!D$1�$��B�FA�0Bc�1FA�!c 1�a�1�c�1�c BJ#!�b�DAF"2He�@Da�� �� � 2H!�0BA�0DC 1�d�0D A!Hb�!��B a����H��1�QJ !��"�1�!�1�c�1� ! a)�B�E#���1��B�$�2�!C�!�0�!�BA2Ja�0J#�P�!���C"�!Da��!�P�"���!�!� B"�BA� �!�Db�!D��Q�(!�"B"�F"��(C�Fb�AFd��B!�0�!�`F!� �!� LF "�#�0L"�F"��a 2 !�2BA�Bc��!Q!B!�0F$��D �a� B��Bd� �!�!���!Bd�BAQ�"�"�a��"�@�B A�!J!D$!D�Ba�0���A�#1�a�B ��!F!�#Fd!�!a��a�B%����P #�@H#�@B#���1�b "�C1���A�a��!�B! 2B"��!�0F!2�"�� !�B!�!��A�!��!� H(#�Ba2H!� !� B!�0 a�Pa�Ba�Ba�1�d!AB#��B!�"H a1B!�0BCrFA�@ !4�!�0�!�Bc�B"�D�� #� BˆRF!��%� �(c��a2F��!B!�B$�0F��F !� �c�P���@ a�H ��B!�B��!��2FA�H!�AF!AD !�B !H"�F"�0F!�B�B#��!2B� 2�b��B��!�Bc�H(e�A !D8d�!F��$��(e�0� %R !RB!��c�1Ba�BH�CH� "�2��`H!���L!�BC�Ba�FA� �!�Dd�2Dd� HA��!�0D!�0D!�B��q�!�QB!��$�BdH"��!!�D��B !��!��!�a�0B��1�#��a� D�� Fc��D�F!�B $ � A�!9A�B C�B(#��a�B# ��!�c�R�B�� $B!!�(d 1F(a�  aB���(!B$�`B B� F)"��c�0B#� �0�� J#�B8�����c�""�0D A�b�0 A��!#�1 a1B#!�#�aNc� !��A2b�AF!��!� F '�2F(C1�� Bb A�a!� !F��AFcd�1� $"a�"�!����R�(���c�Q� B !D#� !#1B��BAa�0a�0�0��H0A2�%���B ��F c� �� ��B a��c�Bd�!�A�BC�0�a�!F�H ��F!SB ���c��(��D!��A 1B1�$�!HB�B)E�BJ)bRH)E�BJ)bR)E�@���B ��C��� C��C�B!�B!��B%��a���@F��!Fd�H"�F"�B!�Ba�1�b�#� ��Q� $B!�F!�@H HA�0�!� B#�AJ(��1�c"�A�!�c�@!2F#�!�P�!� !�1�!� *��1�(H�!BA��A�� A!� c#�B�!�b1D��PB!Q�0�c� �B��"� �� B !�F#�1�b�Bc�Ba�#�!�!��!�`�!�0B #�1�c2�!2F!�B!�A #�HA��!BBC!�0!� �"�Ba1�C��c�!� !�Q !�D�� � !��! AB0#D"�B#�0F!�F�#� �!�B!�2���QB%�PFA!B#�0F�0�aB #�B!�P�E�B#�D #�3Bb��D�C�"�0Fd�B(aBHA��b�F!�!� Ba�D"1��F!�B!�Ba��#�#�#�!�b�AH0��� $�B#� H ��!!DD� D!B ��H !��F"�F"�Bc BA�1�!�1d�DAQ�!�B"�0B c�B #�B b�D#�0�!� Fa�#� B!�A�!�J@# B# Ba� Ba�0B d�0�a�Ba��a1�!�#�JA�R#� �!�DA1B#�D!�A 2D0AB$�B(A�!��!�0��1B0!�Ba!�!� FaBA��b�B"��1B"���C��C�BA��"� �!�D! !B(A�L#�!�a� b�!� $�`B(�!Ba�!�!� FaBA��"�)%��!�b�0��1B0���A� !c� � "!&�P�(��� E�F�BB2F� H� BJ)��@B A!�D"�!�" rD"� Bc��1���1F "!�B� Fa�`��1DC 2Dd1�c 2�b�1� C��# 2)��"�!E��A�0B�aD8� #D($���H�"D�1�Hd�A����2� �RDB�eQ�(&�PFe�bD!1c�a�0� B#H!��a�1�1!� �%� B%����F0!�QF "�F "�b��"!B a�Ba�B!�!�B%�!"Bb� !bB���PF!��a�Q���0J#��(�� Fc�A)�AHC�1�2�(Db�0a�@F b1)����AF A�!�!c2�(c� B#�1�C�1� ��!H #�@�a�2� !��)#����@BBBBA��!�!�A�$B!�!� !� F ��C�PB#�J! ! !� �B�1�#���� �j1F(%��a�2J(�"DB"F#�@� A�A�$���!�!1b1� b! ��!B!�!� e �! !)#�1� ��R�b�0� # 2B#2�f�!FC�1�c�0�c�1�f��C�1Fc�"�1�c Q�c����1���!���B!�B�2BF1��"��� � "1�""���F!""�#�B�QJ b�A� C1c1Fa��#�!�#�!�B�!�!�Q��1�c 1F!� Fd�P�b�!�B�P�b�1�b�P�%�1$�@ #A�b�2B #�"!"�!BHd� ��H!� ��� F C�H��AF$�@���@D!��R!c�PJC�r �B� B����@� D�F��`DB�1BB� �0c��!1� Aa�#�!��A�Œ!D"BFC�`����"��c1Fd�0�� 1F��0�e�1�#��(e�1�# BFB�BDC�QF c�B��!�C�A���0�aDc2� d� D�!D#�@� d��d2�"�D�1� b2� cA� �B!���c1HA C�D�A�c R� ��1FB �d�1c"�$�cB!aB#�JC�0�!�A�1� $�!�B�!�A�1D0AB0A�1FcBA� �!�BA�F!(1�C�B!�� A�Tb�@BA�0�0!� �A 2FA� B!�F!��! 2�d L�b� �bB��PB#�0 A�HĄ �� �BAL #� D"�F!�0���!##�j��a�0�J�BA��"���C�F" ��a�1�(b�AF D1#�)b����1�"Q�!�"DA!�b JE�RJ ��!�a 1FA�1B!C�2�B�1"��D� $BF$�Bb�0�B 1Ba�0� �C� $BJĄ0 !�0F!!�A�0�#!DB1�(B�0Fe�C�Q�a�2�C�!� c� ��Fb��a�@B$�@�#�@�!�1B!� D�Ba�@D"�Dc� �(B1�A�"�(C !Be�B!�a�0���E1B(��!��# 1��1�0E 1LdB!ƔA!B�B �2J "��� �!A�d5DJ �� "��D��#H!a� "� DC�1��"�c� !��@F!�0B#�"B�""Hb A9A�1Fb�A�d�!Hc�!Be !!�B!��A� B%F���A�1B$��c�@B#����B!� �c��#��$��C��C�"B$�B#�1�AD!�B�B�1����c� �#�A��A��(A� J��0�"�!�$ !Fa�!D%�1���"�B2���!b�F0"2F#1�A!D"�!D��@���Q"�!FE� J!�RB(E�Q�E Q�(E�$ ��1H #�@H#�!�0�A��!�AB��0� %�D"��a��!A��@�(a 2�d ABd� B��!Ba�!B!1�!�0 !�@J E� D!��(��B!��0Fd "�$�0�(E �A�@�"�H ! !�@F#�@B!�" #�BJ a�0F��@B(�2�!� H #�Ba�1J E�1�� 2B(�P"�0DC1� �� DdABa�@F��1�"3F�� A��"�0� �1B���E !�"�A�B QB %1)$ 1���!�2 B�BB0e B C��C�"B��BF!�AF!�@�D��!�0Hd�0Bd�FCABbBDB ��PB!�B!�!a�B%�1E$�� 1e��!2BC 1 a 1D� AB!$�B!�B!�D��@�C�0�#�Fd2!#�Q�a�B��� %�0B"�FC��C��$BBH!�B!�A�J$�0 #�1���0�"�P� �B !�B!�D"�PB a�!Ha�D ��F"�F"B !��!�A�"� �!�B# 2�� !�C!�!�"�(#�1�B�!� �� BC�1D��B�� %�B��0���DC� D�! $��A�!�"�F#�B#�0� a1�C�Fb!�0�"�B��d1�a�"� 1��0F!�BA1���!�(D !b!Ca�B�!9b�BA� �!�!D C� � D ���$�!�$ HC�A� a�@Ba�Dc�0�!�QPb� Fb��A�c1B)Ì�1e 1�aSP8�� e�!�d!�a��"�JB�PD(b�"H�BC� D0c�1�B AD A�B�@F�1�(!2�!�0�%�RFC�!�C�!�b���1 "1 ��P�)$��1�2�#1�A�@B $ r1%�Hc 2�c�!$ 1�a�A�C 1�D �A�DD�0���@ a�H ��B!�Ba�@B��@B�� B��� B3B!"H��B !� a�B$�1AB!�1�!�QD# !�!F�"F&�`F!1B���!�B!1D!��!���a�0�1Ba B�C��C��" B# �! !B��� !�0B!B�AB"�!�a�"�� &��B"�F"��b�F!�!� Ba�RBa1���!FC�J#F #�AJ ��0B��@J!�B!�0B!H(��D(#1DaF"�B��!�!��!�0�!� �!�3�B�B!B��BB C�B�&�B!D"�F"��b�F!�!� BaB b�`�! !F#�#�0�c�F"�1�A"�" !�B�B�E2�a�1�C�!� f�L!�`�!�0�a�D#�0�!� FaBC�J#�!�D���!�#�JA�R#� �!�DA1B#�D!�A 2�a��(a�Ba�B!�B!B�!� �#�F!�!�C�AFa� �����"�B�0� C !���!� ��1�b�@�a"D !2$�0Bd�A� BDD�!��� B A��a� a��#�Bc2�a�B��0!d�@�!�1�a��C�!�b !Bd� �" � C !�"�1Da�@�!�F!��!� FaBA��"FA� B� B��B(�0D!�0D!�!� B"�BA� �!�Db�!H!�!B� "B!�R���B0�B��0�(e�F��F)# H)#�)%�R�a�B!�"D��  d�1BÌq�0D2� B�1� C�� !�B#�A�$�!BB2D#�!�d�a  #��D!B$� � a�0!B1�!�B�!�B� �!�1Fc 31c�1���������H)%c��!� c�AH a��c�0B!�@BB�AB�QB�AF��A����D 2B�1Hd�Ac�2�B!�Ab D ��)B1�AQ !!���1Ha1�#�!�0B���e��(cq)a #B��PD(�1�È0H ��P�!C 1�d 2�d �a�Q�#%�c�c1�CR)C�@�!! QD2��2���! !�@!e AF�  d�@��0� !�0�� "Fb�0�C�!D#1�B�0Bb�0DA�F!" A� B $��$Fb�AF!#A�8!2� " !#�H��1�d�@�b " �B$"�A AF!� Q��D��P !A���1�#�FB�D"�!�B!�#�0�c�0�#�1c�!�� AF c BF!��B� � Q���B�8�2�(��1��R9EB�Q�C �C�!�0F"�F"�Bc� J!�pDc��a�PBe�Be��b�0D)!�B0% B# B!�1���BF!��$��! 2BEF(��!d H��1 ��@B#�!�E��a�1�c�@B#�0�c"�!�B! "� c���#��A�B#��C��a��C� �!!B�!D� � �1�B !�B��b$�a�1DA�1DB�!�"�1HA�A�(�� ���BBd�!� a� „AL!b�R�A� �$� ����c�!Ba�!B!�0)"�@�!�F#�RFaQ�!1��!Db�0�a B �AF��!Bd�1B !�B��0c�B!�!�!�d�1�� !�!BF�"D!��Ð2��BH��!D#��BJ��!c� Hb�A�a�1BA1D(C�a�PFD�J�A�!�B�B"FA�!1BC� b�B`"�"�$�B$�B!"��0���"�c�aA��!��N!�B�B!�B #�9"� B"���C��C�BA��"� �!�D! !B(A�L! !F#�D���!�#�JA�R#� �!�DA1B#�D!�A 2Da�@�!�F"�F"��b�F!�!� Ba�D"1�"�0D!�Bd�@J!��b�1�D 2B!�F���a�BJ��(#!�!������"�B!�T"��BC�"��0!�AF!�!�! "�� c���� � $�!��!�Bh� �A�B�� F!�0BC�!c��Œ�"��C�1�!�B�&�1F(��0� "�P $�C�"� $�"1DC�!F� � aSDDAF$� B!�0B!1a�@Da�0D"�@D #!���@HI!B�C�D(�F���#� !� A�@D$1B !��!#���D"� !2B�B(!!�"�!�("�FC��a�0�f�B� QBa�3�aFc��0b 1�a�!�b�!�c!�C�A�(� 2��2�"$� c�P�c�@F!�@�!�B!�0F0%�B!�1�!���b� Ba�BFa�@H�� " BH #�F(#�FD 1�(c�0�(eHa�BA�H��@L��@H$RD$�1H� �!��� B d�Ad�AL��@F��!Ba�!B!�@�#�B!�B"��$�J(c�A!b�0)#�F!B��B#��c�� $�!��!�F#�0�b� ���! 2B!�1F!B�!�B#"Fa !� b�ADA�`�0c�@�E 1� !�1�!��b�!���"�A�")C�1�B��!�0D!�0D!�0B��B ���!�B(#��(��P�%�0�(�� �� C��C�0Be1�!)D�!C�!�0�!�@�!�BA2�a!Bd1�C!�C��%�Da�!Dd!�d�!DA��"1������B���!�P�b�B!��c�F(C�!L!�1!!�0L"�F" 2B!!�P�c� c 2Bc��$�BdH"��!!�D"BF!�Fd�L!�`�!!H"�F"��0#�2���"�a �a D$�1�"�F$�� ��J!!�Q�DH!�D# !�!2�!�@D(!�B!�0� #��a�B#�0F#�� B1�%�1�B�0F!�DB B!F"�@ a�H ��B!�Ba�B $�P�a�D��d�B$�!�#BA��$" ! ��""��1�(c� D a1�#�0���#�pF"�F"��!�!F��� a�� a�0F"�A�#A� c 2�!�B0" B# B!� �c1�d�1DA���2F!� �!����1F%B�e !B!��%RBe 1�cABc "���B��!B"� Bc�@�!�F!��!� FaBA��"FA� B� aB a�� !�B#�Be��! 1D!�Ba�P���RD!e�PF(f� B!�0F!�� !�0�!Fa�D#b��(!�D$�!C�0�" �A� �a #�0C� ��� ��� �D2 ��AF ���d2�$2��!!!B B� �D� HB!��1D "�!�A�F%�!F!�0DB !D��A�A1�B�B"�$�� �1�B�!F�!�c�!Fb 1�#�1�E�1!C�!�B�!�B1�A� B!�1�d�0� D�0D��D�D$!�!� �A�@Na��a� ��@�"�1�A� �c�A�0Bc�0�"�Ba��a�0�"� �C� �"�a�  b� �!���!b!� ARHAAD �Be�H e� C��C�F��0BB1�$�1�"�`� #�AC�1� b� a�0B#�0����a�@B"�@D"�1�#�B!�P� !1H(E 2B�R� D �A"�P� d�!B$�1� D B�!�B#�� !�B8!�1N�!�dBBd�Q����� !� H �AD!�A�bB�0D�!!� ! !D�!D!�2�CAD ��!��C�d�A�B�@F(!�B!�@BA��A1�C�!BA�$AF0�BH��A�bQ� b!���"�Bd�P�e�Q�1#�0 c�C��"�@FB "�B�1�0D"Bc�a�F�1 c 1�b 3�a�1�a"� ��1�� !� B1b !Jc1B �Bc2 EBd�2�(�R�!��QF)��1� D�"�)�"���F"�0JA1B#�0Da�FA�0F#�@�c�1�c!�c�@�!��c1D �� C�1F"�2D� A�b�1Fb!�c�0� e�!�(��2�c� %�"!��A� D��!H��H#��A�!�! #�� d� "B �aB!!�b "HC!� D!B "� ��1�Ba�$�1Fa�� ! BB��0)a�B#� � c�1JE�0c�!�b2� C1�# 1���A�0�2D���!�1B��D!1B"�BA�D#�0�A�B!�� #RH��@B!�BD)��@B(Ŕ"F)$2B($2B(D2D(d��AAD���(c��(��0B$�!c�@Ha�B�3� �!�0�� DƔ"��!� �� b�!B%��0d�1B!�F c�@Fe�Bb�F ��0D !��!�!B#� !�1 !��� EBDE"�("�`�!B%�0D!�0D!�!� B"�BA��"�����B2FB��A� F��F0�  � !)B $1Hc�0� � c"��Q�1c�Q�0Ő!Bc�@�!�F!��!� FaBA��"FA� B� QJ! 2J!! B# B����AB$�E � !�0H"�0B c�B #�B b�D#�0�!� Fa�#� B!�A�a��C��C�B!�B!����QH #��#�Q�c�@� c1�CBc�B $�!�0HcR!#� B"��!��B�B�� D�` $� a�Ba�0B"�BA�D#�0�C�J#B�����A�D 1B(a� B!B!�1B��D!1B"�BA�D#�0�A�B!�� #"#!�A� �!�� d1�!�!B�D A�P�# 3�(C��"��#�0Bd�A� $"D�! e!!�!�!�(!�@H D1��2� D�!!H �BH d" %�0Fa�PD#��a�0D" #�D 3��!� !�B�!�C 2�a��A��#�0�!�0Dc�FA BP# Ba�@�a!�%�Be�b��B��"D%�!F!��(!��!�PB(a�B(C�D0��B !�P�!�0�!��!� F&�2B0Ƅ#� C��1#�� b�!� "� B(�0D!�0D!�!� B"�BA��"�����b�0�A� �aB�AH��0F$�1B! A1�c�1F bB �AH!QLA�BP& B#  ńBc�F0! B�� Be1B$Q�&#F!�@��A� !Jd� FCA�$�� $��c�F A�!�!�HA�B#�0Bb ABA� !�B�� c�0F$!���F B���!�!b�@F ���(��0B!� B"�!DC�@�a�!���B!!B1"��!� �!�PF!�Be��#�F!CH��!" B$b��� DB!D� D� DB!�!�!�d" �� BBBDAH BAD BA�%�)�!���@��0D "�B)aB � BD a�B$�D�B�b� D ���b1B!�B� � #�e� H("�!� "A�AA� !r� $� D %�b�e� F!�PBd"�(C�A�(C�B!�B8��1�(d 2D D�Db�1H dqB C�@DB1�b�3�C�d�!�C!�GA� b!� B1!�#D1�"�"�QF#�2� D�1���1�e�2H#�!BA!�!��!�@H A��#�1�%1BCA�(BB(E�PDB!�c�2�C b�d�4�B�"H#�B��@F��!Ba�!B!�0���B)��J!�2J80 #�1BCC��a�1�"� �A� �c!B$�A�B!�B1�B��c�!�B1�(B!�� !�a "B!�1H c1!!��A�P�#� �2 !!D"�A�c�1���@FDAHD !Jb�!�b A�bA�b 1H C�0Hc� ��1�"�@�a��c!JC ��!���0�b�!�CA�E�R�d�!D a�AH��H !�B!�Fa�`B�!C�%"�0D� B��� B3Bc� � "�0B c�B #�B b�D#�0�!� Fa�#� B!�AF"� !1�C��c�@�a�@a��a2B��!F%�2!��A�!��"�"�CQ�C�AJA�#ADa�A�"D#!Fd2�b A�b!�!1�a�2H ��!�b��C A�D�!C!�!�!�b�!� ��1�C "�B"�c� D��Q�(!�"B"�F"�BD(C�P���B(a��c�AA� c�F!�0B!�B!�!B!��!B�� � $�D!AFC� �C"� B�%�� B����"�D 1���D�"�E�@B8��!���d�@�d�A�A�!eBH��!!"�1� ��A�� �a b AH$�0�"� �c��!��a �(#� �c�@�a 1 b�!�c "� C2FaAP$�  "� �b�@P��1b�2���H��1��a�d!� ��rFA�DB��A� H��BBB !�B!�P�"�0D!�0�"1B!�B!  ƈ`� #�B !�0�B�@!1�$Dc 1�"�1�c� �C�A 1DD�C�1�b1� � " bDb!BD�� A� ��P!AABbQ!B!!� �c!D)C�1�c!D��!B!�!�"�!B!�b�!� A� � �A�B�1D ! J!�A� a�@�c�� �F A�C�1�!�A�c�A �D dB !���H A  a�F�B !�0�"�"�Bd "D !�A�b�0��`�A�0�C�@B� �B QBB!D! aB#� �C�0� �a�!�C�0#� �B�AF b�1�c�!�B�1�c 2�d "F��a # �# �a� )��2�C�11C�"�B�AD��0� c�� b� � b2Bd�1�c��b !� !� L ��0�b�A����!��a�� b�A)� "�d�A�)!�R!a�"� �2���2H A2�(c�!�(��Q� $� !� !�� �@BA�1�9�@HbAA�0Fa�1B��`F��!�B a�Ba�B!�`D ��BB!�@ $J!��Ha�Fc� !%!�B� �a� Ba� �#�1�#��A�� A�Q� "AFB�@�#� �!�0H#�  "��B��B 1H #$�B C�B1��"�d"�#2�bA�D1��#�!�b�B!�B��A�!#2�C ���!�d�!�d�!H d2D!�"�C�!B !� �A�F��@�c�!RBC�A�@�d�%!�#D C�!" A�D1�!�q��#��1�b� �d�d�p���A�b!���1�D�1�b2�B�0Da�A�! Q�B!D(C�2�(b�"�(b�"�(c�2�(c�2�EQ�$!B BF $�H%�!!�2$�B�#� �a� �a�B��0���1�C�2�A�0��!�a�0 b BAAD c�1!2F�A�c2�c!"�a�!C�F)"�0B" 1B#�!�a� �h�a�#�0D� !�(��BH ��0��"�b�a Fd�0� eA���B�(��AHC��b "H��!� cA���!� "!BA�!�B���A� #��B!�"� �B A�C!�b�1� A�!Dc� Db!�B!DCQB!�B "�B�! B#�0B #B!���@B(!� �D ��AB(c B A� DaB�!�!�C�0 C�1BA!�P�b�0�#�D0��0b � #��$D!A� �c!DA�1Ba�1�"2B��B #��!�2B!�0���D)d�!�cB#�B��F � � C��!b�B#�1�! ��B�1�C 1�c�!�c�2�0b�1� A�B$�`B!�D�"J!� ��F �F �!a�1���0�b2�A!�c�0�!!�c!D"3L��`B0&� !�"��aB��Dl�J!�PH���$�@AAd�BB� D�!B� F)"�Be�0B#� �0!� F #��!��E�H!�0!�Bc�!�!��!�0B!�@ #Q�"�!D$�A�BA�b�B!c1�e�0� ��b�& b�!�`�"���B"� Da��c�AB1a ��H A�1!DB!d�A!c� J!�A !�0�!�0�!��a 1���D �� C��C�B#�@�a"!��!� ���� a�0���C c�!H(!�� �Q���!�(C�Be!���A��"���!���!� C��C�Ba�Bc���B ��H(D��!�0D!�0D!�0B!�D!� !!!�!��!��!aBd�H"�F"�� �b a�Ba�BÄJE�BF��B��0DA�P�"�D!�B�D� �(!�H a�RF"�F"�B� R�b�BB!� B a"J�!# B ��1�(A�0H EB��BD!BA�(D"�1�c!�!�a�1�aB�B 1 �� $BD B "�b�Q� d 1!a�QBa�D!A!!!�����@B(!�0�$�0�C�!�DAF!�NaB�!�B�D��c� !B D��!���0F !�AF(!��(��!F��!D%�F %�P�(�RJ a�F %�PB0B���D"f��(��1D ��A� D"� a ��A� $�H��B c�! c�1D! 2�e�`�B�B0a�ALB�2�B� �ABc� �c��D�A� ��!� B�1�a�0"!��!�!�"�(�"���@B !� b�AH#�Fe�D(�B �Q)#�R� ��2� D�! !a�2B��0c� H A�0� #� Hc�!&�B A�!$�F#�!FB a1D C F#�BBB!caD C !D���! B�"�B!�1BA��d�0F!�#�C�1�#�a E AB!� #1Bc�  a�H8! !�# B��! BH "B)a�1� BB�"F "�0�D�0�(#3� B�A�!$� b�@���2�(b�BF!!�0$1BAF%"�d�@!��B!$�AD B�Fd�B(a�!Ba�!�!� FaBA��"FA� B� 1B!��F"�F"��A��a�@�(a��!�0�c� B!�0 a�Pa�Ba�Ba�B��AFBD !1B(��(�F#� #1D g�!� !2�c����B$Fa�HD�H$�Hc� �a�Dd� �B�! # 2�C��!1BB�2�ˆQD "Q� "�# B�R B!�B1�B�1�A!�A�@DB� � D� F#����!�A �a��c����A�@�a�B�"��"��d� DCB� �! ��@� !!Da��BD��P�C1!bA�!H C!�BA�b�!�B"F#�A!d2�� DD�A A� B��(���D� � cQ�B�1D b2�(��1 c�!Dc�!���@ !BB!�B!�H !�0!� �1�! F ��2B!�B��1DE�!B)b�Ba�!�!�!�!�!�(!!F��2D� C�!�Q��a�!� �C�@�d#�c !�B!�B!�B�Q�0b"B� 3�c!�c�AA�B !�8$��f B�C!B&B�A�DA�0�c��a�AF���$�!��@�c�"� D�!B!� B !�!� B#�0� !�BB�Q�c� DE2�#1�E�BB"�(E !Bc� B� "B$�B!�1�G�1�b��c!�B��D�H!3�1F%�1� e�1� a����A���QB # RDa��!�P�"���!�!� B"�BA� �!�Db��A� DD����!�!B�A�Db!�"Q�# �$�#�Fa Ba�Ba��a�BB!a�c�Fc�DB�AJ�Hb H!�0� !�FB�B$� D�PFc�F0#Q�b�H C��C�BA�J!��(A����0�"�P� �B !�B!�D"�PB a�!Ha�!�" D�!a�Ba�B a�B!� � $�A�!� ���1 a "�!B!�HB2BB�H %� Fg��a�Ba�BB 1�b�R)$�Q d�F#�0L #�@�!�0�!��!��%�B!�B!�B Aa�c"� !JB "�a1�# 1�A�0D#!� #�1�c1 B DB�"�A!D`cDˆBPA�!Ba�!B!�@H�L!�BaB� 1B b1�(!�a�0c�!�C A!e�A�a�AB!�AB��@F A� F AB B" BBF A!�j�0�d�E "�PC�� !�Da�0�!� FB� !��"�$ "F !�F#�a���9D B!b�1�c�!JB�1�c !J��0� "� DEADDB�(��0� ��Qa! ��F"�F"B !��D� �"�B!!�C��!�@F��B!� ��@� #�F��aAD�H� !� !1F!c�1�"1���1�C�!�b�1�D�PH a�A�%�B B�BA�1�E!�B!�BB"�A��� �D�1�!!D! Q�B!�a�!�B1�A!Da�0B!����B!� c��d�D!�0�a"B A�!DBaD B�A D�!DA1D#�0�a� �b�b J%�0B !� �A�QDA�@B D�@��@!b�ADa 2 "B��0�!��d�1� d�1�c�1�" 2Bc��C��b�1�BH# �"�!�a1B!1B# FC�!�!�0J��B DA!�b�D %�� !�!CA���L"1�(E !D(B Q�c�!�#1Fb!�B�0DA�0DA�AHc�0BA�%FEQ�B 1�B ���)A�F1DD�@� A�!� �2D�B!!�BaD#��0A�b�"��" q�!�0�(��AJ�2Db�0�"Fb�1!�Bc� Fc�@�#1H$C�($�!FB !� CQD ��1Fc� B!��!�!�! �"�A�0F!1D��H $�Fa�1� CA�A�@ A�!H '�0�B�0H� �. 4\3& erboiltondomalidadetouelssbuckfnotbavasidonarcviitpecethsudbrnctrtnihaketuanipamupgrflcrttubojecfausunplsoshmegelaexurrastorcafoscmomiteheenntatsecotaarlolelitiridichpadetrclroonremaindeforgfilurlcljrepresstaappdatlinconassoptreastrfigmapcharundevsrcterwwwwebaotenvlogargfalmpldisunicatplapreeclseqgetjarnthcliablraninatablacshiurivenginhttpcoretestcompringmainpathspecojarleinroutcodeportonyxgamejavamodewrapoverjetttextactiutilhtmltypejsonattrfuncuseraultmentfontlashevencolotimeatommounreferprintpublisourcavisopanelstyleinputapachstoreenablclojurlicensdependserverrequirpluginreleasgithubmasterincantscriptositorselectheaderprojectversioncallabldescriptmiddlewapasswordsnapshottranscriextractocrstodapilemnufgbhwvjxkqyzI2rl�D (ecCd����dN��YY?cCd�Ri�XYL�\�d� �������=�ݒXYj7FcCd��=��\��=�ݣ�cCd\X�YL�P,E���e�d\[g4�p ��5���Q۶��g4ῳ�j7F�j7FĐ�6�l�D �b�Xڨ�U��#��=�Q��\����\���dd\?2�?2ݙ�c$�d\�Vh7�b�Xڵb�Xڥ�b�Xڨ�Q�����ٓ\����\���\��ٓ���.:���.:Đ�� �?��E� �D�� ��GRl�D U���K!��L��"={�^�L�Ll�D �K��Bےy�{~�D{�\��{~�DYL���L>��i�X�l�D L>���<�_t4 �_t4 gl:c ��g4���E�l�D ĔjT�IB����W^���"M�W�jT�jT��v�S�H������S�H�\6 �����쨇��Z��Y�������� R�}R_����jT�\���W^�� ���� ��������/�����}R�`�����I�A�� ���WB���������� ���v�K��� �� \�Z�Rm��Z�R�[ݥZ�R��\�]"S;{0Kݏ��]"S;{����� �� L>���<�L>���m�\[?w�K�w�ww�w0Kݥ�D��0K�vv0K���� �� 0K���dN�OXY����[r0تOX;�S�OX�~[IتOX\��9/�����XY����[r0ؤX;�S�OX�~[IؤX\�#�L�>�#�k[�m#�L�>�#��L�>�U%�����\�OX�;�S�X�;�S�㛥}�����۰�EU�۰�EU��EU��e����k[��HP��\���HP���\��?���HP�����\��\�����@DZ���P��\��6 ��6 ��P��۰۾����P��đ�۾����P���' F��4 �Z�' F��4 �' F��4 �6Q%' F��4 �' F��4 �B���I2�' F��4 4 �������\�6Q%Z�B�EO�\[�Z' FT�EO�EO�h�EO�' F��\�Z0�GJ��7�vv�� ��[T���[T� � �G��:��c[T>�GJL��;CM� ����%��'3\��� ��[T���%��'3�䐡���%��'3��������H�5�����oI�ZI�Zߛ���x�xI�Zx�\�%��HF୶��HF����g�ߣ���o\���1����5��\�HF�I�Zߛ�P�\JقI�ZM���1����1���P�\HF�zHF�M���ĐM���交�����@P��;6��뺔\�Q�\��\6�ݺ��\6�ݺ����\6��Eۺ\���O�S7���Y�Q�S7Q��\�S7�Y�Q�S7��kQ��@P��;6���\����;6��;6�����X�1�����Xƶ��L�XHےKb��ۧ�X�\䧤X�1�����X�����ٶ��L�XHےKb��ۧ�X������\� ���X\XسL�X\XؤX�����gĐ�������|ۑŒ.:w���]��]�A��pU��Y*/��K���L�u�K�Y*/��W^�K�Y*/�U��u���]�s�_N���4��K��W�����Ǐ_dt�.:�mb �;�-��W����\�N��x�J#�OXY$x孪OXJ#y�\�U�����/�TU��Y$>��x�J#�OXY$x孪OXJ#U��\�����;������;��\����8��8�����\���B@��8��/�X����PX���/�X�[C��k[��#���I�Mm�H����I�M�ۑ\�R�Y�{S�RR�Y�{S�RI�M\�[�ikY�#�m\[C�[�\k[�k\H�H��۵��ᖖ�\����đ�����=�I2�T��=�7�G������/xf�I�Z�=�9��<���x孶��xf�I�ZI2�����Y�:T�7�G�����L��kdN���7�G�����\�h������\�0\���Eإ���E�[�[�!�!���EإN<���O�!�!���Eإ�/����O�!���Eإ��N<�!�!���Eإ���/ّ��Eؑ\���I�A���ٵ��ĥ�I�A�����?��k��D�5�Q7<�?������H�:���D<���I�NڼabE��k[�D�EI�"55�Y$"5?��\��������X����\��������kEO��|�����\�Q7<�Q7<��I�A�]��"5+���)�����������`�9V��Zَ��Jق�Jق�q����q��Zَ�ޘB@������]�������]��]¦�3M�]�&�s�_��؀&���<`k�:�����Ǐ_���3��Y�)�E���m�ٱٱٱ�Iᄱ�Iᄱ�D���ۇ��I�I�I�I�����A!�;<�GR�D�����;<m��>�+�GHې�gU����>�[9�\��Đ����e�!�YA�e�!�S��#�YA�mY$m�!�YA�\�[T�[T�cO�\e���aܘ�|ۘ��|��|��p�W^@DZ�P�Z���]¦�3M�]�&�s�_��؀&������_��PC�����e����� �FN\ΐ���u����d����"Mٓv�W�)��D�@DZe�O���J�E �v�W����H��M�H��M۞�EN����.:)��D�@DZe�Y�ee��]¦�3M�]�&�s�_��؀&�����9U��Ǐ_��6Q�����M�������\ΐ�[7������%[7��pJ��%�Z�Z��]�f�82R%�%�%�%��gU����]����]˜[7�CR�Ǐ_��Y"��H�T���� ��Ԙ[7�\�\[J��L[V�ݚ?��\�[V��^�`���JقU��N�;P%�W�W��I�A�%�W\��W^7�q����qq���"�%�W�]¦�3M�]�&�s�_��؀&������%�W�Ǐ_�2���p ��%�WZ#T����������������\�u-��W^Jق�Jق�)����k�u��&�`��ۘ��f�5�`�e��]����n �ɐ����]��]+�G��/A�_�� �I�A�+�G���)����k�!I��Ǐ_��k�n cO<7���)����k�\�"M��+��7�"M�[�+��7�[��+��7䔓�Ő+��7�Ó�.:p ����]¦�3M�]�&�s�_��؀&��+��7�K6�Ǐ_7�CcO�z�+��7�\�a�i����ERZ��u��&�p�ERjT����]9V1%��EۘԚ���������q��L�}����Ǐ�q���8�{��Jق�jT�q���p��+���6�S����]�p?�P���"M���b  �?�P����b�X�k�'�ۣ�W���6��b ��Q �9'3�\��k�'Z!?���������9'3p���JقJقV�%SP��`��m8��Z8��&�`U%�I�!C`U%�I�!CjT����]�"R/��]����]��]�I�B� �� �p��$ 8��"R/��]����]�p�W^~�\�I�A��A���7�Z��7�Z�N�^�I�A��A���)� �)� N�^�N�?Y���Q� ����va���Ta�`a�a�`��Ta�`�a�`�c$C�Y$0L>���<�C\[[������ B�쏅Eۏ`�[����t�t����JقQ� ����q�GRva���[�a�`a�a�`��[�a�`�a�`�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��� �CzG�d�\�>��"M�k[��[�%�)'�k>��k[�%�)'�[�\�Wٶ��"M�W�>��"M�k[��[�%�)'�k>��k[�%�)'�[�\�Wٶ��"M�W�>��"M�k[��[��[��k>��k[��=��[�\��W#���N[r���k[������=����L>���<��\��������>��X�[T��=�Ll�D ���<��[H�a�YLH$�pV�e�0#H$ߪOXglglB)GB)GB)G\�L>�L`L>�b ��y����Oj�a=�,�a=���a=ۑ�o�摑���[��摑���O���\�Y�b�V�K��<��b \��2m�<�U�W�a=�W�vpglgl6��6J��<����<��h��gl:glY�b���<��\���dvp\V�K<��[��<��a�YL6��6J��6��6J��o���Y�b�a�6�S�������ܞ�B)GB)GV���<����<��W�W�glglV�ī䛛o�?�Z۶��y���[���EU��Ïc �[�v��\�ic$b�h��b�b�c$��[�EU�b�"Mٓ���Ïc ��i��[�EU�Ïc \�_N�;P��[T��A�_N�;P�9'3[T��A�_A���kvg�/�Z#A�g�/�H�A�A�g�X��4�!��EU�EU����vv������������ۓĔ��������=j��j��اH�:i�X6����j�����\�"M�6��x"M�#���(e�i�X6��\�xdNb [c��"M�[c����<��x��(e\�(e�OXb b ��"M�"M�������<���������������I��P���k[�W� �#�H���W6 �����kT@cCkcCH��kH������W�U��#�>�����>��H��������ٰ�?��K����+�G>�����\�WH�W��WH�WH���+�GH�S ��HWH�W\��� � �#�#����� �#��>�����y�U��g�/� �#����[?���>�����H�H$�H���\���>�����`���[k[��>����ٰ�?��K�>�����P�Z���cC6U��P�Z���ڊ�ё������H��L>���<���^r��T��TH���H�#�L>�v��TH���[rHH�H��H����TS �^rI����f�L���TS �^r��T�<�I����f�[T�?��M� ��<��TH���I����f�T�gCFH��EV��H��gCF�<��<^���:�gCF^�^�`W�^����OI��������f�����I����f�^�#��22��[�\䵥�<�%���a�Y0=��T��<%�����H�H���22��[��a�Y0=�i�X���� "�"M�����GR� �GR6��^���<���GRm���i�X��GR#��GR� \�^�^�� n��H���^�H��^�H��l�D ^�� H^�� n��^�� Z#m^�H��GR�l�D �l�D ^�km� E����^r���O^�� n��^��GR���� "�\�^�^�n��^�� ����W>�l�D ��T>�l�D ����GR��<��^�XT>�l�D ��GR� �XT>�l�D �y���[�dV���o�\X��2c �[�gl��a��c �a��c xgl:x�\�gl�[�2����[ �b����o�gl�[��2k�2c tV����gl��2��2c \�y���[��gl�[����e ��c �@EK�����o\�Q�^��ܞ��Q�Q�Q�+�G\�b���JقQ�b���\�������G�`a=�a=��G�`n n �G�`�L>�e ������]�㛐�G�`�tH���\��tH��<�߶��<����h��QZ�U����\�����\���o���tH��c ���c N�/�V�XtH��\YI��E���[�W�Q�dNاgCF�?2�b [T�����<�\��X�X<�K�;��Ï�]b [T������w����\����\���\��ٓ?2ݵ��.:��<\����.:��t��w�����cCcCQ��wEU�6 ��x#�cCjQ�����/�T��Y9C��\6��xQ��wEU�x#�j�XjQ��j�X9C��\6��wcCwcCQ��wEU�x#�aN>Q��jQ��Q��aN>9C��\6��xM�7�w�/g�wx�L�xJ��x���wcCaN>(eaN>wEU�x#�aN>jQ��EU�wdN9C��\6��9C��9C�ڜcCaN>Q��j�XwEU�aN>�@DZ��@DZEU�w+�G�EU�w�I�A�I�A�I�Zw�Q��e�������ؐ��w��#��h���I�Zw���GRS���GR<��x\H��dN�<��x�GR\H��\��GRS��xH��dNx�GR�p ��c �\�S���GRc S ��GRS��\8� �S�H�L�����Vh�6�S��[����S�H�8� �6�S�^r�����8� �S�H�L\����6�S�kS�H�8� �[����[����6�S�����6�Sؐ���6�S�S�H�8� �6�S�\�8� �[��ڐS�H�[���8� �S�Hِ6�S�����6�Sؐg<\����[�6�S����Vh��Vh���S�ڵ�S�H�[����GR<���GRc ��GR\H���<��H���[���Đ[�����j���I�B�����Ne�e�m�e�I�B�HP�j���I�B�����Ne�e�m�}��=����ࣣO��i�Xn n f�n D������n I�B�VhQ�gU� �k��gU� �#�UgU� �e�e�gU� ��gU� ��DVhU�QgU� �Vh��I�B�J�e�e�i�X��) �I�B�J�VhI�B�J��DVhI�B�J�Q�a�kO��Vh���Z����Z�qw��Vh���i�X��) ��Q�c�a��VhQ�i�Xeޣ#�c�a����I�A���\6��n n f���`��5K�I�A������`��5Kݳ��j7F�c�a����`��5K����+�G��5N<+�G���W�*1�e��B)G��\���5N<���W������W����g�/������W�\�>@TMۚ��5N<����5N<#�?Y�����5N<��gk�[�"ٚ��5N<"�_�c���:YF\�����c��+�G����"��#��PZPHP��+�G���g�/����+�G\�c���:YF\�����c��+�G����"�O��#��PZP"ٚ��5N<��+�G���g�/������5N<+�G\��������L>���<����<)������WI��P���<)����]Vh�\����؞��[����5N<�����O3�?2����O3���O3?2�>�{*�6 ��?2�Yb�X����O3>�{*�9U�Y>�{*����O3g�����O3���O3����O3����O3T �w���O3����O3T�>�{*�#��zw��{S�RI�������O3��TJ\�@DZb���{�1�T�����W���mI����Yh��"Z�@DZ#��Y>�{*�@DZ@DZ>�{*�9U�\�?2�b�Xڵb�Xڥ�ww����I�������O3N���6�������e��v�pe��vpu-��W^Jق�Jقv�W��o$ۊ[��u��&�R��v�W�[���Z 8�T<�[���Z 8�����NC��]�؞�]�X�������]��B��$P�[��z�$ۊ[��\����(e��(eg��\E��=Zb ��NC\��=Z�=Zt@D����{J�ؕgk�)��QQ��c gcFN���Y\{J��#�|XdN�H�"5{J��{J��{J��gk�)��Q\����|X�H��Q�Q��9'3����đQ��9'3������ZPb�X��ZP �\�� �"Lb�X�b�X�\� �I��(�Hg�?�Z�T�Hg��:G�c���4?�Z�T���c O�ocC Q��ZP�ZP\b�Xڵb�Xڥ��e����B8���������a=�U���h��gl\�W�r"M�9��2>����[c�w,�[c�9��,�[c�gl���w���a���a����gCF*�W�Q�*�gJ[Q�QO��O��� B����4�� I�A���� [V��� B�b�X�k��� I�A���� [V��� B�N���k��� I�A���� [V��D�gCFO��8� �����\�S7����(�����(8� ���P� ��g������@%\�#�#�%�M����P�"M�W�%�M����P�n;%�M����P�"M�g�%�M����P�����@%%�M����P��W� ۔n �ɐ��Ԑ����[���Z7�B#;� ����I 9[��e�H�I 9[���I 9[����]¦�3M�]�&�s�_��؀&������Pc�Pc�����S�]���ُ�z���W� �I 9���W� �\�b�b�\b�b�b�X�\�Q�\Q�Q\�Y�Y�\Y�Y�Y���<\�b�XڏAb�\b�X�Y���<�AQ�\Y���<�AY�\A�N������DW��d<�XK>��_�\glYU�K��d�Vh���O���-8�����]d�Vh���O�����������]9V1���%T �2����]¦�3M�]�&�s�_��؀&����=��\�������2gC� �z��&��2gC� ��]¦�3M�]�&�s�_��؀&������_��PC�����ԏ������\Αq������]��]¦�3M�]�&�s�_��؀&������_��PC������I�8F\�d�TZ�"MٓN�b ��Ũe��]S;㨓����.:���]¦�3M�]�&�s�_��؀&������_��PC������TZ�\�p���WFE�������vp��p���\Z+�v��v�W��p���WFE��jT����]�����B,���]����%�����]��]¦�3M�]�&�s�_��؀&����> K�T�Ǐ_���i��9P�����:���> K�T�\�6 ��W�c$W�c$29b�9�<#�c$Qb�X�c$29?�Z�c$9�<#�6 ��W�296 ��W�Z��Wّ\�b�b�/��U%�B���ٵ���6�S�b�/��U%�B���ّb�/�ܑU%�B�����������\���5 rL>���<��<)����_e�ڂv��<��\\��൐�����������5 r�?2�?���2NB�fr9V����<������<����R/#�������Nv�N�jT����]9V1��������N���V���a�Y0=�a����a�����ߔ�Jقi�X�؞q���U��Y*/��K���L����]ZI�A�I�A�]�h=�`��]¦�3M�]�&�s�_��؀&������_��PC�����������\�ԅ��S�M�(k�'S�Ri�X2������1�Z+����]R�S�M���]¦�3M�]�&�s�_��؀&����݅S�M�Ǐ_[r0�f�I�Z�PCN�;P����݅S�M�\�8� �5=�h��8� �����8� �5=�5=��OX8� �Y����H����\>��LH������Q�C���LLL��\>��H��H��jT�IB���\>��Z+ܵ�p>��đH��jT�IB��A����H��M�H��M۞��p�W^d"M��WFW�"Mٓ��Ũ���.:��]¦�3M�]�&�s�_��؀&������_��PC�������WFW�\�Z+����]��]��]T����OZ+����]��]�*G8Ǐ_a�{U� ۦ�3M�]�&�s�_��؀&���OX��7�I�M��"\�q����f�j��f�jT�aNuB���"B���p�M����f�U��IfV�]��]��a��W��"����ra���aN\�E�<=��YA릑V�%\����?�Z,�4�e ��������Z#\���������?�S,�e �6?�Z�?�Z,�4\e �6?�Z�?�Z۲����]e ������]�㛵�����E�<=��YA�<=����嵑�ĥ�����U��[7���46�DY��[ꕸgR��N�;P>�[ ���O��ϘB���3�]���s�_����7�M �������>�[ *G8Ǐ_���>�[ \ε����W?����������W?�����W?������W?�9�������9���W?������9�\�k)� )� 9�\���?�Đ�QY*�=TrB�����:��3k[��QYxL��\��QY[T�m*�=TrB�Y���QYe�>H*�=e�*�=*�=TrB�QYQY[T�[T�QY[T�QY�*�=TrB�\�Vh7�4����DW��d����V�F;�B�W��W���DW��d����V�F;�B�W٫�a���߶��ū���H��M�H��M۞�^�(LI�A���I�A��I�A�gU����]��]“���)%�Ǐ_N�;P��ѐ��\Αo���O�NX����=�@=��=�>H(�\��������=�@=��=����7�\�k� �=�@=��=����7�\��=�@=��=�M,\�M,@=�M,>H(�\�M,@=�M,>HL�\�`@;���^�L���đ@;����`U%�I�!C`U%�I�!C��]9V1�jT����]����]��]�aM�\����?�Z,�4�e ��������Z#\���������?�S,�e �6?�Z�?�Z,�4\e �6?�Z�?�Z۲����]e ������]�㛵����嵑�ĥ�������f��[kkm����������7�3k\�\Q9��Q9��\Z+�I�8��I�8��N�g�8��I�8��\�N�N�kk[��Đ���]9V1%��Eۘ��]9V1�摘��]9V1������]9V1V�����]9V1`��ۘ�yڱ�i�Xa����"6�S����]«�M�7�cO�[?wQٙS79�cQ�gCFcO�7�[?�wQٙo\�wO���J�E �c�ctt�;�Xglgl�;�X�7��;�X����9/�۶������@DZ@DZ@DZ�@DZ�@DZ��W�k[�gO��ܧ������k[�gO��ܧ���@DZ�[r�@DZ\�@DZ@DZ��<)����gO��ܑ�Ė��<)����gO����0:R/�!�R/�b����Z�R/�R/�\�R/�߶߶Y�R/��m�R/�b����Z�\�Z+ܵ�`߶߶`�N�{�1��g�/����[H ���\����g�/�������\���?��w�?��wL>���<����<)������WI��P���<)����]Vh�\\��൐������?��w�0���㑑\���U�����đ�U������������P��[C)�B���ϘB�B���p�W^R�ُ`��`Y�;���]‘���\ΐ@;����I 9[����]��@;���\�J�Y�) �h��mB�Z�B�Y�Z�dN-�Z�Y�B�dN-�B�Y�J�Y�mY����NB���4 ���[���J�I�M��J����V �J�V �J�\����NB���Y�4 ���[���J�I�M�����J�J�\�U��(H Y�AJ�J�(e��J�J��J�J�(H \��V. A��A�7������A�7���I�MA�7��J��V. �i#�#�[���z#�#�"�����ziiii��zii#� T������#�b����\6�� T������#����\6��V�HV�H T������#�"����\6���GR��6�S��W�L T������#�[��\6��^E?2T����ܞ}R��������W��W��"������k����������W�6�S����W�6�S�gl��#��W��gl��6�S��W�L\�����"��������[C)� T�������c$V1r��^rc$V1rj�c$V1r�\�������������T5��a�a�)��T(k�'�g!�?�?�Z��������a�)L��(gl����c$V1rj�\�a�)L��(glgl\�6��\�a�)�a�)�L>���<���n�����ؐ�Y���<�����@DZď"M��>��9���M��j�Ag}������AA;C���A;C>W����$�A;C"C���$�9S7TJ>W����$�_TJ>W����$�S7HKR>W����$�_HKR>W����$�S7TJ"C���$�_TJ"C���$�S7HKR"C���$�_HKR"C���$�S7N<�=���$�_N<�=���$ُ0#;C4 [?A;CY$0���$����$�;C�=��;C�=���� B��0#��]��;C�=�U��QQW�QU��Y$\Z+܂6 ���[�}Ry�QQ�[�Z�R6 ��Vh[c��W�QU��Y$���W��\Z+�U��}Ry�QQVh[c��W�QU��Y$W��\Z+�����6Je�!�9'3g�9'3�) �9'3�) ߧ�����<6Je�m!�9'3g�g�9'3�/�!�g��/�!�6Je�9'3g�!�9'3g�) �9'3g�9'3�) �+�G) �\�9'3g�9'3�) �\YI��9'3�) �9'3!�x�8��<�K�;g�g�8��<�K�;8��<�K�;�U������c S �c a�\g�/�2�gl:_e�K�g�/�e[?@DZE�^r@DZ� ��gl_e�i6��c ��@DZeL[?� ��glN�g�ic \�@DZb����TY�@DZb����� � �dNS,��6�S��[�� @DZ\��� ��S,��\W��K�[?�O���J�E �������e�ؐe�Ie�I6�S��[ݵL�� ��N�g��glgl�gl�� ����� ���g<� Ro��gcFB@^�)���^� ���WI�H �X�H �X�W �\�� R����ogcF)���H �X�H �X\�gcF)���gcF)���gcF)���\�P�)���P�)���P�)���\�5��/���Q6��eG��-�eG��C�4�*��]K;�+�GC�4�C�4�*��]C�4��/ّC�4��/�\�5��/���Q6��eG��-�eG��C�4�*��]+�GC�4�C�4�*��]C�4�@K�C�4�@K\���`C�4�*�굑�đ�`C�4�*���a=�U&a=�U&����\�a=�U&_a=�U&��:�m_a=�U&�z�a=�U&9U�ma=�U&S7N<�z�_a=�U&9U�m}_a=�U&S7N<_S7���:�m_S7�S7N@U@;ĐU@;�c$�c$�LH�Z��c$��[��@=�c$c$��@=��[�\�c$�c$m�Y��E�#�#��=����[�c$��[�\�c$�LH�c$c$�h��c$�mc$�LH�Z��\�@=�LH��[��@=�@=�@=�Z�c$�@=�h�ث@=�m�/�@=�@=�mZ�dN@=�Z��@=�c$\������H�H���>�����[�H��6P�ZT�u-��W^Jق�Jق��=�u��&���`��ۘŤ� ���ۑ��Z���cQ� ���ۑ��Z���cQ��[�/�d"M��=�"Mٓ\����.: ���ۑ��Z���cQ�8���1�R��8������'��X��e��]��]¦�3M�]�&�s�_��؀&������_��PC�������=�\Χ�\�\E�N58�����\�\NB����M�\NB�8�����\�<�\�<5��\cOؕcO�\� �g/�\�\�\��b���\P��(e\T��(e\��@E�@E����O�����O�������������QQ�6�\�\�@E�\���O��\������\Q�\�\�Z�[T�\���<\g<�Z��g�\�& [o9/��I�B��I�B�Y���<���S;����#�#��=��I�B�� �c ���j������S;����S;����g�g�\�& [\�& [ �U��7�\��L�Y�Y�N��L�Y����O!��L��R���O!���<#�#��=ݵ���9/��9/��8���������������ؐ��U��7�8������������������������R/����\���������<�����PE�N���Y$������\�-��B�W�������`*�G8��-�8��`�K;� ��`�`�PB�W��PN��W =oO�g���PE�N���Y$������\�K;�[��K;�쁁�E�K;� ��g�ہK;� ��\�`����`���-�`y��U��Y$�\�K;फ़��`�����N��W =oO�N��W =oO�B�W�ĥ�oO�B�W�������T�����٣������T����٣ ,X �fB�[ ,X6 ��Zَ����[T�����Y�) ��T����S��S�M��S��D����S��,��4������[?[T���) �M��,��4�����ۡ8�Yg�/ۡ8�Yg�/�\K�6��KT��ٻ���Eې�;B�[B�[����Eې�;ġ8�Yg�/ۻ���Eې�;�[7���oO�������W�Y7��9 I�x<��|zN��B��h�N���gJ[�8 h�[)�QgJ[9*�G6h�9� N��#*�G�G����#;������#� N��#I2���#*�G�GI2���#� N��#cC9/��k���9/�۶��ocCb o"��cC\� N�oO�������U��?��/�U%�?��U%�?��Z������5I�A�Z����YA�U%�?��a��f����U%�?���1�'���:�k[�����'�gCF^�\�cC����Y���k�L�>�a�k[����[ݣ��D[fcCDcCcC��f����\�b ^�^�^�b ^�\䕂>�X�>�^��^�>�X�>�^��c ���^�^�\�b ^��܂>�X�>�^b \���ܞ��ݐZ�����^�8����<�^���:��2R����oMF^�^�TM�^���:��oR����o��ڑ\�^���:��2R�2RU���]�o�ۑ\�^���:���oؑ\�MF^�^�TM����$�`�U��Α�jݐ�[7���[���[��\Q���ߑ�?�Z�^�\Q����^⥘[7�o�[7��jݐ�[7�^�TM��ܞ���o��e�H�@DZ6��B�W�@DZ6��k7����\��6�ݑ6��@DZ7�B�W�a�G��Ne�H�U��[r�U��Q��\@DZ@DZB�W�@DZ>H�\@DZ@DZe�H�@DZ���7�g�Z+ܥ�>H�6�ݑ>H�6�ݑ7��B�W�\\Z+�6��e�H�@DZ6���W =[r�N�Q��S�OX�B�W�\���OZ+ܐ�B�W�Z+��`����B�W�B�W�oO�B�W䑑���W =�|�Z+ܐ�B�W��>HL��3��^�^�>HL�E?9C��^�^�9C��\�9C��O���ދ��e�ke�k9C��O��e�#�S�ڕS��\�k[��ؕ�e⒕ke�\�e������e�A���e���K��k�e�k�e�k[�e ��g�ە�e�\�a�>HL�O��kO��k[���5n;�=�a�O���ދ���ދ��\�^��ܞ��k[����I��㐲`�D��S�H�[������n�� &���n�� n�� ��Y>��\[&�TM�\�x�`n�� &�HdNxn�� n�� �W �W�H�xH����RW�H&�TM�H\�x��dNxn�� Y�xn�� ��n�� \xHdNxY�xH\HHT �&�v�W �ނ�W Y6 ��&� ���[I�T �T �&�H�TVKHTVK�LHY\[I�\[QTVKH /UX��&+ET�Y&��� &�\��Y&�������L� /UX�ǏY&تOX�&إ����M��j�C��C��HC��a�GC����\��j�����C��g�+�G���C��C�߲�4��L>���<�g�/��g�C��C��H\䲲e�?�Z,�2S�ڲ��4\�C����VC��a�G\C��\�?�Z۲`���`�����b� �<�@�������b� �<�@�������+�G=eޑA!��Y����]���]���]² �\��n�� <â��&���i���`�p�W^�\��W^����â���&�]H��Mۓ������]�B��]�丏_�B��Q�@���Ǐ_��ۢ�����ۢ���\�kY�3k[��[C�m^r�/kY!�mQZ�4���GkYmQZ�2�G����?���8���O�/��/�b���Y$4���G\�2�G������4����jT�TI��G������4��� G����V�1I2�T���/K;�[��/[�4���V�1m���V�14��HC���������V�1Z��4������mQZ�V�1�����V�1mQZ�����Z��mQZ�V�1V�14��QZ��j�jT����\�4��0=�4��mQZ�4���G\�QZ��j�jT��G]&W�M��G]�/[ې�G]4���B!�G�G]4��0=�B!�G�G]�㛥w���Q��a=����O7�7���{O��W�Q��N<���OY$a=�7�\�a=�!�[?W�a=�Y\�9����L�a=�\�a=�a=۵a=�*K���{O��7�*K�Q��Q��*K�\�����W��W �R/��7�7�R/��\����R/����R/��đa=�*K���<���<=���G�����<=��<=���z�6�ݕ��4���^���<��L>�Y$<=��Y��W�b���L��(\�gCF�<=������gCF�<=���z�<=���EJ���"=�OX�Wݕ^�������^�Y�Y$�OX<=����C^�P<����\��z6Q������6Q�����W6Q�����8��<<=��6Q�6Q�������!��!��%$��%�Y�I��P���z]A�8���J[^�{U� �zI�����A�8r���/�?�㚸^�S���8� �S�H�L[?!��h �[?<�?����^�Z!��<^�Z!��R���I��"�¦�3M�]�&�s�_��؀&��`4�I��"�Ǐ_��<��CzGV����������G��`4�\μ�T���T���h��cC����cC#�X�#�(e\�����(e��N<��N<��h��cC�������:YFE�YA��/��(e��N<��N<��cC���:YF��E�cC#�X#���TM�\�����(eE�h��cC����R/������:YF(e��(eE�cC���:YF��E�cC#�X#�R/������\���\��۵��JۅE����+����d�!�g9�[a�����LL^�L�g9�LV�H9��;6��[����V�H\�������gU��g9�b�������gU��g9ߔg9�[a�����o�LL[r0ث)�����c ���%�g��?�Z����:���7�`g9�xf�I�Zf�I�Z�g9�[a��a�o\����4���K���YA��r�2��)�0�X4���K{U� �W�^�?2���߀&��]�丏��؀&�I�4���Kr�{U� �b�P����Z���%� I��P���U��b���\[ �YU���U��b���[? �YU������I2�����4���b���b�X����_�OX9���mY$����40Z�?�6�_9��� �W�_j�b���U��b���#��������4���b���_>��OXY$#��������40�������4A� ����ܞ����� B�������4�A� ��U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\�Vh��ww��R���������]�p�W^Z����?�Z��\����%R=fE��q��L�U�����Ǐ�Q�qI�V�T3���T3���V�%�U����� ��K���Y��/���� ����K�M�� �&���@�5 ��T3������Q�@�I�Z5 �5 ����R�<���,���w���]��]¦��]�s�_N���4��K��U�����Ǐ_���:9����j�U��U����\�k[�j������:�b ����������2����\�e�������e���������\�4 a�k[�a�k[���a�k[�a�k[�a�k[�>HL�k[�m���OYA��3k[�m}f�L��������f�V�%L\�f�jT���b ����������f�L\�k[�k[�����ܞ�����������8���������������S ���MH�:���dNdN6%�) �) �b����>�ggh��h��mm����OX\5�Q��N6%�mZU��b"�Q�L��5��/h��5�Q�6%�\���X���^����Q��W��Q�"�������F����F������-��F���������-��6%�\��/���z��:YFH�Vh7�9V������ZU���ZU����OX���>��9 ���>��OX�H��+����P%��=�cCKݝc$e�$��k�!0��ܨ���H��c$b�X�eޝT3��+�G��T3����A#�~�\�k�ߏT<�ܵ�T<�ܑ�T3����T3��"M�������c5c5��M���H�ؑH�������赑�đ�~�"M��������CTY�CC��{S�R�;6CN<CN<C�@P��;6CgJ[N<C\�CCCC��;Q� ,X8��CN��N<[f�� �N<CIB�DLN<HCC��N<C\�H�N<CH�"M�Y��<�;6dj�XdN<CY��<�;6H$�\�CN<Ch��CH�\�N<C؂\�HH��jT�IB�j�XZ+ܵ;�j7F�;6��;6�؂Y�H�9V����N<C��jT�IB��u-��W^Jق�Jق�Vk�'u��&������!�X<�K�;�Vh���k�'���������޽]k�'���������޽]�Vh����E����������޽]�E����������޽]�"6�S����]��]¦�3M�]�&�s�_��؀&������_��PC������Vk�'\��ᦐ���\������[V��S7���H���I���I�{~�Q����B� ,X ,X�B�?�����8��f���gU��?��VhK�ޣ?������<?��?��?��a����H���I���I�Q�Q�B�k����B������������[V��S7� B�k��� � [V��S7a�O��D����\䐐����(S7S7����(?��?������(���tda��T3��V�����)%6P�[7���]¦�3M�]�&�s�_��؀&������_��PC������T3��V�\�]���s�C���1�Z��L>���<�_�W��gll�D l�D c xdNxpc \�p>�ݒ�h p>�ݒ��b ���kQ� �����p>�ݒ��b  ����U��c��m�U��m�i��p>��jT�IBؔ�U��p>��l�D `�`q��p �p �� ��b Q�� ��WÏi�Xl�D gll�D \^��ܞ�>�X�>����\����a�T>�l�D ���<��jT�IBصa��_�W�ڵ�W�ڞ��p�WFE�jT�IB��I�Z���I�Z"M�P��I�Zb�Xړb���I�ZI�ZI�Z9/��T �wY���<"MٓI�ZY���<���"Mٓc$Y$���I�Z9/��!�I�ZY$"Mٓ"M�I�Z�\�W�[r�c$Qc$I�Z��)���PZP6 ����)������)��۰�����I�Zc$Qc$0gQۏe�I�Zc$Qc$e�g*��g*�I�Zc$Qc$g*�EOO2�W �Y�/�I�Zc$Qc$Y�/�c$>Hϰ�c$I�Zb�Xړb���I�Z\�6 ��6 ��P��"M�P��"M�P��ww����tP����?�P��W��(P��W��(W��(h��?�Z,6U�ز,�P��W��(�?ܕ6U�ز,�P��W��(�?ܕN<�?�P��W��(W��(h��?�Z,6U�ز,�P��W��(�?ܕN����%���!�]đ>����%���!�]�<����<��{4�<����<��<��#�<��\�<��<����<��h�؛�όd�o<����<��όd#�c \��v��[�S�ڛv��M��W ���<���M�6�e�v�ddv��<��\�b���[kY�h��f��3kf�Y�Y���v��:�f��3kv\�[�S�ڵ�M�d�dM��o�Ï�]kk[�����<����W�H�[jQdd���K�[~�?���W �V�H�[�da=�+�5c !��[�b V�H�[ꔦ[T���Q'�^�k�[�L_>H�^��Y�D������`�[��W�H��[�b �W�H�[\�!��[�\a=�+�5��a=�+�5\�[��W�H����[��W�H�\d��d\������m�[��ث���m����\���7�ZJWw[������+����R/��Z�m�[��ث��+���Ӂ�Z���Zw[\�JW��7�ZJW�Y��<������Y$[H ��e⥞+�G�e����X���X��Z��E+������X���Z�Y��<\���{4�ث���\䐟�"8�R/�[R/�E+����+����+��v��v�W���I�MA�7���A�7�ī��"8�R/�[���]�p�W^[f�T�4������T�4䃃������MI�S;�M�T߸`Y�P�T߸�;��T߸�"6�S����]T߸��)%6PT߸�`���:���C`��T�4���C�^▸Jقi�X��q�����T�4����Ř[7����3M�]�&�s�_��؀&���T�4��E�T�0����Ǐ_��5��[f����T�4����\Ξq���R��e������<)������<)����]�%��Eۘ�y�Y*/��K���L�p�W^i�X�f۸Jقi�X��U��f�QY���a�i�����������]�W�@���]�V�1����]�丏_V�1����P}J����Ǐ_N�;P�����������M� �����P}J����\����i��������߶��(e��HۘB����Y�eeB���p�W^��~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��e�Bn �W��Ǐ_eŜ�e��~�?��]\����i��������B���B���p�W^���#�����#�߽]� O� O��9V1`���#��R�ْX<�K�;`���#�����#�����#�߽]9V1�����`��~�?��]��R��~�?����a�����]¦�3M�]�&�s�_��؀&������ޜBn �W��Ǐ_�����Ŝ������ޜ�~�?��]\�ϘB��T�4�B�8�q���Tܔ4�B�8u�4�B�8����-�B���Vh���]6�S����]B���p��p�W^��) �gCF]4���� ���� 4���a����<��6���I�A���I�A� ���'L�TI�TI�O�M�3��W7;�M�M�3��W7;�M��"����ؐ�]��]�4�B�8\�[c���ؒL>��[c� � �\J���3M�]�&�s���؀&��t��;Q>�������Ǐ_@�t��;Q>�������Ǐ_��tt����L>�dN�to��gl:������i�XJ���q�b vH���\t��;Q>��������\SYF�=�g��=SYF�R�\�Vh �VhNHϰ�c$I�Zb�Xړb���I�Z\�6 ��6 ��P��"M�P��"M�P��ww����tP���a�`;U������b Q� �������b  ����/Z�8�����/Z�8�����U��,�i��y� �S;�M��h ���픒q��[�������Ll�D p �p �� ��b Q�� i�Xl�D l�D c ;UL>����U��h��jT�e�`NrJ�`W�rNrJ�`;���a�T>�l�D a�T>�l�D �U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\�߶��(e��HۘŅE��P�Z���p�W^��K�Z2R/�y�h�U��Y*/��K���L�����a�i��!������6U��[r���]��~�?��]��R��~�?����a����y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&���Bn �W��Ǐ_�=�*��[k��6U�؜�~�?��]\Κ���������q��L����g����Ǐ�q���8�{��Jق���jT�q���`�������9V1����h q��V��V��a��T3���W�@��W6�ު����W�@�����]�W�@���]�]2��_�������g����Ǐ_���� ����k�'j������g����\���1��������������i���U��Y*/��K���L�pu-��W^I��Q� ����I�I��Jق�Jقq�������H����O���J�E �����NC��]w���]����]�؞�]�e��]�"��]¦�3M�]�&�s�_��؀&�������� ����Ǐ_�������\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\�m�p��b m���p��b  �����p��b Q� ����zi���h �`p��q��p�� �`� �`� ݘ�����]�����<��Z,�������]¦�3M�]�&�s�_��؀&��_N�;P�����<��ߛp��RW6��RW6�����<���'� \�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7���"CzG�d�\������۠���2������C ��k[����C ���WI�9C ����CI���C �����C ��\�WI�>���X��WB�>���g�[c��g��WB�;�S+�G�OXg���WB�\��dN�OXY����[r0تOX;�S�OX�~[IتOX\��9/�����XY����[r0ؤX;�S�OX�~[IؤX\�2���� ��� O��g�"�;�S�OX�;�S�X�;�S��D���z}��������i��������b ��b ߶��(e��Hۘ����Y�ee�p�W^U��gcFN�������M�\��=�� ޜ�~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��e�~�?��Ǐ_eŜ�� �e��~�?��]\�va��W�H�a�`a��1O�6Pa��W�H�\�va��1O�6Pva��W�H�a��1O�6Pb va��W�H�\�a��1O�6Po��Ó�[�/�a���b p����G" �`� ���1O�6P�EN�.:��a���b p���b p��5K�p���G"��b po��"F��"F�I�Z�U��,�����S�i��N�`�����G" �`� �ԑ���6P��R/�-�6P�b p�b `����JقJقV�%5K��#���<������mm�#��#��=�a�k���M�#��=�k[�#�mU%�?��Y�:ک�=Z�\�D��I�A��z�[?W�e�\����\6���z�[?W�e�\���� O\6����KR���KR�eާe�g����\���O��KR���KR�eާe�g���� O\���OI�Zw[��TP���KR�Z#��KR�\����k����������ĐH��������!��!��%$��%�Y�I��P���z]A�8���J[^�{U� �zI�����A�8r���/�?�㚸���[����^E'GJR{���gCF�Yk[����b�X�Y^E'[����e��:YF���Ϋ���7��[����k[����g�/�YU�����EOO�=Zᥲ�g�/�YU����EOO�=Z��g�/�YU����EOO�=Zᥫg�/�Y���<[����7�\�[������LE���[�[������L��U���[���ؐ[����U������U����U����U��Yb�Xڥ��"M�[����U���U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7���"CzG�d�\�M����Zm^�K;�����:YF��� �o�9�����W��9��W� ��3�L�7�J#>�ᑲ �\��P=� �\�b M����Zm^�K;���� �o�9�����W��� �\��b � �\��P=9��W� �\�L�7�J#>�����\����$�RW6���$����$�RW6+�G���$�RW6\X�[k�<�<�\����<�<�"������$�RW6+�G����$����p��RW6`���p��RW6`đ���p��RW6`�d� ������Jقdc�gJ[dWEU����� ��:4�EU�EU�!�����8�!��!�Q��dNY�YY����X�:4�gJ[d\��:4���!�Q���:4ٲe�!�Q���:4��ZP!�Q��!�Q��Y�YY����X�:4�����\�dc�\X����Đ����8��"M�"M�9�۠pv\�C�\��"M�d\?2�?2�b ������Z�R>���>�����k�PC�������e�pvp�[T�CzG^�Y�\���e���>������>�����T�R9�۠����W��v��v�W�^�Y�S�H�H�6�\��\�C�\��ٓb ?2ݵ��.:\����.:l�D c a��W�HٵpT�R�"M�T�R��P6A��W�0=�P6�P6Q4��P6YU���8��Q4��P6���7<\��� Z*�=Z�P6�Z�M<8�7<=T�0=�P6�8��Y$0=�P6\�*�=Z[ۇ��P6^r�P6�8��Y$�P6\��� Z��A�^r���O\��P6\6��U���P6\6��y��P6\6��g�y�Q�����U��Y$�P6\���OZ���6�Z����M���W�M�� ����y�U��yځY�:EU��EU�#��EU����L��I2�I2����m\����EU��"5EU�#�"5����EU�Y�:EU�EU�EU���؁EU�L�߁"5m\Z+܁��8������8����#�EU�m8����L��(8���"5�"58���I2۵I2�8����L��\�\Z+����m��<8�����[\����4���KT4���Kg�/�K�� gU��XN���'��V���N����T�I��P�����=���X[��:����6"F�K�ONB�[V���z�9 �[��K�O�W�4���K4���K��X�cF�I��[V������B ���I��P���gQ���/��:!54���K�4��B�4���KI��H����{U� ۷56��AQ��I��P���NB�[V��bU�4���KT4���K^���4���KI����J[�4�n���Y�)%��B b�P�����6�6�#�I��P���@YE�H�@YE�+�G\�����w9C�6�S�Vh7�b��b��S1��{����;�T�J�c7� ���������������V�K�������V�K��T�JY8� c7��=��=��8� 8� ���m�8� <��8� �c7c7\5��@YE�W��@YE�\c7c7TVK8� <��8� 8� ��@E�@E�����wc7@E�@E�����w�m�)���������w���)���������w@YE)������������w��6�S��W�۔\�Q���cC�cC"M��;6�=�S7����Yj7FW��\�E۳cC����YL\��G��[��1�أ[�!�W�y�L�߳j7F�cC\X�Z�=C�;�����R����:G�����;H�[�\j7F�j7F�;6�=��;6�=�N��M&�������N��M&�������N��M&���\�X���W N��M&���ĐN��M&����W��[\�d��� ���S7��YW��\�d[�Q�~�N���<���~�N���<�ócC\��<������j7FĵZ+�����ؐ`Z+�Đ`���D�T�R���rE)�T�-����'�����������=S�)'n;�@��\��������������������S�)'�2�G>HB�\��8��������?��W����S�)'y�����a�M,B \��8������?��W�����S�)'����\��8������?��W�����S�)'2T�@=\��8��������5�W�����S�)'y�n;B \��2G���S��E�BA�����S�)'y�n;B \��8������?��W�����S�)'S�)'L�>�\�S�)'y�HFE����O\�S�)'�S�)'\����đS�)'�H�b�������S;�<��6AP�P��k���!�H�b�������S;�<��6AP�P��k���b���������b����<��S;6�6\��Q/ۥ`����D��CzG�إ`����D����ߛ�`����D�ٵ��đCzG�إ`����D��䑿gl:P�v�W�e����<)P��H�E���<)P����&���gl�����V�%��gl@DZL��e����<)P��v��<������\�glg�/��ᾰ�����glV�K��gl�����V�%\�e����<)P��v��<��e�ڛ��<)P��v��<����<��<)P��v��<����<����<)P��v��<��ӫ��<)P��v��<��gl\������H�7����P���������ᾰ�P�ᾰ��������ᾰ�P��đ���ᾰ�P���HKR�XQ�) ����@P�ٱٱٻ[�S7) ����@P�) ߕS7) ߙ�Y����HKRb �V�K�X���HKR���HKRJق���(eHKR�;{S�RJق���HKRb n�����HKRHKR~���ݣ���HKRQ����HKR�;�@P����HKR���HKR\�ٱ�N��;���Eې�;{S�R�@P赐�;6�j7F��HKR��HKR�;��<��y���[�"M٢�o�\I�cU�ؠcU��b�Xڨ��U��#��=�Q���CY���<����d"M�\Y�"M�Y�߶߶�Y�"M�Y���<����\�^��#�RS7d\�S7���C���#�R�#�RC��cU��cU���ٓ��o�����ۓ���ٓ^ⵙ�.:C�"Mْ.:\����.:ĐC���e�� �� ��b Y� �� ��b � ��b e������b Y�����b ��b e�`�d��qY`��q�qe����9r�Y���9r�9r�e�`�Y`�eަpY�peަ[T�Y�[T�e�^╕e�d��\�d��YY\^�YCzG�[7�d��[7��I2rl�D (ecCd����dN��YY?cCd�Ri�XYL�\�d� ������JقcCde�N<�!�N�m!����dN�X���e�W%CL� �y����;NXN<�cCd\X�YL�P,E���e�d\[���pGCFS�6 ��p �߶��g4�U��Z+�[V����U��Z+�[V���Đ$��!�;C�'3;C�'3;C�;C�EI���m;C�'3;C�;C�'3;C�#�EI���\�EI���Q��W EI�*1��1�e�[�E� ��EI�ނdN�1�EI��EI�;C�;C�'3e�I2�EI���86��EI�e��'3mK;��'3m�e�[�e���Q��W !�b {g�/�T<[b T<[g�/���=#;�QX��;C�'3;C�EI���\YI���=#٥��Q�86�`���EI��ߥ��Q����f����Q�mf���f����Q�mf�L��(\�mf�m�E������T�JT�J��AQ��T�JY���m����T���E�����6Am6A�Eڒ ��S� ���>S�[��\�� ����#���\����#�߲ ��R�\�J��Z휲 ��� �YU༜\�J��\�\�\�cO؜�y�h���L�-��d�P�6QޜN�u-��Θ6�S����]�y�h���L�cU�[0<W���i���p�W^q��B�=�N�Ϝ�N�~�?��]��<ϜϜ��~�?��]����]��]� ����_�_��d\�u-��W^�ERZ�����S����� ���Y�a����-�����������6S��� ��Q� ����i�؞ؘŞq����q����1��������i�����p�� �"����ؐ�]��]������]�s�_������!���Ǐ_�ٞ���������\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��� �CzG�d�\��E���b  ������b Q� ���ےqq���E� �`� �Jق��b y��WCJقV�%U��a��l�D yڶ,�U��h� ��i���E� �`� ��Wݔ������Ll�D ���ؔU��c��m�U��m�i���h ��E� �`� �p�W^`� ݘ[7�����l�D �`� ݘ�U��;6���H+ K�p��������;6j7F����]��]��;6���\���]�pu-��W^�[7�8[�����[�-�5 �ŅE�[�q���[��؞�5 �����Q�@㔅E�[��i�X�f۸Jقi�X��q�����¦�3M�]�&�s�_��؀&��[�����PXǏ_�[��ԅE�[�\�� �%�U��h�U��Y*/��K���L��I�A�39�39�"�]��Eۏ�X�]T�S�R����&�]���&�]�%ۚ�I�A�39�39�"�]��Eۏ�X�]9V1��)%6P���9V1aN�a����]aN�a���]¦�3M�]�&�s�_��؀&����Z��S�M��Ǐ_dN�Z�Z#�����Z��S�M��\ΨdNاgCF�\����< ���\e�>��T�R�Jق�Jق�JقV�%VhJقq������ߛm����T����a�i���uVh���e��]�e��]9V1uVh�������]��]�����_�PC������\�Y�뼼j�!��7FHY��c \�j�e�kY�:e�\�k��j�e�Y�:�A��Y��He�>Hj�e�L��Y�뼼j�\�jT�rB��#���\g�\�P6g�xS�H[�[C�I2�\\x�\��� ZZ��A�y��� Z�g��P6\�Z���6�Z��Vh7�`�P6������JقU��N�;P%�W7�q����qq�����%�W�]¦�3M�]�&�s�_��؀&���������1D�9%�Ǐ_�2���p ��%�WZ#T���������������\Ζ������Q ���.:����(��]���¦�3M�]�&�s�_��؀&������_��PC������[���\΅P��u�n��!���J�E �����<)�����؞�]EO��gR;��J�� �@܏`R��v�W��f�5@DZ�P�Z�w���]�"����ؐ�]��]�P��\��KL���=#D[-�Kd"M�R/�["Mٓ���R�����`\����.:���]¦�3M�]�&�s�_��؀&������_��PC������R/�[\�n�?Y��L�P�6Q�82R����82R6QP��P�6Q�g�6QP��x�\�jQ��A�g�6QP�6QP��P��Xw��j���g��X�Xw��j�����n�����ؐ��Vh7��P�6Q��X82Rd�J#2��P6\��P6\��P6\����P��P6�P6\�9V�����P6�P6����PX���P6����PX�pa�`;`\�l�D <��;<��\�l�D c ;c \�U��N�H�;���a�T>�l�D �@DZī�d�"Mٓ��B�����%���ۢ����p�.:A����]��]�U��Y*/��K䔔>@���Ǐ_��GdN�t��0<z��>@\�u-��W^Jق�Jق�jT�IB�u��&���]¦�3M�]�&�s�_��؀&������_��*[Z���IB�j�d��jT�IB�\�A��p�W^�c$ڔ�d���c$�"Mٓ��Ũe��]��`�.:��]�c$�6�S�[���dc$���c$�\�Q������[7�����U��[7���V%cU��`Q�?����]�b��ۑ{~��o�Q�摘\�`����q���`q��ZU��B#;� ZI�A�I�A�]��]¦�3M�]�&�s�_��؀&������_��PC������cO<�������\Θ��W A���U��W^V�%A���V�%T3��A���T3��[c�A���[c����A�����S�M���TS�M�¦�3M�]�&�s�_��؀&��S�M���TSM��Ǐ_S�M���TSYF��S�M���TS�M�\������W ]��W V�]�����W ]��W V�] ����7��W ]��W V�]��W ]��W V�]��]���W ���Ԑ�W ��W \�gCFD����D���������5����gCFD�����D�����#�5��g O�Y\6��5��S;�5�Y\���O�Z+ܵ�چX��5�����^�H�b���b���0:�[?W�b��ۂ0:/ FVh��[�Z���K;�oVh�|�I�b���^�H۠o���|�o�|�\J���|�I�o��|�]�㛐��U��J��9��|�;Q>�������䑕�i�X�f۸Jقi�X�؞q����q��@��������� �Q �Q��]���]�s�_��"5 �Q����Ǐ_�"5�H�:I�M�"5 �Q �Q\�c �:YF�B�N��<��IZHg�[r�����I�\H�4�c �:YF�B�N��<��IZHg�[r�����I�\H�4�c �:YF�B�N��<���ZHg�[r�������\H�4��:YF�B�N��<��c \��a=�U���h��gl\�W�r9��,�[c�gl���a���a����� �8�o�8�� ��ڒM�z��M�z���a�P��ؠ�����a�P�����a�i�Xa��8�� U����]���a�P��P����"�S�M�S�M�P����a�����<�����X��!O�ū�"� ><65�2�(�8赑�đ"� ><65�2�(�8��������7F�����7F�glj�glx����^�gl:9xI2�x�\�9��<���������[����9\�Vh7�glgl��Z�Đ��Z���d���ٔ������]��PC������d����\�ӫEr�I�������L>���<����<)������WI��P���<)����]Vh�\U��+�G�YI��`�����T�����WI������T��P���T���]Vh�\I�gl��YI��`�0���㑑\���H �XE�:ܵ��đ�H �XE�:��%��o �e��X`o�X`����%����X`����V���%��Eۘ߶�ū���W^�c���L�[7�CR�ǏZ6��������GD�D�-��������GD�D�-������Jق�-�u� �\J��e�%��������U��ui�XJ����đ@��������e��]��]�b �b �q��vH����H��<����<��<��H��c ��<��c 6��[���<��[N�/�V\�WI��� �[DP�0BN���K�����) ����HP��%K�D�� �>�%��0BN�S�ZَQQ\Q����;��/�T<����ے"M�\���O��WFE�������!��!��%$��%�Y�I��P���z]A�8���J[^�{U� �zI�����A�8r���/�?�㚸����%��Eۘ�a���Q�摘Zَ�ޘ� ޘS�M�S�M�B��ūL>�������KO0=����K����KO0=������y��y����L>�������KO0=����K����KO0=��_����a��[DP�A���A�����(����4�s�_�(������_SYF`���\�d���"Mٓ�������(�e��]�.:��ۢ�������<)�����؞�]��]¦�3M�]�&�s�_��؀&������_������e�Xf������\΃��ؒÏ � �\J���|۞ؒ��|�o��\J�2m�N�L>Y�OX���J���K�I�N��ۏ�Ï������� Vh�Z!��<��^�B��]�丏B�N��Ï;Q>�������Ǐ_@�Ï;Q>�������Ǐ_Ï����Ï��i�XJ����������� �K��|۵�|�;Q>����������\z�iz�i��� �@������ �Kݑ@��|�;Q>��������q��vH��|ۑ�A��p�W^6A���]�.:w���]��]�U��Y*/��K���L�u�K�Y*/��W^�K�Y*/�U��u���]�s�_N���4��K��W�����Ǐ_dt�.:�mb �;�-��W����\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7���"CzG�d�\����i��������߶��(e��HۘB����Y�eeB���p�W^��~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��e�Bn �W��Ǐ_eŜ�e��~�?��]\���<�����X�����]��K��%۞q���`q��ϘB�a�{U� ���]�s�_����V��������ZCI��=Ǐ_���j�����V�������V������Z�\��NB��B ��8���������z�9 �[�gQ��K�O{U� ��{U� �4���K�PC�)�8�dN�������I��P���[?��Q��=�{U� �^������]�s��I����J[��N%�^�����^��I��=�Z��A1������ې�w�4���K�z Xs��̅U���{�1���� ���N�L>�<=���\���cCd#�\����WI�#��=�@DZ@DZ��z��WI���/�V<=��L>�[���\�ߛ<=��L>���XY$�<=��L>����\�@DZ�@DZ<=��L>ᵳ<=��%Q ��WI�Z+�@DZ���\���� T����S�M�Z+��<=��L>���X�<=��L>�#PS�M��a�^���gJ[#��g�/���a�(Lx#��gJ[a�#�gJ[�a�1����xI2�x�\���4��C�a܂��4��C��YA���g�^�(Lo��^6�^ra܁^�a�g�a�(L\�^�g�^���������=9��������Ǐ_@��|�;Q>�������Ǐ_��|�o����|�;Q>���������i�XJ�����\�|۵�|�;Q>�������đ@��|��W�@���W�@���]�q�b q��vH����g�9/��@[r����[r�TM�U��TM��TM�k���g�@g�/�g���U��������[r����U��a�G����TM�V�%J���TM�V�%\�QY=����b ���[fA���TM������K��������@�P}J�J��Y8�I�M=�K��K����@D���������!��!��%$��%�Y�I��P���z]A�8���J[^�{U� �zI�����A�8r���/�?�㚸U��Y*/��K�ϘB�I�ő��W^������ER‘�p��]��W^O���J�E �!���J�E ������'��X��Z+����]��]¦�3M�]�&�s�_��؀&��0;����J %�Ǐ_�E���A��0;���J�E �\�U��m�i���b Q� �����a���b  ���ےq��a�� �`� �q��`� ݘ�����]�"����ؐ�]�a����]�X<�K�;w���]���H��M�H��M۞�`N��.:����]¦�3M�]�&�s�_��؀&���/(a��_a���a��\��#�!��!��#+�G\�d�d�+�G\� ⭝�#�4���KT4���Kg�/�K�� gU��XN���'��V���N����T�I��P�����=���X[��:����6"F�K�ONB�[V���z�9 �[��K�O�W�4���K4���K��X�cF�I��[V������B ���I��P���gQ���/��:!54���K�4��B�4���KI��H����{U� ۷56��AQ��I��P���NB�[V��bU�4���KT4���K^���4���KI����J[�4�n���Y�)%��B TZ��<�0�ZZ��<�0�I��P���QZ�RZ�R�/g��QZ�RZ�R�/\Z+�Z�R?2�9��9�ّZ�R�[ݶ��9��9�ّZ�R?2ݶ��Z�R?2�9��9�ّ�/�mZ�RxZ�R?2�r�r�r�r�r�H�U��r�r�r�r�g�r�r�Z�Rx9��9�ّZ�R�/\�b��������Qb��۲Q���Q9/��J#�w�w\Z+�Z+�W�[4��cCZ!���OX�OX�[�\�[���c [\�9��<��9���cU��c (9��>���۶��9��}RU��e⥞���[a����[���[��%������%����v��<��[w���[[�����T8�[\X�������ڕ�QY=��=��:YFn����E�RQ�RQ٥�����M���3��=������Vn���P,E��-��PC�Z#���;����Z#����"����%�EU���[�L�H��g�$Z#W�n��E�QY=��=��:YFn��Q�n��\���RQ٥����w����a�����������%����đ^����Lvv����[����`��qY`��%pq`p�pqY`p�%pqeަ�Y��%e�� �Y� �%e�`�Y`�e���j��Y��j��e�^���;6��b�7�[?���%e����PC�����;6\��;6YY\����[7�^�Y�CzG�[7���;6�[7��^�HۑS����b���mb���0:�[?W�b��ۂ0:/ FVh��[�Z���VhK;�oVh�|�I�b���S��^�H۠��oS��H����S��S��o���|�o�|�\J��b��ۂ0:m0:m0:b��ۂ0:/ F0b��ۂ���=��I2�b��ۂoI2�ob��ۂoO�ob����h�� � b���mb���\�0:�6 ��6 ��0:�9��9��k��0:�0:m0:\��|�I�o��|�]�㛐��U��J��9��|�;Q>�����������@D6ߛJقY���<���zj4�k��Y���<�R/�k��j4�W���Z�V��OX��Z�[C)�����������N)�G���abE�k[�KN��@D62ߛ2�����Y���<��Y����đ@DZ�>����[H �����\�����������\��Y��[H ���Y���\��Y���������Y��\�J���<��<)����_e�ڂv��<��\����H�P�v�W�_e�����؞�a������U���3�k[����������;ې��;��=#�SJ[�J��J���=#�SJ�Vh7��=#�SJ�?��[r��=�*���=�*��+�TF��+���+�TF�S �+�TF���E��PE�ddH�:\�dC"M�d\?2�?2ݙb �b�����{~���b��������f��������f������b������f��������l�D YL��YL�ٓ���ī��H,�6 ��� �H�\�;�{����;�j7F;�{����\�j�XZ#;�j7Fj�XZ#\����G����TY�\��j���;�j7F�G����;�\䳐j7F;�\�T �������M%\[g<�T ��M%\��ؒV�������p �ߏgc�F�M%�V�������Z#Y�j7FY\�������������O\�9,����������O\;�j7F�j7F�9,�����������[r���;6��BM��4���4�"�]�����4���4�"�]� ���]�BM��4���4�"�]�����4���4�"�]��]T����O���O�Zَ�ޘ�p�BM��4���4�"�]�����4���4�"�]��]�y�Y*/��K�R�����W�Ǐ_0���yڶ,���i���B�CU��b  ���ےCU�q���W�U��m�i���CU��b  ���ےq��p �`� ��1O�6P`� ݘ��"����ؐ�]����]��]¦�3M�]�&�s�_��؀&��CAR��CU��_����z�CU���CU�\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7���"CzG�d�\����i��������߶��(e��Hۘ�p�W^�"��~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&����#�ߜ~�?��Ǐ_��#��Ŝ��"��#�ߜ�~�?��]\���f�[� ,XH�B�[ ,X�Y���Y�S���;Q��T�����) [�F�����I����QY*9*9B�[gCF[�S7S7[�\����Y�|��KT��ٻ���Eې�;B�[B�[����Eې�;ĻS7[���[ۅEې�;����i��������߶��HۘB����Y�eeB���p�W^��؜�~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��e�Bn �W��Ǐ_eŜ�� �e��~�?��]\�`U%�I�!Cj7FT�E�U%ۓ`U%�I�!CO���J�E �����]T���V��q��`S,�^�\���U��,�����S�i���d�� ���ےdV��q�� �`� ����`� ݘŦ�3M�]�&�s�_��؀&������_��PC������V��\���ۢ���w�p�W^�a�e���a��N�82R����[i�Xa��������8�;���a������(�����8T4�6P���[�A�8]���w���]��]¦��]�s�_N���4��K������۹���Ǐ_dN�t��& [h 9C�������۹��\�߶��(e��HۘŅE��P�Z���"��~�?��]��R��~�?����a����p�W^��K�Z2R/�y�h�U��Y*/��K���L�����a�i��!������6U��[r���]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&���Bn �W��Ǐ_�=�*��[k���6U�؜�~�?��]\�����Q� ����I�I��o���u<��;6��`;��`�����9V1�Y�eeO���J�E ܅���]�`�b%e��]�'�`��M����]¡�e��;6Ǐ_�@��3M�]�&�s�_��؀&����e��;6Ǐ_�& [e�9 o\[�;6�=���ϡ��;6��\����:����fU��k[���\�gcFfr9V����<������<����f�����c$ڔ�c$�u-�A��p�W^��<�����X���� �%ۨe��]�`�.:���]��� �PE�N I�a�{U� ���]�s�_����c$�[���Ǐ_[���dc$���c$�\�p��a�i����ERZ��u��&�+����p�ER����������q��L�}����Ǐ�q���8�{��Jق�jT�q���6�S����]�p�W^������9V1����q��V��V��a��T3���W�@�����]�W�@���]�V�1����]�丏_V�1����}����Ǐ_���k��=�}��=��}����\���ۢ���w�p�W^Z����?�Z��\����%R=fE��q��L�����۹���Ǐ�Q�qI�����(��������8T4�6P���[�A�8]���U����,�����]¦��]�s�_N���4��K������۹���Ǐ_dN�t��& [h 9C��������۹��\���R=������X�%#����\����X�%#��\�����������X�%\����R=�����R=�R=�\�) ��%��'3���\��@���) \�@�\��%��'3��%��'3[<��~�|4��*G5K����@�9V��N���4��$���(���(����(�L>���<����<)������WI��P���<)����]Vh�e�ڑ�g�/�mY$gl�\���<)�OXgl��'3U������F���������������U��5�����������6�k��������WI����P�����]Vh�e�ڑ�g�/�mY$gl�\�L>�I�B����E��=P�^�����=[V��`L>�L`L>�^�I��Z#z�HۡP�^�gl:�\�*�GTM��*�GTM���L[f{~�����D����D������D����[T�Y����gCF��ى�4N���k,�Tٱى�) ������ٱ��$��K#��) F��������;Q�M����T���;Q���T�Y������[r�:4����B���,Zَ��M��Zَ��Zَ�������ۮ��S݉�L[f{~�K�މ�\�ٱ��KT�����D��N�0K��gcFN�0K݉� 0K��0=��XW�Y��k�dY��<�Xd��[\�cCddW��ߛd��\�0=��XWZ#ߛ0=��XW\X� �ݮ������F�������ٻ��X �T�;Q�S�) �ٻ����N����n��Zَ,D���������wܸ�Z�cC)� F����Zَ,������ۮ�F��!C�ZَI����*9QY���cCj�����dW\�%�W���)� �cCd\X�O����O���\����`�Z�h �����w�\����N����n���Z��ꣵ�X9�X`������ߛߛJ��\ص����Z+�Đ��KO0�گU��KO0گU�Y�2�YA���FگU�\��KO0�گU��KO0گU�YA�گU�\��KO0�گU��KO0�AQ����FگU�\��گU�WAQ����FگU�\��گU����=���گU�\�������V����|ۑV��o��������,�������hOXW�W��k%��N�\��������J��������>�>�������V���\������:���B���\������E[:����\��������%[�����\�����������%[��\�`����^�L���đ�����mh �I�Eەh ����mt�h L�Nc S t�_b �h _b Vh��h m+�Gmh \�HS�^�kb S,�t�Z�R��b �h \�t�b [�6JS,�t��P�\t�h L�t�]^��ܞ��t�`���ٖ�S��^�jT������^�S��\�S��m���OYA�Z�Rm��S��\䖄ϖ��S��\��Wߖ�W�jTفf��jTٖ\�jTٵ�ܞ�f��3�k[��� M��n�7w� ����Q��ܶ��=��Sf�W�ZT��m���#�I2�=��Sf�W��Sf�W�m���:����^rm���\m���:�^rm�\��Y��E�m���:�\Y��Sf�W�\�xf�I�ZK;�nف�\xf�I�Z=��\`e�O��>������⮻���`e�"M� S � M��S�,S��S������T��,�Tٻ�S��n����U��#�#��=�e�`�`e�"M� e�W�\�>��k[������5K��PE�C�R�W�X5K��PE�C�R�I����]���]��W^�\�p\�p\�p�W^����jT����]Z+����]��]�*G8Ǐ_a�{U� ۦ�3M�]�&�s�_��؀&���OX��7�I�M�*G8]\�u-��W^Jق�Jق�)����k�u��&�`��ۘ��f�5�`�e��]����n �ɐ����]��]+�G��/A�_�� �I�A�+�G���)����k�!I��Ǐ_��k�n cO<7���)����k�\�u-��W^Jق�Jق�)����k�u��&�`��ۘ��f�5�`�e��]����n �ɐ����]��]+�G��/A�_�� �I�A�+�G���)����k�!I��Ǐ_��k�n cO<7���)����k�\ΐ�U�u��U�A��p�W^�������(��ۢ����.:�����]�ϘB��U�_�U�?�L���� ��U�s��U��W�H���U�N��t4 ���A!�zQ6�X�U���U�\�u-��W^Jق�Jق�)����k�u��&�`��ۘ��f�5�`�e��]����n �ɐ����]��]+�G��/A�_�� �I�A�+�G���)����k�!I��Ǐ_��k�n cO<7���)����k�\�j�y���[��d���"M��oo\��X��[�d\��X�Y���Yeށ��7�B8���T(k�'mb�����)��e��/�gk�e�k�'J#��)��k�'���e�b�g�b�b��������b���e������e���8O�b��۪���)��#����ނm�#�������/�Y$���/��#�������\�#����ނ#��=�m#����m#��=�Y$���/��#������\�a�L>���<�g�/�a�g�/�g4��w�\�a�a��W�H��Đ>5L�gO��gO��vEۇ�gcFNmv���[a�Gc ���#�v#�E�#�vjT�a�G\�gO���<#�v��[����M��j�vE۲v����<#�jT��M��\�`�<#�v��[���v����<#�jT�\䐕� �đ�� ��k����<)����Lg�/���<)����L6�SؔU%��=��<)������<)����gO�����NB��B ��8���������z�9 �[�gQ��K�O{U� ��{U� �4���K�PC�)�8�dN����]�s��I����J[��N%�^��������!��!��%$��%�Y�I��P���g�/�YU����b�X�Yg�/�Y����X\�?�Z,��2S����\䐲`��?�Z۲`TI�EIݵH��e���Z�5޵5���S/��+��dM�������`����ު����"jT����]�W�@�����]�W�@���]�i�X�f۸Jقi�X��`�������9V1�q��V�1����]�丏_V�1������c����Ǐ_�����WI���c�8�N�YS�H�����c����\�ٖO�/'� �\����Y����/� �\����Y�65 �\����Y�@E� �\����Y�Y �\����Y�R�Y�ii���/�R�Y�i�`imR�Y�!�i!�g�R�Y�ix �\�k[�k[���۰���������Y� ��'%�����Z+�� ��'%������U�����OWM2H۫(e��U�����O�WMH۫(e�����������WM�\B)B)G\[���/O�kB)G7��OXD��k\����/Oݧ�4�]�㛵����I�MA�7�\B)�B)G��>T�����B)G\[B)G>T���^�(e^�(eI2�^�)�J�)�J�[?a=�o^��W�Jق�W߸)�J��m^�(e�W�Jق�W߸^�)�J��[�\�^��Z_�J�)�W�Jق^�h���W߸^��Z�W�Jق�W߸^�)�J��\�))�J�o�o���)�J�o���mmdNm6��dNmmmdNmM� mdNY�:�m6��6��6��T��\�mm6��T��6��dNmmmY�:�m6��6��6��T��\�`�W����;]�p�eޥo������]���]��W^�\�p\�p\�p�W^����jT����]Z+����]��]�*G8Ǐ_a�{U� ۦ�3M�]�&�s�_��؀&���OX��7�I�M�*G8]\Ζ��Ŗ�����–���W^���i�X�f۸Jقi�X�؞q����q��@���������Ԑ �Q �Q��]�V�1����]�丏_V�1���� �Q!���Ǐ_�N�;PH�:��"5 �Q �Q\�u-��W^Jق�Jق�)����k�u��&�`��ۘ��f�5�`�e��]����n �ɐ����]��]+�G��/A�_�� �I�A�+�G���)����k�!I��Ǐ_��k�n cO<7���)����k�\�I2rl�D (ecCd����dN��YY?cCd�Ri�XYL�\�d� �������=�ݒXYj7FcCd��=��\��=�ݣ�cCd\X�YL�P,E���e�d\[g4�p ��5���Q۶��g4ῳ�j7F�j7FĐ�;6n�M��*��l�D �j�������?�Z���:�?2�^�kW�W�b ��^�L\Z+���!���A�@YEH�dN@YE�8�@YE�/g�@YE@YE�H�\䵐`~�!���A�@YE!���A����ܞ����V.�ķ�!���A���=�I2�T��=�7�G������/xf�I�Z�=�9��<���x孶��xf�I�ZI2�T�7�G���������Y�:T�7�G�����L��kdN���7�G�����\�h������\�!���E��PE�Y龎�8\�w[�YQY2��=w[�w[؏�=�*���=�*�꫟�+�TF��+���+��S �+�TF�H��PE�\�����ٟ��>T������E����+��+�TF��=�*���=�*���PE�6P�PE��PE�6P�H�:>T������YA�Z���I�y���E����YA�Z���I�y� ����YA�Z���I����YA�Z���I�i���i�W^�㧐�]��a����]a��������N���VcU��`�;���Wee)��D�@DZe��]���<�����X����a���ūk�'��Hb �F��Hb �F�����g���g�R2�������F������Y�R2�b R2�������Fb �F�����R2�Y�Hb gcFNR2�b gcFN�Fb ��8O�R2���8O��F�U��7�U��a�G�k㛛���������S���|ۦ�3M�]�&�s���؀&���|�;Q>�������Ǐ_@��|�;Q>�������Ǐ_��|�o����|�;Q>���������i�XJ���\�|۵�|�;Q>�������đ@�V%;Q>������ّ@�H��M۞��8 ��5]�@�Y*/�Y*/�]�@��|��W�@���W�@���]�q�b q��vH�Jق�-�u�ؒ �\J��!���I�H���� �[a�u�ؒa�o\J��^�H۔pb���p��!���I�H���� �^�H۠u�ؒo\J��!���I����Ǐ_�����Z!��<�!���I�H���� ���!���I�H���� gU��!���I�H���� �!���I�H���� 6�S�u��!���I���i�XJ��V.��HKR�[7�9V1�[7��"��]T�Α@�R/��]�b �b �qq��vHۃ��ؒÏ � �\J���|۞ؒ��|�o��\J��Ï������� S���|ۃ�^�B��]�丏B�N��Ï;Q>�������Ǐ_@�Ï;Q>�������Ǐ_Ï����Ï��i�XJ���|۵�|�;Q>���������\�@���|�;Q>�������ž�q��q��vH��glx��#��?2���Zۛ_C����P�gl�H+ H+ �Z�x�ۛL>���<�k_Cx�ۛL>���H���\�C��6��c gl\c�#��=ݳY��<�����gl\X�\c۵�ې�����������;gl��9U�g�H�;�g�H�;�����<EOO��[���:YF��[ݩe���:YF\��4�� �eEOO�[��[�\�g�/��:YF\�k[����Y�I����� �HKR@DZL����6��M%��k[�����6�������Y����N���<�Y�e�\�� �@DZS �@DZ@DZe���eĐ����L ��b���b�X�Z#b���b������b���b���b���HY$b���\��W�W�b�X�Z#�W�b�XڏY$0gQ�\�?2�b W�b�X�Z#b�XڏY$?2�\�9�ۂ6 ��9��b�X�Z#9��9��Y$9��\����b�X�Z#���b�XڏY$\��������S�H�Q���n�Hۨ��gCF͚c$c$���c$b�X� �b�X�Z#\䙙�.:S�H�S�H������M���b���b�����M��訨e��"M�"Mْ.:�aN�����M����U��7�������Z����#��� H+ ��#�H+ #��� ��#��� 6 ��H��H[?O���U��7��ZU���N�@DZ�U��7�{4�������Z�������HY���<[?O���U��7�U��7�H\�Ԓ%���������%��ZaNe���<����e���<��/���/�e���<m�m�%�me���<��k[�e���<��/�k[�e�����ZN�%����U�����O�W �H�I��(e��J��I��J��U�g���g�/���g��W �����<�_\T���TJ�[�5�����������/����������T���Y���<��I2۫Y�&�I2���G:7��"H��T�OXZ������/�Y�&����H����[kkm[U�gmb�����������/�Y�&����H����[kkm[U�gkgHHkg���������mB�0� g�Y��������9���9� 9�Y�m�9Y�m9���H������H��m�Y�m����Y�mmb���Y�m���Q'�mb���Hmb���m��mb��������g�mb���[U���/�Y�&���Z�f��~�?��f��\��[�~�?���[\�Z�~�?��Z�\��W �~�?���=Z�~�?��\��K�jݣ��K�~�?��I��Y$S<\䣅�K��PC����K�~�?��I��I��\�5 �5���B�?�ݕ��5��\�5 ���9r�_��\�5 ��!C���\�Z��K�[f��f���[��[~�g��~��=Z�\�dYA���Ăeޕ�e�\�5 ���5 �\��K����K�\U��5 �\��"=�Z+���Z+���������/����/����~�?��������ooxI�Zn����n�n�xI�Z!�I�ZI�ZHI�ZI�ZHxI�Zn����xI�Z!�I�Z9/��I�Z9/��"M�S;�<��S;�c ��S;��gU��\��9CoxI�ZI�ZI�ZHn�n�d"M�xI�ZI�Z9/��S;�<��S;�c �S;��gU��\�WI���۵����ؐ`�gU��ދ��Q�������R� ,X^��8� ۼ�\�Q۠D����8� �^��8� ��O�=�E�8� �f�K\����gCFH��� �+�G\���'3��W�\�L�缫���k�<�Q�����\�dN��'3��W�\d��a�����[������Z�VhdN�\[f⼫�Q,9���%�W��d%�WTVK\d�dN�����\���������<����������gCFH���\������ܔ�'3��W����8�������8���������R�Z�#�>��YA�Z�#���m�8�Z�#�Z�#��8�O��Z�#��[����(O��O���g�g���8�8����Z�#�Z�#����Z�#���<����Z�#��gZ�#�m��gO�����8�RU��n�RZ�#�1r) �Z�#�\H��������m9'3mmm���m\k���8T�Z+�����ؐ`Z+��>��YA۵��؏YA�5= ���n�����ؐ`��8T�9C����T�m���m��u�b���4 ��U%ڛ�����7FN�i���U��c �a�d��"Mٓ���Iٓ�e��]����ؐ�]�`�.:���\�����ۢ�����]¦�3M�]�&�s�_��؀&���L�_ ������\�U��a�i��gcFN=��W�r�<�a�cU��`b����U���cU���b����=��6�S����Đ���@��ĒMېY���[�/۲ �i�Xa�Zَ�ޘU��Tߘ`� ݘ��߶�V����Ta�Q�]9/�Q�摘��8�� ���@��������Y��6�S����]U����]cU��`«����^r�K�4�^r��e��1�,�^r�����U���d��[rI�s�k�Z�RZ�R��Y7����L}�[��f�\���M��������Z�����<����RW�����6�W٥��M��������Z�����<����RW�����\�}R6 ��[rI�\�}R6 ����6 ��[rI�����[rI���6 ��RQ��;��\�5��[rI��6 ��[rI�\�6 ��k���6 �7Q��6 �����6 �7Q��?����[rI��[�Q��W������6 �7Q��[rI����6 �7gJ[�Y�����[rI����6 �7gJ[��[rI���6 ����6 ��[rI�\�[rI������[��ނ����[rI�\�U��Z+�[V�ݥ��WFE��[rI��WFE��e������#�߅E�Y��<��[�;k�:�gl���#��h��e���gl���#�߅E����#��Y��<\�e����������ޅE�Y��<���k���W���gl������W#�[�;k�:�e������gl����ޅE������Y��<\�U���<��T��E�+�G����T��E�9�<��U���<��T6�E�+�G����T6�E�9�<��U�����;pN�7�&��7�&��'�%pN�����pN�6�>R6�>R[�M�[c�7�S��-2$�-�7�mmS��7�\m7�[� �E�����߶��(e��HۘŅE��P�Z�䜜~�?��]��R��~�?����a����p�W^��K�Z2R/�y�h�U��Y*/��K���L�����a�i��!������6U��[r���]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&���Bn �W��Ǐ_�=�*��[k��6U�؜�~�?��]\����i��������߶��HۘB����Y�eeB���p�W^��؜�~�?��]��R��~�?����a�����]�y����v�v��a�]V��_�y����v�v��a�]V��_�a���3M�]�&�s�_��؀&��e�Bn �W��Ǐ_eŜ�� �e��~�?��]\�߶��(e��Hۘŏ`�p�W^y����v�v��a�]V��_�y����v�v��a�]V��_�a��R�ْX�������]���7��~�?��]��R��~�?����a�����]¦�3M�]�&�s�_��؀&�������~�?��Ǐ_Ï���D���������~�?��]\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\ζ���������i���u-��W^%��EۘI��Jق�Jقq������ᔐ���u��&�H��������NC��]w���]�؞�]�e��]� ���]¦�3M�]�&�s�_��؀&�������� ����]�  �_��������\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��CzG�d�\�� ���]���]����H��M�H��M۞�+���A���a�i���p�W^���%R=fE��q�L�.:�������<Ǐ�Q�qI�I�Śؓ����6�M�V �Z+����]��]¦�3M�]�&�s�_��؀&���.:�������<Ǐ_�N�;P�g���ђ.:\�D�ّYI��`�!�!�b D�ّYI��`�����[7��b \��[7��b �[7��g�/��������������%����%�V���p�؞�]��]�YI��`�� [Z��Ǐ_8������W)'���/=ݛ�H��YI��`\��a��gCF� �(�8�TN���9��a��T3��b ��b p�W^���������2��><�] �`Q7<����][�[�]S��^�gl:�^���<��w���]w��]¦��]�s�_�����OX����RE���(�8�\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7���"CzG�d�\ΑgcFfr9V����<������<����f�����c$ڔ�c$�u-�A��p�W^��<�����X���� �%ۨe��]�`�.:���]��� �PE�N I�a�{U� ���]�s�_����c$�[���Ǐ_[���dc$���c$�\�U��,�����S�i��m�*E�Jقm��*E�Jق �����jj'��q�� �`� �q��`� ݘ����YB�*E���YB��"8������ �j0���"����ؐ�]����]��]����*E���YB�\�q��oO�H�'H�'�����]��[�`ZP%���;]��������6�S����]�`A����]��E��E޽]��]��_�����_�������G��)��r\�b ��b $�5P��MAW�=‘�W^��]�������B��]�丏_�B��$�5P����HZ�Ǐ_N�;P$�5P��T��T�T��W��Kk�$�5P��MAW�=\�I��^rI���[�\�gCF���%7W1��HO���Q��gCFQ��%\�U��#�#��=����`쨨�S����쨟�\�!���`��k[�����᨟�\�����ĥD���Q�䑕�i�X�f۸Jقi�X��q��R�ٲ`}� �Q �Q!���J�E ��W�@���]���]�s�_���� �Q����Ǐ_���6 ��M� ������� �Q �Q\�u-��W^Jق�Jق����u��&�Zَ�ޘ��;��`Z������]¦�3M�]�&�s�_��؀&������_��PC���������\�qCzG`N�q`N�qZ+�`dq`dqQ�Vh�9U�`dq��a��'3[a�� �BEN�.:�����]� ���]����W�H�`\ΑoU�%��w[N�\�U�%��w[N�\�U�%��@E@E\�U�%���4@ �4�\�U�%���4@ �4�\�U�%�����G���G\�U�%�����G���G\�`U�%��^�L���đU�%���B��1O���B��1O���B�c �B�c �cC�c �cC�c �����H���[L>���<���<���\���������\{�1��\gl{�1��B���c �:YF�B�N��<��A�Hg�[r������@E�<��\H�4�B���c �:YF�B�N��<��IZI�B���c �:YF�B�N��<���Z��Hg�[r�����Z\H�4��:YF�B�N��<��c \���i�X�f۸Jقi�X��q��R�ٲ`}�f�5Ԑ �Q �Q!���J�E ���]�V�1����]�丏_V�1������ �Q����Ǐ_��6 ��M� �������� �Q �Q\�k[�Y�k[�I��I�}x��[�\I�I�A�k��[k[�I�k[�I�M��[��[\�U%�8�Y�U%�8۵U%�8�{�1�k[�k[���"�`�N�{�1��we�kg4��we�w\���5��e������<)����������������]�"��]������]�s�_������_N�;P�����������M� ������P}J\��;��B��B��H�H�]�Z�]H�^�a��Z�H�a��p�W^��]���q����q�����3M�]�&�s�_��؀&������_��PC������H�\�I2�R�����>H(�k�[��8��kg�b�X�\�kk[�����U��,�����S�i����t ���ےq�� �`� �`� ݘ[7�����`� ݘ�����]�����]¦�3M�]�&�s�_��؀&������_��PC������\���Uލ%O���<�����X�������%��Eۘ��U��cU���K�48�@D6����Uޫ���H�T����H�I�����:YFT�I�����:YFg�6��g����H����H�I�����:YFI�����:YF\����H����H�I�����:YFI�����:YFg�6��g����H����H�I�����:YFI�����:YF\����H�I�����:YFf��:YFI����c f�c ��\"M�g�S���P���a=�U���h��gl\�W�r9��,�[c�gl���a���a����\����������6�S��:E�6�S�������\�TY����6J���6J�[r�����P�\��\Z+ܥ�> �? ���������V1r�V1r���)()�3�C�؜{O�wI=Q�V1r��[�G[?W��V1r���[��V1r�w�GR/�\���\�w��� �� �;6���Z+���:�Z+ܻ�\Z+�Z+�U��;6���Z+�ĻU��;6������L �䔐U����L>���<�g�/����Hᔐ>����L�l�D L>���<�_t4 YL�GRl�D �g4����H�a����H���۵����ؐ`U��Z+�[V��l�D �E�l�D ����L ��p��L ����S7HKR��%�߶�Zَ�ޘQ�摘ūMKݙMK�\��6P��6PۦMK�Y8� �MK�\����ܞ��6P�ZTb�X�b�Xڏ����<\����.:8� �8� �6P�ZT�MKݙ6P�ZT�I��\X�e�>��T�R�Sf�W�}Sf�W�;>�Sf�W�T��Sf�W�Sf�W�Sf�W�Sf�W�\��k[�Z����%���đk[�Z����%�9��<���K�7��j7F�:YF���K�kv6 ��%������[�9Uާ�K�6 ��W�%���K�`%���K�9U�v��K�"M��K�\�%��%��`� ݥ��c$��1��cCQ�~�~�X"�� ,X"�Y�b�XJقn��cC����Q�N��M&���Q�cC"�S7��\�X�XN��M&������N��M&����d� ������JقcCd�����W�g4῾����WF�2� ����X�WF�2� U��Z+�[V����U��Z+�[V���Đ�WF�2� �c ��T<@DZ���Y���<)������)�����"�jQ�T���<��<y�YL���Uލ%O�ū�S;�d\b �IB�kIB����g��=�ݙ\����.:��.:S;㠵S;��ٓb�X�b�Xڥ��Vh7�jT�IB��S;�d\b �IB�kIB�IB�IB����g��=�ݙ\����.:��.:S;㠵S;��ٓb�X�b�Xڥ��Vh7�jT�IB��d�?Y�"Mٓ�?Y�����%�p�ZI�A�I�A�]gl`��`�'L�������������]�g�X��RP<��D�Z�V�]��%K�V.�����(�.:gU����]��]����N��t���?Y�\�qpv��6�S����]�p�W^�X<�K�;�"��~�?��]�"����ؐ�]��]¦�3M�]�&�s�_��؀&������_��PC������d\�<>�� ����A���c�� ����A���OXA���OX�\��I 9�����YI 9�ؘ���)%�V�]�p�����4���4�"�]��]�U��?������q���`q���`���)%�Ǐ_N�;P��4��TI�EIݨ0<Ѩ`\Α��$��������y�Y*/��K���L�p�W^%��EۘŒ��1JR����8;�R��`U%�I�!C�����K�P}J�����WB ��������ު����}����!���J�E ��W�@���]�i�X�f۸Jقi�X�������]�s�_��gO��ܪ���Ǐ_���B�J�E �R��9V1>P>4!%����(��"`t�P�`�`N��.:���]�����_��PC������5�\��@�V�T3��ƘU��Vh�a�L>�� �%�U��[7���%��Eۘ��]9V1��#5���]9V1������]9V1Ƙ��]9V1��<�����X�����]9V1�����]9V1�L�`¦�3M�]�&�s�_��؀&����fۘ��Ǐ_��fۚ�oŘ[7�����fۘ\���ۢ���w�p�W^���%R=fE��q��L�����۹���Ǐ�Q�qI�����(��������8T4�6P���[�A�8]���U������]¦��]�s�_N���4��K������۹���Ǐ_dN�t��& [h 9C��������۹��\��W����W���pe��'3����[i�Xa�qb p��6�S����]U�*V.1��pu-��W^��]R�����]�s�_���e��'3��� ���%�Ǐ_���a��6Je�I�A��޸��e��'3��e��'3����Ke������\��k��W���\�� ���]���]����H��M�H��M۞�+���A���a�i���p�W^���%R=fE��q�L�.:�������<Ǐ�Q�qI�I�Śؓ����6�M�V �Z+����]��]¦�3M�]�&�s�_��؀&���.:�������<Ǐ_�N�;P�g���ђ.:\���]9V1��<�����X���a��W^ئ��|ۑV����`��U��%�o�|ۑb��ۑ��S7Q� �����|ۑ��L�`����Q7��Ǐ_a��ئ`�[V���ئ���S7Q��ئU��Y*/��K���L��f��f�h=�`��]¦�3M�]�&�s�_��؀&��`����Q7��Ǐ_dN���[r�z+�G��`�\�`�\�qH��Mۓq��ۢ��qp �q������%R=fE��q�L���Ǐ�Q�qI�H��Mۓ��ۢ��p ���I��� �H��Mۓ�� ���ۢ���� �p ��� ސ����]�B��]�丏_�B�����Ǐ_N�;PdN�t��� ޓ\�f�^���L��27�J��Ǐ��I�����V�v�����V�v��a�]V��_�a��T3��b p�b ��]�b p�b �"��]�b p�b U��Y*/��K���L�p�W^�2��2���� ���2��2���� �z)����2��2���� ����2��2���� �=���2��2���� ��]�V�1����]�丏_�V�1�����27�J��Ǐ_�2�N�;P)���� �=����27�\�u-�b ��b �6�S����]�b �b p�b p��p�W^�9V��Z����?�Z��\����%R=fE��q��L�z����D��Ǐ�Q�q����JقQ� ����I�`��ۘ��]9V1I��[C)[C)[C)�M�|��=�Jق�JقU��Y*/��K���L�z����D��u��&�w���]��]�z����D��Ǐ_�@�B��]�丏_B��z����D��Ǐ_�[Q�����z��z\��Z�@NI�Z^���� ��b Q�� l�D m�OM��b m���i�����b Q� �����OM��b  ����)�OM��q���U��c��m���b Q� �����OM��b  �����h )�OM��U��l�D q��p �`� ݕJق�OM��b ���b ��b y��WCJقV�%q��`� ݘl�D ��j7F����]��]�OM�ϘB�4��������OM�ԝOM\�U��,�����S�i��JقQ� �����Jق ���ےq��p �`� �`� ݘ�ԖU���&�V%�W�@�����]�"��]¦�3M�]�&�s�_��؀&���[��[�G��Ǐ_Wٖ>1e�S )�����Z#�[��[����[��[�\�‘Ϋ�[i�Xa�p��pΑ�W^+�����]�p�W^��W^�Αp�W^p�p�W^U��Y*/��K���L�V��V��a��T3���ER��ER����ER�ER�ER\��=�I��x9V14�CzG�����>R��]¦�3M�]�&�s�_��؀&��`4�I��"�Ǐ_��<��CzGV����������G��`4�\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��� �CzG�d�\ΐ[��ڔ�������a�[����[i�Xa����p�W^�Z���<�?���%���O���J�E ܲ`����]6�S����]Vh���]���;������W�����.:����(���]¦�3M�]�&�s�_��؀&��[�����%���Ǐ_�7�CcO�z�����[���\�k[�YI��YI��Z��0:YI��h��(eZ��0:Z��0:N�+�GZ��0:YI��THPHPU%�?��>���LZ��0:>���>��HPHPU%�?��>�������Z��0:>���>��6Jeޟ�Z��0:Y�b٧�I�A�ߛ�� �HP\�D�������!�HPHPTHPHP���6U��THPHP\�HPHP��zHP\�D�ّ�YI��`�gU����W���W����YI��`Z��0:Z��0:��YI��`>���[ �>��YI��`>��>��YI��`HPHPYI��`đHP�YI��`�v^�gl��:�k[�j�y���j��[�v6��^�glvv�W�gl��^�glvv�W�v\�6��vvP�v�W�m�\���e����y�[C)y�p[?M� w!�^�w�������jݏ��&��c��ݲ �g�/�i�XA��ܛA�����<�]������W�2��><�]��I�A��I�A�A����]��]�V�1����]�丏_V�1����� �Q����Ǐ_�N�;PH�:ѐ �Q �Q\�u-��W^Jق�Jق��� i���"�cu��&��B5Z5�:������؞�]�g�/�����������e�H��/6>��$C��=K�����������e��]� � �<�@������`��]¦�3M�]�&�s�_��؀&�������:������_ �<��HKRH��HKR/6��"�c\�a�`;U������b Q� �������b  ����/Z�8�����/Z�8�����U��,�i��y� �S;�M��h ���픒q��U��l�D p �p �� ��b Q�� i�Xl�D l�D c ;UL>����U��h��jT�e�`NrJ�`W�rNrJ�`;���a�T>�l�D a�T>�l�D đo9 �����?��?�[H �����w��\���Z+�9S9������?��?�\wZ+�9S ����0���O3��?�[H �N�������\���Z+�9S�W���M������?�\wZ+�9S�W���M0��ᑑ\w\�9S�ڄ9S���W���M\�\�����MVK�\w�$3��N�푑o\����đ\wN����<��y���[�"M٢�o�\I㭛"M٢�oo\�cU�ؠcU��b�Xڨ��U��#��=�Q���CY���<����d"M�\Y�"M�Y�߶߶�Y�"M�Y���<����\�^������#�RS7d\�S7���C��������gU��C���#�R�#�RgU��C��cU��cU���ٓ��o�����ۓ���ٓb�b�Xڥ�^ⵙ�.:C�"Mْ.:\����.:ĐC���c ��J��������B)G���gl����x�\���[�EU�!�hۿh�H��[�j��:YFH�hۿh�W�r�[�j�H�U��!�hۿ����W ���<��hۿ\�ې��Ĕ������8����I��P������A�8\[�Hg�K�[�G?�㚸z]A�8���J[^�{U� �zI�����A�8r���/�?�㚸i����T�JقJقQ� ����o��mM%`�쑆��b  ���ے��q�����Ti��o��mM%`�쑆��b  ���ے��q��� �`� �ܘ��R/�I�M‘�W^����]��]�������a�i���b y��WCJقV�%��3M�]�&�s�_��؀&������z�U��mK;�"5M%�mM%\���ۢ���w�p�W^���%R=fE��q��L�����۹���Ǐ�Q�qI��������8�;���a������(,��������8T4�6P���[�A�8]���w���]��]¦��]�s�_N���4��K������۹���Ǐ_dN�t��& [h 9C�������۹��\ΔA���ؔB��A�e�����H��M�H��M۞��B���p�W^U��Y�b���U��YL��U��cU��d�A����"Mٓ����؞�]�g�/�������������c��;[8������������[�`�`R�ْ.:Iٓ�����ۢ�����]�A����)%S�Ǐ_ZH[���<�������ZA������A����\��"��]���]����H��M�H��M۞�+���A��a�i���p�W^���%R=fE��q�L�.:�������<Ǐ�Q�qI�I�Śؓ����6�M�V �Z+����]��]¦�3M�]�&�s�_��؀&���.:�������<Ǐ_�N�;P�g���ђ.:\���]9V1��<�����X���a��W^ئ��|ۑV����`��U��%�o�|ۑb��ۑ��S7Q� �����|ۑ��L�`����Q7��Ǐ_a��ئ`�[V���ئ���S7Q��ئU��Y*/��K���L��f��f�����ؐ�]�h=�`��]¦�3M�]�&�s�_��؀&��`����Q7��Ǐ_dN���[r�z+�G��`�\�`�\�jT����]9V1%��Eۘ����������8�{��Jق�jT�q���`�������9V1����h q��V��V��a��T3���W�@�}�����W�@�����]�W�@���]�V�1����]�丏_V�1�����W6�ު���Ǐ_���N�;P�WB���W6�ު���\ΔaNu��&��q���`q���q���`q���f�j��f�jT�aNuB����]9V1�"B���p�M���;��P��6P�`cU��`�E���� �]�"�f�U��IfV�]��]��a��W��"����ra���aN\�U��[7���߶��(e��Hۘ�p�W^�Hۘ�y����v�v��a�]V��_�y����v�v��a�]V��_�a��B��R��H��ڏ_�B��CzG�~�?��Ǐ_CzGdNؘ[7��� �CzG�d�\�M� ������� ��B����kb�X����^E'^E'���S��M� ��^E'^E'�����[?�ߧ��[?��Y�������[?�ߋ�[?�ߋ���ދ������k[�j���k[�j�[?�ߋ�Y���������\��gCFQ���dNاgCF�c$gCFb�X����\�S,�^E'����[�b�^E'���S��\����S,�^E'���\�����������ߋߟ��������������������e��\����.:�tgU�����EOO@DZEOO��@DZ�h���@DZ���O@DZg�i�@DZ��@DZi��@DZY���EOOEOO@DZe��Y$@DZEOO\�i�E�|��|��h��iE�|��|��|��h��i|��>�Q�>�Q�h��iY��� ��h��iY�ig�iiY���i�@DZ�\��@DZEOOZ+��=�*ܐe���e��EOOZ+��=�*��?�������^��gk�[�FO��QZ��=�����[�>��>�[��82Rg4��wS7����[�EU�[9�\�cC�[�H$ߪOXH$�\�b �L�OXb L\�L�ߝ>��OXYg�Y\�L�ߝ>��OX(e(e\�cC����cC�\X�h h ���YU���PC��PC���YUܼ����YUܐ����YU�ĝ�Z+����YU�Z+�Đ�}�������������K��W6�ު���P}J����B)%�!�[��W�@���<)������<)����]���1JR����8;�"5 �Q �Q�� �Q �Qv�W��2�z������]�W�@���]�U��f�QY���i���i�X�f۸Jقi�X��q��zE]A�8s�_z�������������������   !"#$&'egnpv~����������������������������������� %()*+,./12347:<=>?@ACIKLNPRSXZ[\]_abcefhijk .567DHQRcqr���������  058EOWglmnrstvx{|~����������������������������������������-69;BDFGHJMQTUVY^`dopuwyz}���������������������������������������������������������     &'*+-023689:;=?@BCEFGIJKLMPSTXY[]^aceghijl������������������� "$%(),./57<>AHNQRUVdfkmopqsuvy|~��������� & H S Y z{}���N q������������!#14DOWZ\_`bnrtwx�DxRhYVwGELiMPReRjNSHGfB^XRjNG`B�rpTeNGGTEE.17'%1+.%2-',, .+!249' %5"&).,42'19CGBANFIFj]iNPk�PIZ[NmyqHOFD]^�egOVlXLBEYI5=8"2??=:4>99=29?>:<5&<?>?5??<>3<;=H}fU@N_CYkPL]AZGKFaNFIEWKdsGqcM�Z^O@YEVOcZ`Za^GJCv43"6 #()1"4+$+21')-1-'%6(*4!:!/16JOUG`GQFa|[V\X\rCicT\QTN^NbGceqlNGEFTPiFVpX@NO^IXmPiLslSda\FrAbIdFPi]nd�GkHJqbaYW@Sc@QMZ}[h^[RqOd_ !#',$+!'10'4$./.*%17001!"# +:#4 ).7`m�xvV[oJAioQu{cB]pA\xIG#4&33?<;><58;4: =747<(2<7>4=9;<=;75<<<;=� �0 �  `� 8� ��(X� ��(8� ��(X� ��(X� ��(`���$@� a� .T�p��� ,\�`�� 2d �!� p�@�C2�@� 6d �!���@ C!21" t�@�C2��  �0`�� ( �0��@+ �0�€ / �0À / �0p� 4 �0`�� 8 �0��@ : �0��@4 �0�€? 1� A 1`��= �0@Ā* �0��@ , �00Ā. 1�€G �0p�I 1��@  1���6 01��� 4 41P�@ K 81pĀJ 1@�@L 0�Ā6 1�€9 �0�� N 1��@+ �0�€ + �0P�@ 9 �0P��F 1@�@ K 1`�@( �0p�@  �0�À 4 �0�� L �0��@ ) �0�€H 0@À L �0 ÀC 1�Ā< �0�€ C 1�� - 0�À3 �0�Ā , �0��@* �0��$ �0��@' 81��� K �0 �@ ' �0`�@3 1PĀ * 1��� D |0���O 0@�@N @1P� : @1ŀL H1p�� �0��@, �0��S L10� 9 �0��@3 �0���$ ,1��@' �0 �@H 1���> P10�0 �0@�@1 �0�Ā2 �0`Ā% T1P� & <1 Ā . �0��3 L1��� 4 81`�� 1 1��@ R �0��; �0��@@ P1p�� * �0PĀ J 0�@Q ,1�� 9 �0��H �0@À A 0���< T1Pŀ�+X�h��e �,\�`��K�/X����% �,Z�dт%�,Y�`�BK�2X�x��� �,a�d9�% ,i�d��K0X����K,Y�`�b� �,j�dY�%�,Y�`��K3X����e �,g�dA3K0X������,Y�`��K�1X����e �,a�d��K3X������,Y�`�rK4k�d!�%�,YИ��� �,k�d�% �4X���� �6:��hæ��6n��y獛7q�̙�a�:v�ใ'��=|���(��A�2T�P!C� 2tQ"D�1@�#D�=� �$H� Q�d�R%K�*Y�T�R�J�0U����%M�,e�d�R%K�*Y�T�ҥJ��l�ԩ�&N�}�R�J�*�T�R�J�*�T�R�J�*�T�R�J�^�y��śO^x�͋�/^�{��ջ�/^�x����/^�x�� ,8޿x�����/�?x����/^!)/7AELRY_lqw��������������������%/7>JMSY_mu{������������������  )3;BKSYadiqw{�������������������� %06=IQ\bmrux������������������  &+/7<AIOVbhos{�������������������$(,08@FLQTZ]ckpuz����������������� !',4<DJQYcks{����������������� #*26:DKTZdmqx~������������������� 09CHKOQU[`eiq{����������������������   $ ) 7 = B I [ _ e p y � � � � � � � � � � � � � � � � � � �     ' - 9 F L Q b i v } � � greywolvledpyccooncryptonomiconyatescorichardharringtondaiyijiangtmartinklepschfrankensteinchpilldanielcomptonframebazaardistrictlazyteststuartsierralanguagnomikatzsimonunravelgregsextoncimipathfindrobochuckgrimoirlibrmoehntemplatlexembertrandkbrentonashworthdiffrymndhnghydrofoilmorrislennifinderworddavidjameshumphreidiagrampowergigrigyannvanhalewynchadhsystemovichprojectcryogenerooijakdecktouchpanchemslonameparsbensubackendbenizinestukhkonservreplikativoxcartarrdemjunitbootmbjarlandoctetblogcodeelibenprobleminfraqueenovijaykiranplatformonyxvideojobezpxlpnkminamiquilappmacroworkfloappprocessorvotinginfoprojecttjamesturndgeorgievskiiowcybemmwmanleimpenetzkclojuredocjunjiemardoceivantsovpjewideaethancrawfordcraftybonlmalachunseoklebrunchboiovertonmcanthoniutilaudiojannistoragcompaniopenwonderdomplayasophidotfildesdemonaracksecdelitescerjuxtyadambutlerwdiscusshhucnstanfordmldylanfpricjhnstoreminvlledtichipetrparkourcernermrrodriguezwilliamparkruleclarakulkarnipushkardoctopugastovlearnreichertunacastdatasplashngrunwaldrayrutjcirclecifrontendsonpatkiprathameshforecastbrianmdlibsshconormcdworkshopfunctionstoylparsersubmansubmanioroblalbmabeirookclyferestquentinduvtrainjulianespinelbeehivtbrookadamaveraimerriphocrysislinuxjackschaedlgoyasparxhubhatniknbeloglazovbzzzjackdocorebuddidecimromangeneryamadapcmatrixgpufyquahlenslacksdslabcortexthinktoprandometluacdatainetdamballaphotonmicroserviceuxdataframghlrafdbraidbraidchatbotbejeweltsarpfgatlmhjortpostaljafingerhutamalloiflatlandjungertotakkuxboxstudiosprplaygrounddeniscostadscberrighelardialanbguthrifinaglduncanmortimluxbockmsgodfgrammatipeejanreplrefactoremacvermadarwinbhaumantonskifigwheelleinajchemistaerikssonmarickbenmidjyfractalcontinuoniwinztcsavagalesguzikmccraigmccraigolegthecatcatyurrriqkoeeoadiseanirbiicecapcljamchrovicaesiumlvhdaiduckijohnswansonosbertsamrobertonkeeganmystephencharlgrafterswirrlwalkthroughclojuragilecrleiningenmdrsbsdevquerenkxclojurexerccyanitzbintliffdanielgdracociclonevinaykaradiagaviotoardockdistellibddstufftjohanneswuerbachtianonxccdzarthuchopraspurtialexljharbcookbooktravizzzacidburnnelhagtwosigmamfournierudoprogstanislahugoduncanpatrickodjamturbwilberalgernonpharaujotzachvincentbernatmicrubclodocorpcswarooprekhajoshmakihirosudalubyruffibgtopeczbmhatfieldaphyrirudyakcounsylvixnjeanpralopyranviljoeraymbfritzshokuninpradeepchhetriforteryellerpatroxalqtimbuchwaldtmbuczkomoonrangzamaterianlispmeistfullcontactbowlofstewrhysrericmirwanrobashtonabaillidasallfolkshevtsovleonidthiagofmxeqinbergertechnomdotemaccodonnelatobeppuclojartobiaaerobioaerialjsavaultgreglookreadercomicradicalzephyrchazeltolitiufuturafuncoolnasarepositorimetadatacommonmschmeleriemannvideoampwebgeocommitdspclj������������� �����������������������������������������������                          ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b �(@���  '& (  $(  (!   $  44L|".5<@GLreposlicenselangmessagesubjectnew_contentsold_contentsnew_fileold_filecommit00 �K���Ǿ���}�����G����~�˟��ǿ��� �H���L���:����'H� Z��̠7��z�� �GH����(L� W�����0�� gH����8̡w�����@ ��H�"�HL����&:�P���H�*Z�X̢���.z�` ��H�2��hL����6��p���H�:��x̣���>�� � I�B�L�"��F:򑐌�$'I�JZ�̤&7��Nz� �(GI�R��L�*W��V�򕰌�,gI�Z��̥.w��^��� �0�I�b��L�2���f:�Ќ�4�I�jZ��̦6���nz�� �8�I�r���L�:���v�����<�I�z���̧>���~�� �@JЂ��M�B�І:����D'JъZ��ͨF7�юz�� �HGJҒ���(M�JW�Җ���0��LgJӚ���8ͩNw�Ӟ���@ �P�JԢ��HM�R��Ԧ:��P��T�JժZ��XͪV��ծz��` �X�Jֲ���hM�Z��ֶ���p��\�J׺���xͫ^��׾���� �`K�����M�b���:�����d'K��Z���ͬf7���z��� �hGK�Қ���M�jW��ֺ�����lgK������ͭnw������� �p�K�����M�r����:��Ѝ�t�K��Z���ͮv����z��� �x�K�����M�z����������|�K������ͯ~���������L���N����;�����'L� [��ΰ�7��{�� ��GL����(N��W�����0���gL����8α�w�����@���L�"��HN�����&;��P����L�*[��Xβ����.{��`���L�2���hN�����6���p����L�:���xγ����>��π��M�B�ЈN����F;�ѐ���'M�J[�Ҙδ�7��N{�Ӡ��GM�R��ԨN��W��V��հ���gM�Z��ָε�w��^�������M�b���N�����f;��Ў���M�j[���ζ����n{������M�r����N�����v��������M�z����η����~�����N����O�����;�����'N�[��ϸ�7��{�� ��GN���(O��W����0���gN����8Ϲ�w�����@�ЇN����HO�җ���;��P��ԧN��[��XϺַ���{��`���N�����hO���������p����N�����xϻ����������O�����O�����;�񐏼�'O��[��ϼ�7���{����GO�қ���O��W��ֻ������gO������Ͻ�w����������O�����O�����;���@��H���8���&@� X�Ȁ6��x� �F@���(H� V����0�� f@���8ȁv����@��@�"�HH����&8� P���@�*X� XȂ���.x� `��@�2�� hH����6�� p���@�:��xȃ���>���� A�B��H�"��F8����$&A�JX��Ȅ&6��Nx���(FA�R���H�*V��V�����,fA�Z���ȅ.v��^����0�A�b��H�2���f8�Ј�4�A�jX��Ȇ6���nx���8�A�r���H�:���v�����<�A�z���ȇ>���~�� �@B��� I�B�8�!��D&B��X�"ɈF6‘�x�# �HFB����$(I�JV’���%0��LfB����&8ɉNv“���'@ �P�B���(HI�R�”�8�)P��T�B��X�*XɊV�•�x�+` �X�B����,hI�Z�–���-p��\�B����.xɋ^�—���/� �`C���0�I�bØ�8�1���d&C��X�2�Ɍf6Ù�x�3� �hFC�Ҙ�4�I�jVÚָ�5���lfC����6�ɍnvÛ���7� �p�C���8�I�r�Ü�8�9Љ�t�C��X�:�Ɏv�Ý�x�;� �x�C���<�I�z�Þ���=���|�C����>�ɏ~�ß���? ��D��@J��Ġ9�A���&D� Y�Bʐ�6ġy�C ��FD���D(J��VĢ��E0���fD���F8ʑ�vģ��G@ ���D�"�HHJ���Ĥ&9�IP����D�*Y�JXʒ��ĥ.y�K` ���D�2��LhJ���Ħ6��Mp����D�:��Nxʓ��ħ>��O� ��E�B�P�J��ŨF9�Q����&E�JY�R�ʔ�6ũNy�S� ��FE�R��T�J��VŪV��U����fE�Z��V�ʕ�vū^��W� ���E�b�X�J���Ŭf9�YЊ���E�jY�Z�ʖ��ŭny�[� ���E�r��\�J���Ův��]�����E�z��^�ʗ��ů~��_ ��F���`K��ư�9�a���&F��Y�b˘�6Ʊ�y�c ��FF����d(K��VƲ���e0���fF����f8˙�vƳ���g@ �ІF���hHK�Җƴ�9�iP��ԦF��Y�jX˚ֶƵ�y�k` ���F����lhK���ƶ���mp����F����nx˛��Ʒ���o� ��G���p�K��Ǹ�9�q����&G��Y�r�˜�6ǹ�y�s� ��FG�ҙ�t�K��VǺֹ�u����fG����v�˝�vǻ���w� ���G���x�K��Ǽ�9�yЋ���G��Y�z�˞��ǽ�y�{� ���G���|Џ���O��[���Ͼ�����{������O�����O��������������O������Ͽ�������� � � &,49CHOTW\bhmry}��������������������� !#,078:@GMT\`fpv{������������������������� %-8?IQ^ckqz{������������������������!*2<FHOV\]`chmqy��������������������������  $&*/38;?ENTZbfmory|������������������������  "()-.27;?DIJNTY_glptw|���������������������������� ',8;?CEKNRWZbelqt{|�����������������������������  #+5=EFINPQWY[akt~�����������������������!$*38;=AIPW`hqy���������������������������      % / 6 ? F L U Z ^ d k r y ~ � � � � � � � � � � � � � � � � � � � � � � �      # ( , . 2 4 7 ; A E J Q U V [ b f i l n o s x { � � � � � � � � � � � � � � � � � � � � � � �     $ + . 3 : ? C H K O V Z ^ d k p v { � � � � � � � � � � � � � � � � � zerozyourselvesyourselfyoursyouryou'veyou'reyou'llyou'dyouyetyesyxwouldn'twouldwouldwonderwon'twithoutwithinwithwishwillingwillwhywhosewhomwholewhoeverwho'swhowhitherwhilewhichwhetherwhereverwhereuponwhereinwherebywhereaswhereafterwhere'swherewheneverwhencewhenwhateverwhat'swhatweren'twerewentwellwelcomewe'vewe'rewe'llwe'dwewaywasn'twaswantswantwvsvizviaveryvariousvaluevuucpusuallyusingusesusefuluseduseusuponupuntountilunlikelyunlessunfortunatelyunderunutwotwicetryingtrytrulytriestriedtowardstowardtooktootogethertothusthruthroughoutthroughthreethoughthosethoroughlythoroughthisthirdthinkthey'vethey'rethey'llthey'dtheythesethereupontheresthereinthereforetherebythereafterthere'stherethencethenthemselvesthemtheirstheirthethatsthat'sthatthanxthanksthankthanthtendstelltakentaket'stsuresupsuchsubstillspecifyingspecifyspecifiedsorrysoonsomewheresomewhatsometimessometimesomethingsomeonesomehowsomebodysomesosixsinceshouldn'tshouldsheshallseveralsevenseriouslyserioussentsensibleselvesselfseenseemsseemingseemedseemseeingseesecondlysecondsayssayingsaysawsamesaidsrightrespectivelyrelativelyregardsregardlessregardingreasonablyreallyrerdratherrqvquitequeqprovidesprobablypresumablypossiblepluspleaseplacedperhapsperparticularlyparticularpownoveralloveroutsideoutourselvesoursouroughtotherwiseothersotherorontoonlyonesoneonceonoldokayokohoftenoffofobviouslyonowherenownovelnothingnotnormallynornoonenonenonnobodynoninenextnewneverthelessneverneitherneedsneednecessarynearlynearndnamelynamenmyselfmymustmuchmostlymostmoreovermoremightmerelymeanwhilemeanmemaybemaymanymainlymltdlookslookinglooklittlelikelylikedlikelet'sletlestlessleastlatterlylatterlaterlatelylastlknownknowsknowkeptkeepskeepkjustjitselfitsit'sit'llit'ditisn'tisinwardintoinsteadinsofarinnerindicatesindicatedindicateindeedincinasmuchinimmediateignoredifiei'vei'mi'lli'dihoweverhowbeithowhopefullyhitherhishimselfhimhiherselfhershereuponhereinherebyhereafterhere'shereherhencehelphellohe'shehavinghaven'thavehasn'thashardlyhappenshadn'thadhgreetingsgottengotgonegoinggoesgogivesgivengettinggetsgetgfurthermorefurtherfromfourforthformerlyformerforfollowsfollowingfollowedfivefirstfifthfewfarfexceptexampleexactlyexeverywhereeverythingeveryoneeverybodyeveryeverevenetcetespeciallyentirelyenoughelsewhereelseeithereightegedueacheduringdownwardsdowndonedon'tdoingdoesn'tdoesdodifferentdidn'tdiddespitedescribeddefinitelydcurrentlycoursecouldn'tcouldcorrespondingcontainscontainingcontainconsideringconsiderconsequentlyconcerningcomescomecomcoclearlychangescertainlycertaincausescausecantcannotcan'tcancamec'sc'moncbybutbriefbothbeyondbetweenbetterbestbesidesbesidebelowbelievebeingbehindbeforehandbeforebeenbecomingbecomesbecomebecausebecamebebawfullyawayavailableatassociatedaskingaskasideasaroundaren'tareappropriateappreciateappearapartanywhereanywaysanywayanythinganyoneanyhowanybodyanyanotherandanamongstamongamalwaysalthoughalsoalreadyalongalonealmostallowsallowallain'tagainstagainafterwardsafteractuallyacrossaccordinglyaccordingaboveaboutablea'sa�� �4����������   ��w!D��������� fts_main_data�index fts_main_datastats!num_docsavgdl�index fts_main_datadicttermidtermdf��%�index fts_main_datatermsdocid fieldidtermid�J���index fts_main_datafields fieldidfield�z �index fts_main_datadocsdocidnamelen,�c Vindex fts_main_data stopwordssw4�;index fts_main_data\ match_bm25B�docname� query_stringfields+Kfieldsk*Kk b*KbK conjunctive4K conjunctive � � �tokens s ) �tstemmain � �unnest k �tokenize fts_main_data� query_stringindex/Kportersystemfieldids ��fieldid) fts_main_datafields"�* �fields)K � � m �&fsq  � �unnest � � string_splitmain�fields*K,system�fieldqtermids �termid l+dict fts_main_datadicttokensQ�dictterm�tokenstqterms ��termid�docid-terms fts_main_dataterms�2�* �fields)K � � e �fieldids�fieldid� � q �qtermidstermidqtermids�termid subscores  �docsdocid�len�term_tftermid�tf�df � �subscore*main t �logmain 0 �/main [ �+main � �-main� � q�num_docs( fts_main_datastats�dfsystem)Ksystem � �+main�df)Ksystemsystemsystem  �/main � �*main�tf � �+main�k)K systemsystem � �+main�tf p �*main�k  �+main � �-main)K �bsystem ? �*main�b � �/main�len� � n�avgdl( fts_main_datastatssystemsystemsystemsystemsystemsystemsystem w � Cterm_tf &�termid�docid A �tf count_starmainsystemqterms�docid�termidCcdocs (�docidqterms�docid��� conjunctive Z �countmain�termidsystem� � � ? � count_starmainsystemtokens)K X�term_tfdocid�cdocsdocid+docs fts_main_datadocsW�term_tfdocid�docsdocid+dict fts_main_datadictY�term_tftermid�dicttermid�score <scores ��docid _ �scoresummain�subscoresystem subscores�docid+docs fts_main_datadocs�2V�scoresdocid�docsdocidM�docsname�docnameindex fts_main_data�tokenizey�s I �string_split_regexmain � �regexp_replacemain � �lowermain { � strip_accentsmain-�0_macro_parameterstokenizessystemsystem6K$ (\\.|[^a-z])+*K *Kgsystem,K\s+systemmain;mainserialc �������c indexmaindata & __hf_index_idcommit!old_file!new_file% old_contents% new_contents subject messagelang licenserepos��c �秜q�h�����������������c c �������� ���������W�yyf@�W�yyf@�������� c c % HYLL@�W�yyf@�W�yyf@% HYLLA��%�%�%�������� �%p azzz$�%�������� �%�c �%�������� �%% ��%HYLLu�1@ �@�0�  �@@@�0�0@A0 @B@�@@��� �0`@   0�$ @0�� 0 @ A@@  �@���� 0 A@@ @��� �0@�D0��@@��1 @ �@�� A@�@�@@ `@@ 0P@�@@�C @ ��0@@� 0@ 0p@0E@�@@ � 0����@A@ �@  � ���@A @����@��  0�@ �@0�  P@ @@ �@@Q@ �@A@@�  �@ @@� `   @@ �Ap@�0� � �@� �A@  @0@�B0@��0@� @� @�! @�@P@� A!�� @ A00�@ �@�@@ @ 0 �D @ @   Pp 0�B �  @@@ ��� @@ �P@D@ �@P�@� @ 0D�`@@P�  @@@@� � azzz$% ��%HYLL@�@ �@ @@@�@@0@�� A@@  �0A� 0� 00��P �@ �@  @�@�@@��� 0 ( @0���0@ @@ @ @P@�0@ 0A 0��  @BC�@` @�@��@0 0@ �@��@�0� 0� @ 0@@�@@ ��0 �@� ` �� � � 0@0P@C�  ��0@��@@0@ PB�@@�00A�AA� �A@0�P0 ��0 �@0 @@ @00@�0@@` C  �10�!�   �@@��P� ��@C �@Cp0@@�� @@�@@ 0@ B�0P0@@ @@@ � @  �0���00� �@�  ��0@@C@�@`@@`�@@   H�A�@0@�@0 @@� @� @A @@0�A� �`0B0@ � @ @0@@��B�@��A��0pB�@!C  00c % HYLLu�%!�5�p��b �p�������� �pX)�p�������� �p�T$�p�������� �p���p��������� �p����������p��������� �p���p��������� �PK}Ȥ Y �PK}�������� �PK}���������PK}�������� �PK}���$�PK}�������� ���x�[����������� ���������������������� ����%����������� ۭ��,b ۭ��������� ۭ� ۭ��������� ۭ�8 ۭ��������� ۍ� X��b ۍ� �������� ۍ� �������� ۍ� �������� ۍ� �7 ۍ� �������� b % �dm�HYLLu @�@��@A  CA@�0� ��@�AB1@�0 �  � @@� � @C�@�AA 0 A@@ @ �0@ A�@!�@� @ ���@��� � @ �C �P`�0�P � 0 A@ C C � �P  `A@@0�@�  P@ � @�� ���� @���00D0� � @C@ � �P� @@DP��0�0@ � @0 A� @� ����� @� �@��HC @ ���@ �0 A@�@  �@0�@ �0A@@ A 0 �B0 @@C@��40�@ �0CP��  0@@��� @   ��  0A@ @ @@� @ @0� ��@@E0A@A @�0�� @ @ 0��P��@�0B@�@  @� �� @  ` B� ��@��@� 0@ �C��B@�@ �0C @ @B�  @0@ ��D �A @p@@ A D  �  �  @0�@@ �  �  B@�@@0�0@@ A�AB @ PA� 0@0 A  �@�@ �@@Q� �� � AC�@0� @ 0B  C�A�  D�  DB@@0��AA@p �0 @ 0  � 00�C0���00�A�A0�@  @ C @AC � A�F0@@ @   @! ��D�� @  ��� �P@@AE���00E@P AB 00C0���� �0@��   @ �00�� �@ @ A��0@  �P @A � D@�P@@ �@ AP p 0A @�� �� 0�@�C�0�@�A@A@0�P@ �A@�AD@@D�� ��@�@@P @ �0@  @1 @�`@`��P�0 � � B� �@C �� �@ � � @� % �dm�HYLL5@�%% HYLL��pXA�AhB     d�p��BxCD<      !"#$%&'()*+,-./0123456789:;��PK}�DE�E     d��� F�F0G<      !"#$%&'()*+,-./0123456789:;dۭ��G@H�H<      !"#$%&'()*+,-./0123456789:;Zۍ� PI�I`J ��  ��������  �� commitsubject  ��������  % HYLL5@ commitsubject % HYLL @@A sy�yc P�b c �������� c ��b c �������� c 8� c �������� b % �c HYLLu� 0�@�@A0 @�@���`  @0 @@�� 0A@ �0�@0@��@ � @@�@@ @@@� �@0@ 0E@@ 0����@@@ � � ��@��� 0�0P�@@Q �@  @� @�Ap0 �@ B@@@�@@@0@ ��@  �@    Pp @ � @�� @  @ 0@`@P  @�b % �c HYLL@ �@ �0� 0 @ @ @@@����@P0  0  @@�� 0� ��0@��� � @0 �@@@ �0@ @@ 0�E�0E���@@ � @ ��@@��@ @�0 P �P �A0�@@ 0 0��0 @@@@@@�@��00 @@0� 0�0  @ p�0(@�@0 ��@P �@ `@P� �@��@� % HYLLZc �����;�� azero ;��������  azero % �;HYLL� @C� @ �@@A  � @� @���@00�P@@ 0  P @� @� 0� �0A�@�@�P@ @ 0@` �0� �@@@ 00 ��@ ���A0�@B@ @@��@� @ �A�0@�0�@ @ 0@��C0 @� �P 0`  @P�@@��0� � @�� @@�@00�@� �@��PB� @0� @��@@� 0�@@ 1;��c b c �������� c 0  0006cf29ffe1d2d3(c �������� c � .lein/prws/JLinktc �������� c �G .lein/prws/JLinktc �������� O {:user {�OP  {:name {:wrap-r�N  (ns mat{:user {4�5  { :nam{:user {6"S  {:name {:user {�uG  { :nam{:wrap-r���  {:user {Lc �������� -  { :nam{:user {_-$  (ns mat{:wrap-r�Q+  { :nam{:user {�|   { :nam{:wrap-r� �� �  { :nam{:user {� c �������� c 8� Add "-clWrite te�c �������� c   Use Gooutcnow-m�c �������� c ` ClojureClojurec �������� c � agpl-3.0unlicens c �������� c  0/leininzubairq/܂c �������� b % dc HYLLu ��@ �0� 0 @� @A0 @@�@�`@P0   @   @@@ 0��@�P�0�@0A@��@�@ ��@@�@0@ �@@@� �0@@ 0@@  �@E@@ �0����@@@  � � �� ��@@�� @  @� 0� 0 P @ @Q��A0  @� @�Ap 0 0���@@0 B@@@A@@��@@��00@ @0@ �0��@  �0� �@ 0   @  P @�  0(@�� @0 ��@P �@ 0@@P � �@�@ 0006cf29ffe1d2d3(% dc HYLL   C@ `�0 �@�0 @�0����@ �0 @@� 0��@@  @P �@@  @�`�@� @@P0���P� �@��0� @@@ � @ � @@�@ @@�� ���  ���� �0  0@@ � � �@�@  @�@@@�@�`@@p�@A �0� @0@� @����� @ 0�@@ 00�� @@��00�@�@�@�  �@@@`@@ �@�@ �A �@���� �C0 0� !�� �� @0�@  PC@��  @B� .lein/prws/JLinkt% dc HYLL ` C@@�0�@0@@@@ 0��@ � P���@�@ @0 `�@@@ � P@@0@p@�0�� @ @P���`@@@@@��@@ @@ B@@@ ��@� ��@0 @@�P P@@ 0 @0@@P � �@ @�@�P@�  0@ @�@� @��@� P @@�@ @  0 �0 @� .lein/prws/JLinkt% dc HYLL ` C@@�0�@0@@@@ 0��@ � P���@�@ @0 `�@@@ � P@@0@p@�0�� @ @P���`@@@@@��@@ @@ B@@@ ��@� ��@0 @@�P P@@ 0 @0@@P � �@ @�@�P@�  0@ @�@� @��@� P @@�@ @  0 �0 @� {:wrap-r% dc HYLL5 @@@@@ �@@@�0�� @ � @0�@ � @�@�!@ @���0@0@���@��$ @  �@@�A0@@� @ �0 @@  �P�@� � A���@� @ @ �@ �@�C @@ �! @  @�����00 � ��@ @��@� �� A @ @�@@�@0 @" @@ @`�0�A@@00� @�@@@�0@� ��  � �@� �� @@��@ @@@� � 0��@�@ �@`@@  (ns mat{:wrap-r� % dc HYLL@ �@��@A @�@ A@ B0�p�@���0@�@ 0��B�1@ 0 E� C�0@ 0@`@�0� A�@� A@�@@���@ @P� 0@ �0 � �@0@ ��@  @! � ��@��@� @@ pP0 @ @4D @@@ @�  �@�� �  @@�@ (@���P0� A@��@  � @���� �@� ���@@@�� @ �A  �@0@@0�p�@   �p�@`0@@@@� @@0@��@!@�@�� � � Add "-clWrite te�% dc HYLLB��@@ � 0B @ � ��0�@ @ �  �@ @�@0@@��@� @�  @�@ @@ @� �@@@P � @ @�0 ��@���A�00�@�  P @0�@ @@B P�@�@@� ��@A@@�@�P �@� @ @� @@ `�B�@`@ @@ @@@@@0��� @ � A!@�@B @  P@@�0@0 �0 @��0@ @@@@ @P@� � �� @@A   0�    Use Gooutcnow-m�% dc HYLL @ A  � ��0@@@�@0@@000@ @@��  �C@� @ @@ �@  A@C�@�@@@��0@@@�� @@ @00@0A� `P @00@ @�@B@@@ p ��@  � 0� @@� @D �@@��00� @  @@@�@@ @ @ �@0@ �� @� @ @ @A��� 0 @ 0@ @  0p� �@0��@@���@0@@P@@@ @� @A@@��@ 0@  � ClojureClojure% dc HYLL agpl-3.0unlicens % dc HYLL �@@@ 0/leininzubairq/܂% dc HYLL� �@P`p 0@0���@ @@ 0 �@ @p0 @@@�P@ @ @@ ��@0@@  � �C@P @ 0 0@�0@0@�p0@ `����0@ � ���@ �@0@ �@@C00@@@00@00 @@ @@�0��@� @ �� A��00@��� 0@@��P0 �@  �`�@@0 @P0p@�@ @�� @`�c ��_���w��E����� ���%��Ɯ����l H8(������1� B A "�3��CNB 1�c�!�a�0� a�1�a�0�(F� �c!�d�1�(�!�8C 2I��1)��A�c2�c1�b1�b !DB!� e�#�a�ALd�"�#�A�F�A� C�pL!c 1�"�E 1�C2Vc!���A� C�!�� #L��1�(d�AD��1�� A!d�!� b�!D!�"�0C B�BAFm"� A�""�B��0d�!�b1� b�"��A�C�Q�(d�1�0C 2�b�aD"�!�c A���a d�1� � 3�Ō"�b�2� 2HC�!!c1�c�Q��4�(bA�(�3�B�0�d(3!c�2���2�ba�� !���0�D�1���!�b1� �2D1���1�e�!�d�b#�B�c�2�� 1�B�11� A"c!� �1� E�rc !D B�!�d���c�1)CBD!c"��1H�#��1�B!)e AbA��B�gA�D A� d�b 2� e�A!d�1�CA�d�1 B�B�# 1�b !�d�1�b 3)B ! D�1�@��!��1�a�1�#�!HD B���" 1�c"�B B�B��1� �1!EAH!��A!D!�(��A A!�C�1�" c2� ��R��A� D QJc�A�&�QDc2c�A�C�Q!g"�c 1��"���2#"�� B1C$1�C�Ad!� �B�b�!�� Q���1E�1�b A�!�2J!B�1� C 1H)b�!F!B�!� ˆ!�(�1�c"�D3l A�C�A�"E�1� b�!�1���!C�AF9d !���A�C�!�B!���!�b�AF!b !�b2 !e2��2�1�c�!�1c�QF�AFD�!�d�!��B�H��A�c�1�c�!9�VF)c�!�0��11E�A���A�c����! d�B�(c�q��A�C2� I Q�D�Q %�!�f�1F9$A�0�!�(c�R�(��1Hb�!�d�2�C!�D2� B2��qc�2���1�(D��C A�Q�� "���1F�A� c�3���!���a�CA� b�A!b�A�C�1� ��A�Dp2� �"�BB� F2J BF C�"�A"d�1�e� �B�!�1c�!� �1� E�!�d�!���!�d2�(���C�2�����AJ C�A"CRF ���Qf�2� e�4� c�Q�0c!�1F�q���2���A )� 2�b�1!i3� e 4�@d3�dQ�(�3DAI�3 #�2C��!��R��!�Ìa!��1DF�A�(CR�d�� ��AH!��RH!ĜQ9� 2��FL)��!H�" !�3�)”C�F�"F)f B)�"�c 2� s e�1�(��#�b�AH!� AF!�B��F)D�1��B���R�9��A�c�!�@B2����LD $T"��r�"c��!��1 1� 1�(D�1� "� c( J�4F!C��� f R�e 2�bc�A�8�BH!b�1�!d�AD2� c�A�8b�!���1 d�"H��Q��A�)c�1� D�2D)g�R�8F�2 !C1�c1�B�!� ��1!b"�1�"� ��1� �B!c�A!�1D�a2� ��BI��Q�)ÐB�� Ac�2D+dr�0c2�P�B�I��1�(��A�0��A�C�Q!B�b [d�")e "���!�iD�P��1� ǔ1e�`��1����� !�ʌ!F!��C�!c2�d!��B��AJ!$��!�� 1b�B���A�P�R�b�Q�!$1sF1C 6FĐ!� D�A�e2�(C "� B1�a�A���Q!C 2� �2H��AD)ÌQ�0��!e��VE�2�1d2)b�A���A-��%A�Pd�� S���cB�(�2�@�R�1��1�(��A�� "!��R� �1��2�!e R�”1�0cAJ9CD�)��B�e�1ZJdB�0b�Q�Ġ2 (�1 )e�"�!Ab d�3� m 3!% R!c B�!$B��a�1b 2�(BR� "��Q�E"� ��QH! r� c5� d�PH�$E�A�!A� 3�0��4�0Ĥ1�D�!�Ô!��a��2���qH1c�1��2�(e�P�B�TF)��"�(��" ���N!��CH!D�1H)�TH)��!Dc1�� "�bQ�!�2�㈑P!c�1�e�B�������r�C�Q�8c " c B��#�c�c���T�d CF)��3�� 2�!D�3��b�!�$2 !d�Q��11�qh�!� eRH� 1 F b!�2 ��A�8Fad2� ��@�HC1�0��A� ��1L�a�à1� ��C�AH8dc� �1� e1� e�A�!"H(e�a�F�1�(��BNd�d�B�1J)D�A�1c�!�(d!�c�1���1�`d "��!1��A1��!1�C�� 3H)D2 c�AFD�Q�a�!� ��1D!��S)�B�(c Q�c�2���1���2��A���A�È!�0b1� b�!)�b�b�1��T�!��!AC�0 B�1!B�!�Ea�DR� ba�C2�0E�q��A�(��1�(b�F!ˆR�B�AJ!d!HDB�b�1�B�2Fb2��Q!��A��Bd�1�(C�QF!BR c1H"f��!d 2N)d "�1� B�d"�8e 1�(� !�0� AFC�"�e�1c�C�!��"��S�Ô1F!�(Ac�1�)d�!�!�!�9��!H!B�1�ÌA��2F b "�D 1�� 2��A� $�B�� 2� c 2���#�%���q���B�B!d!H��1�@��F�R� b�a��TD!c�!� ��1�e R�1�@D�5H)D1c "� D�A� � 2�� !��Q ��"��� C����!*��1�0��S�8�A�b A�1�!�B�d�"���E�D CB�Q�a�2F!� "���R!�21� RHD 2�b S ŒQ��R� D�C��2��A!c�2�R�b�c� F�Q b�2�b�AF)c�1�!e B)cb� �BH�ac�A�cB )�#� � "� ˆBFƌa�0C�r�B�8d B� �BJ��q!Gb��b�0�2F!dA)��A� B�0�(� R !�"!� !�d1)e�2��1�FB�(B1 AD�0� b 1Fb"� �2 e�!�c�Q!h�A�1d"P9CRJ)�1�(��1)$�1FQD A�1�b3� � A!B�c�1�( S�A�c�1�c 2D1d�2F)c S!��R��A��"� �BF� S��a3Br�#�!� d�2�R�� 2�bbD!C�a� b"��2�0�B�(F�2)G��(� "DC�Q1D�rC�Q�D�1�8�2�)d�QF)ga�� ���2D!"� d1� e�BH!D�a�(GBL b2d�4��3�(�3� B� d1D!�B� �B�(�2� g 2H�S� � "�b�!Ōb�!A"F9��!F!#�Q !eA� �b�8E�A��QJC�! � A��B� $�b� D�R� d"D)��!�c�A� �4D!f�1��B!!F�E�2kg A�!e�1� ��2H(D "� c�q���GH!c 2F ' B)�Q)fA)A S���"Fe�s�!e�!!c�1�� CHJc 1��a�9�3�!�2G#�e�2 !ńB�!�t�0BB�8��E�A�(c�"d B���!�)D3�*�Bc�A!c2�0��2Ld !���1�0CRH��1��1H)��1��B��2�0�B� BAB�A�c�1� � #� i�!�c�BAc 1�(�BH!��Qc�"H�!�ÐQ�B1�0��1�B c�B��A�@B�1�!C�Q� e�1��"FaA!d�A�)��BH1�c�1Ŕr!� 2�1�2)��2�)�sH!�R�rH1� t 1�2� 4�!F�S�I"�a ��B�(��!N1d$4�0�2�)Ŕ��� RD"��QH)�b!��1F��q!�D�1b�S� d�R�b�)�d��C�Afb)���(c�QL9��a"Ȝ2 )%�b�1dR�)��B9e�RP)�$B!�S�g�1H!��� 9�cJ)��A�8�D�Pc���1��R�Aƌ2� b�r�1� rN1d2�I�2�8��!L)�R Bb�d��R �R� �b1qLƌQHH�bQ��R !�b 1�rJ9F�r ��A�9�BH9fB!cA1�2�Ø�� 1�8c�1� b�!)f�B�b!� r��2!D!��3�D�B��1�(� C)� q)��ADb�Q�(�!�c")D 1� A1� CL9��AH��BJ*�r2e��D!RP)c�J!�b)��1H)e�c!H�0�3P1�CH1��R��2H���R�(��R�(Eb)�S!�� 1�RN1d�2�9��!�$B�(��B�(�2� bBFG�3A��!�QeB )B�Qd 2mB�(E�����A��B"E B� �2���CH)HQ���S �b )��S��(2 ��q�(�BP9�r�B B!d rH!��!�dB� fB�D�!� �D g���� Q:CC�� S:� U�!�T��3���b�kd�B�� A� c�R� � B�(圂F1ʨAFI�B)��a�0�R )��c�)�rF"�2!��R !dAJB�!�A� f�R��2�Fr�f�a� ��BF!h�Q�c�A�X��2�1�b�)�B� �� :��� 2� c)F�1�b1C�!�c�2�e 1� h2�f�A�b 2�b2�(b�1�C�1�(eR�c2�0d�A�B 2� b1�C "���A��2�C�!�(��1�� 1g"De�3HB "���!B 2�C1 !��2� �"�b�2���!� � bH�2�C�1�d "� e�B�b�1cB� d�B� D�1)��1)c�A� C�2�c 2�bR� c�1� C 2�� 1�Ɣ!F!c�1��R���A!c C���A���B!C B9c�A�c 1�cA� ��Ae�Q�c�1!��A��B c B��R���A�B�A� C�A�b�!��Q�1BB� � 1!c 1� C�R��A� ��Bc2Le�A��BF!� "b�Q� �2�d 2�c�1H� 1�B 1�C!���Q���A!��1�B�Qf2b B� �R� c�B�c�AFc�Qh�AB�!B1�(��1�d B�c AD�Ac3"d�A!C!� BQ�c2d"�c�Q� c!�b�A� � B�c 2fB !dR��Q� ��BH"b�A�c�1F�"�c�1� c�A���Q1�A�B Qb� !�bF� #G�3J� C�� 2I� !�b1 !��!e�0�)�!!�B���� cBH)��1 ��1 c�� e�q !�3� ��"� B�2Ff S c�B�1F�1��sN:�B�9� a� h�R�!dC�(c�3J��!�B�a !d�b���Q���AF1�01�F B� C�A�b�q� d�q�0c2��#�"& A�W 4�Ferarchrilekeonrothorassiitalsslaanblatadnoemndceilvickecetshpiheniambrurbebiimutcuissaagflllipntucboooeaabwioluphaicweomapppusgooptuhielmpidrtdbkinspuddngphuleveeeiednurrotrdrugiouwaexqugrsueshocopeaufamoplsopadascctgenavetrbadimaunmifidoranetaclmestpocalotilientetosedeinreentdefcongetstastrproforprefilresreaparintiontrasubtimtencodsetcomlisposdatmanlintyptervercorworexpscrdismatuncnamounmaprepderfrastemonmarpatactestplavalcolginnetoutgracalstowardirreclogranminsonperdowundmerruntestjavaautoportbackquerventhostbuiltoolctorbuffsearmenttablclasslightfactotscaeridpmnlogbufvhkwyxjzq�}��E���!�u����j;}�N�%y �♝ꌳ�6K���j(T�����!$��L�����J�"� ������[��:�H�>{q���<�D]��R;�k#��kj�vL���N���F��A���(�A�7�~�m����������~�� p���\]��N�����]Yb�y!�A���~�� �GqLvL����u��a ��R&+����`{����R�� O������� O<����Y�}��N��|����a�u�|^=��# 4C��읠�����t�dkE��c��x��D��@�����5�qL�;�����������ʐrk����~V��%�A�����m�n��k#��8����%pxiF���i��>��s� ��y��'������C�i=�� O���䊈���*��p�V��Yw=s|�����.� ^D⑊��>4��h���N���F��c���|���7���������tq+|������v�⁒�an �%[8E{e���������4 �en �a#+�:��o������m|:|� �/oP�� ��k�����k���>�x���s��違�[��[���І�GzY�`)��;%����������I��x�u�����w莇�'�����������&�`����_��鿒�t��r���������鿒�j ��������*�s��xk����<������$���R&+����4�{q���?�ꀇ � ��%���v�������%��&�i���{S�/{��#�&�� ��� ������>���� � �6n Z�p�8S���8�����P���>��&f� &�i���.�,������~�_��`���1�ы�p|��dk�6��������b�%j� ���������)�������Q��N�A������0/�{�h�ÅV����6>���(������#9;}��)�V��K �[B%��^���oP�R���,�:�a�h������as�p�����K� ���hl� �Q���↑~�K �R �K �3��#����<��Ƈ����4 uLx�u�R��}6�������~�?�J�ڿJ������?Z����Č �����@��``` ���e|��������lx����)w谉������ ������J�h������(�JA��X��[�����杚��as��}�~T�iLu�p����1�[!f�]Y��+�x�{+�1q�1��!���)�{��u<�qL�g��lw-��9����w����������������φb� ���]����6�bI,[ ���x�{+y�����y�����r��K�p���~����~�����������������p��~����K3���R$�P�����i�~P������P����d���KK�i��$����R����p����$���R��G3�K���GK�~��K4����������������$��~����i�P3�p����3K�����$G������d�4�K4d��~G4��G�d�i��$���d��~���������������d������i��G��������$�3������$���p���i��������p���3�����dp������������������p�d���������������K�������$�������K4K�������d�~���������R3������G��������$�����p������P�~R��G������d������Rp�G������~��3�p��p������~4�d��p��K��G�~i�p$���~�����G������G��d���p�4����������i��3����p�dK���R���RR�~��p�����K��d�Gp�i��~�0�d��������������d����K3�����������~�p���R���RG��i����p���p�d�d�Pi������G������d���dGG~���i������$�����pp����G�Pp�4�d�PP��~�����d�d���$��i���������i3���������G�$~����~�p���p�dP�p4P��������d�����4�����'4���pp����d���d�~�4�������~������G�������~������d��~���$��������R�i����������~���~��i�i�~��$pR�P����p���3��p�������p���K�i��������~3��������K��������G����G���$��i�3������d$�����d���~4���������P3����GG���pi���P�i��$�d������������d��������������������������KR���������K~������d��dG���������������������K��R�i��p4p�3�����GPK���K�����G��d��~�iP��x'���d�P�������p��~�~���3�~�$��K�������4����3�3~�3�����~�p�������������P����PiP�4���������d$$��$��$��GK����������GRi����~�$�����G����������������d���������d��$�G��P�~�����������p�����d���i�������p��������R�$�GR4�����d��G�R�������$��$�G����~�Ki������K���K������~i���d���K�R���R�������p$�K��������i��d��d�P�G��4��~�������R��i���d~���~��~�~$�����~��$3��i���i���p���������������������������������������~�P�������Gi�����R���3������������������R��3���������d������������d�3P�����������P��������������p�PK�p���P�����3G�~$�������pG����K������~�dPd��G�����p�����i�������������������G�4$��$��p�d�~p������d�dP�P���i�����d���p3K��i3���R�GP�����������3��~������d�����K������3i������~�$$i��������K��K�PG���K�3��p�3�������������p��dd3~d~���~���i��d~���3�$���d����~�������$���G����K�G�i4��p43�K���������P�����d��~�������G���$�p�3����������P~��G3�p���d���G���������������~��d���4���G�p���$�����P��P~���G���i��~���i���������3����������~��i���d�d���P������G�~3����~����R��i�d����������K��4���~pd�P�~����G��Kp�������p���p�~i��d�4����pd��i�G����p���~4�����$���~����4p�iK��pK3������R�R��~~~����d��d3�����3������pp��44������p�����3��3Gi���P���$��$�����3d��i��p��$3����������������K���d��G����i�����i��p����d��$��$��$~�������~��d��p�P��������i�����$������3�i~p�����������K��3��$p�������3����d���R��P3d�d��i�������������������d�K�����P���������$p����i���~����P��$~����$$�p���d��~i�������i�R�~��3�K����Pp3~������������3���3��i�p��3����$���R~$G4�����������������di�~�����������$��d�P������$��������KK��G����������d��$��������������G�������������P���P�~��d�����~4������G��$3��d�dK$�KGi��K����p���4~�����ip�G��������3���p��KGP�4�����������P�����i������K������p�������Rp~����R���P����$�d��������P��~K�������d�����4�����G����K4i��4������3i�p��������i��K����d���~����P������$���p��p�������P3�GG�����������p�����~3��R���KG�����d�d�i�R���������K��d��i~���~�������K��P��$���R���d����G��K4�~�~�����~����KK����~���p�����������$�G$�������������������$����������R��i�P����3�Kd��G�����������p���d�pdK�G������~��P~���������~3R�p����������������~��R���d��������d�$�����$G�����~d�p�����G���~i���G�R����������p����d�����������i��G���p��������������~K���$�i�K������p��G�R��di$���������3��������$������G���$����G��K�~}�����8���M���+���\������N�_x��M��]���6����e����t�L�Z����� ���������!<���\�����IZIm��������Li��!_��D����va��1����E�#����a�_a�2������C�$�bo�9Fs�~|� ���!�����j8R�����������*�����)���%*�$F����i C��wa��U�v��-��|������8�x���p�������@w�JF�������v-�>�:�r��8>:���q��n�> h�`��倂���{�����������H������ � �eE�h���(��r�w����e�I E� ��+�s�$=����t��9: L��w���f3���)`������1�z��#)�w螵��['���� ��s����� 0j�i C��_��i�p-��3��w�x�un����M�"s��+�3���t�g��z�uw��&�~��1V�|��?���'�E �J��{E��q{�l�e�1��}���m�zp��|����� W��z��#�#��r� A�z��#Q[/��r���d4���������,�E��!�#�a0�{ygm�����`N����W�uw����v���4������p$c�8���uT�Q��g��$������9���~���x�����*��U��dN�$���s��bx��\�{�b���t�c��@�n�8v@q��������z��$�搬��(�3��i����������bk��in�*�� ~� x����a�e�_��wg���8����w �Y���� ���N�yk�����C��n���x����t�C����������'x�1��Hr��~/` w��^��<~���8��w���n ��%V��h��� � lz.���L���⁓��s�� ��Ax:��q�@�X�3���)^;�������aeR�\����F�u~�{y�包�F�u~�{y�������υ��� |�v{����1匁I���i1�~V�ZD�c ����fe����� :���J���h6�!"� �)8�p�" �>���B-��'#; i�������*�+6���]�����o'�H��) ������o>��~�tv���rv{|9e>�0���������Y*g������������H��+���������K����-4����wt�]P���{+{]��q4��������p�$��� �������"����B���w� ��5��@�����?괇L�����w�����w��M�����|�� %�����"��1�8��w���"�E�$K� y���0��n-���$�+�hN�����L���a@g#�q�^� �����9�����E3��q�������}�E��IU�����������j8���T���������Qu���8����$���u[�m�C��t�~��p�O �1|"4��Y�u��w���1�L���9�m�LRA%-�����K � ��}��i�����p�$�u��3��~��l��} 7����������E�$�G�yt�� I� L�����]�?������i-����$�p#��o��' ��n�y�R���G���1���Cj����^� ��q����i鑬#����E���6�| �0���!sZ/�5�sxR�� ��>�Z/��0�}��M�ŀ���7� �/���py� ���*���z����(�'��tt����z��Y�oC�q C�q��������������#)�d��&���6���*��s�d�#1��� ���l �|��n�|��|v'� �a��R%m��f�x�����]�����C���$���F��7��F�u~��\��!d�*���s ��;0����ꌏ�.��^���grf)���P��l�t��s�s�s�����|�P�]Pqq�q� �8 ��S���q�<� ���!r��.���F��@�)�����*=B�J��N�g�������p�qvk�b�z���y���.���e����| ����Elx�,�Elx�8�C~|�|�E�>�������6���������6��0��i�`{h�C���Ow� �w���{���X�� j��j����?���E�;��\��h�������i1� ��a���$����C��&!�D������$��%/����l XO�H������[���0��?�$FO�g�� qC ���� $���"�:�?>B��i C:l��� �����s��>�Hm�pF������=U��wO [7�O���^�������y�����������{$���lF���2�$����C��.��?��l����\����rn l�W� ���)p�wl��(�t������ b������#������&� � ��(V���4��|��*�^L��y-�t��>�t����n�?R�$ w��x����6y9+hNv��d��Xw��!������������}:�H��| ��� ��p��������NB�a� �j��[�)yw�T��8Sr����H�����!aY��&�wn�J����������l�oQ����l��������~T6��?�����1�eF&M�s�wq�E1��&�w����hNV��X��������D������p����� �SL�5��eT)� g��4�z�����y�1�/ �q+w�搆��=�H�@>8- �n�g���~� �:�~ q4Z�x��WC����, �������Z�5��5�1#����>�*6��8�������l�'��0j����� [������uC�5-��oP<�!��v�� U �v��qto���#8�Q�"!:�jU���#��p�������������m���<�8-��bAq�`�8`��0 �-4C�V2�tF�����x��"c�M�����#�M�������r����<�����b�z���m�����O~�:U�����# �`����$F�s�����Y�_s [�F��8�r��b*�~*��8L�)��n�Xw�r��B�w?�d��4C � �n-R�������x�8��v����Y� �h��z�v���~|��+~m��켇���v�%cwe 1�a��'�����Ci C����I��-i������������y�����`���$�����������HC�'�*N4���+����!hi��*(�V���r� [8���MC�^$�'���L`����E �1�%����`�t�Hx�f� l��t�W��b������C�i*-�6�������/$�m��HB^ip���!A��w���o������5�$�t�Z����2�� 2r���eN���w)i B�u ����*�����+w���Z�m���� ������� � 8w����H �m��z��{y�����8L{g�M�V�����!�8����'���NAS*�䋆����z!�������������8���! ������5���0��zY�o6��xc��h�U�������8����"�a��$�|w�mV7�qLi�����5-�i C��� ���j�{������m���"P�P���8���������i���p����������_��U��h������&FB����6u����CGU|�q�������p�[U������������L�~���*�������s����"���<��m�Z ����� 8��p����*lIxE����s�h��渳{����� f̶��d%�#���C���69��"����n�� ��P�������}��"��r���-����b�����8t�/�$�v��N*AV����|���k�{��$������3��N���"��dl������{�*� �M+ �d텏y? |��2-��Q�� [�HC��sW����*n� [-9�r^q�m�.ve�]����*���,�<�f�}����F� i���d%�������)1��! �i���t�wq�� Wv�M�r���z�����b��"������ [�B�"�������t��k ���r���}�����!_W�X��qt�C������s���B�h��$�l���:�`���� �*~�;\��t�����������(����� �� H��0�1����� �*�*w��#{��~� ��08L M��CHw������5����$��/��d���U��������g#� �r$�w�W���w!_��8�H�)z����a������&eF �10�]������&�A��N����� �\�*��M�x�5-�!���N� J����r�v��6�����uL�'�� ��;���x�}�Ԃ�~V�a�����?�i��0He�U�������e�fO�����z��� �~F��虢������>�/���D��m��)����5��z�Z��� �8 ��5��������1� �x��6��$��!�������B���s`>r����6�n�wi�(*��*�1���"�:�������Z������\)���� �m��d�����p� |]��8�� ���; e��7Q��Z�$�S w���#^h�������C�"�~����rW�������(����~��Z�����)䆞t�G��C�%W-���?��N��i�@�^K����p��|�� ���&hk�\R��t�� �ܗ��o.��o.�����d�����'����8� ��H�2�[!���gN Lz��#�u`��m���IH���(���N��z��#������d��d*�w�Y���R�������i��������N�����abz3x��wk)���i��������~�a�{���R����Hx�​�qk��������9��~��8�gO{�s� �kU`������X���3��<�5��3���@��嘦�铆�r1���n�y^T9����eq��N�����3���s)s^�� L������8�H� ����u��{���5p������E� |7E ���ϓ1S*�f9�_���Z� D��(�g�:�������:��䒦)�N����u���f3��$L�}x/5-es⑅���b�HLu���C����l��`��7K�j h+E;�8L�qo3�+�p�����u��|��� ���Z��_b�8L1f4�����s�|�� ��7����wi� ��\1����(w��"���6��cq�چ��0��:��d� *�����m�z� �n|�X��_*�)���� �8�[z!>4��D�z�zY�%�� l遷����y����u�p�~��ip�^�u����K�\9��F���:��i5��5�b�D#�D �����{��D�|��� �x���6�.���8Vl�\�흡�unS�{q%L~�{�%�*�'|���y&��eT��� �f>`#��A�$�l�������Y�x��5�qf��� �[8>����%��y�"_�8��e�z3S�D��z��#_����8�������������"����荀�{������������r�s���\w�e���bI% ��5��~V��:������+q�!��|q!�@ �w�E�$��:��>��>�MU�u���-���������N�z��4�u������+kk~�����+�+������y���++����] ��������! ��%��vk��E �\與J⤻E �J⒋u�#4�E����L��m�s��g��������������d�����E�\�%m���x5�,�s*�,�Elx���,�El���C�[' �G�@s��S�箅�����h�����}w ��1��c��|�hl&��&��@�zz��#�z �[P��`�^�u��[�.*�- -� �r����C��*苎9��2��*/` p%p5�v댆b�j�#��dkErn��=�=�l난���6 ��wk9��Y��������E�����r-�� Xn슋���B�j�\Cz.1�n"����db��u1����������������uC��u�|Ϟ�~V�?�?p��1U��m���1���8�8%���"O��gq��e���5��.�tyk��%��H5H8�� ���+�_�����j� [��j M���O�8��|�o"E��7�n�~(F�E#������5��cq@����o��������%��������'#�W�a��u���R�������]Y���n�}��2��z�;�G������߁8��1��~|�� 3��� � ����?�z����'#�C_��bh�x�as�� D���u�����1x8��%I�Y������� y������G���������A n�$w��_���O���0s��u�I���� ���~F/w����9|S�1�,9����/�m��'�����0��mx���$(i��}�d���X����䔃C+)��k�4g�'��ua|"P�h��1����� ���:����i�/�d��o.�&��w��)m�@�)��R%�c��o����cq�J�3��d��p�������4����%-C����M������i�j 4�c훜�N�v���u���A��^�u������-4�1d�禍F;U@����! ��5-es���L�ʁ�������e�%� �����]Y�S����v��/` ��W*��s�K���5Lm*���� e�p���z3�|�l��f9��[' ���0B��7�P/2��������^문�d��Y�Ȟ� P���������������wq�~�Kp���8Fh>��z3�x�!� �/8��������w��� �� 6�����"'�B��k�n����g�⌳��6�� �>����⌋�����1��{L���<�K�dN�u�����i)��������hiZ�&�6'T𕀀�z��#R��]&�����9�������i��p�x� �w�aV� �-�t��G�����ʢ �l��as����� |�sL ��)�^�>���#T�--��4�����{+搬����8�q ⇞����^��#|{���;5��!����6�~��h�z���"��������=�����`��b��4�o9�3|+���r��� y� �p�������⋩8������� �/n��p�^翡���� ��������{�$�艸�t���G�m�u������\U���$�q�������M@�������� ��4g�'��t���3�s��o����� =z��#�:���\�i�����䰵� �����f# ���E��'��`�����>�o��'�C����yﮇx�����������<�*�W�����p�p��Z����� ���1����x������g#�����x��x�� �������}IR�Gw���0��m����s ���k�\�����*/��o��D D��}e]Yf�IH�ΚP�����z3� i���ySs�t�s���o�����z���p+]��J��z��>� ��>����y��P� ���&�?��]Y���������l���� �����Z-���N�����M �u��in����ZX���� D[!f��������~|��b�����ܝ������i�ua��H���o�� �j �������It█�yk���������#�����鈁\��)wq�s���4�D핅v����.��������� ����@}�ei�iL��6������� ����o����_���B- w�d��Ɗ�D�����}L��a���#������ȇ��$�*/� ���e�j*�E����)yAO��d�j ���3���4ˆ�%V���5������AĆ�����,���a�e����H �j�n�}:�A��q���}�����������7`��eƙn�r��@�}{�������!�����z�WC� ����������K���u��I���bk��1��$g�s9������������M?- 4���� �h��1��r-��e�/����"�����������d[ x:�����[�������b��p��|��8u�#��,��������O�J�������q����h�����?-�]_� ����mz@�ql|lx ��(e�N�����w鱓�`�T~{����������Z|���E|7��(�{q�x��Y���\5���m5� �}6Z-o>����5Hbq�����r@������������^ʝ��� ��� �{�w��{��p���uC���C��o�����������NH– sSO��{�$������~%�r����Ą���2�#�s^= �v��[����e|��F퇅F�3D�}������P�� a���kw��#���[' ������K��I��N��������pT�(� ���\ �u�N�� ����3��e�^�����~��������+���}_��b���wk9�!���� �o��l�う��@��|���z��#_\)�.H�0��`�N�����!�`�l}��{��^��Xz���up�y���:���r1�����Q�9�����r|H-�J���_����@�7�~����������y��0�J��9�t����f&�*+�8oO6'p�[o�� r�l/�� L�j;}� i� {+@��w��:�gz� LN�����b�`���l���=h�����8D�� ���&���ô����j���8V�n�a��8�H����8���'���{+;���`f��y��4����P��'�< �y|"�:s1���� ���J-�����i�{����S����>�a��晁�*����um��� ��@���N���b�������u��$������15H�L�����bS�"���n�� �N�w�"E���4�鋛������Ət�닀S [�F����f��������E���j����'_~�}�󇳎0A�����0�:-����v��}�u䔃��������噪.∮����i����-�g{GKR��������)^= �x���#톜������u�d-ә���������6�8�� J)�������~�N�V���Ϗ����⏄�Ϗʀƿ#�#�H�������E�9w� z��<��8�)���? �������}:� �wZ�~��z��Y��*<���5g�� � 8)�H�t���#����錳ͳ͌��\����,��cq�����x��i)������}x/��ˆt����_����������u�B�|���o�}���z��#�u�b���p��I�r��������H�~����Q�Պc�⍃2���荃2���2��BK��� �a>�1��{��������r��o����) �m���x�(�1������o�,��Ӥ韛�2����Q����5�bh�\�@�i�w)�kt{�� v�d�ͬ�d��i���Wi��i����<� �a7��Q��"̇�e�}�����%��&� ��È����p� L�������N����r��f163�i�C_����_��8=��d[ �w�%����U� r� �&��/��xD����ꊂ�}��~ �#� �h|��h����~��3���2p��]�� ��Dses��5-ses��P����J��� g�����,����r-��' � �g�8�A�m���`���������g�'o���g�y L����Dcn�����Z�� *�dt�?��<�1U�<���r����p����2�x綽1V�������}6<����z.����lmF���h�^�諧���� l"��������� l1�y���� �������놧�|��,!1� ���� ���~_���+]_ n@�>��{y�|���~V�ўf �~V�^�� ��/�3����h{+搬⑕,�Z�[ �����Z�O �����%7�P�������'|���p��m�� ��/���zY�J�L�&���Lgq��i�F�5����~���%�Xn,��; ���y�s�u"3�Y��솁�������1�� vy%[lI��y5�x��i�q쬇v�{���A�5#����5&+�Q��uI���&�D5���$G��91⦀�Bi���]����������M���v����v�!�k�\�_/"P�^ ��B|~yƅ��p���q�o� m���������h�{��*��<�s�R���i����l�~�����՟�O�g#���E�� ���Kq������D�N���.������� M4��3�������u���q�c��uhkO �J�:p=S-s�\%�����<�@�J�k�:�~�D���╅L\U � u�qX�v��z��[��(T����z���o�z��#ײ�������)�F��k�4ir�z�& ��Lҗ�# �t�-��I���"�{�{��+��b��n�X3�p�%�N�`��hNZ�~� � 3�x|����l����W���]P�]2���~�]P�u��]2+�J��*��sA�h��t�K!���e�� ��Z�^�b��I������ ������h�+������������5L�$F��Q��v�U���1q3����bR7vt����1� &�y��?����?����䅦��,���H�����#/mv� z)� ?��pF���t⺇��0��� ���r�h�a���L�x�������*����(��v���* ���r��������|���A��>�u�b���~V �[�)!��������'�/�5�BQ^ ?�y���sl��z��dB�16 ���46�E��q����1�~h��2�����K�3 �]3�j{s^= �s���ɺ/����9<:��������]���eU�T���h�v�A��������3F����/���F7~��������靥p�����D*��nz3�j�� �j� AJ=G���y/}��y��}��?��8��g{h���k��{���r�1���i Chx��L���n��!�����E��u-; ����Ъ.⧟��虈K ���@����F�� �3A��s��z������\9���E�w�� d�����uL�/���\��L��:�����S���p��=�ꆁ������yuC�o �1�(������t��[�j�����r�y��w�7���^��:g���i�� �; ���d|�n��tw���x# ������ꋦ��������*����E�v�� ����I �z� ����� L��:�g��. �/����֌[����y���< �/���� qm簁�lxQ���E �mA����h:�`���r������w��J�3�1�)v�)���Z �Z �N�z��艏t�b���2�7.��������艏t㫀�k��������Ұ~��\���-%F��=����x���1#?��j�}I������i�� �\ �����n����M�����n�`��5B����[ 6��a�++ �����z��H���/������h���e��w~���D� ��s1����L������$��~j�����Ҍj�$��������1��)���l��jr���w~������i�{+������~���w� ����������;9�� �e��❒�!淥�)���}� ��M�����6����<�ҡ o0A��t(*�4�u�|pp>�-���������� �����m�!� �ꝋ�%�.�� ��7�*�y�^v��^ 1���b-`>�Q�J�3�����8��}�������d-f���\�&�����������2Uz���a�G�b��v������_�/������]x���*����Q�q�u(���bm����I�����D��xk�(�t�ޮt�k�v��� q��{��u�1q�08)���5T�����0�U��J趽��d#��`�重/��p@��������}�uj���6�~K),�3l���zc�y�g7G��� ����Z?����`9o6��L��C����bk�h��?��)�e��/��f�;�����j�#���o����}J猚�!��D/�����"3������a6�o�1�8����������v_/Y%Z��8�y�����z艡����K4�s�]Q%凐r��������k�����'������ ��N�g����y�]Y�}�m r���;9�䔄�]�� �8���s\U��1Vwq�F����Z?�"2��D � �/\�� V�#���Wd=�o� ^������"���#�9�� �x��c�/�Cƽl����"0��������:���<���[�l���!���f t� ��s*��ux��9��h��ys}6��P�m�r��)m����\��������i�en =��-��}������j�D �w=s���4����r���\���m����?qf;)����� ��"����}���<}���%� �1t�~���x��c�5��8���}����Sz�UE�Hu"����! �CZ�!<��rw���as�w⍀|��8�C~|Gjr��l�.�����wZ�4��>��M���i=��$8Y�!���y�������H-���蠥� ��w����z� 5��cqU2�1���~Du�bA� ���������qn�]��W�0���GO ������� �~>8�� D�\�n��� �m�%�|��bk����򘇴|��������:������� ���I���P↪.���N�%-����,������.�yA��g�zY�fX�\J�kg�t-�m����5m�8��������Gk�*�B������qrz�s���j �g�����������b�"3�u�o�,��\^T������q�t-�(Tq������#���7V �q��>�v�����1��z9� 4w~i"�����|���Umy����Z�z&�b�,����l��[ ���]Y��5���6�U������i��������H����:�H�� �@�V�ρ��������h嫠 ��Oz����/)����1�r�!�*�w����k���bk�n~��-��3=���p��-��}�����@�����or������ ?�((��"��:���y�N�z�㌤)����. �/n�m=��\E��"3�u�z�"3���a �(T�5����\����/ ��4��?:�����k���.������uLz���#�to�\���t�/��\��濾���}I�\����N��hn�<�X��i*#g��Ç � )�_㞑I~D������`������i<���o0A�\ ��q�� |�C�����e�]P��A�<���������w������D���0�����M9cz�C�9���3Aũ��u����q=��<��"�f�%K�����߁���>5�:�H���D@�z3/�$�����| �G��H���L��L�{������ �zaN�솜�p�� ����Mr���W .S-}�[������^�n�u �h���qkp���������ϋxk����1}6R� Y���&�9��MZ �������p �ӂ鍃�m'�ӂ��}6�r�E�P��xks����q��� ������� ��4O�O;�B�h�C�5���e� ���8=�^��u���� �m�X��\��H���������y��N��B[(��A��%�l�%�7�3�(�/��t�/�~%�^��s����qr��)�>�_�)*��up�#���D$c�p��v��"�Coi C������ z ��1��� �~�$�����@�d�w�q��fU����]P��_����_&f�G�5�o9�����G�d��dwi���$x���������jr���G���Gh��G>� �� ��<�U�3�y������k���� ��:����\����C�`�qh���@� r������i�5�R ����������밖���}I���$�D�����tr�����W�t� ���%.�~V��쇆�Ȓ��_��]�4C{ D����5����n��!�!������ ��h��1�MM�\������N❔����!��as�S�|���}��h�)@���\��dy�����}��!����������4�4�i���B�y��5������ :����m���}I�1�� �3�M�]3�����G��Z�`Ϳ������<����h������ �����z�tq��@�l�s�@�l�p a�r��z' 8d������1���}���Z-r��+���:1�������n���<�'��<��e����%m��@�����U��t��������|��������/��������)z\�i5�qk�yL흀��bA��]P��i/��dN�9������v(�a��6�D���<��)����Fx��gF&� LN)�������z��w�����q��� LN������D����lLp�/&���r�����@#쿣�\2����#4��q�u(�x'w��t������g�D��� ��.����@����� D�搬y����:��N��p���N~E���~Z,��|���� ��� e����Lg���8����u��睖�����䞷��w�z��#_������1�{S �w��r���1����>�Cd/ �x5I�g#��$������ ��E���������� ���0'�1���7�F�`#gb�}��⾨����s ?��xk�8��sc ����p��$8� |��Z���As� ��挩 �^�n���&ҩ ��Z��b@�r�Xi�rp�4w8����0Eo>� E�u�:"�\�8���r�&��sh��sh���4�{�����%�����ϋxk�H�E�xk������r�}6�r�E��h���G(��E팎�x��6��fU��P�����U��>��^� �+肜�#������ �� �`�鱁~q��5��8 r�G��s4�,���S�q{Io.� �����~�[���/��;)�� �8��c���w)_��� �m�������������ql|'���}�M�������ky���#�����:�k�1�|�j���i����x�J�� y�������}'�p�늈X��g{����1�� ����h�j@�(��(i3 `�b�l���s&f�]R�{ $-��2��������"����N��zc�r��qr���n�g����c��kr�{�#����N������!���$�O�v�t��'����J�~�1��}U �#������`l䔃�M�8�<������ޟ��4��B�������|�����������m~p��X|��Z��Z����9%�l|�l|��< |�D�\�en�"���/��hLw� w*٘I� ���킜��{��y���J��1��C��<�De>��k���3$��+� )zY�\���yY�z��#7��1������k�n;C&�����/����)�����H��䲎�Xuj �)��p���c����r�r��%�Rq�R0{m�z��|��������]������G����mxG��^�R��q�`��h ��{+k�s� ��{�~�b�� ���Į����@�[�� Bp��p� � �����E%}J�0�1� C3����������f�������)p�o��o�������a������'4���]�����l�������������l�.�it{�~W��l��1xl �":$�Z-8�*�hMw�Vu��P���{o���������\;��wr���j�N3�u�R�e�u�'���?j�NR��}6[' ���<����h 9�K�x�gj�C��(�z>����i�s�w����d�����!���� ������}��]s���E �� �b�l g��/�BGQ� �$�Bn�'#}J�4"O*��s�\p��A���r����}���n�U�� D���8�鷥���p �u�#��g�,�����u��k[�������D �� �w=�D !���w=�pib����F�Qu��]��������1��f�q�r��F�����?���j8��;�MU�"3�u0��"3�Ct*Ha#��a#�S��L~h����( "3����{o�@c�t-�t-�"3�u������( "3����( �q�D� �㕅163mT��1��_� �g���������N�}��?�h+��Ʌ�`��>��/�222�������K����$�$���p�������x�m �\ ���D����������o��`����"E9�g�� aso蟄w�����{��^DA$�����8��z������'# �����tF����� ��M_��s�0��<���������9o��'�r-�}x/�}��r��J)��"���V�ar�<����T ��Aj����ik�[����h �]&�������~�t��a�H_*��2�k��s ��\��N����%m��@�l��l�!%��z����,��k��c������HL���M�0v�k�ue%��X��}�&+R��C��`�錋���]P��Y����������%�G j��%�a���H�����1��A�H+|]&q ��E3��������U�����w��Z���7zY�,)��>����>���������w��s8��+ /#�������r-[gF4�,������z�����z���K* �l�5�j���[�� y��Z ����$FxU������k��� �s1���������H�� ������u ⋛3�*��-)�L�����N������^ 4�5�� 5��鞷����e鋃�y�o����#���������������:�� �m������hx���%k��@����dN��|�b���0臆�����+wMC�uC�^�l|bi� �S�u��a@hl��B��g'��b IN�F�����%�3���Z�����o.� ��[��"��"��0�`��0�]��Wx���1��^��N� ��oU�zY���nI#� ��5���/�sx��w1U<��}�kpF%M �$KR����j������S����a��P�.�����j��a� ��������l����w��J�3������k�������c��c���8%�����1�������_���[)���� ��p�x�z�E$��p��]�� ��$��p��팒_������wZ��]�銅��l;�S�v��X]��|equ���6����� �����o�=���� �KDH*D�Z��W������������z��>�<������J�J��r�+]"_�����m�/������x�!�h�E3ʀ�qk�to��Gbq�\��� b�t�,.�����zc<��\2��H-u�7�@�?%��{+��Iҝ���|�����)����l��;���:?���Z�O���j)g����\)�O���������������Ɛ����^��]�"�s>P���������xF[�h�C����v������g#���g#��!��<��N�����~EQ��o������ �؀��y:g�� � -�,��t���61�hr��p��'. �/��!��❊c��,��|����D>;�R2�����Nx������8�6����Ih����|��w��as���$T�)��!��R��~���qm`�T[�l �Lw���6������u� ��}�����;p����zY�H������u�!���� ���1��Z���e%����Q��b�|��������N�8���pV�VdC�>��:���+��a6�� qk��|�\��"2�Z���~�������}�� q����r�����as���%�p��7��3�z��o��'��������*1����s��.L<�O������P�<���8�w����ɊG�����������i������p���������=���E��"���uu�6s�su ����{_P���fF� /�����}⑅/�U��6�g�������ک�㫋xkZ��)����|�q��.9��@�(prp�p��`���d#���as�{+�������޷�|��W s�� ����5�R ����&f����J�z3� �(� ��✆���}-*D��>9������{e�v�bi/����o6�������{q�6��z>�����d���/O���qLe�r�늓Y�䌮�2�>�j;hk�N��k q(��P�%������" ��䔀n�������Fg̎���3���$�;;�/��1�5b����v��#���������z�^�@��7�A�p�0��o�q��q��{����w�1����b�1�wn����I�0}���� ���S�$�Y��0A紑^�A�^�������$c�u~����N�f�������4���}���a�H����x�|"�m�p����|&f9 �鱁~~�*��m�@��]��-�{q�� �dy������������bz����&f���#[��7��9h�����!]2�*�( =�Y*�D �~/��`����Z��������u��C�|d~�:p�{q�v�󏄼����5vk@��Z��|�P���t��j�j�N�w��� �F��[����u �����I�['_��um��w� �Q�~Vz�%m�矛�X|�v���~V$�� r��?����H%�}J��/�����}i�]�?��i���i�}6^=���^��&��?L������y��A��8���#��6e?�~� x(T�(T������v����rv0�;0����܏�0�`���PG��l/:��;-N���p��� D������r����� ���<�Af������q�CE� �~~���(����:����h-@x���_b�M�����(�����B�J�}��H�]�����c����F;�X�+f�� %��0�{�$�.�O��������$��)��X��� 5�^~�y>���:����r����zY�+lxw���'�&��'��@�,P�G��!�w��B�$�|���M9p�Ɗ�E�@�1�,2��H��{o;{o�D6���v�C �j�z��#�:���Hpm��s���C�o��'u ��������(�� ��}�����X��w?���(�|Z��2�!��䔀�|��as��+wM�tj�0A�K�����7��dk#� $����,+��v��5�5��A�1D���2�8�h�v y��)&���'#�' |�醃k�լ�&f9 �j�$F��8���H�[��B������ ��3����.N^ʎ��xN�g����B�����5���;��8�l�������m���������  -�������ah|� �ɑY�8V�w���������������!Q��q�鱓����zA����`!��,���&�e���� �u��q��B����l���tO����E��Fc�^�^ �����z�M�E/������$\����'�Cwq�k��k�n�3���6��4�J4팷�������J���h-�J���/~�A��(����[�q�j(�z3F&�$8 �w���������as���� ���v_�������������}�222����b��Wk#_Y������^��Y�� ��]3�b��Wk#^�-�^늇`��1�� ����r���� ���[��5�'��ޮ�J�� =������/��t�v��䐌����w)��{q��\o�������J�����g������wW%�R\9��|��p���s��g�X�Z S{������`��t� iv����,�E���|:����0�燍��h����F�����������!���>��N�|������b�� �&f����t�����h���\��E��%a��1�z3��"�Ec�"�ʐ�2�6�g�� u=��Ë���������8�Κ�xb@�`{�o6)6���䈆/�+��}x/5-�Qn��䔃{q o3�g#�k����cq���p���q�j�\ �����o�{��{���������Q�E���~�?���}���<� ~���< �� �Lڅ��%������d-�� �4��������{e��(��+��I�������v(v����(��+]_�wn�@�N�E��Z��@�����������������������Ë���n���(�V�n JӔ�y��_㈦���]P������)� ?�*n�b-�禚���_����M��H�~y(�p���q��0����Hj��z9�����~V���y���5��H�����"��oP��6�z�ɾ���ㆵ��$����z��# ����v�y� ���x�5��v�v�3���z�����z��#��E"�� �~������� �H��/�� �\�t�� ��#������1�������7����m�����x�/5��� ��!�v7z�!�$�B�<���a���� ?��.d|b�z�3��w�������eT���D����� �7��q�����.i�������{�r��u�r��Z�l� �ș��ZI~�o���>y������:�i�!�va�� M+���N�fi1���?������)�y�#�x��/��,�u��������� �]P�e��,>���~ ����f����@�N �e�B�"�x��Y��:�Z��`�i膑�r��� �&+oB�(��r�[�k���<�9�c�t�Ⅲ�J-�yzl���� ��c���f ��Z0���y��d�{yp����rX��ތd#�Κ���.��s ���|����/~����I���.�r ���d|�������F���h����MM ��m������['~�@��4 ����un�������E�wJ�u���`bJ)������S��^��e�� Y��{e�m����]_����:�S�tq�O ���m�������O��B�l�O�?��'��+������v������i�ʼn��d� ��y%m��+�r�������]7�F�������s��]_�gFy�!��s�������;{o&���,+�!�zc����t�{*���{y�������� �[��9�~j���Xu���F��$��D�B��ʀ��!�u�#Z��e�N"���珃k��-sz�^�Ъ.���������ʀ���xR��8C ���j��u$KRC �$�?����'��������=4�F4��%������p�g7��y���搬�e �dN��1�� �F� ��v��,�����ܨ���v�q���n�]Eg����!�K L��t-)�`#v�'䌚����t� ���'���h+[)⌂���c�\���� o��I��y������1?^= �I�8-��&f��{���n퀊�N�Ƈc���B��� ��sd#x���3�A�}I�v���E��E�v���E��E�  ��H���go'B�dk��p���S�^�㸈򊸸�ӂ�X|w�����܈X��{o9�X�菄���&�!�2�+�� �򯡩 �.tK��9�: C��삁���w����_�x�y��wq���M��y����v������e�N�z��\��k��3=�k��k�!�;z���y��m�����z��z��B/�yF������҈\��g�hx���⁅_��1��xk�?G����B���1���K-,���R p �o��' �q�����������o����I a� �k��.�r��Wz�1����3F�����M��8��'�����j�C�O�6�Z-h�����)��������u�A���u�A����/��[z����$��4 �������>���A��� }���}6z��}6�t��t?��L�+�b���&f�H�q��ǀp ���x�.�����f��}�z&B��� �����ソ�0�z0萬x��~y��|a q�k;���:o� ���Q�Jo3�f�������o�⼇8=�u⥱���� ��b�����j �C ���~�w��1�#��u��y����z ����bkw�|���`����b�6������}���f��k���k��FLC(�g�env(܌C���E��(����Ā�g�C�� �/��4�����R �4��Z���z����M9��������J��]Y��p竷;�HH�B��h�s ��������9�[!f���p�hH��!�3 �����/��@�����`��z����1U�<�kd1����x�����Ѭ�$8:1��<�N�f[:� � L�:��f�� �������1�+�d�U��a��l����yk�����?��d��i�N����h�q� z9���khl����|ˆ��9׀�W{��/ ���:�������1��� 5A�����r��W��������W�����y���o��'D���l�!9�n�q�}�����*�$����d�� ���������w�M ��8���*�8��{ #3|�2�� ��z�+�Ur��N�J��s �z����hl�p���� ���' gFWR�l������~⇆�����f ���Q��֮��E虪���u��{+e��{o荃�����|�1q�����G D���!��9� �{�>�[��ϫ�y猔��Qm� �g#�f��~�j@�s�Ivr�z��#_����w=E�;���$9�2��%���⩓��������lxw�����썀�{���l�������������@v�c M�@�g#�aug����WR����^닍/���]�c��� � $y�n�<���_B���U����t{����z�Ȉ,��싛�������i��z�����}�z�������u� ������#��������{��z�:�n���"��)�}�#�x������`x�����������4 ��G����o��O 2� 9��t�H�j�t��������H��U�����@���������z=/7����t����r��"���X��2�bd�� ��h��>���z���m�U�� ������f� ���J9���It�C�� �X��#�f񽆪.� M�;������� ��>�%�������4�equ���� �ꀙ��閂�����2>�%���`{J=�W%�u�d����l�z�J=���J=���M ��w���as��|��[��N���lx畀 �\9� (T�鑱3��0����n�y�S�$���H�@���z��� g�F'������禊� ����e��&ғY�����jr���z�}�|�� w�����z��#e��8�r����%q���� �M�\���R������a������' \�u��JD�b �`b9(�����V@D ��1|��p��.`=���o < �B����X?�� H@1P �|��P,��p @(� G�=0�� p�1p �4K�Ґ�06k�9����!p!D���1 �p8��3y� M� |r'�@�"�pAp �����-�  ��8��KP� ��R�'/�Fp �p ��0�0A@K5 �p(�\*P�P "P�� zp a n� +�g �f j0. @P<��P(>P0`ʱ��0 �� U�-��\��p� 0�"��p��.�!0@�`m`�"@'� �Pm0���� �!���PN@ 0O0 �� � d0g�9 ��`'�?P 7Pp=np� ���� P `��'PT�P �p-` ��W� 0��p� &A@   3�`CP'�Rp ��<�&PG��� (lP0P �� �p`p �� � �1 . 8�  0 P p�!��$�%@.'�p � ��Pa�P����p+ @ ppp0p+PH� @"�L  A�� ���A`@� @ ��` ��4P[@ �P K�N P��%0 ��OP " �� � ��P <N�@p��80P�UPpP0@07Bp�)P,`�@��y�A@ pL��@7 @�$� ? P00� p*`��p�p@` �7 ��p� Pp ��)�*7��p# 0�p� ����&`` ��)@�� @�� �p����(� �``) �p ��R � � �*  � 0p0`` `� B�"� ��� �(@ p;�@�@�� � � ` @��40�`@p`�4�"@��00 K `#00R��0`���P)� 0� �W 8P�"����@ �P 6 P@P P G� F.P  L@�p@ P� �DP� 0P�P �W�� @0p`9p'�ppp�pPp @@ �  `p@ ��pP� p�00 � 0`p$@�  � �@P�P!�@�p ��0p��p�p ��$�PP `0 ���Pp0@ �0`�  0�  �0 @p��  p�  � P @p#���� P��  � 0p 0 p �`N@@P�� ` P`��0}�`��,@�� � 0I��T`� @�0 �p#�"��`@�/� 0� P� !�� 0p@@P��P`-,pP�`�` �0P 0 0`0` p  0 `` p�� �p 00@ �0&�*�pP�0 � 5)@� ,+ 0` �@ p `�`��0� 0p�2�4��@04p� P �0 � 0 ��6�! � ��k` �� ��  P �P��'� �   �    �  ��      ��   , � �       0 "  �         �     �          ��   �        � �        �       �  � �� �2� '          �    �              �     �        %    ..           ��      )    �  .)   ��������B!�B!�B!�B!��A!�Ba|�A�P���n��e���L��w՛m�=O\#��6Bq|��bk� ���u�I�Hޗ.�#3�m�'߃��� �5-X�W=�*{���0>!�o=_�BH��@�9�� ���UBH[UV�a��A��!��!�0>!�/>��B�>X�B��l�!��!�VA!�B!�B�tB!|B!�0>!�B�0�� �B!�B!�p6!�B!�B�B!�Ja|B!�B!�0>!�B!�B!�B!��A!�B!�B!�B!�B!�BuC�%�E�&��{A����D���T�M�!��]�t�&a� B^^|B!�Ba�B�B�B!�B!�B!�B!�B!���2��I�f�>� FB� �B!�B�=!�B�V�!�B!�B!�B!�B!��� ��)��`�t�a�tB!��A!�B!�B!�B!��5x�T�B!�B!��!�p�j ���� �B!���xQ|B!�0>!�u�`��A!�B!� �!�.A��KB�B!��I�F� �B� �B�B!�B!�B!�B!�B�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B�B!�B!�F�B!�B!�B!�B!�B!�B!�B!�B!���B!�B!�B!�B!�B!�B!�B!�B�Ba|B!�B����H$8( D�.�)u"���T)�&Zd��*��������� �I,�B=�G�W�[(�`�[T � &�<0���2 ��D�"V������W�ґ�B}�C�9�N���X�E�"��gGBA�j�+" ER��I����ʸ�D-�h<�B :�� SQ���Ɛ�T���B.�x$K��R�*���EQ:��D�:�"�M,�I�> � ���`!��(9t.���9�����B콈�������K��EQ�ҫ� Sn��bJ�������E-�Hf>b���R� �� E S% ���8t�\�(��bS�HȈ��������H�9t3bAd�/��. b�h�9��� ��_�b,����)E쩀�� (�&� �_EQ��q�7 r�\��ERN�h,%Z-� �2�E�� �9(Q �h S�8# 1�C��!rd� (�L43 ���Ѐ�� V#*/�O �R�E��˸�dQ��`#�R�� ��}�%,R�Q� (6�Wd"�� ��c��SGB�_�&+��B�(���9�3b� &6�.U��-"= ����@ \�>/�Ku�E���gĞ��h�+�D�\�ĢhJEQ��D� ���2#�E��""6��D���RŌ]�X�g�Y�6�*� �(�G�[�2{H`(�L4�D�B�g��<�|J�z�E��DC�g+���2��\�D.��,�(��x#�3n�h�&b�0��8�O� F{�V��# ��Eph9�/�� ;9t��"��{Q��(�����H��Y ��(��U��_!r��Dg]���[$6����L��Ku$ȌT \T�Sp�ʋ�(]�+��x�E��<�{�v��Eq#�hO=�hJy�j�K����^cJ�`��˸��l��fJ �"eJ�pъ��QH��Ğ���� � r+� �6�3g�0u S ��&�)eJ}r���(.�)%��*p�C(Js�q e�"��,"A��,� n����>pQ���r�~6ҁ��=ցn���g���:ځ���B��� 6�A��%������)�"�W�A�$6}�U� ������ |��@��E���$�0� (6EQ�b�R���M��h�hM4QT�,"p����~�"R�*+�h2$��ǁKIA��c���g���d���<�R���[DDQ���0Li�-�q�7�E.U��h�g�@,$6�&�R,��эnQIImt?�05L�j`�h$�ţ 8Sd�ؔ�$Z����9L44�D���Rn�t�E�b �6J��B�� ��ȉM��[�RK�x$ 3��0L�ER�"��]!��g���-"�`,49�>�@I)/�"���R5c5ь�6�!E9t�b�3J��"r{��)E�TH""�e>�0�Љ&�CgJ�M� �dJ%�����,{�J���(�� ��,B�C���D� U�B�ҫ��J�##�� S.��E}�N��J\��$ZbS#I� ��#��3��0� ��:�7 d�D��/��DwD�QT����P�V������H9J�G�0���&�ȑI�>���,��P�%&rH�IE��:��Ս��0�7�Ğ�8 ��CW�g�`$,�(p�K����(�>�:��,c %6�Q�h 9t+�K�ȡnc$�7�B8c$%�K��q �$Z�, Ğ�"6U�� \$6]�� &�7�W6�h� ��� |��̍���T�(n�)m��#�'��EbS, q�� "��M4K�""-Kp�C�6Ə+XYv���'�3�Y�0�DQ�����E%���/�@�5-~�P�EG�� *������*�C�~�(ygpQ ��>� ���J�ґ ��Q�V�E"�C��� �= \D�Od� ��p��I�7����B-�p���!r])X-"� \d-���#|��j �2."A�)��*QI���`�;����t ���0���*�CGL4v�C�,� *�,���ի�$FRd@,�R d���g�) �>��)u$������ S��*E���Ы�=V��6L�T4�)� ."�"��)/b� &τ����I���HA�9��q� ^�£���E��hB�M4���� �R%���B��Q��$�*����<�8�<I�/�`$, ���2��Y$E����)���3G|�Ğ$(�Wd %Z�hbJ}+؈&�H��J ʂ�Ք��DQY :0 N�� -hJ -�X �3����9{"G�e>��-HD0� ������(��3QA�9���K,� �/�b�cf>��.�$FQ���9��nQ,��d�� 6�3n"EK� � �����2�٢�� :t�P�% ��H K�L 5� � �7K����삿��2��d@0�9���� � ��$�FQ��t�����[D ��Y�S}�1�9����p�@(/ ��{�#|>�w�� $N4ǠC��(/�:� �Ô�$ϼ*n�ؔ�h��"ˈ��PU"�h�R��"�(/ \��W�#/c� y7ʠ�B�M4�\ �7�B� �СnQ���DQo�{f%*/�R��WGB �h)�G�"� �- :#�g.UX)/:"��B��W����3+�CJ��,�g+�E�&d\���M%�[t>~̠�T�W��S �c�<�R-"d��������'�|>G«�:t�����n��% ����0��*Z�<; �<�+nQ$�#�*+�3���Y����%��`J�g�� KQ�"(3�>��"I9t+�q0ѸE�Imt�"!r����M4ģ���{�c�(6� ؔ)\�(��WТ[��`�Q�),M4cb ���QTAt$�h�:0 ��Q�7�DQ��4��DR.�05L�/5X �`��x$(/� �7\��6��d��I��#��j����B���ԑ`J}"���E� ID� ��q�bSA�7Jb��9�&�T,�9�+%�������`���QTx$x�d�DC����K�8�5��cA�:�>ߠ�K����By��O8EJ� \��DR����%�;#�D�gbӫ�9|���9Kb�<���P�|����c �>�R�TA��8t�K}�R����0*��<#���X�`�c�9�E�����/�� S���_-"4#|&��PëB��Wk���9��^�h&�>���RJ+` ��&�T��!rQ�h�� ѫ2N4�[���gt��Iы��bJ�3��;-"�h�9�T��D m��q�7|�ԑ FR*� ���Rbә� ~g : S��X�&+ث(� ��D��U���)��EQ�c,4LJ���FR�\����"�9K�㯸��Pm#"��W� ��&��`,dJ�W��y�R�T�ܨ�� ���f>�@A�_��+X�g�����P�� �ȵ�:":@.f>�@��9t�ˈ6L ���P. ��ۈ�� ��cJ�*����R!r+���&� �E�R�A$% �EQ�(6EQ�O�s����<(�`d�q������6�*n��"�D�I E."\�h"����D�R�Nd�[�FR3�� ��� "��DR���%�8t|fJ�E��sҍ��4�`-\$:)����E�:`ރz`�c?�E2�FW�`� ��DQ����O$��K� 6 }>�O>����D�ȡB#��RC p$,"G�۸FQ4c��D�ɚ������  �>�#"gJ��]��M4 ����>-x�ܣ(6���)��#:p$�W�Բ����Xʉ&������R$!r�����g-Pf�m�~6����D�R{�HA$��n�b���"zg��)��D���&6�P�˲��Ո����g�A�����\2(��~��� a$5&Z`(�EĞ<(�g@`$���W�`$�R�T6��I�J"A�-"��� �I$���M��KeJ������T��$�p�+X�x$�3C#�E9t�)��Q:p�3" ���P���ltQ,d�E�:�����"�����}�3Kn�t.*����r�B��0�=��OA$��+�""��g�� S��#���G�"(EQ�IA(�M� 65�g��K�Й��"� BbѸ,�Bc �8�����2X{-�C�R SnQ ���k BxDR �B�_%�ǁK%>�>����R�gG�q�9�*� pH�ѡ�,����r,�R`�{� :��`-� �4�TM$ ��q"?HDQ���ʑ�,"��[�BM4�^�U 1��t$4��YD�_�R?ۑ`4��G���&N4��0�L���w5�*�O,�h�&�� ��R+�C�N4�R�E~�`JK��=���g.#�(��Ep�)U�P,�)��eǁ��h�g�"���W"� Z�G�EXFQޙ���J� �����\$ϸEp�)�h ��K�7f��b�.� ɣ��>�ܨ��3^�q�)��@�(-"���(9t6�8xh�G��G\��E���}ĞK(�W����hP��8���SbS�3L�gl�Ku4�*0�ʨ9�T �'&Z����8t-��Iq�b �L4��h2,�R���� d@ eJ-"�K�2�����ERG��6:�!�_!r��������9�P�"�4'&���ID0�)5Lщ���B!r��KU/DǁG�ȹT��(D����E�P� ��[$��Mb�7?Ҍp�C'�,"�@ �hJa���8t����& ���С� �$6�E�OA�9�`G ���!r�� �����_�B��h̀�C�R�/9bH�6�E�"�*�� ��ER�و�������l��ԑ���E�T$ S���  H�0�&�E��I�P�$6ь���{�J�%&Z"��;���)�g���&K��H��� x$$Z��H(7�h$a5����q��d�&�E�c��h%�n��R�M��0U �g�͸�D��<���"�8L=��`�"�&&a%6EQ�ʲXe>�� }'�)��W(!:�B�/��) �/���7�>�����,"ĞC�B��p�C�h-"_��3 �m""�����"����En"�#Z�� I}�X�>&Z������TG�h�h�3.����hJ��R����0� � ��q�ـ��bJ{�)��(/�� ����Ee��"��h�8�#���.Ց�{G��2L{*!�,-"+aI�3J�`'&Z,���.S�T,IA�p�X(���ԫ(��.��`J݉.�q���K������J��E�P�� &�8t�` ����/!Lv��@9��DR�b,�e>:#�(�3!\�h ���#�M�ȫ"��&�n� ҄5�"�����q��� ��<�':)�@��Bd@�`ބ��(K8!�(�S:� �`�$$!�6(6���"�hy�� 4��%�� \Eu�� : 3{�)-J���7ш���H,��� X�T� "�=ʍ��-�J� ���-"� ��� l �3FQ"'���z�0� �bSA�{���x�T���B�gG����E��6,-"bS$��p�0�7�Mbӑ�S+�D�#&Z���9�G:�{8ւ��C7L�{b,�ȡ��$��� ��E�����7bA$6�B'bA�,"�RA �W@a$�_�M[�H�RbS�XD�c�+�M.ՑOERM��J-T(�gpѰH쭍�\P8�8t @����� ��E:ʺ���>����'�E�O�JÔ�'��W���x � �B}��X��[�9 ���FH�~�[,�W�K ��:��9���� �IQ��9t�Q(:t��KI�Pi P�_M4�|��}>p�)�� ��[t�E�R(/�/I!����/�� j�Ğ��R!r�KA4�(��)��g+X��� �Y,$��d��h��.#�_�g�K�X-��#"w$|��p$0����'FR�xd>�� 6јRmYSH̋Ô�,Db��$69��ʫ�j��\5�9�r$DR�^5љR�C ��*O�C'�DRQTAd B���)�7���(�8t�TA�REQ�"�_)/�؄���-T,f>1#��� ��(,�g��D3�,"V��dJ{�O,$3�g�#�$J0�0u$��+X 8�M4��8�=J����gbS��8t�(����"�I{T�� �n��h�E�PA�B �n�C7� �'(�L�ʋؔv����80�T)W�EU!"W)/nQ踈�&Va��_���cA$�\�.U��=��X!\�2�B�LV�h�� :�_�`�T  EQ��K�7{-�ش2D.:ʑ���/�L5ѸE�[,�1��wf>n6��3��h"��R���2�E�� 6ER�!" {�a,T#�E��t$�EG�:x"*/Q��|�#YE����8L�&���IJ��+(ϔ�p�K� ~��ʸ� S� l����d��b�߀��3ʋ[�R遱�� �P�� ��L4���I%�����W�`��R�`.���#N��8�(�T���Rً��q Ϡ�f�<��K��CE{��Yh�>��/Ğ��(/.#���>�� &��Ğ<�R�*ލ[���+�C ����Fw$��m�q v����W���hM4������@�2LMt�A� Ğ�8������|���BI���[,эĢش���Ôh��(������UZ8L��ģ�"r� �cJ)�.�=�&�`!8��� I%h����R�R��7�g��0�Ƚ*� :`JER�Y!8&.�]�|�` ���*�� �7K*⫲�J��K�3B��"\���� <����""$ ǁ[E�(��[(�pQ[��,�bS�� �� ����c�H5:)������ H�P�,=��c,EK����t�p��B<�����90��[�BERb���R�`o!�(M4�)�9�p!�O�"\���E��(8ʅ��(��Wd�v�BEQi ����W7"�袌�d�D3�(/r�"�h��b�D$q��R�>��8�E_ ��_�R��"r$�>QT E�3k��� �(n(6ER� ��>."�x�`��"�=��R$� �Md��II�i��, S�oX�R�֑P���:@ r��,D�<3L�P�Y�f2�Wಈ""r�CG�9t��H9&ZC ����0�߰��-��p�Enm,�R- ���P�x"��;����p$`��կ(��En|���Rd^�>FQ�҉(�WJ"\�h9t+X�6�����(��*Ğ��`ʋ[$��Ec$��3�����/��϶�a����b΀ �C�����A�(}��еP��(�~��^��Ep��9<��D nQ��/���^x?FRQ���h%ZY�:���/��0%��g���D|�K�#�>��"bN40b e�g�J�b�3D`��f>�TH�FR�"����"��� �7�W�ґ�6S) �I�R �>��٫��L4�Uu�3d�� ��K�h}��)E"r�<3Ѭ`���d>z`Yp8L�T0�K�){��C7�DR��"�JG�"򞙂�"�,�`��_8D���Pp�P���3�Pʋh�R�Y�`��P��V�?�M:P�Y�"��2N4�� M5nQA��.Um�<���G�*\����8t-"E5��a(�Pi�"E�P�#&X �3�ԑ���P.���mt+�H�B����/���-"�̑�_�S��DI�>��K���� �7h�b�)� ��=��J��09��-|f/"r��; ��!�,����FW:t��m��(���[�� ��w#6�B-�"� �3�U���,�/]��9��L�(��� �>�� ���E�L����R��)�B{'��R�/n���:t�R���ER��<#�D0�簂 SG"'6 �K��%Jp�I�>����ER�%�{Ğ�X,�M�c�g�n�������A �_�O��&:t]��B%Z�V(>�*-#�78f�c �t"�3��""&Z�!���M4ʋ����E�Y�h��0���덃�a���D!�=�g�Y$��ل�)�� �b����5",e>.�����g��8S:��P9"rÔ&8L��Q�ߐ&���� �$Z.տ8�%Z��ߐ=F� ���� S` �����7���/($򌦔)E�>n�"���E�\��B{= "�K�� �:."�O�RM4�"w$,��� F� o�h�#�`�\e>�K$���U )S<��g�T�� 8�DQ�0 �E�!:��3� �$��M,��t����Ti`$�<D�a,D,"bS� $�3�V��gb"G,�38#Z(EQ�Ac87�(���P�ER�ȫ���&��"��!r��߀�؀�OI���T�Ҙh FQ�a ��-"d� 6LE�Ô�(�{k�c�78����xJ�pQ &Z+���*p�D K��B%�6Z��_-"�h�7DpQ�J���D�(d|���g��{v�BY���7Jd@,$)FR@�"�B�E��d�?J��) �E.U50� ���"�gM�3�L4��K��L�ǁ)eJQ��T$U���"r,"��Ty7�����>d�)�7�P-� �h S�� (�*ң�b�(�I]�/ ���T� ���(/G�KE0��q@��Y,� :0�ߐ���� �8t� \$6)�n����(/�C��T����B�ʋ���+����Ef��&�!\d0�/��{��"'6JnQ��7D�),�E�����â8Ġ-��0��������(�MG�[T�h�J� )/ � 8�n���l�G� ����h��@�6�8hJ�MĞ����M� |F�Q����С?M�EJ��Ku$DQ�C2��K�#���`����Pd����,�`�a�8L郞a��ER�K�R�M�����B ����g�<#��M�#'H���Ro��WhaA$,{�b$��!r��"rDRp�h"6e>���7 SG���ڄ��q��K��"(��� "FQQ��_ �cA$� S��0�TpQ$E厯 "��R�:O�P�� (�8t�P�(��� J������� �X���0���ˑ�;�R�T, ����0(�M��� Ϩ���,�&�L��_�P�R�(���b(�&��%X��TI'�M��h��M�|���� )/s�߀ ���Ds�nQ�8��b� F�� ��/V#�4Ѱ�b�[tK����*��E9t��v&�*��Ee��^%�d��C���*�h��B� � ��D3L1�b�q-�P(���K���M0"q�R���"夈M��� ��&�V�(��Y$C8��ڠ8���K����`X���\�������H� d���U���q�_�Wd��m��O,�<���p)~���M�0~��6{��,���� 6K+X�U�l�)�R�B���h 1��0��`+X %,�T� ��*��i�K:"�����h�_-�G��(6� 9`$%�� \�)z7 �D�N4� %� +ثR� .j�ȝ�Q5�����0eJe>ï��EZ#:�6���ش����\��R�T�h��>G�� ��/�O,��P���@��BnQ��g/#��$Z�!��:���)��QT<� ���:�>-�4�� �<�/FQ��CgJ�& "I�`.����P�\�7J���H칆�� H�U�M�(���x��h"�`�����&.�hB�}�CA$��gâ)��E.� @�q�ơ 8L�B�R�7�M�ȫbJu�-��Iɍ��F7�|�I`��9~�c��78t��������"�{�`��{ �w6FR+X8�J.�[������Ѝ�� �9�EbSAt2��ϫ ��� �R ��I���"\t$�>� ��B�T��H�E�Y� }�O���g+:�Е���C�{+��bJe� �/�g���(�L4��H� S"�7���O,(�.��,D�:p>FR.�[I�z�#@쵉]rx r�\dJ�T��D��Bp"E��C�(��B�  �,"�\$ ���T���*B�r�X���� 3~���(!r���~=b ���R���T)�pQ��0���7��B9���= r#�l�͡h�9܍GB<�E�ˑ`J=hL��X ���� &������"�8���0%��Y�ˑp$<�6� &��T��DcJ��߀�ER����B6ګF���� ��g��q��T�#����Wb�"rL4�(Œ�!�)ʌԡI!r�˫2L����xd>QTu8LER��g*���q�%2�q�7�E�\EER��C�B��\#������"r �/��uX�]#'(j� ?,�����RE��U(� r�D#7��1*/#|�9�P-��_��-��(���+b u$�3���@7�P�Vv�%*/��0,~.�0eJ��� `J�B�� �7����q2�>]$(�&�ؤ�L4nc<%6y��Y�(� S��A���""l�K�6>0_`� 2���<��PbS�h��ʋ6�_�RQ��{�� ��R!� )/Ğ)�Q�C�I��V��h�M��F�C2$K�T$%�L4��q *�٣�� �3��EG°�5v�� ��r���K�h�/n�(6!rn:S�O$%"r{ |(M4� (Ղ��E-".Ց�<����9K��0�${�K�E�J�(�>�ʑp$$�Q�K�=�B��(�Ei "�>��[�=��0�v�B�3��"2�M� ��4�-�0�N4��8�L4p�(�P� �I�&ǁ<�J��� �xg�" ��K���{�#�H�u�ѫ���Mʋ�:t`5LJ�ȹTb�(�$Zm�wH�B�:`FR�"�6�zMAdJ ��6uL4��X�ERd|�ЙR����3��qE9)QT,�6"rJ#\I�T-T�J3�"� �Boa$%�`�#>���F��8t��sJ��H@���:��B"��%�P��8x� ���r$�����P**/GB#��T� ͨ ���'������4��p�"($� ��g*>�QT,I��6�����/����R������#6�� �hM4Q���R�+�h�E�:0K��H�}����X1�T�\�(��`2��(+���K��d>� ��%FQ� �4�D����X�`��0�ވ�a�_���K$Ed>�����P� �����r~]������<�he�-T�E�D.U I�T��0%�+��( :t4�<  �|&��?��"��������>��v�8tQ�[D=D����B%ZĞ�d���"z�$���~�7�`�|6N4���b����8t�CW�n�)��� ����7 r��q`JM4�6��"7��3�4���(��������E�`-�ȡgbp�Pݫ�7�R�TEJd�؄��g>"y8�d��� �ݐ�<���%㫲�J�^�8L S���� �n0Le>��4L�*E"\�hEQB�(%Z�T�� r�� a��� �h�P�O,�7�3�KU�ERD`$�P�[4�{��y8,N5i |��R��(�R.>� N��R$ez7�\���,�h��T�\�B�MQ� �3p�[$ �E�<"S�\� FQn�Cw���zX)d�h��(/���#�*d@z�_�(p����>n�K���S�ۈ��&�C��L4Q�hJ9�o�z����@,$��RGB{8+��£{hJ�����M4�ʑ ��&'""gJ�T�`�S#�`�a{�h��T,D�%Z���,�b:@�M���#Sp�""���� ��3M�����@$E�W�[TN4�i��T��J$` �R!rp���R!r��q�,�3QT8� ��>�:)d@$u"�&.:P2� �[��&b�� ���",�3��C'9�3�R)E-"���m��R 52�i $(�T�� &6�M�� ��|���(�8t� "�7 r�\4� S����T�"��'�0La���"r��` %����(�p���[I�+�_D�y�Rq��*�#K+���>��C��"ra�r:����"�9��P�:j�ǁhb�}1���Qԫ�� r�c � ����h�Be>� p$�g�`,I ���TI����pt����)/3�H�*�((����'�r����J棼D]���T�����W�\�B�T+�[�R���a�IER,c!�Q����9&Z��KUe>��� ��-T(��>��)�?�R� ���E�0E,���"'�L4(�(%�A�������<�B�Mz \�N4�T����)��J���Lt#a ��0�E�>�cA% ���F�#֊Q|&��/P�Ds#V��π��L4�����M,�Jb#�S�W�Ñ �H����,S�ɫ2���:�"FQ+X�h �R�#�H��W c �ȉ&b�)������[T ����e>�h���<�R��J��""r���6�g�a�!�*.�� !r����Ed����"��T���h �Q�{�6��D r"��_���c�� FR �<�B�P�K5L�g-ԫ� �b��h5� �0u>&Z%�D�7D��[4@���2�{Q"G� �T�x��G�� 6��+�"�B=��\�9�&���f>�����>�Y,$�L�� �EER��簂 S�b$%�`���1.�A""���W�hJ�*�����/��(��Eщ��D0`$���P������FG(������{nQ!��m�0`泂-"bS� ւ��[� �P�$,�E��� ��q������ ~-�[t S��H,{-�D,�g\�h2Ѥ� Z�!�?��E�E�砼�3'��1��`����P�R$���h �(�� ��K%!N�[UE� 2� �2��F��$J2  r2  r2  �2�9|��� ���� XȀ\� ���/�Ax��:+��@�� ���/��Ȁ\� �Ȁ\� ��D r2  r2  q�/P�gZ� r2  r2  r2  r2  r2� �f2� � 22  r2  r2  r2  r2  r2  r2  r2  r2  r2  r2  r2� 4 @��Ȁt�9Ȁ!0 ��� ���ҁh �@�T�j l>�\� d �@��t bC� (@)@*�Ȁ�*TJ2� 4P�O� ��Fـ �ȀL� ���/ �@@D��G� J@�q� 2��J�~� r2� �I2``�2``c2� ��� xˇ�DXJ2���Op P r2� | ��� hF�;��^��|� �� �2�.(�@��(�g� ���0i���/P 2� �� �C` J���`��~�y r2  U�/PE�@@�� �@�  ��/�2XȀ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� ���/0` 2� |`�&� �Ȁ�`F��2 Xr2����x��Ȁ�FXJ2`��jg��2@n(�� (��ҡ ��/j�N2� 2� �q�'� ���6 ��! r2  ���� �@�� J��G,J2� �k@-� $�2� }�� ���\� ���� ����� �@!� $�2  r2  r2  r2  rA��xˇ�H�J2  r2�X�jg���/P;,�20�ƒ  ��%� ���p< ��< r2  r2  r2�"��� ���� J��*2� �<2� �5BP? �2�?,�2`�c2� dӆL� �Ȁ\� ��2� (�@ �XJ2�\r2� ��Q ���Q ��$7 A��/p��20�2���/{C��� ��;�,�@� ��2� �2� ��A0� (�@2� t,�� �S��y J�3�XJ2��]���� (фL ��Y` ����2� X�2���F� �J�5`��/P�x2� ���L@n r2  r2  r2  r2����� �,��` �@�" r2�  �L� (�Vn� �2`�A2� X��Y�� Ȁ\� �Ȁ\� �Ȁ\� (�@��xȀ` J���J2�� 2� � �  �K}����$ nO� ��@L� �2�wX��/P iE� ��6  �@�qp��/�SX��/���A` ���!T J@a r2  r2  �@!� ���� �a�O`  @A� t�@�� ���a �@)0D.2� �GG@l �2ppXȀ7����KQ ��/���`g ���1\XȀ\� �Ȁ\� �P�@Pf���/0X�2� |��� � �`�, ��)@Y�2G�s�s�  �zS5"�2�?,sAc� �Jp�flJ�X% r2  r2  r2  r2�U��Qex N2�$�2� �22� P��'� �gH�d�J2��/� ��� x�� � �#0 �A��- ����/ ��t ��� ��A�a �@�wX��v�"x݆ѱ ����4��/0p��/� $U2� �x�` x�!� �z��uj�Ȁ\� �Ȁ\� �Ȁg�|���0i`>2  r2  r2  r2  K�/�T���/�d��� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �4Ws��@  ��  r2� P#� ��2�{!�) E���/�� y2� 0^�@n� ��!r2  r2P �@�w�Ȁ0 )�2� 0U�\�T!�2P uȀw�h�Z�2 6�r2� `H�P J�a!PH�jp�W�� ��`�U�20 !�B!� (�� 4�2�`K��/`�BH@ � ��,d���� ���Y!��/�� �@c` ��@�T�Eπ ( ��� ��) ����E<ö� ��� xP� (rӡ( �� !��j�i�U��g�+X��/p � �� ���� � a.v� (�P� J�J2��Yh�" ���1�ZȀZ��� �Ȁ\� ���/�4 �;�7(�2�.l�PU� �@&1m��2� ��2p $�2�.����� �Ȁ\� ���/`M �jdU��/dU��� ��@ߵ r2  r2  r2  r2� � @F4 �2Sd�2P!Q�\� ���\� ��Zd �H�| 22  ���`�1G!0�U=2�` #ғ� (���!���! LG)  ��/�� �#�T!��"1D0L�z� 8ς�V= 9�� ���Z�,�@P���A�!�d����� � �!a �2 ��/p P}@� �f� ��\� �C<�/� ��2` ,�@"���/� � ��� ��;���cDWU J2� 0U�� �Ȁ\� �Ȁ\� �a�O�-�� �93@"� � �)�F�@��$�2� ��B�? �@�|X$2� ���e ������b.(��V� 4|��n �2�?,g��B ��Eq�2� DF:�2� �ȀL� (�F�� J�P@�2�Z�q2  ���-�H�2��H��*� �S�. A��� ��e�F �2��Ȁ\� �Ȁ\� �Ȁ\� c2� ��D&a ��/� ��2����� �q�\� �C�A�� ��"AD��/� � � x��/p���/�4Q9� ����?� �@�� 02  r2  r2  r2� dI2A � ��@�����/�`�ǟ� ��ХV��/0Z���� �Ȁ\� ���/P*X�2@nX��/@t]�@�� (eu�XUG\�u� �"�t([Ȁ\� � �x� ��t��Ѕ �Ȁ\� ���/�_���/P �Ȁ�a(��/PY!�L�F �@��iT �2� ( �i@N���1:��e�\ ��1� |�e�j �@\p �@\p ��@\p ��@\p �+�1���`m�Vǀ/pBT�@g�|�K�@\p $��A[�I�1`!��1� H[��1�(���4_���� XIǀ#@��1KT�@\p ��@\p ��` ��1p ���1� ��1����ّ���I$��Dt}I;Ap ��%�R@!p �wD!�-����"Tǀ/�3�L�X�,1A�[�Iǀ/@�V�1� X��1� �Wp�1� �Ap ��@���"�k����q�q�1PXq�1pi�,Cp  �C�p $�E�&�@E14%<�1� M�1� RLp ���/�e�Iu�ap ��ߥq�1I�"�$��06$ǀ/�GTǀ/p4U��10nlǀjU\��jU\�1q�1�q% H��1q�1p �I�Np ����ml[S�1�(M�1� ,Wp ��Y`{� D��q ��@\p ��@\p �ǀ/`%�W�1q�1q�1q�1q�1q�1q�1��1�B�q�"@�+�Jz�p ��@\p ��@\p ��@\p ��@\p tI)�X��1� ��B�I@uU$�@EtI�1�� ��1` ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p �ǀ/��lFL��U�@E!��@!� ��B�ǀ/p �ǰ)��/�2Tǀ/` �>�kp ��eL�@ m$ǀ/�_���� ,~�1� ��CLp ��N��1� L��@t � P5 X>��q ��@\p ��@\p $dA�\]ǀ/PQ��1� � @'p �@\p ��� P��1� ��@8� ǀ/ �^��1� �4@?���1� KD)p �J�Y���@g�|������@\p �;>8��1P ���1�C @�I��D%$�@@$��10_U��|Tǀ/�e$@�/�nuS�xp ��@��$V�1 3�ǀ/p �[;�1q�1q�1q�1q�1q�1� �[�D)���)P��ǀ/�E8�FL�.����I���I�1�?(�A���@� �؂3`��.�6��@p $��1� �M��1� �PL�i��@p �M�WL���1@�@@ N�@�q �ǀ�@fp�/p �Z�@Lp ���cp �����3 N��p ����ǀ/�H��t ��@�T ǀ/p �H7QLp $EUp ����@�.x�����p t�G\p �E�cp ��q ���q ����t ���$�@��"q�1�R@p ��@\p ��@\p �ǀ/p �N �1 �ǀ/p � �p � �)0c0q�1� �Ceq ��:���0<��)��ǀ/:O�@�588�C�q�1�ǀ/0b5O�ӈEb�@��<�X��1����� xP�1� �4@?���1� ���p $:���rU,�np $�@L��V�@�?(�)�q�1q�1� �U��!Vu�D\p ��L���rU@��P�Wp ���C�/�0�Dp �ǀZ�2PEǀ/ p��1� ��0q $��8 �p�/ 9;�1� \���Q>��Eq�1I�1��X�@p ��E�F��1M�1�/q�1� ����m��P*�0D��Q����$�Up��t tʇ/�0Qt ��@L0E�@���KU�1� �1�1� kRE0�]b�1q�1��aե��1�5���` �����T���1� ��An$ǀ/��l�u ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p �ǀ/p pP���ǀ/pIIL�1q�1I~��E�"��@!  "�ǀ/PDY�@` )@p ���� �@p pO%@P�@ ���1�p �@�Wh݀vp ��1��N ViQ�AL�f�U��1@ �^�@g�|0��1� �w����� � �P�1��1�P`:�1� (Y�1�ǀ/�Ouǀ/���P �/�I)�@�� K�1� 0;Cp �����D i�p ���5�@����R�'����mpE�vp ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��� tR �1� �V��Xq�1q�1�C@p $���ǀ/ Z�E�X� ��@p ��F\p �f�GPG1ǀ/p �oEp �wԟTIo�$ǀ/PQ��yp $���$`�1�H�������'U�@F��@7���� ~�1@0��@(` \q�1��B�@@%��5p �ǀ/` h�@g�|��Y�`���P ?@p �F�QPWp ��@\p ��@�3$��1� �;�@)U��1p x�@:� � ��i�3�L���[���P��1KTǀ/���@)I�1�*�R@p �|F�Qq�1�P��G`q �;�rU�@\p ��@\p ��@\p �ǀ/�H1�16dq�1� �S�FLP8�ǀ/p ���1�ǀ/` )��1� ۔1u tI)� I�$ǀ/�LU�B��q��x � ��t ���p �;�`�]��N��K�1� ��p �f�mp $����5Mmǀ/ D��p �d��p ��@\p �ǀ/` D�1�LT Up � ����ǀ/@*l@��1� P�[���"��TA� ��7�,�ǀ/p ��1� ��B�?��1�8y�1� �r�1� �S��a��i%�V�q�1��EU�U��1�?(��1� ��1��V;B'P$�@ f%ǀ/P;Qǀ/ X ��1�X_G V��Fp ���p ����GUǀ/�i�T{�m���$� ����!�Zǀ/`9�S�@��1�N��1� T@2 �@\p ���p ����E�)�bq�1q�1 r(�E��2�N���f�>�2�Ƞ,O� ~�����ϑl�/`��3�Od ��\@r�d ��\@��1LOv��gX>���Q�� ~�A�=��� � �F��� �_0Va����, � ����[S�5d� �AE�F����R+ 2���  �#(�$�z��: =vJܖ@��u�d ��\@r�d ��\@r�d ��\@r�-e��/gJ���S,2� �@. �_p ,2(���U� ��/�?2����@��m� ~��I5��ZjZ6��@=�-> d@_-����(d� �� G�B� ��@R!@r��I��/`��@g o�J������ �_`Q D���A�� �2�@J�"Xd� &�@�`}d� V�@���Q�� ~Aǐ �@. �� �2� �@. ϰ| 2�Ƞ�Xd��P�G (�� <����  �_p D2� �G.w� �;�s ��a��(|�6ֆr���\@�@ 4d ��`C �d� xB>� �!� �5��[t�@ (d� 򋚔 �@. �� �2� �@. �� �2� �@. �� �2� ��� �x&��0 Ƞ C� �A�X��d ��\@��Ǡ d@r�d ��\@���X�^pO��/@� �_��d��@���R�t(2�#�`�Od� �LțȠ`�� ��/�m?�d�r��@��~�z�QN��A���T����i�@. �_��G�)�6 �_P,2�,���d ��\@r�d�?� B � �_� J2����B@��@ɢ�d� �������V��2��F0 �_0m�2�J�.d� V+�� ��ɭy"�BA�� ��� ��\@���1� ~AY�r��*d�2� �'d� >�H� Ƞd�x�&PU� �Ac��u���/�B���3�"@ �r�d!w��GrD'�%� ~���W !�� �2� �@. �� �2� ��p! � ~Au! o�- �D� 2P�bD> d� xan($(�c��@��d�����G �_� ��cP�5"d� �;���d�d���P�@\l ��\@r�d �����pd� �~�'��4�B� �2� �@. �� �2� �@. �� �2�1�S  p �gX>�� �_01�0������� x 2�,��"�_���5(@ ��_�K����� �y�2�%7���0z2���"�� �j�Y@��@>@Ί �@ ��B� ~��t����� ~�E9 = # �� V2�#�`:d���PP$�B� ~ó����D�T� 2�+O& �_Pd�A��� �� 0�/hx��� ���&�@. �� �2� �@. �� �2��� �_��2� �@. �_`<�2�Xd�^�KB� �d� N�(�(�1� ��왮�#<�����/� �D&<�|� ~A���4�z2@�F 0'� ~A�2x��c~2� � �_ E�[� o�d ��\@r�d ��/� nDd���/�GS�# �_p� 2��@&Ud ��\@r�d ��/�I�% %M-�@A. �� �2� �@. �� �2� ��H��2� �@. �� �2� �@. �� �2� �@. �� ~2Hg�4"�_�3{f�����Ta� ~�)� �@l�K� 4��Ƞ �� �2� �@. �� �2� �@. �� �20c�d ��\@r�d ��\@r�d ��\@r(������@�!!�dpAh$h�' �_ཐ��@�` �_�҅g����� e� ~A�a ��Պiƪ\@r�d ��\@��hZd�NA�S��C� PC�� ��<�k{C��L@���?�20` � �<����I& �_� l�MR�@] �_� ��B��`��� ��/��=��d`��/���d���� Ƞ�_P�{ �@��dPF,2� �@. �� �2� �@. �� �20���d`��ذ��'4�C.��/h&J^�� ~A8��<�� ��/�"���h��/X$C$ɔ%� ������@_ � ~�)П� ���h�2Ќ @+d� ��J�(<�T�@��'��-jPd�X��F&hd���ב �� �7��\@r�d ��/,��� �$��8�@ %� :��Q�` (%�,��/`����APo����� ����` �)�x2���v%d� PC��Ƞ,&�� ~AY8��d ��\@r�d�L�/8�U. �_� �@�@ 4�PN��/@l҉~�(� <�� �@. �� ~A� }q �_�p�L@�� ��� �2� �@. �� �2� �@. �� �2� Ƞ$�T��/�_˖' P L@���d  �;��0d� ��[�����d� ��D����J� �[��@�U�\� �2� �@. �� �2� �@. �� �2� �@. �_l��AJ`*�w� ~�Y��@.w� �;x�t��x@d� �A�M5� ����/�Lh���A<��/P8��7� ~�:�3L �_Px2X��� �_�*�2� �@. �� �2� ����5�-�2�a�'��� ~2���� �DP��/8��R#��/ =�����Bn��@X�� ~��?`�|"�8"�����I �8d��4�@@�_N���@�`Up d ��0zɾ �_��6�L@�� I�h��gX>�� � ���`G �� �2���S�"��/h���%d� �[����'��/�-���i���/@���d� ���0 �@. �� �2� �@. �� ~��@t����ǀ D�5�r(����@����A�dAp $f�G��Q�@p�$��1P|��@��/@��@�����I@�-$ǀ/�1\&ǀ/PMTǀ/���ǀ/��P�@\p ��@\p �f�mp ��@\p ����Q�� ,Yt ��p $-�n�J$ǀ/��1� e�T���p��1� ��B�?��jui�U�������S�@�aT����!pHp ���k���1�w���1���ǀ/`��o V%�����1�w)�@\p �ǀ/��U @p��@'bU�0YI�1@0T/ǀ/�_�ǀ/0��ǀ/��`7�1� ��1q�1q�1q�1��W �/�I)ǀ/p � �Yp ���q ���ށ�ǀm��"��@\p ��@\p ��@\p �~%�'u�s $K�c�8�@\p ��@\p �E2`�a�1� 0�QY�1��/p � Q��1�.(����QT�@��1�9���A�7�8Tǀ/p ���p � @~��##��1q�1��1p ���$��|q�1q�1q�1q�1q�1q�1� �ET2�'q�1��e���N�`D��1����1�� @�,I)�������p ��TL���`maOǀ/p � �Y��ǀ/p hǀq ����� ����p�Tǀ/PQ$,��q �wԟT�@�I����$�@@o��@\@ ����� � s �+�1�I�xr$ǀyCڐQ��Q)�� I�u�$��06DPǀ/���Tu�1� XFn�10B1�@1�I�1�p�Ep ��@\p ��@\p ��F\p 0��jui�@b�0�@f�d��1�`AYLp ��̝��)`�q�1� |HH�qp ��@\p ��@\p ��@\p ��@\p �7�0t 0��GB˂)p���wt $ǀ/p � Ap �ǀvS�"`�8 ��1� �Eep ����Tǀ/p @�1� �ǀ/�"t�1�ǀ/�� �A)p 4�B��q��x ��1�|:��T$�@�H�I�1� �@L@%�N\p ��@��q�1�T!I�;p 0�@{4x�ǀ/�,@;�Np ��@\p ����t � ��ex7ǀ/@)�Z��1� �V�@p0��1P��$�1� ���Up�/ Uǀ/�� �1� ��B�?����I����ǀ/ c�ǀ/�/TD1Agp $�M ���1�w���1� T@���QO8�1� �G�P�@)�"pǀ/p �IM��v��� "�ǀ/p �]�F;p �-�q �#Jp ���.� ��1� 4O�ӈ�<R@!p ���1� ��@L�x�@�8I�cp �oQ���p"Tǀ/�,�Hp �E@��lǀ/��� �1� p����1�wPǀ/pi�_p ���4���1�w���1� �������@4�X� , �1� 0%Ɠ��@(` \q�1� 0 �q � �+�Il�1� �L��Lp �� ��;��"�}� �1pv� ���U���B;`��@f�d��1�ǀ/�"pRǀ/�3�LI�X� $���0* ��p ���7s ����q ��)P��� �V�1�"�ǀ/` ���p $f( =Gp �SA�S��1�#9 ��1�T!I�;p �B;� �c4W�(�At ��Bp ����t $�(%g%���!�@\p ��@\p ��ULp �1�1� ���U��1�Tǀ/���1@00Y�@��"���q0�@\p ��@\p ���` �7_Mp D77Qp $�k$ǀ/p x�1� HM�1� ���Yp �H4Rp �;�o�f���X� �D�cp ��@\p ��@\p ��@\p ��@\p � �Y�K)��1�z0�1�� =��U�B�q t�G\p ��@\p �7LYp �ǀִ�����B� $ǀ/�I�1� �1u�p �F0`$�@\p ��@\p ��@\p ��@\p ����au1�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1�ǀ/�� ����ǀ/@��1G��1� �1�JLp �r�1��@@��1P�@Ea��1�t� @Щ,;�1� 0Ep �yP�ejI��1�@g�|��D�!C !p �� �q $��Q$ǀ/ X ��1@0�#��10n$ @p ���z`|�168I@��$�@7����KA �ǀ/�0�fq �� �q ��Bp $E���p:I�1`!��1� �4@?���1� ,<�1P\b�1� Cp ���p �����hXǀ/ Z���{p D77Qp ���ޱT�@\p ��=a6����(���|��@g�|��t �ǀ�q ��Bp �ǀ/@] n�[p �E�@\�{��wY>I�1��Ik�-�)�T �1G�D�1q�1G��M A8I��pǀ/��\�@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@!p �ǀ/PQT�U�Wrp � ��qq�1q�1� �f)� ����d�I�1� "��p �DSp $���$��1q�1q�1q�1�@����)pb�1� �>_��/�8 ;�1� Qu�1�C@p @ǀ/qǀ/�,(7�1� ���1���ǥ�/�� ǀ/ Vm^l�X� ��Z\p ��߅j��� �G��qp ��@\p ��@\p ����Y�k���1�(���hDx�1p��8p  ��k� |q���j��@\p ��@\p $gH����������� ��1q�1q�1q�1q�1�(��1G�1A;p �ǀ/�_��@� �+@p ��M\p $Ip ��@\p �ǀ/p �@�4�@�s ��@�g�@p �j�1� �ǀ/��P��i0j��@\p �ǀ/` ��@\p �f�<� �ǀ/@�+VG P��N�O���'t � tFp� ��` ����3 ���P�@/@Q�e�m�.�m,���m���H@;d�0YL� �H�1��+H����@�q���c P�@/��_�1p �@/����@@/�,�` ���Py�+$�1����1� {W` �P&���@/`G�I�1`P�` �K�H��������p�1� ��G�������X00PƀdCbI6$` �\` ��1��Uف�� aU#0��1�F/�2P�@/�\6ƀ�� P�@#0H��uTQ�@/����/a ��\` ��\` �p�1p�1p�1��a ��Pc` �_L` p�\` ��\` ��\` ��` � AYPO �@/��k�` ��\` ��@/�, @` �������RaU/�P�!�H���(8 ` ��Pc` ��1�?$o!` �� L` ��11-��N�-�1� �,` ��1@p�1���������!p �@/�(�1� |=�^DS\` �X�� �XH���?��1�?$e�b�p�1� o�a �'���` �*�` ���zp"���#!4�\` ��\` ��\` ����6��1�,��1` PP_D/���1p�1`� p�1� ��@/0�ƀ�g���b���1@D�bL(�%�����\` ��L` � ��94U-,�p` �nj�'��1�B~�p���� �6=�1� ��1� �:��$8����` �e��)�P8�0��$1y4�1� �CB�A/P�@/` l�1` ���4H@c` ��@��b����p�1p�1� ,A�A` \ �\` �HR ��4-�@Ƅ1� ,ʇ�p.�6��1��$���@/�F�1@#���� H��4�!�@� ��L"` �;��F�ƀϰ�H�@/�F���1� ,0;�u��@/� ��1�  �E4N� ��� H�da �pj �@/P<���#<#�1@#��@/`�( ��1� ,TS����N�[�فv��U�@/P��1� �[TL` �H��1� (A�hHҴH ���d�@/`��6��1b-H�.b!O�` �G�HҴH�4Y@Lp"� �@/��kFv�}�aU/���D��` 9C����@Qv` ��'7hH�1@7L�@/� � A���t` � }C/�, ;�7 ~�1�p���H�1k,��A 4\��H@�@���PMV0H,��H�1� ^-�1�tUv20o �@/mD�A�a e:�����@`h�1���ƶ�IH�1�0 �Xj0��"p.p��Qe {L���N�[�c�gV� �� � ��`!` �͵c�EH�100 $�1� zGRa n��0` �L�����Q��k��ƶ�mIH�1� �` 4 H@à ��3�`H�1@7L�@/�F���H ��1���` �<�H` �������0e�H�1kh��A H@��H�1� �:�1�W9^/`\�x�@/�o5��t�@/�,TS��H���H�O�(�5�ȃzs=�Vg,���!�X'�� ߒ�!B�z��!b��"�h)��o��66� ۣy�� ���*�� #~�K���!��J2����5oϓ�~�-�}���+�j��͈��j?�+��=��P�~��mH(v�t���ҍ�����Bz~?ヸ0R����H(������3>�%2�‘�� ��݌���8j��ވ ���b%��/��(8"v���>i���7�xx3��7�xx3��7�xx3��7�xx3��7�xx3���b�)Ց�6#��b:�Ȟ�H(Z�geԨ��ߙ ���a��A����A�A��b���� 㒨&ʋm���؍��b*:������ .�P#㶌6s���ѽ�#�h)"�R#��c:��ޭH(斮{��U��h~7ތ���8�J���QbZ�Mh!>�����1� #�X#F��"��$&��"�h) �&���6&�[�xH(Ρ{��G(Z�de�g3:��"��$&����8ތ���8ތ���8ތ���8ތ �]�3� ������ ��8ތ�!�H*��m���؍���`9�"r�4B��^�8"�d��g������)�d�x�݌���8ތ���8ތ��8z����H(n�����!>���?*�+��[~"�(\:��`� ����p���Wߒh,ƈ�"�xf��܈x3��7�xH(ڍ�a�� .�F���%� c�����!�h)��X� $�M�H$�ro��JL�b�(k2���,V燋tX0B���_��=���+w3��vaϨ�n�!�hg:���脮����+⌷%�� .�����rp���H(��v����=��rg)� �tȟ�j��� R��I��4cO�3��'Yg*r�?#�Hj����-��$���*���.�0�}���qF����0*����݌���8ތ���8ތ���8ތ�����\KH(ꏏb�3�ϱ.uތ�!�h)J��ވ� �㘍G�0����(�H?#�Hn�|;�X<��7�xx3��7�xx3��7�x� >���>ކb��2>�C%?���o �HS�9 ��0z���8"��fL#�o�!���[S�H(Z��&��!��bPz�����+��5�x& ����8���O'_�x���i�����vx2.�����3��h68�=�����3ތ���8ތ���8:��"�H(����H(��kY�3J����1��#KH(Z�����3�s�~���o'"�h)n�� ���"3ʹ���b~�.*���>n���L=y�i䗩&vD�v���7�xx3��7�xH(z�?#���Ո�b��(:�������H(b�����u��iי�?������~�!J�j0� ���p��Ջ�"rH(b��θ��7�3ތ���8ތ���8ތ���8ތ��hx3SN03��M����(&��"��?N�#"�(f:��ۭH(ֈF��2ʇ ��6a�;��H(։^2�d)��+���J��Z"�(0��:c���Pi�w�5⍘Q��cc"H(��b���3��$�9�������s2���H������"s�bth.拄���pk5?#�X'z�h��,���ܳH("ɹ��8ՠ�7�xx3��7�xx3��c�.�u�t��)�͚��8ތ���8ތ���8ތ���8B�N��Kmo�"��v���w3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xx3��7�xH( ��OS���ҡ�8��b�8ތ�!�h)Z� �G(��A�`n�t�#�������v�[*������.�#gH(��z��\2݌���8ތ㡒-���~�����L$���!��q�@ᙝ�����\1ሣ#��*�2��I��u��!�h>ۉ��+>��'���NEm#OX/��L��H(�����}�7�"�,+��) �� F����(��"�8�A�"�/�Hz"�H(Z�u�|�=և�cPH(Nϗ��۸�c��HZ�R�i�5�����i���� 2��R%�0�u"��J��t��i�L�D(։^2�d)��R�� ֎g���(>эb���y�ބ�7lw�S����b��u�tʢ��+��t�(��e�[z�s7h_� *�ۑ��0>���8tBx ����(��3��b�X.�?��t�=�[�~(��x�����p����9!����䦷7��<#��5�`ܢH(Z���� �z� �0>��"Ҩ+M�b� M����8�����K���GoX|!��0�� t�&L��!�esYe���"�L%��7�xx3��7�xx3��7�x�$���"�X'������3������&6���t�3��zS/�6Z���x+�M��g)�Y���(����(\n~&e�76ꢁ[��=z�����f�Y�H(*ʠ�b����%����8ތ���8ތ���8ތ�!�xB�E�!�H(Z�4bx(����˜B�q�5H(^��E�d:7�b�m�؇���w3��7�xx3�����������Q���e��1���cEm�Qp ���ґlq�1� 0�Qp � E�y� �GA�1q�1�~�_��I����eu P1�q ��W�A)�Kǀ/�0�9q ����p ��Uzp)�Gǀ/p �]��1q�1 Tq�1q�1q�1� �ǀOp ���[�� Q����/q�1��Vm$ǀm�ǀ/ m��@�HL@p �o�|q ��C'`%�!p ��,Qq�1q�1 �)� l��10n��"��@��gGp �_R$�8^��%�I�1� ��p H��1`G���p �+B�P����3!bU��Iou&�Y`Xǀ/`�Kǀ/�_�ǀ/�"�1� ��Z\p ����q �V\p t��ig��@` ����� � �1@0l��1��I@�t ��Д �ǀ/@4Uǀ/p `H1�1Pg���'���1� |�p ��@\p $��z���ؐ�Q���T����Q�UUpi��UUpiT�@\p ��@\p �ĕ$ J�@\p ���10n$;�1� ����mM�@g�|4ǀ/�\U�1� �_f��16 ��1q�1q�1����_U�@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p �� q �p�mp �!p � �+�Il�1q�1q�1q�1q�1� $��G`ǀ/p � �Np $�U�I@� $ǀ:�*�ǀ-q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1��N@ �1A V��:��/p � cP��1D���p \��P��)p�8��1� ��0q �I����~� �/�� ǀ/��1�1 �;`HTǀ/0I��1� 0 @�$`���1q�1q�1��I@pu�@E!�ǀ/�g(��1 Tq�1T�/@Eǀ/p 4N�/��0{uǀ/0?�l��d^ǀ/p ,��1� (Af�B����� �4@?q�1� ��DL���@)�"p�@` )@p $"��IY���|U��U@P����@�@�� L��1� �c� Xǀ���1�n��@\p ��@\p ��@\p ��@\p ��@\p �ǀ/`o��� p ��@�����1��p ��CVp $bVp $���0�Vp ��/ ` ΀mp ��P�I�1�8 ǀ/�6�[ǀ/p PB1��QI�1`7I^1Ap �!p tI)8���1� �q ���1�k%1�1� ���1� �;�48� �1� ��B ��c p��1� �SY�0��1�#�D1�1�U�1� (p ��S���Bgp b�1�(q�1� U��1� PX�1� �N��1� �[��1� ��p ��S�p ��@`HUI�1q�1q�1��1�;)ǀ��1�?(�1� 0�����ǀ/p x��1� T@�p �:��t ����@�t<I����Ap ��@����<9O#�u �͓�4b9O�"@�/�@ǀ/0?�l��d^ǀ/p x��1�� �Wp ��U�x��1�,1A�[I��8�@p ��@\p �ǀ/ Vm^x�X�q�1� 0�cp ��UTD@ET^I�1� Dp ��N��1� j�@����Tǀ/�"t��1�� @�,TD\p �����ǀ/pi�_G�t �,Mp ��@\p $Ɛ[cuI�1� ,�q ��@Lp 4��t �ǀ/�k���q �@�t � �A�DDt �2�V���1�(��N�`Dq�1� ,1�q ��S;0/Uǀ/�"�ǀ/p �IM��v��@\p ��@\p �pF\p �U�B\p �ǀִ�)�OtʇP5Fǀ/`|H��d��N�[�O�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1q�1��1�A5�c ��%%0 �@\p ��@\p $�E��"@��p 0��GB�@EdI�1�I�1G�rPL�/I�1�=�I@p �)�p ��@�%5^U�t��1� T�@\p �;�X�Ey1�!V��)�z����ǀ/Pg�U�G�o3�/0CU�@\p ��C�I�Pǀ/�d�"@�?��` � @p 0�@'�I�P/,ǀ/�� �1� kRE0�]b�1 X�@\p ���Np �K��p h+B��m��1q�1q�1q�1q�1q�1q�1q�1q�1 �/�I)ǀ/�Z]bU\p ��@\p ��@` QI�1�,�B��h�# b�/@��1p�q�1� �A�|��1@J��1� �QRp $��G��@E!���1�,�Bg��Y�@@ �RrVp �wԟT�@@ |�/P|� �� Z��5p ��@� iI�p ���5��)����� Tf��@1�I�1p �I�Fa@i\I�1q�1I�ΐhǀ/@�x@\p ��Tp ���1�!�/6����3 N�oq �;Bp ��,Q��s �@\p $���`K I�1� ��Gp ��@\p � @� ���1� � @�Uq�1q�1q�1��"!D��@ؐq�ǀ/PO�1A�p L "@��1@ �^�@��1��ǀ/p lS��1� $��$ B���3U�f�R�1� 0��1� � �1� ��yw�;�,ǀ/` L|�1� ���1�C@p ���4��$ H[�1� �F�1q�1��)u!<�2�(��[� J�� ����$ r2  r2  r2  r2  r2  r2  ���`���` �2`��@��Ȁ\� �Ȁ\� �Ȁ�(2� �Ȁ\� �Ȁ\� �̇� ���/� t�2� �!2��� `��P 02G�s��� ���L�7!�<�< q�/�� ��/� �\~�� ���;@/q'��� ��@ߕj�Ȁ���r2� 0@�G�1��2� �2� ��F� �Ȁ\� ���/� � � � 4�2� �2� <��/P]o�� $ ݀\� �_� ��=�j`�2� ��2� LN2� (��� ���1V5���5��B� �m@�  U�\� �/0 �@Y����/P�X�2�,�@!� ���HU  @!� (��&�T ���@c� ���4��/`����/p�@ 0V��C�(�C�:Aء ���4^Z2  r2  r2  r2  �b �@uA@�o2�$�2�` #ғ� ��PnP0�8Ȁp ���� ���+� (�����J2� z�c� L�H#� ���;@/q'��� (؋� ��5� �Ȁ\� �Ȁ\� ���� � � �~�O �@�P r2  r2  r2  r2  r2� ��2����g�|$�2� L �`!�O�x<2� ��2� (c�ePXJ�X� |�E�� �O�l2� X��Y��=2� � �Y0���Y� ���Y!��� 4�HR �����KE>3� ��Eq�2���2G�s�� xˇ�@�@"P ��c ��)�(v2� �<22� �2�� �6�� " ��/�2XȀg�|����L r2  r2  r2  r2� $/2� 0\2  r2� �2� 7 �� 4/�K� �1�(� ���(0�BȀ0 J��3� ��(c�/��2�c�O �@�e �@�~E�2� �J� �@P?�Ȁg�|�2�?,�2� DB��[�Ȁ\� �Ȁ\� �Ȁ\� ���/�4pC� x��/��LQ2� �Ai2� 2IE� �Ȁ\� �Ȁ\� ���/0�,2�@S�� r2  r2  r2  r2  ���aA�2  r2  r2  r2  r2  r2  �2���2� �L=S�1V�=G�! ��)� b�p ���p �2  r2  r2  r2  r2  r2`�Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ\� �Ȁ�z4J��� � �\� �@�@�H�]<2� x/Ȁ�� c2� 0�g?!���� �@��X��/�Zac�\� �Ȁ\� �Ȁ\� �E�� `�@� L��/` �A�! ��pm��G�� ��!� �2� �A\2� �y�� � �� � 2� 4�@i�X��/��T2� ��DH� ��@i� �Ȁ\� �Ȁ� �OJ�L� ��@���v2``c2�H.���� �&22� 6�M�.��2� ��B� �qq���/�3�L��� ��/-ȀL� �$ �   @A� t�ǀ ��/� �2  r2  r2  r2  r2` ���� XȀ�`�Np ��ߥq�1��N V1�����UI��d$��P��~� �� ���{��T�"��@\p ��@\p ��@\p ��@\p \o^p 0�@'���1�?(f�1� XF�1� {n@�"@�"@q�1q�1q�1� |��C�� #�1�,U�A�q�1q�1� TɀY��ǀ/��Ge��t ��1�?(pD!p ����| @zs �\DP !p �ǀ�P8p ��L�P��1�z�1� 0�p �h��TT�@\p ��@\p ���1P H�p ��I\p ��@\p ��@\p ��@\p ��@\p ��@\p �ǀ/�}Pɀ�p ��@\p ���p �;�m�@�z@�@�z0I��p $�@���Op b�1� �S1A;p ����=��1�?(fc���1�A�1�ϗ/�?<_o�qS�@E� �0��1� �QRp ���"t $:C ��q���B;`�p3�1� �ǀOp $���R� iCF)�GD�|�7LLp $�MK����A��޲R�ǀ/`����P ?��$�@�E�I�1q�1q�1p�q�1���եq �U�Y�����@�e1I�1� �3w�Np \��@ �ǀ/�!!)��1q�1q�1q�1q�1� �0��1�  !p , ���r ���1���1�?(�1� �Mp �����(�;ǀ/P�P�1� ��BP��1ǀ/�"����mT�"@��"�.t��1��f�R�1��@� � �R�I�"�$ǀ/p 1�p 0:q�1� ��t ��@P�$��1�����U�@���@;�1q�1� �[��1� 0z�Y�����jǀ/ Zu��p ��@Mb�Tǀ/p $F�WYp ���T��3 ǀ/p � A�p �pF\p �pF\p $�F� ����@�P���1�X7)@p ��߅j�ǀ/PMTP\p �F=� Tǀ/r1 @p ��@�� ��1�&5Q@�u ��F\p 0��GB��1�w���1� �T�1� �(M�1� �P2Ppǀ/�<9O#��t H��1�wǀ/�Z01��!I�"�$��1� �pDp �+‰P��|T#�1� ��z�i��R+pǀ/p � @p ����A���Q|<�1� Z�Gp ���ށ�ǀ/�g�b�p �f�z�b�/�`$ǀ/��O��5p �ǀ/�$0��1� 0�R��'� ǀ/�3i2�1p �p �T�p �����K(���%��gWp ��FLp H ��b���@����I����3%b�/�p�¨40��1� ` ��1� ���1�@!P �/�ZU����)P��1��@H�(�I�1� L�Op ����(��@P�$��1�/@ ���\e�4�1� � �1� �[��1�H���� �q�1q�1� �W1�1G�ǀ/p $F�Wp �ǀ�R���r T���dA\p ��p ���m�hq�1q�1�) �|5�1��DM�1�����1�9Tǀ/ m4ǀ/@jLf�1@#�HI�1� ���Af|Vb�/p��1q�1q�1q�1q�1�.�d�Np ,�@\p �����T�@p \/�H VQ ��1�(q�1q�1� �0e�1� Z�Np t�Gp � �+���wt $ǀ/���)R�1p �I���q�1q�1q�1q�1G�V��L��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��@\p ��"@��"�.t�P�YGT�ATǀ/��8*1�1G�1�"@A\p ��@ p ��Y�`���� 0I@��t�ǀ/p ��1� �A���%��@\@ ����� Li� q 0��1� �*D�1�H>D���`1X��������,M�1� "�=p �1�@��$Ňc��@@ �.)��N�`D��1� �*d�1� � �1�� ��$ǀm�ǀ/0?�l��d^ǀ/��T�@!p�ǀ/p 8 �1� $> �1� �� �a��h�#t��1��DM�1� {�Pq�1� T���p t�Gg�|�̂�q���� ?��1� v�1� � �1�u1@�n�1�q�p �]���e�$�@p$��p \��R�T�A!�@\p ����6)�p $@� �r�sq�1q�1q�1q�1q�1q�1q�1q�1��1 �@EQ$�UY�_�<�1� 0��q ��@\p �ǀ/` ���/`�B�An$ǀ/p��(�1� M�1�,�Bg��O�@\p ��@\p ��@\p ��@\p ���:p ���T�ǀ/F�|�p 8 �@��0�ǀ/PD��@` QI�1q��q ���|�ǀ/` ��� �G�Bp � ��"�'��X�y�b�/` �kq�1� |�� �/����1q�1q�1� (BDLp �d�k7�@g�|�w�����i0j���1`4���/�e�IF��q�1q�1��!@p ��F\p �3C\p ��F7p ��8p ��@\p ��@\p ��@\p ��@g�|�A���1�~�_�/�8�1pL6q�1� $ �1p�1��1` �L�N���1H��A{PH�1� � �2�@�2���p�1�@)P�p�1� ���6���@�T, ` �:�=�#��1 *��E/@g�1� ���(` ���b@�Eq����` �H@��hH�#:�� ` �H�de L0+@ �@:�� � ` �� ` ���1@�b�Q��!0��P �& ` ��N��1�  @������ �"�@/` �] �1��B����'Qƀi@H�1D�.` � zc ��@/�g��J` ��\` �c��@� �%ِXH�1 Pp�1p �Ve���U�� ` �\` X���@��p�JG/@�� ` �O�QE��Jl��1p�1p�1��HL` ��\` ��\` ��\` L Ȇ1� �@#���Fp�@/�����Q�@�tP�@/�,�8a3H�"p. ��1�� ����@�l "������ ��!�0L�@/�PMmK` �:�o�fdځzV�@@��@/�oQ0�1@#��@/�LmĢa H� !,�����!b���@��h �P��< ��1���` H� !�@L�dQ1���/��N�[��A���U��&Fǃ1�� �` �H�\Dف1���D�} ��0���.D7Lm"p0Ё16� ��,�@߀�%�� PZ� ���� H�1�qPH�1� x���0� �@/` �[:�100h̃1� (�BD@�����(8P�1��O쀼�Q �@/��kY�H��Jt��� �@|�AXkh��A �@�l؆1� ,��.� C��1��!�7� ��ϰ��@= lH5A �@/�,$6�1� D�1khK�A ���"�ƀ1��O쀼4H�1@#���HH�1��$# ` ��V��� ` �H��1� �0�H@����X @��Xx"�` l` � M��@�1$P��k4H�1@� ���P @��4ŀ�[YMM (G��0�v��@18\D�^@ �[(���N�bpz�U8ŀ,O�b�C.G@@�#P xA1���\�P ����:/��bq�D)� �w_ x�PS���S x������-�#pn7c8�� ��@18GSD�`n�@1�G@XĦq�/P `jXy�����`F��b� �@oQ3b��#��K( V���u��������Ч�����}�oxahTXFH88*(�5�����˸� �@��@@�$�x ��H@��*`� ` �@0�$`�>T ���@ ��(�`�t�@�J���+HA \��2� j`��9Hr�� 8�A p��� )(A t���>H�~�A�f@�� 8BR�!� %VP��DX�� IP� ��%(�HH���$(� Kp��%H� Sp�P+T� XXB��-l! Jh���*La S�B�`�*$A Mp��@�)xa M����%4� Op� %H N� ��%4� Op���0�� ch3�`�3�! jXؐ�6� o@C�9�� �C�@�:��xh��`=� |�B��?��y0��@>P�~� ��B�p�A�f8�`�CiHC"ؠD( 6P�"�F4���D$� �IP�k���)a�6� ��%*��á ����8���h��0 IP��0�pLd� p�4��M�A���8!NH�4�$&A KL��D'<�O�A��@�P\�E(D1 R�A�X���� � �P�)԰4�"�h�܀�A��pP�p�U�Aw�C�3�aT����?�� ȃ��*�� }��ؠ0���`�"�`E,�`+Pъ2�� hpր6���E��7��p���І�!f�C�38�fp�^=� hA�B�� h��^1 Z���"�` [��lP"�G@"e@�)q�5��8E�4  ���*�І����p�<�A{���?��m8@̠�=P�T���E���8(b�P#X��V�k�t1�6� ��� 8��s���P;� p�7���F1 _���F0�q7��1�a C��8 F1 R ����'a8fp�ʐ��a 8�.�pye,� p3�q�;4��x��qf��2��xX�?���n�?� ����1 ���fp�@ B�~� w�C��L Y����L�9�dH�B ��!�p�C> a� ���0  a� �X�" R4�B�P�Ѐ�T�� p��S�Aph�VU�m8@̠�=P�T����6 f����*��`�"�`C� �� �@(��@E+���H��HE�<� P�+XA2"�'$#"�H2"�'��"ɈF6‘�<�#p�F6� �#IH2���"шFJ0��d�&9 FJ��'x$%$Q FV���%&a�I�o�Xd��7 K,����$!���o��`�?KN���%v` KL����D"'9�KH���#y H�P�$$� IH֐9�$ HE���$!p���І�!f�C�38�ɐ�L��� Ф&5���!�V�a��M�a�u'IH��q�6� 1IB2�Q�%�D'���v���t�'��I��6(�'Kȉ"�CAJ&���a(k�s*�A��� p�Q�r A��n0�P�py8ؠ ����8�fp�����_�(��?R q6$EKP�"�r�g���x��q?��~Sч���)O9����DE*S��S�܆<#NyJ��R� �*X�H�A"8�#+Z� W3d]��W���@,c! Y�"��-iQK�r��a�fi�[�r�w��-f9 \�2t���$s�K]�2���%.xyK]蒗��E/j��\����Ѕ.u1 ]�B���.}�G]�r�܅.&1 �B���.&� ]�B��~� `#���0Z)z9 9���0␎�l�v@�Vʑ�,��p�?c�Q��8f ��  c��8� pa�8�Aph��3Сv����3�Ea0��Hf2�1a(SC� �X�4a��� �)L��Slc h@E*Nц� �@�)� 8�����*6 f����*���C�3�aT����?�A`��!�E���X �V��e@�)q�5��8E�4  ���*�І����p�<�A{���?��m8@̠�=P�T���E���8(b�P#X��V��2xX��/��6� �� � 8��s���P;hE�P� 2`$���38@ fp�h��;kf3f�3gؠ����3��Lg>c�L��N�9h�2� �E3�?� �P�)԰4�"�h�܀�A��pP�p�U�Aw�C�3�aT����?�� ȃ��*�� }��ؠ0���`�"�`E,�`+Pъ2�k(�it!�6� �! � 8��s���P;\Bm8�NC@��0��Et�3�� B���| iB� Դ"5�iB���4:I����}�#5��hF� �� 5�O��OPլkp@�լq��p�9�� t��a8� �PDgr?���� 38` ���g2`,4:�@k��%h?4��hZ!؜�y�@���_@ $�M f���+����m3��6��Mn�����f6�i�^x��`��z.lL���f6�!�l~C����$��G^f����70�LJ��x8��GDP���!Nq����8ũ�G��㼣.�GD@����;J`�x$9&�G�C��0'��q������:�i�t2� H ԑ�t�P�L� f8Ҡ�5�� ih�܀�A�! p���І�!f�C�p<��y0��@>P�~���p�<�A{���?�fp��A� �@� Q3� jXB7�aG8��h�!�4�!�a�"�`E,�`D��� 4���D$ʀ<�; (Mv���p�;m8���8�Aph��3СvD2�c8@ fpw�<�'�I�w�����Iљ�|��0@����D�: FCB�ь�� V2Rt���ȊV�•�� Y)�x��g m8y�9�� ��38�������d��.� j����A�ғ3�����z.�����e0�����G k@�{�s��n@� ����q��p�9�� t��a8`����������І�� z��@�>��~h��`=� |�B��C�8�΀���� g@�ؠ0�@��"Q��a @��|� � p��0���� ���22a8 �q�}2a8� ��yD�!fp���;<� p�3��;��'�aHM���)#@���2�kЏ>��6� ��� 8��s���P;� p��<@`?��  ������~����?���� <���x��q<����I0��uxc::0�!��a?�F!�A�b� Z��? �� p�.38�f���t3\~@*�.?��f���t 8�Aph��3Сv0 ��� p ���F0�q7�B@�(0�Q c (Ap����`8lEAp��9�p�9\� p�c���I�AhPR� Ŕ�Z��V�I��*d� ae@P�֐! E�m8�6�!8\6h��py3�Z��4a�L�xB�� =�8 ���!(BQD)ʀS(�k@*Rq�6� hN�8�m8��`:��w�C�3�aT����?�� ȃ��*�� }��ؠ0���`�"�`E,�`+Pъ2pk��):Ԇ��C����`�6`�7�=��Cra8`�H�����w��!bCP�b�Cb��O8D��p���P�B��h e8щ֠ -!EnVQ0��q��p�9�� t��a8�E�q@ � C-ZQ�~����ElP���"u�E��@����5�!F2���S�5���C��6`q0�`ͨ' �I�d��L�xB��p�#3�jԐ�D!����S�)D ��QO����F�� ���!::Ռ��EШ f8v�4�aGm8��04�q��p�9�� t��6 f����*���C�3�aT����?� p@ � 7�ah! a�3���`�"�`E,�`D#�HD� f�3�z���@m8����q��p�9�� t��a8� ?R��Ć_("� ��ģ� �GKx���#�H�t)@Tp� >x�K.�8�䒎��ar��/&�;�c"�����IL�w� ��8�N*��d�3��LpC�Ҥ�5�)��B�B��Mm*tl�!�B��Mnb�Ħ6��Mlj�Ħ6��Mqr����&8��NN�Ӝ�T�7��Mvr����:� Nnr���dh7ݩ ����&=u��!����'��iN}��C�'��~�ҟ~D@ Lm$0 P��P��� \*�U�tAPc@L��.� �xB�K�z*]�� ��Ѓ� SB�B�`�2T���A�1]�Fp�AՆ)#��J��BO� !��BP�C�`0�R s���> C�@�+���F8( p@�(E)����$j+���BPtы*t<¥*P��J5�tO�6<��?��QpT B�BO� �b����`�2T���A�1]���GP�z*]AG�jJ!�L�h�'� PJ �G @���J�G= (�?VPI=�Q�*���(�Q�ԣPu�I=J�*��")�$R�:���!JMJ�@�&�IE*R��,ř� 9��0��Li� P��4d!'(A22"Ne�S �Ty8�O��S�����KA���ѥ@��֌T��& U�B��P*<��< �YC@8�Aph��3Сv���m"U6��g̠�U��x�,��8` `�E,„%X� �hU,�`���U�r������U�b�b�%X�"mh��X�X-� K��7Z�%��"��`�V��U��U,��*�X�K�:P u�c=�PD�9���K]�QG Z�>����%�PBx�C#�<8 �(���+�p>R�Ǯj%�|��V@�UG �Zժ �ꕯ��� X��@a8� ��ug<�aX����LSo��;�C d ��N����h?4)qt��rG��X�BV���,�L��IO��C"��h��,#� T@��ѓ,a �X����,6h� �2��6X�@�6� �:.ц��Y � ���� pPE�g�#9Y��@�L�`�<�0�!Z�z�@ӑ�,AZ��ɳ>�@Zӊ�B�@-<��<�YC��6\Bm � ��8�m8��`:��=��c2`�$��I2a8� H��u-C!S�!��C$���b@��!8��C�G[�B>�nl�#��VG��˗�[�"�Ř�heARa�-8l��p��� 8p�p8�.o8���p�b�S��A+�P�$�� ��B�Ѕ0��3(�>iH+�$M @.@Z'�y�>�@4���/����\�� ȵo�K�P���e.o��\% W��U��/+� ��q.̯]+�� �B���\�_�V������w����������F���rEz/���"��������������(�^���?���K ���c�/{�����o�k/�'W����������^\��H�/�@#���%t�3��O#���%�Dҟi���ŮF��3��t#����t�3��I�����]�^��ܥ��p����g���|^�j� �py "^�Zפ�5�uMz]���g&���|fҟ�L�>s�Ϭk'*�̺v�z}f];���\��������{Qz&�ʗ�f���d_�M �F0�����V��}���%�W�F�I�K#��ȿ4�iD#%�hD3�Jۃ�+�#�c�qI4��4�������60�i��B�ֶ�AA#@4rh��P� � ���`%#E��p��he+\9H̐�e,d!KY`�][���0�yja �G�ށ�w�` k�>�ܼ�`sü�B �ak�7�A��ֵ.���b%)<:�1xt�c��c���%� J"�� �c3��< ��@x�L.}L׹T(�7��x�6�2�d�%��� �� ��$dU/��NR���du.��0M�����(�4.�'0\ �N��J�����e*���5m2M�de���.y� /�����2�����æ_��8�~Y ����Mfj��\3��@fV�p��6�,fj���b�.��8��\����]����c�2���e%���h�)N׬ f8�����fm8�ހ8�Aph��3Сv��p�<�A{���?��m8@̠�=P�T��38�r�?�q�H�����!�V��:sS4vf�C"z��04��0���3,� �� �@(�e���S�5���C��6`q0�`C9ɉ|� �����q��,�@���%<� ��IN~6��� p22`8��0PEM�xX*���8 hm8����)q��p�9�� t����$ch�!38��0�38��0�!q�C��`�"~RE\k@:���\� p�qu8�Aph��3СvD2�� 38��0Z&���!(BɄ�E�!fp���L��P��2a8@�`*Z��!M]o�"�p�<\Be0��� <� lx,\�6� o@�+�9�� �C�@�:�fp�����"z��04��0����Ŵ�0�!��&���x��F8���B����$r��9����p� 1CV0�.���� Ѕ�t� x�40�.$MifHϧ?�49|b�]`���F�}b�O{���OϿiJ�G��|����������iQKZ���'� O���9�����Ox§?���q�iR�t��i��O�P ���8`0p@�8 ��j@��!�T52��V��RE�8�'@)@�K�u�� X{�<�K(tp`,�Q�B��#�G= !S80�` Ie&@�� ���$*k��Z�5<� p� �L��k]����PwM_[2��o lPئސ���!S[2�_$)� ʀ��d���YFCĦ�`d@��2�9_�#�?b2 �x�� �ʶ ��%O������8 ��/Ao�p��0� [9[���E��hctI̖��4�KM��z�<h����'�?mOH�J`�1�V �0[I���X4��`_�V�Q_�}���}�ͤmlc[ f�6��Ml{��V�,�mlc�D�����m%�A�<_�X$n�'5�Lb��Ml�[���p��<�h� �6��`3X� ������e��~�5����O����q��p�9�� t��a8�� ����?wx��І8�f����E�Bv��N�Аu|�n���"��a?�F!���2�#oxX��t!�6� ���Ʒ6f����38��� ��Р��A���<�!�0��),A!�xs�ɐ��  HC�ᐇ|� �X�" "����o��;��~��}�� ��,�p�;�8` \���7��o��� �f� �p~���J����� X�J�,8 � 8���� ��p&1��׆hp܇�T�5Ӱ�� �Np���$��� ��� l���lA��������j�ŕ�q�h\�\��5�%9��J�8�(.@n{���їd�q��ķїd����K���E�Q����\�8W,.]|}IQ�R�kx��38@ �5׺�����.��d�yk��$��dpbr���٠�M�!a�CC��d��H *R�A�9hl�8�>����M'�Ȁ�?�eJ��@O��d@�7A6��m05��!���r�+@2�|�$��*�O���$~^> J`��T�5���I*w��$���I.W���`4��\�D�92�}/�h_J0ʝ�r��E*g��l�����ι��s�+�h(�Ѵ�$����FC��_�s����:`r�N�� �Nt�#��Jg�ҍt�(t�0�N7������xD��M{tӞ� ��K�P:ԕ� %U����#�����LN6�+�N]�ҍnu�� �B���A7� �n袛���=`�M{�Cn�i!���:C� (�X�����'q@Oz�E�H�S#�38�M�6���ؙ�;PL(� �p�b���`�����CxX�Lѡ6� �.��s��������3�38���E2�l�Dfp@����!(B1�!1 R��'"@O8Dn�H(B!Q�L��2���8�6րT��m8��04���C� 8��xh��`=� |�B��?��y0��@>P�~��lPl��EB�`*ZQ@�a �)��p��!r�C0�8��u� ���b�(�1�#��HHJ��� $�BI�����p|�d�E(Dh&�� ��]O}C"Sx�!���)<�I"�I���2$!xXC>� �$8 m8�b��d�!r�C0�8��u� ��$C&3�IMl2�hH�vX�:�q�u�a�I�a�uܡ pCL���ab 9�I0n���,!'�I+z��d�A?YBNa�u(��P2a8� h`�"N�T� lh���4�q��p�9�� t��6 f����*���C�3�aT����?�A`��!�E���X �V��e����ЮBE����p7�N F�C��6�vn��@�6�B�fp����t��SoHC��Et�3�A�����:q4g���`�F�e��"�y� p� �L��k]����PwMfp��� � l�����56dZ���"��-T��ښzC����Ll�H�@T�P�(r�>ؒq|f �N��9hl��>�|�����ɀ�n�l`+�2`;�����p�B[�R�5 m�HD���"�$ IH��E,b;�Z� (n%S��VH V}�[���B�``�/��D�H�L��[�n �J��pg�%��"�ۇEv;S�*t����j����Ei� �,�0"�Jȝ�r�;3�.���λ��@p�]"��-��6��V~� Ax��z�9��}�>�z�9��v��� �3)���A���3�W�J�}�����(�9��j���Y+����0� ps�q��i����\�j� y���-�?�H�?��u�p#��X�z�������Fz+�Z����i������>Ž���_�{�3�� z��_��w��$k+�Z�w�5|O%��^�G=��:k�u�����Q/{[��9��`LO��!}�d]�� ���J��=�O{�+C�Q�$$kȇ�a��� pCL�� 8�Aph��3Сv���d�d&5��M� i���XG0n�;�C8IB2찎;��n�I�1�B,!': �M���%�#��Պ0�Ѐr��``'�f>��� �V���`'���N:�����#e߉�w���d`'� з� <+'���U�"= (RG�p�!Z;)_��%��c �0�N5�% l''�I����`}���N����X��]��Y�m}���ζ�%������;\ �ϼc�g+A����w�.Kx�ΆS|�ս�ʬ϶W�f+ I(��A��t&'�I��c��$@�U���`~4b��� @ ��@�<��~�;��+p��x��@<�@�gW �h��@�?�� ���ZK4о�\�?h�#���'<���% �v<�@ x����g?1��#"П��?1�A�*�7��:)�AurY�l��.� ���F��Zt���5�skX�p�5�a�k ���s��6F����d � u���m�-��ְ ��Z� � -9CT��1��P*�3T0��������:l�t��6PB�F}�*�����a������5��T�6 0@D�t4R�>�:���� ��F@�@ T}Y�v@�:��5��$ ��G�� �H�+���) H�F�p�$�� �@D)��3���XC�`�@��n@��P�T�u�� p2�!RЃ���>�a ��)�A {�CԀ/Ѐ�P"�@D$��P�*L��18��L�V�u�$k(���A k(�@� �Jb `�������NY��2:�4 �3�� �D�IPC/za�r#�)������ ������t=�K�� �1�� $a h���$ `�DAAT��8 pdł��y|q�`���� @��<a��2@����/Bs��� ����!������}�a��/��h�O���/�<�<�[T�s��<�,�s����R����eY�\:��o}����.��”e%r��N��'h��1B�5Z�-8� Mh:�AZiZ��8��pЃ�� dEiRz�� R<�%YQ:��_�B�BQZV���l�55 &j��jDX�fz8p��\@B�PM#x�kp0�W��U#(ԫ��*�` ���20 &l��.u K]�h�u ������vH�xPȃl}&����20 dV��b!�� B���(�k� ���!��PMp��v~�^;�D!�I�M�!���Dl� �h�&q .8b;�������z��0E�0$ƥS�JB⒈�'�,+0�'�H�A�b�� �#ppC9����h�!�U��&�� Y1 �ÁH��XHz �V1���@��U@ ��O��0��>h5)Ya��J >0t)_��Z�*�� ��>A�v��f}��@8�-�@�>�H p�YXb�0$K����$�G)JpQ���3Q M�Q�/�48���'N���& ۉ������Da�4P{߈Ӈ1; ���� ��4b g[C�P�c�d`�p(�hĮ��%m �C\���1D��C�3�4��l�""J�T�a 0܀��ԁwP�)VA�B�A�SO��maT<�(V�*R�4?���� H`?��$��T��?���%`l�$��cx��g+��1���P6\�m��/v€ D�;�@���$0���/�p?�� ��v[���5�1��g�i0�˾��a�eϢ�7��qx�0:�� `�1�l�RK �E(P�,z@c`d�h�4p��f;.�P6���n��h��ġ�dp�����t1��$D!�@T@&h8F��20��L=�+/~Q` ��adSr�6@v�l�l2v O]���N.$��IB�1�"HC(*��5� g ����� ��&x� h���':Q? �Hc�0$i����$�G)8�ғp�Z�>�!���T���V� �CGJ��Z�#Uy��lt�)x�K���S_s�H@PH�� @ ���5�k,��p�;�1��t�]ל8�ƍX������d�����G) �R8Fd�f �HF�Q� @�q�A'�p )tb #�c�؉5Б�ɮ�O:�dc�l�� �xG$a HB!�Z!��wT��R$a'�)j�/~%�0�)j��~�+� �X#�G���f@��0M ~ �'4HR ���%�� �'� ��Q\� `�X����~�s�l6���}�Mؼ��� ˮsphM�ll �V�G��Z�M;�l�?�ff �~s�C 1���Q"iD�HD���l B�F�fH"b��H�OH@���,�3��|�,�1���Pa0L!�aHG�d�D$� � D�~ ��e��'�xJ\� d'jG��h��)�D�B���$a�\��%(a=I(�z�h�"�5�����E��M _u�tц�A5��:� 8��s���P;� p�. ��� �(�� L� �@pI�K���G�@@P��Q�Ap� 8%�0�l��`�JГ�������ւ���m8����>���m8�.o8�fp� B��7�I�v? � ?_!SƴL��d�K���{xhk Oy�І�q��p�9�� t���IjϤ�&X�V� �An��n��lr���d�&{k+ �̈'�e�Of�벇2�u�C��.h'O��Q��$(CY,�a �)��p7�p���pt�{� ��l��T�A{RJ�`� �BC !"���q�H�M9��� �6Zc�W��Q�$�)Qi�k�2��qū,R~X��ųX*S��TZ����]<�����?�S�'��D p����b�.�n,���Y,��)z*u��T�F7�M Ti��[̔���)Si1��Ҕ�L�*-���bK��,��T��b��:TD�`:Y%+�JV��`�VD<� ���+?f�� O�6+K��'� 0�+�؃`�A X�mhJC+Y����%�X��V��)�`��W����e,c���RT��X�ʊ����e�p��F0�A�a �d�r�*�,M3�m˒�*�ҟ~<�� P�0Ė*��j����g�%r��_%��X��A���4���-qi_�$�*�e L�F��c�I�,�r�Hk�W�-K`���r+�W Cf��ӟ.�=rY9��R��8�.y9�^����� �qP�� �*��L �� ��P�c�'�/��A~z�'`�.O�`��?(0{��_�ӻ�y�cA�����L}�R�H������C��T>���|]�Ї���ex�%K(����d(s H�2oE�d(�_�J�2��+-c�l�2ca�e2����_�׆O��%Y�2��eƂ��lE��п6|�$�(�3�В%���-YFK�Y&,��-a���u�%x�%�~���BFϷdKh ��N�1a �o �����XiK�|K��]���o��������d���� ,�X��� @�L\4_u�Ds ��f R��%�:�KHQ���0, �&� /&,!K�����+ȋ K��<M0\A^���篰.&,a ���%/h^A�\�0����td ��B@;i��F ����`�WI�UP���^ю��f5��/��B%��5��*k�c�6z����%�m�j�\��%��UuoX�4�0���Kxի��7L�t�󱩁dS���� ��8_�L�;?�Ώ�o���X?V�M��N-q>7}�Bө%�Ϧ�67܈����z7��M~�����f7��Mnv�7t�o�� ���Ԧ7J�Mp~��, n���pz;�P�v6���p����\��� ��@ 7��7��Pr~�%�&���wse��f7�)�}��)@��m���P� ��@@[��/�sn��g��V���w��w�r�p/g�ˋ�r�)��.-� l��tBC��n����u���[�wV���MAz�`�;�nv�{���`؉�w�$k�;�$x�0�P�^�𾒬e��Γ�J��=v�S�+�Z����5`�$�� ��=̬3M'}��Y��Of�g��!����y?���CO�`���$0�l`� �̻�P{2T�fh�_��������)���J4p�;h�/A>��|�����9 !Ȼ��)�"��6pOSx�S��JГO��S/�T��yO����g]�)�)L!S��V�0��ma ���=�yO�s ��L�]�;�Yn����G}�d& ��.�`n}����,�=B�O~�s���>��O~�y�>��O~>��d0�>[�*}~Z���ƫ��i��D��|��=��~ꓟ{B6�O~�@���'?��蓟w^�G��O~��.徳]�m�r�%#���%����,w&@�5��G�� P��C�3�A�P� Zg�1b����!�Vpc �HF2���%��0�`D�O��!�38������ 9��04h#�d� p@2a8 �0�P�$$� IH֐9�$ HE���$!p���І�!f�C�38�ɐ�LjR��!�h�ֱ�`�dvX�p��d�awh���$$c�XBNt��,a'K�IGxҊ�$!lP�O��E�a� �"�L��(C�Q�$$kȇ�a��� pCL�� 8�Aph��3Сv���d�d&fp�hR���d ѐF+찎u�&��:��$$��C���$!�(�r��`�d ;YBN:“V�$ �`�"~���(��0P�d� p@�` E�B k@*Rq�6� hNU�� XTq<��y0��@>P�~���p�<�A{���?�� �� q6( 6P�"�F����o��8��x��oG��"~��E,���_@����v����� [�0��� h��o��'��(��|� ����+���pVh����p\�E�hCY��4E�ƺ�:�u�>:BSx`�0d j�WX$� �ȫ^a0��a�ȫ�Ѱ2���8��րT��m8��04���C� 8��xh��`=� |�B��?�� y0��@>P�~��lPl��EB�`*Z!�ΤM?DKQB��x9+^�J@(V/g��I�v��?�@��h�ш�-^�'F�P�u�\Ec�ĊbA� 8�,��d ��ps2J�:�� 0xh�!���-��W�|��_@$��E/� �ࢎf%+K�y�E7� I.���`�.�� I�Rh���$t�(] M��E7��M{�Q��.yэ�l����Y7�i�n�q(ݴ�!���nў��=�iϺ2z}J7� hC�)��$$�?mLB�h��d%+I�ژ$/��M�` E�b h@E*Nц� �@�)� 8�����*6 f����*���C�3�aT����?�A`��!�E���X �V��euK�9��%��F_҆�Aݢn�4a@����(F�Q�Bf8>d} 3�nvfp�^Q�d����OG9��e�����{"�0�'�n ؠ�&���(H��)d� ��P<��2�q ��[O�n]8� � F8\6h��py3�v��38 0�"�*V1���H٠D(� �X�!D ��#u�M� i��'`�O�ؓ*�(&�� �����K(@��t(.�V���,!`pq� �%��Ӱ���������^R���� �X���w�E�pQ:\�0��.pA 8��u[p�<l��(\90�˛p(@*���C+p�ʃ ! �cBp�P�,t! �Aq�I�HZR�[*&=��� }��-|#ZIZ`%�|C)�Rʷx���)�7JI�R��TEd� K�����! uW��<��P.C-�~�堢?!B?�@�"~�ե*�_�� �l�� �@�-}@@�^��(��`�^��> }�4��li�aJ/�A/QQLsߊ%�@��t^}�A-���`�)ȴ'��L@Ӭ�2 � dzS�B�`C<�a�1��&��)Pp�Sp� ��iF��ϛ�%X�)��V͔�Y{�M!C�'�����ME��'�P!PPJA�1=18`���#PPJ0S��'�� �U��|�5]�)LSԔө��~���yV@l*x� *��������0�&�� j��P�T� MHE���64i�m(j*`�|� EME RQ�&�� �(j����h�_�:���`TC�_ �� 4� B ����Q��/ ��("��,�5Hu�X��x8` �I�]�x$���{��j�%9�N�]�9�&����q����R�ޠWr����$���R���$����I+��N��9�Z�� Fo�c��7�� o$�K��Fr�� o� �P�)԰4�"�h�܀�A��pP�p�U�Aw�C�3�aT����?�� ȃ��*�� }��ؠ0���`�"�`E,�`+Pъ2@�^�����Td��dLц�ᩔ��� �6`�7�`C� �%�d���38�4Q� ����V�xm6�{ S��/� a� O��0  b��XG��^�a 2E��p7t�Cp�<lІ���f����>{�C΀ ��������H�CĆ����(H!"�p�=��1"��D%2�p� �� `��q���kK[��A���t�@6 � dU�&�8H�Ӆ���$8�����,h 8з��)hk 8訶:���i+p8���%����� ��JS�tI�&a@�`�2�$�b@�`�j�#P.�1�$�/��r�OU�@9 �K�,�Ru�m�*U�J�]� m������$%hVI�J�]���T��.�����YS��I�:�|����lC \Ьf5 ��jV�J��fe���iV�|���6��i�O �݇�%��U��Un��:l<�j��{���7���5.q��\�7��ͥ������̸:�:�>.���UĨ��[EV��U����۫����|�_U�Uh� �@��0 ���xȣ��V��Q�%#��w@dl+��Q���b+Z��pg~l�l: P2l���l�l:)AO�(O��v�����d�?@[�]x���O}*�A�ԧ�J�A�@�*+�󩰊���r�V^���|*@[��q>%SP@�/)���7�����)( }H������/}��$5�3��o��s��dI�g��D��ȇ>����c�P�>�L�?�E�e��K����J�%{��^�_V�d/�������J�%{1�ͪ��J�%{1+'�|�#?��c)}�ߙ��>���8 ��<>8��D�#�@%>P�@�%u�gXP}� ���nG$���K�a�NG���<�$�AA�H����U��I�^��ʬVJ��6l/���qk �T���}�A��(m�hذeP�� �3(� �tfsq�XgP�Π�J+�6�I��3(Ȼ\;�E�%�AA�媴�J�aÞt�rҙ<�3(Pt �D�<�Dit�@Æ=i�W�3U$xgP������@� ^�ܹu�&wSRp�5��Gr���/.�MIF`��/�*��)8�� ~������H >mm$�o ���Rl��{�]o�׿���/��G���ܦ$%)8��'����p+0�:W��6a�*���>ڄͫ�B��|�z-�^�J�v��))8����u� ��v���T��������M���۴����B���bا (N �l�~8pH��D$;�c C̐;��ff�� ��6�� o���P�8�� r��`�5�d�C��)�}�� p2�!RЃ���>�� `��u�5���#h�g@c7�����~��3� �� �P3��P"�@D$��P��P3�? 43C��P6�� nxܰ��� d���P;��w � =Ha|��P�;�y����>��d`���۬�(�A�0<��YpƦg�����6�!f� A�2�Ag H�� "~@�" ��v��=;؊W\���T��#@���J���wl,�`�|�@j�A��P/(T�?�T�P�^P�B+~��@��H�N]@��U����G��xA� u�B�����b )T�R�i�� ���V�P R�b�Q�{`l��@`,�=�X0��e�;n�6�Ui:�X�~���@cQ�����5t"�X��eЌ�Hӯ���è�ME��B 0��O"���,K�Ǩ�c~���gK����#�H�jֲ0�#fY�����B�R�ld?"v��`Y�!�%�p��6��^3tpY�N���e��\3���eq���Z��cznt��,*0�ύ�s+A�)[�~n��[�G��|D� T`����@)�Q��f���S�J���b�����X�eU�@���Ⲇ�L�kP��r >�!.������0r k`f�SY��qY�A�e�|� �[6k' 8�1��6+� H�p�ch� ��1���$�� �N��[6��l^�oټ����͜�-�9�c(! �a&�à�$��-� ���`@oj:'%��*r��c(! �a�[6�(M'!'oI���8�]I(ANV����� �@D)А3���XC�`�@��n@��P�T�u�� p2�!RЃ���>�a ��)�A {�CԀ/Ѐ�P"�@D$��P�*L��1�c8�1쐆{��%G`�)�P6���p����5 o ��@?�� 8Lb2���$ π�*萎t��&�C:`�#��� �����Dn��_�$ 9I�M6��U���P"z��� ����%i;�a�L��J�[8�k(�*i7TީnXC�Py2�� t�O<�Qh<��xOh�g@c��C(D�z�����20�2A��[��5l��$���I��vư��! ��̿d"�5� ���5�dpC���20��� �Y20�2A:�Y�|���`�(�" QHB.�����"�B rI� 1�/&���"�P�>b�K�� �} ZԢ��� -h/������^�/�ˇNI��`�m(`���YGKV��1$�@4de@Y���s��^ZەV��U�iUi����wxiO+5���"F���!��~ @<@!h���@�Ԟ� ����A�r�� Pې���j �F8B���'���ZR_�}�>k�I���A���'�9��@|��G\t�M�e�kQ0��E�EAl#�{�~O(�� ��v�`(�C2�ZD#�����k{Ł�JƹA��8����N�a"��⳻���B\�G,���g,B 0�l�3$aa ��0�����f���-B z�3mi�%��@�Rг h+���hR0��~p�U虶F�3��`�0B����!T�>* � ���$x�#ȃ����F� �.��Lb����$.��Q��P [8F�QT�JT�A��*ՖJ����įdȟJ#q�� ��'�R�D��h�J�M�� U*Qɶ��F�%MSi׷M�� ���T�Ү @%*��ɐ�m�� ��VK#��� |ȟJ�J��G�@[B�� �t� b8FNC%l�VKb�-�v ��� E��H��0�3t�^��b�/����W��կX����W �0�X+��V Eb�/�(e�<9b]������d�!�Ě$��H F��#��H��E�� ָ%G�q���#ֿ��pK/�,ւ�9kp�^����e��X���)�N�gY0C��ͰlK ��ϲFҩ�����ND}bݩ$.�S��O�;�Dt3֝Bβ:Űl�[��Y�H:�XwjY��ò=��,k$���z:��nƺS��I�өn�c���IH��N1,۹��n볬�tJ��^C� �5�/<^C�L�!<�����!|�c���>'1A�k��_ ��@�"Ўΐ p�F��N��5 �(.� ��5g�ŏ��׸��G; �������xa^��¼��?.� �6_��� �� ��� �$����@��l�0�@@V ��n# ����х���а �:�&W�6p�r?�\�cNß�@�V�8�0#�I�6"�x�XQ��]t� ��@�d�+� v��5�l+�0��n�t�������#@���;����@�E/zV�r��u�>��U:t��t�~ѳBN�=��� :܄_\@;��RN�_t�=+t�CN���� '��~�I��&����E��]�l37'�/���ۂ�� '���F@�1��G�ʹ �uA�;���DpD���\��u�`.P�\�hRp�� F�ʹ(�sQ�;��DpD���\�ŏ`.�W�\���3�A���� ���n n�\���#`� �I�M ����� @�[�@,����5�[`4�@ ��%�Ge ��c@ �K���\�� ��t���y ��c@ �K���\�� ��t��1D�i�xҰ��� o���P�8�� r��@0� h� �Q20� ��j���𛇢 ��n�և!P�����(���� ��vа�Q�$�XHB�~ ��4�(��H��R�� �8E)�P6�!f(�P�5 n@E찆܁ xȃ� �=�|XC�@<�A z����5 � 4 D!Ԁ/���"� S����/�ù_�S=LC �$�E��n=\�����k^ը��F�C)���Hh<�z����&u��ZQ��1�.��+l-�C=���p�Ьb^���3ls �� e0�z �;�� �YO���� �0�z �7�nXC��2�at���?�l0C �A � e0�B� �� hO(�!�j��k(�Ȁ��18��5� �=���8�a ��� �9��d`�a� ��� 0C̰�8��q�w�G/�;��:��uH�3d�1�c�i���� k(��a7�Mok(�9������d`"20 ��>�Q�:��v��A����$! I@�%�|}1C ���r���d V��Mv�,H��vHCg�a/�7�k(�k 7�n���A�A':�I{9C����:Yq��U�!\�H�ŀ�{z������� �U"…B�w@68c�p�iЂ0B�u�~�;�%�����o�c 0H|�c�� ʏI��|���P~L���8R�1y�5�Ѐ�S y>B.)�w*�#~hF�Ќ���RB��f6�m3��?��mn�؆�a@n��׾��Lm�����%�m�`\� Bɸ��$���e@����\ I99Fޒ�+! #'�~�ے��W I99���j�d�����0rr�w��"yKF��j�| �@���\����� ���n@��Ps�� �p�9�@~?�� 8F��� � d`@;�0g'��1�c�F���|�@`g��(� �A0Q�4�h�HV�  ���l�1��D��8�c��1�����;pF� w�� �hq XC��1 m�s�c�N�<&�`��c4��p�$���b}���12����8E ���\ �-�(�h��e� >�c(F�c ��v�!�F�! �� ���n` �8�Ȁ�t����A����(� �A#p�@L 3y���9z�3���V!(~��4C@;�c��؁4 �CX@<��7��(q� �90�  ���PPBA�E�H #�t0��Xd��8�K�<�'��`'�� @ �@KD��1 d�@@+��� h.X� !���X��7�7�!(~ v��WP hBx�`4�|A�d�02@shh�����2 �hd �@V�D��C �1� y7�f� b{~�!Ya����B�� Dfp6�y� $� ��0��L���!2Y����F��1 `�P�N0�L@6�<F���'A�� �� F��`�{�;��>��#���.��0LrcN��p��x��ss �=���|��G@2�&� Pd�#`�(�d���"J�� $�K���q>H&�����Kp�� �B�����Kp�1�8瘙� �M��9KF�h�%Cn�̿`2qd 8�z�]�@�9U�8�S� h*�� T��]�@��� �7@�` � 0�BA(�d�#|6^ Ax/u@�i�‹x|�?@��'@� [P��(����&�O܂MƟ��`���������P�x�h ��0�������,�[|��������B�0"6p�h b`u���c�@n��@ �1�>t�) ��%�1�>��%:�� tjŀ���V� ��!8���7��(q� �90�  �d2�ځ�  ��2� O�x�X�F O``'�� � B� ! ,5� �(  �'4G0j���c`�,���Z :�9���8�S� ���`��ʳ @�(_&ځ4f$.`a 6�e�xp� ����s��4�@H�`3pS�0Ȳ���3�(�p�/8 ,� �A� $�c� �F�:p3��$� BH0 �DPu�@0j`#`��Pu�@`BT7���X �2 ��d�0�c04.` �K@P?(\2�"��� 0�8�%  � ��q �`�`�S� �·0x`�D� ���` �;�D-�k��Rf���n` �8�Ȁ�t����g� �3@R��������KP `(8?Ǡ� #A �@�A � �Z6Cg0Q�x�p��� ��3��VA(Pa���1���Hhc���\��k���} d�@��k��2����d�0�� �͡9т,�pIH!(4! <h� �"~� Ď�� ^A5h! ��0�@��;" �! �@�l����pk�ā7@���~� 0@z���>B �Dptz���@BG, �#�@�I`G��ttD:bG �#�����8�!A$tĎ0Q�����/H ��(� vBf� �R� Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@� k��2���R`��>������D�h"H~(U` V�P�v ����@n� �7� @xd@�:��` �\2�@(��C��P� B�d�T��}�h v���A@h� ���j��i�� ��Q�`XQ`!��"�@(@@ �Y` ��PP�A���B���T��@0d� �?@��h� ��1�3PM8�Hd����t�B�6'������` �����8c�;���q G���5P��K8�� �8��@�o� ȁ9@�` ����@@� 3a&Є0� ��*�� �����@:6�:���(l�%�c A� 8�Ԅ$���M�:a�#p x�@=! �D@�!� ~�'�K@`$1@@F2ߢdD� �(�(�gr�S+����u�D@�3X��� ��dD� �( ������ x1�Ā�� h5`O�� p��-�܀��j@h�D��#�j|@� ����>�p5>`�^�\��'F�O#!Ж��0F~j��%��1G�O�4c$���:FB �x��/���$��@/� ��*��_��v�/P`�8�(�_D�~q#M�� ��Ά~�g�� �3�$�@�T�� �$0���CHx� ��$���AHxC d�-o�@8\�H�.p$p'1�E��x#'��1f�����8��$H�H #QQ�t�E�p)0@p0pT��_�G���#�@(�� T�H�Ԋ�c��#��H�8�� p��\ XQj� �0#���:b� k t��5�1¥ 2��@a�UF0;�"���5M�k�8�p . �(5Pb�ƀ ����4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0�@0g �3���(l� ��3��pk�ā7@���u���p��R@H�=��X��<����{��?@�x�3� �� �3@ �0g� 5� "�4$?��"`��<�w�AL /��E�@2�,n ��AY�@gp�L��b���F�H���0��))8`$����?���8XJ@�69Y���,�=��F7 8`$����F�H�(��xK@ ����P��$*X5��?�� ��h HĀ�hk�?���)Bz�E�[��G�H�F;H��E�A H��B��;���!@6�&n �a�:��Q��c?����2����c?����2@���1�;S�M2X�# �"�p����|�$��@N �! $�U���0"�"�#HG>��I)�`7���>@`���ґAݑ~ &A1�P j)�`d D���D{,���˃h�N��'���1x��<��pj7�����Zj��'�G(54�Ą�j�~�Ԕ�@T��K!��� ���������Ͳ � b�$܆��t;a�A����P4΁8�W�HIh$�� �� ��x�;S� x �� �0� c` �`$����ch#�1��p��A� %`2�0����im�����(l`,�=�*�(q��7��` p$��@�d�$�0���Y>��(� � Xᒐ�$�� (<4` �!aT �H|���!�@(<������B��?��"�H�A�v��:X�3�v`'�:��0��G6���l�QqT�Pg*@�� lfT�c0�� 7�p��p��� u�0�RH�F�y$���ԙ�%��� ��p���}�s �V�$�@�[��x0v�@�x�Sp�N!>)X[�1p@!���k����0`' �6|��9>�'Hk��@�#�$�>@�A;!���'�� B+(�P�50:{�q@��6p�@0t�؁6p܀$A3��p�&�3�"��5�4�Ih�x��$�iC 7X���Cp�X0�ցCx����A�àa` �@?X��3� 0�3��6�p ����40�%����=�@�J�l��9x[!4�����d+��!���� M�4Uu�i>Mh����4�F�T��g� MU]��x����XW�J4Uu�.rBN���3|���T?�XmP���T��P��J(D@AS� 8���0�*n8��4Uڰ.ڠ pN�� �+�ā"��� K� ���w� �PB�hS-`�qp���`���`̈�����p����Co��`膝0� (� :x�pgCt���δ���Z�3�":�Ā �L���-`B�sg�Et@ h�Lxg�Et@ h�� 5!` Z����8�� ��8��V��A+��ĠCс�1��C<� ((8���� ��x��)`m2��#lBN�z�J�1d����`):B_q=( X�`-�+��Z�W��7 ���N�H@o� [�7��zP��'p �.@ %���pH�0���� ��A h ���P pCn������* w�'�%�.�B1j�;����&bP������B��J@O���#S �)�,�pQ��R�&`��0�n��R8"�),�A ��bY@h �EOh7����q�P ��r'���h @F�� T���p �T8@*\"`�� �P��9�)^@ �� � ��*��#�U(��*L6�\� "��*�6��BVGZ��8 ���"~�  �P���X0�Lfc0���}��+4����� ���1�a�����)�II� 6�4 `Z���&@�� b�@ РB�<B@H,��D��(�A���� \Bop ��� � T2p +�U�d�V���5*�U��*@� *D7�"6@� �-��@� �A�� �*@�z4���B\h*�U�y�V�nP�A-| xhP*4�� kT��P*4�� k@��Q!��7�W�F( @#6�X�� Ch@�4 P���4�@]�����\h8P��F �-���0�.�1�Mh�f� H�� �hP4�(P��̄�� ͠�4�pP��]�i�O�?%P��� (J@Oe���\^� �)�k М�^�� ]�����f.'�w�1�8py�� h`\3� 0��%��X9�p��� ?<���,!%��0K` �`E���f�g��@ R�� ���}@ ���ѐ�‚R�/� �����B J���ѠRPX�/� ���T��B �Ja)(�%0��hH�>@)�������hP�@���� � J@o���`�J�F@�� �`�GQ��lD��,P-�!6��`��"� ��n�V0�\Kd�Q@PA>� ��O�� ��(`sa��0 E !`��#6�hsa.x�,�� �����K�= �d���� (L�,��J������ �!+���Cc�96 �xe^�6! ��xlB�@cx _о!�0�����"�.�#,��pLv��x� ��XZ����ș�.�X8@��u���r&���� �P�K���ڎ�Qh��9�B��u!g���3`],�-@kgFGY�<�Z�S`�2���?��%@k����(ː���@ky X�r�� �@k����̰:Ù�Q:� 0.r�B��i��7��*"H�ڰ y ` �����e(g��h�&�% Ѐ@&K�8� @�!�P4�� T HD��@4h`�l4� >"� `�L�� ��_��'�V��qd�%��8h`*P4`���T���C��$�(԰RC���'� ����$p&�=�}�͠�`P�C��P�Dp����0�(-���(6*�`�".��5 �0\�l� � �0B���>ŧ��0�~ mxr�8V�R\C}�)>�0�V���Oq@b��І' ���(�����P�Zktjm�3��ܙ?�G��L����̄�� q�Ip4Ơ֖�#p�a����9h��`zB@p��9��h�<��D�8�#zB@P=ݰ���}��I� �9h�����8����� ���=! ��nX�����o� k�������w5�L$$$/p�m� ��7� ���|jsz�Yxe ����. 6� 7 �!�|�����|�� 屹6w:�csm�'p$����\��m 屹6��C`�@4����~B� ��p8 l�x ��C��B�)�!�8pЁ�q ��P�b� � 1(��Pt�@�a �@��%�F�� ���\��`�,���P8p\yqp�9�� ���W� ,�sx�9����*w(�;�����Ъ�pU@���Ò�DI( %��ă�� `���ă�t��:�'���uX/�E ��b_�� ���"��}b�>X"0�np8��b��ڸ�S4��� �͸Cwxg�ͷ�6��,�MBmf�3w�J�+up@�� �VxC鐇8�5�Czxg�Gw�x�oC?ALi:�|�;�m����=���wxgz48 g�~z�� ``��`p/@2$ ��Eh��4�Pd(�(�F  @#P������T��� � ��$�����`�>�)���ZI���"�FE# ���<��pZ���& ]� 9 �����0UE � �� �+��4�3�.�������r` ��@� &#��&�e|N2H3>'˘�̀x���X-�s� ����d�g��!8�l@��|�B1 ��G �� ��t�0"P�"A���py�� �[AA��p����� �8���VXR�A�QR��P �h8���L8@!*�����!�@������6D���؀6p���1ph=0 � @S$���0xH'�C̀pl (EP �@He $<�򁜁 I���6p�@LH��9���q� Ё:`�p Ȅ�`�� 5�&؄1 �A+��`�����:8! $;��@8n &$�d0 �� :!܄%��@N�<��$� ؀"� K '(;� PAA(d3���&�D<���.��ɇ%�M@L�V�l��X6�t�<�lB�C10V��e�d��Õ�s�!?t>�]��~����)�����s�0 �����؆��V�@��6� Q�� &�����HL��t &�aeDtQ m�@ ������� �`4*��|�HL��m��$�����mh Q���K6M�  hU�r �V�`�op�*0 ���:�� (J?(%� `� `�Ay�17؁T�~R�����X�� ,B8Z����U?�E0Z�"��P9bn(�p%����V��yt��<��I�Z�"���� 8�����N�����!��+���~��{�� !`��� �B. �0d�Q�-��p ހx�@�m� � M�(*`P�� �"t��A�NAK��� � p0 �x��8D`P0P����k���\6���"�4�� 8`�� j� 8��̀��� 87�j̀p8� 䁄�I\�x �� ��s�@2`��4�$�$�@��!⁞�Uo� ����ܞPp�� @��6p��.�p �8���f��;̀pf�D7� z�(`�_��/�:a ������A����]� �� �/�,C� ��!8�@0 F)@��x�Òpe�!�5�D�m������@�p� �9��v� �) �� ��!d�)���D��RD3 �m�l��o���f�83 ��p�<\C@������ ����`U;��6p��r��0��u����?� �$ $q1bF�9Y� 8�k,�!8a @`@�f�<��#"|P0�B��i�F�,�e h���oGX�D����4b�`"�$Eh�%�vm�a5Et�%�oGX�F%��R���8L$El�MRD XP"È�"�AXM����β^B��K�����@|�J�a ���h����w �_���L�>��� ���U��PP�FĂB����I(a����!X� ��� L����DG|�#v�w��@�5 (a# A����G�>b5LxD�#V9�G��G�����a����#�Y�"�@^���q`��ad &���|���Q�G �#z�0�="G� ����^]�yA�� 0I �$C` ��E�)1תĕ�� h�qF���p����8��(J�K� .q.��� �K�.q.L���(� /�����W�Θ�y%��F�.>M#H���\���<*˺ d��� �V*˺(E����*˺��[&n�ʲ. ���,�%&�2y�,�E��rXlDI�%��� �B+P hI�6T� @�C#h��;�D�8�nZյ57�Ě8, mH�`�D9P�0 7'����h�I�����&�$�C`$Dd&̄$�$�Xh� �4�.M@l@%0�tT#�5M� �FR�N���O���( �� P�'0��`� |��h{xT |�@��`h�����m�4�bN�8���Lp8�3�4� p{`h���@�m�9�ӄ�0��LNF�Uh��@pK@8�%�@N� ����z@O� ju&(���N� K�' �xR :`T�xzЉ` ����� )��*�N� �A'��zЉ`'.���Pt�U`"W!E��V@�ЉWA�Dz�AR��73�_(���/�n�D(""��(� Bq(*�8�ਹ��"E @`���(*��J@K�7l���)h v 7؁�q@@K[!���2���0�� @@Q�"`��y:�"t�h��E�?��@���� \�V@,��� `]`m�0`�����0"�>8�#2�\���È��ન��h.�E�0�V).E�8)dCSt�O12BŨ���Q�����ڪS�-�*��*�"R���x̌PR�bd %�LE�Å���*ZE�p��s� ����]�0`8^�n��p��9(Y�*���"` �1��s�V�b9(4BH|0!p���#x�8:�𵼶+zů�.�bX���Оr �(����u�f.P��\�u��d@8�d �<p�PT�rx�Ё @���@[x@��c��@[�U@��(�GB�#�.��� `��A<��š�}�ϿH�7���`��Bq(����n� v�,�C�l��@�;�p�` �x�� ��� o�������#`��<�`@����܀�  ̔E7�P�`��~�3P�YT��!&J�z��( C��6���0�&� H��b��`n aH�`M�`P�r�� W9 \��L���U��i$�a� �3��|�b���� \=�Y@��,�� ���( � �=��e��Ea���XA@�iQX�����P����` !��o�_�b�/3a&�� t�x��>����b[�@�]�.tr�%%����RŠ�X���Z��_P�N����Vp+P +X(�а��� B���3�fPԆV`b(�*ph �˷�>W�ѨEh �˷�>Wa��]�i�\m`(�~�h�"�)@�#����[�k�-ꂎ� ���im������@�p� �9��v��6p��\}�������X� L� ̀pf���@�)�� �) ��H�` 3�.MP���V@ �%p������\�s�OX��?J@8`4=7�U�c \<��P�>QV���ŧ(��S|�-�)(��+a|�c`�[�̅O1c`$�s��|�Oc`� ��P �()�\��!���V���X ;`p�c���� �Z�A^��/�/���A � ��:�����ё�n���� }A��h�D m� ���ڀ��8�6�J��p /�$��n @�X d�,���l� p�s��uct��8:Fn8)�at��с���� �7������m@`Є9�LFn��2"�с��� TG`,��1:��eD��6��@H��! �Q���@m`t��с�� h�7�1:B�at �}@D����сJ��at 0:M A$8�.�p`+(8��8s��8�V� B*0� @*p��<���ƒ�BB�� (D��C��2� 2��"8�6p����p��������O �8�Q5ʙԨ%kP[`��0qT@ �8*�ݨ�V����I��Q���I�8�H�(qJ�q�8-���B�V���;t�똋� qZ�`$@�$�$�`hh \�fqF�39!�FI�.�N%@���QC���H��RX�`�%�H tB�� �q�4 D�5�@�p��f̚ �D*@�h �H��"�C(��\��29.�� �ct��Q:L�����t؁ґSDG� \�x��:���(����?{���y��# �Q:^��85��t�}0:d�'�5��VP��`�Ct��:�F416�s���0K ������c 6��%�����'�p�`��� R @ 0K�O�.�0K ������J 6�%�J�9X�F%��%����nd ��?a���x7l�,PS���` ��1`����B���/ �5� b̄�/�E�@�܊O�/>E ����V����7�Qríx��_� h�rCA,��V� h���a8 17�x+�����V��/�n� �,�C�@����"� �3*��<&�_�PatR4� �"� ��@���H�T.�/@#� �Fl @#��@���Bh�4u�i��� N������wf h�P��m�k�� �r�Woc��s������m�r` ��@���� �W<Hp X�.� �W� 1R��!� �7n�u`lu@n��@7��ݸ�<�� � ���(F� =� wil)��B_���F�����_�� 8`�� j@���-��� ��C���!�� 8��'���k�C�����\8`����� �8��@����@`�� �3���@:!� �` �@D�Az� �`D�@"J��X�8� �.@p +��mpnv�7aKTD 8��7��P<�����xp� �L(�5��"��`%�r&ǽ ��^X,��,.g� �`a5�f���(X��`}~�8��gx��3��dV9#XU�>��U*�º� ����([ÊkQ�DZ �����am8@��e����A�~���rD�!��*� �m������X�P���9���g�����%,Gĺ+sL��1�*����bm���9� ��gF X��:��b+c�+��0V�zX̊i1���^�bZ ce�W�Ŭ@Z{�i������[xIk�0 ����`h�i(�[��» �i(�1:���n �(����n��kJ�����՘��Lë)��5�Z�<�1 ��4���jL�i(�e ����K8n �h�K ��p�G��P�Kw ������T� S��t�6p�@��ܥ���:��m�́8`�@��� 8�$���.�� �) ����TP `*�/��3 �ؒOPpx�8@!W�q��% �?�cO�%�<�����n�!�Ć�`���h���8���A^0&!9��X�/B) ��x��Ar0 ����Ǒ�H<�8���t�;( �8P�w�8�Cqx����@2(7�8� \A x �4���@ 0��W�*,�+� �!@���8�I����0b\���%A����t� 1%A��Wk\�ۀ���]�t�+� �r�߀4��9(7 �$T &��9(7����|��A 0�F�sPn�I(�@��|�F�0�ѱZ�.p�@0�ѱZ�.p�X �L @p�u���#̚��, XבT�@B��Ao\G p��G�בP�@F#@;n�����X� ��m�X />ц*�pG�&`˝�ݑٞ��Y�*̍��EhCm��chц��|�5ç�YCnm� 8鎡%���2ZF`h�0`�������>��$d@ � ��������[4`�mf�'���PA �k 耤j,� �����6p�{T���6p�{T��9���q� Ё:`A2(�=��|�p� �p��M�$܁g��3xf�<� PA+(3��B��h������n4]�/� ' �np�^x��p��� ğ�� �@/���F�3���텽�8<0s{a/t��T�����a�` �C̀�� �g��B���,�_��`��P��L� m�%��Pr�G�y%� Yr^B�y%��PJN� �%�}Pr�@�q/�䔜��0^B�)90�����J�7(9%�%�}�`� (9/a�G�J�Kx50���F�JΫf �d�p��i����s��p���_�X�GXa�p�H�c��c> _&�=B�X4.�G���|� �$胒0X ���x._0���>�K�a�d��A��K`Ҁ���}�ȏ�˚ ,�L�#�D ,k2�3�"X˚ ,�L�#��Ֆ8Gb�$���"\V8 X�E���"� 0�#���Xgk,�E�����3ub�$���"\֩ �A��� ��> X�E�S�"��V;u,����"p�`f]��?L�)2�xh��� ����Q>���6���Y����x �z��֦�@�6�B �����G�`� ,7 !S0�0l �� <d ~�J ~7���BP�; dVU"� P4�?��j�DIȬ��F� ڃf]�aF�� (��x�F�N� P5F�x�Ucd{0�!��p��� �s&k���j�e l�Q�6붹��������f�$�`l�8� �@8�� �Ux�R@SPp�P��� ) �'�R@;`pv�|]8 ��p�.!�@�� �P��0��-CzA ƿ� \�pQ.�'��࢐�ep�]8 %P$� �.h]( d�,�2@��!`���dpzB)� f�'4�G �A����@F��S �xK�,���g���KpV.A؀"��@H�Y5�������Ĥ$H�� =kH0��$XE��� !a�ÒP��U܇��ZEixK1A@A�%�����^,0�(�‚�� �� r�%� d�l� �A:�%P^��8� �V���� P �q����+03h�� ��� � �X ��� ���X�)�4��)X���6��xh� ��8 �@8s �:P� `� �V� Z`��(�>�%v`�� � G� �`f�R� =� #`'�C�(NA�, &�El� 7� �D�@�"�jA-����3p��"c H�4�O&G�k��� �*pk��2�PA4@4`uЄ0�"�� a�@�U@ �  �����A����2����&��l:�0��0 �� �N@=jpD�ZPKy@�(�nF@��>����wӍ�p%� Z�t*�Y�`T�^�0� ���H �` �a0� P���L!(���H �AL��'&�� rF@h9�䀜|r$���d��0Ch� 4���18���0��F��P. %��@8T� H .`���R� �Wu����F�Q.�e�0Z��p)���-Xd�ǀ>��vF�/E��hX�l� � P+ ��q;!�� �0�h��E�$���h��E� � 0jU%��E��"���0`6<��`N�H�ô$r`ZT �(��E�U�?L��|��1�!��!� �cC* ~F�H� �>)@ӌ��#��h�b ,����Xa0�5P��>X>{� T�5P�@�!n� �2��@�G"� �|�O�! ��hA�A�$$ D�$0b���i@<��4� ��n��5P�p�����xG�Ȅd`BA(�� `�P ��5��b'�H��j�4�4�@ �@����u4��q=)����B#m@��4��(��J�>�-Wc�������������9}Є(k0������ �Ap�� Q>��4�B-��A��&��kpO8�Bf�6h���H��$ ��$�H��{d����^��q1҅��$�>���V�� ��F�F � Cj�`쬌1�#q�H �$�\ �Y� �H�P�X��7� ��d�0�h�h�A���4�|A �@ �D�z�M��G��%c :�]�:1�- ;yc�@� �FB ���0�C; #�}h�1�># ��m @ �e �1z�1�i�0��i�F)�k�����#��xp� ����s��2�@�  �P OS z��c�������:���`Ԡ���J@;�j0+D�$��е�� <�*�Bh� ��G愜�"xo��a �;�Ry� ` 6P^\�@n` �8`Ȁ@n��2�!(~� 0�$��i '�����q�I��4��G�r�u� ��(@�`� �ȉ�Lb�I V0N�Dc`�,�ך�����������y�n��*pn���� X>˧��!i��/` � D_�� Xᒐ�$������PPp�(l 0�PP ~�@n` s@�*�d�02��B��h� ��1�3PM8�Hd����t�B�6'������` ���ƀ ����4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0JD�H��D$��fP�(q E�7���X �2 ��d�0a� ���?�"�N�Y��1��� VDH+�E�5�T�6X.b#�� ��`~� 0��`h��c���9�2�h� ̡$�jLAfv�i10��z@f� ̡W\���� ̡#��I�Af`= �E���sZ {�9��j��NQ$���9��2s5�������zp5�p��`m+��=����w0`+�� Y!+������k +ɒ�;�B^� Y! ����ЁE� #�V�Hl%y�1��� ;�d �U[!��� Y��I[��������F��G2 d[� �$�l�ؚpluY�X�{��d��v��k;0l��I��j7� ���T�:c��*�3}���6� N�@���l0$�9!l�� �hEh���#��*/F�i��iԙ�[g����?��]%�i����3IRIj�?�$�l $a$�MH��]�>cŒ,IR�G����#Z����G� ��$�FT�vPgG$?`I���}4���U�ԙD��H' rI�K�$k�*��`p �� Yg �!a!`����0Q�\�(� �` ` ��S� � ! 0 �k�P��Y(���n� �v@�ҀeA�B\`��&��6�MH�g 6�,��M�k��f�|n�xp� �8�Ȁ�t�& f�|nB���֘�H`�b��H�C��!�D�l��C�*/��PI�f�h`@����3^ �D�S3M40 J �"�fȁ�("oF $���J� ��< i�;(k H Pb�d2H%�IB��$׃ �@�Q؀()mm����6�q|�1%Y������P�2Q4�yX`|�*�0�A��@0J.�( ���X!�J&��0�$ 04U#��5���` �J6���(k�L�CS%�DU� �J6�2��DU����N`%;��\�x/���� ��>:�&@� 4�� �����R� $+�:���T X�uh,�: ��d Ֆ5���WŠx � ,,)0^����K��Vph�����_h�w0� (f� ��p��6Xh�=��@��ph`��p��r��0��u�3��(� 8��F6�� �A��� @��3p��6�x� �<`���|� �?��@8y� �=@��~��C��`� �E��"`e ����. 6� 7 �!�|�����|�� 屹6w:�csm�'p$����\��m 屹68�csm.94��&��h ZA�� 3���S�d@`��S�d��p�@8y� �=@��h |� �>�~B� ��p8 l�xe Q*�S�P�)H���1�6p�@�� ��9���q� Ё:`.� h� $ʹ�( 0�pG3�.XT��� 8`��f�\�h@��� 8� PA+�R�O�>EL�o&��`)֊X��Ϭ�����x�|��)^������@T�i�!�� �|.)�]����%Q!ȭ�P��� �# p�� s+��32cN�6�ZT�yP�@�� ��Q���̀� A d�6�,�jIi P�*� �k�(���n0����b �#��ǵ�C}\ @�>��P�P��k��ǵ����ig 7`?�N�q��(����� �>��aR�pK@X� ��06�����@l� X��t���v� �L`�����%�N̸^2���ݪ6bF�٭1Cm0����n�^2���/�%�n`��2����f�H;��3|��� �=a ��F7L������ ���޺2���� ]B1(�$���s�'�x�rX ԆtCB�� ����1�%zBOXO���V1 ʤ�,~���8���������"��;x��E�����y�b0���"�EIx%�E�B1`��( ��E���}�A H��E�0x&�ċ���E� 4y΄��/B�F0��oM��@?4���[�dh���� ߚ&͠�i�P �%�%h�o��\�P*�g����5M 5I�K�^��[�$�P�4�P*0��UX�5M��4I/|k�<49÷�ɜ�� ����K4*@�L�3[3��p!���5@��0�t ]�5�F2�3[��l <�ؘ: !l���0�F2H?ED�P"2��>`#���AC:!d9�}��2�@�\���~b�r�xnp��(�@�%�&�p�@���5�&��(9lrM��_JΚkrM€��&E�~Q��7����_��x1�bM���$�X�k��5)�Z��7�����@�kƴ���&a �/%����5�&Ś\�0��I�_�"p� �����5���� ����2� Y �(nr���&ˈ�,���V�ޤJx�oR%��V�ޤJx�oR%�F� �L�i3mf��6�@�L�)`���V�;�d ��'�%� 'U�J8�D%�f��A �� ��P�L��f�(�� @�Y��F$ �qg.��� n�X� `8��4I#��`���3t14��X��X `p�ѭ��X��bJ�'�3�����@���]�u�X��b� X�&�$��Oq�~��{�� !`��� �*G�� @� 0 ��7P��o0 �E�PD \�maA� � `lh��$[� \@ ��PD`P��̪j AfU5���"B$[��;p��!x��=�Q`@fU5�@����*�;P5�B�܊p�j`@fU5�@� U��a��� B�p ހ "`A���`  `�$� �`Y4�2`��D �`3�d�6Cp� f�83��d��3(�e�PAg0��3|�eBB8�!���� � ��A�I������3,���h �k�с�@g� �!L`� @�N0�3�e�t � �`Y��#�A��(ɠ�̄dPn.@ �( �܍�QJ@Gi�&��@@BBG�E�R�>� y�7P�%��o� $$t�P:J1!AE�ջ��F�(w��� 0p7D���(K����X��X'z��$�03p�`�W!�\��V� pn�$�x J�ٓ{r����9V�Jؓ+����+z�� �+ "��I?I(FO�� ;!����(E��{����+zJ={2��>�EϞ��W�P�i�Eϟ=�"���?)z�k�=%`�N�=�w��8{PNJ�'��t�ӡ��`�q�{gO~ E�V� 8�gO�" zN�p�1��l�0Z���r� � (�V������20Z�X�(8�@���p�u�8� �p�`�Q0 @�5�f@h�O@A(��܇�:H̀x�@P&��� ̀p=����� .@C� ���P�@2(I ��5�� LH ���bBHp �8���f��;̀p�@&̄�Pl��Ҡ؁u���MXv`����Xw� 7�@2�` �� n�� K 't�� zBHl@��%��X�(�� 2�p� ��3����h�f�����q@��6p�@0t�؁;����f@�*��@�����̀�T�P�>�� 0�ȉ��up��ǀD�0��4h9�� 7 v�!8� �A��� @��3p��pˀ (0`�"���J (��,����P�/T`�PjWQ( �,!�PB�;(M�(��U�C�(�/�3P��B�|�xh��U JHF ���ҝAI([͠ !`��AYЀ)P�` �T� NA8n 4p ��*�m��8� �h �=��� }��?�@0z`P>@���l@�`P`�(�E#`������|.�8�������A�p��0.��p��8�/��� ��F�\��p���"�) ��X ! �7�}�@2�&�! �Lb �!X���s����@'�u��'�@7�����b` �@?Xx ��@2(7K�'�C\�+p8d ,�dPn�@ �:��X��a`\��y|�� ���+��������ɣ40��q���CI�L����gL����Q�H�8JB�������+xɠ�<�� b��y��qp&rz�X��H.���Q���K@W�m�m)` �Ql̆ O`+l�`�j�M�6 @�؁�PE� �"UD�,�H))qb�"[��V�@�@���LJ�PT�>P%��|�@)�A��"%�}PE*%bh���l�����9� 4�`PE@�N�"�r'��ޠ �'%a+ �}PE*%b�"[�$l�Y�B) `l�`�J@��%��x��cCI�s�R�`��` d`���f�8?���a 4 ��\�6` ��֫\����������륜 �� 7�\/�L�q@��0��u�<�����\@�"*(�SB"�Y `  �,�t��Z2�%,����A5�)ɀ�qAܶ�C���m���� =�@��p��T=���r 0�2>H8a��%p&c8%�(����x�O *C�����^ P,�h�� (�'�\/�LP��"4� `$�HH�T��p��-�LH�T^�iHe�@HB�,0�Am 7�C��,� (�<�'`$@ � �� ��hpRJ@�%��!ܒ��� �� � n��p����$��h���M�i8 �d#�J��nIe�%��!ܒ��0ƀh��U0�R)�/Z�=e�H��� .@/�?@D�iʆ���l �iʆ�(��l SYn�A�0��ܜ}�iJ��,7e�T���a$Le��4u�l��rc*�ͧ�4�l�HS6�ħ)e�H胲a$>ͩ,F�T��OS ���.k`�$�+� C*h� <��.T/m�́�c���� 8`@��`\3‹/�`��_��h �ap��S�.àbP ��!8�@��Q� �A8;[���E�N8n����-xG�@�m���a���f�83�"@���$?� ������Q� �P��'��-�D���" �@�H0 ���" `�0@qv�Ha"e���5@��h�<��8 �@8s �:P���K  �) ��@S<��\/��M�����ʜ(�k�T�������� @8n�4� .O8s��8�p� �N� 8�/0��Q"W3�z%rES,�)�B&�o&���d0-L@C@���C�0 ���o�@CX�!|` ���� �B ��1`�`!d3��"(e`U�5@��h�<��8 �@8s �:P� 0�� ��6@S$� 0�����!d6�:�"h�x��@Z��x�3$�U�>B�� ������I�S�!$�d�*{�>X��P�4` �)�k ��Tp ��ph`��STh`�Up�@8y� �=@��~���6p��{� �*���`� �Cp؀"6@,@�+@�� ��5� @�.m���]� �@�p� �9��v��̀�n��Q0 .�(�� (�_� t��wc�����p� �7^�!8�@0 F)@��x�Òpe���5P*>C�� �� 7�|�|� t`������ 8�5  0�� 8� @Ԁ�,�`�;���a �%0��B�o&���d0-L@C@���C�0�@'�u� �@?Xx ��ʀ8h���5���+�� ����pp �8���f��;̀pf�<�W� ph`�A@ �8h�U>�W0 hA-0� �&` l�-xl@ �F�$�e� �4���@l ����� @i�9���q� Ё:`�h �=���}��?�@0z`P>@����� 8� ph`�A@ �8h@ ,�n� ��#p��CpAH��:�El�"X�@0� 0�@h��@�HPЀ)P�@ �4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`��2@<�G l��6�Z�h��)��j]a� VR�*�T�j9x� ��� A)PGCxE ���@���ҀX-f�D���Z $x�����b}��k(և����Z��y-����b}<�����O����� `��ݑ�h����|r&h��&je �����Xr+i �� ���J|b\��yd)�r �n�?���K��ĀXR��j���r���Z��D�|���VN��L�k2��d�I�X�!X� B]@ln8n@�C8�7�h�8�7��4P6�� 屹6w:�csm�'p$����\��m 屹68�csm.94��&��h Z 0��@`�8w���̀�T 쁦��@�M� ap܀8 �������_ �A0 �P�B�)�!�8pЁ�q ��P�b� � 1(��Pt�@�a � 4ǀ��c� D2������p��188�h`�3@�� 8P�L����S�+�!8l@,��P�c(h�(�S��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�" �@�S� �P;a$�d�j��B� �(���Pr�����BPw���"G�6�ͬ�9�� ����"�@\F�Q$#B�����h���q�0)�x�� �Ϳ� Y�8��p��*H6c�3���@��r� $���Z��`ITW\��k@{F��^Ds���x����"� �P��UI ��$@)������$�Q�z������$�Q�z�F�����Ds�@v|�����Ds���� � �P��� � �P��� � �P��Q�$���p ��&@ p SE�0��)2E�b�#ą$�H��i +,�_E��/p��h�����/�"�$|�j����4���ą_�y4ω�qA $D�4�F@I�T��81�O� � ��_��"HJ�_��r�A�i��(^k��@`�� ����7�@0d� � �� B�w���|A�I`3$N�: NHا3��$`��/H!�St����g� 8! `�� p�A(�@��U@%Ro� �Y|�� -AChX����C �  �� 2�@�  $�� p�/H A 샄`.` l�1p ��H�a<��5Pă  ��� @�� ��@@;�j��P���uU�@l �UP>�*�;�XW@ �A����Q�g � �;��[v%�d�ЀPpO���i�hA� ��]� ��o���pk��2����d�0F"yh.� ��D��\�� �䡹4�ypF"yh.�u�D��\�+ A!� a�@�Up�@!�~� 0p�@!��؁5P��y@ ܁<���z`)�� ��0���ƀ��% d��PE�c8k�����]�@�q*�e �8PyȀpt���@��=� T2�� /� ��_�@z�/�������]�� ��`BP���\�1`H"(i� ��SP �@`f ��R��pk�ā7@���u���p��R@H�=��X��<����{��5�� �@ /@A"��@�S� ƀ ���3` NA)X� ��@`J�@n` �T�PA�k��2���R`��>��@�d�)����}@ /@A!P�� �D��"P����1@ʀP`=d�4`��z(` 6`�P`=��7��(q� �90�  ���PP�h�!X P �l� 3� e� d�:`�@�d�)����}���p��R@H�=��!(~�5�� @�� E0lA���5P�@.�n� �7� @xd@�:��`d�<6� vA( �^�A/�8! 􂺑�C�1����\` � �-@$B� �!(��? B�(0��p�N��`c�ԋ���A�" �1��5P�@S�.n��8� @�� |�/� 4�� �/À�B� @(�������o�p& <8�+wC�k���_}�@�qk�ā�C܀�d�0�cP�xG� 0�v�!v�u��<�F�J����<��� �k��J�,��f� �R� Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V��5������z�%�0&��1 7���X �2 �� x` 6�k���5�� �k(!(~� 0@��3������` @�BP "�AF�DP��(����?�B��X� Kc��pk�ā7@�������bi,�A� �D � �� �$ ˸p � �� ��pp-��Ad�<�>� 8�"S� ���p 8��RY*Kc���D!���2��)�c`�ځ40|@X`�.K7���X �2 ��d�02�`@&�5�6õ`�ɦ�8@ �����HB!0Q�x�p����>8�\8� B X$aI�(� <N�p`�F�~��K�3�1�ꅤ�i`�0pJ���������q�ǩ��5P�@�!n� �BP�@(�^��cP� �d�02�*�L@d�< vA(��A�P[��M�ڡ��_ h*�& _ �1���?�1@ʀHv �5��@`m� �7���X �2 ��d�0�?�0�� A0�@0����K@*O4����D P ��1��?�2Py�a4$��5� �"`��<�1�HR�i��0�c�vp�(l��p7Py� X T2���X #���F� B�\��B���2 �` �` �� ��C�C!0�$��9�C!0�$0(NV� �2+d�- hF�F` I��d� �?cH�)��� �F` I� �~� �� �r�@ ��� `3�T�j0v���Y�Cdp�ϰ���h�� l�6b7x�1l<� �>��C��}����%�1l��C�NB@�! p�J@@ .��`ƀU� 6a7, H1L�H��p/�^r�(l���7����d�04@� �h��L��fB{� d������qp7Qg�S� �@�M�����<� k���p�x���n` �8�Ȁ�t����x���D#� f�D�r���p�!|00� -� ���A.��j�O�)'%���BSN�I�(4�dO��rR��q��9���.!�'(����`@� � ��6�t) T�`�*`0<�- B#��p+@�9'�)̀ pC*�e�T"rK ��Dp��rK+�f\.��g.��$� �\[1J@��8H#6X �0H�� �H�b�3�l�I(��!7X�ݠҰ !/�K�Qz� fĻ��r�q � @�<�` ʀ����H��5@��h�<��8 �@8s �:P� 0�\@1MX��B��3z�O0�\�G "���K�^���=B��B����+�=�� ���x=���I��� �)��]�|u�%H��� ��ty�����r]��2�rT��k@<���rTO8n���=���#� ��c� 0�@hs� ��8��@3���H��R�R���!L��`D�O���,�l\�pK@0W������$� u� �P�1V0�.����B]xu`�7K� $��f�E2X � ,�����ɠd�d���A�7$����0� �&����?�` ,v�.�e2"�].��� ���:!`��!/a"���#�ˮc���L  ��s.@2"�'&� N3�eI�d#�� �*��h�f�l����.K�h ������:��� �b&�7">�vL;^�� �f�0���x�K��]P1���t��,�d�t1Zd�����b_�;/u1A-� ��y�Z��5�:A��Oc)�e�(���F�u.�m� ����M�|��t>at0��O��e��1�� ���|B �\V�S�B�'�@����|�>��@P��Q��L��P���)�.�l8S�J�>�6�C8P�ұDJ,(���� @mJԵ��"6jS:��p4��#P��QP��k0��@8n�08�h`�3@�f�8�l�]3�p *h 3py���i�� �|�/gBg�f���-C�0`���6p܀{Ap �8̀pf�8b.O� 5�x3py���� �"��o�N+`������ �� m�̅b Iox K@��?�B�!}%�0��0�1!�� 8�5̀� 3�(LЊBHY�� ��Bf28�`)<HPj#A�2e� J��@Sq*> �� �)h� <J.T/m�́�c��3�'���" ��!���'؄1 �A+8�`�@`�0 H\��@N(�` ��X��� �� 8� F�(�fkH�L� N����5����i0]�{8���܂`�xj`�X 6�F�(` ��CF)(�b�0.@�5�����8 �@8s �:P�@8n�a:�q̀p�?����������������p Z�@S�q@ʁ(:q@��:`�A8�� ��8��:�`�a��f&�t�P@ �BG�}PL�>���,}��h��4*@zC#@[a �Fl @#����$@h3a��*RvC0� �fA�u��bX���� ����6�3,��T�BiXW�<@���RM��UbV���T�LX��U]p��PhX�"��TJ(PO#���@�,�h@Pp�0NB+84�����A� w!��?]���@�*�(=P��HC`��7TE���A9x[�Оr�kq� �� � ߡ�"V<� +Z�r�3B� ��B0�p��V,�@ �&N�x��G�:���vE���X �b�U��S"�%Pְ�� �8� ���� (����$�� �d�.�zH� V��1 ���@L @@�@�r39� H�� ��)�nL��0l&�K��F��#uݭ@���� �A��� @��3pЀ0�ȉ��up��ǀD�0��4h9�� 7 v�!8��g8�e���`E��E!��\`,�E!�6І�B,���X2@. �*�$���Ȁ��� ��`h��d�$��@Lm0 ��V�@}@+���ϒ ��`:³,d�Q�2`h�I��Y��@\mx�d�$��@�I� ,�Y��@L� ��V�2`h�I�*�Z҆�@L�EYd� ��@LB Hd#��@,BGx�d ��gi,¾�� 0 �@Lm0 d�$��Q0 .�@���F�� �U��@f�@`���p� �d0r�%`��04tO� >�!���tO� > 0�3� 0���u��3�u�8���*Q׽�UTA8�� �Ùpf�3�.���%x�����1�J�}�l@t��1�� ���"�) :�g@S�!���B+���؄1 �A+V�0 �A6@�Q�-@�  B#�/F�L� �_h3py����,��|��WD�.�\��A �nL��\���,���(X �b��,F`�,S@@O`���@@��(�a �` ��L-0P� Z�#v� ��}�8f�� :7�g:��>r���}�� �? !�H�ߊ� ;�ݜ�58&$�+��pR�B� Q�cB���B�����F���V��t@;bG@C�#X!g�����>v$g����N�ހ|P h�J�}�� ����*��0f�8��@����䄂@ ��`>9A�`�� � s�Y0��`l��9a 0�6p܀�`>9������� p �8p�@0t�؁�P$��� K@���Gh@P��q.���z�~��� ��H;%@�]�?J�I;�A؀��l �>i����yn ��܇R���a�� (�Cs�2�X� 6���=�Ȁ���=�H���� �N�.�7��� ��AZ���5��K�4` �)Pk ��Tp ��ph`��STh`�Up�@8y� �=@��~���6p��{� �*���`� �Cp؀"6@,@�+@�`/x�� ���>d�,:���AQ�e�c�W20u��^p R�1���^p {�1��e!u܂H���V숄�8���� {�1��T� Y!�a����@�k���u�8�0 4�b�L�@� ���b��}D���>�'h��4�@� �,��.M�,�2� ��2� �5�Zd��8` (���{7�6���XK��� .�h�XzdO��@k�n8`� ��P�A#�$��^SJp��8�[1iԯ�L`y,�ts+����cO� ����$�J,��� �VB� �h��P�c ,�9:Bɜ:��Ly N&$�f�d�< g��B��@ �LH�̀&��@|�@/ �1��� �LS`H&ΤgC��Ly�3@}�8�w�j ��OS�$@����O���)�����|�i>�Ap���䃔�> ��)�S��iJ� P�(Se������E�*�Ө�rB{]���e~��i�����S|�O�2?�[Կ% ���O�2K@�п����0�)��� �,�bSl˴�% � @Z&ˤ�&P PF���e�L PlF�%�_P�AZ�}���_P�dP)X��� ]�P��qR(@�y,ӾƔb3(@���%��EPlB�p���،��2�����H 6BXf����IF�'`��XB�뿠�� �I���U��9�f� xs� <�R{挪�3s&g��2gjBys&g̙M�P�yp��a|��p_#��3�u��U;g�LΘ39�e�9�P��}E(O`��9�L��}�3����93� �$��@�Ȱ �B�3���7� ���#8�ʹ���V����@�e` <�GȘ�� �@�.�B ���#4���C̼3�!�� ��<�)� A�<� 3� b$�+�L�` ��9�L *ͨ p�������\���0.��p����C9� p@+<!$>�p�BT q!0(f���L<�f�������6�� 0���΃P�bU�L�n{B�`pj&��T��"Dc3�o�m�`�U���*� �m�ݺ����.h����1 tA(!�D�( A� ��L"0 �>�-�fQ��ܒ[D@n����@>���D<�`���<�(�G�<�P�)�3��<�����p����8� ��}���6p��{� �=��@�~�Yċ��?v� @~�I�?/�G�` {� ܁�@LX�4�]�wQY* X� \��S T�)Xc� �DP �A0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*f� �R� Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V�P�g^2�"�� N���ս��`���f� ��Fș:(� ��P$0�$�����1 �78_F��/�v�� �0_f�|�}`6�T;_P�|�Ja�̆�r3��l!d��[|0_�-�%`ԙ Pgl�Yu�����fV�M!�5܆;8vB�1 ����QgI �#Z�6�R��í���3�1�6A;��c:ڊM����`�������`4��% ���0f� ���`f�l� {a$̆�;F�l���8�G@~� �V�b�A@#� ��s$��9�5�� ��3a> �#��;���xX@<�2�`A ��`��/� ��$�(� <N���'���`J�*��� _�k�"�R`p�v#����` t�E�k�Ah��ah��k�N����|�8�'4�c���2�`��4�u�BP�`3l�ΐ B�I�3��$p<�� �4��U�8E��I�$�.@�^@ \�(p�` �*������T>` $����A�� ����| �'͢@��qO8Y�.�2*�;�#h��4]�~��y'hv@�4��� 1Cft M4] �� ۣyD�1�BQ(�6M��PJ �m���:*�`�f����E)D:((� H5�����4����A����iF���8I"B~j��5���*^ū��U�Wp��"v ����VJ��� ` ���pk�ā7@���u���p��d�02�� !Oj��c�)�!(~��/R�@Դi��ą8��` �?`)`31! �\����� NV'Q��{tU� �  5�� (�eT�wF�N�2�Sh��kp �0jE<��Văx .�` I@^LME`1B���H�$��E�H�-: �f�b�6`�&i�M�61A$iM�@p���-&i#�o�6��$i4A�6�$ �� �" ���_bBL�A �E-�O�>�. &�\ �%� Џ�0@ @kf��0o%� �%`ގ���-�C @ �!��py��塚kfͬm#)\�Y3�TM�&���jڀu�.����a�����Ťx*^�%�Ֆ�.��S��b А4PC�  ���=H ��T�?@@;�������  �?@P�Y!�$��BHW�� k���`I�,$`r"^A�P�A;(ˠ���6���:����#6$ }Ǝ� Cp��@��H���胗RƎ�#�"����-4 7�1/%]T�m�L���`���DJ�`$��Z�R@*��$�v%���@�@J�Z#�JQ�(�� �Ak��D��'1�1���Or ��$X�P��9��ִi@<��4� �xpo��5P�� r`�?@  ��4P,A(`pN� l�1�8c� �DP �A0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*G���#p �@�p�%p �@`/�7���X �2 ��d�0�cb`@&̄�@��3�����t� jB:��؄#p �@:�k����p�A0I�&��_P�@NH7a#�U���1P��'$����@: >���p �`c��nM;���xHk��7���X �2 ��d�0��5#�  ��2����|Pp �&� �� `��� �&��� `� A!�d�$�0�f;�i����If��(l����v��pk�ā7@���~� 0``��@c��(� @0Q�4��06ǦA��`lF �A��،���^ "�f;� � �tP�!(~��t��`��֓R����'� � KxȈ��'�@. �`o�IL@d��p��Pe3��`h��aP?@�`h M 04W�PH� ?�P�`h��m #%��f0 Q/���6�`ЛDob@�I4�&�$hA~�P+As�|�9U@ټ d�����95'�"@�ĄuP��A# � E�6��9v��[ p��<��v� ��.J�J�%��� ��hI@E�%�ɺ #`](�H���$����AHB��8� �0օ�A�b]���h���̦"L���y�hVAV8��m6���t �s��p��� �d�z;��/P4�fc4�f��0Y��D���FR@� +d�p5��Ր�(Ɛo��` �8���B` �V b��C�T �1�$ c04�ch�$�@V��! 0�c�)�@VP�@ &�`h�cPI�1�G�6�� I +�P�-��m��bu8��/J�1Am�Vզm1�_ g`N�p��_�g`N���6�~Q+��m���V��ZA�� ���6� �iªڴ ��V�M�@��m�j�6����/F�p�[�g`N�� ��iªڴ (�:ې� 0p��0p�S�6���!j�6����mԦm� m%��i��ڴ @8۠ ��B� g`�E� ����MP+������6� ~Q+H���mƄ� ;�*X�`t�U�F������h�,0(�$�l�P8���؜��$�v��@HPd�L@o��™S7c�M"����� �`����R��q3�Ȅ87eN��6�đ{ `E½�Zb��{ `�m�� �X{olH��V�[ڀ$��@�|�{KdB� 2�&� $m� 8'� �iB���6h ��%F@�%��J%a��kJM�� q$�چ:�f�� �@�`���� I�M��0�ݔ�1!&`���4񦂵��7&0�$�����y��� ��7��k1ss���o��䍆xNx8�$o4ě|����& y�!ބ����7�K3&�M�!���K��fN��`�.�̺x������7����x����g�&��:��o�M��Z�&��:�N?1�����18�Z+�)�p֎*p ^��6@;Ԏ�� Z�v`��qę8_ +hځ��qg"����UhV�r�o� q�78��3���'�؆�01�>p  �(�[�`�(���C�q �`�lqB�1�_���0�D������Z b�p��V؀�pO��A�p \!p�D�����6 @(�d�A~�� x��BAL�.�Sȅ�g@�� #`'t�������a#@�Z�)8�1�2��x R�F����(X��䙃�U|��3yfؙ<�U���3 ��5�E$ G��#� �a%؀���A?a�����l� ���8|��#a� A����! z&/�����3$A���Y8��t�ݦۨ)�B P�C!G >+a%�ZB��L�iz�� �<�C!0��?B��� &� ~ �ŷ@B�[؂ ` <� r�����/�A����8�p �F�).�|� �m�6�Nh��� ;���\� ���.�̅�@�ch ��10���I` �s���p~��p��\@ �����1H�p8H.����f�I��#}$� NyPg�I:� �$�yPg�z ����@lC�� }�`�0[l� P.�� �.\�P6�#NUSg� ✰$!�(Nz��IX#a.��:C�>� ��#���HFG�u�.����}� G8�}d.`���G��p��`8��3�Dq��Y�h�@4N @VYi�����yg*� +�@���@2I&a��6D��0F]X��a��bl]��q�8��I@��6�<��@;�z�6�=��@;�#aX���kp����D>�� `�CQ����y�`�= %��t@y9��耐��y�`샵�!8�{@�Ep���C��쀐�4ȋ��sH���-!/����?�9�����H FP��c,��a*��(f���3Pr$񀩱|���, �j��L�T�`�@��,p�j�5���\ 3�,Xc�I�f$� �,��x)��ș.F@K�W�6@<���0��a l���6���J�\ $aQxM�<@�`�@ l�������� #���(@����j, M�<��% $�q\ ��`�O������ @ E��@�)��O� ��Z��l�@�N:�a�h��v�v kG;����$E�I�O����(�8��3� �����I�' 1����:X�Ch�-�>����& �PB.��a���@��P>^@ �(� .@��(%���1��ʇ�TN��3�O�����@��3h��L�,H�S� u�r�`�GT>����|(� �S� ���| �'�b#@��q9)����`#�PV�g� $���{� ��i�x\ �@`����7��(q� �90�  ���،.�� T�P x�����`P�@.����a@ A!h����P D�1���t?@�d�04��c�X ��` @& �#� !�|[�� �@ �� F�J�?��8�p�F(�`0���?��%zN�3L�.@X��m �� �� ��X #`'t�� H�4@F(�� &� ��q ����hF�Hp�b_����A���ă�r�)���An�i��2ƃ� #�x��0<�m@4�lx�v�R�� ����JJ;��l$�v�y<� ���h�|���()#�t��P2�O�G � ������Ds���6�ghJA)�+�Z�� ���+���G�� K)����a P� ����������p�t�s��� i�,d�3��@�>�` ���L(�Q� �HҤhQ�b���%2�@�>^���}�~�>^�F�}�~�>��fљ&�A;�Q��щ"���/�s0�v�7�hd�d  ��Q:1�&@9K�t����O�Ct�'q�d��PN'�D9Y�"��/L'�� �!u� չ:�C�ٷ��u���:[��|� �t�N�� bg�)h�ߒ`[|F@V�'�!+� ٙY���(�\�Ž ��B�� ���d 3�It��$+\ ��J� ������O�>� �v ���p�� ��a <��@ �N b�@1Ą�/@(� B&�@A�Ε�V�\��8 ��1����0y����\�`k��J� # ��` �I�����OF� �(�vC;�� B����@A~�:�X�� ���h����Kjg���t�BAL���~a �$K� )P;@o� �s��m��� �8� P |Ʌ-�"��Z� l�%��:0PO!����\� rI����w ��Z�o=F��%�Ƭ����EX �7���z� (�*��o�2d� Pe�����J�� t@,��HJ������[�2P�@�@i� ��� 0�� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|��2����� ��@`� d� �4@ �@^� �D��"X��8�G0��H�a<��5Păxp� ����s��2�`�<>s ����� d�� �*���\�P � � x H= �����2���jН �>�,�������>�$iH��]�w��@A� 4���%I�}��]T�1�uKl'H�(��;��麤� ��5P�p�����h��y ��Kp �1�3��=��#a;�E�V�[b;A  �'�DP A�@��t�� lBVX��������Ԟ!,�@�T�T�9l�@���l� c�B�� ��@� �&`��B �@B P�lAA�� K� )`��B� � x����M������@耆y>b�>�� �z#�!�ڄ" A a )$�0�h�B0��X6�`R�}>�� ra7ȅ P �  @p���( @ !@A� � ��FG��?%rT�ȁ����c ����9C�)��1|��c �a$\���-~ l���j|}�c��S.0ƀ<�r@���}�����)�A���T�\J$rD/���( t �R��{V���x�EP�PQ�Sy*#�\�� HI��O���� b�� �#x���`R@1�#�l��cb)�=$�$X����c���"On �C?��0FB���x���h�'�a ��<�g�=��vX�8@4b�m d��;@H(6M��4�a��=H�+�tX1���J�6M����&IB���i�w���I|�&�$6Mr�4�y:l�iR8t�4��d;Z�!����1H��(�$����p8�!8��@+B�@؇��o�@�(�!��$�}�8؇�<�@P��$�C�=�>��`�<�@���!��$�}�X�؇��o����vy2�0��-�H�vy2O��G�>�` ��2`҃Hf@ ��5P�@0�� �8��@�o� ȁ9@�` ��@��@ 0�@ 2P���=����� �a4<� �K��C �'FCBP��!����D`#h������8C@�<�W��Z^���W\`1,��WQhO9���@A��� (�ց��@A@pց  ��d���0�S~_�Ptʁa�r���V(�A1,���c(��� ��8�a� �CQ�>(6 �� �C1J@G�(%`� �p(EE��PT�CQ*��(�L�) Zķ& �� �?Y,Rq+@<�J@�m�{�X�P>W�^� TJ�p����dw ����g`�I�30����g��8 ~f���gp�I�S@Z�?3�� (�g p��0N�^�6S�0NB�� ۦl��������Pb+l����&���,hQ�"�Pn�-.��"�P= ,��Z�P=��,����P=��p�%�z��X��<�%����qb �����q-r ��v���q�f �Pn��P=�x,����(V��P�@8��9���q� Ё:`�p� 8��'Ԁ�<�a=,��a.�zX�`k�%`.�zXck��˳����g �R���hS�!�@��?a�|�Ls�N�A����\���'�'h0�� ���g��?a�|j[ �O�A����3�i���Y���Ls�OR5 A%��O+v�E�)aP����y֏p�6���@2���΄��V ��C�a�>E� (��=��;Ë� �a}��P^�ox�1���[ا:;�d��`ا:����=� �X�20 ɀ ��e` BA8�� P�yۀGh�+��τ�:bl�"Ayh��ca�J��1@�O��ba�J�u�}���bcl0g �5`3���h� �4��m�́8`�@�w���̀�T�P�>���h �=���}��@`������� ��6a Di� r��n"� CpA ��� ��A�!(f� ����P`�(�E#�.��o� 2� 2V C���pK�58�%�f�X �ļO�YcO��������p2���B x #~� ��\��p�a,�YcA�X�~څt�d�� p���O�0Rī��2V�…�[v킌]pa��X <�� 2v ��,) ��F`���)6���F0.��(p����E��  �ϒ���#�s pxQ<�B��s�; J���I� &A~r � X���p0���p:p��/��\�� g J���I0 A�p�A�9��\0 &�Rp��QJwL4,G>� ��a]��9?��`".������{N��x��e��B=F�h�<��E���"Z����<�%���`��0��;��Y)-fE��`<�4��V ӂ; �8�w�V�ZX ja%�%����q �iI-`��m�4rxR�@?̀��4VI�U9< �� �~ځ�#0�a5%x����?�g{�~ځ����i"x��� �N{A촁�D� {A촁R@�@ ��3Op(���̄*2�V+��� �f��p`? @#c�lF�����@�� �D+([�x0����G0[!k���Z4� �mn�*2�©T �@�l����Q/`+l���hTB����+R@����P:JG�'���#j��'#`P��AQ:�)&�dO�+�O:ʞ�'#���n#���W����r� ��6 �pE��N�W��H����N��؇р+�� � ��O�ɫ�';a'�4` �)Pk ��Tp ��ph`��STh`�Up�@8y� �=@��~���6p��{� �*���`� �Cp؀"6@,@�+@�� �����#@� �̀p �`���Q� ��0�6�Ʀ�W#"�P���B!�1�"@S1�� ~� (�Q0 � ~��Cp�( ��ԖE�?���k� ����ch� \���'�r��0��u�3�*@�x3�ށ���u(��@�`��<�0���0 !Di� |*؟e@��@`�0@ ���� P�A,π :�!8��3,�0�'h� 7�$�)�}BB8�!���� �Dg� �4��sfrF+ ��,���NC ���>�2@S�� 2��>:!��� ����,�%��P�$Ђ�8��'́0 � � ��xh��B ( "p�R@A)�� ��R(/A0���F��a�@�s�'��V%��t�%`.:�00b�E�i��R�$a Ps��#D���Zά��ڄ��,�%�(IGX��Ӝ@Q��?X�`8K����� ��:0p`o� @`�(4� 8�Ph8�BV��;���a �����P���d2� B A 4�u��'����~��A!���C̀��� �0��4�l�,EP �7\ܰ �� 7f�83�P�a�4���B���3����>�I�a �dtB�ڇj� 2��>�!��V`�B�� ��3�3Z�h @'d9�}��4�>��蔁؃��W�� 7{b��y ������zh�韹�&xP9�<(�p��8��@f�O@`��=���xPc<���ǚ��3d��ͱ�'�aBTOM�!�e��4���^�:�9��@�T����'a��������./@S,�)�B&�o&���d0-L@C@���C�0`�!���>0� ��0�A!����~�2�p@��2�@(X4�H�����p��������5�|�3@�3�@M0��>,�d`̀��a��@�H���8��` 8���C ||`5? �) ��@S<�0�A2xa ��J�Oh�'���րر�V����xl��q@��6p�@0t�؁G "A�� (����x�� 8`�����,P�@y,� ��:Й`h����Wj:�*A%�MlbYR�` uA-=�gn<��.�04�?11������@.�y�q@��6p�@0t���0� 0�`�@(4� 8� @  0�M����,��� �3��k(4���G�hB��`��2�L�"8�` �T� NA8n 4p ��*�m��8� �h �=���}��?�@0z`P>@���l@�`P`�(�E#`���3p����k�f�����xh�9���q� Ё:`�p�ABH��up�!8� �A��� @��3pЀp�&����A�@�� (D��� P�� ��m�r��� 7� p�r��0��u�3��p����^0 F���`�6�~�/� S�܍u �B� �\0 l�x�` o� �!x���Q0 H2���|@`�(h���5@d�hn 4@d�@�p� �9��v����@x� �4� ̀&��ࡘ�3���8h`G��33~,\݀��%@d�� �K��G ���@D�4����17K �"�d�{8�� 8��'�����`�� ��ȶ��2h��q@��6p�@0t��@`��~F����� �H9���$�$F�(��`\�Q0 ��l@,��PJ|B�� a 4C "|�V��( 9!G+P����Bn ����(�(��5J���>� 7P\G+P����&�D\\`4�&�@��P �}��� 8�w� e2H;=����� .@C� ���PЀ)P�`�4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2�|��X��8�6p�@?h>\�6p���1p3�@A�f�,�P�'���\3�z%r5��Q"W��|.�B@S<�0���K�&��h Z�B���d2� �� h!���2�A�8�A�:�6p�@�Ԡ\8`����� �84���lP6�~�"@`���p���`�����:�� ��8�u��b` ���e l��pEdHm�����]���*� �9py��v��̀�`�� `@Bxq�E��2@�y9�� ��R�P0�B@�{�d<@� � ��� �!`�l� �}2���H �\�8(@�UAL @0�II $��D �@��� �,`5�Yd[`\��!��쩡 P�SC�jh �8� � �����<� !�Apj��� ��Ԅ $@�"H�R�%F�c�Ԕ;�Hp̐ �p�x ` �8���uo��5P�� r`�?@  ��&\��P�� �Ͱ:I�! �π�����_���/0%`|�VIH! ��$�p�B�>I��b�� �I����B�* ������A���'�?�@/� � ��_�Z�/h�t��"P]g����}��>� �E $��k��� hQ�����@�$�-jޜ���xl1'(�$�h���a�%'�E�3�bNP l�7l�$�Т�PQK�Ŝ��`!�` $�:�:A��@0��'|�OxK� )��4� l���'�lð�/W�x�g V��l�� �F�F��" �-�>@��R�p�ڑl>@�!P�ð$@H6! ������1� 3����@%��̐ 0C�h� �8�0fHV�?YA!d��}f�� #@����L�o��f��}|C��!Ya`�v��� �>'4+h pB� 8�'CP��`@&p�k @@��R�d�1T��� ������HI`��<�%T���L�_�&P+" �e�B $�$pnj�> y䉜�r�@Ƅ~1�L�Al&�ԙ>�G�A� @ �� �@��1!����P��� ��� 6s *�L`3`DPg^ ��������U0f��3�����~Qd�E�'(TԙĹ:A���d$��:C��]�ِ����� �E��F��VA���d��%ZE]��� t�H�f�������3VԆڈ4��U���}Ɗ�PϠ� � �@��'(�P` *@(��'` �BcB(��`#X�` ����Ѓq0R�)�10�:B�e��� P��B ��`%(| @"�?�`%Ё�A <@. �#tx�\�c���`���<����0�R@ <��+A��o!<ķ�_����6�5 ��p�p�` �8[P��\�P�-�ܠp�P�-�*m5` �����B�C��%P��� ��` ��Q��w>��*YP�#�/�7��@���8�:@ p��` ��@Q�1p��8����{g\�`�` 6���1po��5P�� r`�?@80!&�Pd�L� 4! <h� �@:H��&�:��M8ǀ��:� x G��A�nN�5! �$p6�NX;���AOH7Ёt@|�� @���)H�l����;���0���T�@�)�䀒�JR*��X`�T�[�B׀� �#�bx�5�nJ%9X٤T��5�MJ%9X�dd۰�M�$pr ��RIZ�],�T���\��>#�@|�5p�_b ��T���ބbx�5�lCV� k` ����D 8��Ȇ�ZėX!0�*0���1!ʧ�/ �� Q>��(�eaB^h�9d�_|A�p�<).�A&D�, `B^��A͢t���FT�cㅂ�а `h� ��Y,���B��i /�3Pg���fԙ:��L>�3}��؀�9l�g # 7ԙD�@�p� a���Pf����#A�܆:���mP($A�܆��8����'1TԙĹdI��d$� �@� ] �Έ��i �� }��b�����G�3A8�ƙd�H �|~Sg�I 3� [P�-� ` n��7�� ` �����B�C��P��3���x`�ks�`p��8�5t� ��8��8��17����� ~���8#� ��<@a( 6�� �A'�B�C`��� ����c@�*\;���#���a���n��uo��5P�� r`Ё��p��  ��p �xG@�L��" I`8�Q�HF�#ɡ�$����`�x��:�;D������2�*�@4�\2��� �(\G���B ����Y+&���&��U� *@Vݡ`�ޙ �PH)`([` 0��P��$�Cv�d�!��MVi��-�U�� M�4���H�( ���n�P�)���4� �d�fY�eaU�C$�p��D5[ ���-@�iX=t ��-PVE���,lR�HiX ��*Ͳ0x�ª�g��4�6V�G� ` 6���p�g �8PyȀp~� 00d���6�g�T�p �L50Q�D � �%!I $�1��@��և�� ���n` �8�Ȁ�t���v�(� ~�,�(��� b@ ��0�@�a ���`d����.`��C���B� �!(���$���ż�7!_��BH �!t_ �˧�A� �1P� ! �Q��`~� 0��`������10Q�$�� X�!4�N� �A`�� �A� �1P� ! �Qp �x A[��0JxBm��_� bBL@#@g� ��@���83��Z#���C+ @���� I�J>�:�DM`6x�M� #9��(@ �c Q�$�v@ ��H@�`$�p �����#�d�@e�b�Qٱ(@ԈV:��`d�� ��:�FV`3 ��<�NP�` �*cҀ3x3re 6Pe���a �@�` � 0�v� �xG� �� j\yNB�9W��6��@e�8���ځ4 �CX@<�8�@d@ �2��N8���(� 4h! h�0H�H�a<��5Pă  �����'��,�(�R�`$Et��1�De���UP�`D@#)������H� ���@�|��RE���"��>`D��qF�$`����F���b �A�H���5��h�`~�6@?�@� `(���Jw� +�l����J(܇;p%�l�q�%��p�p�w�?[�p�P��VP4[�;p� �LX���VD�p@^84��^���~�oy�$|��`�NX4�P*�g��`��,����� 2�0(��V��@�@�]�8�} L� ��1�[q��z�$�� ����P��"J�E(�K:zB�������h��=��:��`�A8�h܁�H@�x���3�@'8=�'tգz�L(J�(Q� ��Mڧ,��G�x` �����p��_�U��@f�@`�� ��'�� ��@C0"�'�"bR�9�� <�#� ��xG��2��H�A xm����D�A`�M����y��UX�0����� a� !�����0Ϡ� & P�0����D��p� �k���p�\�6p܀�8@<UpЁ���Y|��p���QA!�14��[�������� F�x7�y��$� ��� g�⏑� H1x7�<bm���K @�|�#:B��Y��5'��X�R��%O4����/N,x�%`�X2�#d��'��X�@@�6@ � �)l������8� �@8�� �U�tB ��`�L� @2��=��� �p`f��@�0 �j��:`����(��a � 02 0�@ѭ�,L@T� ����5@��� �O(���' ��xAZ��@�ş� ��Y|i���"Q A����d�͒)��0G4P2Jf�@%�d�N��%:��O�O��.17K&�4~�i���Y2���\�L-^���5@��h�<���l@8s��8B���3��� `8���Eʀ �3���AH�>Y�� 7 � k�q@��6p�@0t��@` 0����� ̀p6a Di� ~A��w�S��u�~AXb `�Qp+���h� L�Q�%�@�p� �9��vT��̀��6� 0� �dpʀ�Y`t�`"m� �Q`t�AU�g4,3��p (?p�@O0:=�E�X�RP��Ј�P��0:=���2�� XV�~ަ���ph�48�h`�3@�f�8)�@S�e`ʮ�P�@8���p�(� �E0 F����CF)� S��,J;������R�6p�n������P�� 8� �h&0���4Jq{B)� �'4�)�ʀ�k��̅9��p�@�ʀ�k�<��5�yf�8\��( @�2S` �� pY<̀pf��j����: �!L� �Ag� &� �) � �`�����e/@B��@'d9� z��� � ȁd�lVH0�r`���3���p$ L<G��p���NpzNO&��G�6�ZT�y�N�<�@�Z<���� 8���(�(E(Q"��� �A$�y��(�` (7��k�[�,֠�A2�'�x�pp@zBX�a'�����p5��D p��9�c���%p6��(D@� ��Ona�g��[1�0��_���"C����_�@$@m`����@�ſ�-A#�a �Ͽ�� @0�! 4Bn)�g�|�w�j�¬� �`֜��~��x�.̚%�������3�W�fͬ9K 6���0k���#�06��r��)� �a'|�%�~fM�YD@� " jC@�@��m��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� �0���4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2`�(�k�|]�eCh8n���Q8�h`�3@�� c H�V��0p!L`��� h�����ղZ��2ZF �!��*��b���@"H�2`�H�` �6���ph`��4��m�́8`�@�w���̀�T�P�>���h �=���}��@`�z@�40Ѐ �� �4� �@7���8GZ�!8� ��Dp؀"6@,@�A�K 4G� A$(��4��5 9ͨip�@؀� 9M�f�83�B�a�`� �) �NC �������A�4�)�>�I���!L`�lZh� ��4���0��N�r@�HNӠ}tB0�r@� ��2Z��Y!� ȁ������e $�2��X�@���$�RA8n &$�d��m�́8`�@��� 8� d�L0�Є�Pl��Ҡ؁u���MXv`����Xw� 7�@2 � ��� jB� I�&l�� v�88 �8�c�)�`)�0��h`��ڠZ/ mp�(�c0Kl�%GR��Q5�P@U#\V��Q`ځ��oTKІ��Fm� ( 6����qf�� G���6�eݨ*h7�˲�6�F����l�7��`@�o8�€��s1��9��\���$�)�\��s1:ƀ{�i�'���g|�d�02p��L@d@>̇dp �`�p��Y��3$�|�/� 8�\8�}p���'`���G���g0� @�DD ���0��: 0>�8F"0|�:�|��#f��Ri�@�8�>���� ��� !��2pH}��#��2GP�#p�����~HI��� �jcVEh��v�jC�+ha���h��8%�䔜�1�Ű6�fxP�Sb@|���6����pJN�� �7ܟ�C1��� C� �qJp��9%�ᔜ܀(n��b��AJN � %��bP RBJN�)A%�Q���C1(�)�㔜��C1��� �:S�L��#}����0H�%y�iԙGH$E� Z��h�;�'���14ϡ��-�G������-Q����#wAK�CSg )�$xt!`���H�(7��PQ��@M���@@;�� L�dPF�yM�<���F�m� $A �����yX�#���!ƃ X�����!� �-�Z�� +HB h1!_|٫!HE���$�|@HE�y�#����@#i���?@@d�2,�L6�4�(� v�� �,���.�> A �Ͱ:I(! ���� A�1��@ ϰ��� `R�}p�/�p����~��A�؇|BP B����?9�`�O��dSG@����|�R|�cP(�6M�� ���xC���4��uT(��6�HC��R�4tPP �j" l5 �i*�f����@���PJ �U(��*�R` ��D�|0���P���-�>>��W�8��[(j��(�W�� % ��9!�� �i�@(����P` ��(l 0�PP ~�@n` s@�*�d�0�P *@(�� �k` �6H��$BP��1(A�4G�Sހ5�?@�d�0?@�P$*1@@�PP X^�0 ��4�נh�C`QT" $*a[vM����P *aq��k �!���XP��8T�5��X ����JX*�F�i,T��P��0LC`�R� D_��/H �0 �sB�4`0 �s�MX$�)ą h H ��5P��(�����E��Ѡ�`Ȁ@!+�p�#ѣ@4�$�6�MH�"Z܄f�:C�"Z<�(�H�$�����@ ��A1�(��C ��=J1~��-���]P�!�(��n�� ��!ݮ�2v��*��5�(��W�6��l H{�b��$��q{�b������Q�`���P�E�-����g(EH� �t�~QnK'�6@t�b:A:����x�v��i���ArI'��t�~� �b0��') :����zl���$��q�x�zR��� ����P�h��^�0�p�]�$�!���C8P�m ����z��m�F���2�`)����p#@;(����T%���}��v�4�8h��}��v(�C;��,P��v�'+���BV�>�A;(@�0 (� �$�L��da���&�Hm@@�� 48�A�xM`��B�~�%��&��Au(�ǀo�&��q(P�,4�&���M �Y �ƍCIJ �?����H�& ��q�'���~�O$�/P7�@x> `�$HA��I �O$��� ��*x I��$��*�3�RAffϰ����@ ��@"Hݯ�$a���2H����� RH m!��e� RA�i.��M�& �c�:�1P�P��p T��9�@!�B�|�Y0�W�t���lg� � ����NH�'�p���gh �hN���%�Y���n�2��0� �c� iP34 $8C<:�� ăxh �Q�Ep��� �#�6B`�$n�f6B�4^�>bw��#�q��Ap` *�>� ��4���F�Q .H ��LV0 qa ΞBa *@\fVą���A\8 a ��)���-mP�1"l��� B!��6V� H���:�g��Q�(�<��"��3(q I�R &��|��H/�}(��IN��`4�INF2�@��A1�!��V @���X�p^ċ�)��_�)j�� "$� ��ڃ��=�� ��l{h�Dt��@-�Ch��E )`BB-��4P� @s�3�(q�� ���ܕyW �n( 8�l���Nm�Ζ�Q@� h'�=��;U�%����N@�� ����ٝ ت�� �@�6��VPh�� b І1Ph����O�@i�h�(.�6���'fm�C%�A1m`���d�q�@8n �$���m�́8`�@��� 8`�� j��PC&H~x��q ��Q/�㨗;�^�X/Ѐ6�CpA2�$� ��3���@l ����Hp �8���f��;̀p�@7�����3� �!� ��D�"h��@�HP��p\z�"`s��p�0��7�@8�� ����7�p��P�ksǡ#�<6��~GByl�ͅ�ƑP�ksɡ!86a Di� �p@dR �$ ���I\'�"���I��e@*@�ˀP 0`��p� � � ��Xm`P�e@(� t�I( � J��h'�I��6@��1 ��d`؀"`�@�(�����"6���|�C" ��p�����# ��H�(�#(�b8$�`�p�g�v&�DS� LEpt]'�pps �  �e� ��7  �@��Ѩ�@f--]�� � ��,�B#��p�EG� \P)�&��@��7� �@�p3��R�M��&-% ���MZ8i p����| �c+$ �e��A<��� �(�  ��p� ��7��@f� ���0P���d2� �� h!��@`�(4� 8���@?Ȼ��3�BH9�z��5���I9�� 7�~R��p�p��@�1p��� ����|hm �p�D$�` ؀"�#=������z��hS�!��@'�k�ll�f;i8n�vR8�h`�3@�XS,�0�AOxa M; |B'���� 8�H�!���@`�� j� ��nͺ]�V�����p��Ѭ[8�h`�3@�f�8� 2�p`���L`��m �� �!f�,֐ ̀pe ��րx0'娞6p��I9�z�� FL8-� �@`��6��@h�q� ��f��� �5`����R�R���!L��`D�O(�����5@��h�<��8 �@8s �:P� 0��ph�p5�Ԑd�g&���|�qԋ��8����p� 4� r�'$�s�'e\� @� ��m"�bh�p��@�3�_(1 ��7PD�8o:L( ��V��+.`8 ��� L ��Q @��` ș�`uA� v�7Ѕ6p�/�q@��6p�@0t��@`�0��>,�L`���$��Y9 JG�$������6p�ﲜ�z!\���H�p�d���� f +�0�Y( �,�� 1��'@���� 0�B(}f�D���1DiN��Ph��}@#P�a ��F�.>��m��3t�F�.>�� �4����~h3AozaZ>Â� PR�|�@zF�g� DM��p>��� &�3L�V $)��K�HRJg�PL�@�&Pg�1A�]t�N�,���]tAL��:���]�^b�.@2(7K�� P��Y ����@9�)e�#}���0��� �+p���~�K0�������x\Sj<���W���+ /��(f� ��4��`i� 7��@�q@��6p�@0t�؁;����f@�*��@�����̀�T�P�>�� 0�= �h@�B`�P��D��@"`�(0`�"��4G� A$(h�(�S��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� D��[�������\���0.��p�1l�� �� ����C9� p@+<!$>�p�BT q!0("C�� �!"�h� l� .�m�́�c�� z`(��0H!L`��N4f�86�B� X!#� ��9� Za+p��@Vba,��P�Y� z`.��*`b(���G��@0 =Axp+.�ø�c.��w�`@� � ��y�0nE>� � \����<��\�p�0n�� &� ��60L�Ehm`xpJ/@���:� ��I@pHpJ���y�@��T�J�H&�s1��� �����/ �a(���OQL��� ��@�O�L��1�C�.�`@m� S` �����H����n���a��&�Ҹ�jCmx�f+�d"4@2�� ����J[���֕�^�Cp�+}�������V@aј�V���1W���e����1K�Y+`�r�X�O\� h\�p��J�M��F%��U�}�M+���D��Q\"K��J�6 %��������J����!���3 ���-�g�� �3}��������l�-֖�[:8l�-:���R[�����6T�!��08�-C�g�0*�gž1=fp���ǫ`�#]�R[v؀�����0q��'8�� �'zD ���Gt���h^����.�e���q�D�Іx��������'��v@0Nn)��A���MNJ�yrǼ ��h^��p&/c4p��Qz§��`O����0[��`/c�p  K.@�3���7� ���#8�ʹYRx oN1!6���D ���$jܙH2H�H^�>eT���q oE�%�'�ĠL� �w&� J�G��)+���}@)�H^�>e8�����H^�>eŪ���[x+ʝ� ��S���y���X�K �(` (�X�K �`����%�@��;K����+p)��@���� @�A�����ܢ<�8���ځ%�@@n��܊y b.�)� �Y��K�En���0���@ �-�7� \j 4� ����� �C���v��@����axt�0,�gn������ d0~��X��gn��f��J�gn�L� %PH�!,��% �H�h"J@ !�@�a L`0�F�>������ O���$�``D��>E e���@`�0@ �C�Ag�a xT�:�gx a ,РBgx �W���� FC+ :a ,РBg :�W�����B�Y��5T_h�:�k��ڇ�T_h�:ѡ�ڧ p<�8�)�m����!���6� �9py��ZA��!�f�8�Q� ���1��3�"@@:!� �` �@D�Az� �`D�@"J��X`� ��3��Ц�g�hm�.�`�%`��F3X��^� q\]�hn� z������H��� �B������m� {a/���0X`�^� �a/���0X`� ��7�~PM�,�%����:,���m:X��`9 �倔���Qˡ,� �R<�� /&�a�vphB8n���R8�h`�3@�f�83�.MPf�\�d��@�,�`� 0` �հ����j� ��_ ��08n����aPʀ8h �4��@8n� ��4��m�́8`�@�w���̀�T�P�>���h �=���}��@`�z@�40Ѐ �� �4�K�!8���4�؀"@� �E��#x� �8L��X�@��`z�E8n���Th`�3THZA(?p��4P6�a*L �!f�8�k� ����}�g?A�H~� 8�C�h �=�P�@�����@X� I $���`(C� ��Si,I�$����6 &N�9h�m��`1�Ix7����mr*�A�&����mR�nh��T�9�\�4/4��z*�A m0��x�` �DH�� ��0��`�C� X pb1�I� �a+��6��@ � a�$���Kh�P="L���0t�pVV� 2�>�0 �@� ,�\H����.�"�"���� ө���=���Snz��1�ǔ����`\�� P��u|P�4\:��������)�U.��Z��� �GtSd�"@l(S�8���)2�%�`��4|V^Dh��A^H����b�)2�(��#��b�)2�f%/��n�L=B^� %��h �g��s�ʔ�j�����U�&��"�e��)��@8D�2:�Ӕ�2:�i ����2ʋp��2 �$Q�hF�H��x���;���p�w$�r�-l06�h��!&��Cx��f��x����f��(�!��n�L��y����Z�p��5�(�%��P�8 ��0��tP�)��#p$���X ���(N�)'� �X"�@�A�‚("`AF�� ���Q�-2� `h��0� �\��PTX* �0D`+ "���E �(�yX � ������H>x�#S���(��'x8��E��XS�����S1fB x��چ���p8��#���P�Cp� �!7���� <qX�A8x@AC(��qt����p8��#ԅ���p8��8���A]� wa&�����p8��.�w�8:�m(��8��<�^(��q�����;8��#D_1�N@K(�!8���pZ�.)%�8�w�8:`qx������Cp�%�<�P>b�- %�8��� PAe���x��f���(����� ��*�,~��TPY��4��%������<��3~�fLS?(�@��F�^?�;�š�PbM ?(�§~ ̅OAk��� ��H��2>����c.| ��&E�5�E���a8@H0 ���֐`p�I�&!G���C@h�!�$�H�pLB�� 9�7��{hC h�!���.�%���\�Kp j�L�I�*���p�Z3A����H�pLB�� -��I�#[#� �a5r�#vZ�@�` dh�X �\ g��h` �9snEC8Kșdx+B2\L`�.��s+�CG�(tT��[!g���3�Vșp+����̰:Ù�Q-��(tT�$�[! m5��8� $@P���C[M 0�Ք��C[M�H�d@�&�j��4�O���0`�7��# ��B����w*��3�� ��0A*�A%�7���wlGh 9�4VG���Zd6��xcS��Y�)��#���8�M!������F� � �&ބ�r��]�$xA���@ �� � �$����w��] ���]p� �m8��#@[�;H$> ��#��v�}�s ��ȅ�H���t�ZT�B@p��6�?�E`ˆZh��h��8��a'�pJ���8� P �H�Ї`:�i� �+a'Ё�@�� ΀8�cRH;�`E�HE�G� ���CH����B�� p��6���BRH;���0�0"�D����H #A*���� 4�z�j.�&���,Z �.p����@(� m��-�(� 04�`^��@N�@�HZ` ���.�EH�g�$�`�hd�mh�5�ր�14�`TrJN�D`��� H�yk�,r ���l�EKN�D`��� H�yk�켭�S��& <�H �e$4��\<�Hha�Z0KN�D`�M@"�[�f�h��� $� ZwD'@�I��2�$ ZwD'��@� %� BN��4���P<�95�c$�tQ�iA� ��#(�$�G BN��4�*�� ��5��t����. �9��9�#��0x9��a\� |/�~��K�H��B�A�\R@ ���A�o���"��{�0#�] �7����fD�+�"�sQ��3���v%P��`.J:@�ծ���E P*��BX�`��@� ��Sq�`�iB����Ja��$��\�,l� 5�H E�x��P*�� B�(/�PJ�98d(G@�Fũ8gn|x�F�P( �(����aA,�� B"T�!Q(i�Sp�B� K�) B�,|Pq��� H:��kp �5�� C�@�`@���/@��$����B�@��T���<;a �=ր�> t��:��b@���/H�� �c��F�iF�G��x_�H@ $���U�$���Q��E�W x_�ܢ�E�W x_��" �(��*���[D�x_%�}Q@p�(�����/ Hnx_�}���EI�-�����( �E�}Q���F�Z�3k@��u����>"mb�&`4�&&��lhH�!�v�� g���#��4���s�>�a'�Fp����#���x���ن���0��H�N���4��� �������m�h<� ��l��@Ȭ8�`pCn8kN��#�,���QgI �#wAKd�n��!���u�3H����B;(��E�s�NGh^���hA+�H��8�E6�&@�H��b�S|��)�p��8ZG;�.�E��д/�N�i;h�`��S�;G@�������t�ځ�m?�]u�N��}7��\u� ����n�5� ��O@��nX���7��1�=� lQD�p��5j@�F�%0L���(���j����6-��4��J"P��;�?`Z�a� �g�Vh�p�i��I'��Nw�@/�����N��ݽ�t��0�⎈�ă��H�@!�a ���bl ��;�_��@>��(T�$�ؑ�� iؽ��4��Aw�>��"����QZ�>��4���#fK�(-V�숍BXU�e$�vD�X1�4|��Qi�(�4�16 i ;b��``""� ��X��e���2.���Q�E�-� �\�R�OzO;�v%`FT��@��U`�*��m���� |[E��"0��B�@� ��=�*���A�R��jW�y3�� �@,@ ���"�fD%b�=�{ک6 ���t2hF������GK����`��;c*�pp$��FG���0�@Iq� �\��� %��PRP�3�r���N����`6��\�l�2�aD��^�] ���.��`nC�3y 7$���@ˡ ��6����@�d�)����}@ /@A!P�� �D��"P����1@ʀ`v �5� \+xk���6`X�xp� ����s��2�` ��<؀f�A@ʀh� ȂY@ �0K�ЂZ��"0��4G�ƀ ����4`L�)( m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����V ��;� ��}Ѕ�T�f��4�\��sI� O���S�IJ� %�Y���IJ� {�Y���ˆt)q/L�(� +��k`�@1NJ�"h&a ȆE�,L�(tA4 �Ph�EI0 {a 4 }z|]��47��|�^�3{����=�Xɴ� �a4 ���in� >` ��5�g��৭`��V2mwCnX��$��"c@p (@"��6 %@R��� �)Q�\�b�r�G p���P�%�����K���%"�����sI��n1�E�(r�[t�����E@���Nh?;�-���G 8�x�� P��!H�F0�Hh��3��SP��X�4u��Si��3��t��>p*�@]|��T�C:h��3��t�J����� 0�����b��&�D*�K` T�%P�ƺ�܁6�J����.���u!�n`4�S�F�>ú��B~���@�X`@~�ϙ�NA�4�F%��S@)N�gXe �Ep ��@� ��6p�h��U��Xp@�<�@0z`P>@���~� �<`���|� �?�؀"6�6��� P�(F� PA+ l@4E�i�8�$AA(3�"��@φ<���3y�𧟡�әpNB XAu_�\�f¾�%`��q�i�]Au_�"������@�H`�I��\p. `h �����`&� �/F��� �x�� B�)�� � p0DD� S�7=����_z���=#�Z� ��4h%�`Xpb0��'%� ���k0���A�z���_�5DmG�3�G��'j0�.(m���Y�#di�O�`�X�rb!K �;� DG�O,d9�� �� ( @S6��Z��T-)M2��  @S�%�'4U`(��M�"��j��h��P4U�(͠�4�pP��]�i�O�?�E|ost�C7@8��V�-����Zķ����( � �V0'���l����C���� ����� �;����ր��"�2�����pY$n �) z��S� ��0X�d�) �@f�83��H�����Q� ����� �Y<�:�.@��G趁�Vě�q@��6p�@0t��@`�7l�,�)���@Mkp|���� �5��8 �@8s �:P� 0���d�g �!`�(�R̀p�� <��CyXm��8�h`�3@�f�8�Q0 .�8>��'� `D�O(-��P�@8��9���q� Ё:`�p܌�� &дl�,�)�zB������%���� �g&&� NMX�� pj���͎`�w,;i&�p;L��@M0���y4P^�pg.���3��=J�)�$сD�;I�� \�p�<(CBt�3��`=���sp���L��E��P��d&�~���(� ��Q� �A8n`8�Qp �Pp� t`��*f�8�Q0 .�(�� �l� �!8� @`�f�8@`���3p����8P�@T P� %�3p����8P�@�T ��\@�@q0�EA >@#���F$@�*���H�[PW$����C��dm�T�U ��! x��<�8�% V��f�~�Z� �w�8�&�#�?����NpzNO&��G��C̀p�� 8̀p����P�� % `8�9@�u㬁ͺm6�)������f�$�`ll8� �@8�� �U&��u�l��YO`�`)��r��"Py@�E��jH�zd�POp�&(C� �P1�\�sQ�:ԯ������z��!Y�{� �<��@B�S ���0>�4P6���Cy)�H��G��3��p�D���p��8�J���%`�r��e�D `�\�0T.QF-�( �Kv�t�<(=�P8ԇQ*X�<��6p�������@�p��Q� ��(�`�����E�����&��gh��3����/�!�3T�ϴ� �NDu�F� � �V(SG���� Q'*� ���� QK�ԉ�Sg+�:u�0��@TT�� �X ��� r��YK�*����XW�7�&�i��� �0N���U� 8� ������U� 8@4X4��0%�,�Rt@I�)�b���}Cj�̾�����%ToH�:�W0��P��>%�5ă�`K�����t'�C��.�E� ��=����������=�[�F+�������!�C���G@����8�6P4��lvpd��H�@(�� �;`2�p$m� ���JB��:p�6� �  v�.h�6���x� �#�ǙLj��@���1 f���"tpDP98�Vx���(����;�?�� �N{�@pK@t� ���X�)�p/n��(�"� �.��x*�\�^����� �8`�p� 8�  �� �ap��S�=àbP ��!8�@��zJ��4��� �?�'(w�(��Qj( ��_� �}l ��d�_���P����ؑ��j�"��@�ZT�y����x0��p�<��W�J�t���� �C $�>��X��Z��a&����b}^��>��X ���s���2�Q7*�B�|Z@� 8*>�.����B�q! Ժ�j]@< �. �Z�@�Q���0��>�i���� P���38�ʹ�;��� n�ܙp������V�` u�Q_.��}%7��x @�H�+unt�+��<�� $����PRsI� e��$Ep ��8 ��$����0�-&�90�� f� E�?3�����20n/X>&4�p��p�v�8 �@8s �:P� 0�� �#0 ��G �C���\ ��P���P�ſ� @�� �Q�����8�O��lp /�60����E�H?t(`���-t����pn@x87�T��n�f� 7 <��N�I��@���E�Ap�N'e��(�S�P�)�3��<�����p����8� ��y�K ��p����V� ZA8�h�����p) �U���T�f���8��@��[���<8�/p-����Npz:���6a Di� �!�� 8̀p�� 8� ��!8��,�2`��@'��8�6p�@?0p`o��6pЁ�{�o��p�@�y!L`���� K�S,�O����� &a �) ��H��F',�t�NX�G'��N@+���X���z�A���!PK�0Z�B�o&��C̀�� 8�5̀ !� ��B`�`!��L`�P�A$8�.�p`+(8��8s��8�V� B*0� @*p��<���ƒ�BB�� (D��C��2� 2��"8�6p����p�������3��ZhII�w�.���}� -��P��jX��w���}�R���Y'��.|�@���l{AB؃AR����3v���SV>�ء�BB���}�ʧ;{a/���}�ʧ;8�ӈ�;�OVjI�`� �) z�K�g�|rBAX8�g�|r�� ��D��p� �k���p�\�6p܀�8@<UpЁ�� ' G�GxK4t����Ŵ� ��3|�@�Ŵ� �Y @�@T p6�(P���-p�) P�5Z��� �V0�3��� @� �P@h�z�P�@�$�( @p�M����pS $���� pn��� 7�$bG�p3 �B�D� �ͬ�d�$bG�P� �d�=���<���r� ��D�4̞��f�%h ��L�ر�V>�&���̓ Le2!�g�`����V�E$�8p��V� \��3��X d�,�` �(`�̝�{`�Y� �ba0 ܰ0�np ������Ux!�0���p��h���ͫ�0B:i!7���X��A��o�T��I�}�@.�\*��[%��Z�S\*�) %�XK#HZ�K����r.�N^jx�}�o��> HZ�:y�4���H�R��K���f��-Kӷ�E�`���^���@#]��q�-u���6�k� ��`�� �@�3���7� ���#8�ʹj�hM �g���qg"� �#y�K�.� b��\�`�O�G����#3�KP�?��� ��/p �����#\�u���%�`%`,���DI� �fxV�J�>� e��T5�h���3� 7Sc*�r��0��u�3���0�;���bj8��:a�u� g�8�1�6� I>�h*L-"[�%؆%S�Yu 1u/\��� ց!8��"bD��; _�x` 8.=t��m��q����p� t`������ 8�H(�͵��БP�ks?�#�<6��Bo�H(�͵����0��4h�� 8� �08n@��a`�� (���P�@8��9���q� Ё:`�p`�� 0 F�6Gb $�$����H( \� ��0�2d BA(��I�@s �!�S� �&���h"�'�p/���6 �8Ȑ ��pO����U�K8s��8� 0��$�(� ����ċ$/�� �0@�y9�� ��R��/�@7�T��0(��c` ��``�lP��p\z�"`s��p�0��7�@8�� ����7�p��P�ksǡ#�<6��~GByl�ͅ�ƑP�ks!�#�<6��CCpl��Ҡd�)p2 0�d�)p2�/@���q�� �/� �S�N��Xh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*h@�-�x 4�g������j��2��f��q� l��Im%�'�9��) 0��X�)p���@�T��ڼ�M�8�ᠽπ6p���u��\��@u�DI�V�$p��0�@��^�+(��(�k�,w(+fy����xW 7��!/rC>x.7�A�iJ@�y��"x ������+��Y'� W��}�k�A�iʀ8h`G��5����h� ��A�v�r��0��u��<�@0z`P>@���~� �<`���|� �?��p �A��� @��3pЀ0�� (0`�"��4G� A$��T �hp8D�y����e`.|�2� �U� [!�*z�V`4�b ���D��='`.~���0��[a+���0J?� [�7l��0��\� ɠ�O�)օ�$l�O�F<�Q�͢#P�u��§�K�Y�������{d�N��i'�f'��vrv� `(�l'�p&�j8\'�� �UC��!����F�)@����#�jCa(��{�E;� �{d��Pv� �%����(��E`(�##0�5����4܃ 8�[1k>ͫ1@�+#��Y�Pf �y ``h���p�8���bB� ����5�B� gVAΉ��HBpa�K�C�:0�ž�� +D��C Y!ی���-�m�'$�h �U�lCV� ��$h ma�HBV�'$ +i�j&���v�� ;�3}��L� @��u�� 6�O�M��6�F�Ń��� ���H��P�� ��H�����!�$�vP�n� U^p���I�a���! ��nSg��>�6�`�t��q�z@5}����NSgX�a�$���u��V��$#`'��@ ��N ���ȅN��Os� ���s���]H�f'B;M�Ƥ�d� �\x� p�� �� �$*X5Jb����Z���%�CK .��~~� H @u4�3���A@��Sh��J�( E�!� t���@��H�%)B��=0$ �Aր�'b�"�)�(���@��6)f�� g�a �3�����i�+�J���K��,@[t�ʹ�$�CL_�! �n�x�H<$$�� I���� �xI������� m1 �ӗxHH<��$�-� I��h�$�CE�!p�$GFG�!p��$0_BH�$0_B@ @;$40��k� �k���E3�ĉ8J ܃N��T�| �t%��@�I\�a�� �B�H,e&.�0_B`(S $���2�j������������K5�׀P��UI���ĥ�k@���d�3@ A)�i� ��SP �@`f ��R�P�X �TP��(w� ��< ��|���5P��y@ �)��@P�� �BP�"�4$?��*0��N:���@��������Ϭp5�Mn P@E�A!'���N�BNȑУS�@1\@h�:# 7�|��3� Y!7���0�Fn���L� �gn� � 7@�@aƆ�`lt @ ����blt���ذ/�sl�x r`�'UD$���$g<��|�P .3%g(���D͙)9��pz�gJ�`@ ����A���대ŕ3�Hx�%� ԍ��2r���a��˓3��H'%t�� ��R�8�f��(5�w��$����.1 �3 �(8@�:�J A(ʍ*5`����@NK��p@�̒SA!(ND�'B ���Pj9-5}�9�Tf�!)g(ՀY��*�P�f<��Pn�i�YZ��0���p@�̺�$�%*�E��@&A2(G�H��"��( & �K����#�"|��?F�A:@(L^���Fb�V�5 �@���N�3� ��R���Re F��aT��_``X�c��h$vjE100�@�p)� t�2P��@Ձ��N�/0t�@MS&�8��6��KA+J ��bP�`L��@�N�PRc �� E�ҸJ�(()�P����A� �wRc� %���(0���?I�\l�:H0��p%�`8��2�����`8�@0���(�ylr�Q� �p�¬ �A0��p�y ����p�y�PRPDa �D�$@*��@� �@Ɲ�n�$�@+h� )�$*��8�@I|���@��"�7�F��H��` (�$ ZEx5 �"����� �@ , ��n��EP7��E���n��EP7��E��%��@=Z�"���A���T` <���t�P�-�ܠp�P ��-�L 4��@ @|�N�f���@����0���@��`=P � ��n:7�(!Ph��V�rG��p)w�,hM�R* $�Ёb��U �d�i��R�(� ��1���;(P���1��LC2M<� �#�h�3� �d� R�ɑiF�X3b@0��i\@J�4`����ZN��)���fI�c�� Ic��Ra*<��` )X� 4I�*�Sqk�ā�C܀�1�'x�� �!�π'Є0� ��*(~ �P/@���~� 0@@� h� 0�B�����5�n��IQ@;��#p ��8v �8��8k����p��xp� ����s��2��1� 1� 0� f�L� a�@�U@�A:�5!Ёtl�8t ԁ5P��K8�  �$pp�/� I '$���t�*� G��D���M@t ��~P�d�0�1@�@ �` ���X~� 00d`a ȀdSGB((�L�il3C�� }$�f�>"���wc��}@�����������F�p�,�1`�"(i��3��@`m� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U���A������ P>` Ȁ�@�4 hp��,��M@7�ЀeA�B\`��&��6�MH�g 6�,��M�k��f�|n�xp� �8�Ȁ�t�& f�|nBǀ�T @@(���̐ 0C���8�p��10��A���_�r����D����/��P1���p� t# P*f� 3d`܃��>�� hʹ�{� \@N��!S���� h�3��܃��~��q�''�����R@�x)`��/�Q�\?�|��GT>��#* R9���T>��?@@ ��Π;�0ɲ O!.���[h�Q�p >�� ��TN�~��)��4��-��� F�r���p B X��3�L� ��/X�����L�! &d @*�Y~� T�sTu�"��脘��F@���� ?p�d�@4`���M\��`Yh Ǖ�tB\0 q���e�����"鄸������ ��������H~$p�,"eV0 q��d�r���@:!.� p�,60��DSS �0�@�B� MA( A$���T�F@(�'������"�/$A %(� � IP � �&ąh�)�D4�BąN!|���0.t $)HP\�%HR����)4M4uѴ0DS ��0Q�\�(� �` ` ��S� � ! 0 �;���E�B��pl ��, ���P>7�Ѐ4�nBP>k��f�|nB%X� 0 �s���n�ā7@���7aH0 �s� ��-�@ ځ �ft�q3� ��`<Ѓ�A��[�s�j��Y���EOE�J�H� �a��x�R@� ���`��� #��-��@���� �',�`�=��3+D:��ʀ) �6DO}@�[ �6D��@às �.�=m�� *EKD���0��0A�l؆�9��mX�A�� nF�g��� �P��m� @؂ �<������^�R�O�Iͨ��`����� @ x��q0<8 , ������ {�l)��`x�e����@0�R�ZH�8A�a����-�����I;�'�@ Ԍ�����$v PE�PI�@`����h�h�xp� ����s��2�@(��[@@h��>�A�BAv�� ��p�W�p����l�BH� ��Clx��yp�/XD΃�JV�2�!�xp�H��� 1c# ��Hl`��ΐb�X �3t�E����7P��H@�ȋ�8C�`�q�C,6<� �$J��HI� �3p-�%���p$�3��5@/:Cg�4��3tw�u:I ���Qg��` 6�0�:H$A��$���CI�&��$Y����{�|� ��&K'x� }0��� �#�0�v�O�� �� n��O�h7�`,���LF����� 0hC;h7�` fRV.� �@��v7G�=`>A�� }�O�� ���d��c��a>����}0�N�l ��l�@���?�M�L���dY�G�,��뉦�TRDSG�,�D4U�T DSIMɲP��DSrЂ��Hh�?�AN�d���>a�S(%��� ��B���9��~���0��(�� �8��@�o� ȁ9@�` ��  B6E" #q$�D��F� [� �(>���O� >(� ~��B���~F ��@(H �1�\�  �T��@0d� �? BA���P` �A(�@ D� BA� X�k 8A/� Q�`P�@(`� ��� B��l� B�5�� p_0�@0��4��{X@����@ 0��7���X �2 ��d�0�P *` �=�k �A�k��2���R`��>��@�d�)����}�?p (f ��2P�P�� �D��"Pc� �DP �A0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*f� �R� Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V�pAv ����@n� �7� @xd@�:��`h�y8�|�1�b�?@@P ! $�c�Ī8 � �$�B�@I)���iV��]c� �3��@0j =���ڀHn� �7� @xd@�:��`6`��`��2`>�1H�� T�h ��1���\���<�0�B� �%��@ C�A#p�` ��4� C�e~�0b �Y�Av� �s�~�8g�d�� �*���҃6 �Ap6Φ8g�q4��!�Gh�P�"����U�`P UR�'`P�̏�r �W;���xH~�,v8��r:��q9��u8��rA��2�Z`קs L"�`3 ���fЊ9�������2+��XQ�A`̀ 8�:`� Xᒐ��_+�Nȯ�h$@�( ����>��, ��S�ϝ�w�_TD� 2Cf8F�h$@��<�_T��3��H`)�˼�W�#wh�l�A�s`�AsWà����,���@(�ɓ�d���vc^ܑͫ;4h6РɅ90�G�(�� �jY ��,�p�K�$cz ��*��m� �����0Zh�l�?��L.��6�P�`0����>\�*�k1��F@: �C!�ưXcHpd#D82XcH��l�$�CH.�0H�6B�]4 ̆S�fcȷ� ��� �� p$���>@!`1�@$L�(� ���B�B�4 eP.`� `#�P[ �r��B�! ��1�@�4( ����pk�ā7@���~� 0�2�A�� *^BP B���\�(p.�@�������3�(� N�/� 8�4\8��N�������Z�l� �!`��Bf�>�!4��PN��;����� ��^���|;��NTx�����.M��:n�2�`��ԟ` 9ҏ@���;`�X��f��@LX�4�� ��.T@A� 4���%Iޅ�x�%٤�_p.M��:! \�KS��B���ԟ�C ����2P�@�Ai�f���� hf� �8��@�o� ȁ9@�X��<����{��>� � x H= ��~� 0'�ֱ ��hBx�`܌>�3��3�����?�0�� A0�@0h@g0�d���� �D��(f ���aj�(l� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|��2���?Z�f4GP �#� a�@�Up3��`� g�B��l� 3� e� � � �"� 6@,@�ApK` ����� p �8���f��;̀pw����̀�T�P�>���h�"g���`P�h�6�� �/X@8���?�$m@���Ⲕ4` �)�k ��Tp ��ph`��STh`�Up�@8y� �=@��~���6p��{� �*���`� �Cp؀"6@,@�+@����@�BY���8�� ��9py�� 8�PʁV�Z�A@�!!�����BX� �!��h>�����"@CY�$��Dh>�� `.'�����P �1A��٬b�.��;�����|1y8�� DL�>�A����u��; &�٬b�.l��x���w�O�1y x�JP�@%X@��J���@%X��̄���x���)V�9�`a,��\V��KN~�A99�X(ii� 5(�`��cr*�����Ҁ��R 숥�4����!fy�?�A���@�di���'�kN��Rh��m� ��]bGXÿ�%ae� ;�/@����K� *�2 &�5� ` *@ө�\���H9u>h� \��Z#��V��fa fB� X�5J[Q$k�����W�$A`'��!Z#�1��F �K�g��Y��Pb�)`�!0��R�A+���� @�Hh��\�`�L����VPb `�&t��R�A�<�&t�9R�Eyx �H��R�A :�Y�F�f��t�3A�5��@(�˹+��S|��)L������|�O�)�ǧ(D彜;�"v ��⽜;6h.� �x/��L}���zs��Fc/� �a4���}�)L�>0��S|��`>����S|�Ic&�> ��S�uf�>� ��SLB1iv¤a4������h셟1 ���fb��i c���܌P@�  $�`(�� P���@l&3a&���p�)�X�-�!��� ��=3P�3 �x�s`<�@8ƣ��;h�I���O�1L�Gh`-d �C�N K�QH�%�(��(��� Zg��@X��%�(>!���\B��wP/; ��?`�\�Qs?�A����q��wP/;�L� %������g���)�ϔ `� ��?S si.]�2B��� ua h�P���������P��0 0e��)�􈟉?Ң�����GB���#~&�=�f���3m���}�O��"�'�e��0 i�X"����=��i3~F4�d�Q2� � *D�L9����( 0�� �wpܡ&���3J��( ��܀� w� ��; �pC]( �DB !! @�7���Jw�'܁;p���O�>�܁;��!T�Ч� u �9�)􁄐e↶�BpCR!��r��� Q&n�Se�H�i�M]( C�$�L� P&n�;�7�L�ID$��e�9�z� � �,\��f��L�� �p�Aȣ-�,x��`j(5 ��M�����;� Sb8؊�PzB�� %�.�#dX�I� &`4���"�G���a>r��ع���4�d>�)�~<�[a"��3�@@Zo/L����B��)��!���@��6v���o#LZķ� �p�~ҏX�@�4��[�l�c��V� 0@�l�}�?X[@;�� 8�Gp��mZ��Р���"���>��l �������;�mT�Yv��؁oc����[��;Pyy�� ��r�υON����䀭�}�@@�@��5�PA*8m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP��@i@ �4��@8n 4��@�p� �9��v���6p��{� �*����m��3���T���?̀p�@7�����3������:8G��A+0���4��P`�(�E#�S` d�F�$�e� �4���@l`=����Xp �8���f��;̀p�@7�����3�Bl2X�� \�i8 �a2��0d����<�p�CA&��� (D��#��� ��O0L��"8n��*���� �c.$EqQ �S� �{R9�=1�����c�M�)7 ���̅��p�� �E����LBOP�'�Z��� ���Vi�tj��K@'�`] \`����B� � �� �F�� 0� @�$P|�A ( ������ H9 b� ���P^Bq��P �P@�\x ��|�`�3�D���I8 ����O H) [.�R@�A) [���:L( ��%�R@ H>) D�0��P@@@��0�S��)DD� p� Pe؀5p�NP�8�:0p@ �0���&� �l�6��@��@�� �m�6��2� �x��%̀pf�pV �(K� 1� @(@�@@�,0�Am 7�C� ���!@��'@*��:(S� �ZR��B>0f���3ZM�$$4!.����`� �ZR�����@ p2�$@4  �9PFב���d��S����*B{T� �1�>��G�V��\�O�Q�G��P}�0 ��T�\]@��G������"PKD,u`��:0 N��(W@!��r�>�5�u�L�:0 %��V��1*�L�`�V���fx ��H��̀h��o��G{�M��f0|.1ghO�7O� A!(�BW H/!�V�0lCkh��$��a��I0����`>�I�%��S�<Z@ ��#��0H�B � &�| �bL�� &�| � 9���,� 9����%6��0XP�`� �F8 &`%������ +򁕰�JĆ��KLA �EEX �c%bCI@ ��PX +�Ʊ��$���b%0��� %5 �?�X��|� �U��`�.�����Q70�A\���`�AK� ��u��A47�!7���� nH �_�~2`�:@���L[�{�:�'����)�h @��fP�� ��S` 8�� (J( �t@ ��� �Vp��ӹB6�f\�u�.�P ��@�$��QlB�XJ����a:�$�V�P `:\��xPj�� (���t����#��PL���h1��x� �E1A("�#�V�.� <@(���x�b��N��X��d��s�P �>q�d!� ��zd'��%P� X` (&�?��; ;A�,P�� m�<yP�vH��Q�����<�G��k'�.���/H|+���6��N;K�.,�%@��Y�f ���] b��膝�8��w �af۝�3 ���;�G��>�]��ά�ub �I0 v�ܙ��L�=$�/p���z���� D�pգ��:��w ��;�OdW�5 ���كA�G��)+)` �.Qx�_�%��}pg�B�-��w �PxU�>P=��-tg� m+h�(�S� �@������� @��8��*�����6p��{� �*����m��3���T���?�����El�"X�@0V� ZA�����j^Ȧ�ym���;6��r��0��u�3��l@�M�0��xa ���f�DS��ia4H�(��"H�V` кȠ �S�N�@� ��6p�h���8 �@8s �:P���m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2@oOX�a��6p��}� �9���q� Ё:`B�!L`0-L@C@��\�`� ��H:I��.`@oO��9뀝q�u� ؀"��@D��C̀pf�,�P\X�� 7�S]�r��0��u�3��p�D��^�p@��(�<^��� ��<�0�AC� � �EP ~�N���$(����@C "|�!� c H�V ��(��(\@�(��@o���(� �B�h��E�i�X �@"p�4�W! J�9����0B�)��_�VS9X�F�����wP7�� P4�"���� ��P�@8��9���q� Ё:`�p� �3xv��v�f�8��PJ| a>��!L��`D�O(>' �5�+��HCT� 7pe�A�r` ��@��A �� (��̀p��n��qt�08n��$�44 �x�` �6���:�e` �<��CyXm��8PPe�m�́8`�@f�8�J"k�� ` ̄ ��0Xev�� �.�>!� &@�6p܀�]p �8���f� <�:�z� ���.���p@�&\0 F�8�`�mP��k�=p 4��#��p@ @�{!d�J� 8�w"̀x��!6d0 bC���!?p�Ю�gohp��/@��n��qt�j�x` h���3@8n�� 8�h$���̀p!L`P���"k��8�d�vtA8n��x8py�� h`\3��!8�� 8� @�@28�����q;�U,��@� �U 2 ��L( ��SD�c+( �%@��hp��.@-�z�V�Cɀ ��[7����� �^�)����d����!�x����C'N����� x6f�D�?� �PJD,E��Q���IN��`4�INF2�@��A1�!Å<���3y&B�d`�(�C��8���@�����P����4 � �Pz§�������i@?���8| �A���d�0��!H�� 8��'��Eh��1ʳC`x���`J.��@���d@� �m�5Fy�,!\�"�L�%���?K` � �f�Z�\%�N��J( ����2���X�� 8P�(��D�0PN� 8�/H��C�4P6� (D�������=J$�[|�,� ��[d�',���PpCOp&=A\Ep�x���3t��p@CO� @��əPl�h� �����8�N(�O�<���\8��@S�0��h���!@�X*he���5@� 0��<� G2h��H py$4 H3����CK&�CzBS��,Cp�X���s���a�!���>0� ��s�A!����~�A)f�8�m �dX3� �l���� ��D W�@�(�T���*XG{h�ǒ(���@{hm@yԍ6��C{��#x�S:��<�>��#(��f¾�}�Q��V@ �r& <�}�L��B�A�Y�̝Qnf�ܙ?�Gp��i��:8��6��3��8�}b��� �#y�K��SVp��C��;�Ol�p���;s� Np3���D�?�Gp��iw&\�f��p����rCĻ��,�A2H�Hn0%�'��` ΂)� A�<�` ��U5�����j^���][�$�������]%Ah[Q^� z �G���j���q���93������` �0BT��*%��ᆒ�BC�>��#Ć? p�CGXx��#����AP� %A�XƆ�^ `"�ht�3BD��)(w�(��L� :w�(�B�sG�85���_���)�>Dh[aAJ� ; ���vB ���QTMv©)Df�.TM���L(`(F�fJ 8��QP�PoK@ �a����NJ ���\��0�!>� �d`)�؎x� (%�f)Py@0E0 ��"� �@HE��� 0$��Hr2�}(�!�Hr2��} ��1� 8@$�(���� *�c��C؀jQ-�A����Xß`����(�&x��<j<�d���� D��S��'�� v�d{B��P�4�$� �6��`�$� �96��`~� ����4�s�� �h�v��J�� �96����`l@8Dx` �QiP,nh� ܶCTh�8� �p!L`���X� �) �xe@�;<�b �Cm�(t��$�r��0��u��T� �P-��<��� ��Q����@HT���3�.n��DB ��D+�W� <��p������?�%Z��\�p�?� p@��� �Ⱦ�2� �s  g�@�…O��!\ � …%`\(�v�,�.MP` �������.�]�Pv��  � �\�"*���W07��+XD�Z0�R���]�B0"����(�����K����G0"��:�P�q��:����g ,�VPZA�a��(�� ����?���-�?P�@�a��(������?���-��X�b�a��/*������?��� �=�hD��$?s��� y��0'�̜�~�?�g,✘~fN� �8'��E�sbN��9�Ĝ�xbN��ЈQ�3(�#�� '���3�@P&���#zD��y '�A��>�$�t�E@��>�g�ǒ� }����P`��C���`E�X*he� �4�ր�@7� 7���r��0��u��<�@0z`P>@���~� �<`���|� �?�A ��� ��A�!(f� �3����?\g<Hp @$� c H�V�3���p�`g�Cx�Xl@�� P�� H<�ȯh� 4y��x ��8 �@8s �:P� 0��ݥ�v'����a��@5=���y�h�@D��C��`���(O��"���'��%� ��u��t�������� S`؄1 �A+(�` �� FA8n`�8�h`�3@�f�83�"����`�� 0 F�/`���` ���`bP ��!8�@0 F)@��x�Òp�� 8� @���cw�ڑ���E�w� ���H�[�8`l�� �BL<�����C�8�>V�9��C�8@;��f��q�@��Z\����p�b�m�ex�.���0.��"���8$�z�-=PA���N���P:�BN=�tp��`�����u&��dp��10'!$�IDc`�V�] !�eQh�X�%!��1� �V�]`+̅`��@B(�d��  \���(  �:%��`$�?�'e l�GVC�!|D�tc��@"��w`�:c�M1Ah � 4 �nsIh �`l� f�~�e� C&S��I�J`5$R�|W��D��x�0OI�& %�|������� @���� ��8�؀�p� �:P�B�3 ����� h� ���� �@x)w��$�2� 2�&Pw!$�Q��f J� ��e�4���@h۠C`�@A�j��,�k�؀h�� ���7؀8e� 荽� ��x���� ~��J�3(�N���0x� �=0���}���D�j@!0k |���H�`�V@�@)H�@ ��S� L0m� �3` �@*xl���7� ��`��<����|���>� (y@L�=0�@�k |�P �H_�$E��"X����)2@�!�/��3{�n@k�cÞ��0���՞��J�%*$����a�0Qk����CH�%*���{6)�%*���p�J@ Y���Al2Q���&`�#06� �� U0�;x����)8�X /O�c�8G�g�L �3{����� :�&�1��l��S�9(��*�PK�� �H��y�bU, ���T��PK� ��h,� �|�V@>@I� $�+fOt*���c�Áq ����`�p>����(� =���%�(�`80�@�� �>@� X��pr�\��Z��@���}�(@���@�E���,�1 n@��&�����jD$[9 d����P46D�(Z%6&� ��B��D�B_�0 UJ "R���B�= ��p�"Ro;��l)�5D���JF:�7��� C3$Q���3���HT(n@n� s!7̊T��A���_Xij0pCm0 �_Xij04�f��,L�Pz@��,L�U�J��E� �@� �x&@)2 ����ڰ6H��x����K��f0 kC3������� f�ЍP.��$�7����F� =@���U�J���`�`l��Pz�37<�g@JQ)� =�6��0>�s\ (.� @H��@?�@R�`�.�%H��b�0p�o���>P�� ��8 \ L`hm� � l  �8 \ L`hm� "� l �'@ 0" )��1��A}���={�@�~��4�c�|P ��3$<�|B"H"���$��A"�5��4R `�<��?������H�R�lKS�y^�����@N�� #I�T$�F$y:�$�")��T�)B���.H��I�N( ��ITt���)�|Q&d��`�W#`��@P ���w�'� p!.ą D�iR� .d�I��� �4������7I� Yx������4�48 �F������_��iV��&ʿ!.d�I��@K�4���hip@\���S� H�_��@ha���K���70 ϐ,��,}�Ԁ�[�E � r�.��k@ PˇY�A���V`� �����%`� �����H���7� ��!�d�3$����)��@.��S ��`�*@���xZ��h����>� J@.0�� ��� PA+h�à�T��G+@�� ��� *h�%�� �� 0���\� `��"%���+ZJ��C+(�BPr���p��@�� 4v�@�~��6Rg�AI��$ƒ�@"X�@$ΐ�A$IJ�'��B�y#���4R @��$<��� aG@��� �P(pGP��pH�"�@���w�<( o�NP�Bb0�\��wJ@�)�"��p�A�; ��|�C��N��0�XD���#@F�) �x�#� J@O�!�| N��B�@�`�ܙ� N�$S`+�� �z$�D,�;S�R�3�<<�wp�@O :*E�T��\� ��� � �H���� ��J��C���� �i!�`p�B2$h!�`p)@2$ ���� �\H�@� A�&� ���@ Y�2�h v`��;�2�X!>`� �B�B� X!#� ��9� Za+p��@Vba,��P@W�^�+��� ��L�#@t��?R��<(+d����i��,*+���ZDDK�|������P�B  ������o�Ex` ������90�����.Nއ�90gg|8�sv� 8<��}8�s�ׇ�90y ���+hЇ�90g�_A�̀p-& �) �'�&�! �Lb|o�E�����l��ADD�� �H^% yY� �5��X+�b�@B,�9�%����a�D}�E)�b���b1,F�2��X�~�,F � 3�f|��sK�� �6p� �5���x*ᖀ*��0f�8��@B"�-K��D����gP�\?�l`�6�Y���0� �I�؀5�|��L �l�6p܀�c>����t���p��9��v@�aR �v���J� �P6ʦğ��ڃXǠ=���}�� xv�d�\� (�Cs�h���0$���^@ ���p سX �`5��,�)��^L��k{ꃵwh���%��-U��j�� ��@�\����?�l�c���v <�J�(f� ��4��`i� 7�Hp �8���f��;p�@8y� �=@��~���6p��{� �*���f�8�@��@� BP��@j` to`�#p��C�@Hׁ (0`�"��d�)�2@#p�D�2��AH���| g`Bp�� 7�@2�q@��6p�@0t��@`�H2a&Ԅ�`�@4�����u n�:��@��$� ��:�m�������0(K '�`p��NX9�#��V��@2`��',�����:(����� ���@�5A ��P�A&0�$���C&0����68���L`�P��'��P�B�� <�0��(f� ����l�m���7��@�p� �9��v���6p��{� �*����m��3���T���?�n 4 A!0g ������:8�@�c@"�M�@����t���;�@�3�2`� �E��"`@y]���܀P^XK:� �`��`�`V@ `�h0������.��� �֑���n�����TNXƒ"��,�:�`�b0t�����rn�u| �%�d l�K����� ,(�� @�� �� 7��P�r��0��u�<Hp "f�83�"�0��0 ̀�4A �CF�(��`���d�g&0�2��< �� �ʹ�iƆ�)��W W�j�GH�flh��<�����h[!\Am(��0���^M� ��y�����N��a'��@-�O28)%������+`���4��PJ@�i+��4�X�V��i��=��W�h�A蓙�I �'�ĦhK�5��%ٚ6����O8i:Ó��N���,��� ~�� ?Mgx�����?A�ݼ��t�'0��!�g"06����M�a���yC`8��t�mx4G`�0�|���@�^��w �� ȃ� @(��?h�Q�-��x ��d/�, �_���/�E ��!��"`�;���[�TDd��_C�2"��$ ���@C � ��'� hGP���@��(`�AG��`+�W�" �f�Ix�ay���#Z��xf��H�_���<�f��H��8�I��k&#���-�H�[�2n�I8 +�e� ?�'8 ?�V��q`"���Ϭ�[1n� ��؀[ql�����V� �NnE �N��� $ّ�#�I��Q�Q+(� P�0�AOx�` <@� ��6�Y���0�6` <�@��p���K��p��G� :0p@�EN�9a @�@�E�xK4t����Ŵ� ��3|�@�Ŵ� A��p � �D�?@FQ ��(���h�\�����?� p �8�!G:�T�#%�8�u0B@GX�1,�%#\�c�[�#,�E�@mHmfA8�}k���`����� G��h!� ���$��r ����!(�`40N�PJ��� �$p!6����0� ��*p���Q1"���H�Bp��2Ғ�D $�� �I��b\��A������pt 0:�I��!����e �  |�T$ 2���2d��k9:�I�DeND�ѡ�Ct��`t �0L�0 ��>�Ct *s�T��al���C �`F�2�d����0:��0��H�H� A@�@�5��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� �0����5�PA*8m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP��;�kಚ�if�A8n����w��m�́8`�@��� 8�`�Pe!L`�B���4��Y6�esZ� �,��0�h�h Zp+ge[���l� p�s��ő�H�#q$X�>8@��)*�,�B�?,�Y>E� ��SHf40˧���| ��jf� �A4@�C�c� � N�J!%@ ^�Ҍ@�c(+�"4��P&MH �fP\�� B�I'���!���pFB�Qx��q@��!�h�g�0N4��g%F#B`�T��b% A� ���,��B�3iF�H��f会�U� �&$��2�L�"8k ��Tp ��ph`��S��m�́8`�@�w���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� ʀ8h`=��5���zh� �4��@�p� �9��v���n 4 A!0g L�[� �C&0�gN�i� ��4L����`.�4����D� 8�/`�4G� A$(f� ��4� �`i� 7�Hp �8���f��;p�@8y� �=@��~���6p��{� �*���f�8�@��@� BP��@�` to`�#p��C�@Hׁ (0`�"��d�)�2@#p�D�2��X�� t�s�W8n�h(����m�́8`�@��� 8� �F&0�(�� ̀pl (�L`�P~ �����f�8Ep42�p@�V� Z� HCt�V���A��@�4` �)Xh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*hez�5�[�5f�83��p�&�l�؀"� hW��3�0�0��t��p��F�`t��� �'4�z��D�FA�@�#FC+Xa P#` �0 :A����=��"P#��} �� ��0 #��0���4� R�)h� ��A�N�r��0��u��<�@0z`P>@���~� �<`���|� �?�؀"6�6��� P�(F� PA+(����� ��j���a$�`@8� [$Pp �!�@ d3��"@� 5� ̀p����j~@S$���0xa �d���'��� �CO(�(��6p��Fm�́��Pccl�;P��@8�I�kЪ�o�H���?��@5� �U#�u�Z5�mxi�;���h�Hz]��V�|@~� ��V���5 h�ȷ��QЀ)P�@ �4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2�L�"8�` �T� NA8n 4p ��*�m��8� �h �=���}��?�@0z`P>@���l@�`P`�(�E#`���3p���Pk ����@� �8�h`�3@��x� �<`���|� �?��@8y� �=@��~�3�@ ��� ��A�!(f� �5`P`�(�E#h��@�H &���ˠ$�� ���3A�GSrR&��]�p � ��� � ��2�m � �XG3i%`��� M��:&A�� M� BP A!a�F8kF�!hʀ8h`=��5���zh� �4��@�p� �9��v����@�`=d3py��4���`P�k0 �A&���?���3 ��!8��E��#x� �WJ���-���7a K��e4ow%�׀�ƒx�+�5`#�P ���}�����lD>U6r +�!`����ޮCp�%�`����@�)sa�._�6�6*�U��5� N2A����ͺm��*�m��3T 0��������0 03�"�`���3p�@Xh� ��6p��@i�9���q� Ё:`�p �A��� @��3pЀ!8���4�؀"@��<H �f�k��9�A0��� �@�8�h`�3@�f�8Gb���?���ql��QtG�[��h��p�-N�Kx`h�S�L� ���{�jf��(��ptq8����c���v�Xh��?�h�,��Ӎ:����#��áz��a4�Cx�Áh����#���1~�0�S1fB ��$�wPJpxš$�S�:�^� ��t@�`*+n� %!��s0�@�}z�T��xp�\�x� ���`�@Ӂ �� �6p�@cp�o�6pЁ�{�o3��p�D�R�X�hS�!(V�D�� a�> 0l�!>A��%����K��@�%��@�K` �Pn��(7�b�@(�wc ,��#��P!�T��% ��ag �p �A `��v�@�Y��6��v��@{��6���R<����'���u|Þ�Ń;|߰'�w�:�aOp������(`Ѕ�"�;���\��p]�F%��}p����>@�����El8)t����@L]� t�$��P�]0 t�.��� I{X�������0��0 ���g 8� }����0�Y������=�#��O{X���pD�HG�>큠�#"�)��(�Hi �o����6�i,�>�!��}`z�E(���߶�\X�+,���% @���v�o�m����`~�o�M C P,����01���p���g� W@h�O�01�a��PZL g� q@��3��!���21���p�8���97BG�y��g.@�Q�!���l)������B#�Į�����?0^��qx1/�����^+�^d� �� �"�Y�� ��#�^��sD�!�#.��X��Bc��X�` HQ���.q+�Q�z�KbC 0�k�^��.Y^�%�J�j<(�D8Ћ]3�c�8(�b����.Y�լƃ�K\� @��("� >�7�@�Q� �<b t|P3 _��U���@�a8 8�|@��'� ��A�����c̄x  �xh�0NB �%�t��Q�A � l��� �B2P4�`V�1fBȨ:%@d���2N�h*`NlMc24�IX�� ��=��������@?)G�@8a8��i��8̀p��\hm>��6� 8�w"���l@���PJ|B�Q=��4�)� ��� � �U�h��(�����P�P3�Wm�m0G���%�B�9� ` �0FǪ��&��`u��m0G�H`Єb�9��!�6��Q�ր� �@�����(f�83�)x�@3���60o`��`�6��� \e�����Q�(�$;���}��(�<���k�e�Τ#<��Cyh�<3��p� 8� @���I��`\�Ag@S$���LIGa �dtIG�G'�ЀN@+�'�c @�`����� ��� ̭��p���^�b����:B;� ��ɞ� =�ѧ��g���y�� �( �B��. 0B�'p! Ժ�xj?� ���V|�r�'P���|��x��'`��e�C��5�!LA�h� t.�m�́�c�� z��x�� � 0��\� ��p�D ����P0��R "|� =�Cn0"��h]�4u�:BG(�@]��?�"�x'%���>�e����O�@G@A�# ��Gk�I0 �$�x\��G=nM1 .�ltā#�AI@�#�Q�O�k�~�����������d L �B&1 �|�������R�6p�@�Gp@��6pЁ���͊�f����Qp�p@��11�Aج$Cp�p@�#*�pr��� ����@ө}�(2�ܖ�>�0�������>2M���Ȁ[v*p3�;u �C� B8�� 4�ڗ�"nY4�M{-��ďZ A*�`k��~� @ m�����p��Əpn՘�Eڎp�;�Vb@p3��l�F��������8�$�@��2� �@.�`���v.�q@��6p�@0t��@`�0 �^� F�(��`�6�~�/� S�܍u �B� �\0 l�x�` o� �!x���Q0 H2���|@`�f�8�2����h{Ó����_8�hx$3��m�́8`�@��� 8p0�(�`�� p0�(wO��phBO(%>� O���@C0"�'� 0�@x� D0؀"@K L�%�������4<��B(`?�<����� 7���r��0��u�3���ak@�������@��6p��30���6�~�/� S�!��up7�A�8:A7���0(x����Pc�`r�7� Jj$�5���zPcY�7��V 7o荒� �qޠ�b� �^p+��y`$TO1@��F��FVS�A_(+��H�F�#`@1� X+��y���Y�$�d�l/�`V���9Vf�V�g�=��Ϫ"N4�=�PE<���Y��d���u�z�Ɋ<�8����Ò�YU�0P�׍C�j� ���@�8Y�����9Ϫ"ơ�#h4C�:�� `�u�q �\�+�'�p�8�x��=�@ i�8 �L��q&Θ�gpO��3�г���gx�I��U����K� ��O�C�L� ���?a�D0P �D��`�� s�O���'h�\HsA�<��%� ���O�s�'��V@ s��`�A� �a. �B20H[1�y�V�Ӏp@`�LP,���8� �f �V0�e*P��o�8�M����5Z��� ��Ѐ�A:�@�<� �`��Q@h�zk@�(7�P7<�7����x�pS<@0g ��5��@h� �4��@�p� �9��v���6p��{� �*����m��3���T���?̀p�@7�����3� �!� ��D�"P`�(�E#h��@�HP�)X�<��6p��r��0��u�3��(���^�x�`v̎W0@��4P6@DDS����0�� Ă6� f����=!�^�C��(�` P�X�^��p�t �E�A)P�&(Ep4�0���4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2�L�"8k ��Tp ��ph`��S��m�́8`�@�w���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� ��A�k�<��5�y�q@��6p�@0t��@`�0@ 䙩����r@�4Cp���#a *p؀"� �`�t��`B��`ٴ��� a h������G'� �O�k �]0 ��p���8 �@8s �:P� 0��� /����_� �A0� �\0 �1(��@0 HA'���3� 0�3�@#k`�t �r؍.pm���F���6� �9py��v��̀�� 8���H )��S��!؀"@�� (��` @Ƞ݌7a�@4���'�����HO�`(�@!�@h %a*�8�$�@p+8F�� �D�?�RP �P�&pp���X����%X�.@ P T`j����u�P�����]�.2���(�� \�@�@ ]<�.PB���� <�PF@c1t��3Jr(4S� � (B@G(�b(2P\#X�<��6p܀�s�p �8���f��;̀pf��9� x�H~&�e3��p�p��˓кP-��<�'x�@O(%>�5^��0�!>� ��5�� ��D�涁��a8�{�o��6pЁ�{�oLE`�p��P�ksǡ#�<6��~GByl�ͅ�ƑP�ks!�#�<6��CCpl��Ҡ3��f�8��p�@8y� �=@��h |� �>�~B� ��p8 l�xe`��5@��h�����>́9����s`� ���WРl�]���@�E���T5��$Ep ̀pf L�� ������8�g`�����4��IL�Oد�'�� Pd�X@2�[̀p�`��EGSܯHg�����; ު�(���$�Qm���6���p�c.'�� 8�w8؀"��D� ̀p�@��� �.�(`2��@!��~�e��\t�(h� �\��m�́8`�@��� 8`@p3�`�� �~�/�@7� p�0ĠCp�( ��x�Òp�� 8̀pe� �4�@{�k ���p@8n 4�@{�q@��6p�@0t��@`�z@�40Ѐ �� �4�F�(�f�<��0 ��w���̀�T�P�>���h �=���}��CpA28l@�� P�@���Ex��B����T��K@�8,�T�h�K@�8���T�(7K@�8�T�xK�-.��"�P= ,��Z�P=��,����P=�x,����( )�3��p!�,<�AgP�xT� �!� �a �)�?ACOPH� 4 �� � h��It�ϰ @Ch :g&g��0��� �3|�e��0 :!4�e��2�>���ݞ�wS���#a�� �V�#�Hc!��V�X5i����:j�s$i7���HҮ��8bլ ` �#I�� �|�BC��n!4�DD��^X�"�B�ܰ�nGX�G���jpĪ��$:$�qh�\"�и��Z���#`���U3j�@�ϼ��*�����``�q;B}�+(��©��(���#6���uJ��L\ �q���sF|���o��U 6�P�3�Bl��*�� � � @(��((��*��� � 8F��� @8��r]0X�`���Y@(�"P����@ ]t�B@�� ]@P���(@(#�P�B3����� � 0Jr(4S� ���(B@ 8#@)����g��� |� I�L�"����p NAh�b]�����g��N���� ?��������F�.>��t*�!��F�.>��Lܡ���.N��A~� �.�� `"L�r0���@�X%�n� ��hn�`]�J�J��\�A�F#?�n`4*�3� =�.�>� Pԍu���.���O�hTº8��|�uQ�O�k�~�����������M( ��*�i @������``�Ѵ8�5䞊�{���x ����)�W x ��pb�irOE*aMx��P[�����"�Rz§����x�O�m����6 ��X�Oau>�V�S�"U�)���V�HU�hpV@C� �@�511<���k��؆zB�=A���`` (����4P�����:0�� �P��@�$.�P! ��0��p���ID��$���@(�ԑ�B"PT`.� p��]�<�0���`]� ��!FC���I@� p@�!�K|��F@% ��:�X%�P,�C�g�@�3x��̀��p����p��k肯6�A��?l@������hSl$�� �O�E"Ԁ� ��H��|�e�ĆN@h��� �>�3�#���2�8��6��2���0 f��P�\:pP �]�V��0{Ah��V� ���;�a�B�[tAh����>!/����B� 8��b�j��`+��N�� �p20��8�% @\ �Rl�u�V��M����#1j_�:X��Z��)��B�j�S��OA@N��8�b�~ �B:�G�H)g�Q;juI�`#�vԲ���^�=�⤌��N����@@N@�h]bԾ�Q�%X��e%�#�MrF�e����;jG-B� X!#� ��9� Za+p��@Vba,��P�Y�d�'tP3�p$��� 0͂� �V���`<��s�Bs��`@0a��6�0n�"0����6ڀ!�TG#���.ƭX|7��p�`@0|`P��.B���#ퟙ�4�6�?�Gh��s>R>�)|���4J���V������� =�#i���A>�H�g/���b.��G�{a�����z�G� �|�������XAEĔk����Fx7A@#���X�F�H���� > � ��F�>����$� �4��95����Scb��9������6lL x 2' ��l�`6&���6j�fF氍0HdNF�12��Ȝ��d�y �d��S���9=A��F0��LX[��*R��@���� ���f��p@����+�`L� ��F��z�f+�O_�J�V`4/a+�`PE@F0��Hl�`��FH�%`+F�����`+d sP�B+�[�x�ͭPE@�V8�*�(��P^@`4*�l��PE@�V� �F%`�H��8���B��I2�m�܈p�����7"����.V���*�J@> _�™��@�i�K��L(�����;H`,�|>��/a�P*`@��s��.�1�'sa�2�t�S�g�`����O�:�A�� �B��ePR�:�| ch�`@I�'T��p(@�oP�r�?�e��_�EF�.aU�E�&a����ZR�(KD���V@�\�$�~���E��$胓"�C�w�i����^��p w�%�����c���1���<�GrQ�Cy8�a��������) ,�(�����cp pA%8�r��c0 �.��Qn���p &���T��(7� ��'����(8F��wI���p/��.���R�Q�#P �#����<�JZA�x%�܊�2k���V0��eiB��V���AK�) ߅x� J@�!��(�� `� 3��a d���� ((�����\Xprف���� �b%E �3����Q� ��T�Mc`rm�ha��X�\�6w��\G$��U��� �� �\�d���x [ 4 N��j��Sl�2�@�p&:a+D �0V��X�40`�)��-��`]�8��'��P ��!�?�cp �P�&p(��!t�'`J�)�O�P�.pþu �a� @�)��a��.�%J�x&@P������`]� ���@ ]���0�@ ]@P�P�� O���p(F�R� � ��<��:� xS@L���8H�[��-�@|7[�lQ%`�![T�l�8�G�>��O �8�Q5ʙԨ%kP[`��0qT@ �8*�ݨ�V����I��Q���I�8ܦ���IK h�8H�C'���(&�E�� ?/�LKP,��H�"q���!��$��P�����P������O ���h@M������0�� 8�`�0�H!lF� ����g ��cP��V�[l��S��v�,�l� ����<@��D��@@ �@��z�� ]k�)� ��y�%�'�����y� �a+�p��8[�PdY�@�y� 0�� ���a+x Cy8`0l��`@�;[� ��nͺ]�V�����p��Ѭ[8�h`�3@�f�8� 2�p`�F<�2�p� 8� `<�@&0�d�6� ��@Xf�8Cp�pK�5d3�@0 g �5`3���h� �4��m�́8`�@�w���̀�T�P�>���h �=���}��@`������� ��6a Di� r��n"� CpA ��� ��A�!(f� ����P`�(�E#(���P�@8���.P ���(�<^P�`0~ L�!8��xO� F)T!L`��@f�8(�5�� � s��<��CyX>�O� ���D�Ϣ#H�@�ş� ��Y|i���"Q A�OZ�P�txn���mvC (�Ax� P92]��a7�P6�D e�S�1�ʆ>�e�S��P6�~��e�\p �X0�8Fl �p�#v��zV� 8���c �ࢠ�p�F�# �A�V��-�+�ъAp�_��At� ��O ���P��O�0>���C�� �� ��(_u�}�?�y�������O�b˛ ��p �m ���qH�Ql�A p_�uЮ�u ���k@m�W�^,�9�� �.O8s��8# 0���cs�+�� ��� ր*i$98�C���kwj���D&0�t3�$��:x� ��� n/ }��<����f�8�d`΁8h`�5� P��PT���,«0�P�X���(+f`v,� �X0�D�HZ"� �0�jB��P2��@' �Z � F��`�@�a�����@��\��`.x�,��:�� ��hO����PV���)n� &���C�D2(7K�"�V�gp�E(+f`v,��3;v��Xd� ��gp�E(+��,��c �b��a�8�% ܀�� ���(�L �'��2 Jq�m  �=���V�I)��jf��f�L��6��괙2�_g\C��� 8`�@0��5�6��3w&�ɤ�:����"l@t�0�Ag� a �P7�f�>:�!�8�N@C�q����� FC+(]���5�Uo. 0���c��@5f�8b�@BT�ɀ!�Z<`�Wu�zs/P]���0@��� 8Ph�[� �`�� � s�Y0��`l��9a 0�6p܀�`>9������� p �8p�@0t��0�,��x�f!hBh `��`Z]8%�.̞� ���p��y�%�yA�0��<�r �K`1��� �^�%P�P��(S0 H�� L,V�/L)���_��%p��) �� Q�X3���Y���t5 �9���q� Ё:`�p`k�\`�;ĸ�<�����e $�2��X�@���$�RA8n &$�d��m�́8`�@��� 8� d�L� 5�$� ؀"� e�d�5@2�� p �8���f��;̀pf��99 F���`�Cp"`�`���F �� �yEh>ͧ���BBpm���~�|�����k`����a �iaB�$&` L�%P*�M�k@}��JB�� p �8���f��;̀p���$v�h �=�h �=�B�1k�$�X �Th� ���0H!L`��E#iB�@`�0���d` ��1rf�șd" P�$�PX�<�@`�0����1;^�p�$�Y%@&����t���^]K�4���=L�p�� G`�]�3}��I�̄}� pN�� �����C+(>�M�d�/�E2`��p�%`�!8�` ,� �h��!<�O ��p���\�aP��00l�,EP �p���p`�M�N��q�@������&9p �8���f��;p A8n@�j�S� PA+(q�9�EJdH�����H�@S���0� ` L`��!�S,� ̀p[� 8-�vpA�/x` Ў ��p� ����LP���܌`��6��@�hd@X��p���g lZ�qE�i� <��.T/m�́�c���� 8`@��ap��S�=àbP ��!8�@�mq���< ��ض|;`)b��0�RX c,E �<��RL�)`�� �f؁�c,Ŧ�[a ,; nNZ�`]�$��h����I8 .��` B#� �}l�;��#,��pR��Y"A#���3�H�$�� �A�������@ ��'g�[A����?��V| �p+��p��_����r�X9����tRNrp����6p���1p�@`�0 H��r�@S���0X���`�@4���p�%`�!X�`�Qͫ{B �4�u��'����~�|.�0(�@6��"(�� 8PxX�<��6p��r��0��u�3�@��,[#�T�V�9��T�8P�C"(�™��L������@k��)� ���f0�( Zbx�qa�� �b$�/����Hp���T�wxD ’KT����������a ���@��!���Vp�A|�q�I!�pP��� @��pPC��?#`'@�-� ���[` �Xkl=�E����"�k�J_�4�F�O����+郬�lh۫9����p�H�K�}%}��R�� -b{5���"��#�}�����W ?��El���Z���#q������AV�J�G6�ѓzR�pY(!�d�M�y�`0� @a� ��0�Q2�� �\2D���A2I����\b� �<���$�Up!7�#`'t G�}A�8$`$p�_@�>i7?'�p�_�8�/ 7I��,}Rh���b6|r�d� �I2�`���@n���<^¯����a)@Q8�#@����4K��$��d��Ϸ ���|��q�Ytπ��Q�f6��aO��� ΀��$@�F�@%Di`$���z�o\��Y�����aX�䨖E�����z���� ,���6��Q�0O�(!^�d����Bn h��O%�Д�Rz�) ��?��yNi4�5`O�9(k`�ؓ5�E��Ȣ�o���0Z�\xJk�<�5�0Z�\h r�)���h��h r�( �5��Qk�a��@�F �Di`4 �40�@ @4Di`��40F*!J�( ` �'� >�O���@gx�4�LA� �a�8?` �gL@�Q`7?@��E9����ۑ`��/����hx0C9������� @V0 ��8?��B������?��8pY!#����@V#����AV >�,��P@�J��U������� ! ,�(PmXQ S8�����O�>�hp`����,hM�R��p)��~�� @*@� ��M�",�e�@ah��0�\� �aІ<@�m@a��Ɂ0�E�H*I%M�" H��'��R ��~��&x �1  ��f�H�jA-����(��� �̀�"� �� N��"P���t���b>���O� Ơ m�T�%#�ڠ�l���3q�\�&� I���@C�6�t1p %7��p� n�J���䆅0�] {�,� o���ztA/���@��]�.�� Jn��6T��0Zx�כ #�.P%pXC�I�$�l˹4J@),���a2LI�0[@Р� SXΥ�f)�� �aJ�P &�d� S&�4(#Ô�si�� &�d���A�) � �S �)���8 mbB����6x�c`l��~�'�a���}��J�,���a��m��&n��̅�@ ���{����о��ǘ sQ����1�0�@�c.|��0��8��€�^��`/�\���^����� ۀlXy`0���-�@�L��9l�@ ` n��7�� `����@[ آH !P$�@@R \k�6�5x��sx�~q��m� t@,�C��h��p�:pl@P@p�N� �@�m���נ%F�8|6�5( �pE�F�N���p)�p��c� �DP �@0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*����0�@~� 00d`a Ȁ D@� h r�D�6Cg �� D_�v�8�����N�`��`J�*x�a5��>p��! K� D_8�g� `܇}p�/�p�,�� t B �p��>�S@Ch�! `�%� �j�}�!\����,��� �B�`,�����)҄`� ��’@ H �!� 6#X� 0,��H B2�BQ(^@�(��spF@��8��(/�PJ�98d(G�t� �s��T��37>�8� cH��0�0�$�(@�p�Ԋ�P�� �3�V,��l�9��b!�$��hh?�B;l��"G�L�p�� 8Sj�)�" d�36�j��I�Vhe� �a��(�#�� ���4ϰ@Cq��lH�:��9�S\@2�3ǰV,��� �aǀ�t�$���` �8�c�q:N�����H�@V�#�d��Rp��d�@V�JQ@ ܃��@��=� ! ��P�B@�`!$��@(p�'+,�$�p�J��t���r��pYa!$���VK�O ���k�R�`�R72��cK�' �� �RE�f�����T�*�� K�� ӳT!��X���O,U��'�*Ep#~b�:?�T}��X�&Ph�[(pa.�4�g ��'>@T�#`'� �"��` � ��.8?�'U��0@p�017v��� ����@V� `E��B�Ώ>�% � d�$ph ���6 �H��6�h�~N�#`+5AQk�@ h�fg4���6Jh#`+5�,�$EsCR�&�*��^�+%�0�*M� � �{�&�IWb���H 0��E<�m��KAFFH!���͆AF��� �$����� �b d�:fF;h3c$��ڍm�4�RЁ�0�FH!���A*o���q!.Nw�B\� �3.���8�B� �q!�$�D8�B�Q�%AM���pC�� ��8����B�T%�$p₼� ��� R#p₼� ��8��8NʡJ(�* �ǁ8��h-N��3�R�\��+�����w# � \�@`��n����7�@0d� � ���`A�� �� �>p��0Q��$�B�m����c� �/P `!���:�� ��K@�P��!��� t���i��ʊ:t�(l�}�!*(w� �8��@�o� ȁ9@�A� Z���`. � I��Dp@|�BP��M�  � `�@!H ��(��  �<4����� � �3�"��M�$�/�&�(w����fZ���#'��V� ���3w&����L+�3�(7�w��� 9�x�ؐ� K'��J4�V�\^�u-x�,�S H� � '@d��`@�) d��]SpL� $7(/ȃ����� ���|�tLA � w1���` ��9�0@���d�)��pK�5�%0āp@ ��L� t�(@���D��ul� ‘���s�Y�:�@!�Gb���X�k�$8���0�Q�Yti1-|� Ѣ8�u.�8=���-�EG �bZ��(�#1KQ�<�� -��O� �D!4�2�)Xr�6p�@?@�p`o��6pЁ�{�o3�@A�f���@��y��0�ABXS` (�L�f�H !� �:p�ap�@?@�àa` �@?X���p/( XMũ�� p.� �� 7�T( � 0�3��(ͧ�\�5p\?�h� ��s���i`\3� 0�`�` a p_� |�50��Q"W3�z%rU��(�0��@S,�)�l��Ҡ(�L0�L�!�`Z����2� (h� (�S�P�)@l� 7���q@��6p�@0t�؁;����f@�*��@�����̀�T�P�>��P`��C���`E�X*h�1۞����;zm�I�T� ��b��䭔��(i(#8`"��gIJ@>X)k�����R�AESKl���V�R��b�G�N���KJ��X)��#(�S:B1���#��v$%�<����l���JYܦp D�(J@O���# ` ށ+�XC��g>� �9��$����� o&�P�7[L����\�\@���P��$��x�HP�� �;@A�L� 0F#�؆>h&74� ���cϡ<;��� 0��0���� ��ӳ<]2=��` �8 &A� ( �`z6F)$�3�@�9 ���Y0%���y0=�CA�L��y �2� 2�8� @�81�q5.d>�� %@�…| ca\h�3j��|���h\p�a�ϖ0 �eK��Ks4 �����h �=���}��6��� 0�� (0`�"���T� �`���Tp �h� �4��@�p� �9��v���6p��{� �*����m��3���T���?�����El�"X�@0V� ZA@�@�5��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� �0��l�5�PA*8m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP����k�T|��AhG8n��8�7�F8�� ����7�A�,f�\����g-ck�;���a �%0��B�o&���d0-L@C@���C̀p�`! `P!�N����~��@&0��4` �)Xh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*he �,@<�� �@ ������q@��6p�@0t��6�f`�K@tπ :�ipZ��0�� L����A2XS�!�%� ��XS�3��%��BXp ��$� �@Hx` �9��Hm�������r��0��u�3�@2� 3�&��0��4hv`��`pցX'$�d`��h� Ą$� �A!X9A'���v�� �'�����P?a �E`ց! � (�L`�(f� ��4��Hm���7���r��0��u��<�@0z`P>@���~� �<`��� |� �?��p �A��� @��3pЀ!8���4�؀"@� �E��"`��<H @�� ����A3n`4�7l��C����9 ��0� � +7�Ms���VX��8 �� �V� 7�MܰY�B� h�F� p�V� 7l�rw��+-70�V���V@(�!��Ͳ�@ �,�e�jq��iy����� ��lX�#����X6H �}0,HN���  �`�����l��I�؀�@#j�Y� ��#�����L�$��h����x����X��d4'��?�6�Nщ��舀�St�N ����|@Rt> >A E���@��,:��XH���E�Η�7���0�*� x_�XW��,:E��XtH���������E�EG>)@��,:�� ���c�@`EG�]Uc @��yFĆ�r�KW@^ԥ�jl��� �A�<�p(lp��9�U�`�X�c U�D�m�y-���T�� �7��-T�m`s��%�}lC2�ڧ� �d�}�L ��&��y0HT�mP5�I���$�V�2��V =� ���(��v"-��\7(�&0'�nP$��d`nv"-������ER�I#��\7(���I���6��H�t��!��6� PCt�V�P���}F�� �e� �5� �����'0�`.���Q9�'�s�$���p+p��m��60L���ˠr����4��+�V��p� JBy( FŐ4 C p�`6 �Pϐ� J@���3` �9LBy( �FE0��q�'@&�` ����I(%�#����I(%A�����I(%at��3��x g0�NP �v�T:��� �� �9�&��hnvi�P<;�J�`� {�h`*��K%`0�h`( 8��T�;����� �F���@��^ ta/�h0�4�%`0��`N�>� ���)��H ��.؁� ����K%@� �3�`;ta08`zBp�O��$.�0 O�U�8bڏY�#�@L��PB�%`0�P�� J�(��B ᭴��[J��@A)���͢%�'| &�x��"X�L� 8�5x2�a�� 6����Zȉ�� ���*�@N� 6����(Zȉd '����m�nT`S7j�)�K�VSJl�m3be� B�����[����O`+�����S@р~�(h�(�S�5�@������� @��8��*�����6p��{� �*����m��3���T���?�����El�"X�@0V� ZA@�@��m��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� `ܒ ph��#$���a D��l���0�*?`�:�$�� �,N��`�� �Fp�,N������f¾��A��M�����92$耒ph� !�$`.����z3$耒ph� �&�M L���*P�� @T`H &�8��zu���K#$��? �P�� ��� �p`���lqjOm�8�7�f��"F��_< gA��� �P��d@���d �����!΂� @�YTV�Y�Np�Ӱ��� X�N8 +��r+N�:�!<�.( �A@@��0�S��)8�˜Spj_K@�9 ��Ӏ���͸0+T  �B�<���4��<��3py�OR� �,@@l�� �6x�dJ�8�>���̅O!��\�'��0@�8h� ZD.q�,6O� !H4���L� � "H4�����bRn�0�:#�шTA�6O� %H4�2Pj�f�83�B&5\�k��a����k��d�g��X?ɀL�Ls�P`c�4���2��> l$���>�2hbC'� ���X�B�� ���@ @ .�n@ �A^��sI� �,.��a%���yqtC{ E7�����m� �a����v�>� E7,���tC{XE$��@�m0 $����@L�F�������h�I� �B7��Q0 .�@���F�� �U��@f�@`�0 0�Q0 |'��@�$?������N� <�'8��xO� �p���p@ȑ�P)��h��f.���S`O�;a'T ?�:P�h`~�Ѡ���6P�M@F�X��gh���$6�Ϩ �sB���>'�-���gT��9 6!��cIl��Q��$`�6��Q��$���c���q�����"P �j�V���d6�ź84�@/�ڀ�� �> �P��q3��c0 ��$��bNY ?(G� | �rD�@�� | ��?<@���pjP���'��rD����,� `>�B#\� �V�c0 ��$� �p3XJW�*,�ð��RX K�,��$�� *G�7�f"��!1*���4 C�0 K�� ��5�� ��D�涁��a8�{�o��6pЁ�{�oLE`�p��P�ksǡ#�<6��~GByl�ͅ�ƑP�ks!�#�<6��CCpl��Ҡ3��f�8��p�@8y� �=@��h |� �>�~B� ��p8 l�x���R���"% � F36���)�A���1�]�0�"��O!WŻ�b�|�w��>��(~&�0�gb�`Q�v����S<��<8���y���U����A�� ����Ƹ����?U�1n��A�+����� ����?U�1З8�L( ���&p``�/���� P��K�~�X� @��v�.a�� ( `�̞ސ~��QӤ$�0�K0�f��1�?p�59S`��~�����b���)�)p��D��a]��``��$P��ag � pK@�Rp+��� ��@�YK@�d� P3��Vԍ[v4��20^� �n����v� 1v��;Ɓ`� P3����"�� p+�ſ(>����5 ��;� m���+ce��m�3� �H~� `�� Ҍ��2f�83�ށ/�5@���-�e��2���E�" �9 � 8��'$ &P+���@!p N��(M�(*0@��8a���3 ��P� @(E�QR4�&��Et}@�K�  ���AQ�e9���3��Pd{!��rN$�� +�3L��V�8�(R ��"��4X!8a��S�B44� ��\� 8���� ���H��g��'h�c ��p�������p�@&�i��y0 @���J�9�Kc�$l�Pf� x*�8l��@(��V� �@�l�$4L�iQ@�P�B`�4�ɥ���^@q8���d��i<� (Y#|�����`� ���P�Q�@]L���d ��LNV��� m! �5� b��/F�L��'I ���(�%�xA�0h+���[14B�(D@� !n���0}p+$��Vԅ�p+��(�%����FX��� p+$��_� Qj��� �_����P�ſ�%�� ����� �V� PF����.��[A5F��( ��_@ P ���at`�Aq+�BI�Tc܊�P�� �A4@Q��PT��X�P#P��h��ibȰdX�2,«�4�d���,�Ex�7X �`ҏE�>�"4�(8 ��ȡ�؀c�r��b �%@4�E�T�P �(���g lZ�qE�i� <��.T/m�́�c���� 8`@��^�6�h78�FԈ,�mė3�܋����:8�� �_ ��08n�ܞaP�1(����qt �!f@h�O@A(�� �d��M8��� �p� 0�l3��R�&�e� 6(`SH�@ L�`Z(%b�6��� �d�A08n�0 �d0 �8�� �dPH(L�I���b��P-&�0yz��y �@昙E s�ma5��ܘA�d���(�D昙c �>2�'�pb�$� �>T ��F`<����JqhšY2�B'����aZ2`P ��iF� ;���@v�8`g&����P��*����Nh>ͧ���BBpm���~�|�����d�g�B��`Z����2� XS` ��� ����, �6p�@I � �9���q� Ё:`�p��Ą @I*IzO �4�A&���� �.�8HKZ�d��Np3�@��s��AZa8؊Ѱ~�χ��iW,����{��V,!^���*��L�t� (��x���K.�.�%K�p�`��X6�� @��Ppܝ��,�e�lp��i��V��eS6,�lH�Q,$�aVJ+��B�� ����c�i1-&&���b�}*@Ψ�%����T�qn� ��'R�B��}K@��2����`L�4&O���n� m���Ԙ�@�p� �9��v��̀x �'����SC� ���P�O��k������ͧ����7��@f� �̀pIb�4��s B2�3�!L`0-L@C@��,�)����k��"�4 F�-*�\�&`.O�l�� 8`@��0�C�&@l@ E��8y ��<��f�k`�΅|�6�)h� �@� �.=�'(�4���n:�0���B��@�s�͉9!+ǜ|�M�i��h�OH��&��x��(��1 f����<J�� /b�H;���:�; (�@^� ��C �)@�BH�i I]P7 S2�3r� 7���c�q@��6p�@0t��@`�H~F5,oj��@5f�,� �`� � \@J���� ����L(`(F�fJ 8��QP�PoK@ �a����NJ ���9��� V�X�b%�PY��vX 0�R���K�� (��C;��b�JG�00涸`}3 ��-N8�Y�T�OP6-��q5���V��DHԒZ��@�K�Z��0�(K�`Ȓ�j��4KCbH�C-�S� e`i:� ��5@"I �L�h0 03��p�&�p���5`�a �� � �C̀� �)p؀"@�.xG ���w` 0�%g�k����5���)�k��Q�@���M]�$L�(pg$�:(��(7�C�&A wF����pg$�:�L��V���IЂ;��6�f��������iJ����rB�D ��A��X+bE 8��P� P��k�<��5�y�q@��6p�@0t��@`�(>G��5 ��;p5ݧ 7pe4�� �`!(l@�@@L��ICx� 8`@�d� ��<�(=����P�EE) �� 0.J@��(A�����Bh�EE������Y2�� ;aYޟ�s�ʟ8���P&2�h8�������T2J��aPX��vE� ;�g�z;����+�@��`` hz;�:X����� @p�)��E���nI+84����� �X �7l���^��L �l4����FC/L�2m4���e�h�#,�*:EȌ�A3� �`Fy���U��u�)Fy���U��u��E���U����G+p��Vt�V���i`� d�)��p�2���� a>ؠ ,���OB�� !�A�|�6x�@Z������ Ip��l�O<@C l�D��J�"8���(OsL/�s����30,�� @�i<�6p��� p �8���f��;̀p�� 8���!$,K�T<̀pf�\�̀�4A �CP�� 8��'�o� �0��d� �`&��Q0J���R�V��p+F�L�0�܊�>d�R�V| ` ���)n&\��f@1��nF�;s�L2�4�&(�C���`t| �0:��ހ�0C��0����-�p7��pgZ���p��2���Y�Vd�A�e��pO�����U�K8s��8� 0��$����` �x*�g`@ ��10�H�2pv�Xh����6p�@9;[��ށ*����� �)̀p����k1@F�(��``�l��(� gg��Q��� � � <��CyXm��8�h`�3@�0�䄜0- 0����3.2@S8����@S<�%�؀"� 9�g����0�Op@`����ό3���`�`��!�BO0 �'p` �@��D�}FG�s+�Q�d��.��-* 00�� �������V��@`�d |��:� 3��0Pr.��` �X0Pr�@�Q�% �� V `BA� �G�a���5P]>�`�gt$:1RFG�#K` !h0DZ�c�` ���:��@(9�`�T,`�d �ؐPr�@�Y `�� @��#`����N�� �G8����pK@0�X0�� p.8���s>J'`���|�B��W@^x���x\��;.`P�0�\��%`��Au0X/.��`�K� &�$ ��@�x �'`��A��/�����0X��hm�x�AF d+�m|��0 �#1 u�!�A��`�h�����B_ ���@@G�� � *ͨ p�������\���0.��p����C9� p@+<!$>�p�BT q!0(f��<��؀�؀6p���1p����� f���3p| �U�#m$���FZ¦i �0����ZBKh ��%l���5Ӧi ��%�y�'3� �-�%�����6MK�4�"c`����KI�.���� �*T��m%���V��K��m�8�B�*h:d�hF�a,B����9�����s '�q���6�8��䃦CN��&@8� �5���8�sM� �2Bh�1���5��7p��>��&��\"NJ@y�&�;��n��C7yܡ$��j� w(ܡ��wP�A7����p�n�JB��?���p~��I�)��SP ~�)2|@�T�A�‚X\p. � T�:h@P>Yn��,�����BN�h� x4 �B��0�!��/��N8 ���[Q9nE����VD�[�/nEd��"܊��P��8�x4 bA���`����)��Q�N� �x�fA<�)=!��d �����]�*���#��l�&pJ�E�T 4� @bA������(� � ��P�%����3��I�&B\�ދ� ��G���x� ���� ��#����hB^ū�T�R��XB)�ȫ�#��l8(q&p�<� pn^)��EgD8P� p&E��m�́8`�@��� 8`�0j� 8�v�D�`�3)�8`D�O����Ew�h>A�]�%� ��u����VP�P�` ��S��@8n� �6��m�́8`�@�w���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� ʀ��k��:�6p�@s1����<���r��0��u�3���]�kwq_� |AO(%>�@^��0�!>�d�؀"�#�����~�"� x�܍u ��N���&��h ZA0g ��5��@h� �4��@�p� �9��v����@~�Y� ?� ��u�M�x�3��n���4I�ȆX~��� ?��� ��#^������e!~� N���F!� 6��&i�����@��@Hl@ � �Ȇh��@�H ��(y��*�� �����w��d'��Љ��)d ��S�N�o� !���wp|Clx% �y3oF�K� �&/`�@otJ 0y!�L�S��K�;m%/��o�8�v����-zB�$@�S�L�;�>��9�0\�Y,��l��b��p1%�7Ѐ?�b��3�%��<�?A\̟�.�Q�\��4�<�GqhMc���0\�Y� 4�O����0�j�( �ŘE@�Vm�%a���0��i, �ŘŒ ����@H�m�j�( %��lU@QJ$��Q�-�� [ah��0� �a��`p��� +d�h @�I�@�p`�`&� QZ]�v�����<�]q4D�L��B>�X!!/���}��f��G�|сO���� P�X ܐ���(p���Z]�pp�)`��'�"�Oڀ`���\p@�:�����. �<FA6�ؠ \@ �v�؁�ONAO�{���; ��F�РH���n� v@#��%�J���)���`4>Q�.t�)�08 �d;Pz��_�P� :6p ��xF��D� � �A4�-�<�i0 Z3xG�$$,���P0�B� eP ��2B�> % Z���-�B!#�t� �(:�M~$^�&?�.NϬ A����3+�F7(�@, ;��8=�"v�p:BG�6 ��E�|n���Aa���"�m�g�a8��jԃ� ���*���[�����"��84�!( ��>�����"����!(��P�BI���e� ǘ"��( �!( �T�AI�� ����&E>�  ��?@P p4��Q-�@������� ad��An��K� |!��g�B�al�{�  c#�� � ���� #7� �7 ��@��3`!a�6��`$ s�6P�p�� ��9��K l�@�]�l� p��Z1 @��$�D�T2h� �L�� � ��Ԇ� �>o�6x�|�iR&�@ �€|�S��Q"�7ej�� �J�@ ��_�a7ޅ �* %�O�.H@v�$)!Z������� �n���4$!�� -�a�ݰ�׀�O<��y�!L�pP^��H�,�r1���!v��;�G�ȴ$����{f@# ��(�S<��H$�49��@ x� b���5� $$~/d��ʈ)+ه�hM�8��I~��d��I4I���'�g�A< O�JЗ2`�(�X�gH�)� �`~�3 �äx &����,X4�����0D�x) �t#� HO� ��x�M��@(f� ��;���@l��7p���q� � �@�t���2� ��� �Ap� e� ��XP �8h �5�#h��@2 sy!/�����M �/� l��^�x�&h4������đ��`�2���j( �� %�?@B#(�����D��� ��� ~�!Pd��$����J\���6d.� @ I&� ��8�؀�p� �:P�@h �P�;�a\ L� � ���P��@}� `05 ���d� ��@��@h �Q0�K�� �bF���( �-�R�'0����-�B� ���'l�����F�����Q DA6 F��;�@�TP�26`ڀ@�������䗆�Є2`y��������z��x j�x���r<��y9���y���r���3�܁2��Aw V�g`��3(��܁� ~�/�Ң0���IJ@OЯ` ��_-� "$ 8��c6ͤx����m�@�p�bӔ ��O��.�S� c@�@Ũ@ X�S`�l� @ ,%�f�� `6,%�fd`PA������ �B�%�f�� J` (0<�P�(�٠���d���m��Hx �� �6�T����kzMe dO�i`��4�i ���@ OXM��d�n� V�&�f)��)�j�3@��؋na� ��S��@he�4�B��N� ;a' �P,O��?;�Y�?p �����'� @b�tS/�(�Ky� @�M�� ��8�؀�p� �:P�@h � 4��P �( @ ��c��/�!�6���0 5�n���0�,�t��M&�Ver�t��4" &��Y�\c�X �F���beM>��aʚ\c��b�5��:F��r��Q,��ʚ|�r��Q,@0��\#k (f� ��;���@l��7p���q� � �@�t���2� ��� �Ap� e� ��VY �8h �5�#h��@� ��,hrGr0]�����5܃��$n�IQ$� ����L��,�5x��BVC��c�І7]͖�e��m�����(�5�f8��a>�U � �`k`� ��[߀�a@X�2���( ���|��01D� H�_��A���H��&)J@ (�B`�@" V�RBt��M����U2���*�M�d6���dcV�lZ%��6���*V�lr%�d6�HV [I@hY%�dNw�j�.�s��w�c�;�1�7$�n� x�$�`,@ �!6@7$�>@�nH��7$�n� هh_qJ�8iĂ��À 4C<�$�O��r*�m*��6� P C�6N�ȅis�@Fը7�A�(��'(��x��� F h `�x�O ���j[<� ����P�>�P��(���x>�a`N�i�}(gpڇ3L����F���t�20 F6��` �l� ��p����K ��*�m��3T 0���Qp��(�`��8� �0�$�̀p�� 8̀p�*`��Pt@��� +h���H0Y!\��l�#x+ A� �Y eA���P��`f� � �ĜE0 �,�Y��Y%�'| &@J�M�!0Ў�T�dщrL'�p�@0t��R��|��`�b ��� ���%PT�P��ɨ����P�E�V� �X �E�V�^��������"`$�LHI(�� HL` Բ�ja%C`|��tpNj�-���#c$b\��漢wP���3 6�U�\�KP5�k �U�^B �>��$��p��I�G�����T�K� ��%���T�KP5�Aռ�%�j���74� �h8����P��X(1@���>�`'4���@ ��T. ��o��b0x�'PCI�-�` ��X � Hb27ݥx�D�0 ��&�s��in2617���t�߄M�͹��%1��F:Z�ad�t~��{�� !`��� �*G�� @� 0 ��7P��o0 �E�PD \�maA� � `lh��$[� \@ ��PD`P��̪j AfU5���"B$[��;p��!x��=�Q`@fU5�@����*�;P5�B�܊p�j`@fU5�@� U��a��� B�p ހ "`A���` @8������p$�\�S��> �9�����F �BȡZ}@)\r��! 8h�(� �%��8m�M�*��6��#t�� �@�����@�pQA ��@�T�X@!>�> 0���<0j0��>,�L`�H��܇L`�0 �>0������ �) @@�@�����*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� ����k��̅9���"�K` ,�òp�$f��(j�-N�$�g�$�ؑ ��a=aj^�Q���0�@�F�( ��x�O��(P� (�2`�Hx` �6���ph`��4��m�́8`�@�w���̀�T�P�>���h �=���}��@`�z@�40Ѐ �� �4` @i $6��"6@,@�A#p�D���d��2��,�3Hk17���J��i% #�����'ϙ�2bF �X(dİ�|�XI�l��4���6�=t"����bhf�,惝�V_ �d���cf2�ɐ9xB�]��� �9f ���d��� ��� �p��0�Q�-@�  �_�m.�`&� �/F��� �x�� J�'%}-�E��`@�$}�����.n����4\��p�"A�a8 8�0�O` @DD� �?Z(��ܟ<�1���>�����ff���&@:���o{0���!7�ǐ�GI0 ��/���^��x &@:����Mo�/�7����� p ���.A��G�(BA(���i��h l� �=�^eS( �պ�J3@��"U� ��J�"8�@����yh-�<H@}\ @�>�ǵ��L��q-����?@}\ @�>(��Q�jQ-�� �Z̀�� ��r�P0� ���PЀ)P�`�4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2׀���C������ ���@f� �̀p����\�; 屹6�8�csm.��6����\�  屹6��C`�@4�� L�C��p@ d�)p2 0�d�)p2�A�x� �<`���y`4>@�h �!���a86o��2�L�"8j` �T� NA8n 4p ��*�m��8� �h �=���}��?�@0z`P>@���l@�`P`�(�E#`������P���̀pf ̇���}�� ����}p�!��̀��@��@&0�(D��C� �!L`� B�����_I�q�%,��Wf�8k8N���%�������;a8�;��O�l��DN�$'o0<�:�xg�q��e�8v�N�؂ŽӧX�a؆ቜ�cIN�`x��u�T�4N�5�L��>�:� ^@9��~�ցT���=��� �'�X��6 ��\�r��.@9���������l��w��8�c���8 �@8s �:P� 0� X0�A�DS8���0x �l�M�0�Aٜ&@�4��9-��4h���� ʀ8h ��5��@h� �4��@�p� �9��v���6p��{� �*����m��3���T���?̀p�@7�����3�Ԁ!8���4�؀"@� �E��"`��<H �EYh���p-\����Z�T�a�I�����USF�p)�b�?PkˈK�# ���p@����Ђ_q@k�1����G+b+�N8�Ҋ��J�� �gd�xR��/a�$ v��K8=%@�<��2�`o2:�)/`BL8z�qNyr{�0�F0+�d�D�ћ�s���1�0�T�h\'��}0� v��s �!��w�q�p� ��R8����ؑ}A����Cx � 8\��.�``N -�-x�����ݰ��n��m�C!��B0@�خ��P[|��l�O�`L� �@V�ɦ $P�a�)�\8�B:I(��$�|�1H� �`�U�v�P��3�� B X�'\8�}<&�>8���Iy��� �� D��0����SH�N��M�i���5P&!�����M\�T��E� �� �0�E @2���_�4F�z�u�N�$����1�P�x�`��P�� �b t�����] X,m����/��t�'�� ���� g�����! @2Ƀ`� ���P���F:��d8\Z(���%���6�����4(>�gh)� �Iv$�5P�K�d�0�‚9.` ��;@@�d������#�A�a�@���A(�t����4�)8� T�N6\�f�>8�� �i†K;�!4�5�6�A��` �ta�Y@k��6���UX x2@*��A�� Z���`. h�@�x��vV�  � @0&�3/FI,��|���Y>�� ���<��c �E������w��ޕ} J��0��4�̀)8�` 6`�(n��5PR�@u���p��R@H�=��X��<����{��5�� �@ /@A"��@�S� ƀ ���3` NA)X� ��@`J�@n` �T�PA�k��2���R`��>��@�d�)����}@ /@A!P�� �D��"P����1@ʀ8� �5p�@`m� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|��2����� ��@`� d� ���D �0g� 5� "�4(�E��#xc� �DP Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V� e� ��4`��X� �3p���n` �8�Ȁ�t�؁5P��y@ �)��@�k��2���R`��>��`6`��`��2`A!��� ��C��!@^� �D��"X��8�G0lA���5P�@.�n� �7� @xd@�:��`d�<6� vA( �^�zA/��6� lA0��`BP�@(��p�N��`~� 0�_����O ��H� ��3���6� �L�#6�ͬ��A�Au� lf� �ԉ#6��0�v�@ H���f�vBY��4l�@ 8�`3Ǡ�6��u�4���D���;�,(|� )� �p�P(HG��#X��`��Q"gc ��4��v����T��a��@`�N���7��(q� �90�  �d'�D�p��?@0&�3��[@z��� ȩD� zA\Pau#����̀N��E.h�^@zA!����;,�@ @D��p+���3Z��Q6�K�(��Z��R��ε(�������jWfD�+A ���F@�h���� |[0�"0�VA(B� ·�P�<�*����A��� |�E��"�ڕ0�@�����<�F b3�1��Hb@;���N����Ԧ�A3�h}أ�`�͢46KP4(���w��F�� ����>�'�@��u,���VA�\��g\�Ūj6�bU4�%\��:v]_ �! ča�Y���I$��n>���&�`�' $�0���Rqc�؆��X�@� �! ���X=`��@��z*�� 0�$�l7�&��$G`c�F� x����M��7 $��4%���#�?�����0B� �f6���Z���?"�:�-�%r¤H��#؀��|@@��' 8��Hk^pބx%��O�T"� �G�l >��(��Z`"� ��S��Pf��ؓ@@���%�/@���%0��D�ϣa -��@ (B�y4��"x���E` ^�"0�PDch #� 0���ch �a0��Pc�'-a7h��Z�q� (�%����C�$+��.��@c` #�1�K��H` -0���I�?��,��@� c��T��R@ �����'샞l� �=a�� k;��)nH�}�S�3��t'|����;����:CO�Xa�`�y��t �S ����@�<@�>Q� ���|��q��<߷q���SZ�<�5�?��@������A��Di``���|��w��d �����w�Oi ���?��h r����Z�\��w ؓ5���� J�( �5@��\�Di`������� ��$f{@����T�d������=%��{ lϣaapp8�� |4, �|�� G��pp6<�>�p��p8m�m�p~��8����p87�)� �Ѱ08�Q�G��p��8�8���a<�.l>�!]��3ZX�-Lg��g@:@�'�@ �-, ���V�F�`��$���E���>�u�L �`��8B�(@ ���g��ia��� H0t���i`� ��L��3�@����`��v��� L���H ځ �ft��ᒡS +ksP4�Dm�X�2 � �/L�@䃜 � +��@�� �)+�@��\�J����c���9�EsJ̡;��zs�� .#�H:�S`=P40�����̡�BR�s��#@ѐ�CH�՘4(b'��s�̡d&��zp5��˸W�z0 ��9�H:2s��4(Bѐ�ܰ`�N�9-�=�z@f ��9���zp5�A�d��|@f\���@R��Ns����@<�$0��@ ���>�@ ��Na6�@�@ �G�� �S̆`� "� а˂6j��?WA��sqY�p�`�uqY�a(\m<�˂6j��?W������� �Q|�=�C��h���p �����*O�� .� t��l� FA<������/R4� �� j�[z�(��xF��U� ��9�AV� [�+�`� c�,��� ��o� �O :ފL;g�%���Vd�h $��;Z����6c۔Pǐ��}��1���8{b����;� {b��al���@Hp�w�=��8#����ͼEh���(oZ�� �Ґg]oq �� �Ґg]d� (�q܀�UvCD\,�\H�����`\�� O�J�%�>O@��p ��* ��NP=e��3���0@ ��f�8�20��)�k����� d0m����4���*�m��3T+@��@@E��@���֐`p�I�&!G���@�=���֐�ZC��\�Kp .�%��5T���.8@�4 ��$�H��28�N@ �����2��� �R������ �$� P7� V�&�h ���X�a+ȡd�nﭛ]sH��[�n��C�Bu2���x䐿`��4�>�|�O�h>�'�N �B&1�ab�%�0��X�b `���V�`��}��V�+0�����S`�o� `� ,7�XeJisq ��% �.p��8� �~!d�藙0Jr���A��)�"��'��<�*f�N����]�p�`��� ����q� ���Pþͷ)@a4԰ b�� �4߆��nSz§�45 (p� |�n�\��A38M�(>��Y<���;� ��I�6p���!vȁ��A0��"�p@ ���Q�"8k���D����3m��|��@�p� �9��v���V̀�4A �ݥ��H6 p�%����e@�q{&(9� �<H� �p� 8��` M�@��h�$1 H�wt�m(`��P�t�m( ��=�����C{�� /����� � yA/���.�n� +�=� P�j�n� 5m+郼PӶ`�@gf3��"(AA(`�� � 7x6ag��2B��`_L� ��B� 0��p�p�D�� Z�@ ! 3�b�B�Lɠh�p������HPy��h��a @�� �28�@?��p�`4�1��2�BZX.������p0���U�:0p@3�@ 9�� �d Cp�"�!f�\��̀�� (��XH ��0n�,ZA`>@X���EOP�"��>�� ��X��z��)���X  �X�D ZD��� *�c��C؀"`��(���`2��~ ���W"��)��p�d;B2��=!�v(x�8 �Ѕ���M�tp��:j�n0�'� �� � +�p��B8C8[!@ ��"�� � ڇL� �}(gpڇ3h���}4���#�G���|�>[a�����D��@�#���8���N��9l�5��nX �O���w�J��{ ��� ��A�a��>s,"��3��V�NS3@2�=�$�V@ � �����M�Dզ��^����4Hp(�>`.�%�4m *��!Ğ Pό��� �\�6c�@28dR�2Af^�yA/�'�#��Op�!���F��@}�k�<��5����� ��:0p`o� @`��������PJ|B}� a 4C "|B���@�� m���q�x�@�p� �9��v��̀���3�"@�}x� 8���iX @�����8 ��9���q� Ё:`.� h� ��PpX�<��6p��r��0��u�3��p HỲ}�O=���v�h�@D��2�C��P%�$�p��_�S�� 8��'2�p�똁< @��f H�w8�q{I�� ��%�@&0�$�p�A+��,hQ�"�Pn�-.��"�P= ,��Z�P=��,����P=� ,���T��K@�8,�T�h�K@�8���T�(7K@�8�'��)X0��"w�`��6x �l���  �� �B~�O�(�d�P�:!X��� (�@�V y4P^�pg.���3��=J�)�$сD�;I ��#y�K�.�G%��40�� S�I�hC�>��9��xa ���T����`�X0�d�J`#���s�p�y+l��7��`*�����p� 8���@&0��p���]v9l&���ڀXǠ ��^�(` (���Kv��;`GH��� ۰�AO@�K`�6j�&��� �`���0Z��i�o��;PN�~�������i�Ӊ�O����bѫ8��"�İ��ֲ�O; 1����ֲ@ |kY����9�b�O��o!���B | 1�-�PT Nk��f?�u�NZ*���}���R��K�8�%�z�V�A 0� `1,F�A�b0� �G-F`A���Q�+*Bd�A��]QwC$�e\/Z\F��F�A��2��5�NPK��Z� �� P��Z� ��@�Ox` �'��@ۃq@��6p�@0t��@`�Hi  �&0 .`�`(��D@EI��"���`�KI��"0��0 @� P��.( E����Q�����lX�?p�8�� 8��'̀x]�xO� F)x ���1��L@+��� h.X� �!���X��7�7�  ���Cs�%  ��� ��2 D � �%!��Є0� ��*�d�0�l;Z�+� � D_��(f@=��� Ҁ`��5P؀f@=����pk�ā7@���~� 0 BA  ���P` $@5�x�3� �� �3� �X��<����{��>� � x H= ������cP�"�4$?��5�'k�?@  \O�5��g�d�x��� ���8w&kԟ�a G�9� r\���u�"�Qg!|�>����8�gHx�!�i<����k���:C2X`'�� �O�H~�� ��O0 � ���c#�zi�j��b��(�Z� ���b�����,��@�E1Z� �B7 ��n@�{�fD���.�hL�E7# �4v�Ec�O�Q觱�,�_j(�4�.M;�Q��ᰛ��]��a7# ͉��v�ŻQ(A 9���͈BC���?��ZJ` �(�K�@2 ?lT!��<�GJ� ��cuF�1(a$ ���V�0!+u������ Y� %]����< :+f��^�]H4C�ރ��,�K���c���a"��q�Ġp��`u�N��a'���^�1(�5�rP��+ Uh��4� ���Q:ZS 쁥08���M��c@��͆��ԂZʃ�?( �Qp 4/@��D�A�$D����<� "�#�|0 �� ���A@�2�hKFZ�A��9Sg���M�=�s;aܳ;�@�����0hh��� ( H��� 00�p��q��#!�����* &�E��l� M� D��C6�7h�g����:�H R�8�NqH �4r 蟑�H@`�s�� �΀:Rg@��3�����\h l}�M*c� �3� �z@i� ���P�(l� 3� �zpo��5P�� r`�?@�����C(���;� � x H= ��|` �;@�@�z@ �>�A!�Ǡ��2`� e� �5�� @�� E0@��.i ��*��)X� 4���*�S�.k�ā�C܀�~� 0��E� �����]�x������ |�/� 4�� �/À�B� @(���2P��Hf@ ��5P�@0g� �8��@�o� ȁ9@�X��<����{��>� � x H= ��~� 0�� `f �@ (f�?`��8jD�h"H~(�E��#xc� �DP �@0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*m6 l\`@��]� ��6��pk�ā7@���~� 0@ �6X.b#�� p�@!�j�?�"V�h+"E��^��`~� 0��`h` ؂4p <.k���\` ���n` �8�Ȁ�t����xlF��PP�@/�����r�-�@ b@ ��`pN� �` ����` �0a8��î��cPd� ��� � &#�O ��QPZ�3X�S8Z���%eͤ}0�f�G ��}z�*�9A&Hg��� �"`� B8I�>bh m�0��Y�@ 쁥08���M��c@��͆���^��"�`3 �;�z"@"��� ���"�5�g4Ap��O@�<�>�|�1�@[&m�H+�6h6!g�L� � 0j��A4�A� �8` �8@��Ӏ�`�a� D�0�� C�XQ�0��0T\�� �!p@ ��a��� �� i .�h� 8�N��N� ;�R|�ivB\���ad � C\x�c��w�;J�s �'�D���!F��pGRH��84 H�b` �Sh��l�4 �;��@A���q�&PZ�q ���8I�(N80�R�4J�&�0�PB�%�p�HM� �@.q�#h��� CC� $h� �*�  (���n��n�1 ��A�7H'�m$ą��NF@\��".��Ӣ�~p��ą�P��nځ��@�W�1��C�ن�g��(��6 �`�v���A���(J�O��6 �� p� #����B�(J>b����(�@��Q�; �Z��K2#��; �B��|��/�q�0�`�^�0w;F��E�k�ytɣ$��`.R�/���ð~��{)�F�s#�aX��ܽs�`$(�e �R���@.�_ ��@��*�(��@�� )�&`:0 �y�h��B.H!e1���S�ʉ�+�&F�h�}.��VD@Z�}.�e������?� ��.��r,�]��Bk�`;l*�i��I�@�d��3��U�@� ~�A ���H���y>�-���l� �����l�V�h��[  ���@ ��k` �F��|�/N�3� ���Es�m�����@.� ( �n���(B������8@��R�lkP����1V�n@��۴�&`6b��a��s�m�B��6�8t��a&K@���fh��}�N���#+��m��A�6�Ơ��Eg(`��t��*� �0�YxV�����lp�6#�c�= ����CV� (8&B�$'" o)##p���@u�� �e��@���ѡ�P�Cu�� �e����@t�:%��G0�N �?` :P��@ o)##p���L�C�u&�8�YZ�\� P1��!��0����5�PA*8m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����V �m�T��t��Y�;��<����*������t��dN蓭�@�T�*g+XD?����[!@�N��:[g��?�`����:]g �0[a+�ۭP;o�V�0%@�L�ҩO�B֠0[a+���P:c� � �d:蓭 �.Zo3aA�7 �g��*������jXx36�a�"��x{4 0]�X����bBi� ��4^1� A`'tCt�m��N�6;A㱚n�.&�� KL��#�?X�N;�� n�?��N8r�f�� 5!` Z����8�� ��8��V��A+��ĠCс�1��@ �@���(`mO0I�S��OazCo�&�7�ڞ��� � &�78���� \B��OpBI��4� ��@2н@$?s@�����PҪ{��(��+~����@ !�#���:�� ��3t�OAto�P���Y�`0@�����XGGa�#0���J����u����B�����f�ɝ�#'��V :� �����A��0��L�6tp&8GC3^O��g�,ܙ;3l�h�3.18zxz Qt�'��cAL��1��@� ��)��`� �3 ��)�gT( ��܅r���h Z0jJD�@X``I�0�$x(Q��QO��=%����PH� ڤ������*C=oP���z%�B����g>����L\ 5�,T�QL�d0� �����PJo`Ц �g&.�� %�`TKNjʵ4��`����j�Q � ���Gp+@G@����8�6�C,�m���:� �B| |�/} ڀH m� ��6p�at$u�!�>��a�yA�����>�m@$���`�hm�h%��������6P4Ghv�d��H�@(��������9�����@7(rF��c�p� 8�� @ ����k�j��.0�t ]�~��Hyfkܟ��2�"�G� m� ���S�!��?���H�H��"j@D��l$���>�2hbC'� ���X�Bș ���@ @� �ec�`�bApK@���6A�`��� `�5�@�� �X ��P` (�`c@��@�%`G]( � Ă%`���x��� V@��nq�q� � V�(� Ep�%�LJ���M�ؙP� P+��\��}>� Xt�ϔ$%�G���M| �)���� Jny��,�A1i��V� n�,���(&��Sԋf�>�@ܦ^��91'J��s�� ��'J@��4(�ȉ �N��+�5�pM.�p$�"�U��� &��p�pM���&D�b�?�4��c��p��� X�����2��W!&Ĥ^��M� '%�<��w�|�CM�&�;��n��C7yܡ$��j� w(ܡ��wP�?x·;Ԕy�ht ?x����M�?�&ܡ�p����O��&܁p�n�J?����p���"N-?`4��| J�>E@�x` X��@8n�� C8�h`�3@�f�8`�� j�`���k,��!������ &(ځ��Q� F����'��� /@C� ��� 0�=��`�{ $���0�� \�сaF `K��T��}��V(,��wt�� � [��l�PE��V(,�@�l��2:|G`�!T��� ��[7H:I�}�4���@���m�V� [7����("'�5��P4��| '�Kz��P4:y '����P4��y '��x��СJ@I@'����Q<ԇQF�� trJ: n�=x�5�<��' � t�>:� �`/;�a�Y$��!��@hPF�k�� Lݽ��p {�1�ǰ�^p bgYH� �k�;"!6�e�1��^p �!���BV��\!+�1�s#s�z-#�U����a4��n`�7@�@&� S�L�B�c� d�Lǀn�N�Q)ނ���� j �h�#2����<�@�hǠ�@��?x��̀��p����p��k肯6�A��?�c�$N092�� ;l@������hSl$�� �O�E"Ԁ� ��H��|�e�ĆN@h��� �>(5�'���2�8��6��2~Wռ��g.@�Q��\P9��� `�7� .Mp3 �����j^���][�$�������]%A����O2�>�D��j^BlP5/�Ք��jށ��#���.T�� Ԣ60}P�ſ� @�� P�ſ� %�����j���y KD�� ��jށ����V� �R=�a/��� Pz�Y� G����Ao�0` h.�����lh�>81�,�� <�:8 �`�|���Yg�h��},B,� ��,x�upR�Bo8 0�ì��p@�z�D J@o� �f ��6��e����H� �� O m<��2��[�<�`@H�<`�� v�̄�!���O`+����I��� 0�6���%(Q�B: � ৓2����O#c?���42����O���]� v� H���6x � u�<�ph�� f�7P�]� �����x�� �28����� �'� 3A8Q�L2�4��(�b2TD Xc,�� L��4Aȏ�h�ޘ#%���eP�@ X�,��b�70�@`,�� � X1�< ��P�20���6`@X���<�g������@O�=�'�,�3@Ocp���\R��i �0���� =q��iz� =�'���8z��)p�����z���6�'��г�@�>��g؅�a@�M=7 ��z��Lԉ�2' ���Ԁ(:��w�9��c� 4���f���<�W� �; B���1PT (�d��c"�/�(0`n�Wp��)��D�(�y��+(jn�W��P�N��8̼�qLpR�y�t�A �"@?��@�% @# �ep @28� ������8 z�h��p ��_h�>@/*ǂ��+� ��Ė�`h��_���*ǭ���r� {�*��H��_�p+*���)�r� ��/��F�&�ȑ P���38�ʹ�;�G�Np3�`8؊��i�Cnx S�V�S���_� 9�x�ؐjƝA ����qg"� �#\"7�S���y����cAL��1��@� ��)��`� �"R�(-�7(�ސ"��P�#����P�E�H�K|����R��H�k�,�!��C�)B|���]��)ٕ���"E�� )"E���s8��o8%!�d��X d�,���l� p�s��M��4܂?d��3`@] ��7p��PT��r���[�FnQT��r����F�3�p��q� �2����q�?0~�n�{�[@�v(ԭ���݊��2J@>�=�b-��`�q��e�M��æ��8�6�t@pa�� .qP���k�e�Ys+<�9O�x�b�>�5��Vx��/����F��(k,�G�5�C��/8Ŀ@a���!k�@/�Vx G�(`�9�<�� 3'��V :V��+ @���nXb$� �POBX #@,��0��K` 8���X0��,�%�0�hjK`��%PV��(�! (��ZSkrM!���&�NX��VS�P���@�V p@HC[M��xL�(�V�$�@%X`a\K}�`@�TJ��p��ø�� �[���`�(Ű�5����PӶ�>� 5m+ ��` �` �� P�����؁0@�Yd���?��A`� �?�� � � ��?�ɂY0\����?�VX" f�,��m�Ȃ �%`�P����d�؁b��(� ��Q� �A8n`8�Qp �Pp� t`��*f�8�Q0 .�(�� �l� 7X��,CpA28��<H�S�6 ��@`�f�8@`�N����Pc���$��a>��I8A���p�&�� J�g%���`�h0����"@ �%aE}��%`�p ��. �ƊZQP�3D��|�A�P�t� "�8�]���� �B�( �g䌉I �Ϧ��"lh�%�`��!��`PFN �:cbL�������|�M�&`G�P�UV�J>9��HP�R<7Q+K��t���Ē[IK�N��&Wj�� >��[@p���D���X"V�,�XR��j���r���Z��D�|���VN��L�k2��d�I�I�H2=�ЄdP)������h���7�z�D�dph�ޘ#z�RB1r��� @�Rԋ9R/�E���b�ԋdphB���b� �������^h�z�*���@ \��7�M���x�dph����{X�uK�tAL�N�"ZԤ�$/B�M�Nbt�ۤ�$F�pL�N�ڤ�$/�M�Nbt�ʤ�$FǣN:��I ���@�� 6�̤�Y�e8�B�B��B���MbV6�Y� �ĬX�6 =���'��� 0�2���F�P��pQS 5� ��,�$�Ăl�6 ��xkr���qP��� g!�����_O0��,�Jg8�EO0.��y� GoxQ��,GѢ`����X�!/�%)!��6�0jhO�%�'4�O b�τ�*T�L(w������``!\p�E�< ��B8x}�<�"�#,`��;��E�(��y ��FI,��#��G����g�տ?b�� l��.��`�3$/p ��G���������V�(�%�(��p6ށ�9/`%��w� �J8+�p���,�J�F�[��(,��(X�Ÿ�w �ށI��IF���b�;�Q*@F����;N�`�@-��R� L�p,�b�� }�)�ψ��L���ijq�l@����� ��PP� p_�:�"���'(%�<�"X ��(`�y �TI��@�@( � ���Rᖎ�p�g�v&�� t���I @�@ �68��F� ;��(O:<�B��6��H�A!=$�h�FE����>�>9#�RH�OqhEm��W���v�>�[��l�����V(ec7�O�*G�  �37�|� @��cCK��06:��al�I16:�cclؗ�96@� �bT��pH8�!"��0*�EH8������Ų��Y���:�A���9��0*¨����A�*¨�����B� ��r`,�fQF����r`L���p�B�I1�T >�%���U�Kl�j�%9�|�K >P%����J|�J��/ 9`P���U�/)`P������'� J�Bm�j(�s�I1{����� H1�*l%>�b�$�A)*� ��R�ƀA�����fR̞�| �>�B�R #� [��X+ 9`P�� 0r���1`���o6Ii-�_� ��o��H�7�f$����O� }�< �ʃ(���ka|�`y�L�<��P@y@(IQ7PI�����H�j)�[0�� ��0>B���LQ8�� ��������� .���&N �%�F����R@J����0P��)]Gs�P� (���PH)ah�Q��F!��lbN���k �|�y�����l���YFF�Y��'�%�-��€,3_:M������d�+pNa���eH2�H�a<��5Păxp� ����s��2�`��C�!�`o@�g3ʴB�$�lA�DA� �n�� B�p � ��.H!8�X�P�� �g�Vh�p�i��I'�5��"���c�F Ox0`!D��@@O� ` �ҫJ��T��BG�H�0�0 K� �%, �x��F��Y�xx�F����D�)Fl������,a�� �� �Kh m��PzJ6h��:����ct�0>������<���:��H �E�I� d�lc ��A�C�� 04����(z�޻6�dI ���S�܀l�n$���s�܀l3} � `7�4?�v�n$���8��L�9}� ��8$A^H��w�MKU6{O^L|�lE��g� �9}� ��8$AK� �9}� ��8$AK� �9}� ��8$AK�(l����6�7U��� �� �M��`�#@�x0S����)�m�L !@0�y��B�;�2�0B��baR{7�0±�baR{��F�QS #�*���8I�%���;pU�~�*�T�*�B�"]�-� ��I����t�����dT�a�>�;H!� h�*0L�@&}@ �$�A�A�@ {� h�*�g��� {t6h h1��u�)��*�e�h�q�ڨ��G@s耊� �Φclm?`�������:#�����^�:Cg$�=i��Ct,6�9t@w�(" h�9 ���cq��]4���& ��h�9 �`��Ct��mc �X*�ch�� �:`[)�����窍j�1�6w�~�clm͡6��[���`踋�0t@��ѓ6�9t@w��Es:/`q����: P`��&�T�e�L��"PU�)6�;�#@�T��B��Q([@�T���VŦ�iܬ�tP.��I�B 0�t�)�æX�m��M�)(�� ��t �C6��gj�� t�M�)���(b=���28h~�o0��@V���,�9�>���� |��B8���d��g��0�\7+����/T����g�� �YT'��$+d�z�f���9Ya���0:�IV��$+d��F� (Y�D|���r6 )J�l�!�P�H(g��[`I(���M��\s!L�E:I>s�\�^ab.���&�"�$�9;J��&�B ����01�����#go�[�b��-(���䴯0y U̩i_a��ƀp 9JG������ 8c 6�@�@��Qn@ �� Ȁ@��` 6�@�@��Q������R ā8��4X! ��$��`d�T���h��8����5�\2�ȯ1a0��h�!y�ds6��ٰ;��-a��/x Z�̆נ%F@;�P�l�!�)ȯ�@j2� 5�)Hv��d(� p�)�� �����/�{V�\�v�1�[����x���~A�M�l���ŚpY� �R 5@V��� ��9�CI�:|�?$/���b"��EN6��JA\p[@�ą����N�q!Rƅ��L�( +P@V� Y��\���� ��{�h�bN :���r¤�3�ä���g�IYjäЄ�c�%� |F�`JB� ��>%�� �SآI� |e`��@>���>��&���}J��pj�����}J�H>4��$������T�;�^Ý� $rT��a��*`0���s �MQ:�������A�#�u�p T� � ���-� ��Q����:���r�.$F�{h�m� J'��� ��Yw�u(�0h��]� �F.x���9<��4r ��@ F��0 w&� ���Os #�O0��: l4J�0�u *�;�6�:-1)�F�΃ �(�Z�p#�3�cb��)<*�9�cb� 3 D����ƣ��Q�'�'Gv���#�D8��pL��T�#� t�c���Qb��!2���Гs��+Fv�qW�Y`��0vB̐�B�̌1��@�-qA�2�`� 0� Ѐ4�jl� g��A������� �A����π��N�>��5�|��C�>�!4��da��/H��3����g:�����h }@Y�>�d��@�"ѣ|� 0o?� TЋ� �|۩F�0�<�@��V@�XE��� �F����B�dL5,� ��[���DpD�W��Q��ʒAՔݷRC�E,��Q$�޲�t���Jg�ZD�XzAjX/��P[^`ܡ��� �C5pp�mƀ{�i�'���g|�d�0��0Ȁ|����2�@y  ��kq@� `�� ܁� �.` �?P�A!����Bx�{P3�>�(� �A0Q�4�$��A���4�|AHQ@;�Q�V�{ Rc�,� ;���X��������x�h�X�H�8�({na�S�F�9�,�����x�h�X�H�8�(������u�h�[�N�A�4�'xh XH�8�(������ؗȊ�}�p�c�XxMhBX7H,8!(  �,���������L�m�]4X/�n�]@X �qQ�����qa��I��=_e[�ԃU_�>���h��{�]��26p`���M^�SuE�Q_��G}ᖑ��z~�Ne���Q_&���b�Y��F�(Aick��5�m2S�%|�xZ_��Epٌ5\]� �[]) �%A]��5]| �E�QL�F}M^ ӵm�`CX�5�mk$2��L2�U�q^{նVA" ��Ė�X����{Y���&[�gP���tm[��Ž]O��%��Y�����LEV��9G�|��yBҘ�q\�{:�XxY�udo����Q_�T%{1]\X�5��k��ֵ-Q�����kS�U}mo��V9^�W6yMo�׋�פo��C��O�W���G՗���x������U_���Hn�ZY��u\�"7"c���,fSԗc�M �"�c�!�P۳�Hn�g��u\�"7"c���,fSԗc�Mud��c�!�/γf��mK�+V}�[��E}�o�6tQ_�۪EP9`�\Ҥ�-h�䀙n^E}Qm� ���kԗ*DQ_���sYefV�ȿX]R��o�x�Qg{�E�M&Tc�K=�oE�������qE_UIYj���Q\�W;�k�aL��{�y��i�uU_�YN��1�aI��ׅ��cxT�U�_Т��PR�fxq�z)�]��$yu�P�Up1����0���S�8p�7�U�ey����0��J�8p�65�Z�)gŗie. p� %e�1\���s����&;m^^0�C���ʯ�_�S��H3�Y�] �|=�8\�$�u��EUo���f> o`T�Չ�]�׌W�hw�م���~����Uf2F22$�:�n�]Ș�v���В7�]Ș�v�CK�F�]a�䥛I�G}}F��%�Q_`�)i�O�5��C�6I��n2a�3�F$\���vR�u��\���D�b�%\m�Wo�g��W��g�jԗ�%}���ױSjql�W>���Q�޴{�U��/��^���o�lR�i5��S{/Vl�jn��vYb�ד6E����E}�J���bQ_|V�5p���3p���qF}����g�d���+�W���b�Y�`?'��Y� 8�{Q_H�I5��M���~I]��\�` 8�r�T ��%��^�FvE_X�%}i^n��|�_���y9`�W��v�a��zU_ɗ�e�_�W��z�_�W�U}U_����va��U}�^���U_�W�%�^� V}�^��z�`�W��}Y_���}1^_�u|�b�X���aJ���{�]� v~9eW�}�e՗�%}d���e���CoFf5_ܗ�5��^|��I_��!o�_���qaݗ�Ռ}\A��Ռ}\AX��q5cW6r d<[e��\��S�EŁ�\n�6�Ai�ԷV}SnW-&uy_�Z��M�^|��� \߅�]_W'�}M_�)Ftm_���U}�aWցY\��5��]��O��`X��x�`��4&{�_��z�a����~!_��u}=c-�E��]�6x_bXS')�[���y�];�%�nQa{W�U}I_ї��I_ɗ�U}U_ޗ��wQ_�XV}\|W��U_�W�p a����y%aԗꥄ!^_W�n)d�x%a`���v�`��E�9_���%�U_[��nc�0�{�_EnQaw�����[�X�|%ao�#FqUb���z�]�� v�^"����^��۵��`��U}U_�W��va�W�%~U_՗��{�]� �w]_1��T}�^���Q_��u�Q_�W�U}e\;X}}_��U}U_�W��}U_ X�uU_�W�U}Q_�W��{�]ԗ�{�]� �|�����*T�����Id�&�v�`�d85��^|���Q_ X��yQ_Qٕ�s�!��%qYb�: :uS՗B}U_,� �wU_tX�%�_�Wϕ#�:=I�h-j�����V7W�U}�^���|�_��U}�_�W��{%b!��o�]��&y�ȶ8Ye���v�`�V&�{�&�]@�7 y_ԗ��}�^|�ł�]�W�U�Q_H��UraRG(�t�����Y5��G��[��U_uR�U�U_�W��q�`��+Y^�U}U_�W��|�]e���U_`W��A``Gk��/MT֭.q\ ]�W�%}E_n&}%_�W�U}�z��&O�]JX���ɶ�����^|�ł�]�֕y%`P�j!_�W. �XX��֕oEbW��[)��5k�`<�e��D`W��A�_YZ��u5u�Q$�qaQ�����]�V ��]V�Mv������X[F}m����5�U_����\��f�U_�W��g�c�16x�`�WR�.u�\�drI_d�Nv�Cq N�zqZ�g���Vr�R�O=k�U ���[%�ᅢmX[Ym��f^�R�O�wԆ�s�j^�Rvopד[Ŏ�d:UM�k�cޚ2Ug�d;�ԕZ�^�_l�e _���u|�m��%}ae���{�d��=j�҂�qQ_W�6}\����y-h�����F��I}}'�c�Q_�^l�z�Y>Y��M�b��0�U]���f')�0��?R���?��z�a�gv�j�a�l�l�oZ�Q�_�f��%bf3F}=^��5�=F�W;�x!\旐v\�]����:�S)���}E`��V� \ԗ���'��FT}�V5��ž5\ˠˣ�6~`�C}id7Y��pͧ5M����X��pͧ��af�uS.̓�K�i-�iiX/jMS�i9�fI}bdP� �L"�!&��RoZN�Y�+�]d$p9^�`�I}u�U'5s��(�����I�U>Vq�\�*��_����@�m���)���G}�Dٛ�r�`�R�u�\���Usax�� �qa�X��ZƘǵ�q���e�U_՗�œ���Aj\�Z-�w�y4���r�`<��q�(��oy�����b< ٭�e�]M'�fU_՗�}�]@���|�_�W��}�^|���I\�]�u(}]|W-���Nҗ����`�UFG�V��U}�\+�U}�a��0�db<[U��LX�;2�<���5]p��o�|ԗ���ux�5��];�F�y@-طV}SnW-&uy_�Z��M�^|�ł�] ܹ6�_����wq����&'p����F1|\A��U}5cW6raj'�.�|�maS��}1_��G�x?�Օ�YH�=�@ 4r�'��,قD�_�vdqf��兄u^�W�t�^}�x��y`>���u��q_�WQ�)=`�E�x�n���}Q^��:�|�_���gic�WQ�)i^�V���^�6x�`XW����{�w�DMa�"b�y�^��3��%V����Y ���I>,�ZB��u]Y���%TK�o;�[�"�qa-��y�`��E} z.���űr��&4��g-�?f�v����Ud�+�[iB��V��r��&��������\n����'R����Y�V���VkZ&}�Z�u~9lS���Sy���xu_���}U_ԗ�&N�]�g���^9�͵�}b"grx� 9����\�W2��b�T���5\6X��w��NH��8o��n!c ��q�}Jw�m%c �P-�0>Eh����?�@��� �)�@@@h��r@�I8�aaP��A�q` �(q$�1H�p�3_��/?�qHI!q$���4 (��10$N��>�A�((�8��s��qh�@Qh�1H�$n�8��,JA�(N�€ @ I �p�A#4 'L��|���i>' 3�H��� ���X` �n % � P��VAH�(E�p� + ��& +h �C!�ݠt�v� l@:(K� H)07��XR� d�:���hYanH�|�TA�)�4�� �17I`�$�p �̀0�`��:r � 1��N�q��!0�`�$��g� �!I���$���0p�؆3`����S �6���̀�zꍡ�3`BL�� �60�uA`@ݠ#,��Tr�.ƀ0t������0xj��{�Q �I `��q3nHB +���9*`k����"���n` �8�Ȁ�t���BA���� E` `���`�>s$�D��2v���BP���� $�O��Ԁ�IQ@;�Qƀ ��d�4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0z�1�i�0��i�F)�k�����#��xp� ����s��2�*��4��G^�N�zA��@[jKm� �eЖ���;`�M��BP�B! � ą$@�!(~� 0` A� �� D�B�H��b .$?0��H�!����A���a 6���xp� ����s��2�  �w�jl��� �A���3�����N� �3��V�������IFIˈ����I*�  ���@�l�|A�Y_�\8�}.�>|���9I�YQ`3t�P B��fx��9IC�8Q��� ��$ �'�� ��A(+c�>`��/� ;r����.�>��4`�� .�>|�3�P.�>��4`��lR�/�p �����)���3v �F BE\X� PV8�P�(� �TP �(l���?@  �@��0Jxe�3;�&��g V�B� ! l�@�A7�j�\2�"�#�'����:�/����� g�� ��`n��C�b�� ����$� ��x}" \�(�.�� c����.4w 6���z� ��`Ȁ�z����䡹472�Csin'`$����\��m�䡹4�0�Csi�8$��&��g V�����2��Q�\?@�Q�\��P��(w� ��< �@X z@ �=�z�A� ��o h��hc d�4��)�k���P�B�@n` s@�*�d�0�P *@6�d�P ��5�� p�l�A/ `�P` �A(����`P�@(`� �a0 ��A��l� B�5�� p_0��1G�؁4p��K8 ����^�8n� �7� @xd@�:��`�&Ą�0hBx�`Ёt�~AMHt �p�Hu` 6���1� ��� jB� I�&l�� v�8j�$pH��'���.` ` ؂4p <.k���\` ���n` �8�Ȁ�t����xlF�P *@(�@ �^� ~0(l ؂`� ��0 ��4GP �@(��lN� :�  ��2�@6n �0�j�Յ�p�;��N;�?!�j��Qv�(l`��¥��@�qk�ā�C܀�Հ 0@@O(~@%92�@�0Q�\_�H���p鴃B����p���؁4�mBa������Jwq�ǩx�5P�@�!n� �?@p�����PPȀG�.l�@��R�K������Jw ���a@ A!� �kp �"h^v �5��OUh^k������xp� ����s���c04.` �K@P?(\2�"��� 0�8�%  � ��q �`�`�S� �·0x`�D� ���` p;���xHk��?@���q h�1�S����KP ����d�0�?u vT��튍��@O� D�D B�� �pBP��&�����������j ��ak���}�A�@�Y T2��c�$`!�KB�` ` Ȁ#m�A����������+��R�j�Dh i�A �Q@ M���E�K��C�+�!>��a������1�! ��c� B�� Z,�U��`d�G4��S�T!�d��D-�bI�$,X�@@aE� ��'�@��aE���`+�NГoa �;���xHk��7���X �2 ��d�02�*�L@d� �4$!(~� 0��' B�����dH+�����`6��hb� w���_;@��9�1���Pp ��<�@X�B�A(�5 `'��   ����P�<� &� ~ �ŷ@B�[؂ ` <��`f�N�?��p��\@ �����(� ���1�_��P�-���T[�<���3#�t�����6��o�Ā(��TP�>@� ��b@KPK�%� ��b�0���m���?�E���` B8� \��:C4@4�8�d��@呼��h�j�%�g�n���G�O�! �@��a7����#�'��1�~P@�(����"Y %`b��Q$�!8% �OhE$8�"���zH����PD��Fp>�A��"b;�`tv ����`��?�v��c�=؁4��|�3>��2�#�<3a&�P �0h���L�u���� �pu��Q�/T!I�;0I�f(U�;�T!�U�� � �exZ�|P�@�TZF0L�U�0�!������@���@�P!�� �"�!� !��%��p|j��[ ��S+�8�"P��$�PgTu�M�f�uF�G�l�*P��$�@5�M��n�[� �A�a@;����B�}4�)$F�WY0$F�W��.�P�\`PpwAb����mp�An�� H�AAV���A�.�+�]�(��/TD1Ag0�0< �3`Hj�3`��3@ ��3`�A�@ȡi��\5`Dp0h�4� l�`ݤI��$�u� J��1| ��1�C�1߅j�7���*���v�5�J��+�J��IM��v kR�"��@�|�C(���&5QA@0 ���iW�H�]t@%PM��9�]@�%���$��"����\�M{G!0�@�l$ɆM�f��@  R���X ��$cQ�F��lF�T;���*�ȱ T;�wP��Q|<��f\����f�6�%����qi�)�N�Bf�z�6 `����= @�4@�A ���E�=�~�@f@�BLZ!b�4@�A�4 �OL ��j�(8 ���(<�Bp1HW�t� �L� 3���b�8��O�m4�h( a�a� 4 �*� ���h��`�3@ � �F 0h ��0h ��pp���ܐK ���1���0h ��pp���ܐK �A1h �Gq�ڔ*� =)_}� ��"0 ����Ŕ65�i�x0�k@ �o��@��r�@�d��v�j"�p��f�tA� x8�c�}���g����*�!��#��n��G��`NB���c�b���x���x��p��q�@�s�Q�/�4A� � �@0 !P�� �QY�B�~@�+�"`HS� d�iڰ��� ���P�n@�q@�A�nc�� ��4���v@�� ���R�@;`�� �@I m���p hh���F4�D�S41( ��~��)���h���(t �o0<�lQ 0,��`�h� ��k@������ z�P�d��7� ~�0GB��|,�@ ��Q Q�/-� �ApI�I@��� h� l�'� ��P'l��`'� l�����&� z�'� {� h|v m46@\ m�bF�Q��T0 ~B'`Ot, �(,��x����|� �}Z,�;�i4R00I�d4�1��5u ���5u ��+� ��+� ��+� ����������$c�16�i�@0 @6@0A(�5��Ε �~���Q�/@ j��� ���1� ���� 0ǀ/�h��/0�v@ �i�P�n��k@�d�0�~�0E�1 ELj"���O�kT A� O0,���� +�G�0k@�����Tk@Td���d� 2��m,�G@|F5`D�@�@,�%A$Q@X�DL0�@�G� ���+؇�p ` ��0x ��0Xh؇��!`��`QR���P��@q\c�� ����p5 c��_�.@c!|��J� ��_�n*���9@����_� @$~��_\Q@p�͓��)�P�n�`�@0 Py�Fd@0X��q �d�� � ��d@�s |d�Yӧ�)�A�c@�,4v�@0 �dP�hf���L�_�8��� ��A��Ag`D��g0e���,1�a� A��}��Ak����!�i��@ lk@�l�Py�4�P����X�gp3��d����1�g� @;�!���@!�����h�N�!�@�"ˆ@"$c�@ �����)P �`f@)��n�P�n*P�k@p�x@ �R���|�P�d�Hz���}��x4!P���@ ���(��)� �E@^�01��Tn �q@�A�n�� � �<^1�A6d��*�Jd���1�g(d��(W�@!pDI�P�v@��AE#� �v�p �i����5 ��0!�@��@0 �4�@!� w���� -@ � `  �` x#@�@���g� �q�10n$�D�@h Z�p �I01�i�-����P���-��p��q�@�s�� @0�� ��@(P��/����/� � ���/ �!P4�@1����(` l�'� �d��d�dc�@ �@`��@)�l����� �k@� ��@`��@�y��H{��k@p�x@ �R���j"���@!� ^ �$~"����*0�v@� ���A�T����n�P�o �t�@0 @6@0퀇@0 @+@0@<�C++��O� T;+P4A� ,Q�B����(@��G�C�1���A�� �1A�� �!�l�[�aT9KUL���!�l�[�aT9K� �Q�AI � ��m]���@ �8������� �t�Nq5L*W��~�1@� ��u� ��',R�F��H5j"�D �� � "p �" �"@�@R���D�1,R@}00R��<}B!8%@ ���8%�1@���(��A!� ��O� ���\*��P�7n��k@�d�0�~�0�@(` \�@(� ����` �T2��B(���@( (A@ ��*�4�����D*Q!�DoOT�S �J܀}�7�1P�@���D��Dt��f�L�f ��f`�5�J P�%����16@����q�*��Z�P^�h*�[���C�Jx4�O�S��Z�[��y���yL���1jM����3���L�G�$��ұ�]���`x�@Y�w����e�$��u �8k� D �6�aLj�A �V�����]�A��t*K�)0����#�@� �BЩ,z� p�ȂY�8eA>�h��So�"��P�  �-�1 ���Q����1P��ԡ4�<߂�| A�-P���)t )@�qDE�)p �B��� �7`�| ��| E| E�$�B��)h �B� u��B�Pp �BE�)p Z��)�q��Gp ��F���` �=@1A�G l�`�f �� ���� �a��e��� #��@�� ����#a��vOCI� `�ck��G���Q���Q@�"#D#@�jDn����@9p��m��_�� %)�A9�_���eD �}�#���Z#@P#�� �H=���E�=�%@��N|9A �N�9A `O�%�1�(�LNPx3�� ��.%�!�.3�!����7���LȡD�� ���� ���F��t%�B�P(�� `O��� `Kp%� �( �DE�Ph�B�P�%�-�=�.� �(��B�=\ E���F��B?�� 0�B��i���r���Bk��p����������� � �kM�1�*A��t �F`K�I�J�0�lM�1$�F�� $�*0�� @R�kM\��56@���$��t��@=���@�n�*���i ��P�A��i��@�1�jD�q5tA��t�@��i 3 �ip�F�1��M� ��@ `=�$M�A00IP|8@� �� j� �����q�F������1��( ���$�pn(��( q��$�pn(��( j��$p�� � �`D��ҰY$�J�w���rP7� �@��F�}B��� #�b� ,u�� �J���1\ ����1,V����\ �U�0ll ���'$@�|7>p5,VP���Xa@$a@� ��mp5,VIp����1{P1"� 3$��,!KHă,!KH�G�QH.@q @�QHx�,1�5��h[����]?Uq�m��V��w�5���]����]?���h[����5���m O����AEP.���@�RT O0|5E����AY� ,� �bZD��B��<� 02 0` �����80��T� P�nh�Y���0�� �>�O8�u.�#1KQ��8�u�B� ��,E� �t׀Ip� 7`R�γ��bZ��@�Ep$f)�\pz$9=!Z<���Ŵ� @PGb���x�AZL ��Bh`� �) 2��� 8Ph��䄂�̀4�a �� � A8f� @8����4��IL�#�|4,�� �p� �3� 4���1L� �zCh`t/ �"����+������PJ|�Y� l@�`] \� �<p�8`+�[p6nN � d lJ��[a+���P@�@+��7�)2 X) `�d��p�F x $L�V(Eo( Sd�R@� ���a+���Q�D1�l����� ��� �D��"�"��`.~�O .� �� f�� �`&h ��L��p@H�Q� �6��O� @0��(��-J@O�_�s̄'` <� a.z�_�AG�c�A�����@��V@єE�"���C1�������-N9VEX�qS�PL9��� +6n�-�v��M; 7a�P\�vV�Epk`�6�ZT�y�AA(3�@��% ���AE�H2��ţ8�c`@8�� 8� �Z�!��P�P��q-��0�?@}\ @�>��P�P������lqjOm�8�7�f��?�A��� ��� 0@8�` ���i@� � ܌�qJ�� CrDa�0���3��sj_ �(�A���i( (&?�p��cH�/�SpsQ�����| ��c,� C�W9P��c�@�_e�~� -&\P��i�92g�� ��3e�2g��J�L�V��P���� al ��l���?�� �g@l�b4p��T�o����W,HN1!6䆚QjFn0!�  P3��sp��h b,�)�]E��T L�GX�f�����z�X:��|���z��p�'�� '1m��3�p�@� m��ǁ6���@D28ր (�>�J�OH9�z\��0�!>� 4��[���0������L�{�o�����|���O�x��I�0��xa �0-L@C@��,�)� ��f L���M0 s ��f���q@��6p�@0t������p ��̀�n� 8����3��op��0�� 8̀p��΄wp�0�O�&� x�Fݨ'����pN����n��POݨu��J�N@ h'�R�pN��'�R�� �՞`� �m�'+.@{n�`�]�[!���]c� `��Ṕ�� �.4���� p�!؅�`��-�A{�����"� �`+�G� 9'368��jf��1�( `+n�%�a�"t�Ihp۷G� ،d�3vFϨ�� ��V������"�Tr(n&D*�䰤 ������P�ç����p H�%�� ��@�@�k $пK�$�A��J@r�$K�$/��J@r�K�$��V��k�� ���]�`�q� 7�� �|� t`����a �� �L�!�`Z����2� f�8��@̀����yW$�� @H�"�ULV�ށ/�' B�d�gdL~���(� ��(�c�0�@ ��m��0�x u&+ l�2��2�p���!��� ���pR ���8 �@8s �:P� 0���4�&�`����@S$���p��O@8]`(P� f�83�B&5\�k��a����k��d�g�P`c�4���2��>`#���AC:!d9�}��2�@�\���~b�r�x�gn``�Q/���!� X?s{�+��� X?s{ �L� 3� ��kYʫ �� X�k�*J��d�@��P(/�V��z�/ȀE������@�BY���8�� ��9py�� 8�PʁV�Z�A@�!!�����BX� �!����cv����'z��x�avp�3}�(=�g^��J`jT�=0 *PS2(h�!������Y'T�V� ?�( �I����@IX'%� ��(�J�'l�uB�Ua�]���P %�'H�c+^Px�Q�PX�B]( ��0��r KI8'���P �Ϊ %A��F�K Ga) �����d���� �H��vn��N�q;A��%���A;Y��b ���.yNv'�^�i���S ���^C,�����X�db,!���q@��6p�@0t������p��X^SA �!f�8�h Z 0�(?ph�P!pCp��� 8Ph@2`�!���%��0( ����5��U0 %T ,O@ P����<<V`�����Xl���2���X���r��Q�o@� lM<p X �-�,e%0$�p�)�l@Xn���)�� |��2\n�����™�)���:��$`�G0,�@)�t��0+�(G��<�j@�`x(G��m���r����`l"`�e��� @�l<���lx�Ƴ�� �;�! @5�$|O@J�(G��` Rׁ����wFvp�]8&�H���g &@�w]>J�( o��]�2��9��f�w]>|���l6� �u��]K@�ó�,|���w-mN�³�]�ߵ�9�f�w]>|�ϲp�dh�|���w3��J@k�-x@��-4J@pTM�M�0lUSn�K@Ք�t<]�aP5�6��P5�6O� UrAՔ�H�\�TM� �Q5�6H�\P5�6�R%,USn���sMՔ� UrAՔ�H�\X@�a�X @\@�8��`�X2�L n`Q���O����}� �A$@D�D�TD���@Gp �p����YtfA��""SF�=�~Ȭ?tM�At�AN�[=!�?Q���4I����D�A�J�tM�d$�NqL��Ġ�?A, ��İ$2�@G@� KB)`��S�������O�� Q8�6�F�@�6�F0�x<����J�7@P8�*E 0��}C��t_�H��}%"���4@F�WЁ3'( !RKZ�W!RK� ��UKq_�kE1 ��� �J�[ ]�J CtA�J�Hl� p_9�tA�J����,�"P�`�@"� s;�*E 0�B�Ő� �CR7�� ZA��p1 �9� �op4 7A��� �J��? $�P8�� �* J,@V�X#~`9:� 0892���/��������N�L�P8)�@(��h�����dE ;(���C4 ��0�B{$G@���� #�d>���b��A�0�� _�� �!_�7�-0���BHXV3A{��A{�������C�D����tIp��*7��C�����!��C<��wq��B`E4�*�m�S�]���S�]��`y�o�P�e@�<�Bh�� ��( Xe�G^��E$ ^�_�� ��@0`�N�w! ��0@ ݀: ��!�D��(p `d?P����uM4l�����7� l�p�o�ް7�e@�3@�� `�}p��� (R��`n�Q@�@~�Bp� A�� �C� ������0@��@1�� ��d��O@J��#��`���l���m��!���P��`y�o���|F��!4o�P4 �(p }F����"�@APP�(0 �=��0��� �AAP0"�%�p� � 8�N�F @<���Q� �Vp��;`E�@`����o`�p@0�u�%�@`���P4 S� �e@�B���P4�$ h�`!T��  2���JO x< k�/� ���:� �e�p�w�P3�6`�n���q��rP�t@`�l���y�0�S��}`�e@�L{���~�P4 @��l7��$P��@4� � ~@��&@:C!`��@�g� p�!P�g@�34���|5@"����"@<��w�h��<�`�N�w�XO�w�r��Q�o@�� @P4@ �@��m@x ��a������!��%��<���pP��y��?AP@ ��6@�*w�0�j`�o�l� �e�@�k@"�$cg�R�/����ANd�@����h� � ݀V�!�� �*�0�e@���p$\ �2 ` ��n�g\ �2@�f��hj���l���g��q��rP�t@`�l���y�0�S��}`�e@�L{���~�P4 �m� ��� @�f�����p�h"�$�@"����"�4��# �� �WfA5��Ea(gA��"�� �=� X �A@��� �_�sA� �"?��PkŪQF�W��*ac�H��}��?a�7A��e(���U�Q�d@`�:B��k���m� �:��o`�p@0�u�p�P�z��L|@��l���y�0�S��@�4�@�g� p�!P�g@Pk@"����"�$�#�8�$@��@"` �j�p ��`�g� p�o@*���*��v��x@��S�0�}���P�z��L|@����P �� (0`�"���T� �@��k��> ��@�m�p �8���f��;̀pf�3�.MPl@t�l�,;�g0 �!L`tB��W���pZ�Iha �� tB��wh��@tD�h� ��.�5t�f�HD<�`��< /XzU��*]N��*}�>ÊW�v�3��ϰ��4��D(��C�*=Y ���r%�W�*#$`�Z���Y�Ы��2B8@Ed�^E)(�0��$j�i�&��3� ��*�i @��!�T��c4=��h8�5L O�J �=�t�5�mrCmY� |Y��Pz§�����O�)���:���|�����E�"S`胭���:\'�����`F �kbbx O�i:š�6��Ӏ����AO�@]|�% ?�~h��3�����gX3a Ћ;��]M� �%��I�S��t����f(�U�����[@~�ܠ� ����!�O=�����u]��u�ºh�� �� �0���4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2�؀"8k�4���po �8�h`�3@��x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP�X DP�P�E��p��Di��p� ����x.@�2?��<�u�"X ���q`�0?��<� P����x<��z��������\�*e~��y<�K�vPDM�dy�䙎��� � l1+fq� �3`�,P�5@é|V`*���ց� 8�Tb��l�ʩ�>� ����g.@l(�e晎)�J�pi�B�,��g:��>%�Վ�g:� 0���C�|�OZ>� �� �(�D �l�P���<����*����iB�x4bL(���J@PA��ӄ����l8?� d.p@ ��&,p�� �& F��_d\� � d�S{j�ũ�7#�1��Y8 b(�EV F��_$b(�E� P�� )p�d ͢r���� v�������EV� v�YX)�`'�� �a���8Sp��1��Ծ���r@@y�E���q3`V�b�x  ���͢Y �i1@�u $�� P+!p[$�(=�S��OQ����x ����V�B�K����V0��!Ġ!����r>��>�:�`x)Q$"�z R�H��V�V� ��dP'%��<0[a+��i*R�?�9lP$L�3�9̃ie@��h�M�Pq�����W �@�`i̎X����� |�X�f��8�%����iR�+p!����B_A{�u�$���P�+p��I� ڃE� &A�� �^�۰�L C � 2� �,`.�3�V4��p��9��!�%��L2� !.&0G����ܡ�t:*g���3�Vșp+���K` p���Q�!O������ �í���Vp�%p+�3l��pft�α���y��0d�h� ����Ұ6,C�X�)0`ʙdx+��p��p g�|r��͢�s.�09Z��00N��X�|x�AakFH ;���&M�� �Ϝ�����N0=;�)���00N��8�c'\�g�:BNXТH�G@��K��"-TB�� �#}� y�>���fg'����N8;���%-*�?�0H��V@�'�0H��)��<������� �A�CEp��Vx��� �{w��\H�d.$�wpW� � +��C;0H�x���d0H��\8ɀ�� �  0�  �F( @#�T�74���@h��4�PP(�@�F0�k�"%`7��PhXQ�a. ��^/�p��*,`�0=�� N�*��p��+�!�T�JYE fY M�̄��^��� �fA��*1�H��)��p�F(E#��� |�Fl���"�F�y3�$��C3(8M.�pr���O !`����LP*¼x�y�L��~F���<4C�~f'hN�PvB ��c ���)��>XE��}���(:Eg �V�@�YE��,��St������%�RP�a0��0�%�RP �1�c ��r�G����xh��3������Ӄ���$��7TE���A9x[�Оr�kq� �� � ߡ�"V<� +Z�r�3B���B0�p��V,�@ �&N�x��G�:���vE���X �b�U��S�{4 ɡ�0��P ��K`.��cȤx` �6�I��r��0��u�3���� �$�� <�'�f�D 0(�p�<�ph�0@ �E����3��L��0 :!ȁL�}tB0�r 4 �� �@��dk�`�e���V� �9���q� Ё:`�p� 8��f�Ex�(IL�$�$  0�@���` �%���/���Di� �U� ��9�AV� [�+�`� c�,��� ̂��5�M�A���, ����,X�`f�x�g.��B\Ap`�L�3����9������� p �8p�@0t���"G��<�@�R��@����� *6����18 LL� ��LKu�BØ[�pD=�0��VP z k(�{�8�Vh*&N����n � �"| N�{���$d�$�L�J§��z@ž�=P0 � z@��9�4\Ml�����j �� 3��,~P>�p3 �����jb�@��\ P>�p5���P�� ����ޠ����jXf�y��X��Rl��7( ��������@�y�[*V~��A:cZ=TwA^q��UwA^���o �IW)UW��[�[�־�o]Zi׾%o-\���up�[�V�Uu�Z���b�a����d�]�WK �[~��v�_��usMamԵqA`�ֿef!Yj��Eau_���VY]ȗf�Z�W[eu�`���5p��V�E��@����x�tŐ�u`a]��VY]ȗf���hq`V���W[�?�Z�YH儉��Ğui�]�W[ @ h���tiy_{�����[ԸUj�[���r�Z���be[�X���)@*��v!ZW��{1ZgfZs����D|%v�\�V��t�[��V_�'[�T��lE��`m[ ���hy\���Ev1^����k�\�V�5j9^ ו��=a�ϸUj�[UW��q{�d��J�vf!@�^�t�с%�W���o�Xҗ�udz���a ^X�5��Q�W��vz�V��` X��o�Xҗ�ʁX�S%�[�URg]\��5��BQ�uiY]e �x�[)�΅d�]�V�uiZU��U�uAܕ�U�? ^���!D#�Y�-Y� � �[����o�PK�6]y�Wvk�[C�u5aAW��[���S�*�`�>y-r��&h�]\ ��VM \��IW�]C��Z�u(Ҹ���X�4n�XWH�‘H �<$��G�֌u|�[A�R�v��XO����g T�5�Y�~�t�ϰus�_��X�~!Z���v�x����oe`���zY�W<���S���ga]���5a�_����o�[��U�b����o�[U���9\O�*�o�S��ui�]�ؾEU�x�ϰEs]ZiW���\����aY]�V��|!Yj��5d�_H���d�x��5n�Z���%}�[ ���o�[�ֿ�o\�V�ui�]����o\����o�[�Vڵo�[ ���o�[���ui�]�V��oY[%W�er�[���n]Zo��q�[�V�Um�\����o�[�V�w�[W�uoa\����o�[ޖ��om\���Upy[�V�nm\�ֿ5mM[Q��%o\����o�[���m\;W��q[����s�[�ְui�]��%n�\���5l�[�V�%l�\ʖ�%o]Zo��q�[�V�Um�\����o�[��ۥnE\���UrU[&���o�[״5m5]����qM[�V��o�[׿�q�[W�p�\��l�[=���o [��uoa\��el�[�־�o]Zi׾%o-\����o�[�֥�v�[��em�\Ֆ��o�[��ui�]�V��oY[%W�er�[����qM[�V��o�[״5mE]���up�[W�%p�Z�y��QCߛ��a[ �uzU_�ui�]ޛ� �x�T�]ZiW���\�����!T_�F+�[�V��o�]����v�[��5n�Z�V�Uj\���j�Z��*�[���o[���Eb�[���v�ZK���%[Cex>QA�֐� h��el�\�о�s)Z����9W,�)x>QA�v�YQ(��Y�[/W�%s�Z���ev]ZdWWfC�[�״ui�]]� �o�] F�ey_{��usu]N�i5����������eqMsʟCrg�e>��sqcӛn��`�Ϧ�e�=����QR���q=X���5VMb�U�UV�[˙��W�ZXV�`�[Řu���G�uiic����o�[�֥�v�[����o�[׸Uj�[UW��ou^Z�o�[2���m�Z���傁cf��eq�[f��Z1^�V��p�Bĥ��%Vc�si�][�U�M:�u�o��m��g�[���-�g��-�o��q&C�[���EpM}��u?FK��u�EK��mҜeP�ƵoYs1�|�t�Z��իua���Za\��i{0]�����aCO־Ew�]����o�Vؐ�V_���o�[��f�%h�R|�? g,-�mIE��4MW�׆�}�[�v�ec�LJ��P#��6 �-hr��ajBjY�ig�A '�h�Z�M�a(֊�s[�us [� �oJOW�{!Yj��l�\��5n�Z�V�Ujy_Cf��6|��5d�Z(j���Z>�_fEU`lV��qi��o}�\ƗyUb�f� �VA\7�p�W��tf<9K��tf@���0��NB;P���sh�>�.7�h.@;��m�jT7�����A�1�i�x0��x�� @0A��\d�xd�x�O�8��# t~�APD j"@4Q�/��Q�B�,Q�B�]�F;`�c���v@` ���l0Ku�P�����p��q�@�s� ���H1��T2G���G �8�5@D@�1�7��0� i��@0 �06�-@�Ev@ b�w�9�~�d�9s� ]1�1���@�l8Pyh��EP��@(�k0; R� R��R$� gHp�(I@ (c����p��q�@�s��  �`;�p��,�B��' ��+_�I�hd��+��D�G���8��+�ʄU��p �G�tAD������l�s �@0 @` TZ��@0�Lp$ j"� �8A�tuC:���6��@!PI@B`� �� AC� ��@���G �0@ ��@B��~�0~�0~�0�����@p,Q@g 4@#�$~PyH^�W@T��S �p6�����=�G�|�0�p @gPyH^hN��|��GC�E~�(���{�#���=�.��a!�#����#���@��]���APE0��)�l@S�]���S�]�@Py�n�@�d�� ���@@x�^@�E�%^8�h@���/ l@S�]��/ �!P�@( X�p �M�N� �@�U- �;A��AV�.P��` (Yպ����(���� �R�+�$�;$E�� *i���k����kPYպ@,D2�U� �A���@P� �΀mp xc���i����P�N���p��q�@�s�� P�d����% ����]]d@� Hd@�`/�K1�&� d�e�o@��(J�Py ��#�K�RL� �4A� @��Ͱ � �$v@ ��k@��[���n�P�o �t�`D �A�� �� ��+��NP ����!#G��B�.���� ����"�+Ac�����~�0c��Q�d�� @pg��C�9\��ס �"�lp��f@�Ag� xA�}|A � %�ʰ ��F�lA�F�, �Ag� x���Qf� �h�Ɇ���@Ա| }�` �f�$A� ��N� \p��\p�� `c�@ �@6����)P �`f@)��n�P�n*P�k@p�x@ �R���|�P�d�Hz���}��x4!P���@ ���(��)� �|M��0 �?�l���׸��P������@0 �T2�H4��g�Y5���LҳeD��Q�/�����qt88�/�tGǐ@$t9]�g��+]����[]�#�t9!"�c)`�k����A6@0 �<GP�f `��P0f�@0f@�dD�!P4�����a����d�� �@\@�<�a�I)P��B@�7C��7���m�,pfm�7f DH� �,pf�jDHDC܀�DC��z� ��F! ���4$ ��A� ���� ��A��[�7`|HFӐd�f�G�� ��7a|�A�@HX(f�G��@̇7a|���M��0ބ��M>��Md@�bu�%��x^P�poP�X1AL`d#�g����g��Y�g����pF�@"�%D�DpF%� ��5�g�8k�[:�R��^��5oA ���,��(�[��R���omKA ?�^S�5�g�CXā-@ %� �xQ\g�EyQ�B�q`qF?d ����`q�%�ա״zM PXzM ���DL��|B@�e��1�à�#�P6<-�'�*d�BF w Z�;�O�@; h�K��P,��'�}�+��'��KG�MO��Q2|B����c|B�J�T�'������|B#A6<-�S6<-�S ��|B�D�MOKG�tO�����E0�@�a��@��G�6�� �Bh�iD�W{E[A �|E_AA��G��~���W�u�a���D�!H }�^�%���m�G�Z�m���G�`�s@ ��AP�G�U~�)�A"�l�)@���@)HDY� H�)0�>�@;DYA;����J@��Ht@;�D\p ��C@�`��C@�`�/�Q@p ��C T�@;p���`��H\p�A�`����BD)D q�)�B����T�-P ��-� ��-� YA(�-xB(p X�F` ��}@��iEZ��AY���) �V@V0�B���� �"�� ��a(�,T+0��!`%�*�!�@���a�5�p�B@E����0�@�Q "lPQTɀ�T��*�J���P���k T��zp��m`�yn���>P(���BT�A"�,��z����EQ��n���l D�I ��I ��J���H��$�]�.�$:��J0@B��[�� �J��@B��[��<$:�8@`O I�[�$� ��[@� -b��t ����[@� -@�t �����[@� -��u�+nA�\A���n��*4J@���[@� -���PM@�D�[�h�D -� -���� �APV�E��@00I@YAL1$A@PV�E��eu P1��(D�J�;� ��� �X���1� *�N�\B{,Ak�t�C� ����Ю,��(L@���+L���� p�+��R�F�����0����+K���2��k�@��T�+pW��k�&L��ծ,�Ja���� ��+KŻR�?��n��$�1���ʝؼ+�Q���� �U@ xQ���Q�O��0E�ЮT�W�9E���ID�JKd)T>��P���@� @�g\w��T8�G��P��� x"0:4gA @`y�m���G��@ q�Gl� �q8 ����0�B�"�yA��lG_�Q�%�@���Dyr` �Lb0HHt�s�}<�@ (0 ����_@��_���.���� ���u���B�Py��g��An�G��Jb�X1�B$�xI9�G��A1��\Bn��Lr���O `AAl�N�Lb�g g�@�P �Gx����h%@O�$ =��'h4�a�5��Ac�5+q$�0G�s�0G'�I�4��Ith��6�m�ma[�=����`[�>�`c����6� >��e[� ��e�G��sIGґ�J8���`[� `�aTyCWu����`� 4�a���i�F�20QE�A`p!^�@Udq�@9�l��Q�Z8��^@��;hWVt�Y�UThEA�0c��n�VT�4� !�N�!@�C� �n8 ��0H��� qx[@��'lnlQH����HY�ıi|n�QH� ��k�G�2~�+•��&�nlQ�+���]K�!qH����'H���~�!�� @A�l��:� �pd���� (��7@x�Ʒ� [Ap(T�A�-(D���weV�F!�Y����� B� [�)���p��A{��� �Y����a<��Ap8�)���xT�!@  �Q��P���qg�DN�G�%�qD@�pgD���p D^�%`H���p '���y�P{D%�)�ID@�pgD���G�\��%�Q���h �����g�qg �&�G5��s��@20D�1�P$C��%C��� @>0D�w��u��(L�P�� 9��"�CD��" )�:,1�0�x��0(�0ހ!q(�ހ!�|Z E�eH��B1t� l�tp(x���q�x��S` sI�aH �¡�PdY���Ph�D�B1t� l�tP���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ����g�� P�3��P/��`���q{��\`���#b8"��q{�+�r���L0� �J�&�+%���� �0f`\K��\0f�\`\K��#2f�#b\K�B ��+�PC�s�#"F���I��� ���PC��B �5s�ـ���U�dEH ��@V�l\��Y �dYPf��p��1w�] �|8��� C 0x à4 �n� ���� �;�����00 ��;@( ���x��0< ��0Q��1�%� pRX�QE'EE���'d4w�+� �5u4 ��LK@2�L�@d ^k��ق@����g` S�� ��Fh���A+�x �W�-��}X��!�j!S�!�D�!�D@ 0 ���-8Kx@g�X�pdP�y�p(A��,%��P�B��,bP@d �P@�bP�-8K@A2� @P�g�lk��m������q����t@`�x@p�f��P|����y���T@�~������� h� @f��lK@7� X��#����!pi@�\l�"���"(�@0,@#�<�@$ �ކ0��7�ú��H*~�P���|X;%���bD���߬ ݇J5� R��Ҕ*�U9*~�"t*MԠ"P *M �7�*B>��� �DM�K�v���O� v�ை,1�|� ņ���֎`/�Ce` (�����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ��N@� x�0D�C@��m�p@p�q�@�v `8�(��2f� ��@g�|�B0�G2$S���:A0��ڇN��ڇ������}�e` (������)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P�k�+�n�N� �q����t@`f���f���f���f�$f�Hf@��<�I� +���� S0�L � �:A0������6� H��# �Z�@�UR�U���Z �R�m����  m�@����8 `8AA@�yCA@w���yB0 �0, A&�fdd@2� �C 4�C�|��0p���?0 ��0` ���BP�g��6p3����p@ �m�0�fP�w�y���T@�~���@`�{�P}���� �h� ��@!`�h��8r���u� $p ��M0D�@+�3�:�� � ��!� �2�(`� �,��"��h�)��k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@�l�@��qG���������@����b!��r�i��+F~HqZ�����p��l���r��K��ՅW�iF��Z�+6�Ic���,�)M٘6}Yb�ي���e�W�V�I�S(���iLSV��j~*��*i6 �J�ߪ$��b��,8�YK��#�5`�i�|QeNS��-��HtZ�D���R��o��,f��c��{�]�m��b�]0�:���L��H��f̦�Ÿ�2�.�lf̦�Q_+�����kf���ٯ3�R6��F����kfv�l��{�e�[�%��b�_W���j��q�y�ջE��sW5���dP-f��Z����-eK�5��n���Y�toPƕ��Z�'ӁQeh�R6��h8��y�}N�Q֩$lKY㕰Yg�W�w 6g�J¶�5^ ���UԒ �����ۈ� �@Sv�����6��� <)�4�� 4ea7 ��|a�U���ht�!�AN@t�v2I"�nq�A�ڇ� p��I�c�n���6@�/IYc6��dYa��-d��e��eK���fF�1fx�fd��fI�^�H��c���6@r1!Y9&��nd Ô1eI�8v�%e@YVƔ1e����)~��V�1e�A�JGF����cK�h6�QehZ ���2pqwKP�*؁�/v��b���U��fJ�;�IhL�8V��h �WƔ1g��_F�Me)�<��n2�<Ɣe�ZRZ���k1�%V�-en& Ô��(Lͷp��n������ySd��^Ɣ1eL���}�dH�S��5_�lƔe��Ŕ1eIRV��fIP��1eLYU��cK�oF�Me7YQf��deYSƔ�dLSƚ�i�F��K�R�TbL��v�%�0��-e�x(.e�SF�Me/YZ��AeLSƔ1eSƔ1eLYS��=eH�SV��fLQƔIeLS��!e��m��eYSƔ1eLPV��f8�WƔ�ds�HF�1eL�R���c�N��1e$�\6��eLSƔ�d��R�eS�MV��e0YY֔1e,SƔ�eLQ6��dK�Z撥eIYS��d�S�UeMSƔ1eLS���g��ܤ�9X�Y��6�g�߳䏕c��v&��MVS�c�c,Z2V�YqLٓ��cK&Wo�a}����JL�`нY���f)�m���f�qs��jƔ�gxXnƔ�c8YZf��d1&��YMY\6�i�n���f�+S�o�d`Y=��W�Y9&���Jټ��1eIRV��fIP��1eLY`v�=d�+S&ii��AƟym���f�5�9��M��G(f�El4T(&�Mg%�����%�36�9e��͕��d�S�_�dJ� ���dK/MŔ-eG���5���iŔe1�<���dM�E�f�ط�|�� �k����OV����o[t9 ��E�TeYYR�XIg*ƍ�c�����b�c���z3Y�֓�KY���Y�SΛ����KW=ebK�B�XAoƖ�ɸ�]��e]�X~��ue����,e3Y�z�0b:Z&֠�d���=�:�c���o%�3�9���u�U�z�0b:Z&F� _阾{�e��h�g�X��=rv*���Sy�z��E��z�gAi���e�Q\�[��`�����U\�u�P�%�V�1K-�<�~)WN�iʟ��h���F�eS�[F�E\䦞�[;]6�I�XP�l�?Kٗa�h�i6�QehT��e�XT��`t+��g�j"�u��QT���dF�f�UL(���2 L�����d�jr��ju�`&�ufK�nv�uc �=&�����!�q (�1�fYB����A7FC��Q��1c��=���d�YD&��e2X{���c��L��=e�YD&��a"���5iI���Ed"چ�}Ed"�����M����d����)YI�i?6q��A6���� b��5f>ܕ��me \\6fE�9ˡ��]o�Sf����ϸ&�!k���k.e��`e�!^o�Sf����ϸ&�!k��Sf����ϸ&�!k���k.e�Ϭ8� V�ۖ��&)�U�1eK�rZ�D��Ht��,eO�~�b��:ƚ�g�U٦��q*����c͜�$��$i�1av�l�X�� ����fv�l����ɏ鏿fv�l�X^'b-e��̰���#�Q��-�#İƚ�]07��^jY�k�g����U%d���a\g�o�n�b��U�!l2�E��o�Vd��y`K�R�~�b��:�s#���q�i��Q�e�r`U2F�1e��0� �X�V��tY'��1������bf����UL����y���g*�dHٳV�t��(F�t��4Ɗ�i�+ƜYb�U֌%gM���U�h��eesR�,��Eg���-[ؙ F�͂S�ȭJҘ.�>��,1q�U%& FLE�5u��fcPf�5[��R�,���B9&�]m��f��=J�w��W@�r�Oj?����[�f`�$ WLr5�%e���u� m�Va�me����h�n��S���kLSV�1e��`��)s���1e��`������Nu�Qr�UU֍E��L�z>^��R�ం�R֎�o��y��~zd;2�)Uv[��QeLSV�5i�Y���KY���9�eI�1e�(���m���{�e�Z�ժ�^�Z�u�-e ��v�OW9�%t��#v�U`HYa_ Uf��e��.p�Z��f�qm�VxF�Ic��Y��n~ݸ4��e��|�e�ZM��G-e!�Y��\e?�fp�d����a_ U��YW�M7V1e0�if&H2�pť��YR��YX���Fjf�V��g���!e�SƔe\*.1�%e��w8�p\*.1�%e�ْ�~�fC��^(x�'S��1eY�u�a�1�R���i4�OF�1e�WSV��l�SƔ%eHY9v�%e@YVƔ1eUYL6�-e���Ħ�!��c�j�b%�4I��ԁZK���k-e��W��eexD���{�� �b�e����Z��(Gi=d�^���Kق".e � &.J��d�UN_sF[�Xc�R��=�6��u��f4ߦ��|�#Tg��M��j�Pь���υW_��5g��C��-eRhIg�����fO�V�d�S}5e��v}1eLYR���c�YR�eeLSV��d��R6��cNY�fse|�純�`��9-e+�� �e|�純�i��9-e`�t� MdL�9z�D�y5�1TAZ$V�c����uY�i��c&�S�^�l����k�J�|��8��'��UY�i��-ex��N�6�;�f�p�}�h�;���_r�=�C�_�Ev��f �����=�����i���j��`&�-e��`���v-׶Ŏ�g�X�e!{2���n�aR�dr�86�-eK��E��c�\�E��I�;f�}g�E���c����eK�8��YT�W�kD�bl1dTb����F��ip�+y��.eϗ��i��u��g�Dv�D YTv�C�����S�'�Š�g�W~���g���ƔIe���S�-��R��!�W��&���� 6�)��Z � d^���*Ya�ૄ��\T��:�Pe ���#=eaƔ�bp_u�iJ$��:�)��;w���� R�+�y� ����*��|�X{fZ^㖟cAV,�cS&m�DY\�C}��\�Ɖ����$m�D=��E,e"��K�Wȳ?��A�B)P z����0��F�O�@��~88+� P�/�B�@��*A �L/�B��/����pH +�%��� p ��@��+�1p8����l �;P�2 �d�F���ep/�k�FA+d�B��n�Sq{��T^��py�p`f���@ @��h� ^��4��P#�7p�4B��E(@6—f8��p{�S�:p�A� ��0p�O��1 �1P ��: ��!���&� �@( �e` (������)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+ |����|"�(�@�A���|����|�� ����S�;�'��|��'�:�;���0m��8 ���|��q�*�>������|��'���\�\K��`�� ����H ;��dB�`hEG9`�rp�f���V ZA9�(�A���A9�DI@ �@O �VO�)��� �)�Zɀ �*p�s�0D6sA2�"���V�06L�P*tsA��hlL�`@��\` � ��([�p�\�:��V�yl[c�����hl@c�G�pw8���l@ �lS�y�YL8[�f1�L%�V�l[�V���N �x���Ȓ����-Nn�,"An��A �@���qw�+��Q}C��C�qtp��ё1d �D�� 45� ��Al �t��G�p��,��#�@��3�� �>@(�\�2��c�p-�T8@��3U.?�0i���KA �*-�`@'LZm��@c@� Dc@�3�"��@ � �č��A��0"�fE(����+���H��r����r��H��"pQ�0\�AQ/uE��Q8s�ܑ h�L�.�]�� t9@2�UH;ɀ�!�$%���`A�GǠh���� %�1ЇP[�E��Q�K�/%*A2�~����yx�A$%ڇ ��pQ]�WQ��}s��2BD@%@�@���p��S�p�4���<,�ܡ�%A��%l��M�%l�M�Q� �MP�S���\8�.�K��B{.���|�� �%A{.p�� ��CGpE���:(8�E 8@K:���|38n�����I��8 ������|3� n�� <��IuR�8 ΂�����,��7@7���H!q�R�C��Vѐ����(� � ����pZECJ@NpZECJ@N�z����<)�@C 0�@��l�U0@G��|_@ w�$��`b���5)&��eb�/� ��Xc@`b���ab�X&�5-&�@DM��/����/�c���/4-c��@@Gc���&I�����/�Б�5����`b����/DM��/��B�?@_�?@_prchQ����XF �0��PlmqO�Z�=�hQяQrO�F��B%��p8 ��El|'.�\0�.AQB0�:��P� .�\0\���?@_Ć�BS8 .�\��T�8 .�\��P `$P ��E ��|@DQB0��K0%� @%��P� l� �h%P� $@*Q� E ��(Ȁ� ���(Ȁ�,PΓ�@9ON��<9�@���Y]Ř��� E��K<9J@.��<ʓ�� e�2fuc���2!K���(σ��/�@rpKl����/� �1�L(���a�ʀE@(9� `�U~��p&l��`�7*�4@1TC@�)[ �x �ױ9pC� �@�, ~@���8�@��>†�d@+F��@E�,>����A�����OpTtC7P8N��������/,]N���,]��@3��.�i���O�@xK{P�$!�s� ����/` ��m�s� ��b�E�7`hU@��X- ��~B��43I�b8~� �b� 3@��(�/�b�3� @8 ����<�IàU� $��b�E�� �'�dCàU�$��b�E#��0hU,I �eQàU�F$��b�E$�#�t��#�<�@��U�$I�mhUI@<����f�dF�{��`F2c;U @E@,+� �L�+@f�T+@I� 3���� �+� �.`>�AE�`>��c8� �υ�.�+�ٴ�M�� ���� ������P`>»�.��� �� �@W1)H���UL ��H�4`��������� @�eAwO@�Xd��8J�P4 @ � LȀ` ��pH�@ �$��� (1mS�8�H�g��@4J@�g�@�(J�x�+KE@�@`m��v@V����~�:D����+��� ��BE�X�@�� � �vLJ@�A ��"� ( @�A�2:�v�R&@��m�"�l� �l��-�l�����C�A���(��PTK@�((@E��z�m�A�A 04>���TU���T�AP�?�@+�i(�@pa����8�c��,˂$  �|�@�N���3 �,��\��`0����� �'���OP�~����@�4��O� � @�t�@�4��$� � @���@�4�@4*� �h4$���k��D�1��?��I��� @�*��2��:&� �, /Sl(2�( ��� @P�P}��U�P}�0��]��0��<� 0"� ��`9�]�AW�3Xd@��� @P4A�@ �� � @p)` ����) e� ���Ze� ,Sӓ0B�X#��m< #��5B,#D�`bU K@/S1�X���2��U13K@��$T &VŠ�pJ �� X�`�h�(�� @P4 � � ���� ��@'� xc��$�@j�Z�c��x���+5{��x���+5@�`�� 4��B�� K�( E��b�/�;�b< �BM/� �( �� 3���P4*�J�h��F��b(�@X�B�@l ���B�1p� ���?_�E| ���$���?WT`�� 0Q�@�0MTo���L�q�P���;�o@�SH�@ �� �-� �TDBqH-�*p ����@�$�F����F�l(2A��!T�1v�!T� 67@W�3 6=����D$�`9Xc�h��� � u(u��j� d�{p�?|�?A�� @P��Mp4��!�i@"p���B@��A �d@��9@ �o�l� �e�@�YA�m��� @P4@���e@�� @P4@�A�2w�0�j`�o�l� �e�@�@�4��( |k@" � .����!�p�@'� ��@�?,g�=������P��?,g�=q��P����n��=!��o�%Yg�=�%YBRYq�BRYQV�E�a!mp�fX @.c!� .��@ �� ���c� �@� ��� ��`�e�� ���O�� @P4���P4�@/� cݰ$��"�Z��*���� �X b���@�(+B�P ��`����1�C��"�-��"�-�p.� -��� ->� @��"�c��q� v@� ��B �}�0Yi���n�P�o �t�@0 ��� ��f���2D(J�̗�v���i�x0�k@ �o��@��r�@�d�0AL@T��&�&� �p�a�3 � �A� @�@,�N��>��Z��T�~�j�Q0v�%@0�B�EIEG"ˆ0eVAaH8 �z0�Pm����1�k@��(H8��z� ����@ �C� �XPB��' @��B"��?�J@0hW��GPT����1� �AQ�/� A��:x �CQ�/���l���V�h�i��x @U�l@��x�o��@��r�@�d�� �@ 4v�<�V#`� ��pD�1, L @��~H��0���@��i�x0�k@ �o��@��r�@�d���@( x����-� @;�!��@(pD�F(�P8)0�0 �^@ )`#�(tn�TŁ7�D��3�'D�>��EjP�F��P�EpP�E�6 E�X(��b�X�i�p��i����n�@0 �,@0 @+@<�C+ۤ!jl��,��N0J�i�p�����D !"���� A �IE�CT��B �@@(� �P��C�C�����\0PR 0/ %>@���mF�6���P#@���-�p8��H�-�m�B���B�-�m�B�-I0[��A�3/�AO A� �Ba�=$Aa�B�-IP�-�m 3 ��00 @+� ��XA�I��;����#�-FL0\:�F4`@D��`@�� |��1�0`8�NP0d��l#�օ}l�Š5� .�5�A @�#�*`�pP PRh]��1PR�}�#�n�L[ �q H �B ����HPR����UR�%� �p6�J�G���������~�Ig�O���A�/>LX����Oa#�`��@)����)P �`f@)��p��q�@�sP�k@p�x@ �R���|�P�d�Hz���}��x4!P���@ ���(��)� �����k@�d�8+��p��q�@�s�� � � @;�!� @� � ��O��� � ;�(���N� T �A� A���!"�c�p �G�1`���� �)�l�Kpn��k@�d�0�~�0�L� @ �3M<��*@���/P�t@:�G�1@�u�P�/�p �@p��@M��I�M����Npj"�$7"@���O��@�%@0 ��j���@` T;"`��� A3 jQ� 0�~�QE�~>@�G"@�L4@ �<.�3���QE�q���~� ��OG ��~�QE���*��#�0� s"@0 ��N�<\��� 8�B�:��-��T�D'x���R=T���� ��)�@�����? H� �J@8 �7ڐ�� � ` ��`�+pP0���Ĉ_0�6��)0ѿ� �������V`4��؃��`[�L`��p@T8Ң�~@�  ԈQ� ���� @�LA��<<�̆��� Є��~�$��yPB6�� p�<B6�`<��A0Bp<��(!� {'�����!8a������ �r(섫��%�'| ��)B68!�x�����>N8���� �)����esG(� �`�� ���'���̄��l�X6` ���B��� 3!� �)0p� )a�l�eC���!a��1 -� � �a+l��PV� ��[a7�����F�\!'l�eC� �dx+���B��nX![�"����l� ΄ oNsv� � [��OZ��0b����IW�'�� ���h�<��/���0)�O�σ�P0�P��_%a+���0T� P�a lB� ��V��f+&��A`*Á �P�B`�4�ɥ���^@q8���d��i<� (Y#|�����`� ���P�Q�@]L���d ��LNVe@�:�5pZ�um�����A��`&����D7X3��u�f�L�@(% ���0:`�* �0PrTl�%�$�|@����Htb�<��!F��B�`��D�:Z�@(9"�u0��Pr�� ��B�!h0`���0�#,�TlH(9* �f2J� @`��S��Q�J`�0@�*b���@��J�PS2�� �� ��$0�OQ7@ ( C' }� �0��Thcm��>����0 �6���LvK��E4��f��v�n���h� �UP0(�@�u-!5]�ڭ h c@�6PB� �fQ@����D`0}�[͢��%�����/ A � � |�x�(�� �#x �@�O� Ԇ���@�p�8� ��((�@I�%�>u�(��S7,PP]P����0ڢt��̆�] �ԍ'�� �6�s���(�� d�P��X[` Ps����$a ,��AI �h(J�@� �4�Ao@%��8b��#*��8�w�� @ �. �Mo��g]�P��P8�G� ,yX� :�`,�mXvs`l� `v�60NSJ�9Xo�a�@֛9� +�ؑ��8Mm(�`�ن`G`Xo��6�`G�0��l�5�PA*8m��40��)����� ��*�x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP�P(�(��d�B2 �(P�� tB0h�@�% @# �ep�~h�P��p�`4�1��� �BH@��$��P�4@� �`��Vp4D�t�����Vp4AY�屁����3��pK�5�,���!� ~�3�@`�0@ ��X�0 0L�)����ࡨ_s�-М: �! pRC�x��|JH rK#`� 0bn�_�~�|>�>�r+`�|>�>����2@S�,� �h��!<�O ��p�� �B ��1`�`!�EP 2�p�!p�C�J�O����2�(׀���A���vr��q@��6p�@0t��@`��@��Q@�`�`�DyF�H�P0�DI@H9�z��5���I9�� 7�~R��p�p��@�1p��� ����|hm �p�D$�` ؀"�#=������z��hS�!���mIk���p�Tp(�����p �8���f��;̀��@ �) ��xa � �7���� (���uA+h6�̅d�pB� W'�f!)�*�k�3D��ni� �T̀p���p� <�'�"R����?��'4�CP�"6��'�� P� X����6p܀�3p �8���f��;̀pi $�4`V .8��ZtO� >AHH� � �ZA `�\S���� c�������� �a ��@�@�p� �9��v��x�0�䄜�ANPv!L`�B���,�)��XS` <����0 3���w�1fB h ��%��Pv��({Ɂ?����iG�����p=h &�%����o8��ğ�I��;�?҂K�0� �(���n(X�Y0:����|�z�+9����@P6D���dӔ��p��q���l��J�Cp`%�!8�V�JX� �d��,�2� ��1A�(��H0�@���8 �@8s �:P� 0����3 �0�g@ ��B���<�0��hS�!,1��`lB�ߣ��������@<�_��0�̄}�/p��Zăx���{�d�=�1��a\l�{����T ��&+b�)0+�^� ��L(` (�^� f�L`K�c�%�K �L���Kp�%� �L���K,�-�KfB��\�K,�-�fB��\�K,��1 �L��@.2�P��(?��P PL~��6�!x��)8��(]��X O�>��1��!�CBK�8�%���� ��!�c��6����� (#A��G�F�~� �����������A;< �~l � @;�PR�]`6 o1[�c-&,�����R�Zai�Ͱ��fX K#`X A. ����(�U�[v >X#�X A. ����(�>�[v >�b�G ��+y%�A�`$8�>��@ؕ��h��/|�@��'��x �����ށ�+y���?��]�+��`W��;0��´i@?�P�xp� ����s�`<� X�~� 0@�`3����B� 7(� ?@�d�0�1�ꅤIK���� P�-p �` 6�T$������.>�k�)�">����҅m� �� ��Oc4 OK�!>V�taFH�!'l/�.>�m�4| ]؆�XY�eaԟ P�������|p\� w$ȅ` ��]� w$@���%L' �BK,!ð���2 K� ��� ��X��#P�%���XB@4+� �� �x/�n�D�=D�S,�"��^#��h��3�F�FH�a�� �i�E� #`'t N�)hC�H�Sp���&hC�;����>�Z:��T��tf�J`>�m�̪ٳ��0�J���_�|�m�\ lj$��3{��xKK�*-b�V�/k>�']�{+�늉�qs��a2L��!�F���2�`)����p#@;(�?�P�B�:ځꠄ�}��v�4�8h��}��v(�C;��,P��v�'+���BV�>�A;(#ed��P :@BAL������OL B�5���l��@V؂�  �}���:@.�ht�xR����+A.���/ �\( ��t�40JL��"l����͠�T���C6�Z:� ���������G�(�#�� �C�_�8�wrq(�+���ҡ)�|�C C�[x n!t$� C�[x n!t�H�>`f�0_ �@*H@ 0�fV� m.t�%��BG 8?� t��ahBG�04�#tQ0�}��¾Aa�©�'`$�őP�A  +n$��t�b"@�-]l��4�L(m�;��o(b�����"$J�� ��&��k&1!&�6� 9�@��`B x�F# 0 ���{d���v�����$�������o@�u$A �3y��� �o ��� d�1@�tЃض3yfؙ<��Z�p�>W�i ��B�}0G�M�����&���3H6�b7d�`Xv�� � ٌ��`":IHˡ3�*����B��@p�N� B��@x� <�1�_ ~���� �_,3P � ��n� ������!�!�H6G� �;S� x ��V�M#nC� �����v�W� �)��#���03F�̸ ��#ܙ@"f�í��CAH�!a�?p �)�� ��� pH =ȅ�@0����������З���{�m�_pR`DP7@)0 �o_sY�E@ @`�( �4�@@ (�T��` �`�l@�| P��@x�@�@�@ p&� �� p����A5�` �� 0~h�/��D�m��[�#1\ P�*� ��)@ ��0@ ��� @�6@ p�9@ ��)��8@��9@ ��)@ ��;��>@ ��@ �mG1 �@� @�6@ �9@ �9@ P D� P�%�@�F@G�(K@�, ��$J��$J@�8O(R�08T�PXU��,M@�h[@�4N��PS�0p]@`TI��8O�@L^��|N��(M��8T� (R�L4�� $J@�<N� A�I��8O�@\X@ 4c@�A�f���x���i@p�o��q����t@`�x@p�f��P|����y���T@�~������� h� @f�����! i@���"��6�"��#�8�$ ���$@ Tk@%�}P�@p���$@ Tp����py�p`\�@p���$@ T���8&� ��`h��&`h�� p' 4 L��%0P� � x��'`h��'��@(p�@( ��)�(��0,K@P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@`�h�+��h� ��@,�n���p@ �m�0�fP����8f����� �h� ��@!`�h�����-P � �4��-p <l�"�4��# De` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ���� ���(�n�.� �q����t@`f���@�f���(0 \��(� ���/ ������0 ŀ1`�$p ��(@ ��'� |���8���8e@2p�k�p�D�� ,m��0��p4�3� ����D��0 (6 `8�py(Ԁpy(�'� p�5p � 0 ��@60 �� `8 `8�6� ��!p,݀7� |�8� ��@+��@9�q����9P�������:������@;������=P��q���,���>���>���?���@> t��>P����A@ ����p�0�A`f��4�� ����x@�L�@B�LK�B� ��� ,0� �:�<�0 n@?� �0 l@?�(A����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �@2H�D@Tp�DpP� �$��$�E`$���F�hG�<�q`A�� �D�AF��0�H�h%�H@���Ip`%J�x)I��+F��&K`�&�I`���I�X,K`�I��&�E������0���vK�����aH'�I��)Ip|�K�e@� �I@2�����$@*�n@L�$p@ �m�0�fP����8ɀL0��@�5�M0D�@+`��@0p�v�: �I@2`�w@p�1A� ������M��K@N���@O�$>��K@N���!A�P� ��P x�0g��QP�m��C�% ��` p���m�0\f����8G���\G��� ��!�$���(K�� ��3� ������0�@��N�Sp�yT�DR�T08tFp<�S��TAU` WV� ��Y�V�pH`d@W x_Xb�X@�e�`�hAZ�k���C�Y��f�Y��o�Yp�q��!�%�\@�v�\0�q^��tA^p�z�Z��|�Z��tA]`�u]`�tA_ �u�]��t�I`�t]`�t�I��n�V`�t���A`  �Aa��a�p���p@�[A` ZA9�(�A���A9P4����Dd` D�Ap��Ac��q����t@`��8��0���0��d���eP��,Ӏ"`���A��h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@`�k��q`m��d��p@p�q�@�v�V�L�� �L�@2 $���8f� ��@�w�f��xg�(��g� t��g` S0� �:�!��ڇe�}�D�h0�e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ������. ��p�p@ �m�0�fP��� �n�i@f����@�(��g� t� t�0��� ��@j��� ��h���G2�}��@j�}���h� '@j�}$�� P���8m�����p@p�q�@�v `8� (E�������X@ɴ2 O�ӄ��A"�NV��Ut�2�N�%�O��:�M���46�O��;�L e4ATU���T�g� ��� 6ɓ��;KSZ%7eI/ZVӡ15bU����N�T�"%US�=iN���;�ؔ��8���;�a��$;�N�SÄB�O�S�5�f�YSUyeS���.�S���M�Mɒ��M�Op��$�SeRU�2-Qx���2-Q����a8!�Q+IS";O!�u<�LV��2YQ��/����� $c���Z�N�Q���;�MdS�.MR�RE6}Qӯ�U�N���t5�S�R��U�N��1]Q�U; O����N�lS;aL��Y�;]a ��H�HLU��R�N��S�N�S��;�N��<�N���;�NU�U;YO��$<�N�S�;UM'T�;%O���;�N�S��B�N��D9�O���;�N���T5�P����;QN���D>�N��:�M�� E; O�S�d=�N�S��;qN���;qNM�4K�I����@!N��D;�N����PAI�S�9=P��T<�NHS�4;%N/��;�N����RmI�J�UU��-�R��$UM"�JU;MI��;�NU� �;�N���;OT4%$�M��u;�M�U��1BSI5*QS�R4%$�M���.�U��ה=9S�S�4*�P �IUM�����m4B��D%O��T,YP ��7�g�MÔ;�P-��;�Nf50�R�RN%�N4�$�NUfu$�Q S�;UM�T��J�K!�x4Y5I����;EV S��11Q����OM����N9�O�;�H?UZ��,J��y�X�I��ش;�Sa�{�@�N���SYG����:�NA��T�N$T�$B�N���SYG����;�N��T5�P��<�N�S�:�M��;�L ���;mVo�t/�Q[�;UM-��<�N���49�O��;�NUS �:=O��4>MN���; O��D@�K��;9m*���;�N�S�=EN���;�N�S�D9U5R��:ARl�T��9�R :�M���<�T��t;%U�S��8!Nc��dG�S�i�%!Nc��4A�M�Sd�%�N�S�>!Nc��tC�N���5UM��$5�Pb�H�Q���G-K E<L����B)L�S�#�NJ�s�D]T-R�$B!U����;�N��T5�P��<�N�S�:�M�S�dZ�N8��dZ�Nq��45�V��t#MM����;�HS�i�;�N���;MP�Ԍ;UM��$5�Pb��:9P�� %4P����:!O�T@F��N��$B!U�S��7�O���;�S���dJ�g�L�T?�RjT�tJMD��tB}k�L�;]S����F Lu�k�\�F_Hu3YP� -�Rp��;�N��5�!}U���;�N��U1O��V�N��AUM"Z�;IH�%8�OU� ��)2���TJmK��t65R E<L����B)L�Q7�N�S�46�N$�; L����;�O���8�N����;�N�S�$B�N��?N��;�NU� �;�N���;�N��T5�P����;QN���D>�N���:UM-��<�N���49�O��:eO�S�@�N�S�9EN�;O���t;Os�\u!�NlU�$S-HU��V�N��F�N�S�tB}k�L�;�Rےo���NjR״<�Nc��EAO�\6ڌM�;5�Q:$�;�K���=�N9յ�I�F��&5MR���;uR��UO}���)P)�w�Y`w�T5�Ps��D �N�S�;UM'T�;%O��T<�Nc��]M��>�P���d:UM"^u;iH��V�N�S�tR�N��eO]՚�P�N��2U�P��ش;�P��ش;�P��ش;]P��a�;H�M�;I�SՄYI��;�NU� �;�N���;�U�S��8�O��d,N E<L����B)L��M�N��4)�S��C�Q�SÄ(uV���O�Q��N�N�S��0�QR��<�U(�� �N�SY��N���X�G���;)V�Q�$B�N���X�G��;�NU� �;�N���;�N��T5�P����;QN���D>�N���:UM-��<�N���49�O���;�Nc���B�N���T;YO�S��;�N���;eO��=EN���;�N�S��;�N���;=N�u���N����X�N��T5�W�Q�t^�N���;�N�S�tB�N�S��;�N�S�46�Ne�;�N��y�@NzZLRMO�S�Č�:��r�7�W�Qk�;�N�X���V��$<�N�Sc�^�N�@&��U�S��;J �C1J����BM~�DKL(�(EP�۔@�LU�T8UM"�;�M��;�NU� �;�N���;O��ش;MPc�%8����2AP���;�N��$B!P���;�N��7�N����;�N����;qN��ش;�P��ش;�P��ش;IP��l�:�T�S��;UM�Ց�;�N��T5�P��<�N�S�:�M��;�LG��$?N_Յ�U�N����)4iՊ�T�H����ql� �$6mP����;if���I5*��4�O���XF���[AN�ҟt`�E/�R�H�Kt�/�?�S����;J�e�AV���;�I��z�X�d6��D�QT �"�O���� �M�I�"�O��(�i��M�(�N��XTa�E�����d����^�N��M���O��t��/�zU'�J���4]IOaQ��<�N����P����;�N��4��8��t?�g\���;M_��4H�a�O��;�N���aH��;�N�S��'J���/�Q��>�V����;�^�N��:S�gNAJ>TV�]QS�tL�K�S�v��N�Ӈ��K�gNAJr���>��)�O�W�;uX����K�gNAJXT��<}h�O�$5IJ��x�yUxX�S,�M��G��N�UTK�J�@�QUD��F�K�IՒ6�K�LK�ʔ�N#�T�o�B��{�)mP����7�\xo5M��O�AqM���;�N���j��U(�X�R�3TR���=�O��S{M6|T>EYX����K�gNAJ>�����PS���T_TM$`IF�����%:�x��S�R����N�S��;�^�N�^qF���EAh�L��U�a�N��7�RW�;uXW�8U-)R����G�K7 ��N�N��d�D�S��!YQщ�;�Nl���:�N�R�b�N�S�t)���S�b�N��K�;!Y.ђ�;QO�S��yO)V��)Y�STtb�N.���<-X�S�e�>��I�;�D�It;QY���49>Ĕ�D<�N[��T4eR���C8 :�C��8�&A��8��Q���=D_��}Q���%`���E� �;A�P�&�IP/� P��A�#���E� � �P��A���G`$F�.����|@2�����)d ���(���(�Bp��@�"p �B�"d ���x /��p)���Vu\ P��}����yd� ud B2�)��Ǧ�d  *,��\p� l ��p�0\f������Vh�!H���P��p!`p@P*�kyP�m�@�q����t@`f���� `|f���*�  � �P8K��*X�Xm�7�*�K�E`�����(,L�`��«+� ��`Xm@��*� ���,�7�*�K@�`X\�X�«+� ���*X� D@Au`XGԡ(Q��yDR��u�hA�1���Pt@A���"0��� 8=P�����p @O���B �� �F�� �@l�%t����h� P���p+4���+� O��`��L� �F�� !P��R��p��ԑ� ��ԑ��P`+t�PP+� �~����~�,#��8�KPr�%�_0K@�a���K0g�/Aɑ0K@�a������D�������_\ ��K0g��ŵ�������_\ &����Dq-�/Aɑ�L��b���En�/��!����&Y� ��������, ‚@��`8�0,�f��@,�l�"� S00u4�Gg�� �:A0���Gh�8��Vp8 ���p, ɂ��, S0�=��D�}����, �@@�P� p/�#P8��}��p/Hއh @���}+�P)� A@+,�@����F�� ���e���F�lP��Q �0yh�TE+l��`L�@ S0�<���9AA��6@�`Ds�@�6��@p���@\m��8  <����p�*P8`���t9�-�D@�-< Kh��K��0-���g���0-D A@-�kyP�my���� ��.@�r�s@`�u��� �B0=A2 �� `8��Ղ�p-�B0�@2 � �-d �P` �! ��p��B��|�P� l ���-t�py�݂�@*��c�h �T� ��l�`�[��p�p����@*� (�A9��Z��!D>0!�B�`!\ � ��P� ��i� 3�L�8$h�0f@4�JA�hP�%�.���N .� ��00 � �� 3A�0C�n0�������,��x�� ��G�`.x��P� ��P���^���7p.`+��x+�^@.�{���y��� �{�^�?�%� ����^���� �x��^�� ��^���B����G ���������� � {�i��G���%�1���^����1�x��^�� ��^�����i�{� �D��^�����,�g������,3���4�º�.4��g�L����t�g���G��X��0i� �|\B 0i|��g0� ���0i� �ƺ0i� �¤�L�AG�L��g�.|'�g�.�*�g�.�A@��� ;A�0��B�g���g`/��@i��B��/��0� �@#�����/��¾�/x%��(��¤�/h��F�/h�¿�h%�h0��A�a0+�=�����%��@�@hC�0��1( ��u��P0� �Ǡh@��h��1(����00\˜� a�NL a�� WV� ��Y�V�pH`d�X0�dAY ��P8s�ܑw]0@O� ��p0 ���), �>�0���;p0 C{�4 �n� ���0x��0< C{� ���`�0p�D @nD�p�+�IaY@F p �E�r���ܡ��+@21,@21\=A21@ C ` @ �FO�X��1h��N�h� ����`i0A��1$��N�X��� �BĐ|h�� 1�;AO`i@ �$� C�}���0�=��1X @�`.D ɇ��~H �h��Đ. ���`.@ �AO01�=�)1�p��@��+��T �@18�Š��º�"` �� �d �� P��GI �C �%� �+@��T�P�+ �{�A� P�%�.�  `1��%<�1t �@��1\ ���CI�CI t ���d��y��~��?�F��?�k��?��?'� ,��y���a\���� ���10� ��_28��۰D|T+���o�G�� �@/�sɵ�y���@/�s�K�y���`E�A���VDjX W�aE�A�ŀl V�|E(�E`E�W„01P�`\�'P`��%@`1t@pD�čG [�mpE\A������0x�:AI�J��+�*�J� ��l@K�QDC�P �E@u/� ��L���@�����I�i�%Px]��Px%� 2@[�\� �ɀ����+�1�!C�Q� 'A 02�D��52� uF�`2`$���E�D`���2d`���'��pi� *C �2�,Cˠ� [��a2h'�ʠi.��%@>�2�/C>�20� �����3��p�i� %��� j�̠6� 0�K3'��`u� ��ա6/C̠6� jC��.�p�.0�K3� '��� VG��2Xj��P� �>� � ���P� �>�� ���P/ú�� ���P�3��)p5C`�h����6p3����p@ �m�0�fP�w�y���T@�~���@`�{�P}��f��� �ׁ3<��1@D6� H�@��� nB4�3� ���� h� @f��� �2�(`� �,~"��;C �i�P�n��k@�d�0��@!��7�3� �T2p ��M�4 �A� @����Mp� ��B�� `D��Q�/����π|�i�)�lq�3�4 >���p��q�@�s�@5p  @�@~�0~�0~�0�!P�@!� �����c"Pu�i�)�l�GUPu� 4 U���n�P�o �t�p ��0��p � ��@�%@0 "�\d� ��%@0 "P4\d� ��*` �FLJ`4�[�*���P cP�����j@+� ���P�m�� �o��@��r�@�d�� @� �x �����P��$����,0 ��`,�-P 4j"`,�@#�<@�PF���:�$�]`F�$�]`I���oPwXV3i0���6����>����m@��yF0��j �Czm`�$�g�dE&�IT ��`D{���z���0 � U�Up ��WV�h�G@\@x��@x� �lM�4@x� Hpt�F�t���4�����i���4tMCà8 �F�t��h!@�pt"@��i4 �A��M��p4|[@� [@�����4��F�t�FҐ4hM��i|NC�1�Y��� @0�%�ih [�g�5� ���5�]��p �YC��5�j"�5D ���,Q��p �C��0$|�`^�1Pp�A2�� 8�/p��Gؐ � ��Ql�G`\p@�h����5� �p �I��� ���1` ���AG����AGPםr �I�@`����,z����I�10n$I0� p` �0`�) �m�� xʀ1`h z��N0F�1h �m�D� �P7�,A`�w��0` t @G���r1 xʸA`��A`$ ��A`��I��.€�0��J�� d�>�" ��q~0 ��\#�n�� ����de�����F�0� ��H@6� #�ҡ%,}@�4����KGp~� M�����٠h� ��0,f�+�t,@��F����f�p��R�1P�l0@2P�L�Hq� �� � �ǀ� �#�Q���@G�#��$��� �rIk���A��F G����t�>,j�jT�E@� ���>�k�ڠ6�7�^�6� �Ǡ6� m��� U�l�6x #@ �6� j�6� e�۠6� zQ�0���ڠ6� j�6� e�۠6� zQ�0�o�1����y�jI@� q<�6� s���x��x� �1�� 1@"$1���y�o�18��}�� @'����n��k@�d�0�~�0@~�8���u@3��k@� 4d�3P�j"� tC/�D A:� � ��Pt�@���A00� -��� v@�7��P������ z�P�d��7� ~�0� @0�@ �AAP�w�pQ�/p$Q@�\m��! �A� (�B�0 A'�� "�{C;�7 {C;� �i0� }0@2P @;�7� 5@ ������p.� |� 0� �7� ��8|78�~C ���>��*���8*@ �8΀ 0��i���� �ΐ�A08�|�#�7� �>@� |�# (� �@� ����I@~�P`~���� (��@�%��7� %@�P�$A �7���p8��`��@�@ H1�0��0 ����8��ß� �����u�%�04���� ���07���H�� C��� ��H�8.@�1$���(8.@�� $� �6� kƟ� ����lQ7 ,�� � ���p �zC��8� zC�1$zC���:�~D�Q�6�� �}Da��@�Q��F�Q��F��}� ZSp@+����0�A�H��A��p��m:,#�;@�A��im@h.m@�^GH�#��OC�qm� �mPg�V�G��w���Gh cd;�G�؇mp� mpp��A�� 5|F�mH�d��I�� Q���1F� ��0��0j�Y��� @0�%�ih [�g�5� ���5�]��p �YC��5��C�q h�åQ|j"�5D ���,Q��p �C��0$|�`^�1Pp�A2�� 8�/p��Gؐ � ���Q��G`\p@�h����5� �@jH�<0����0|F0|�0h%� �}� %��|�#�PL���@9��CI�}�%��'����P����i� �� �y:0��CI09L��D09P%A�P��C��uh���9L#@h 9p���PP�C�HaG��9���x�9T��M�f���:���0:��C��9�#���^@��A��p��z�P:��n�A"��������\�����0:�#���� ����p�C��4G9���� :����:��l�:|;�\��������z0�^n��b�6�&��O�&��!�&��@:�:0)����j" # �"�� ~�� ��� ��� oAd�|> �'0l���� ����<_��(�"pj���q���h����l���!���@�@Py�n���{��!0n�@0 @(` |���<G���!�?P@~@( �<�� ��� �@��! @��0"�I�`��@)`�f�)p �k@����P ������� �v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �c��a���x���x��p��q�@�s��  �@( `�@�  F‘`$$���` �@';�Ňcp ���'� ���`p��d@G���N�gT�@!pDM@!�$\Q@�$�<�pc�p �i�=g�Gp ��ǀ��n�P� q� Ё:`�p Ȅ�Pj�M�@�;��A0� �����@2������bBHà,�����MX;a 䄎�ZAOHɀ (���r�"���@�B&0��4��)�k�4���po �8�h`�3@��x� �<`���|� �?��@8y� �=@��~��El�!8l@�� P����VP���k@ Ў Q$>��i� ��`4�@�p� ��� �@0à�@`�0@ t��3uBC�l@t������'� � g�>:!4j� Ph: f��s7� � f�� ;�Ln� �n��`r�Y��8� @@X�4�e�*,B�q0&a��\��i��`�*JB��aX���>AH�4�W���h08�"X��Q�"��3��p!���5@��0�t ]`�����| �� ��ָ?[� dE >�"��ϣ-�NC�!L�� �O�E"Ԁ� ��H��|�e�ĆN@h��� �>�3�#���2�8��6��2����� .�� �m.�@[�@@��  B#$ $�$l�E����U�J�@��Us+ށ�X��[�$ X5��V� Sp+��`���_��@,B�x��UX�}`;,BÐ�c�v���wn�X���xKc ����K�V�ہ;,���v���0n�)����U�T ����".���DD� "`��ݑ;v�����/PtxG��r��DP�� �&����; Ą��#x��;t���c՜��;t������a��`&��}��� �`&�~Q����\B�~�J�9(�F%���5���$���� �B�(�����p���H���_� | �,B��� �GqIB ( �"�� �Rp ���I:6H�0�?PzB��x ��$.�p3�|���} �f���մ��ǧ��"(o�}l�p��VHWPJ��p̣=��W�h0�yԆX�`@� ��yL�=p��Ӄz| v?p����G�T� =ʃ���Az���n�+!kd�����8=�Azl�O�=JϬ���yК������~T��q=��J�+!k��qz���P �'{���A=H�����d������[���>���=���YS�����"����=����� $�dP�@2�k ���@*h� Ą$� �@�p� �9��v����L� 5�&؄1 �A+��`�����:8! $;��@8n &$�d0 �� :!܄%��@N�<��$� ؀"� K '(;� PAA(d3�@�x` pS�!��p�C���l@8s��8���3�C88̀p�$?c�;f�D�$�tB B�@0 H��� ��A��� B�D����`>9��p�f� �@���-�G '``���a>�Π�5#$���Qv� � �&~섎�g��N�eg'������N'``���.��� !',hQ$�ģ�Ht�%pf�*�H��>Ѕ>�N� �0��q��p5��<� �%` l�w ���X� l��A0� [̚�1�Ǭ�K�lL���J@��5��������9%��,�%�\ \X�` � ` >��� [a֜�%�jz�VXg��S�>�N� K��̚����� P@��n�~�&p���=����� �\��S����� �3�J�I;�A؀��l �>i����yn ��>6��P��d@��sD� �>iG�2������ ��@����� �N�.�7��� ��AZ���5��K���Gp+�< �v�h��H�@ �m� �;� @h% ��;� �  v�.؁nP4�K( m���%�@7 �%h�6���)�b��@@���,��� J��) ,�h��BI ��R@X��v�ԅn����:���Q@X@Ih��:p�6� 4Gh����nPЀ)P��4� R�)h� ��A�NPp� �UT��m��3���T���?����f@�*��@�� (0` �!`� �E��"`���2 HYj�h�� tA8n�t�B8� �K ��p� D��p�Th }�)� A �M�@��0��`����� �A�8:�� 8`�� j@�  �5$��@2K�,���` (�&p�@H�� R"��`+dpA�A0��M� �`� �`+`��0(D��B0$'= ��?����ޠ��I�׸�`�A� p?�������a܇h=pA�A0�3K@���sA�A0�AA ��0%q�"�S2{ �)� �����`���|�ژ���\���%�X FS<,F*I%�$�X��,�a4��b���I%���T�Jp@ �!����mJ�n���xX�T��N*� �$���`1tC P%��X S�J,�)I%�b�S�JR�*�����a1R�Ű�$���)���I\�j��p�� (*P���B�"�� �@�x�CZ�=@��h5�$��W�, w�AR�@,����Awp��������� �:P�g`D�V +A���VrX�X0<�'�f�+����0�� +)�� �0�J�8)` �0`�� �0J+�60@�@���X +y0X�(�+�6�0V"*p�`%��VKb ` ���P1�0+�JT 8@��J���8��� $��,�"���i0Kl�- @��~8hPK� �-�"�@-��8�p6�Cp6��J�kt �=@0��i�~�q�pK������*�-Q�)��kt �A 0Kl�� -��JpK���V0Kl�J��[�h|�F�a����K���A�K��D/�K��.q�B�$*B< ��D��4��ħ�K���.�0� �.q� ���'0�K0�� �i�'�K�C0�@��AL���/1H|�� �x�0��Pt�rP��@p�f��:0��01L`�f L�ܡ����P(�B> t���>PL���1pL�A�>�m,��1q A�>�pB�>�L���С� 0 ���@��$B�>���>�T ��С�B�>��@2�L,�GK���$��2�$�ĭ@$ʄ�P/$���X ��2�L��D,`%,�D3� �m@��|%�'P,ˀ2�(�3�L��C�?��@I� �- ��]�,-A@h8-��,-�3Q0K���0�ǿp,�GK�h���U@Fx-�2��`�/0K���0�ǿpX ���y�����/\d���X �@Kv�dĿ @����@�M�L�M� @ M,�F4Q�L��jDK@��"0K���4\���K /@�� /0K��x�p� �4�y\��,�p� �4q�� L*By�,�P(��4�*� �4a#<6« M� X��� �īp(��Q��5�nT�5�/���J� ����*X��4a#<�F�1,6�P,�B�`#� ���*`]�ǰ`X���04 �B�����"� uG��0h ��*� �F@w4 �� @�<4��a<O�1�I� �˃E�)P!@��X!�@HR@�*| �B�*�cB0 H=UG�)H@#� �§@)�4§P�� P � \·�Mh@6!~@���qM@���M0 v?����ױM8��PN�_���� �?�2l�Gy�2�����|d���07����|�D��M�+C7�Mt���Mp݄o@'t��� ��A+�Mh�@ �M��8N�������F6%x������7N,�8N�PnN��8�P��8Qp`��8���PNp�D9!�߆�-·a(-·q('�� �,�p8�l�q(��V�}� w�V�d����t���w��'��� t��@�'�p&�-����D: ��FK`l��:q&�[AG��YC�0H�;���;�N`��0���;�d ك��N@ �<1B�P��=�+A֐=�΃<�d �;�I��+A֐=�󄸱d �;�N���I�Np`r�=`+f�t�Y=Qd�`�yG< f@=�wG��Cx /�����0 d؀PO�z�P� �@n0]�Q,��)�OLz�0��ǿ�@�An`h0�Q���` ��6�`����=��0nx /���w���P�>Q���0S�=�tS�İL��pOH� �>�O��pO��� �3A�Q�w��f�w��G�3�L���`n�3��O��@�O���.�|<�?�O�w�"���?�O����A��D+�*����a+D��>�i %�>�O<w�G���?0� ���*<�>�O��?�O�w�G@��ĝ�xʁ>�O�vA�qg��]Pn�!�0H�y���w�?Qn�� \�C� � ��4��'� �g�Y:� �Y����Y����n.� ��n.�@>����A$�p� �\�� 6 ��h0|���ipA� xD�A� D�� ��ai����\�`i��G+P�#��`i� ��+�� q��F �� %�$DP���Bl���B�+��B� � "�Ph ���8f� �@��(�#�)d ���)$j��qL ACP�x�P�>���� `8��f��pg<��1 � 4����� ���I@2P$���rL�8�@p�1A� �q����t@`f���I@2P�-���� !tm���-� �:`�� `8@ q`��� ���"0C��@�f�Hl�"0C�,D Q�k�83���r�s@`�u���m��4L���8f��<�8`8��8f��e@%�v�x�@�k@p�p@ �m�0�fP����8f������ �e� �� ����C��� �f����B�,ɀ �C4 e �B�k� � �A�n �B��@p�f� f���&p ɀ � (3��\4�`8���-D0 �k�1 �? `8�(0 `ـ��C&� ��!��) fCD(A��@@A<@`6�8�: ��p�`C2 DC!D$K�� @a�F��8��D�0@qD|m p�@I�z��� (*�,��0�8�!�y��ɠD\��(%��,��������,sA�`���� � ���-4 �@�|\ �(�BO�8��(ƁaX�B` x���\� @D >�D��-M����4���K�#tN��@��L��(���}�Wk��Dt��� tO@�E@��L��(���}�WQD2�F��C��^� �v� ��Pk���4_�<]@��n��� ���8f@ EH��q�y�� M�p�[�PL��)���Ay���0E(�� �m���p�*p�~@� ���!p�QE�q��XDi���n@7 S0�8� ��0K�pdS0�d���8f��E���!��6� "P�[��\���n@qvlp@ �m�0�fP����8ɀ�� X �(0 \��(� dl�"0 � �ٱE� @�H� \$ ppl�.X� �.�*��k�ā�C܀�Ka$t���HA!�d�T���A0~� 0�HR۩��|MFˆi6�P�1b�M��Ȇ�t�<1BA(�� �� � �@`g$�2�@6  �ؐl� x�&p��lN� :A!����4R��`I�� ��@H`d<$ �@�` T B�5�`#X��F�y�`�N�F:��]GsH��)�@Q�1P~@��i@<��4� �xpo��5P�� r`�?@�4���t��j ��)����d�x<��H�f$k���(0�(P�O� LC �2�@�@ǠH5���%  � ��p �`�`\2���ǀ>�D H�"�5�� �;�l��@��� �̀�$A�$�@I�)$��� @@h�:����c@|�p;�" �B� �#� ��� ���������Ͳ �g���>�`k���}�|���� ����� �S��`���R����&Cu'�?�'8B��) &��x@T��# �|������Ԍ�_ Q-5��0/ .@�I����h3��|D�BQ�$�� � ��)��hB� �T�f��Ox �!,�nF@��>����wӍ�p%� Z�t3� �i jA���` k #�H� <d�$���#��w�1��Utz׋�wQ zWG��]��1��[qVl p���p�V� �\�9s��a�p@� 8�AyPhp�V� @���Lp�P!X�q�L�����1T $EI��R�IqR|���7� A�@(�$E�`�߀R� )�o�$EJo�$EJQ)`X�q�f`n�h�0\V���X�J�R�d�m�R,{�N@du�� 6x /@(� -E�Qw�*Ÿ����P�*?�V�*��w�ч0r@ ����F0r�> ��5�чo �� � ��r�>�RD�DK}�� �/��S���p��¦�ч �-E��)��� S��L1S(4E� S@ d@��)` �`�6���@M�=�)�%t��M�Q|���a P%�` <`@�0S�Y�pS@�0S���LqS�O�` !���!��0 =�),�@��#���#�)0���0�",#@P� !�� �B �| �@M���@` ��F*}�P�@����PA('�o�w�~�<;���脼�S�iENa x'�ox9�)���Al��)@^0o�#�K��y&��:E 2��D^`�y�AP�yA �`;���R�m�Tp =A�1HP��)` x��;�}<΁) ��@o� F���g�[A�� Hj�P��� �����j���p$HG��PH�@����� �C�:�@ �n0:L�E0: q��@Qli��� �X��p$��8� ��`p$�< �S�}F�P}l��0: 8�P}HG�E ���������� xՇP}�@ �-��p���(� dk�(� dm����(p p�*�:`�� `8�(0 \��(� �q6� ��`xK�!p��@0�$�S��Pox� `8 `8 `8�`p�EG!3��7`�8SP�E� c�� `.�*@Ga��� ��*� ���K��&@+� �BH ���}�"�:��/�K1c�LAI�kp �7{��%�*@Ga�*� ���Oq@�$����@�0�@�SAPT�@6� `�(�-� @�P�3��p� �(�-��F0@�tA0@`XA�SX܁E�>�E�}X�G�S�P!�B��&� �9�I �@�@ �@p���i�� �`p@Gp%�Qp̐���D %@O�)�I� | I� `�&�a&� @����@<�� ��Dm �CE�-� @p \ Bp(T��q8�!�� �Q�/���P��m�P�o�T��0T�m�$ m>� MB@ CE����@Q�4�@���m@�0T�EE*���P��@ � M@*��EE��%�F�/� �����!�n� ��h����% ��Q�/�G���/� �q��~�8Kk�T8Kk����� v�q(���q��FRa�Kk�g�v�N� � K���T Kk�g��Br@/0�Ar� $���h$4�.a(񀜁��D< g�JEr�K(��R�Lnp��7�hlCr� xɁ7� $\�7� $Y�7� �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P@����M�S�d'�� @�@p�O�\P�s��a�p�`��(@ @��h� ����`8M��@ ���(�-����K����@0 n�SAi �0@ ƀ7�GG�!�k�` tm��tpy�6@p����Z��gx�3f����@2�g��;"�@� !��!�����p@O�!��� $B�`",��q�����qh ��'�� �.�� ��AT��Q�.��@�$��i X Uh R�h X�oh �0h S�Qh 8h � �ڂ0:� U,�A �.H �I�� �I U0&���� �I Uh @ -h ����5p ҂��K���1^���=����9�.�����v����*�[�P ҂ F@o F'�Q�@�I�}LbPpp%@�@UP�D@UPTU�K�m@�/� ��'A �,�TU�K�TU�%�\B�6���T�o�T�T�o�T�.��.@��,4 �D��,4 %@��,d U�o�,d �A�PU4 %�}�,'��/�G `U\�V�M�@+�FXl� �FdցV�ol���op ���5p \��%�\��%�*B��o�����U�u���u��"0 ]���"X҂UaUxĿ�U��q@x�1~|*�Uq@H �UaU@2p\@2pl @2p @�� ��@  �*B@�Fɀm�;ɀm�;��V��� ���0�� �1l�G��0�Ay l� p6��?�� :A����Cy�� :A � ������V0��C2�~[�p[���)�A���)�� �*�Xv�BX!Ft��3��[�q�)[�Vp| �)@H/Apg� ���O��a P҇ }����!}��>`�5ŝA~�&���O��� QHw�]P�@>����,��*��d��he�����GY!}�{��he��������G��GY!}�{�Y�G��GY!}�{�Y�I��@>���� }H�ǝAV �> p�ā>@���>�y���>����>�J�8������X!\A��V�G@0 �0��GpE�{�N�|*��`� ;A\A,;��S,�p+0 r�0`��qE|p�ap|*�apq����{PC�A\������ �h|*�g�u�Cg�( ��0 �FK��y�\���F��t(@�!W( s��0 �F��tyBN���F �'�yBN�4�@�0lLG�TGg�(%9QEt@�apT��Q�09��G�#��1�%�^���AI0-�]`W�)��� `p����ap��G�tGI� � �����G#���GK``�s@ l�Ş1��^�w�.�Q#A^q�%AI�A"`p$��i�m����L�X��P3`y����0�(�L�X���� @L`6)B#@�0S41A�0�J3E`y�J#@�0S4�G�0t3E`yt#��� �01� ��Mn���.� ��F���L�X@�@$� ��A$���L�X����� ��a�� ����p�Lq�� @LPh [ ��E0�@�a��@��G�6�� �Bh�iD�W{E[A �|E_AA��G��~���W�#@0yC��[�}0I*�G����u�a���D�!H }�^�}��E L��!��h)�G�`�s@ ��AP�G�U~�)�A"�lcP����� f@Ͱl@`�o��@��r�@�v�P�d�Hz���}�w��R� �|@�� '�Z���8ŀ��a�3 �7C�3� �@�@~��l���� 0�e��30ɀ�x4"����"0�e���i�`� k@��f���n�P�o �t@`��@�y��H{��k@p�x@ �R���~�0pB��u� �#P �M<��*p3�8�� � �@!��x �����P�:� ���@ ���(�`1X�`A���`QqT��`�)� �EL�} BEa� %@b��!X��a�O�R!1$ �B�( E�qp� B�qp ��P(��Q@� �#��.=07T��17|��#0x �B�( �#�}�!� ��P!5 E��)p �B��XT�B��X,�@�qpx��XT�@��X�@c�0c�XL A���MF@PMG�@`#��4IpqP�B��X0�F"���c����\0h0��1��@�������y�@���Y��y#���4�E�*4/>@y�@"`x�c�P@"�PD��m���Ÿ�X4A��t@�c�X|���4���$M���4@`�X���p˂�q T���q l���T��A F��0)4 �F� ����`FB`�,��c!@��G v�6��@i���d���@a2�IJ��,@�,, �A�,$���kt�3�,t�7�A, ��a��@��P�����F� %@�AY�%�17H sC�1(J�G�P(�B`�P�U���J��0���8�(2����`Y �e�:�����#��q�d��J�|�L|��� #��lf�Tx�e�Y(.@�ph����|@�hL|�P�k���@\0Y��� �l�v� ��1� l�p 0I�ǀvp 0��1p hI�[p 0�A��lFY�[���o�f�1�o�fp ���)�ǀ�h��hI�o�f�ڇY���A�.$�7�i�%@N� �9�1�$�3�l�����oA�hI�j�� I@ ��9AN0�퀇�5���x���x��p��q�@�s�� �Q�/�Q�/p D $�B`4��# L@��dL3����G:�:��` i���`��@)`�f�)p �k@����P ������� �v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �c�p �G�1`���� �)�l�Kpn��k@�d�0�~�0�L�3M<��*@���/P�t@:�G�1@�u�P�/�p �@p��@M��I�M����Npj"�$7"@���O��@�%@0 ��� ���,Lp� �-��k@�4��Py8n�P����t@��x4� ��3��a�3 ��� �@�x�@0 �T2@0 ` ���A�j���D����v@0*t��L ;���n@ޠ7��9@�y���� �5 2A�Y� @ �d@g�Y� A��v�`D�@$�%�f\b�1-� �ApI��@!�������@:� ��@B`\d��%@��"��h!=����Z���gZH ��Z\���$��`;l �pa;@ d�hAV���c@pр�`@� ia;8���QZ���*aZ���*aZ���i�p8��iL�G'0`s0�7�>�i��F���F���F��#�Aq���>�;��>as�� @���@n����� ����ps��=p����1��@�Z�(@�&�l�k��0�"�(@lq�(��'���q�F��q�F�j�d��k�D(�q�� � �}�q�F(�q|��qh#@qq���J (����u� ]�0L ���g� |�J�X@�āX@��,R�`����$�@�& @ �06��`H���10R���g����`4�z��g���@[�F�`4 ?�հ ���Ѡg a�a�~`��7� a�a0I�n�x}��(y��� �� �7�&�I�3� &� �7�@pP ��p �@�TT�`T�k@%�TB?Q[�T�� �T�H��0 �)��A%T�0hT�m� ��B@%P �E@%P #���iP ��m� �@�q[ �@%��@%��E2 �ZB2 �Z� P �B2��T�� �#0P@؂@%` 0Ptl�� X�* (O�* �i@%` ��� �T®���p��0���x#@��/P�9px� �F��/�$��A� %�0��9k�9px��� k|JA�AA 0��9k� !A��X�{b��-� ��X#x(98<���k���5�'֐��CJ0�Sԇe1�@��6 #�H `h�ò ��#�v��M7�5�bYt v��C��IdYt�DPbM�p���ĚN��E���#�|p����6�F�ԇe1:E��5�bY,�N�0�����b$t ��:E7�&��S,�NA�C��&�`�,�NAH�z� #��ݲ[�ò �B�p�^��5�ƒ^����C"�k <1��Sxbx �''���k��(�@;�!3�4�F�N���5����/0.%�5X6sq� ��8�Ÿ�}� �k0l���S^�) ���\��q �k`3縼���f� �o� 20 ��T�9l�@��x� C��6 �\��v��o� �VFrI.����a� �� ]��� Ca;�Sl�<+��p�������4���X��n�"���X�� ��m���fEtnSt�I܀h����� ڇ����r���0$��4�nSt� s�>̥���6�v�0� mb�&`4#���J�p��$��j�� ��0��� �ѐ��n�\@#��ŃJ��q���$��j�� �(�0��� ��FC 8�=sA񌀈��@�P<��pp{"�6d4��#�p{">؆#�E���i.n�p0� )��� �����-  �%@�A�b4�0nA(@ �*'*lR � ]� Ѕp.F�-t �����3[�� H�@�1t!���p ]��@�`�5�l���3�+Ѓ6@`�0@D��I� ��T�� ��g ɡm���>`�(=h(��b�=hV[p�@����T%��P �bP���[` c �؁4 �CX@<��7��(q� �90�  ���f�1(d�<@@;�Հ 0�v�7�|�O �xG� 0� ���N%� � x H= ��jx@ �@^� �D��"P�`P/$��!s�x��J@����ԍ� V�1�_̋jP<��!B���N�@���=�C�z�M������JT��a]��u��b�x�A�=�x�@�*���S-�)�N<��G�(J�)�� p���t0/N�� :Z`^�OAt���8���g`�3� ��C�2P̀z(���3��Ck��3̀z(�� �8��@�o� ȁ9@�` ��@��@ 0�@ 2P�@(� 0��B�5�ՠ؁5P��y@ �)��@�k��2���R`��>@ �8@ /@A"��@��b�@�h� ����v��` 6�x��X #A�l��P��p K�)@����vY� <��]��W�3n� �7� @xd@�:��`G�H��]� X��(� ƀ��% d��PE�c8k�����]�@�q*�e �8PyȀpt����x �� @<�wa���@�x)҂ ��2�!(~��P` ��/v �� �(l���7���X �2 �0/#a��^� |�/� ��� �/À�B��H�� 0@@���'�?�K(��Z!p |h2���` *����6>�d��[b������`LY��6�2��j[o-!ԲSX����|�o�>�@���[�=F�� D ���s,�� z`4ƒpVK�1/:G �1�>cI`0e!Զ� Z����D��Z!�B��!c�؁4� �@p2d��7���X �2 ��d�0�l@@;�d�4�V@��d���V+v�(� ���VP�A��`!D���z"�D��F�F�#�<�o ,��s0�@kA;'��p �@`�`� 7Py�@��� �7��`A,������! ��$�B���\1p � XᒐBP�A�"bB0�� �Ch���`P��>X># _ �1P� !\2��@-���������7@�@��� �(C�ja��`�Fp b�1�2d�<��`��/ ��D� P��������ZA� ;�0�:��@�X����.!e|�� .��`ƀU� 6a7, H1L�H��p/�^r�(l���7����d�04@� �h��L��fB{� d�������%� :�8���� T�)Xc��؁4�n6�Z)�0�5P< p^� T7@�@��� �7@�` � 0��xG@�L��r 8HQ�� �)��!(~��uR�M�����EvO�";a x�@�c`E؁4 �CX@<��7��(q� �90�  �x�P@lA��3H��C@�:d�<�>A�8ǀ� #�"�� ��x5�m�@�;aET�1�s��H��ʹ�� �2T� ���� �@ �� B�@�&����cpfxΕ! ���x`�`���e� �2���D���9 � D����@ ��<����� <�'���P�x}� D��ƀ������"+.N��2k����R{�@�q*�e �8PyȀpt����x�� ����Q�@F�N1#~A:�!ȈqE ��2^��8�zQ{�@�I!�;� |�/� 4�� �/Àp�t��!(~� `L� |�'����/��@30�� �2 � �8��@�o� ȁ9@�� �� $D�8�)� D�0M �B04:0� dS@C���04:�� pd�0u @�ٰ(�B�} @��0-e�"pu�k*�t��Upu��@4(W�p@p�q�@�v `8@2P4df��(FC&`8���8��� ���x���8��ѐ �����*� !Ҡt��"�y�% �c��Z���n��5f�q����t@`f����@���@`�d� @eF&p @�@�� �I�`l�"��i��Zt�B0��N���GO�}�D�h0��0f\�@�x��6��{��6�.�n@?@d�{���� | `8�6P�f��asL &@C�d&�!p�c@4 �l�"P f��0;���5� S0��f���#�x��#�Bp�n�#�p@ �m�0�fP����8f��$ @� (I�/@"�B��t <���K@��#�J�� h�QHр! D>�M0D�@+p�) f���@ �l�����"p �k*p ���)�0��Pp����q ���Ap�}���@`�{��|��~@�/� ��n`�~@�d���/�}�A��6*�4I6@��?� ��% ���i��+� �e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� � �������p@p�q�@�v `8@� df�����("���70 8@���\ƃ��܁0;����<����T��%��3�j���O�] ��"�O�(��j�Z�x�(�0@ �)@6X��p��@0 ��6���.�n�(���@0�p@p�f� f�����/� @��� ��E@� t��'� �@'� x� `8 `8 `8@�$e@� �k@> g�I�� ��$��p@p�q�@�v `8@2 �f�p�5AM`�р4� ���: ���8A� ����n@L�$�@!��:A0p,;��t�,A�Ӱ(`�p� 07;��p��9� �,Ap�� 4U��\�TM���i|@S�.|MU#�T� ��g�T� �B��5U�ºp%\ M���.�9�|��\�T}�º� n�S�T W�" \ �"@4Mm�4�g04U��A@4Mm�.�A���T5U������@G���@�n@?�a�{���� | `8@A@��@P���?p�~@��� $K��(����}�����\� l8A�\8Ao�,H e*���A�a���n�n�{� �q�f��x������5�{�������͂qoL�@0.lk�0.8��Ql8���8���l�"0.� r@ۀg� � eB�A� A|1u�!�w0_���� ��@+�  Q��2p�:�H `�� �@`k@�2��<"@T2PyD�d���A 4�<"@7���X �2 � ~� 0��`��+�|b� �� 'j��rF��'&�0��� �� �3B�� �䃐#)DN�� # ���B�x�a(���m� a�0_�!��6��ch�m 8��T�c�K}�/�b6��싼� �����4 t�E^x��B|lC� ����ƍA� V�" ��@9� X!+h����U� ^� ��&�� I ��� Bz���U0�` 8@�( �����Bp$~`��c�L��n��N� �/���T��@0d� �7p���d�0�cP��2 ��P ��(l��d2�O�i�4�Sr�N�Ng 6�_��@n` s@�*(u��?�_�`�����_L��Q \5�z�A��� `��0Ǡ�cPlA�@([�<�� �\�� �91'�D.��ɑON� �'0��� V—X ��Kȅ�`;l)P��x �DĈ>a0���R� `�O8�@�� ��0��O� ��OL 1�'ըH�PH��v�O�@B@���8E �3�"��A�84J' �ph�Ρ94�? �PF��ZT�* /M�P#�b��HQ��6�(>�C)���P#?�� �>qh"��jd��6�M�v�(�$0@@�@� `G�@v�P7�F����"�|@Z�q#nD $R�v����V� ~� ����V��~�/��1�8v ����@n� �7� @xd@�:��`d�T��� a3��` ��8�p��q:z��ԁ�� d� ǀ�T�1p �J1� � 80����7��(q� �90�  ���� D �'@���A���4�|AXQ`!$��89��y؁4�L�99�g 6`~N�qn��h�� ��!n����������tg�l`��C�@ �"�#;a�����z�GXQ`!���Q�T` <�1�_ܖS*@(��n���� �8�p[.�X t�0���@P�m� ��@�a$���0@ �7 �1pp�kH9�$`XΥQJa)�� �aJ„��ed���r.��0Ka$d� S��R�0)'�d��0a���A�$��K���0)'�d����8 h�rk@Q ���@TOYP���\�p �h�$ ����I`4� ���I����$���FH$ )�c8����@ �S s����4�V �)H����GՐ�,@��`&$�$�v��r ���|�PT I����#$���HH6e� �R��>.�I1|�B<�e�,T���AJq) %P�F��#�[�0BY�ç,��xH�A�( �8`�1 bFL���lؓ��@`"fĸ�7��(q� �90�@4@4����x@ ��`��/`I $� B� Z���`@�� I`�Z� n`I�Z`��n��7�t�RXJ� dP5��X KI�a,kHՀƲ�tr����2�5$d);��1�ꅤ�i`�0pJ���������q�ǩx�5P�@�!n� Ё�� �"���"���" �A��ċ�@v���&'�Bp��4�B�+��� ����0 �8� abp+�4M+�^�hy&�S�yp�S@��]g��A���Aj�EP\!C�P0C�0� d��P�AC�] E`C�k� �f���Aր�\V�!pf���� `8@2��� f���A[�Աp@#�.,�"�4��g����g�4���� i|mP0���5� ����&���i�*�poPOP�A��}� @�g����B�b$�0y�2���f�" s ��af� 5+qc ���afd8��af��@>��2GO s�l�j�Z�x�t����D�S��Bp|@���1�0@�AO�+ S�@op0�)p��Y0��0S�gd��;La �G��s���f����@p`��!p��t��g�L�h�4�` h��k ��@OpTA@0�! �g0������I@��A�0 tt�tt��%���A,�&�;`���q@&�I��e@��|�k����}��n@?�|�p���s��a�p `8�P�I´Q�f�����|4�5�L���`4A&a,S�PERux�k��THG����px� ���t8�����`�4p�=�p�x�T�Rux|�RE��jq��k�Q8��1`8�y0�JMAI ]YW���Z��# P�@a}P�@a}0��Z��k�P�@a}x(�ƒQ8M��@�d@J���KL��d,AGбK�%@O�)�'CбK�:��s�hF� �KF��d��F�an,��1Gs�pw�pg�nF+p$�p`+�9�)���AT �) HD wF$1H�y��G��pgD��)pg �` x ���8���T]�@PJU` ��@ ��J��)x�� �J��x@` 4 ]d�s�p��|` @��-�@O��bP�|$@P@` @pDx%@�l��A�l(=��Q4�G�� -@H�8m����G\m�0\ff��4@�0m4���XA2�g\� L &@C�d&�0,e� ��7�����Aր�\V�!pf���� `8@2��� f���A[�Աp`�L `8��|$41@A�~��A @B�M������! -� ��`A� ����B2���Ay��y�r�s@`�u�B���x\f� d��;q��!@f������:@ ��� B�PڀO,�@p������q����t@`f������T�@�q��S�kBL�^�wB��Z�D0U��0U��"�c0U���-B�"�R��P �����(p{GP���r�s@`�u���`�h�@� `8���LT�! ���������p@p�q�@�v `8�(0 \���<��`,B��p| �Ap�Ax@0��#q� �#�f�����Ct���d���z��� S0� �g��f@P-YKkBa6��@p�Ւ��r�s@`�u����w@�y���T@��T@�� ���"��@�%G��@p\AE�%G@_�W�%G��V ��\r��!���K���T� ��y�)�� �K��m���f��@,�P�4A$��e�$$ �k���p@ �m�0�fP�m��HB�B f����@�f�H��` 4��!� ,��!p��!�,0�8 �:�<�0 n@?�|\�@! ��,�@)�������5��8K��C��PB��lXР�5�@P 1\�9�l@��@[��58[#�@P��(���նqY��Gp��f%Ic�(�p@p�f� ��`8� dH�` ���� �! H�'� dH�`�8� �'���]p�C���%��@1 9�"�����`0�m� P& ��@ �� `0� �EA\�Eq|@2pQ���Y@�g�Eq, P ���.�tAI@�g@�@��C���<@��@�S�)�&������@2p<��1PjE��m���O`�M�# �V$PyH�V�Q ��8K��,���Yq ���,��(�K�(v�"�E��\� ���E)�"q �Yif��u A@�� H�1�.� Y� yV!� ��VK$H�GH�C�PIPXEV�>� ^V�dx���PPU3/� 9���@/��t=@m���\���p8�py�6@p�������8���(4��p�@�� }��@K� %$K�!�,9�`E�>�`� >C @ �>)�j���>@ 8��=P)0�@a�R��V�h��@aA (��� 1()PX��V@ �BLA �(K�R��J�h��J1k�(�K�h��B`D (�<� a�)PX��/�� ~)PX��/��JA (���J1�BXA����>�R�(�K��J1k�(�K@ �(K�R�A@��RF��>�R�Z,J��JQ�>��Q� �d �3H�%�� G�>�� �@ �� �@�Tl���+�< �� � l�P�s��� ���\� �d� \�$� \�+0����&*@�h� ����&��\� ��\�p \�P��}0�,�&�\���@�`�s�"0K�(@�*�O����0 ��\0 0s�((����P!�(@�b�\@4 s�\���\�xt �R�-qK @�� �K'�-�@��-�K�@ǰ@K����C�9|K�@�pK@�R�� m�R�� m�U+�-�K��V�-�K��V�]��?�1,���1GΑ!@��TpK��-�-1�?�1�$�-�K��V�-�K��V�]��R�$.m�R�$.m�U+.�� hs����-�-1�Ϸ�t ��� ,�ҷ�t ��� xK��7�xK��7�pW���.�K[��.�K[w� �կp����V���Y� w$h%ܑ�կP��D����D��h��Ĥ�%�h5k}w�!�tsS�Z�Z_�y�M-B�P sS�47�H%?p���;p���AL� ���P ����"�M-?17����"� �h5k}w�!� s���"� ����M%@yp�sSy@L� ���AS��� @L����P ����"s��W�V���qG�B17�M-��W� E `(����@S��լ�uܑ� �P�\��l�K�@�g\����KÁ�0��Ɓ4�N0H���ŀ4X yV`��n�X ��>p( CC�r�D1�KC �PyA�DG�K� A����8��BC�� �]��{d�/�%Q,�GP��GPF� /�0d ���T 9I�F����#+�;��P1d C���i� /�KQF� /��R��� �&�@.� �h_Av�Dd�d�G�x��]x��x2d,2d(��X g�BCp,8��q� ���rF2�.4���(CK��Aku�%g난q� r��.����l����Q,C< ��Z< � ��@k-��03t�O��O,Cr��.�����Z�P3� � �2�S����S�ː�� � ��� %CK��H��P8M��$�@Ph@��S�H���H��mlh�'� ��0 8`<3���/�O?�(�dK��~��0Ph�I@<8@���@5T QC8{��h�'�h�I��O{ �@��l$� P@�n�� �?  @'���  ���DR�{�m��������n� A{�n��{���{ph �0P�� �@"�` 9�5�q(ZPhPl� ņ��`EP�.\C��5.��P6L,�.��X�>.� 0�!k� �� �P '�UA)\C�@�.� ���q@�Z��k� �� ��'@@)� ^�@mP���Qkw�pg��!:���1p��1��`8�@�U7Tk�Z ��=A@H�(=A@�h�@��G����!���� �Z ��=A@H�(=A@�h�@��G�ݐ�!p�=A@�ztC%��@�ZG+PxC�P�%p��V p�QÝI D^�%lCߐ[� � �Н�PgAOp�@h�G\K@�, @h�G\ ��s�=v��� `X& ��L�I��L�I���Fn�2Y& �2au�E`������L�I���Fn�2au�E`�(FQGZ& �|��d�,@n�i�(FQGZ& �2au�E`�����ؑ(�E`����}�v�F`Gjv@`LL�ґ���Ay��y�r�s@`�u���p {�'`��ru�N�Ӟ�w W{���x���\�x���Y��k8�{��ad {֞uPt�G'�z|�@,��wp8CO��ӹt$<�@$P�Cx��pAЃ.@�\m���C��7� p@p�f�7� ���8��as�\�#Ay�\6�'�HP6��=x��as�\�!p�c@4 ����8�B n�8 6���D9ZA�Qq�����a��vb����b�p@����:���������������8����� /\%r�` � `���6@(�!WW��p0K�9t� �}����YU�A�pj���j@<�YU3�pU9� ��PI� %AIP4�� �C';���@ �t4�P�p�C��:T/� % �/� ��  � 8 �/�0�����\U�p8�C�E �td :@��2e w�5BMG��d �w�5BkC1�6� YC�p5��ڰ� k���m� ���IP.�Qh�����;tgP�ƷAm�g�&Am��םqgP3'�h�CR�%u�M�'�C�<)��<��=4p��зA�Z��:p+�M�'�Cw� �x��зA ��&Q���0HL[*p�=0H �D �I���� 0��)��\P�`EG�,���(�v�ذ�sA20H���;����0Hd-��dr@K` �)���@ ����B >� ���� @2���P4�F�X@#�PP4@�� �F#�.�NE#�.��@< ��(���(�B�.]��l��1k �D#l ��E(4�������'A+ph �F.4(�B���t�G (�S�P��B�sXx� ��\�n��ae�r�@��C2�g4X�ϑ �>G�a8�����ah?ǖ�e10$~�a@l�"�D��ϱP�@�'<�P` ��� S@DB�l�`�[��p�p������V�,R�4@*� (�A9��Z��!D>0!�B�`!\P �dB����!dp���m�0\fhz�4��� $B0� � `8�@)P$�@�$x���0A��m���I@2�r�s@`�u���� �3��\4AMP�c@4 �v�:�7�:`�N�$v�:p��$��0P,9�N �K�N��O� �I@2�(?��(v�:`�@P df�� ׄ�h�0���0��� b�� ���ӁM �&T��:�M��}(���عl����|�2vn>�·��������q>%�tq������۰2������چ��!J@d �]D@bBL�E,Y��HL�E@$&�`:۰2"�(��A �@LJ@V �]0@L� @$&��6 Db��i @�6����qb�Ɖ%�&���o�@�~ �0�7�[��}�U�V%�����0@0 ��<����@*H?�D� }�O,�V�� ��� ̌EЪ��"��jL�I�17D�� ҏ���D�~��<��VeT�nhU�`L�F�'� �~P:�;�X��T�~��@��B�]P��!Pb(��e� .��(�ÐF��� �1x"� ͷQ�d+4� ���A� � ��YUM!Ȭ��8�w"@D��d+���`8��6���"� Ȭ������C8 ��@�p ހ "0((]���5�Uo.PKAx@`�0��5`@`f�\�`��@5f�8b�@BT��� .�0C+PJ��ɀ!�Z<���0y��:��zBW��(��zs{B�k �]0 ��p���8 �@8s �:P� 0��� /��`\�Q0 |P���)� ��:G!��v.6o�n� �7X��<Hp �(�tO� > 0��������u����"�C�q@��6p�@0t�؁���D�&@ ����@�Q��J����A��_� ��:G��̀4�f�D��p  f"BD�8� �X+�L�3���@[�р���'D ` L�p �� 8%` �)� �B� �&��)0��XǠL��0�� 7�$��-��� [���d@V�(S@;lJ��v(=a+D �PT�I�0�$$��s�j2H?��؆�P�(_b+��/�0� �KL�/�ʀU�k�*�UZ ̀pf�8b��H4�x� �Ē8H� 8��8�h�M2x��D��� ��0�� �Z��s�J\�,Ѩ��g*p��Ј1� ��X���Ĺ��@�����*����+��@�����\p�y�댉)�W��-�C@�(��"� �JX X���Vrc�K���V�XI���e]� v�A Xl�����օV�Đ���i{ZGd*���-@V�JB���K�^���=B��B����+�=�� ���x=���I������|�x��s �n��L�@�2IL�� �'P]2�t�.���L�W� ��+�.�ex�@]|�F�T @e���yT�uA�@eY`�T�uQ$�De9,�T�u�L� �e] �QYKL�!d &�2PY� ��؈�`#JBe�(�V���zPh���Q��*m�,�6p�F�> w��2q&�ݴ�kk n��5qXڐT ���r�$(�9`n"Nl %A���pK�"�A������EM1 5�$4���MRm�T��b#!"M�I���H��L� II�6��ph� \��؀J`$*��F2k��A�5��4� �A � ��=|�Q���O`&��'�h�!�=�����'T� <��>A`�=�N�*��4�3�� ��#<�>@�G���>�`��=��9M`��̄��d[� ��p�P��rP�]� F��� �x�O� F�L� `+� h�F�� ��1 f�P� @(E98j.���Dт��*d(� �(����4� [�_d�z Z�� v t\�@�V�r14� @�a8 8�PA�%�X}@��E��;X�.@-Q���X�@�0 �x� �A�0���X""�E �0����@)`�(q /aaDF}pFd��0�)>E��" p���aDFof�S�**")���a.�Kͨ�6�Z��{�R\�LqRȆ���bd��Q�)Jţ�s� � *b'�U��["#T,mU*E�� ����:��J�!��T0� !xAU��\������)�'`�p�@��Z�*b�sP��U,Z1#D�.c� ���n�rPh���`B� !�G�\qt��kymW�_q]�Ű(_E9�=�@ � P�@2�kXn�I�X(@� @�Ao @2�����(�S9CL��!&J��pp�e���4���:܀ (z�?p���0�@�\ @\=�Y�8� �����I�8Zt(��`(�LB�#�_|��ZT�3�LP���.�<����k[�u@P�.�P%+��(�0(�X���k��J�t�JQ��J� �(š���@H�<��ƠP�! ���U�h�E�4�_|��U0\T��h�U�P��[�h�@AG0�@A��k�[� t���}4m���Uo�p@p�q�@�v�% ��0W�E��@M�0,�@0d���8��Q0�B0��� K `8M�=W��+@ K�E����1�Ep�\��E}�up�%@8�h�\�]��E�\tB'��'�+�ʐy�E?�� +�1�2�E%@G�Q�\�\��E�\�G�A� 8�+����)�������d��L�/(���/�G��G�(�-x �c� ��(0�� ���)`X�7plU�B��)h0����0�d ���)����q(� %�@d�BK` r4��vY����Ep ��)`d �@�"��B�p @�A*�)�%�)X �)p XR]�8 [�P0=AI`� �E@x��7@ ������8$�2� �E�`�E�a-�v��8m@ �9�m�]dlv�F� �v���[A @�v@7 @�u�� %����m@7 @X\B� �K�9�m@7 @���Q�4�%@,��@ 0u, @@@,@]P0P `tv�Pt*��0@L Ph P�݀u�%�݀���D�t���@Fu�Ű��0�;�U� 0�P3,��P3hCͰC�pY 5� X 5�J`1�N5� X 5C��� K�`1� 8A�*� K�`1� 5C^��z�P3,@��� �'`10v��vU>� M�EG4UA��TYp��qWuq(�A�<��+��+ ���ASe��1�@ (4 AG���G ����]e��F>�8X6�+�<� �C�E}�I�� }�]�l#��<��H� ���60`���P4�"��������B� (<. @)�' @)��� ����]�l� �!(<�y#(<��H �Je` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ���6�� �.0 ��� �p@ �m�0�fP����8f���@/0 ��60 ������N0�w�: �0p��.0 �x� � ,��7���# ��(0 ��@'� x� `8� F~�=A+� \.�0���6� �@� F�@�_t�8@��.� %@�0\4 �B �4 r���,� ���, ͂ �,H6�IU|b.@��G�x$Uqʹ��ԁ/� ���:� �qH�+�q��_�%�Eg�J�%��9 �@�_���� �q��Np�;����a�� �c` �%@O�`6�8��|���`��`��@`DF� h��`��aT�+���)�� �| �� P�%�o���§Pp�§�| ���+��PF�Q`m4�\�)��Q`D��ǧ�)F�Q`4F��`I ��\ � ��P8+�88��`���H�8�cPFm��W�A�@^P�|A_ @��@ m@P1m�0F��a� �җ���> �"8�m@ �9�m�`d�#��%����%A� '�a��C�t�X0�dpy�6�(pWp��py�pP��bP�Z�<B� !�@!T…�!�@�q�@�q� @L��P���DI @���P�%�Q�sC�Q���QI@L�01��%1Q��DIP�%AI ,F��P�@���yBL������q8 @N�t�gA �y�b���n�0��h�����LG Ph�yQh� ��:�TG�AHtr` �Lb�g �]�hρ)P �ٰ:8�A��$ �(�-0F���m�0 �� ` ����� ��V�,��V���V�p��p8F�n�D� ` W�ٰ\�4���AAN�5�lv�N2�E;��a�W�4F[�c4F[\�a�p��p8F�n�D� ` W�`���2�E;A @+A���,��V@+���V@]p��p8F�n�D� ` W@@+�C�P+���uCp-\��p��BX%@�`��� !X� a\ +D �D���B���E` X�G�1:X.�B��Ip-�u�E`\ +D P7��� q�.�B��� QP�� �B�$�B�+D @�>@6f����B��α ��@��C��+@ ����;0:LF�G�0:����0:�'n0:��B�����0:��n �Ge� M0G8�n0:��B0:����@P�0:�`�e��� ��$��0: �� 0������n 0�?���n 0� ����n 0���}�m�� % 0: %��0: �B@�M@ B�l�`�[��p�p������V�,R�4@*� (�A9��Z��!D>0!�B�`!\P �dB����!dp���m�0\fhz�4��� $B0� � `8�@) A=A��P88��G��@2 C\2D[�M28�M2%@G�t ����OP� �\ )t ���G�K`6��$��{�i6� �� �K���79x�%� #�HC�h��� 0%@O # �� �)��V��D�5p�pWeF��f�q(�X��V �„����[oqW���uF��f��`�fD���f��{��pYlF<�f����f��w�n�[t���"@�+�G^�}�f��{���}����q�%@H���K@�!AHP�/AHp�!�>���A^ w_ ��AH�!�m`�$AH`��n��������<�dCs� ���8y�AH���AH`� A �y�<��@ppw��m@���^ ���&aV�f�<�Il��]p�AHp�yZ����N���A^ wh�!��� $p�Vpy�6�(pWp��py�p�lZ�� 0@�P��bP�Z�<B� !�@!T…�!�e��!�k@��!D@p�B�\p� �s��a�p�V�L�� �L�@2� S0� р!pf���A�PP��%�9�0*��������7�c���'�K���n��� ���'�K��0�K��%���?� �5p���Lp� �B��$H%���)� �B "� ��;"�+���/@�A*"��������� ��AAT��� ���apD�A �� ��p+��� �/� �n�Dd:�/������ )�`t����y��B *)4�� )�`t R���� ����T�B �/� F�/��PlA@#l��EP4�A�@# ����i4��\�T4��\���@#(����H��-t �B!��| �F���I4���X�B# �P(p�Lp��Ơ�i�B��.� q�G���B0U %@O(���l����� ��p@p�q�@�v `8�� �l� L��!p S0���dl�"�t�B0�0��A �ڇN �����Am�lӀ�l�f�}��A+���A ��� �5DT_Upx��!�Bp��\p� �s��a�p�V��‡� ����8�.� �f���HG��B�!p�) "��p70"B�P"�K@� Cx�@�k@p�p@ �m�0�fP�l�"��� $�@2��`8�Kzy&� ��4 �w��`8M�$@g��w��L�@2�=��dr��qg,ڇN dr�� '@ hw��}�e@_e�k��1H�~�m�yVs9�n@_e�r�@���+L ���@�� L �� &�停q\�n��Ɩ�A܀n��F�@�F A�Fw��q����F�p�WM��8f�p�j���sl���e@�a�p���DB�!�k�` tm��tpy�6@p����Z��gx�3f����@2�g��;" !��!�����p@O�!��� $B�`",7�\�P8+ P8��U8n�;� ���P[�n�%��!(����y���`5��U>�,r�Y4XV�L�‘Y�,�Y�X8ڐTX�EfQ X G��%X=~�!X���������lV{�b�B��+�lV8�`U@([�Q�Vȑ�uX�8�`�([�Q�V�����Qе!V!��]ʑ�p��b�0G����(V�Us�8G��̰?���K�!V�b�%V�Qb�X-V͑b�X5G��s438G���P,G�Պ�b��cu�-c�X],Ɗ�b0V���b�-c�X],Ɗ!�V=�i�;�U�Px^�U�`�%������i`xA�^�A�^�A EG��i�n^[@�e^[@�e���@d���i���F ����x��i@k���i�j��A�]�k���4�Ep���vq m��D�E���Eww@4Q�T0L�Ew�n@�p�EXPg�q����t@`f��$ H��]lB0��p�@� ��e*�3A�q���'P,��;p�� ��p���p�?HG=P��Cq���>���Ar`LG�Bc��p��y��`$&uT�_EIP�p��ɁI�U�3�p@�G�8P��� �q�� ���@Ip�;�8��;��p��@�q� �%���� ���4%�9Pn4&�+�*X��Nu�I�84&A���@0b���EP�%����'��Q�&�+k�n��84%�.����N@�o�4�@�����4%�9Pn��@���%@>0b� ��� �G� ��/�DX� u� �8 �.�8 �9� �n��� � 0YmQ� 9)K�Zf@����@p��w���zF3Q� ��p$C��� ��h�.�D8ِ�D��@6�@6�%��T��P+@\���$�Ցceu��P�Ցceuב�, @1PpQؑG0kdG���,�P,@0]��pQ@p`G�G0\x��uDP#0���v$,[ �@"hC��OhC*���nlq'� ��u&� �Uy� �F�ы� iC�x���dh� �G�Ƨ�e ����e �Ж� �G�8����A�iC8��2��3�J�W���q�$'@֠�C�� H�FeDh1� 0M��w���xTd@�6�M{�wZ��Gh[h@!�x�f�GP1tc���<���@�D A��~��Gyd���qK@ ���?pK h P%� �@Ip�0@�`1�pR�$pRl̅�P0�@ݐ~0�ǡ1(��s�� �G���%�`6�� �@ � €0`@A ` ��� @�U�dEH ��@V�l\��YBp`��y� �b�X@�e�� ]l�;������L0h���=ل��S��Q>T� Ą@L� X�t�&�����&�C��0� ;��AL� ;W?�9�G �&DV:��Y����!� �W`a� :�zDL��ʰs9��7�s�G�G@hP��@LD���|��P�k�d0�F�<����p@ �m�0�fP����8f�p�ɀL0�@��c@4 �B0��`4�!A�P� ���(?�����M��K@N��������M�����v�:p����@!���@OP(��D:@ReX��0Y�~Fp��"\�@p��"�q����t@`�@���Gf���f��Bf�p@}@SP��p8π �x+� �e��� �B������wt74����VpAp7pB��U�}��'��sA/��B���!lf���\�P/� 8x��� �B�TV�|�(K�!pf�� f@�la@B0�� ����� ��L0�E/A�Q��C��*�0@Ɂ!�/A��*�%@��%G, /Aɡ�A@��0�%G�Qr8 /A�Qr��E��0�%�7Pr�/A ��0� Pr���|�%�K�j�� �(�%ǫ!tK@� ,8��� ��|�a\��p`+���E�G��G�x�`�G�Q�� ����GAư�p}x��|�G$�>P ��@�p���hAư�p}x��|�G$�>P ��@�p�}�I�>�,C�� ,�@��,��i��i��`Y%�LG@ H�U2`��E`Y%�LG�G�V G���$d0�eG�,�E � �  � �Zp�E�lY�E�X&�EPLSG,0 Y��EpYM�@4��@L�"��Ka�S�E`�ZS�E�lY�E�X&�E �_���P/� %��N����qY�:��N�W����K�B0:0%�O���S�Ԃ>1:���m���� ��·N�|8�>��@����m�|����8�>1:���>`8:��_�B�@f�d �Q�)d ���@��p���G2�0� f��,p���z� @[���x�MQ i�] x"�]`���G�\B �d �� 1�C` 6P��0%�����N`x�AI0�0O��BIPnp:O��B�Q��ߕY��@�� ��dV�����F��8��a$����Q�F+�hV+@{�� ��%��a<���Kp����`<���m ��C{��� ��0���5큪a$���(p���� ��0 8��% ��������8f�0��(� p'�F$~�&@@�!@��'� |� � x��'������P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@p"�k�.�",)���"���"�p@ �m�0�fP����8,n��S0`�@��"�����"�/���@�#t-��������-F2-F2p(%�!s�2�=��2�= s�2�pQI���q���!s�=��!��'2�=�)P �!s�"��P0f��a�YC��"�2Nj!s�2�=`f 2�=�5�YC֠��@ p(�2�=`$Af��a����h��AO s�2Nj�����q(�2�=`f��@֠| �!s����afd �� | 2�=�5��m�V�m]�V2 []�U����l%)d {�V [���l ��le�� P��U�4l&�l�7��� p6��� ��V0�V``[��V�$M�� [��V�0�V:�l�$��� �@pg\wN�f�w��G�nF+�B� �luctbАT�)���f( �p`+�8�)��W��� 5I�&�$���l%ubАT�� 5��ם�m Apg]L�a 0 wƒ�$q��tg�V��GP�� �G��GY�I4I���%� �A�aVh���\����x�D�$�f���Ip������G H�ĝ����G�h��sP� dS0��P���P�9AA�8 �P8 ��,09���6�~�͂ ����6���K��n���|��@p����q�s@`�u� �V�m5,��(���a[� �t���9F“�$u��p� W���,Aզ1 ~��g���4�@U��4�@0K�pD���pD�L�pR�' P[�A@m� @�/�I�g�-B0H�'�I�g�(J��B0H�!AH�!�>�@kd<�;A�P 'J�}���`p��� @)0�p �� @)��$���0��qH �CHp/��%@�� uC+����+@�� �9��+@�� !�a.9� N����U_� LA}Q�9�P�9C7� �*B�a��G+�"� @xd�9S00����p@� *@8���V}�30�EmP_� @mP�������>|X�'�%5 ��@ H���P��'� (�������%eIT�`I�C��%�X�`I�C�%��k 0�~�0(� ��`I�K@"�V���:`IX�%�����`��`�/h��`�V�e�p�����k���n0�����q����t@`f�����`8�{0 `�5���� h� @f��lw�y���T@�~���@`�{�P}��� � l�"���"(�@�k��A�`s�� �Cp���7�m���p���7f��8���es�C��as�\��#Ay�\6��m8���esA��as�\�!p�c@4 ��pd���8j@0 `8@0�Ap�m���z�@�{@S�Py���0p��P84 �x� P$J��)���@�D8:@p���\�(�q����t@`\�@p���\�( ���\ܑ�\`��� ��`8Xd8wd8��� ��� ��@@�X ����| 1�<�V�B��g`)���������� �)�_��)���� q�*�i�C�<�<��$�8@�1���%�B8@n� �V8��8��0��W� �V���!3� @2Pn���C�3 0�:@����B�.@����7� 0�L0 �B�.��@�.,�G��%�E�C�`p �C��#�.�:@��������C �������y���������0���8f�0j@����j���QE$�k�Q8ǀ�D�A��ҕu+���! <���Z���Z�3�P�@a}���Zև ��Cڱn���v�n��`(i�`?X��p��� �(��X@,ƀ �Q�iGa�K�1`tiG�@�3�[� ����v� ����v����3��U̠60in���Aځ�^���%}I��4�3��|&]aRO���@`��&�=&]a@�����/�bҿ0(Zm�@��)w��H�0(�K��`!��x1��@��A�A�HWO��V8���%�=��t���$XB @� \ @� � �a��ڂ7�8�� ߆0Hl����Bp(T�%���0Hl�@K`T�!`���ǿ��0�Q�@�A*�~d��a�� � ���7@D���0@�d&�~�����0\fxDqh �A�-(D��0 `��G�(�-X `Aڂ@�tA @ @G?�pt @#�G`A�]@LAo�B�t��D ����G�@��"\@��mp-��6(��S��A 2� Ë�"�/B �"P /‹Pp+@��mp����%���}�/�>�"�/�>�6p��0�/���.�/BI�"���`�%��"������B��"�`Й`$���p�"� h� p& 2�����L��Vi"�43�o�&��o�[� �U�th �U�D( K�@�V���PT�A/,��o�& j �PT�@/��o�& j �PT�T@/\ �o�&�Vi��[�I�F��[�I9��%���o�%4T�g�r�րf����@� �\C�x f�jt ���6$y��pl x�� SGC6� �6$�G�" �����ؐ ��g� 4b�N dr��16,��> g\��q �px��!@6� e�2 �K���,#�_�Ik��,%��&�0@Qr�I�š�&�%ǚ$�jp��%G�,/���&�0�R�& kҚ�k��_�E�n��K����c�I�ך��E��_�k��(�Ik Pr�I"�~�W�nPr�k��&�L���0F��~�I0 �_�����I�š�&����&��\ ����I� ��� ����K@�� 5H R�� 9K@ �0� �@[��P�l�"p ���)��m���h�r�s@`�u���`��@+@��@)������ ����A�PP����8f���ɀ�� %[��(0 `��(0 ��.`8�5�\��!�\�@O0 (6�B����BP�g��k�̀� m���h�p@p�q�@�v `8��!�\�`��p�f�p�j��,I����"�h !MH�� PH[��!�C!�k�.�F�V�y����8ɀ'� ���(��@@$P�Re������m���VRe�r�s@`�u��(c `8@�a!�e�i����i{����8��4��ֆD qH�$PjER8N��0Kf:�ڐЭ� $B0�O`ZIV���]�0�E���H��d�KHV���P� ��rP�8�`iT�$���%�X�� �W���'�p\�B+��\B+�%�\B+�%���)���P"�E}Q� (���l@�l���lGxO��<a\����4 e@2 6�k `8�6`8�(�5��P(4@B0�@2�u�0` $��)� ����� �F2p :0� XU�|�T `8����)qxB%�@@5` xB �@�=AO�h, ���@X<3�Z�myB` x&R DX�l�j�Z�x@P (��"�f���i@"@ET���\�A0Px�PT�=�n�@�����Ӏ"`�6�L��M0D�@+`���8f�� �p$���8d �ZICK�N�l|j% -:j% -:���@��(��"�Z��"P (���n�> г�W�,@@��}׺A)�'����E��@p-� ��h�p"�Hb��B�Ac�4�Bh��"�*���"�H@20`��L�HV"G 0����!r�#�h���� | ��Q �A 0�%@40�L�h $�� g8+�JPP��JP��JP���JP _��JP��̠�/�-���" @2` �Q�BL���"���� ��ph�p���� ��!�dG�|4}��6�!A����4}py��py�p��P�I´Q�f�����|4�5�L���`4A&a,S�P�H4�����n@��p@p�f� f���@�4�2��@( ���(p���60 ��@6� X =��D#�`�L `8��|$ �|`�P�A�GB�) ��B0�6�,�D7$-� ��m�v@)QJ`���hn��V!�I�#���I�#��m���I�V!�I�%p \��%p �k� Tú��H&�}`�H�A����D��q;b�qb���2�:�����I�g�D��g���#�Hp�*�:`���V�f��L�� �L�@2� S0�L &@C��� (?�/��H�� Z�L��<��� %����=� P,;�%$k]B�ֵ�#]B��%$k�H�V�#%x�8��5�]@p�G��� �q����t@`f�pX ��)�#� `8����e� �� �X<�8`8��8f��l��!�Vf���l�V0u,܁Pta��VDV��@�N����o�9�e ��+�y� 8m���0� �m�0�f� �� `8� ��@0 n�y �0@ ƀ!pf���e@��|�Vk`a����n@?�|�Vp���s��a�p `8@A@4��pbI� 8B0��`4A&a,S�@���Δ ��������x�#XW~������ <���3 ��P���������G�8��� ��A�S�AlPx!�W ����>` QÝI �����G�hρs` =�Ϥ`$�0� ��p�@2 :�8w� �>��/$�B�� � ��`�XAPm\ ��a�H�}��~U��Am ���d�XAm���A�U����,-AK�P,B�����%� E 4�'@K�P%@O03� ��!4�� �(�A��`X��]u�`X'�`P@ � ���qg �ut-Ju�`���T'Y�IaX�� �(�\� `P�� `P%� `P�� �(} ���~�!�� @A�l��P9����(�-x �c� ��(�-� .�ڂ��(� `�@��m(��V�\ `Ph 0(�]���QdV�F!�� �:���Vp �v�!@�m�� BydV�F!�j�A{P9��ƭ�j� Ⴊ"�0@f�j��`�jd��a�� `A��xT�!@XD���08b �v��BCP�vҝ���.� ��Ap���`8��(��"�lx�@g`��g� ��Bp�� �2�� �������t��2�D�h0�]�[!:`@g�,� $��N ��A0�,|: ��h�}�@��Q$��L� �@ �Q4 ���t%@G��1�>P!AG�t�@�A@�u�>��I���D�y�oP!AG��E0b�*�\u74wC�Q� E�� "���Q,�I1b�����%��U�i\������j$]�A�$e@� �k@> g�I�� ��$��p@p�q�@�v `8@2 �5AM`�р4� ���: ���8A� ����n@L�$�@!��:A0p,;��t��|@�@|� �$4 %�0(_tǠD(��R�#��T�ėE0(�h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P4���W���n@?�|\p���s��a�p `8@A@p�'� ��W��\Yf���(!W� ,S��dЛ�}����`4A&a��B�$B�q��F�����:�<�0 ��4�0P�@1` ���B�df���@�����C����C,K@2Pn<%���8�V��``�V���g�B �<�@>�8&������)9%A�=Dr�d�����g���NPETJ�AC T[AI�T�@0  A0PE� ;Aa)�%@o�0 @>Ql�>PETJ�A��[ �YlE2lEI��[A0�p %@���U����AI����L��x@dS@ S�����D���K@H�~5 &@T0�6� ����r�(]�������\]J3�%�n�ru)�p@ ���t@`< ��g�}�H��(�G1K���D�@X�E 9 �`�\�E�)q ؀ �A� a8A�� d@#�m��8�D��d58��)��s�%�(�N0��K�0�D*]��)}J�R�$*�J@suH�p4W��<��0(��E�\]� $ H��~�[ @�E*% H�t(���$ H�v`�A4P�����O���@ �<������ 'E n�J�A�E* ހq ��H��p0 @+P�H��@ @*mJ��A* dC�%l��n�J�A�E* S� 4W͕��J@���e���{��� ��i��F�`$�A�`$X�F�`$� �F�`$�J��3�� F��Tn<�'�>�i��R�Q6�J�F�`$�J�ƧQ7� �R�a*��Ƨ�L��R��i�J���L>��d�1~� FB�Q6 �F�P6 �@�`$|�R�`$�J�ƧQ@��w�l ��@�@p�O�w\Px�s��a�p���`8�0 ���n�x! ��y� ��� ��0p�O�w1 �1P ��!H��(� de�ٱE�k��E�m��tg�����s�`�R `8��DI�5� ɀ�� X �(0 \��(� dl�"0 �g���g��<�@$Py ��Ry\"�pvl �� g�Q@0e�s���Ay��y�r�s@`�u��LK@2�<� $B0������t�J�s�*�D�s�*�J�@+�\���# @W���@p<�tl_]�@ �s�� �s%L�* `8�#]�GN�HDW�D�Q4���W���n@?�|\p���s��a�p `8@A@p�'� ��W��\�����\!S0�LK�B� @oF�A$ӂ � �� ` B ����x ����C� ������0 ��0` ���B� ����e�����Ay��y�r�s@`�u���`8�� S0� dS0�}��t�@��4 �J�'�t�ת�|� $��N�,�G�54�W2�*����( e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ���� ���(�n�.� �q����t@`f���@�f���(0 \��(� ���/� �S�/p7��с�� �À �7���!�@� 0 ��2� x��'��P���P*|M@;����p���7�:`�{����54�A�Y��@�f�gZ ���x@�L��0, A&�fdd@20-� B�I���!� �@�����:� ���B�df���f���x����,� �m���h�+�r�s@`�u���`8�+���� h� @f����+0 ���!p�@` ����(������������)aJ�ց)aJ���aa<�քaM��� ad� ��AaJ�v�a�W-v��`W���)aJ�6~�b6X���`qX&�)aJ���_�� օ)a"X��aJ����`�WƋ aQX 6��a.���)a*���-a*�6��eW��mb��� a2X��]f����}`���MaK��5�aX/��)aJ�ց1a�X f�i`<���)aG�6~�bC�!b� ��a�W;� b�惍_�� օ)a"X��aJ����`��.f�uaJ���`r����`g���ebJ� v�}`X'���`S���aN��MtJ5wQa¥�%f���!�=ۄ�T��v}���FvI�!�m}���襄E^d� f�1V]^�|�d7[<�%^u��3�b��wG0�_L؇&z�\�Z�Ř�a#��4�!aJX�7bm^�6bm^�O�?y~#�����X��7bm^[$Ԃ�J����WRX���)a���+��0׼z�)a�s�`�$�[h�A�d���WO����K�in��&*�ބ�:.ӥ{���{hU&���U��F%s���z�IX�q�E�%��QMC*��sT��] kS�.�z�(����_�h�2SM_;/`0~�b�(�}PmJXOe��_*��5�QmJh��_�� %a��Ӷ~&a��򴭟I�l��=m�g6N\m��Ӷ~&a#�1����I�}�~(a���u�)a$���_I�.���_I�P�{)a>�����`]�&��aK�F�w�`n���^���x�b�(���^�@���f��6f��]<��9cY��a1b֗�ZVޢd�]`����%wS��)aGX���_IX(%as����GI�ܥ��GI�" t�Sĥ��bI�a��UX��46ױb�V�9a��q��)aJ���)aJ�F�G�ͥ�a��Jv|MaJX0v�u`c���m`�W;��)a]���G�W��)a3֖�`We�u�dF�5~�b_����\J�v�a�W-v��`W���Ma�W(%a����A_����^^��q�)a.���E_X��Eb�W4�q1a�X f�i`<���)aG�6~�bC�!b� ��a�W;� b�惍_�� օ)a"X��aJ����`��.f�uaJ���`r����`g���ebJ� v�}`X'���`S���aN��U�]UzX���%I+�fqUumI� vU�bcX��]U�ش��%aWU,~%a��y��iG�ي�Lo��_�(�^�ۚœ�\��|)W���ݱ���R�!�#���p��!g\�P�����c�ړ�u�SdWL��a]��Z��^C�Up�_���GU�W��u�S��4|A_��R��A_����& }�&�b���2d^n����z��*r`G{بV��!�ȁ�a(tK aI��;Pj�V�+dw��6�U��A�+dw��6�U��YE��c�d��aG{Xv��E�d��aG{����Av��a(t��Av��a(t��Av��a(t��Av��a�ܾ��Av��a��S��j�\5U{ `R���%aG��}X�}e�9a'�!���c��:�u�cH��qoJ��Ĝ���&��\�X����BJe����[<���^��T��N��`vymo����~�c�]��%]��y�!]^&�f-iY��ȅ�!b ���,�^ ةƅ ��w%Np���%a���$m)`J�Ɖdp�\��!b�r�,�^�Xuƅ ��w%Np7�~%a���$mqcx�Ɖdp�b���^<�1׮V*6~�bؘ6{QmJ�N5~�d��F�)aM4�{AaD��ac��-F}EaA�fvoqj�U�G.i]؟�}�]�e�Q_!q�đKZ�� �_I�օ��FЗ0v��]�$���_�g�d؄�q�^�š�M]�����f��&��`�v��X�Wf�QU�WO&�a�0}�ai�ꥍ]a��f��_IX1ƕE\�V�.�`™�l-a㗉Vn�`�W��_L��ici善�WW����e��&�%a��A��� ����b�^���6hUc�ZV}a�}�0��)c�W&��aJX�w}�V��mF��b��1�*a��C��_��'7u�R�(����_�h�2SM_;/`0~�b�(�}PmJXOe��_*��5�QmJXS���_IX2����I�}D�fw�bJ V{ b}����`�WF� b}��u��^J�6~�b6X���`n����]!�Ƅid��$6�9^�X/��� ���P�a����K���)aJ�惍_�� օ)a"X��aJ����`��.f�uaJ���`r����`g���ebJ� v�}`X'���`S���aNXƄb-����`FX"��a��� ad� ��I`��f��_�6�Y`J�6~�b6X���`qX&�)aJ���_�� օ)a"X��aJ�f��a���)a.���}`���MaKXV�9a���)a����Q[<���!ac�&��_��F��`����1[J�v�a�W-v��`W���Ma/X���ycIX�_JX��o�a�C6 aQX 6��a.���)a*����b�惍_�� օ)a"X��aJ����`��.f�uaJ���`r���AaJ�&�^����}`���MaK�Ɖ�_��5��`���YbFX��)aG�6~�bG�v�)aJ����_IX(1a�ޥ���`IX�ՐE`Iv�a~XF��]�X��[}e���4�9^��%f�Qa���P�c�!��^���)a��Ɔ%aJX�)aI����`�W��_0[�V-�zw��@-gbW6~�b*]6�-�}V6f-�_�XۇMaI�6��`�W��_L���%a�&6�)t�Ro�/iv]��Q'�l���VP)aJ��x�b*]6�2-`�X��)a �&�m_�X�)a�Wo(,��֩�/"���]�Fǵ���_�,Ʃnu��'a�W-��aDSX���`�WF�^�X�ńbfX����efW9;�����|`^X Ʃnu�F��)aIn������ j̧`[9�#1a�X f�i`<���)aG�6~�bC�!b� ��a�W;� b�惍_�� օ)a"X��aJ����`��.f�uaJ���`r����`g���ebJ� v�}`X'���`S���aNX�E��v���^��q���o6[)aJ�f��_���]aJ�֒�]<���]zQd�Q�V��7�{�Q.�� a/X����ev�-���`� %a�� %a�� %a��r5)aIX��1a=�4f�%a��1�{�`���_�`^���w�S������HX|��)aG�6~�bG�v�)av+� ���� S� L &@C�(K�11 KsA2@L(sA2��@��]���D��B�TD�B��A2�B��ֲ�,1K��\` K*�!pf���@P|�k@��0m�P|5Kp@ �m�0�fP����8f� ��@�l�"�d �Rg���B0��N��ŗ��� '@+`4 � �:A _Ӏ����$�DG� ��4N���.�m��<�py@p@p����v�!p�)� �A2p� `8��\4�`8�0 ���� �.��K����@0 n�SAi �0@ ƀ7�GG0.lk�0.8��Ql8p@ �m�0�fP�m��4L����0~�j|�(��6� ?��!� ��!� ,� `8 `8@!���lw�3���3� �������0���`x�������L�@`�h�z��h�������p@p�q�@�v `8@ �n0��!P�g�b%�A&`\��44 %p LC�@&���pyLCӐ!p�� ��#�@�@�H�^�x@��v�m���^py�6@p����}@SP|��#� S0�E<��!��@���� f��8�1�|8���q�����vhx�pQ�CpQ�EpQm@\�E@+� `�d�EAD�DT!L�d�@�&m`X��D��m�,�&m`D��D���IpQ,d@�d�I@�%@�@`��I@X��D�d��dX�F���m@���I@����8�@�<��d��tK�� @����c�pA���8K� ����8K��0\�� t\��uK� ��c�pA�c��%@G�,\PG�,�@ `ql[A��l]�Qt���(X[A�?0��� (�B �8K@G�,�C��c�pA%@G�,\PG�,�C��c�pA@20D�ņ��HKņ�"l��f��p 8���"l �V���d��5�}��PllbC�"h��P  ��0� B�����@0 Y�@0x %�@p �� @#@P�A#�lK@�@#`�PP4@���UPE��A0� X�.�sb��W���09W�lP��\�WA@|�1Y @���B �� �, ��X ��0@ �� �� ��0�!�� B0� �)@,4@ �F@��B ,�` A���  P0Ah�aG0Ah�>�pLyFǤD���gtL @�!���>��,@����$��vV��'V5pL�D�a�VpR`AV5pL�D�aQ�It@�A��XA��1A�aG���� v �`Շ�3�0�>��8�7�|,@����Z�I �?����>��TB0���8 �|\ �4� H P8 �GN��8� �,�Q�\�,09� `�AN�0m��8 �GNp ���,09�p�0�fP�9A��,09� �6�`?M��P��p�z�p?��C2�v\iG ��z@�`�f�Ppik�?�� `��G��}�qkp 6�A)��� �}�%���9�d���"� �}�z @����?�z�G@�z�@�� px��@��]� ��Ƨ�%�h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+ �3d�O���.�}XZ��aIlM%@>�|�8�t O,?!0�M��T��B�O� �?!04��;07��?!0��; 04�0�8?�L ��� 0�-��$0����� �3q���m���;8��� ���^ �F�A�E�A�Ae�zUFxL�0u�{�c 8{�c8{�c�8bDz u�"}�n�"Al8, �^�8�A*+� ���́@�We~�^����`�@^�� ����?����0@���@�29�&�}h"���}`ɀ��}8�� 1�P8M�Y�_�p(�2d(��� 1�p8K������ ����L��,Ş�%��֞��{���Zunp�m@�Q��@ �L%A�k%A� ��� %�p+L��/0���n� N��,{�N�N�� �LV�P ��@2Y �� S��@S��@A�4ux8��$H'$��$����x�B�hR�� �f�&� |��'�� ��a2�f�d �$�4~� g���3�8�`,�D�,L��$�~e���Y�~�O�"�<�?�<8������P��B" G�@   �Gà_���~�<4 V�2�q�~�<4 �� �fG�LB`<O� �W�P8܁�p���FI@@(����L���������A{��Ƨ`�E�F ��L���A{�)ӧ`�E�F ��L(��$�L����L*ӧ�2��� �2} ��i�L��[�i�n���)�L%@��2}*S �5�_�F}!� �2�@��ņ�2�W%@P@��2Q�F@P%�0P@��2Q��@P%��@� @�d_Q�ƿ@$���f|]@t 'Pn< ,�}S�PnP�E�2-!��2-#���2-�Pn��A�L!@�!��D�p�.S,A�W�@����D��'PE��]�0�[����/S�n� ��� |��'PE(0]Q8 �@y}D^O�����֜1g� sB1gD�0g� Ťt� �B�S����0|�A�y=s�;0�����<tE�1g�ZsƜ�3�ŜQ{ O���3���y�Pl �;@���� ��U����՜1g�ZsƜ�3�9�˄�Ŝq_!O���3���y�P8s�}5gl  0gLs�D*���,XApg\wN�f�w��G�nF+p~@�V@�d� ��G�1]wbH� XA ��AC�}<�A�tg �ĺ�h�)�4��s��LwbH� X���AC�}<��̄~� ��%�i���s�d^5� AXĤ7aa�� *,��\p� l ��p�0\f������Vh�!H���P��p!`p@`4��*̈́I �� ��p|\f��f���*� 4�!�O���@6� `�P3�L�W��nQT��h ����[`���n-� Jm@������ �� ���.��!�@ �$P3�P3����Ƣ�/����[� �@ �QP�G�@|��k,&��Y@��2`��s�dPAf� 0���O��D�khC'��i�1@��ip�F������%@O�QP��@|@pc�x��p�x@p(����@��������i��� w@��@p�f��Py��Py�4 �B��?�6*�4I6�/�� �y�n`�~@�d� �C�pY\�@p����q ��@+P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �I@2P$���rL�8�@p�1A� �q����t@`f��$2�L`8MP�6� H������M����$ɀ��m���I@20 K@N�7��,9AG��=A� ���O�����@ ���8e���5�kyP�m�@�q����t@`f��H^^�@��@�@ � `8Kk��@( df�&� |f�&6if�& 6if�& he����k�ee^�Mf�;�n��56�p@ �m�0�fP����8�(e�/�L��� S0�4eSلL�@�4-�D�P6M р4� �$������:`���:`��օ ����8�uO�,@�o���6�`B���o��]����=1(f��(y�^P�g�4�@�����A @���q W>0�%I��?.A���]p�%>� �Q^� jC`��`�7 �ED�I��*�J�9�����M�a �e��9^��n��BL�"���x���� ��1�'��U ���HpX+��D@�guGQ�%����%a��I�.�+.�.��I�h $�1 ����%P�I0� ������@��B�@���.�I0� ��.� ��� ��00 ��� @L`6)B)@�D�򂢱 dg���65@V�pN�B�9�(� /�YA�d�� /����14@V0S� AV�UD��DQ��d(�Ր\ � f% @ fiI���P$J Q( ��� �(D7��$d/(I���'$I����I0n� ����'� ~B�� I@�|��F�BR ����~B3�|�*�$ ���|�*�g�I@��0 �$0n��B��[I��4��$��B��[b�?(�Aڤ$�����A c`hx ���d@Vp0Icp~d I@V�68bP�I�ڐ��@��pYA���� ����:8��P �@L�6�@X�6��@L�/ ΀mp�΀m�/�΀mp� B�3`��B�� ���P+� � �/���3`� j�mV�M�0P+�M� � ����d�k��0΀m�-�΀mp� ^� �j�mV�M���`9�AV�m΀mPp����/($��d�eC��6�PA[ �j�m� �M�� 8�����@��� ΀m�/� $@�P{�M @��� ��3`� �B�@�M�.�6�#�6�)���*� t �@0�Y���~h Y��0s��P�%@ �%����x� %@ 0l���g|B�0�M��۴e������P�"H�p~��@��J���P8@ ���t��A;�M��HP�2�6�[p�)7�@�V2 X��KX#�H�h �FH�RX��7�2A7�8��`�qĽ`����%�!��`������uoX!��`�"��0���uo�M>�LG�M2���[>�po�o N L��i|�m �o�L��8�#�8�L`��% u`%`7I^1A��M�W��M�WL`w�҄7)Xv��0I��,M�S��u� ^��u�^�`6� ���[M�� �Mp��'4�W4�7�^��H^��'�^�k!�M�,M1��d6`�7-M�W��7)X[ޔu�M^��7�M^��7�M^�k�7�M^�kN~�P|N�S��8 @� � @� 8 �V\07E�8�U�5� NU� ���+�*h��=�8�;��j���v� � �F�i��+�*h��z��sA��8������ � ���@����g(��� �6��(�@ @�g`��S�q��}@��g����#@�p� �� P�\G6�&`lB]apu @L��XdQ }���!�QW��z�D(��M:��1�}� �@]A8u�#�L<���*|���3U;��*;�D�Z��#80X ��8� ���g�zF^�gLW ���g�zF^@8Nz�tet�V�!(%�B8�[ A��� ��g(y1�c;�L���8� ��1(j@�@%�_��gt ��� �����0�����C(� �B(�-| ��-��-�x�\� ����� �B�p8��)p~`:� �|@'Dhm0:p���� �����؇�Kt����/� %�\0�kc���c���I�����������`�B������N��uF����D��G���$��D:Ap$] ���z@��@ 1��A�A낆�.�D� �G��I0[��� �Ā �N�F��O NI�O(N�G0� �H0�u]0�s>���S 1pA�A�w�1Vp�S1`�G0pGp8�� �NuF?�8�SY�0 ��� 4N���Z8NwF0�����A&�I0��m@Y�P,N�����D&�`�Zu����@6��`z,����~�"@� ��c�',>���i41AI� ���q  �P.�i�[��1� @T�'�;�� HAB`��$ Hf�ـ u�B�`6� ���`6 F��@  I@.a6� �B��> D�$�O�$��i� ��" J�,��>� D��H��� @$�OD�D$�O��Z]6m0�Wy 1N0�Ğ0h�y�8�]1��v�|�#v0h��Gq��m�| ��� ��8�%�Ğ0h����1N�@� �@�!0)� �T�0�J����T���P��t� �F�h���}�'S0D�n� ��� `<� Bn�@���}�An� j��-��(��"�U��\j�L�<0�]K@O�P�DWA��:� P!�DWAO��D�� :�U�D\) "�+@��]��N�=0@OP����:���q��Gp��Gʡz@p�� �m��r�p `8�m\���q@�`8��� �@OPJ�)��=\ ��"�O ��P���, �j,�� � %���.x��.� �Q� ���� �7�.���7ph=�G�� �B/9�4C���@�fd ���0K@G�,K�� �B2�8]�`��@�, �Ap��,K@�� ,K��.�K���1t ��"���P8K��"����" �j�J�/R�#�HI��$(�A40`����`���� 0|�� �;�H�+a��#!F���Ze��@���f� �@ A����o��_��+� Pt6p#�Q'?�[d ���7�u�����P��Q�HA��#�D3A ��S�1 M%�` ,�1����;P�@2 h�B2�}�A�}l[�`<4m��`<�%� �%�!H3�0o�� lGi��d��0� f��� ��bT<^+ԁ�K%��EL F�R @L�W��0�H-ҼD/UL��5/����"u�ּ��HƗ���9���Y�q�_Ǧ�iI�9�u�����ǐ��DҢ@VhB� @VhC� `N�b�U�ipK���W �Q:��L� 88�Q:���)��e��a x��>@m���Q:,%,P^����P��e � ��p@m��ҡ�h��Q:�(����D@p�(��r�s@`�u����-hW���8Q��`\����df���/�K3Ag�-��@`1i �UO�B0e�� �Kk��/-Q@�H��p$� `8��/�K� P��XA\U�� hr�"��ɀ�� �q����t@`hz@�����@�k@p�畿�p@p�f� f����@p��"PT�ҿ!���O�/] ��(���fl�����A��u�J����x��A��y��+�Jy7,��|����=A��/p |F��x����(^y��+�Jyz� �BA��u�J����x�@��+�e@?`�k:�xa@p���A� |Cp�f�7� ���8 `8AA@��@� �Y4�Ap�y� S0�LK�B� ��� @�T`3�pw�LC�d��Fi0� )@*�l��`\��8�h����,{��`<L��PlL�@�D0�� �{�0L\��_�Zt�1�@��������`�i s�� s�WK� s�L2�>` T�W���[� � ��F��LA���"@�"<hC��$(���8������\7çP7��� ��p3� 7@n� ���P� ��cp3� 7�pp3�7��P�k� ,m�@f�����("�@����u`@&� ��G'�^�W�E�d0����d ����0> "����� 0 ���tF�"g�/8@k�{T$����)48@k01x �K �@p�GERtkBnP[� � ��X$�A �| �§`| k���)x ��`<`@O��=AB��Ӂ��\B��Do�,�z�'<!�B�!�B L��1Bf�����0� h��!�” ��wB0L��!,�$PjE�ǐQ@����M�S�d'�� @�@p�O�\Px�s��a�p�03���F! D��4 �6� H��!�� `8��D.�,9A� � B,������� ���0jl @&� ��G'�^�W�E�d0����d ���`8�+� l�"0 � ` � 0 ��8@�~@��p@`�u���p@���8@���0����0Q����P(�B> t���>PL��@�pK�>�pB�>���Y�,YW�e0`:�P8K@�p��M��1i,�D�  4�0В�@+�d]��;�ВW����� �$��� ��� �'XN@�R@tKP���P�ZLJ�it +@��iP �� P�A�KhFA�a�V@@0`�L�@0� �|0!� �Ḋq91A�q�� `8�0,�jh͂ �w��[�x@1ɀ� �Ḋ�X��M�����BG -� ���aN�@G� '@+�&�&� ��@CP�k@.��@p��.�r�s@`�u���`8��� ���(p���/���0 �� ��0@ ƀ!p<��1��)� t��'� f��f��l�Q�� (D��8M�P$@1aH��:� �����t@ ���B �����@ �D0#�0���L0��!aD .��m�)pF� A �J0���F �����PX���� ` �[�0�� ��0��¾�K|ND�:��1x���A� D;���m�A�D;PRx#�x�Ax#A;�A�#�q D��A��@ �A��@;x�@I�d Dِ����A�D;����Q6$�r�A�%�1d Dِ�Z��x�D��9ye:a�1�]` @܁�#� �m %� ؇*�h\p�A}E��� �}t���}P �~�} ZB�1`^~E)P ؇*�_UX���}���@@)\p�A}E��`�A4�}\p��m`�}di�Y�`�1`��@����}��1��D�$�Q~�} ZBf0`^~�`�G;�_a^~`�G�_a�~��NiR;�DQ�o�N(�z@:�����~���4�`�ʱt�N#@V�OD�>'�YAVP�N�ʑPD|F�/�N\WV��N���:��Ǿ�/�N����:�FV��[Y��Tsd��OD�>�\ FV��Y����Y>�Y@; �8�-P ��-� �-� �@(� @A ������0 �F �N+����pp�x�|2�+��8��\p�a\��al]��J@�+�u�r�3`�t���%�O�@` ��>1p� (��$x�@A�(� p]PX��p���h�c p@` �P;����mt @  ��� ���-�/ ��P R@����A���*@��\Q�8@)�K\X���H��3`��BIQ �t�\�zR@!� ��'�K� ������B��1�[�D�aV��A �&P�AC���AC��e� P��D� �*@��mY� P � � �C#@ Q | V)�-�d@`�v@`�9�P�f@ `�n��k@�d�0�u��w��R� �|@���@�y��H{��d��x �����P�h!P���@ ���(�#�8��p|�i�x0�k@ �o��@��r�@�d�� �P|�1P �S6 d CW(�Va �@(` \�@(�!� P( |L����;��� ���c��;�v@�0�N���l@�t;�N����n�P�@*]~�0h�� _u�w��R� �|@@~�$����$}�,� 7������$�|@"�|� �û��An@�|��D$�׻�?� ���u�X�@�!t�F��;5�F�E���P�d�� �d�� @;�!�t �S�paX�%p ��1Y�G�ё`;Q �%�aiX;A�Ubu!"�j"P �BP �]W�� �Y�B�=���c�d_ړ��  ����0��9�P\��� �7 pD���\��؇M�B�  ��@A B�T�`( �]@ ��F�$������\@���!�C��� ���a�W6A !)c�B��A4�B`J�B``q�,�}h��a`�)�}|�n �r�P6)�܀�pR@!���@A(��x����G�SD@���C�`?��A��90Q�O0�����H��W�z�-����\ ��>����;��c�< ������>� ��O(C#�\��r��DD�����PY ǀB��)��HA�C� :\L1��@e�*��E�@�F��HA�C�aD��DD:|��B�(�@ @��E��FD�aD�F�I�} ��<�@F��'T�de�*PD?�=PY� �Ph`�� Ó�:O�p �@20T��`���Ptē����@<9�A\@�#A��j�k� :�qI:�����j�kF�!�)@��| ��H0�D!�0΀m�!(��P<}��0<���5`1OqI0����l������`< O�A\@�#G0O�A\@�#>:L�A\@�#A��k8` T�@\�� @L��k8��KY�a�A�G�` TqA`f�9��>�]Y8A�D@`f�k8�� @t� B��A^:O@��h O@��a! C��<%Oֹp.tX�F4@hDVK0@ y@�5@ y@��a�I+A��a�I�@������I+A�a�Ib�J�&���&�N�I�am��&�I�V��y�I�G��& i�p�a�I�@��Z�C�8I�p $��$A�588�C��Bh0l^��`���x���`I��"`)��xa@�o���ׁ}�J�ـ}�a@� �'b!P�d�� ��Aj"`�K����@0 �KA-� �N�T c��(M �c��A��P�����n�P�d�� `x�@0 ���-PX�'� t�@(P��V0�[��� ���l��%o9n��k@�d�0�A�Q�/P�!P����� 2��a�.����,�1�G���pgT�k�BD�Gh �� �p�m0���]�����yA^p��^�����_�i� K��_ ��P ,d@�4-M��0d�@��1@~�dj"` |"�w���w��4Hi�����\Hn��k@�d�0�~�0d�U H�g��<�T,Q�B@�<M<��*|~�P|| �B�XM�B�X�$ޠP�-�\G �`ђ�\(�$( .@�i�A��B�4�� ��%��i�8� )�N�OU�?U0� �0� �«0 �p�*�8��E�i@��1�%��� 0k@ �o��@��r�@�d�� `C�O��~�!P���N�ETc@�d��G\gt~�0�@!�j"`�����#�d�YA���P4IPT�J�( .���$,C��#�=�2�-�=�2�.C ���F��2���o�i� #�N3� ���13�k�0I�!���B�|�n@�q@�A�n�@0 �@  ���|T�1�gTA� D $�B`\$@$c�`�~���C��x��p��q�@�s�� ��<�P,Q�B@�<�� =�`���x��@0 ��Op � @;�!� @;�!0!�B�`!\P{,6�:� �e�p||���L����n��q|��G9��py�p������]��� ��ё ��@+�4%��$��A� 0 �P +�L� �) S\��2q��Ma �L�B t�A�x]���O+VG@�� ����i���(x]���O��M>u%d@<3�K���!���L1S@���|D�.a �� ��\]O��4W�L��CAsuX��$ ��n)���$ ���p�R��$ @؁ �@m@n�@ �<� PH-��X͕�����D'E n�J�A�E* ހq ��4W@�5 ��� �!@�E* H��@ @*mJ��A* dC�%l��n�JS� 4W͕��J�qy-�qy�A��8�A0�%�O�`[�X�@ �y�[Ȱ8��V�l���S�E�"tK> l�E l���O[AG�xn> l)��a�L���,K��qyY��E@��E ���E $�DPLAEgLE��+@2<O@2XA2<O@ p`�F�p���F��B�H AH�d���FP�$AI��'FP�O�G��+�J��,�I����I`X���a�K��$�E@���Ip`0�D��' p�-���&�����Ip�$AJ@�D��f0QE�A`p!^�@Udq�@9�l��Q�Z8��^@��;hWVt�Y�UThEA�0c��n�VT�4� !�N�!@�C� �OߗVPt��A ���V ZA9�(�A���A9 \���8$¡  �šP\�@��t�š0�EGQ �E p( ��a+H��`0@E�9�[@Eq(T�B PQ�[@EQQ ڇ� `0�T� ��%�0-·!Lɀ�q�O,R���l%@��b�ǀ���O+�^�PMP�1P�~���]S� p�0�I�g��zq����p��S�q�8�IL��I�gLH� PD��PL'�^�mL0�IL'A��l%@�a5�v�p L-�PpS��}L����0@ �ml[��a>QMP�V��+�%���@ �[-(n�[��@�����@���@۱�)�v,��Pn,��PnpK���K���<K�[��@�����@���@۱�)�v,��Pn,��PnpK���K���<K@`E�kyP�m�@�q����t@`f���@�'�f���ˀpy���2px,f����py���px,=A)�X@C04����.�MP�.��$T@�b�3����� �€�$:�%�g�� /�L0�X3�`�>�O'@I�b�/V ��O/V �>�bGAp2���>�0�g�� �n�:,&A2@�OˀIP�0� P��A�x�� P�O �c\€H��>i/ �hu��tR�X/V�U�g��k�̀� m���h�p@p�q�@�v���@`�{�P}���m���z�@�T@�����8r���u� $p ��M0D�@+�3�:�� � ��!z� ��� ��p�<�� ��`(� �0��� �2�7��\ c)�\�� ������X�����Tc���?�������� c������%���0�O�����p��4 K�Tc- �?�OvA���XK\����0��Œ%c�eW�e�XK\0c�Xp���y�2���EG4�h6��5(53�@)dpG0L�P<|�>�LS������ ��\�1�sw0(i��\`�&���%p[@,���s��$?�pt���B�0d �@�0(iAw0�&w0(i��\`��wP7�%w0�� ?�p�g ������O�w�0.@��g|�� �"����Z���h!Zd�ŋ@Z����pd�E�1:0�"�;0�C7����`V�f� �@&�0 � ��@��ā;@��pZ��+�Z��Ej�;��qZ�@��jx@��jx�Q�Uކ��0� Cݡ"���*�J��FI�KLv@$TD��� MR%\� -������Ao�"���K0�*Bo��Sb�\W�>�TR��>�J�8@cTE� �TcTE4FU�����Q�m������Ӷq�Of���m����G�\m�0\ff��4@��|��@�� S0�LK�B� @oF�A$ӂ � �� ` B 0@C�8�' ��4 �0P€1�� �"P �ɀDZ���^$�p@p�q�@�v `8��\4���@ q`ɀ�x�Ǒ ���d.II��d%�KB���xP���f�ǡ^x�z� @��a @��Qn���p��m � � `F��Px� @�@������Pp���s��a�p�c4-� B�I����8 �$L��A��yW?0@�DF,`���+pv%�•W\n uC<���e��88@��P@���c-_p@ �m�0�fP����8U@PTU��=��q@��;"��;8l�@8 ��-D@�z�_��pL���4l �� e@?����  P.�?�n@?��r�@����P�f� 4@?�74@?`w���yB0 �0, A&�fdd@2� �C 4�C�|��0p���?0 ��0` ���BPhx��+< �v�n@�]\�@p���v�4%w�]���@MAT LSw�]��y`�Ew�p@ �m�0�fP����8I�`x�Ŵ`4��L��!  j@&`8@�kP�|P�f���y�|P�f}P,ɀ}`8�y� �@�d �|`8��!p��8p��8�� AM� S0� <� <� $B0@OPJ��|�����;��@���c�_p@ �m�0�fP��$ dS@�(K��L `8��� �C��,P<�c1Pfu�X ��@�f��cAP����HDP�5A%l²DA=֐.PA�=�ϴ �k�� x4 L��`)@�Ɲ=pIm�@�q����t@` S0��P�f� 4��\4AA@����j�L܁��XTA@���TV�|d� ��A����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e�p���� h���n���q����t@`�x@p�f��P|����y���T@�~���� AH*ׁ3� ���� h� @f����@�<�� $ H"�(��"��#P���� ���(�n�.� �q����t@`f���@�f���(0 \��(0 �l�"� �:�� � �@�pt ������0`� /7���`�$p ��(@ ��'� |���8e@d�k���m�� h��r�s@`�u���`�h`�h@&`h��&�P�g��g�#Y����c1@K@7@dYK��,D���$p �@�A E[�������d�K�MF�����DB0P�0Px��A�P���n@l�q����t@`f���P~��g�QE��D$ H�(0 x��(p���6�X ��(@ ���R��>A�4S@C`�>�V��V@ !MH�P@!��V@!9F���P�V@��@�(�m��W�P����8&0 � �5� ���&� �@( ��}0Z f����R2�vdf�����O0Z�B,����f)��v@`��@)�l����� �k@� ��@`��@�y��H{��k@p�x@ �R���j"���@!� ^ �$~"����*0,�G�W��l�>�|Tn@�q@�A�n�@0 �@ � @� I�&� h�@5@�^��qE�^��q�,B`D�@`D�@$4A� @�Bp @m��!� �� 0`P @PZ��l�DŽA1n@���k@Td���P`P @� �"`TT/`T�@� p��Pt��@:� ��0P����00 c�P/ti@�qT �cp ��Ttn@��Txk@Td���~�0d�@�@(P��w���@x!^8�h@��E -��x1�> �'@��dp�mP�%�O������5p T� 8�`��P�8H?�cy� X�`�@q$ F��� #�p�q �X�@�cy?V`��X4@�c �d'� X ����@�c���H��U ��0Cy?V�a���p���A@��@�Qj�� �"�H���08�P�?pIIL�H�P0 L�%aI0hL�� H� $�.@��$k@2�$$���LX%I`I4ɀ%�~$��V� �@2� �@2 H@` w0 ȁ� �L�P0 k�0\v@g�d����i��@�4\���n�P�o �t�@0 �d�&�������f�t��A��N�`����}���B�}�A � |�Ah� $A� $�N�`I���}���B�}$A � |�Ah� ��@0@�`D��O@� �� ��@:� �Z��� @0��� �"�D �B\p�1�t$A!`D�@�aiY@ ��ZVpD�Np���N�}���$��`D��gpD�Np���N�}|BG��B��B�E��h~�m0I�(]���E�~�O����<����h�h��1�E9���$[�y�h��1�lQN�$��=�~�EEN�i�[��lo�$9Z�}�P����J@0�P9Z�}$E�[�$E�0��@�B$u�O� $� 0@����P R� @��PB�N ` K��%Qx�4� x8�� � 6�0l�S (�����@�Tp]�� @��$#@(��� ��F�l�D��R`� >A�q �3@Rd���lE���b@��%��3PDY0CT3DU� @�(#� ��Y�B���� �hd#������ ���� ��ڇo�?�Y���Y3qBi'TV�i`'��P'` )@00�L�Y�_ƐP Ƀ1D ���e )P0I`�@`� �A��J�$E��%��V���y�ס�Zs�mPxk��1��� �L#��k #� �� #P+D��/(�Cpn� L@��$yBN��L��A1A�0�u�f�uF�G�L��A�N 5M�drPLPdCrPL�h0�q T2�����Pg���<�/Y��*0� @��j0�P�Pd� }@>�B�uF�t�=H��B�Ah �B]� � M@'i(����w��� ��@]� � M@'i(����I@'�Ip����*�x�1V� jC�� � }^�}�j��� t�� � $uF?�B��T$�p $����A�E1I�j����TT�S Phʤ�7 ɤ2�{��@G�{��� )(��@��t6�;0�i�;���;�Q�6�;���@�� �S P�Y��Pd�S P8\��H�)�` T��p~�؂��B���5` l��` ( �-�x)��p0�Pb��B1�A :��Q([@ǰ���0(��@P)T!0��J�������J@|���K��C����c�x���p0 �px�Aa`��� �+�p~| B���-�0��F` �@�� �00 ����9�p��7��@'� ��B[�mU(�-x��!`B���/, �׀5�l�@��i�P4`d�����\*F Y6@�xB���� p�7 �U#�N�p] p�5P(�(�c�p �G�1`���� �)�l�Kpn��k@�d�0�~�0�L� @ �3M<��*@���/P�t@:�G�1@�u�P�/�p �@p��@M��I�M����Np<���I�M���!��?Pp � ������p$ F�f#@P���9@I��D�D� k�P*��� �X{#��M��F�D��D�D��D�D�����k@�Q*�p��B�J�@ uD�,T�D�Z+��B ��@ | k�A�`×��APT��7A1xk@V`d����#@g�%�A`�K�AU @ | k�A�T� (&��Q�^����Dz`B�PE�1@0�/�Q��O�\�`B(�`B�P��,�� � Q�06�P�Ah� �P}�g�4 KBg�B9zFc�B}BPg�U�G�o uF����D��G�6��4���H0�uF"����m��#I�P���g4(�A����Bq($�Bq��G�Aɰ8 QZB>C�uF�� $=H��I@�t�H�P�b]�i�]�GY��X��A�����P#I�P��Qg�10CU�-P �����7��@'� �؂��F x�B(� �0C�P�<` ��07 @ �pPC����p���07 ��@ x��� �ù�`���L�@C @aP��)��@'� FPR�B���/� �•��� �d ��P�7����p��q�@�s�(\G�@0 @d�R��C�j"$ۀ#1*8��#�C9 94 �0���L֑�!�H�%���P������@OP�G@�:��`(�D���Z0I��6�ͬ�nP���;��T�B HC�[�����0� &���C$��,m�J�l���'�ih�aU0�-@�@YX e ����H� �aU��&�4���- ��"م�p�&��Y�Ol��Hê`([�4l���*� ea ��@HêX� Wi���[Vঢ়a�ӘPJ�H?5_�\�bB��# ���P��M?5_������@\� ���� �3G���;�)�9)kF�� ���Gt@�#� s�$$�PP;C`p�O`�rH�˙10GƸ��J���q93�����I6 m�1.g�l��6�� ����Ac^�*Qjcf��*K[��$�ŋZY�S$!��)�E�H��MJma^��؀�sh�k�;�4�R(h m $^4��/JT�a�������!A↌q9�a�ҐFw�� X�k�B�5�k���P�BA%�n��5P�p����BA(�� p2���5� n�A!�Ǡ4G�Sހ5�?@�d�0�>v�H�!'���@�`5��<l@�)�#�؀$P6�GB� ���mQ�'��Z�0�_������_ܖ  �lP�@�� �E��-#�` �O����E�/�F�-#`�Ě��X�[�5��Ě�1�OH�ո�X��A(6�t���jvC��5e# �V�bM(`����9n�= 9�3�ΐ�O�Y?I@@�Z! �lf� �R`Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V�0��;�̀)8�` 6`�(n��5PR�@u���p��R@H�=��X��<����{��5�� �@ /@A"��@�S� ��&�i`ld�f7i�� �(� vB0Q�h�Y_�6)'�d�0F� �g��j�D6A!�d�T����@�4`��2�`�������&��` 6�f7�xp� ����s�hmqY�B�����e� 2L��@ 6i�p@\��.*��,ra���e�.n��Ha#7�S��$ ����>�$i��E.� ��.T@A�,r� ܁��h�)�K��` �����B���2ȀU�v 0�n� ��]� X5��pk�ā7@���4! <h� B� ��(� @�  � �2�ȲX�V2 F�(!��d �� A�d�G���# ��4U���1@ʀ8v �5p�@`f ��3��pk�ā7@���u���p��R@H�=��X��<����{��?@�x�3� �� �3� ��6�ԁ0F� V!(~� ��CP�"�4$?���I�,F��#��4؁49�(i`�Ѐ�9IC�d�02�Q� � ��`��/�: �k� ���؇\8�} 'i�> ! l��@ �A�� ٬ϰ 'ih! `�p��������_p��1%`e��� B��a'@N��2p���r��~��؇|�cJ���r��S�M �����8��G���#p �@�p�%p �@`/�7���X �2 ��d�0�cb`@&̄�@��3�����t� jB:��؄#p �@:�k����p�A0I�&��_P�@NH7a#�U���1� j�$pH��'���.` ` ��nM�M����� `�Ѥ[7���X �2 ��d�0p .` ܾ�K@�k�\ ���`���2���j�d�0�1`H"(v �Sp J�(l� 3P �*pk��7� �X��<����{��>� � x H= ��jx@ �@^� �D��"P�`�N��-��x` ���C !�!�E(���o b�@�"` n��7` �`tRѷ"W���.��H��9H� ߢV��*�I�� �+���`H�����o!<����  " �8�� U��h�` �@ p @;��c���%6�6��KC�p ���F ‘T#lT���F��U#n؀v�$����a;�Q` � ��bt�Y|�>G‘d����rY7� � ��쳍��Dp$�(� f���v��0 �7� Ia@xù���� �p.F���€�r.xùc�=؁4��|�3>��2���a&�2 �C28� 0�P���8� �>?`��%  � C�܃B� �� D_p �A����(� �A0Q�4��0Jx�*p;a �R�J�Hf���R� 0�� �7� ��(�� ��:`�@�d�)����}���p��R@H�=���@^��B���� �D�T�)X�R�$0�!@ Pl�)�b!�$`�L� �$g�a�X�0 (�8��O��e��Q8Sj�)���Zg @�HY@?Č���h��A.Cf36��H��4Cg�.�3��E�h8��Nq�A��� ��1� !b0�c��"@I��� �`ą�0�� I &$���Xl`L�$�j�@\��'A$�5��@\xk �5�hDXIDn��@X4b$�1�@XS��&<���Hx �����#�F��(��@�# ��(� ��ǘ"�" ��(�|��*��_/+ZwD��E"�Ѻ#������c0) h��h�Nq F���S�I�i:�������z�(i����W: H��Q'' ^�0)@�F� �v`�|rVFt�@:JHH&�`�o��e������`8A��5�x��~L���(��"�lx�@g`��g� S����!�L�Gh���Bp� �@��|�hgF�� ����lP� L A��dr���t��2�L�0��@ h:A hˀ�!�h@HpG9�p� �A+$@9�|L�$ H�GA@PI�0�w��HsD9�|�wT"E A"�H�0PI�0�w��A$R@@�w�� �x$ �D�a����Q��pm���E��[��)qmX�+�*X%?`10ŃŐJ��D*a1���ŀm0ŃŐJ �A��m���� �A��X �F �X �F�`1��AёJ��D*���nP�C�a1����`J���`J��D*�JX �B X C*a1X �D*X ���GJ@pg\wƝ�G�9����YPQÝI D^�%�y��!ED^�%�~Ft�G�\B���&PQÝI ���p ��GJ\��hDw�g�j��Ɲ�����hρs` ���EA� �pQ�E�� ��|f@%� %@z0<�AP�%An@�d�I�[0���b]�]EH���P��� �����Ena�n�[�'��`��E�0���`H '@H@+� &A�@��@�'�>`���G�&�J)Eg-��DJ�Yˇ��YDg-q��(L��40u�@L� ��@L� ���Qg� �1�.�1�.��G�UJ� �1�.0tV��DV���i<9:��Ag�(q�Y��EI��p_�D\p�@5�1�����\Pb `8�`8�0,�ۀ�uAm� ���L A��dr�����@g�|&�!�L�@O �� �Jh�$d�N��ڇ)�}��@ h����~�O ��}���!p S0p=P`��B��|�PH�G��|�@�'���a8�y �Bp|� ��@ E `=M E�PX���P��ӤdG �� `=M��4\0��D( 0��1i�A�C51!���P���ujHSCqjX �� f1����P�b��P�b�N�P���p{�\d�����P@M�סp{q ����P����P�b�N�N� ��Q��6� ��6� ��0 8��% ��������8��(p���'`��6@pK�!� ,��!$E�L<�@O`@�� ���8���8���8@/� ,VB�, @/� X 8�`���`� ��! L���,Vn�k VBl�X ��`a%`VBlP��EL� *���qX �AI� ���`%�V�a%�%j0XX �����`!��g0t��8��* ���8� \ހ� ��*0���%U L�,H�������TA�d�� ��� �0� *��s�%4� EG ��*�x�3� a +����A��w@ �/� a ���� �Lb��.�-0QRE�'��ހ� z@ �psAG���� ��$*P&�Z����B���� ���\P� �0�<����|�������|� @N�,�Q�\p6� �<�n��p�@p���@��*p�f� ([��E�#�G��,,�AG�,�´�< ��gp�´(��,��(��V`1�X ��X A���C`1L@�B�Qp��"Y A���]p��w�Hp�e�E#�p C`1#�p LN�,C`1K��P��X A@G��f���x���i@p�o��q����t@`�x@p�f��P|����y���T@�~������� h� @f�����! i@���"��6�"��#�8�$ �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+� $p�Vpy�6�(pWp��py�p�lZ�� 0@�P��bP�Z�<B� !�@!T…�!�e��!�k@��!D@p�B�\p� �s��a�p�V�L�� �L�@2� S0� � `8�U�dEH ��@V�l\��Y �dYPfAO��=A�*�D@�\�Y�(m�Y��ކp+\í�9���;��m�\p�m�<�0� ��\`�0@0�A��í�9�����m�\�:�A��í���@���m�\0T�;p� í�y�&A�s�Ip�m�<�y��PHY*�<�DI��}@���m<�<��R�ڀ$&� P� S�0���7P��C�?p ���/�=��P��Bm�!q������ �`H������0�[�L�Իqom���pL�FpJ�][AmP<��V $ �� ����#<�T+�@��+�{98�J�R��?�J�:� ������k���?�1�R:�PXl:�ס1��� ��R�G,�O�R+@+�%�܇J�J}q�=�k���*�}|�@�N�Rq.!Kq*��Qp*���p*A,�O0@��3NރoQ�L>��3�L���088X����R����`�R%�-58�����R��-�|�ַA0'C08�[ ���� �g0{�1�c =M� �08� ��-U0l@��=�P� Ä� ��@� 8���#�{��#t@/��2� x�K�2� /� �'���U� /��&� �8qKu@`8qKZ�@P��R�8Q�/���c� ��2� ���0p/C �| 1�>�'�/��b� l�˰i0L#� �@pg\wN�f�w��G�nF+ K^�WNa x�A�Ux�tB P�0@ETx}\�WETTD�D�pgD���heEE$p %@Opg ��) HD wF$1HP D^�}��� �����hepp����he�Ua^�WEqg|Q�e �AC�}<΁) (?%@)�&��� �� �P �v1o�JV�؈C� �]+�k����6�v�]Ӌ�S e#� ���+�C�������� �EX���]�H �q|��7A)��6R�`�D+�M`#�$�����7�pi؈c��؈��M`#�����\Z �v��9QI�|�AN���]�6��Da�7���DoW)�<8����D�HX���]%�E�v���7V:96�v�Da%T���p�oWXV:96�v�Dae P�Uf�AN���]&�7Q�9��c�Tf��U�996�v �.E,��(�.E(L@��K�K�,`�� ��E��K���< � ��7D�.e����� �Q��K�K@��.� �0+�Rv@ ��YrW.�/��.e0�Bn`��4�� ���h@�An`|)@n L�.e0��t�����@K��g�@< f@%@T~��G(p�EpnX~��aX~��!H~��1�~�� ���P �� X��EPD@4!�!���` � �  ���@%���|��L�x���H���@��D �| �ŧG���qnX!P�_3 `8����!�(�A� ,�*�t��k�LKN ��N�t���}���h0��с�-DB0Kh�4��Ai��h��D��)����t���}���tD��}��p�@��n@��!��`��py�p��}���!8p `8�(� $~��� ��DI�"�A�P`��(@ �>�@�� �B�P@"�&� ����1��6���6�\�E>P ��1X�{�^P�W�.����^�g���^��^��^P)�Ro�`���n��8�^0X�{m��8�^0X� ' @�{?P0��`1X�A � ��`1X��65X�C��1X%@F�Q ��`�Q+����'Ri�h@9Y@����Pq �N D�@+� nB+�4L����q�sC�1Y������[���l��Vp�;%�R�[�p�hX��ie�.��r/%L|�U�\4Ap���.�r�s@`�u���`8M���`<��P`,@�!�f������M�P��� %[l�/� ��0p���.5 e�p�i��l@�n���p@ �m�0�fP�w�y���T@�~���@`�{�P}��f��z� ��� ��p���/e�"���� �`(�@#�<�@$P��T0u�ˀ.0wS���n��Lp�*����p�*�Z���A0 (6 `S”!pf��\���;U @'8�{�'p�m���zT����/P`Fx���9��i:�4��p@ �m�0�fP����8������3�Wf� l#[C�5 �U�72 ��B�pj�Z=劓 ���O�N&��S&��(�-0E2S�� �S��Lp8#l%~�� �B �@�-�q ����g��$��d�I�h��F��&`�����g�@��}��q� ����g,%��z���� `���h��@���P7��� �/����`9�C�q8X�B�p '@�@�-` �� P7�}��э����p'�>P��G7�9'@IP'@IP'��/`%��p�\� � �Bְ/ ���!� �)�z�~@�zI��$(n�`P Um��q*��D`I�J怘�� ��9�k�Pm�5T�8����9�l��9�l��9�l%�V���Ʃd�Im� u*�/T��P��9�B�0T�}�B��$�A 6� m@B0 UCU`1�8�l��V��m@P|a� � �m0T�B��$��.q�V�"`7�l�'0L��"`7`AQ�0$���tQ�@ĥD\�@LMM@1uOT�=aLqS�pLqS�7%���\p(��R���r�������0 0@ �h������ @@�_0 �0��_� �(�_, *,������Pt�͔ ��C"Pt 6`��V�;@�<���L�r�>����L�rP��@9�-8Sq��LAS��s�e�B�8K�,86�`��PDS�GDS��� @4� � 'DS�����@��P  @G@�ڂ��(�-� .��B��(�-l��@l�.p( @p(T`P�@�� �j�����@(P�.��D�V0�=�G���E����ux%�!�xpD>�8X@X���ux��@��L0�@�Q��CdD�n�� �A+��Bt��������q��GP��q�q@x%AIp�Ap�сG@,%�G$�u�]0�u�Gp�ApP�����с^P��pP���;pA�%Ft'@KP�AIP�-�.Q��Ap�<Pq��@Ip�Ap�����Q�U��AIP�@e�T~��01�~��P���p(L*PY�~�� T~�4%M���PY����f�7�4� ~@����e��s���)@ k�� s���!�\�)�~�1| ��4uY������s���� �B@k�2d,2d(��X g�BCp,8��q� ���rF2t+4����QK��q+pEGAG��� g���q� r�p+,�w� 5C����Q,C�� ��Э�L �P2��V5��H@�j@`hUS`hUSLz`hUSLD��$\ @��$��A �T���Z��@+0 #���ހ�dM!z��`M�!@4ހ�dM5���dM�M���dMI���$PL�  !�@\S �G h�LB`hUSLz�DZ��D�V5�D�IL��)4M@ 00 #� L�@PH�%�t��$@ @��$0 Pt]0P�Q@ @�` 0��) �� �S�PP�SI@N�3��P��Sz@p I��!�y@x&PO�SlP@��T���@x �"p +]�0�D�@4 ��D�| �0(��00x P�i!�� cb@��T 0P0@v�O�@�qy��g(�AqT � ��~���XA!>�98�G�@��Qk�8�;�����P�l%9�)���Al����;p���;P�y��1o�.E^0o���^@o�%�)��y&�S�.���V���o�]�0o�SvW �-�y� A���)�����8���?0�C���a-�v��8m@ �9(Im�8d�#��%����v��<�D����KP�݀ap m@7 @��Phm@� ���Q�4�%@,��@ �9,@�9�m�P��d�oY ��G��#@X v�p-\ � �<�vna-n@�a-pM��EN�S8@k��@p �8@k`@�)`����a���h) ҇�0�v@���v�^`@~DO �Ѐ�aDv4�0H8� ��b���"1Z~��"�] �T�+Ŀ�@�An�Bh+� �����h`�D@�[�V��$ �`�S����S�F� p��hY0@F`������o�� N��pm��c �hp���U�Sf�۰pm3,AF����"`d��6�o�pm�`,�T N���>��-�����9eN! �Fp+<A���Yʁ9�hXE�eN! ��Ep+<A���Y��E� %�@� %�I�\�OE�\� %�@�[��eN! ����P�F f �����tZ��tZ���0b� !VvZ���hГ/=�i�K��i��V��,�F��@��o�����0�D������X)V���i-K��KtZ;A�i �P$��D-%�C�RO:+ 0���@� ��hPl��WnuQ_�M��%��q��V�A��V�*���� �K��VPD&�RPE`$[A�uԓ��=Y��§p| ���}�h��Q� Lħ�}(B�B2�I�>��l���m@k���RSPHW��d@�DETl�j�Z�N�y�@)� �������k�Q8i��Z�@p��$�@ԇkPXԇkPX��@}����Z�ԇkPX�@Z���A��U�� (PK�9�,�U�� ��)p+0K�A�� ��xexȅN�Se��� :u���G�,��A�� ��xexȅN�#Pr�.��A�^���N�/�S�S`xȅN�Se��� :r�!�A�^��H]K@� ,���K�g�%ƃ��%W���@K�gI@��p`+�`@O����0 ��� ��0i��������0:���hO)lBduQ�EpQQETQ� dF@�&�E�/���bY�`�F�� ����=aÓ7@��t4S@C�dӛ�"�Op*)�p*�P�J���YR�&%z��JqI�Y��aI]Rm���FXR�T�!H 9&%-�l����Y��%!�Jݐ.�q �T��m�'�c@�@D��)����1�D%� @����)DӑFD��@ �Q���@� �ģ @ �A�!t=��� pM=A� \ .�0f@%@(��)�BlP Xo �!�)�B�}›B`oʭ���� �)�€:� @�4`�AG@0��)x��P�g��h�����i�p@p�q�@�v `8@ �n0��!P�g`�"���� ��#�@�@`tx�"�y `8��DI�:PE�]gTX`��/�n��=���L�� @#U@�=�����@c�,�@!�8�@�C<0U�Cx��pAЃ.@�\m���C��7� p@p�f�7� ���8��as�\�#Ay�\6�'�HP6��=x��as�\�!p�c@4 ����8d �l�@�'$��0������R������!!@'�`�A�!@'C2`�!(���! �����L<B0�S�"p�t8!|��qf@$�2� ��@�@WA�@��f���"���EK-@�1X� ���( �F��/h�� p� w $P)���hR`��� ����� T %�&���T P�_%�&UpR%��U)p���}� 0�� |R @� \ .������� ��0 h �@� ��L�/(��(�-x � 8�@�` �%A�p+� W@����a�� �'` �D@�@���� Mp/|���] ��(� `%��|���v�Z �0(0[FB |z�J�A���w�]L�C+�0��]|D��P0|%@�At؀)�0 �@=�P� �E�`0h=C�%j�^% H�@ `0X���PY�D `� )���g,����{�_C� ju~��QP�B�e0�^%�Pi0D �VG �߆�qtp�q(�([A�"\�֋����08�߆�qt(�l��qtl[A��^�@@uw �� �}[AG������� �QdhP��m���h�7� m���p���7 S0�doF�A$ӂ � �� ��P�f� 4��D ���]e@ʡz@x��<Gʡz���~���@����-�f��@��m@�m@f�����` ��@��>Aʡz@@C04�����)��=�k��`|)���n��r��ap#Fp�f��m@�m|����;"$�5�(}DOPJ�)��=\ ��"�OP$��n@z� xp@ �m�0�fP����8f�p�j�PC85D2�g��qx�q��ǡ^���p��m �ɀ�q�@�e%x� g��.@�v�o@�@��q����t@`f����A}� df��\�D�%g�Y���% �_��`����,�YzBp`A��p�9�h[Wp�f@V�cY@��Y�\�}� �C�\�YJ� f��`��(E"Df���t ��S@ ���}@ ڇ�� �� f5��g f5��g�4��g��@#�|�A#�.|K�L����L�7K��D� ��g� |P���R'�(�|D��|'�g�9|&�g0i�@2Pn,�q-��@��Q P�)����0B��`JW��p\�� /�\`<�B��0B��`JW��p\~��p� ��1�\�Y-��"�Yi#e�f��k*p ��O��ն����p@p�f� f����C�<� f�0f�H�*� �f���k��m���h@�r�s@`�u������� h� @f�����!p�@�$l�"�4��# De���kJ����R�Ap�*���Jex_���}F�r<��&<���p�@'pz��@'�z���!������ 8�S�O @ �i�~��F�\B �P�~��F�J~�PtA� �gt0��%�,�9�G��p4S@C�� ���*� ���0�s� `�>�@f-�@fqK@�Q,L�Pn K�(,�� ���"Pn ����w��D"@�����Pn,"��� ���� �K�Pn,�� ���p;Y@ft_��5�SX����PT@I�0X�׫ A ������X��p�{�f�j��o�.��:��Z-�E�� ' ��EaaX��=`���qq����&3�����>����b0\na�f(�@5%���P0`C�P\ G � \ ��P� Cqq$D �P@�@�pq\ G���@ 0 $�P0����X(��XD�`H0k���) �bqq c�X�G��Aر��0w�`aG���Kw`�`G�v 4�w`�'E��|�� pR����� �A��|����p_�o�'p_�o�'_���_���� ����� ːff_���_���� �d�PPHB�\��(���HB������$4: ��0�����p��8Z�@(��&� "�@)�0��, �B �N��;�"���.� �"3P '@�3 B0C �v�\*�9P�S*�8Y�T;���@;�N� �S �v���ۥ"�C��;�{�A�>�v� 0;�N��̐�]";�n�)�{n���� d� S@�"�� XPT8��@�q�]�"q)*�SSAPL���pOS���S��1�M���q1��#�:|> �ZICK�Np����}j% -:j% -:��!�S=BAQ�@��Q�S @��{�S �i`�VQ�0��� ���G���p��%ACP�'4�D#���D`�q`�{�JpR��@ `�S�eO%�G���%A°Y�uAI�0�Lte>���Am�}H0@m�e�%�ADx�A^`�SyA^`��AC��{�n�xAC���n��{�I�,�GpR��n�@{4�,�G ��n`D&�Ad�w�AOy�)�b��qA0�/Ƌa L$�) s�9EK���;�"D /Ƌ�'XZ�‹���@���@IU��%�{��u(����j�% T}��o1H��@dPU �ЉI{iS�K� /� (��7.Xr��Ȑ �h� d��̀pf�8b4�&�f@h $�!f `l@����x��a��<5���JK��� �@��0�AOpK` �%�2�=!,� 0��� !4�2�L�"8x` �T� NA8n 4p �@�p� �9��v���6p��{� �*����m��3���T���?�����El�"X�@0V� ZA0g �<��x��Ă6p��@��9���q� Ё:`�p� 8�� �n 4 A!0g ��� f-���D�l�-�� (D��#��� �S�NXh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*h੺��,�](O��l�_�O���?@���T�>U��$��P���� ��$�������>�.�H���4�b���i�����,�fa��lX��$L�@�A� ��Y����@�Чg���Os�m�{�x���g�?md����=�Xɴ� �a4 ���in� >` �o��L�X�������Ln`%�v7�E�,L���!|�p.�� w�(��Qj( ��_� �}l ��d�_���P�'p @68��P@m`�"@���?C��������d��x ����/D�)�� ��� �O������j� �_��#Zd (���H�ІA�hCJQ�����3 I�fB)�@]|�Sp @#P�b]�F�.>��t*�@]|��p���Ne 4u��S��` 4u��g:�% ��uq�@�s]��u1~fa"���̀%�*�(uc]p�@p��b�P �P�纐 z70��p�Q �a]�u!?��o�z�n� 0 ?���p� |F���)���3��2�L�"8x` �T� NA8n 4p ��*�m��8� �h �=���}��?�@0z`P>@���l@�`P`�(�E#`����3���@�� 7�R� Pm��J�j��*�ZA���u������rz>�� c H�V` f�8@`�f�8n� �!8�` ����:a��������A�{�o�����|�;���a �%0�@gX�b |����g0 K!L`�F���4:a hРt��>:!��pZ=���J��?� � �Z���� B&x3��@`@�f�83��B@�@'�u��@?Xx ��Ag@ l��l� p�s���3�@� -���$H�;c��^�>e�B Q(��`5,��;�Oh!�g� @�Y�����i@@I� @B� …G��f��Tzpg��:� ��.Ѓ;�8��^��`���� !�]����G�'�����i�-����SV>��� {���SV>����F�ܙ�RK�>T!L`�0X8 ��@AX8�g�|r�� ��D��p� �k���p�\�6p܀�8@<UpЁ�� ' G�GxK4t����Ŵ� ��3|�@�Ŵ� A C P,����01���p���g� W@h�O�01�a��PZL g� q@��3��!���21���p�8��� Q{x���A6,�!�,@G �|�����3s������:J�c ���I����a3l�FFSBB�8}N��: �@lVP&P�\��: ��`z��P@ �P`S>���e�-�5Z��� �V00(-� �P h�z��PB  @(���� @ @9P�n��औ�� A���X�pS@,�ɠ��$;b��)� π�$bG�Pnf�%�$;b�Xm8`o%�4L�!��`���d� �'�0��a��7C.A�L8`�Ď����4�%�$`�d`*��<0`�`��` ( �*`��Pt@��� +h���H0Y���@�BYf�`\�����ɻ���0(�� �=���0�AI� ��m^��� � �78��� Jnxn�*<���N�CH� �A�-�ji�~�[-�p�u�8@���� p�J#�V `������JJB p������Ri��x�\� ����^j��['����N^*��44�_�T.�Ri��Y"}���-z�:X���.�>�H`i\jK5 Le���6�k� ��`�� �@�3���7� ���#8�ʹj�hM �g���qg"� �#y�K�.� b��\�`�O�G̊�)+�d�xNBm�]yX�x�OS���dp J�G��8����.���K��?2��; ��,�E�R��( ���,��j�@I��� ��4����p# Q�6p���Iiȁ��A0�6�~ 0�������A����+� ��0(x���)�ؠN���<)���HC����� �O��Zb]�9|B bL� m��5��@�p� �9̀xu ��F�].�P�f@X��se0W&KqV� �@3@8uPyu@�A8u�� e�@( T�hV��@(� �.�K��Dǝ���R�Tn��k@�d�0�~�0Y�hh���T� L���:p �T�T��n�T@�d�T.����A�R�bc�R��L� ��@!�TD��;8>c�7d� ��<�B͵l8� �y�����9@�y���� �HH4�1��Esu���As�\���HH4�%�M<��*pD���� pD��� �@��C�P0@� -��g�i�x0�k@ �o��@��r�@�d���@ ��@(P$�E��p$ I&`$�H�-� $ MP|8��� |�(�g( �-@ � �N�gT�@!pDM@!�$\Q@�$�<��� �E�mU��k@�4݅Py8��P����t�@0 �<@( Td�G�]��$^�@�u�xQH l@x!^ |@/� ��@�4�E00���0@ �����5p �ߐ�0Z�� 4�P���7�� z����� z�@0 #!y�\4W8�HH4�� 0��Es9�#!y�\4��HH4�%�M<��*pD���� pD��� �@��C�P0@� -�`��@)`�f�)p �k@����P ������� �v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �8���@�3�Me��Td8� �Td�ME�3�M�m�6#�Np�}K2 u�.����� `6�TtS� � 7@Sq7��q� 7@Sq6@�a�tf� @%�: ��Q�R�0�T�H�i�!@��A00 @+� �D�T6E��d��� |�CqP���pPyG��P�+�*P��@$�DB����BNPh ��p4�E�)P��=�8T��=�8� ��=�8p8�A�(h#���8��@hlC�8�-�j� ������-H�(hcP�9���j@��l��9���n�P�o �t@`��@�y��H{��k@p�x@ �R���~�0�f@ `�� @�f@j"���@"� ��"�4��#�`C�<`�Z¤0���� � R�n��a� �)�Y��(��A\���B�Q�E�B\`X ��d6@\��=�` Tc���Y�n�dq�>����p �B��.�)�) ��.�D���B\����gxQ@\�q<F�Z��F )� qA��$$��`#�D�C=���E�=�%@��N|9A �N�9A `O�%�1�(�LNPx3�� ��.%�!�.3�!����7���LȡD�� ���� ���F��t%�B�P(�� `O��� `Kp%� �( �DE�Ph�B�P�%�-�=�.� �(��B�=\ E�.(B��=� F�kt�"�\�A��P��F��!I��Yr (��/��t>T*�W���!p�06(���� �c��]J@��U�p���J@�%T�!�B̠O*��V�:�.q�/dz��P{�:$E��!p�0T�݋P{�:(@���!��P{�:�Y@��!p���(���:Dp��f�-��P{�!%�/lI00h �8�8YA� d�R ���d�U �3#@�lVC��f�k50� ����Q@)9YA�d�A@d���h �m`O�$��`�.�AV��$���- $AV`O�Y m�&Q�Z���Cu;Tg��ƴQ��A�u�f��F��mHn�x �ON m���!m�eAp@+��P�!m�;AY�h��M��U���U�������i�,�a�m�C�O�����;��}D��tu `t�PN�i�=��*�`#�NJ|��=���G�!t������H`p$��NZ��0ildC 00)� �<p�T� �Z� ��JB��J��:�)@k�h������� ���� ���X�L`y �@��%�M@  PpR�����@��@���� PQE%I=`�(�� �bE HzE�"H� @�X4�j��H`�%�3��@�hk��j4p:XM@ �$t K�C�E���9 ��%<���@�CpI�-$IQ$<����B�C�I�$�)�!G�!)@�B�(�.@h�u��An��Y3�d�>��DFV�d5GV@d���yx�DV`�3��DFV`d��p��06����Fd�I]�� O�An��@�`� Z��� ��c> )� ��� c�}�8� �t � `y$ @�B$4���K� �G�|<@Up1S� �� 5�L�3�.=��9€p.��9æ0p#��3<#�#U|u���2� #@���69��3(�B:QB�9�<� @0TBR||��PT�f�S#@���`V��8 ���%� �(p ��QP ���(�H�f�S��@N����;�Y䔠 (��p"(��xPj$�T��< H�f%�D9〤`�K�TT��j���RPn�S��*�%8 ���Z��j�Y.Q@Hh �T� T�@A�� ��9@� �0 $��`$ @��@#@E��@/�G�\ � ��@�� �:`F�NU�@1��FL����@k� � ����@U5� ��@�P�1� ��� ��@F�NU�1P`�a�B` 9@2�0�����SU/P�i���΀mp \ 4PEQ�@ �E@ D `���Q��Q@$0. �P�W4.%�P�����q���:�@p��Q0A�%@j���$��FQ ���<���PR������� ���Q ��FA.lu��< f��< ���< ΃�`V�x��< �QT�(Ba@08@�P��P@P�Q� @�0 @+� D M ( ��p"�J��4R@BT��F�s�H �k����E�j, A+@x���@�b���&Q�W,z�����&Q�W,z���Ch �E�9�y���$ �x�-P ��������7��@'� �1A�/�H0�H �H ��9t��0�L ���t�x�L ���x�Aa`��� p�7��F��@�H �` T�-�x���t��� B7� p�@LP� ��RL ��p��|��p[+0�L ���t�x�L ���x�Aa`��� p @'� ���F��@��wTY0�wTY� h.E@�D@V0aDd� �.�E���c�"���i��c�"d�A�X�C�� �pP�!DdAD�L��H��b�&���� �Rd����.@ˑi�)���k�1��<00 ��` @LPi��Ɯ1H#7�t #70�����@\p �@ P�CL�1L#�P� C� 2�#�`i� %�Pi� ��Pi� ^@��T'�0� %�ʰ2�qBցi� �FI�2`c�P/Hv@�T0<�P0��c@ ��THn@��T�k@Td���1O�d��3@@�O@��4� ~@( 8�h�m@~�0dP�h�<@(�-��` �I�M�m$Q�v0��pv@p�.���k@��G�1��p��q�@�s�� p �1�T2�L0�a�3 �t@:��5A:@��Mpt@:P���@00$7N� �I@N���N� �G�1� =Ap t@:@�~�O\d��d�����P�l�����#�Gx ر �d� 2�� �l�APPT ���1m[�A����Vf�G���� �?���ݵ\S/�u,_Cp���B0�j"P �i�)P �j�P�m���o��@��r�@�v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �^�`D��@0 �@ (�@ �A@@��@���&� I� I��,(7p�4��@<q��|�4 �l7A�|��,(7A%�l��|�n��@��r�@�C��|�Ip p@�P|�p403D0CG��q��00�@���/� DJ ���#�F�@�Pb ���QN� h � ��� � P�C�3� 1��=����` kF p�.@N� ��� �����=�q������9�/��t0Hʇ Q�/pDt��(J�G�|��AATN��Ϥ|v)�� @@ u`��IJ@<qA�a9�4�0|D��1���AA D�| ?��Q �D��@ c��DAA�)�A � |� �I���/�4 |�`1���g tx$&� �80d � ��Y@T������qT�Py<:AL��� � �%�p��HB����0qA�, �㒁�q�ax ����< � 8�,d :A\����B\�L�~@\���B���8�,DJY�a0H9���A\�h� �N� ������@(` DS�@( �@( �B�/d �$ b �%H 2Е%��R<#@(�O���)�R�/D�� є �B$H ht%"��@\Mu NB4%H @\�)��� �BqA�@�H $H\�)� �B t �F4�DS�A4�^�`D���~�0� �|T� p I��~���~!̂�q 7� @�� �,�OA\�,(7 @��M�(k@�0 ��MP ��,(7���n@�d�0�7���,(7A��� B;`�p3t� ���������x@$ t�@�,��`@P&7=EOQk=) @ 0����R�[*�=EO ��,�A���#��dt��ld�N����pD�SV�9 @_1`� �m=���@�, �m=����0�9 ��ѓm��*��=EO ��� ��`DO#A�d,��Ja�p3tN�=�C0�1�p[� �` T�p0\ �V�u-�Z��?Q3� ���P �K�p0 ����� @��,x��������� @ x���, �=������Z�)�� �° �� , ������m�/���?�N���P3� .�U0Tv@@A��P��D%q D� ��p��q�@�s��  ���5@�d���C+p �;A%���@䂂�(�/p� 8�Wq��N�m�$� � 8b�g`zp8�/� l�@��y�^EV�epQ�gp$���� @��Ð����$1��,�Ag����@3�_��!�,�J���t�A����"��� @�$A��6t$I�|�g�%h Z��������� �Agi��Ag�.t�I@� ��� �g��k@� �:� �Z�@�D�@�ڸ6)� �HR@�1�c�O��D.AS`�ք}PYM1��F�i��>@Xb��1�}4J�>0�#�=�|��7�tO*�>0xKG�4��G;�O KG���M��O ?@�� KG��L ��� 0�-��$0����� �3q���m���;07�����.?�O M���� ����4��8�?!04��; (o�P8K�� �Eo�~�K�[�P�=�eas�[d�sAg��DO�\���\�@g���h��o������Ipt��!�=�[�~|��!`K*�,8@��6��ڄLSj*0M�M8@�� 8$�,��D�����4E)LS�D��%LSL�4�LS��4I4 l�9�}LS�� 2M1K�� �A�� �M���)0L� xc���d���)0L�0MMSj$�,��� r8�e����Ay��y�r�s@`�u���0 ��(0 h���0  HB��$,��� ( ��'���d� �@( ��FOh\��!�(MhP��������@��.�n�(��p�*�:`�� 0 ��(0 h��(� d��(� ���"� ��(� ��@60 x��N0��0p���0 6�� S�(p��6 ��@6 ��0� ,K��pK����f���@{��h�{�@p�h� ��@{�r�s@`�u���0 ���<��(� P����@`�{�P}���m���z�@�T@����!$�p���`�h��(`� �,��"��h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@0 �k���@p�i�(��`8Q��`�=�6`�=�60�o6� |f�� �#f�� �#�D2`�ɀ}��������"��ɀk��0�������p@p�q�@�v `8���8B0�0@V� `8Kk�LK@2��Ul@R�,J�����"�(#�H0i��V+P�g��k��m���h�z�r�s@`�u������� h� @f��L#�V2�df��1 MC�P2p LC�@&���pyLCӐ!p�@&� �l�"�4��# De� �8������C�Z4��f@�θ_x��Τ3��6Pt�o��Pt J D2����m@�m|��a\�'���"0 �8� �2�0 02�` 2Ƞ� Je@S���Ay��S���� ��� H���q���OVf�?YYf@���yȒ��Hf@�d�!/�� ��3� ����<x�� <f4p�� �4U���/\Dh�*����/\D3�Y���YP����g\yƿp��f�� Z@� >��/\D�Gmp�.�^�Wt�a��6Hm�9h�F^%y�`p�g�I`I�{�%QF� �z�^�t� R� ���9�\� �y�`�W�&�fp�>@n��D�� lë�/��An���Aia����l�QT.l� � �!P8@��DP�dJ�xp(>���m�:0X.@ ���C�8� �,rDG0�%� ���A�,�c�,0� �H [AG��_�P� mƂ��[���?0��!PLr�:0�Ap���lh���"� �q���h�P�0�1�P��� � �k�#�C����90� A0��@0���� ��p@p�q�@�v `8�f� S00 ^��!�L�@j dS@j���@g��`8Ag� S0���N�dr@O�}��@j���Ah��F��f0 h�flڇh0�� �dr@O�}�]C4@5�Ue@�q�x�vL��a ���i�a� f����@�g4��Q�Ö�~���Ap�y���B��3��� � �M� �� �C���� � �M� /���e�l��@�i�aB0d���v4S@�i�a�!p�����f���x�`3�7Cp�o�r�s@`�u�p�m���z�@�T@��~@p�f��P|�� `8���p8� @$`�р4� � ���&D;�!p�� �h� ��@!`�h��38���6�"��#P�g��k�̀� m���h�p@p�q�@�v���@`�{�P}���m���z�@�T@�����8r���u� $p ��M0D�@+�3�:�� � ��!z� ��� ��p�<�� ��`(� �0e�#���Ay��y�r�s@`�u���p�m���z�@�T@��~@�/� ��n`�~@�d���/�}�A�����$���/\e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� b�X@�epy�6�(pWp��py�pP��bP�Z�<B� !�@!T…�!�@�q���L�", � @L�B�b ��� ��pyp���O��P(��>�l���`.���;��8�;� ��O� 81��91��PԁO����l���`� ��;� �>���� x�@`T������bT�5��k�ƒ\.9��Ѓ8��aa� ���p[��8��CNQ XP��NP%@%� � ��qP X}�1ai�9E%`GX�8�烘Ń�:H%`G@ ;��NX���2'�Y�D @�B@����� �@I�/����@ �F%`GX�@%� �&k�/�@�tT�p� �QN9hp� @k����`4 ��LPxX@k$� %����3q� �j$I��N0:`@k�H1E�I�Q �T@���@La �C���1� T�@�\4�Q4 �� P���LS\4�I���B�P�@�T:A��tT�@�,�/@S�l�@t 1E�T��@t sD�,�/@SH1E�T��N�,�F�>wƝ���ĝ�G�8��� � A�g�6D�����O���� Q�A]�>9CD^�%�y��QV`��QheV`t8N��]P�&���>9C��/�&���>9C�T\�G���� �CD^�}�Xm���Н�O����mc D^�%��GY��O۠}�Fۀ>�H,�G��GY�y��QVwG]� �v`t���m#43������{q��ǧ�)��� �)| ����)| ����)�D�{q�b�N0(` ��{q�A�Q#�� 0i�����h�zӤ�0�Q�h0��K���� ������)�&���}| �ǧ�)L&��� �ǧ��3�>���§0i ��N0i0���A(�����g�&�<� !Hʄ�E*nP���A� �rʄpS�T@�ƻQ�CHI�2�"ʄ� ;�o�2���I��ʄ�A8@��B��Ypn�Y0pI �[Q��|d�Q-�Y��fA @��ԛ`�h�Y��S�p`+�8����%A�@�F�I�J�s�IP�-R]P�%���-R\��G��|Ĺ�G��|��p��|0L �G�V0�g �� o^0%���T�g����4�=��"|v@�"|�����G��"\ ��8�G����( ��@[A �pv�V�l0���p�G���[ �+�V�܇�}D�FK`@�@ Pp-·qp��;�L[ �����}�[�p�LJ��V0p+���v���"p+��h�߆�m��V��v@��c�tbP9�� >q��By�}�[�a�h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P�g��k��m������q����t@`�x@p�f��P|����y���T@�~������� h� @f���K@7� X��#����!pi@�\l�"���"(�@0,@#�<�@$P�g��k��m���h�z�r�s@`�u������� h� @f���X��z� ���44 MC��50 %���f��1 MC��! �'� ��"�8�$ �@�f$M�f(�]q(:�`���εB(���5:(�F2p�4��]��h���aAHڇ�`A�4�Q�;�N�&�N��U��(TM ��Q��wA�� �`�N��E0�uQ@�p\�\ � \ �(�-� .�0��D0@�pA0P�A0@Q@b�$v|%�KP@�ΐ3$ A)@a$�/AQ@�D8CBP"�b �O�'�P@ %@>Q@�D.[\�D0P@[Aq��)��KP@�Dq+�d �ap���� "� @��j@��k�}�����p@p�f� ! �6@�``� ��6"�6�{�cd`�� ��6@&� �@�``x� `,���8f������T%@��=�*��P}�:�OpՇrU}T�U�Q}�Շ:��Շ:@� C�Q}(Wʕ P}�Շr2T�@T��:p K�:��&A��%,�I��T�� T�U��\�:p �:`�\�:`�NV��1� �L�=�$P��~�f��F�I� ���hTK� �F�Q}�C���Շ�0B Շ�P}��`�0s�Q�O��@!�K�R�/A*� '� ���� h�2� �( � ���7@l�V�ʃP�[��t���Ze@2�)\ ����ɀ�@ɀ�@� ��k�i�@�h��m0�J@h�+@ zD!�o@) �A�@H!��4� �A�H!'@��@H!A@�iD!�R7�Q!�|@ �RL!QH �D!{B� Q��� �G�&mQȦQhS�;Ph���d�!�'L DP@~���K�#��� �P i��T�Ġ ��5p��@#�0@�'@=��@��GB/�6��P ,�ȑ���P �G+!� �U�dEH ��@V�l\��Y �dYPf�0���e �@"T�2@�Tȿp� y�����?p�Gf�pT!f�G��( C�9���;P��m P�s�<�0T!�]��U���U�0@�C���AI`��BT!�]0T�;P����P�,tnP��@���U�0@��ա�U�.V��.nF2p�n�`@�C��+�r�> t�TA �G�I���0 � @ @T1%<�P� %C�Px�ú�� %C����.0 �GP:������%��� �C0 �GP:�e�GP:�.@��x��G�Iy�� P6���'U:xR�F�P8�GP:�pA��j�ND���pA��DxND�DND�p(xN�Gp(�ND�`TT�B0� P� �|4 (D ut$(�1 �f� S00dr� UPS@�(��,((��,� �!@�1�< ��gCAH�T -� 1�h0�2����,4 �A ��A �: ���H� ���j�T�Aj�TO@�P� &�4r�0@ �@��G`���G�4��IP,O�)��O�)�4O@�`� &�)�� ��� �n� � @G�*�O@ `���G��� �&�I ��>` x��G�@&�"��%Ba��G����Gj��ZP�&�)�) ��)@)�&�)�)�'�X ��(�'`%��ElP��j0X���p0X0V��X �E�q(X �A>`% ����qX �AI� 1j0X�V�a%�%j0X V��X �����`a%`VBlP����?�:����U9 ������ �P7`�:���BK`�-ڄ0 �@�V�v���@0D�n��d:dn����/����?�RL������O�S��dS��1( �A��`AS�08 [�P�%�@� � \!�@p�����t0W��`3\!�ºp��P!T2�}$sC�B� �R�0@n�0L�GP��@��R�L�tx"@mP��J�Lӱ.��B��A1�� -<�Px!<�.�����PL�E��txńG�t�6R{d!�� ��~F�gd!��}�!E����;�ر� �8K���Z�;@�b� � �@�)�� �.;H�їG$�.;���yD�@��."�G}�L ��Z+�1�m]�D�)p2Q 0]�;�ر�K@��N v,K]���ء��C�,K@��N v,K]�/�ء����9Q��R���lsg� ���O���O�.����N�vA�e�v=pg,N�I` D_�%���>pg����I�����N����j����Ra��mc D^�}�)��Gp ���p %A�z�w�]Px^���j������Pxm!w�?A۔s�L U0d>AC0|Ӏ"`<��2���Ey] ��P�f����;"�@��@��%@O@(8T���@k�8�Ip�9�o�{� �V�@�1� @�d�&A��� �N I�H�� � v�-C�P�k@`%��C�+f�����(� d��(� 4Ӏ"`�M@�xM*������ �C���A���� L��@[A�P\cB 0uHT �V QMTc�0& @� lU 0uDTS�V PTS�V PT��|@@%A�|@@��`a�%��\�:@IPSP +@I�d_! @Ld_=PI�:q �WH�ud_#��}��A<��R�����R;>tQYT;���%@G���CG����-���@<��R��� Fh8WAp�����r�s@`�u���`8����@Pn=f�0�l��t�-��� � <8npR�����|3� n�� <��IuR�����,��e����x�� �yd` < �#�n@�q�p�*p�~@���� �n@�q��*� \���h\��cX%�`�����.��@�P��I��!� �3Y f��t����Μ!�C+P������Ay��y�r�s@`�u���`�3���-hW���8=A)������L AW�L+��b�>A��8 P�4@݇���� �l��$��� �������!���!��І���+�3o @w�� ��ݰGG�Z� x���9��nj�3� ��H`d������8B0e�#�zxk��$n�.�n���E��`��py�p�4%��z8��!��@���� f��8���!� �@ ��� �  �9�KF�@/��� �@ ���K8+��HV���K�F�@/���AA/�k�F�� ��A/�k�F � @�� ��%�q0����i0]�q�=��| ��ٰ���"�0�!"��@0�@�L��!� f�� T�E�(��E�C�\�E�C`J\�>�dS0pd�@2pPA�t��Ap �)q ���,I@L�41AZT��s�0'�e�0�^�H���D 0� @�$~�0��1 @5@~�! 4��i@7��X� �H"~�&�#md�@ 0�5���i�Pc���i@���� ���/��e�0��*` ���6��@!P�@�����|T{��0 A:�4��/ l�>�|T�� � Ā�$��(�� �� �� � y�c� �k���TJO�$0:�!�A2� ��pyx ����)���S ������B����!R��/��@�/� @L�/� ߅j�#���-�1�d#����1���HKP���1�}`BK`��FK�j�� �i@��� @(�T�@~@(� � 2��O1�3��H�, �AIl�ApAƒl����?l0��B`$<#�!��� "��j"@7l��� ���e=~C\p �hqA �4A�4����`ZACIN`ZACIN�zl� @ �( k���� )����?| �A ��)@I1\T��A5�kƚ�m( Tǚ1Pv@ �i�P�n��k@�d�0�~�0d�� hPy��A2@T�Az�/��O@ET A� OP��) ��!Pw�jj�Z���(�5 �A��!{"��LPy�4A���8A|@�3<���_u��1�m����Z�Tf�z�6 `����= @�4@�A ���E�=�~�@f@�BLZ!b�4@�A�4 0"v@0GA�R`�P�"n*���9@���@0 �A� @$ @`D�@�4A���@�N�R0 ����)����c�@n��k@�d�0���)� ��A~�!���<Ϡ ��`��@)`�f�)p �k@����P ������� �v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �c@���i@eE^�MdF;�l@�6�n��k@�d�0�~�0�� c�A� @`D�@��Mc�A�cS�@`���-<��*@~�e �f)��v@`��@)�l������n�P�o �t@`��@�y��H{��k@p�x@ �R���j"���@!� ^ �$~"����*0�[���4 C�l����.n��k@�d�0�A��~�A4A� D $�B`\$@%� hG��pt4��� �[� �Q���tj" # OP�d�� @������k@��T����n�P�o �t�@0 ���4��<�d����@`D��B,j@/���N� ��!"��M<��*�8��#0y�?����l[H0�` x@(�-p�� 0�@(� � � ����/��E`g�!�(�6���*#��Q����A, #�/��B��/�΀mp ��N���)��8��jL�F��⇪�� �@ �h`I ~(��������A, �� ~���AfP Ip� +`�΀mp�@a 6) p��0���%�����8� �1x 6@VPo�eC�1�D�H @Vx YAV0�D0@x��n0@D��U ^��q5d%@�0� ��& ?Uq� $�n0@�Hj��B��0��V�S7 @�8��&@%P �&�7\ N��R ��km~���/p!���p1� ]�&�7\ �� �\ T�0�\ �@) +DA�LQ���M�O�� �������P ��D�s1P �D.�P ���@%����P (���P �?YA��\\���?�ćs���D�s����7|!�O.�7�?�@)@%P G.�\ TB.��?C)�\ ^H)`p!��ߐt!���p19����"�}�_�G0("�G.��������"�}� @�`����:�ȃ��I@� ��*0���*�< �������<���������� �C0�_�G.1�${��A �E��0�E�������K�3I@Q�:C��P4�@YT�-�p����<��W@Yh) �mPkm� ����K�3@�$�"ˆ ��Q|�pgTw�'�q��g����gPDqB��g� {E'� Q�'� �A��� qB��� q�0,"���g�<���� ���pg����$�[#҈&G� ���}Pw�V�HJ>@�`����<��H�x<��0"����@���K��� �S;0/m1AL0l|�Y�g|��Q�#@�&C�\.� �a2�1�\�`$� `2�Q@���|��-l|�Y�g���>�$��l`2��A�H�I�o�O�|� ���5����5�l@(����/��n�P�d�� �d���@ ���Xր� $�7���p ��#�S�ր0op��@0 �@0 �`��@)`�f�)p �k@����P �o��@��r�@�v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �cP����� f@Ͱl@`�o��@��r�@�v�P�d�Hz���}�w��R� �|@��x �����P�d�� ���a34�@1 <4A� @����� l�3�3���30ɀ�x4"����"0Hv@ ~1k@�,RAP�w�p�o��@��r�@�d��� h��&� ��� ��N0J�R�D !"���` $j"�G ��O �"��TT/P7��AсD�M<��*� DP�@���@p x�@(�l@.` �o��@��r�@�d�� ��f��@( T�@(� ��@/� ��@���@0� �1@��#P ��@( ��'� |���8���8��;����`��@9zxE��;�r�;$�@�`�&� @;h��0!@�C� <��� ��êq��� ���0�f @P �˵p- � n�X�6�����(z� i@6��?�E*`�-�G�@"ׂ��,z@ @8]@>pZCS�G�Nz��q-����t�6k�P]@>pZCS�G �?K�0`��K�E @"�Op-�€���6k� �@Q8�W3A�� \ �@c� A�1��0�Vл, Ao�,sX� @5L"��Vл@[�\ l`@BP �#2��Hl����p�b$@>�8"�B�� \�� ���2�I�����a��Q���3ሌ��#Rd@$H�@������SGF!����I @Pdd70"����1B�#��q �l�"0K�\�#�M�AjruLqS��h�(dC��,(@f0=y�"p ����"P (���S����Gq��@�x��Ѱ(?Ap9%x���p9%p@ �m�0�fP�Z��g8���8 ��n�x�5dn�xa�x��@ ��ðw���&� ,xFB�<< f��K�!pdS��f��l ���8܀!p�@`�k:�xa@p���A� |Cp�f�7� ��Ap�y� S0�LK@g�x K���,��g`,� ,#���i�K���:��}���N���=��V�����4Ԓh0� A&�fd��!�@�'���5��@� ��N � �,x@&`8�"��g���hqv���E�[�;��Rp���H���8f�$�@2p$~.`- ��(p��6� ���(��[DO "�[�B�@�@�1dT�e�APVe�aPV��(��[�E0��ٱELD`�h@��h���� h@�r�s@`�u�p�m���z�@�T@��~@p�f��P|�� `8@ �n0��!P�g� ,݀7`8��#���!�i@"p��`(� �0��d��#�@�@P?�n����n���n���=A�`#��C���@��@p�p�*��`8���@`8@� L���� ����8��!�@�'��� S�! "�e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+ ���`�ŏ q��3� �Z�d�=�� �=� ��=��V%����%�k�� �L&�Z���P,2DI����� C�3����� PP��� C0 �H(�� ņ&�`EP(���P(�`�H(����;�` H(����;�`e(�'�; �B�qR�B��;`�B��;�%�B��;P�+�; �B2�����= �d � �f��f�� ��#�l�����Rx�"�(��"0 (��" H��R����Q4R�}P8R@�D�!!@'�`�A�!@'C2`�!(���! �P� �P1A����;P����) �+�FP @� �w� �(| �@G@0� �|=F�$ HB��3]=���* ��'�\P����@���xV�c ��UD�V�I�.��0��Ud��AAa(V�I�xV��a ���a�AI`��C�`��ã �|=��a! ��yXEV�I XʁUdp @��I���xR��V�5l�A  �ç ��ª�"P �çph ��Q� ��>�Ie�C@ O�A  ��>�� \B � ���0 e�>@)� �B 0� e~9� uP\K@ڀO,B�,K�����T,�N�f���� H�]� �nF+�,���T��N�f��A'� h�Љ\�uP\\uP,:��pQ�0,3AڀO,8���E}�G'�`BR��X��T�R�K�`����T�kR0�+�EY@��x"�����0D@\���|pQ���E�6�8�P8�+� ��pm\�8����%`�%X� �-�'�X ��|L%��q`�>�9dG �p�{��{ž� `�Kp8dG�{0��"��E�P��mp��E�P��f�/\Dh��>��/\Dh�J���E4 ���p��)r�"%@n`� %� �>��I�v�fp� �An��l۰�>@������Il��mP7�u�`�{Fn�J�����dC���>�d -�r r���E�� 4��0� �4 ���)R��� ��H @m�DP�(@�]�P ���hP�L��,]$���9]�� cb�� @�����~�!��0 ]�>@��ƠP�!@�%�#��0 ]�>@��ƠP�#@�%��BP #�R@��;P/u� �R�O�@��Q�3�Q�ŋI0|��$�t��>C���F�b���P�@����L��$9�&A*2d.�*� 1 u�8H��N`�"�����"S*2�E3�`Ƌ#4�H�� ��(%� /� �B �B�/At��"} ƈ�a}X��7h� �c_�&2����)�w�|�/҇�!}"ނ�t8BJ���z����;�1��%�X·��}�1n��`h(ڇ2"����i�ن�.j�͇!"ʘ&�� ����#(D:�$a1�!r����(z��� !��!#�އDi��އb�}D���k �I��%��a�6�ύ��}(6����2��%{W+��� ��Pji|�_C= �}v_#�����?�u��"��q���({Vj��"h���>a.��t�_�8O6y�%G*��I�?�/9���A���aĄ̅�G�}Xv��;�/ ������GY��6�A�UD��l�hX�դ�-9���\�z���!hIvy�a|H#N�]!� ���a��%�� ��h�)�\_|Y�"Lա�h֚ ��v)·Wa�I��A�X�1҇���I�w�&�(�e��&��Շ�!E�CEޢ�� �ʆ}Xk���w��+�����`�!�+21go��8���!�+��#R����#R�bq�"�IU�k��U�bq�"GD��kYإ�"�����R�!�����a�d� �ܦ�݈�y�M����^O�&z�Mbky���L�k^�z �Xֆ ��fʇk��Xև��'�0���&h5և�!}X>�QcJ,և�a}X b��!P��E��"}��a������}�2R(���2�m�a�J�V7��77J3:r��2i �\��1�r��G2�K�;g���mc}�&��o�F��}��Ÿ�`�F�w�l�F�w<>�ҥ��g�F2�Kd�F2��>�ҥ��g�Fm�(K�v�h�!}8�Br�!�����!t�B}��{XXv ����Ue*���͹�\U�x�H��9���NX�BY�mP��1�dj�!ҋ��� ��� �GB|̮H�M�#]h������gz�|���A|�9���T��� N�y�GB|M.�$��gz�|�!�7e�A\+� | ��X~�T'���Շ�!��)R� ߻Xf��C)G�|��^��1�r��G�|�!������v�҇��H.�� �N�B̿��rK�_a�Y�M�ۜk(ڈh���H6}��� e1�Z�ч)bUZϙ�~R=&f��c�%Ҩa̦3Hʡc�%Ҩa̦�G��a&ʇ顀Xև��di1�t}�Y� R~�!y8"��0ac�Q҇OpJ�h�c!B�# ����ZkH���e�և�v]�����w%F���c8g��p3.u �z�B"� [�t�iu(iGd҇m�v�#�FT��e�2�a��SCd�]� �9�p z�P�1�D&�1�c�uwQ� �^kN�3�2֡�Z��^���e�և�6�Ի��a}Xև�y��!~�n��იև�a}Xʇ�c&ʇ顀Xև�a}�:�fbx� և�!��v��a}8�����"��as�!2�b}Xև�!gH���!��bv� ڇ�auXև�auh(և�"+H҇Fbp�և�awHR�Bc"(!*��!�X����}���p�&և�a}X"��#x��~��H:�[��8"�i�����!���k�!}�-R��geW���!��r��a�� ��'��V�%#������b}�և��Xʍ�������"��,�!}h-և�a� b�t"d�҉��y((���\C�>���c�%ފ !��և��|:�`�|� ��a}�j��!}�*v���}Hև!��X>��a�H*�j"j��� ��X҉�a�����x+2�t�{h��b}���!�H����X�!�xJ��"@(.��a��և�a}x��i��/i� �*�c�%և�!Xև�a|����az( և�a}X�����"��as�!2�b}X·�ch&��b}�r��a�Xև�a}���{� f��}XV��a}(r��!�wV��ݲW'��1a��)��bb}��:�+�^�^��W�����+V��r�"��az�ڇj!od���-�EB��(}��܇�!{�6���a}X2��bJ ��2%!i�ɔ���H�'���H��v(A���m;�j�`�و����0�iч2��'SJ��(}��H�s��"}�ZS��"Q�٪y�0���A�V}�w�R"�E�L '@&$6���g�l8�bZ��Ly~��(}��H&dk�5��/5��G"q��Qd*(҇� �E�����'F��3}8�܇�a����5}� ډ륥�J�5�}�H�� ��ENzl#}(~����EJ~M��T�ч���>�/M�$��w��J��}���-�!^��}�0҇!��KD���aĈ[t�x:�[b�v�P�a}(Ƈ�!�(��b}X6������p�v�҇L"gxևH"gX-��#�xr��aĨB��a{x!҇)b}�Q�zb�ٷ��aUڻ��d�~����e}�퐿�y��Έ��뭙��1����|��5y��2�뭙0*������)����)�d�fy�I� }hkJ|�߻ �U��'�fL�}��(҇y"¨o�kR�|�ڟ��GH^{ehkJ|�}H�0� ��J|�$L'�_�w.ʀx������ ��gL·מDYʀx�������#}xF� }xF�!߹xF��� �݀�%�G���#}xƎ�� �+ֈ�(4�=��� �BsP_�(�U�.H��i �T(��#}�����a}Hʇ�x�Ιӝ�Xr�2b��9f|��~�lRt8�X��]���Lx抈aux�����֒� }( �w���.�Lc!�"~����8�|b�(.���b�x҇���Iʑ,]�X#R��T�X��U�:�3J�`܄��ƶX�%.ƎIߜB��a�8$և�!�����h&և�a}� 6�:Ṹ Z��a}Hև���X����Y ҇�`V����m��(ډva�H:��Hh,������.������a�)4�7�"a��H�uzߖ�H�l�!�b�v��jx!2�V��7�o(�k8��|̞k8��q����!�"������)�VN���K]�Eb�) �̈́�a#Ά'u}X!��q}(wՇtl}�������}�Q��)=�oJ��(=�oQ����C�@7·y�ۧ3���Y���Qi�I�fhwڞ��90���mx.:��`���q��g�w����G���H����\6;�b��7ׇ͎�B�~)�Ї.$��]����Y����9��цQ���~��f�%z�]�Y���$�� �Y�^.�<�s�b2*���c��vYĞ�'=��j���,&�[�����j.ȃG�=ɨȧ��|�(�v@��j6�[}�ɤ:�`� ���'�v@҇�cS�/��^K�� w�m� �ɨˆ^���}����j.��Bɨˆ^����ǖ�Vl���c�� �AH�g)�0�4և��T�,և��҇�!�|%I��� Y�+$�ɰU�%#4�1҇�]��@X��J��/��n� ���R�T*�����)���"D���!�d��/`Hd���]p�=���� @@ ��[�` �D��A� ��(xGP+ �_�/�~ �B�<3�I��ˋpyH-���"������;�<07����"���I�3,/30¼�:��U��p+� ��Ip� -í�g�'p� ��I 0�t+� ~� p+����|�B�� m��p���`� �¿p+� 8q+�B�#�' ����H�C ��%@�P� �0�<����|�������|� @N�,�Q�\p6� �<�n��p�@p���@��*p�f� �E�#�G����AN�H �BN�,|��@H �BT��CpP�8��(�R \ ������"���h�?0.�c����� GtS�Q���:0���8K�#�����tK���E-�A��f,���e��C�%�T G��A������ ˆ&�X.�����@ �� ��P��� � �k�#�C����90� A0��� �pAl�p��0����U�n1R�Wƈ I�0��hI�H�$4:� �1" �pAlDс$4:��\0:����0(��`HB!CQ,���d@��B�@���2" �|�1r-��IsBt0:��At��` &�`,��D�At@T� ���0�6��0:T��`���2 �|@ �p�0P�|� @�€2" �|@����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �c�;����yA6��@p�����q����t@`f�� X`��M� 8B0@CP6�M� �Mӂ �A4 eӴ`��� H��V��py�6�(pWp��py�pP��bP�Z�<B� !�@!T…�!��:�@��hq�����2r$�G‘�,#O� ���0ja�‘ G‘p$ ���u$H�V��Y| ��Y| ���`�B�0`���� �ŧP)��ŧ �6�f�)h��� @��M �]�t��JB�j�E�P4# @��P�DA3r��FH��UP�!ّ0� EI yd���0B���0���L̄��'�,v�3�0�����D��L�AjЫ� A @�0B3r,��P8�H3"��D͈�Ҍ\����e` (����@*p ��� h�)�r�s@`�u�p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �f���x����Ap�o��q����t@`f��z� ��� ��p�!V2�df��1 MC�P2p LC�@&���pyLCӐ!p�@&� �l�"�4��# De�p�i��l@�n0�i�p@p�q�@�v���@`�{�P}���m���z�@�T@�����8�� �h� ��@!`�h�6�tހu�8�8� � ����u�(`� �,��"�dS��4��# De�"��k*�t��U��@4(� �p@p�q�@�v `8@2P4df��(FC&`8���8��� ���x���8��ѐ �����*� !Ҡt��"�y�% �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+ �$AKP t�`�t�)P��G^ @y�<���BY�/��������e��S1�"��Pp4 Bp��s�hC�G^ ����@q ����y�Kk�X A�d1�� ��s5��`8��\4��-��@g�v�� B0P#�0����gp S5 �0��GO�}��=��5h��!�����L�0 , �h�h=���>� @�D�}@ڇh0�̂���h�)��x�����)�n0���p@p�q�@�v���@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+p���� ��P�x����8���85�@��@2`�@pl�B����!��!�O05~�L�@2� S0� S0� <� <=A)���AOPT#����`�����8��� c�AuT#~@p4Ո�r�4Ոo� x�P��@@S�H/�H@S��6x�p�x@p4Ո�r�4Ոo� ~@p4Ո�r�4Ոo� }���h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P���"p �k� ��@p�h� ��p�*��*�w�y���T@�~���@`�{�P}����`���6�"��#� ��@`�h����h�#��� h���r�s@`�u�p�m���z�@�T@��~@p�f��P|�� `8@ �n0��!P�g����6�"��#�8�$ ���%-@2p,���%� �{dJ����� HXw�Am aIXm�TA��2 �)�: a��C3� �k�>`A&��u�B�I�A&� �|��d�EB�IPA&�qAB�I � V��k�>`3A&A�!�e�p����l�z�n���p@ �m�0�fP����8f��$�A&`\��44 %p LC�@&���pyLCӐ!p�� ��#�@�@�$e@� �k@> g�I�� ��$��p@p�q�@�v `8@2 �5AM`�р4� ���: ���8A� ����n@L�$�@!��:A0p,;��t ��ae ������1���g�"����1����Y���g5YMV��d�xV� ��PI�Y�À��:�gex0�8�Y9 ��<��<@�P�V�S��d1 (��8 �9���0�9�Z4C��84���g5�:�4��8%�gpq� ��0��0 �hqF�g���g�qF�1yV+�Jg�:'�8�Y��@�(�:�BM��pq 0yV��8�Y �h� /�\� � ���C<3�V�����`� �����A �8~h0� ��K�'�sA20�@A%86@��L� s�9�'[b0�V�\0�A� s0[A2`�l��\ ��V(��h�\���� �0P�H �f5 (������t� x�M�P@@d -���� �3�x"@x�0&06 �2�-#@�P��@I�� �7�@���@`�h@��h�����i�p@p�q�@�v���@`�{�P}���m���z�@�T@�����8�� �h� ��@!`�h�!p�@�$l�"�(`� �,��"�4��# De@4���Ay��y�r�s@`�u���0 �&`8�+�����0;�D0 (6��M)=A4u� �����(DS=A4u= 0 ���@�m�+0;8 ���(M�"P (�FP (GC����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e` (����@*p ��� h�)�r�s@`�u�p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� � �������p@p�q�@�v `8��y���� @ h �!p��a8�y�l�� P��t����|&�!�L���� �=�Ar� ��}���}\ڇN dr��Q�k@.��@p��.�r�s@`�u���`8��� ������0 �� ��0@ ƀ!p�)� x��'������P�x��nt l� �n�@p� \p� �s��a�p���`8�`8@@ET!E2�)�B��(��"P(K�!p�2�n�n�M0D�@+��=�OF�U���@�MAI0�8�@� 8���8@��DP�(J�@PM��P�� �����<7�@,��X �c�< �c X@p�J05JA0�T@��P[?�P�@`d�p %��\J (��A<]@  cb�<!@ 0t���tO�P ��T���t%��0(d@ pn<7��sc�e`�������n����q����t@`f����; '���� ��M&`8�����py$4��a��(0 x��(p���6�-�Z��Z����x@OPJ����L �! "�e@8��=�D���n�8�{��:`�{�0 (6 `8�#Ay�\6�8�HP6��� 8���esAކ#Ay�\6�HP6��E��M0D�@+���f��w�y���T@�4|��M�/�� �CÀ �7�e�~���Ay�hчs�x��s���Ƀ|80̱3��s� �px� 4ȇs�� ���0�2��ǯ@�|80�1��ǯ@�d �Uԁd��"P (��"�?)5H�� (���8f@0e�� +���� <f4p�ӂ � �� ��W@O�_]e� ���d0o9���8���90��e�3��5�]��[�-]������q@���� `f��� p��������! ���8�8� �2�0 02�` 2Ƞ� JeP��$x�0�D�P��h]@p�%�I�r�s@`�u����4�� `8�@ T��B�� 4��)$ �W���!d �Dzqx灶�Z�����- D@2�����ɀ�Q�k@.��@p��.�r�s@`�u���`8��� ������0 �� ��0@ ƀ!p�)� x��'������Pd0k�"}Nm�` &AM��� $��1 �L2}�Wf�5���(0 0 `  (  `(���1 �b�`�d����(@ ���6P�g�����A{pm�������p@p�q�@�v `8@ �n0��!P�g X��(p�����p �x@p�f��P|����y���T@�~�`�@2p��`(� �0���,�B�A ���-��!,���,���"-���v,��Pn,��PnpK���K���<K�[��@�����@���@۱�@���@��,��`<,���,e�B�gf����@�g,l�"�(ˆg� t��!�|����)$@G� �4 ��g� ���qf� ��h0��P�t��2�L�h� �2�4ˀ�!8iWO�w�/�5�@|W���Eb0,$!C�#���v�P!@ 5�P/�#�v�8���H�]� �#�� ` ,$�D���C>�� � �d �BD@{� P(�]�@n��]��-��F�j���>�K�@��ph<�Ǡ�%�5T������>0�8ª1�P����/P�*lWG��0�qu�0�$������̀���!6�B����q-�0g�K��,�ş � � 6@A��*� @P�*�P ��@P@�' �R�TkG�t#�0�4�HP��:��:`�pB�Y)]@ ( ��T� cb��]@ ���T� cb�P!@ 0 �B�1t���t�0��A�1t!@G(�\B p(�J�%�����O�@>� �D#0T@#�.|��)P4�º�.�����ONE#�.|�S:��O��S14��g ?9�A:04��g ?�܁� ?� ��� ����pz@ �O�� �.����.����10LD��D�K�P9,%@ݰ.p�m�P ��0~P .A ?� ���0��0*�g�.����� �P7� `��$?� .�)|��J�.���)�� ���\��1 �p���1 -�n�1B�P�-�9���'t K%#�K@I����`<0B��Z�1,����-�Pnp%�� ��C�,%��%�3���%�0��V��@KPn����S�O�-AI3�`�Qn�-AI3�-A �t��P� �A@'�0Q��IN� �11�'�;��d���:�snQ���1���I�� k�\�1 p %@K)��AK�T� -�dXfb��Ke��@J&��af,h���g �@�|4�p\}@p��@�q��Gp�������8j@A@���K'� p���z5Jȕ�z9J�B0K��(���fdd@20-� B�I�ei�#���D��m��D$ i�#���lp�V���f� `8��� �C�L��0,�� �n@D"��V=� `���,��(K�R��ev����Pd��;��p�Ap��v�r�s@`�u����4�� <��(�Ag�� �:AC�h:A0����h0���!������t���iM������� `| P)i�@�"��A�iU�[8@k`�F� ���GE�{M���������)�/%��i����i�I �� �FnP[� � ��X$��Q�����)x�Ƨ�mކ��xVǧ`u| [�>0\$U���[FRE�C�4p� �m0����01x �BG�&x���I�>��@�0 #�, @G�8Ҁ 8@����9���� @���<�$\L��!�G0G�)0 ��$@@ H @ꐑ�DT�@��p�@��O�h0t�#�<%�� �]���0 ЃG �!@p �B��]�P��E �tK�P�x `8�����5t ���`8�Fנ | `C2�g�l�"6L A��4Sؐ �E�P$� B h`C2px��2�� :A0����ذ ���qt���dr��p��6� ˀu @�(��F�Vt 6ş`O�'��0j�*�� pl$K�o�%�*�.�R�+q�Z3� ��| ��B�)�M�� �)'��p| �֧�Kp �� p| '��@��GՑx$9�.1j�Z�D��F�Z��D?/֨uH 'Ũ�b�'� p$� '@�� t �֋5ju ,������D@��� p�X,��q�$/֨5j!WV� ��Y�V�pH`d�X0�dAY �z�t�L���0�z��� m�E`��B u�^%A�%�� wC�%�1��Pz� P���0� ��!��0@`� �@�\��|t@���p+,�nP� &�F���� � �B���<@uh�E.�G'�Qz9 ��"���@���m�!��T�F�\��|$��L�h����h���q|$�@������h(ŵ��� {�F��;��^�}$A ����G��*BLa.\Kɭ�������@I��������F��1ŵ����F�D`l�>� �{�G��{�|$0�^��%��|$@#0T3����@Q8hf��� @��`\�@�|=+O�� c�d Q���ll�����[��lz@0PE� �� �OH�!I��d %�V`<0/�V`<��V�5�%�V� @[��6mUȰ�J*�9�hl%� 0*� �lUȰl��Jf@=!���@�� ��� �.p� ��$2���!��?����a�\� ��&U� �O�/�B3q_R��}���}�/�Aps��;@�#������{.� i�ױ9��@�;W �@K�C�d/�7���N����H�O�$$O�)p@� �D�)P���� $��\p�e@� e@�pe@�n5�V��[�@i2�[p P���@i� d�@i�TieKe 0��C"P�8h�@h�p�s�'`΁\p$rRu;$����Tqp�s�'`΁\�XCD��R%��� � U���� �-0�r���)H����2R�\�u�r�" �-A8@�[ꀺ����@�f���j���l���g�z��q��rP�t@�� @��@pg@ 0e�p�Ȁz� ���4$ ICȀ0X�2� <��PXҐ4T�!�$�#�8�$@<$II� ���5$�o�a�l���$%��o`�p@0�u�A �@�4e@� �0�Ib���gPk��,q��A ��AN���O�}�qFh �d?�7�yC.�@�� o�ް7��9P�z���� @@�e@3�A`�x��R�/�(R��`n�1  �A� , C�4�'�� A"@ `e@,2�>)2��‡� ʀ2�S�O���`4�'�:(��U.^��2P� �1�O�@I�x ��r�:|���:���'�������P���/�E�l Q�S�%� p�' K�.�J������ �1|[I�!�/@>`(|"�I��@���v�Ұ���K�?4v�K�?4%�K�?4�W����CI�<$�E��?$�AI�?��C�#$��4%A� @+@��<, ��[�4oAJ��oA�����[����[�<4%A�P$oAJ�<���m8��`{<��O�,���] �@7P<����� �E.$ `׀��$�F�@|���}��B� ݀��5�݀��5���`|W7`` �G� ݀����� ���Q�Z �� (��R�h�B x�B��tP$@)0x @7P�$�1p�@)�, ~�0|S�P4 ���R@4��,O@�(O�� �\A�K��(O� 0@ * ��}H.I@��H._�;�0EM����V-�Z�X%� Zp����$� HH.��� �Z� !��J�hp���@hW��ihb� VI/���@�C��L�ZAm��Z�-|)�X%V�U�� ��$� �X�20��l��Eat�� 0x#$�Ia���#����#��8�\�� ��I1x#$o0�s�\0���\@�sAI0�%�Y,�@,�A�$K� <�{ <K�,�|( ��| 4F�,�|K�,�(FG �F��<� :�:�N�<�{ :K�1�FD�R�Qf�R�Qf�&� ���RX�a��&�"�xT2l�����C�il����i&� pni�As{���@��������T�FE�T���oP��o���6���(� �P/@�"p&$����6�� �6�>i�6�@EP�6�����7�x��g$�NQ t�A-�%�R��ExqЖ�+l m���Pe�.F ���� T/��:�6��@U�cH���b�ላ��4"� �l �і1O���%l%�K j=O[E��%�K j����tT�g�X������Z.����#��  �h :��B�0�3A��|��90����0lP��������E���rx8/�ˑ.�<���r���0�` �ԁ ��)�p����� ,2��e@��p���b ���P0&Q�����W`g�#w�0�l�0�e@�� @@P4�L��H:b\��( X�'� ��gpH�2�x%����R�/� |9����d90&+< ��,���8�B@K, ����,�-Q� Ć;BK�# �B��,�D=��,��B�l;h�;��;�G�N�;$�>�����\��B��,œ���N�U  L�p$D �q�m0n� �$ �����,!�`$L� N����,!KȨ$D�@p@|�O �, �$��b$ӆp��� 0dT� � A@��'xAnrOx �'�0�-�xx-�x� �� � ���C��'��C�V� $ �� $���� ,�� ,l@&mMwA�P]��tMA�5�6�U�D*�# � p$��B�<���)� <�*����0^��`@zi�Ͱ(x ��B�\/~���y��H��^�צ �^c�� ��ԅ��k@"�D$������"���F"�$�@$�(?A PHx@#e�#a24� ��#a2 ��O@���p��!���@��XJ�( G�`/�����#J��f(؋��#(؋L�`/����J ����`/�����J��f�J�"(�˺�`/��WG�pd�`/xj���X �c� �@�Txo���T|l� Xe���@�4e@D��(`�x����x1^��0-���xA���!�D@��qV@mH��q�Z�0q. �� �H��0q.��X� uV A ��U�J H�H�C�PIPXEV�>� ^V�dx�[1�.$H�GHP�CVQ�kP�|P�f���f}P,���8ɀ}�����8f����! j@&`8�"���CP�� $B0@�|4�p\}@p��@�q��Gp�������8 � ���/`�^�re�^�r�L��0, A&0��� L &@C�d&���|F� P@p�>�p@p�f� �f���(�kX��(p f�H@�01\�fu`I�!pf���TB0���8 �|\[CA@� ��͂ ����6���K��n���|��@p����q�s@`�u� �#T�G� �F�b �>b4�O>�.p���#?�b$;Bp�#f@�Q��#�n�S7��N5��#-A�h �>b4�O>��p��, ?�b$@4u,��(�������4�)p+�%�E�"4���� ��B4�"X),���` ����/� K�a�/����� �B�l k@?� 8E)�n�A�f���f��&�f��E�f�ppG3+a8��q��A�����( � Pt��8�I��@+P�g��k��m���h@�r�s@`�u������� h� @f���X��! i@���"�8�$ �G@2�/�k��/-Q@�H��p$� `8��/�K� P��XA\U�� hr�"��ɀ�� �q����t@`hz@���U���%@{�'��QN� �F9�'�ݕ�QNtW�G9QŃ�`u%�vPh���q ��m�|�D �^� �F9QN� �F9�'��D �rQ�^�\B`�h@��h�����i�p@p�q�@�v `8@ �n0��!P�g�*� ��i@"�(�@#�<�@$ � @�� \ �@c�5+Ac�5F�Ac��D'�� l��1y�2���fF>0H���m�� 6F��J� lC��� ��> s��!s�fF�a �� s�2����3����� ��h�L�4�'�=�h�+N�'hX'�=�h0��s �%�% �� ��T���T�� �xe�&H���4 ����� �M��� ���p��$��0���$8 \����GP,��G0:�܇�"��C{����}��; h��; h���`�)�,��Ia����hɀF h��)��C�@�' �R�?0�?0��c0P@p(T@ �?0]�`�����@p8��c��[@����[8@�%���` cb���C�<&@  cb�P!@ 0 cb���Px���P�` ����%��0(�C��=��@)| �q q��E@��� �� ���[�%��!L��� 0[L�� |� *�QH��j$g�F�����[��[�� PH*����*� q�F�� PH!@1H� q�EG pH-A9� h�q q�t��a.GK �D�G20�@� ��S��1$B�0�F��'�4��PLS� p $+�1PL�� � �V�h$�0hS� p �S�V0l�Vps�S�v�YP �V�ɀq�@@ H@p @@h@6�l#F�8�dul�V�` d�� ��P���Vl��Vpl0 pl �y� Y �� ��V! `��pl�4��y�`��?�Q ����PI�Aypx��Vpl0@�sle���[�ƺ��Z���5?����[�ƺ�r�s@`�u���`$���8�V��df����`<����8�B� d �`8�!pf������8e�p���� h���n���q����t@`�x@p�f��P|����y���T@�~��� '�\��@� �c@4 �9��3� ���`�@ �n0��!P�g�38���6�"��#P�x�@�k@p�p@ �m�0�fP����8��(0@�&�^xT��a8@�a8��`8@� �I��"T��!�l��L�AO�"\d�Z��AP (��"�f����j���QE$�n`8n d $��`\B+�\W�0�W�p� ���p ���p ����8@�", W@���E2NK@` A@3��.�^�\� (�\@8)�\�� ��(�@(��8K�0c�X�\Pv�e�]@8�3�xp��aNp������ ("������Pl����y�4`K��� � �P�[x�@�k@p����8.�<��e �����oA���KL��!t��'� ��@ S0�L `8�54 &@T0�6������ �B�� ���,t�B�0�Ÿ�D ��g -�Q�"�47�\�P8+ P8��U8n�;� ���P[�n��E���]���]@�d � �f�� φ#� ��@P (��"�(?�"�D(��"�(��"l|�#u ��--�7�lt;Ϥ���pQ�>�F�h���A*���"9_Պ�h�A�~E T����t8 ��'(����� ( �'����'��P�K]��|���/x����y����� � ���pd ,�LP8+�p [%��4^=�ЇPl%��2^ Z+���n���1��e���jC � �,`s�m�@��Gp����� `8�`s��+0;��@�Clk�*�H���p�\?�` �@�'df��tf@ =]`���;8���K���y@�"����8ɀ}p���0�4@�\ �X��0@�m��� ��TIp�0�%�%@�`1� '@$e1��(@C��(@�0���!6�@�0�b�0x@�0x_��� �� �K@��8�EPV��Gq� �$�Gq�C| �@��X�@+�g�AYa�KF�1;���@�|��g�AYa �KF�a ������ ���LP8+��f�0� PoQ 0�p�[%@.�+�J��'E �yXM����f�m�A)�VG�Q�W3NC�f����@`8M������$�Ռ��WU�t��g�L�h��8 �)�43���� ���}��A�U�\x��U�\l�"�f������ ���88��$D Q2��Zx��xU�C��]��u�BWus��Lb�ހE� x�C�P�x�0#04�,����S��q����t@`f��l f�����+0 �f����q�>�l�q�>�eɄ�$Sp�p@ �m�0�fP����8f���I��(p���("� �t��'� ���( "�L �(��L�)(�L�P4�G�� -@H�8m����G\m�0\ff��4@�0m4���XA2�g\� L &@C�d&�0,e@%a��k��26T!Tp�p@ �m�0�fP����8׀ � �`��\ ���@`�PAS��@`�PASP�k�����4���F�� $B0����H��*�L ��Af�����C$��#Ay�rƎ!g$ �!�y@�L ɀkP :x�@�k `8��88��0;�f������YI�@'pz��@z�^����Z��Op :@Op :�!� ,��!p��� �C�4�C�|��0p��@�q �0 l@?�(� `8 `8 `8��Ph��)��8��&�n�^�I�p@ �m�0�fP��� �n�^�I��*� �3W/� q��p3�U� �m@�1�Bz@/� 8� `8@��$��6� �����;8� `8��`�� S0p,e@܀�rQ@�@����E� � �@0=A�L���� , `8��hm.P�x�@;T� `8@O�_|e����L�"�6`8�����`8��!� �@  �m �d@� ���Q� Ǡ�e���T�p��U�m�0\f����8f�H�� ��@0 n�Sq{ �0@ ƀ!p�`[8��a)�@�u`[%��aX 1�������B �yX ��0�S�(���y��¦lS�"`�p��L�/([��� \ @� � @:� �V�/dr@K`d8�)` �@��3�:@2p��� ,=�������bĂ�(< %��@� ��@,��A{� ��Ap+��[t� e@N��$���8m���$9�\p@p����v `8��D���$B0=��L���"�O`�р4� ��`��!�KV�y�^ B 0@C�8�' ��4�0P€1�� �"P f��f���������R,; `���� ����8�A&`8�!��`8�����LKSP�x���0m�0�f `8��\ ��� B�0�Vx@B,L�@ALp!Ô $E��\ƃ +<�@� TC��'-F2p(-F2�(�GO s<���af,2� a[� 5+qc ���afd���af��@>��2GO s�¢1*� �@9zxE��L�r�;$�@�`�&� Ph��0!@�C� <�͔ ��êq�͔ ��@y��݂3��4�gZ��0Zf�p|� ��o7C��� \B � 8@�P �BI��/܇�S.��T` �kyP����s�x��s��Bj����� <f4p�B040� L &@C�d&�� @� $�h8�����P���3��&�Ǣ�d4H���� X@< @ H@�% �XbE\%@G�t��'� ��T�S9�0N��S�ܖS9FeG{B��Tj�N�X�8�@O�jp[N��� ��0� ��0 ]�G0P!��'8N�!� �k�`�%�X2�|�  #@B%(��A���%mF�� �F��%@O =�]�G� ��CG�t��]�k�"�$/�Oҽ�݋k��%�@%Pr�/a ?��%�m�"t/�A��"t/:@IT%AIX�la��A���s��݋P�@��$��%��V�����н<Bɋн�%Q �%a ?��%�m@��?�O�)@[��HJ���d��@�\4�0G8@�p��PD0Ї��d�E�}(KF�t�8@`x���an,`�.� �+EHP��$�}@�B`��G0`@�Ļt��G0�x����dM?qh%� �0(�!���dP�ƒ�4[6k`n,!��V�B�KG�@���0 �@`t���d�KF��d���}]��}� ���E�їr%%����m�9p��>�lQ�D�EI?G >�%�K `� �K@D%m@���K@�tAT���FT��t�QR0� Pa� m����FI�pFI��0%Cp(FI��%C �J%�QR0���d��@�"�?I%x[A>� �0�� 0;M%ӫ�@���@�b�)@[bpx@����Y`���Y� p0���/����S\�0@����b� ��fT<�lC��� �ې�A�A� O��W�A| �r�d�( '�"( ]@( XA�0`l��Df��`�( �A�0� [@�`�P%T '�"( ]`�p/��C�MAI��/��� �Ȁ�D³�H���jq�A�P���'� (��"�(?�"�D(��"�(�"�kt@�! �O� ��'�>�1P �RR�-1R�6�ll9�΄��P�HS n044���Q�� #n�ˁSiP���mp���T�,N�S���B0P%t�H� ] o�#��C�%�J@�P%t� x=�Н���]p�p�rP(x=��*�%8���ף �Z�A���lP���o��hC^�\0�T m��F܀}���1`�����}D<����} :؇U�}�%#@�`�����m� ����� �J`.�/?��u���e.�悹Ph_悏a.&��a.�悹P�Ba����#�� �������� �>`+�00 ��� uL���` x� ` � p�7 ` m �U��P$ B@��T� \��X�<�9x�� � �� �C�@� ��t�` � p�7  B@[uS���0� �@�X��p�B0��H@ׁ+�`��@)`�f�)p �k@����P ������� �v�P�d�Hz���}�w��R� �|@� ^ @j"���@"� ��*` �c�c���x��@0 �@ � @0��T29���f�t$A!`D��g��>Np���}���`��AP���c�� }�A`$��`D�@H�)x8�`�����}, ���a��}�>�G �}�A`K�3��F}B�\AV�}��`AX �=@�E�Qq���&1���E>���Ab\ l�`�f �E>aH ��� ( ��P(��1$��Q@(^�B�PTG1(�@ �S����PqT�������( �B�P`�bAHx�!!TH ��B�P8 �B�`�bAHx�!!T���@H(i��) BbQq �b�X����������A�t8.����.�P�t8.���� �t���)����f��O�� �b�@)@0 ��q ��B� �@3@8u�`D��/� D $�B`\$O�_U2���W� "D�� ��0I@T6�Q� A��pFP+,@`��P��CI�G%�G��l�g��Q� pFP+�@��d�A̰Q$C:� ��Q:� � ���v�� �AP+h��2� � ��pG3� =��3� @C(� �ɐN��r�N�$Cp�1T+,3t %�1�qtI� @�8���qt#�=� ��R�d��PdA��D@9�dA�dZI0pY��x @V8�GV(�@ǁ@e��/�$9mPdI,I@N@ P�x A��+�q��B����,I@N��tP�$��p $I�M�f����~T����C �$I�F� �A��}t=b�+���|���*�h�k�*�J\*r���^�q�x!Х�O�&���Q���-�Oh�����W�� _��[�`́|��l�*!_�k�*1@�m@+�#�*�)@�� )��� �J�`P1��0 C� XH#�R0$.B����D��� ���I�͐�J�l��� � ��R0��*�J\���lI@A�|=���l(�R�' K��1,U��TQn��T9�R� K0,U�B��T� qS�T� q�Re� ��R� K���',U���TQn���T9~�R�� �@�(h�P�� �B�����#���DU~��� ��� @� AVp0����f1,��4�,�0"�ܰ�6�j��#�n�dY��"��Bp~���B�d# )MP�6�j�Q@ )�/@��B � �����4�B���M���34>L�Q4M���4Y@ )4#�� )MP� @P�@ P @�$ �l�t �l�$ �l�, OA <J@���B�$ �lu�I��$�A��$ ��I@P�J@��)�TF�I@�$� @$I�gxU\Ir� ^M@\D�p� �DW�6 G�� l�Et l�p)�#F�BP t�T�%� q��0�����\ #��03��H�.���:� `3å0����Ւ��@F0�4@;�n� �`�,/�R��ʨ ��Ղ}@1C�R��@\ t�\0�A A)`� 3�'3å�/d�AF�R�#�H���E����@;0S��A;@�5NDQ;w�)�@ ��Ma4NqA\8� qA\��S\~�S\~NqA��$�S\~�I%��TNqn�g���qpNl[8��D�� ��@�$5�RC�� ��@��.��q8Q��JN� p������@�������3x%��"�x%�S �x%c�>p7�x.��� n@ޠ7��9@�y���� 0�d 2�>@ 2@AP�w�pQ�/p$Q@�\m��! �A� ( �B�0 A'�� "0 \d�(��C0�6��� *�i�' *U��ΰll� � �"�w���n�P�o �t@`D @�@,�%A�I@� 7"� |"�k��p�@P\A�0 �A$ �O`D��@0 �C�34ɀ� |�(@0�,#����N0�@�a��@��G�6�� |F�g|���@Q��l�*Pg<�f�]����G��pII`�%%���LA4��rU�%,�Qugq�E~c����3�D���2T��S�|��%��� H��)PT5�]P��F ������\��XR�]�@Y@ �Dh�4=C r���N�Gh .�m@ ��@���%e)0�u�a@ ��G�`�s@ xR�A��@pD�@0I�j0$q8@0 ` \�n �E� 0Y��S<4��� �Y�tT�Y�t �N�H�%OG�t�$�@R=��F-D @� 7L��h����Ay��y@��%��t@��cT�%L��|L�Y�X�� ��p@p�q�@�v�M0D�@+�3����8ۀ�\4�����a8�@ � �x��,������ �[���p�V� �\�9s��a�pc�h �T� B� 8�AyPhp�V� @���Lp�P!X��B�����8m��lpy�6@p����Z�0 (6B0���L���tD���8l@P ��@E�m���% �7� m���p���7���(��`8� H�@'pz��@z�^����Z��(0 \��(� df�p�&� �D2 C\ �`��� 8�)�L��<����L�0�\ �0�\�B����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e.�� �.0 ��� �p@ �m�0�fP����8f���@/0 ��(0 �l�/� ��0p��.0 �@1` ��# ��(@ ��'� |���8���8j@�|4�p\}@p��@�q��Gp�������8 `8KkP,��/� �׀�z5Jȕ�z9JȕB�|\ B0B0K���c@4 � A&0��� L &@C�d&@����)����)��m���h�r�s@`�u�p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ��j% -:���y��4����4����# D�x��j�Z��@)�0��!�Q�[��uw����/� ��n`�~@�d�� /�� p�6*�4I6@��?� ��P����0[=�`��h� �t T�Qt�DG� t+Es$I\Gґ�J8���p +�"�m�\��(�=���� �@G �S8�5d ��S>p(ρ.a �� A� ��0(�7�00 ��<vN��&������HP���x3�;��x3��h0l�>���AP0ρ�6< �sa�4�� `0���64ρ 0=MO �s�KLO�� �4&�� �HP � P��S �P �c��� �� �L`�,EI LO ���x3 K!02�X�p� �pb�O�K� ����2\��X�\�0�OQ\����и� �� �RK@+4.�C�?��GK@+4.�G�?�%�d��]�� C�S�`F� ��0p|� 3?� ����L3��`����4 xMI�+���o \�� M+����� �T8��P8��PlZ���SS�����p %�T�1�/���I�FU��p %�B�h�8n���p %C�h�8nC*�G�8\B �r1:�u �8\B �r~���p %�[�h�8~��8\B �W2:���G�8\B �Q2:�ې �Q:�PX�ǀ��p �tce�� 'p@ H%@p2�4ב�qҴ!@ �k���bq����� �Ԭ���Ƭ�XH�14k���u�X���u$ ��1k,��>  m��1k,e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �h��x�� �h�n���p@ �m�0�fP�w�y���T@�~���@`�{�P}����`���6�"��#� ��@�49 ��(0 \���!$ HB&� ���D ��8f�p�f�pj�a���� ���` `@� (d�!pf�� �@&Y"S�!�(�@����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �������g0��Cp����� |Cp�f�7� ��A�Y��@�f�gZ [�Ap�y� S0�LK�B� ��� L &@C�d&�!pf��l B T�N ���,x@&`8@����)��h*� �m����p ����� �x@p�f��P|����y���T@�~��(`� `l�"���"(�+� �e@���k��A��@�n@���q����t@`�j��-K�"�x�@g�A4 д S@C��@04:0� ,S@C�,�7@6,S��� K�B0)K���I@2P$���rL�8�@p�1A� �q����t@`f��$2�LP�6� H������M����$ɀ��m���I@20 K@N�5A�$7�F��;�p ��@O����>����0cP�g���j��l@`�n��k@�d�0�u��w��R� �|@���@�y��H{��d��x �����P��@!�g�p���!�x4"����"�0��#��FV��B��� 3�Jl`��UV�h���@��M��0� ��d)�m`6���ٔ��@�0� ��d�m`6��EV`P�fSV���@e�� ��d#@ё�AV`P�EG3\4�AV`P�Y�AqR�#��AV`P��YP �F2�j�l�*pgTw�0)@ � ���56PE�`D0 Ɇa��@h@A��kpS�9�kpSp ��Mt`����;�&t )@J�)t�@G�p `�B��2BN����0�]�t4���.�k@`�������03�up��uG�gX>���m�)��An� ��B�)�����)�2BNpg���`�@ ���\5tt@#���)%�Ё�g��1tt@C��'CG@ �=a@ ���CG4tt@������� P|1��%�A@*�Td���UCG4t ��� ���I o0tt@ ��  �С'CG4tt@C�1tt@/`� ߅j���Q��kPWT��j��o�`�mP(�^s�}4�*�� @ �7d���D �Ap��U���}m@����-�������>P+� �������Q+�k��/h؇��a��1P`��A����b9H�Ɲq���A����j�JB��D0�*���C`�0��:-� �@`y��8�%>�NLY;a=���N@ e�#�V�(A[�V�8�%>�?���D�/L�A;�V�](�q�K.3�B.?� �d?5�=�ǁ[9C�JB ���PV�*�)� �3 O�G�@<9�1P$��P T� ��k@� O@\0L����qI0��B�:�.@��$A�$�C�:�������z�-t#�x0���@H8����lx�B���#��tO׀�@<�$�x0((��:Tē`L����4<�qI0��l`<�qI0��@�09�qI0���p��&$�A�� ���@-���0i� 0k@� `G���% �ij���\���3@*�t@]2r�3@H .@ �7�Jsp8��m�i�#@` �yA` �t�3��0`c@��@^�78k@�0 �A*�t�]���N]2���0��!�Pg@0���IT��}��YPg@0��\Pg@0�d� ���I��P����~�Q�@��H|�G�x�HI pG��$ %�R��܀ �|���wdL�<�����A;�j��C615��P �"\)�t�@[AG��G�}@&�F��P���H���FU�h�E#��q����Q(��q�j��>�jT☪q{�~@\���Qg@0v�@ u#���W��H u� �I>QU��Dqh ���1��>��Y� ��'�>��P( �G� ��G�X=VdA�*�nY�~�p�;D���( �( !���>R0 !�O��G�V�n1 !�O��;�0$�I�X� �/ L��$���(�#�N�)( �*4�x���6�j� �7� �*�4���7Ѫ�*�7��*�7QL@pb�M4��A�*���p�7Ѫ0d�F`!0Q�m�YE����Q���dQ���*y �[�V����0�M@V�0 �@�!DQ��!�.���f)��v@`��@)�l����� �k@� ��@`��@�y��H{��k@p�x@ �R���j"���@!� ^ �$~"����*0��"P �i�` ���P�f@ `�n*��@*��u��w��R� �|@���@�y��H{����@���x4"����"� ��`�ڒ00�L��"AH0�����A�m�U6�I)L� „m�i0 a�>��#�P, %@�yf�j�M, %�P�FT �� @L�/� ���&�0�i�F��V�H0T2 �|$��e|��V�M0T2 �T2��|$�V�@8�HP�(�G��}�V�A8@�`�� A�`�O�)�-P �����p-�Z�ֵPj� 5�?�O�>_T�`�O��`�O��`�O�9>�c�|��03@e����� �E�@N�:�E��*���@NP��@N�C� �:�C�r€0����� @ (�)��)@ �Z�� �>p���?��5C��X�) �)�� @L�`d@��,~Py�G�N����������� P2��l��t 4�p~�t �����8.�Nq�, ~����B��8�,��8�� 8�,$~8�<��B��q����!�!�d :A\0����2����� @0�%�ih [�g�5� ���5�]��p ���~�@�pi�_��x Q�B�5� A�5^�1p~ �ix�}x �@y�t��B6���`aC2�'��F���ap�T��Y�� ��Q� �E� x@E�h����� en��"AE��wn/���m�g���z���n�,�AE�$��B����Ex��\�$�H��$�\@`<�*�J�"A�!�wA����@(P��@� � 0�@%� �������~�0d�(�@(� h�&�F|��&8@! ��'� t��� p�@'�� �� �� \���Q> �F��u|�R�QT?E�P>y$�D�D_�gP>]���Q>a��3P|�S�Q�d��Q��@nE��F�QU$�OqQ�OT���'P7���'|_G�~pDL0)�=��=�h�E9Ah�S�:� �����:�����g(&��6�4��c`�M�g��%A�*��q�*��q�E(�M�g� ��I`�4��aI�~�ʠ}�� �6R~�ʠ}�!��a�ˇ[T)�X�P���&� &@^b6� �¡� �%yIm��'���� �BJ5D� �"�\� �"| A �)D w�I �>�<� ��c`<&?�R�S,?�i���I�OGD�1G�P�@�1��P����9P ����� pG@�?x� �G2�f�Y��8f������e�[�!8X�!p���O>�Ba8���@@� (VF�LP�)p �@p(T�A(vN�B��G � @v�}�E�P�q4 ~�� �G ��U��W{A*�����"q+g0 �8� q�H(�4�b�4 �8� �B�+�F ���pL@�4�}���p"�H����L�N�}h���!8A�9�8���(��t ��� @ `�%c@I���� ��*@q�l�B2�lЀ��&` &eX` ��A]�|��K�`-� P�ɧ�5����YC�i&�  ���ɧA %P&�Ƨ�5 �� ���s�.h @p \ �(0� ��(0� �G��$H8�0 � %�0�$ �+�3�� �F.�D�p+� ��@� �A �������­P���0 � %���� 0:� ����/�����/0���P0�¿�/�D@m 0����/0��� ����/� uAIp+P ���P���@���!��f2(� uAIp+P ���P���@�@�(M��P �E`#�0%�a�\� � �E2X�`� �F,2�A>`X��E�X���~Xއ`4 %��iP 0r�`� � @ �� K�AX@( L� ��A�0 #p|@���t��(�-d�@0 ���(0�R­ %� �� p+�3��0����@B���@@dR­ � ����(�}�%�`B�A@B�"��L�/��]�"B�=���`1��� @��p+| ��j�L?�BA�AG� ���`1 �p ]P�t�Л�����5�n`0|8� Ap� �L+�8+g�L+ �A+�4M+N�}P�4 hg�h��4�}�ڇF`)�@GP@����l�B�1(tm��<�py@�Ep����v `8��Dp/�l�"@#��B� ���A��5B��_��H@����L��A�y�/ ���<��0P�@1` x�@�pt� `h��'��@( ��I2��4�� 8Mp,���8[��88�� E��2����f@@�(ӂ"�D�q6� ��`� @�@0p���`� ��p&n�`� P�&ϐ�`�C������%�@�s�X%��0`@�S0���L� ���� �31|���L0�@P�`@�q�0��X`@��*V��%@��� 0 <�DA0���m@ 0�G��k@ ��� �1:$:��� y���,�d0�4��� %�H�:0Aɡ��NH�X`��L *VHPr�%�  p���0 p�ҡ(\�|(�G�,K��(L��X`0JG���G����t p���|�?p� N���8?�� T\0Pp�0�L�@u`0A@���`� `�&A���&�I0PpA0��G�8\� /�� /0xp�I /\�|K��,�\�| p\�t p��t p��?0����/A��8�K>�^U�B>�u#��uP`�A�QT�uP� �u�K���> �"����K���S�Om@7�O|�a���>��m����m��P1B�l8�m��s�a�H�uCP1m >��Q7�H_j_��4��D����C�O/�;�Om@<��@^�UF_���� *,��\p� l ��p�0\f������Vh�!H���P��p!`p@`��(cpy�6@p����EBT�LJ�`!�p|�f�� WV� ��Y�V�pH`d�U�4[��V�r�cY@��Y�L��$��A��` f�p�3p �Ph� ��3 9�� ���0 9�p�3 �B �| ��Y��p�Yp0 !�U�1�4�@r0^�-���@C� p�-AK�l-����YCְ�l-�����-���'e '�>��-Aְ�l-�����-AK0)d X� �`.E*�R@U.T� AUPT�V�BmT�V.T�V�T@J���0��FmR��p�t�s@`�u�@*�4����h K@�, ��-(�����*��",L���"8K���",*��,���2����y� �Ȱ|0���a6H �J��h ��� x �I�1,ˀ�`X�L0dF��fT�d� �,1�� ���;S�{��!D,b���B�2�g{@ ��{� ��'�P�d�s@�&�@�%@>�t<d� ���#�L 2T03��02�"���BD#vd� �BD�gd� �%@>�<d� @�d� �2�#�L 2��@�A���`XMG>�<d� �4�p0�@ �64d� �L�'@>�t���8$?@LI^ř�2�w�\·�qMAD��'(����w�o��� �|���u� D�W�d0�D7tM8��5A�%@y�M��Ay�M��A7�p%A����wPp�D����@7���w�Mp%A����w�p�D�Q����| b �!d� ��@0 h �� \ .�f@%@(�\ ��D��Y� |�N��gAN��XT�GcA���s+(���SBA�� ��Np� �Np+T�B�/� �Bdq+� �BdQ9� ��0 �����GcAXD�a�X0%@�t�)�x���i�|@t���X�Q�!���X��a����� p�G<7��V�\b�sv�mV� ���E�\|��0j��@�4W���(��@,�%�E@P�@pP�@@�0�+0;8 �0l&��l&K�gl&MB �DP��� XT@ @Q�T���*XT�ܸ[G� pD MP�«`P�KP pīG<7��VG��L�p�ss��Q(:x���Bp@fg���q����t@`f����`<�f��IB��|4��"L &@(�=�@\ �C����D���(:@C04>��s,݀7`|��7��e�(���������l�p@p�q�@�v���@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+ ���Z�&�d�&A���H���A �Z��UH�%p \��%p \����U&P9d ��#���I�#�-� � v�-�U��J9:���V9:���D` �k�����\H���x@�r�s@`�u�����.���� ���/@L =A)�H@C04�����2���@�xA�P����O��w�: :���c@4 ���%a3�`T :0`���@��¡1(KƠ��XVph&K�0( & �Av<0�A���y�k�r,��(L�rdLS��ƆqT]��2l'�ˑiFSPl�I �?`�LP� ��3(3�yK\v@G^�yp�y`t�UU^�v�A�Wv�A�Wv�A�WvU^E�|4}��6�!A����4}py��py�p��P�I´�|4@?`$~�5�L���`4A&a,S� ,���sg@��l,�N�f�Á�0,e�q�H���l �J� Av�sg@�p @l4hDL���,&��b�,&��b���r� �,&L�T�� L@���TRA��,*�H%(D��,ec����`4&�� �O�3Ap��Ic�r�s@`�u���`8����>c˜4S@C`�>A�|4}�`a�@p��@���{���� | `8@�0m4���ɀ�q S00-� B�I�K����8��4 VQ� �@`\MS�`��`8�0 %��!8Mx"�(��"�(~�A��m@��Me�lVsA>�lV�@p�d � � ��@� (d��!�!pf�� �p��9���Y�q�_Ǧ�iI�9�u�����ǐ��DҢ@VhB� @VhC� �IO m��"�������Lp� ���@@ �/� !���:��@�h�O]�" O�:H �@��,��L���<l�"�L  `82� S0��?C�!�k�` t���� $~�(`8���B�"0 � �p���p70"��!�����@.p(��(� `�@< � �zR5� )4���F0`�!�0 t��x��P����| @� WV� ��Y�V�pH`d�X0�dAY �O���V��' :�2�Y����[!���AwT�lۆðm�P�A��QO{�����0l�c��Q�{�(p� { �n��@� { 8 �{��!�tG�'wT�!�!K�P�o���EK@�A i���!���-i���!��@����p�V�"`7(sA2�0��h`\�'�y�98�;�N�8�V���Gp���G�S��� ���@ ���Ƽ1B�y���`z��S��@^����N�w�~G[�� S�Uw�S�@�5N�]%��������G` ���s����b�E�7plU���\.F �����84@I�b< �b� 4���(�0@�b�4 P< �¡�@��ðU %��b�E� �'�e�ðU�%��b�E$ �0lU-QI0�f�ðU�F%��b�E%$ x�$�mlU9BIPx[�P���p�(�-l ����V0(D�V0 t�`��N�B ڂ@�m.p(�� 0 ����P�t��`p8� �x&w��!@�� �B|>� ���N�}�S���1 h��g :�ڇ��\@ڇ���\��P\@�@���-]d �a@8�)�8=@�m��%@� \ @�@uT�.�(�.��@�@6� `M��P�a-�v�P`��@O`��^`@{�F`@%��/��n��>�|&%���/��n��>�0�;��) ( p(@`�=��|�`6����(���]g��A���Aj�Ep�A$M�T\!C�P0C�0� d�}0j�E�P�ACQ�4��7 9 ��z� W�h�G� ��QA��z� uC�� x�� 0��� �� y�x���P�H����n�0��> ����< ��j�Æ��D[ \  p�G�$���H���H �h" ��G�$���H��G�H \`�&�@�� d�c�H��I�H �hb�&��H���P �n �C�?� ��a-�v��8m��A�Qp�UuP7��A/_��4��D��m�0F�D��0��F�@^ }�|A_ @��@ �C�m@PhJR`��H�m@ �9�m�`d�#��%���?�%A� '�a��C�tk�iɀ�p(�?�$�$���k�i�@�h��`|����2wC��E����2}K���2*Sp7�wC��_w��/��� ����Ph��J -�����}��t7�%�v�i��FI�� [��� w��u@��F �ipp�m P B� ��{0� �0��q�w��GP��<%��{0 <� (��QpP<���{� ���0>�|O�'�� �]�(�P�&Di�&D� 0��5��� �G��GY���Y�}���&�8����G��GY�Il�C>�x(@�s��@��LPLA�"�p���s�!�M�)�"@op �Y�;��B��|]���� @,B� �;�@� L�x�� �=����������8K@o��!�p{�!��>iG�C%p{�:��"�� ep{�Nr���(9� ����^]�~!�� �>��^D��/� �$p{u���2��!�¦WX2�׭cR���"�� Ee?��0�׭��.s��/0�׭s� D��"�� �p{1��@$�� mݢ:1�r��!�BG�~���y��g(��]q(�C2p� �Q���@� @ �j���K�j�.[@I�j�/A �}�.%� ������ p������K�/��Q`��;�j���;�j0Ⴊ�j�Bm��%���/���a+�����/�%� �j���p�j�K���/`��;�jHڇ��/����, ` s���<ل��9K���K����� s�07�K���K����&�Ms��K���47�K��07�M*��DL�M�tdu��  ~P�]�� 6!��� \ @�:� �pd���� (��7@x���.(D@�0 h �@X�@6� `�Ʒ� [Ap(T�A�-(D���weV�F!�Y����� B� [�)���p��A{��� �Y����a<��A������q+� � �Y����1��ap��@XD@�8�p0(0 @NA`6` x�0��>҉���}�}�0 �0��>AC 0� ��P .r%�0��6��� �K�ɦ�i� ǁ6�]u@AtQ�0 ���]T \T \T D��S�64���.�0����~A��~1�%r@| 8�| 8r�O| 8�~�O��>@�3�N�0� �K�����dnP7�A���T�[�%�u�~�O ���h7@�<�h73��h7.���h7H�h7��qV���n�T H�p�gL��� �il�`���Rr�r��8��QT ���&p�ARp��qv����@���jq��@)� �����`8C���j���QE$�k�Q8ǀ�D�n`8n�Z��# P�@a}P�@a}0��Z��k�P�@a}xe|��@A| �@���P�x�@��@&`8@2`8�A&`8��D�p��� ��� w�3���3`@w�� AM� S0� <� <e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �f���x���i@p�h� ��p@ �m�0�fP�w�y���T@�~���@`�{�P}��f��z� ��� ��p���! i@���"��6�"��#�8�$ L=���@�2�����D��n0b��DqrZ#+A@�M@@�?'�c���D',Ĉ�J�A+"5�Oi �M�tB�!@�E �Y��EfQ>�34�O@@4"� ��fFFq2�x��K�x�"0H�f`�=��!|R @� \ .������� ��0 h �@� ��L�/(��(�-x � 8�@ �I�>-R�D�0 �"�>��)��­�/��T�� -p8�)�|�@� D��/�C���p���fT���?0n�L��]&�tT��Vo �[�AnT8Ɂ�P��C_�?���K`��c����EP}8/�)`�]��K�?�&�t��/����/Ao��/_p8Ɂ��p @ߡ����%@M��%�n���n��� p �P̝�D1yp�S`X� ��z�m����J��n������ >��c@1�y�,=��`8P��4��mP�l%�@^P�l%d�Q|Bp�l@��m����ҕu+���+QU�@)� �� @x�t��$�@ԇkPXԇkPX��@}����Z�ԇkPXP���Z���X���D��Z����0Le` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ���8\�� 6Wp��P8� |��� | `8�#Ay�\6�8�HP6��� 8���esAކ#Ay�\6�HP6��E��M0D�@+�L�@���dS�!�f��dS�!�w�y���T@�4|��M�/�� �CÀ �7�e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� ����|�g `8���5`���2� ��� ��}� ��`8�y��"�df��(��� ��3� ������CP�� $B0�B�W$�qr7�0!�~E�'�kp�$&L2�> >���s��܁ �)������<0�Er� Od:q�d��"\<��e�q� u�[�0�ɧ���m00p��ao<'!�b� ��@�!� �q� l)�V� �� @��� A��#��qG��PTJ�l8���,&�@ r�  dr� ����g`� $K@2�lh�h�� �& '@+��-C+�dr��hڇN ��R h��&�L�h�I�!�!�)P �B�l,O@��[m��(h%�p����l�%��0J�����@p�M�\p� l ��p�0\f������Vh�!H���P��p!`p��E@�E��u,) K#E� �� -�#�z�� u�H�n��P��0`@4 �%Mp,)L p+�������;+@�Ҕ�BK�/� Չ���0��F0�� %���6X7*L�@�@ �< ��Ө0íphP'��2$$��0� ���`�� �4�QeӼ �0��>��4�� @)� �K��4�$P)!��FpR��@�q�3F�$���f!�@�q�3F�$���f!�����H��P�@���Á�0���;�W�DNa x�AN Sr�1�e�Uʕ��L�UΔ^�W�UΔ�M�U֔6�M�U�%@N����� �S�<0N�"�%W �p�}�<�B�;\% �Uv�\e q�/A^ ��AN��䔦�G��+�d���� �p�\�)��\%W �p�y�<�B"f�Y!�f�Y!�fE�1HPaW�hρs` �ڇaX��G�U�@* ��"�l eL��V�L`E^@G@;V��i�d�z�-�:]� �� ���f���C&`8La8A&`\<O�@�@�1dtN���|� ����@���3�D`�h� p\����p�� ���16�4������i� 0M2 ���t� �f����f���f��YAp� �`*e� L &@C�d&�# ���B!v����8 `h���c0 M@��|��G�[�$� ��f��0;4���p'�DF?�7 \yE?@J�e` (����@*p ��� h�)�p@p�p�*p�m���z�@�T@��~@p�f��P|����6�!p��`(� �0�*� �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P�g��k��m���h@�r�s@`�u�p�m���z�@�T@��~@p�f��P|�� `8@ �n0��!P�g��� ��i@"�(��"��#�8�$ �h�)��x�����)�n0��� �m�� �����@`�{�P}���m���z�@�T@��l�"���!�(`� �,��"���@+P�g��k��m���h@�r�s@`�u�p�m���z�@�T@��~@p�f��P|�� `8@ �n0��!P�g`�"���� �`(� �0��#�@�@� ��� �m�����p@p�q�@�v `8��Dn/� ���0 ��� ��@0 n�.� �1P ��!��@'� x� `8 `8� �E!�2(��#ao�w�pg�nF+pg�N�f�~Q� \'8��� $M�PsNdH8��;��+zr�'+ v��~Q� t6�)�nF2p�n� d'~Q� %�6�@Op0��>p(��` xh��` x"�)�`��-0LD�P�0k�h'���\7O>�n����q����t@`f��l'ډ�� �C�`��� hr�� ���� �@8#���/� �,�ݰGG8#��S@fAp��!� ��Ap�y��5 �@"�@ft_��aF @G�Q�w�-�Z��0wd �V@�{�S%���hF�VK@�|ѐS� ��` � ���*���0_��E`� ���ZX{��0� ?n�� ��XėE`�Z-A @���9p�{�P�d�� d�P�d�����;��8�:qj��F �G�}�!$hD���Y,��Jx��@sp7� ����F�Ÿ�� %@c� 4w� �J�U�Qd ���14V���d ���Plt��',�}9�>�54V �����`c�0,c�0� �n�54VK�0�K@�54V �P<���Q�@�1(���(8�7NT �� ���F�� ��`Z�08� ���  <L�>�D@����c�8�>���Q�B��N�j�$@v�p \�NP),Z��F�LFч���� h��i����7N0���1<1�� 1H@��h���,�B�A ���-��!,���,���"-���v,��Pn,��`<,���,o��z8��z8X��z8-��z8m��z8���z8���z8O� �S3�;�8$� P8s����'@M�`EPM��'�p8f�#l%%��Q7� u� �F�'� pP u��Q7�'@ x� uC�p���>p��� @)�'� pP u� @)�'@ pR���qR��� �S�P� ���p���qR�������K�8$P����?0h>�O��pX��KP��c X��K��L��i8/�>` X��EpD��E8/�>`8`�E���I��%������A ��g�c��/Ao�a���K��*�K�j���c0$���]p8��I�8��cP8/&��$�c����K�8&��!���c` ����$@��+������03�ڇz�g������-���'�G�HV�Н� �z�}x'W���.h߉>x'�O*���I UC�s@�`@ � �0`@w� t'`@ u�P� hSphS� ��Wܐ�\��}� �M�� @��D��(D��FI��FI����W����Dp�?����QI��DT��tAa� m�K@�W�O�/]@%�QR0�FI�@FI�`� m�QR0��E� �0�Gp\ @�qQ,. �0��2�����i�0r�>��A�$E.�T����ArPmi�0rп�xrл��Arn�xr���'[�G �A����ArPG� �E����A�>��Ar� ��A[�G �A��G �AE*��Arn� D.̺�;��G�.�@(]��q�w��G�zTlP��Dt@D wF$1HP D^�%�\B(q ���y��G�\��h�y�p����p ��qg �&�G5��s���������a�p���p@�[A` ZA9�(�A���A9 ,^��:�0������*��`bp�������� ,��p��\�0]� 0D@�A �&��K�`�`�`� `�L�%�F&&a.`8��V���p��� `"� /��3�0<���u��P� �  L� � �0K� 0����3 � �xk@F!�B���gl~� 0������,��Q����[���� !@+  <������@b�~���g�;��x3L�\֐���0 S0,� @� ���9v�.QtC��s�h�lÉ�R�@ #�0,��|('@ s�'.�ô��q����|��6�(�� ����p�`�P�@�0� ����q�c�U�G�9�+�xhX�H�8�(������؄�v�h�Z�L�>x0`"P@0� ������Ф�����|�n�`pS`EP8@*0��x\��� 0�%H�#ZL2 ��$� �J��9'@�؃� sd�=�9�@� �`$!��92�0�sz���I�؃OA)��̑9�@|��ẖ̌& kT�bz��9R=A��{ s쁙.YC�{3�F��2��# 9̱̌ƣҨFcfvË� 2�=d } s���fF��}`f`�����R��O�5�̱�<%�%P�SP` (���>�� ��%���h� | �� ��?WmV.�D��b�"� а˲.�7@��K� r�8����..KC�? �K��'pY���h�6p �s�J+9|�G� �Y��!���%���K��x.�%����o��;PN�~�������i�Ӊ�O����bѫ8��"�İ��ֲ�O; 1����ֲ@ |kY����9�b�O��o!���B | 1�-�P���4b���O����;�O��Ӽ�O#vJ�*�i-���|�N�IKu&�I���0?ͧy-��|�pڧi�-U`F8�V��9)���pW3#ЌGh3XqC�-0�$�LB�#0 ؾ8rW]�f$��3zF͸�،d��͸��X�e3�͸��g܌<���@pK@�`1�@2`A�bX�>j1���`A��Z� ��� �pWT��>j1�܅���H��� ^����p�>j1���e��k0���@�A` ,& @�D�A�#,����E%�$0���>E`.%a0�����O]P��� �!�3�����?`�ٰ � �)p�p�O���N'����R� A$ e��5�6Z�+`/�]���D� ��:0p`o� @`�06���L`����ph��&�! �Lb �!� c H�V̀p�`v��Xp B����3p�{8��4��� m��40�{8��9���q� Ё:`�p`�� `�x�P�k� ph`�A@ �8h`�<�@0z`P>@���~� �<`���|� �?� �!���El�"X�@0�2Pj������ 8`�@���kt ��5̀5]C| �� ��ָ?[H��� 8���4�'�E6�NC�!L�� �O�E"Ԁ� ��H��|�e�ĆN@h��� �>(5�'���2�8��6��2�5�h�.fF���Ӂ ��1�x �g:$)�PX�z��s��XX�P�L��b�>,#X� ,�`,'@Z (��p��Sh���)����39c 5w�Egb.�S(���-:�ZΘBA�]nљ���� P �@��i�AΘB�N��)d�v��S�N4?��0^ΘB ��(�W�r�*r�����)�T�x�!d�w �Zb� ��=�кXW-`�S�B�%�����b��Y� e]���PL��]@(�b����i1%`� ���$�#��3Hz�G� =!7 ��B��!/,��X�A�]�&E�Q{ZL1!�阃�`�H�B=��qM�p����d�4���� x���> 3�"��x6�� ��r��/ BA��L� |�"� � (�����"�4�`)(F����)OP$!�:@ � ���P�r�pKGz����;�g��N@>�s=��<����,��Phl@�� *`P@� `08������#)���A *`&�E��p@0O� L��c6��7x駣��P�@I%���PQ��Ǡ��$��R��Ǡ�T�����("T�PQ�KI`.%��OQL��>��S$`8 ����$<�����+ � ��  ! �=�'@xDE�H%� �� �J*9,� :F��p+`�I��>��� tW�`�N�} ��$% 9| H�� ��\B��H� �$п�@���J@r$K�$�N��J@r�bK�${��J@r�je� �4�@{�k ���p@8n 4�@{�q@��6p�@0t��@`�������(���<�@0z`P>@���~� �<`���|� �?� �!����3���0g �6��� P�(FP ���.k`�$�+� C*h� <��.T/m�́�c���� 8�������^܀x������� �A0� <��2 0 ���C$�(� �3p�@�k ��4��xh ��8 �@8s �:P���m��3���T���?����f@�*��@����n 4 A!0g �CAH�� (D��� P�(F��#��� �S�NXh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*he�ͮ��� h��m����f�@�p� �9��v�� �!�-Ft�q2�8� (VD�p/�E��� �p���p`�\�r��� 7� p�r��0��u�3��p����Q0 .��ap��.���b` �!��tO� > 0�3� 0��F @�������� .MP4���dph��QŤ�b�0ʫ`R #$| &e+$��!ᤴ���]m ��=h�!b8��Ok�`'��ävB�3&�S,�3D ��0 ��@�.�mF��6 �I��>�J�g�_�� &�� ̀���8R6�ZT�y�� (EP AgP w�D�D�AI(D�k:�h��1�� x}�'�cP��L*ڒ�Vm�l6B�ԙ�A.x` �0D�hT� �!@p� p�I�($� ��y���H @��Z(-��0 q�0��aJ�a� �!b,�(`�a*.t M�����8 ̍հ � �xu�ƅ4� � 4���I�qa'ą�@)>� �4;!.HKа 2�� �!. ��1H�;���%��9I���@"q��#��8�#)$��y%�C�0��(���8���M����� D�qhǡiE�e� �c���R��#�(M�8a.%$�\� ��4�0 ��>����04�@"q�v� ���R����6Z��v�@;�$ .p�t��FB\� �dą��(��~>- ��(J@\� ������m $|�a�@<��m8|�P�(���n��� �!i��hD�~8����( pl�����1" �(���� �(J�O�@L�D`��������$3@����q�0,�_`�^J �.`!��� � �s�`d���"��-�B�x)�..��� ��Ka&0��; �B����#@Y, P`�� �r)��r��P`G9��"�MH!6�Ё`��� t@�؄r�@ )�)�&`�PWNd]a40F�s��ֈ��"� �s���(��'/��p��]pw�䅻`I���ZC��a;(PAL�(M:�&�$��/�*:�_� � `0���-�@�L��9l�@ ` n��7` � `����@[ آH !P$�@@R \k�6�5x��sx�����'�؆S�50� a(E��/N�3� ���Es�m�����@.� ( �n���(B������8@��R�lkP����1V�n@��۴�&`6b�(�b4���y #�SH P�M���\t���m�M��fn���m`@��'Ah���&/�� %̔�`P�j�1(a50h��bP�MX5(`���P �"@�b74Ux��� �]��N�:M�4`��t�T�"� ��f,t�.���]�� �F@g(#�Ae�BA(H����|�N�T@�X�A,�)��i 1��F��x��.���73�Q�#�d�0ϸA���ocd ��N̠:�.�%^�12 \�q#���\L'U` �$;���xHk��7���X �2 ��d�0�/3Y�Ɨ�,w� T�;$�^N�� T�P ��5��C�B���dAh` � ;���xHk��7���X �2 � ��܄�@xϨ7! 4�`��/hI��DpnBψ �����A���4�|A�6�"�x�g� �*����m�uo��5P�� r`�?@  �2��hd�<�q��`@! #�o���!:x�а�-(1�1��g� �!&��f�hA� �`t)�hV�g�4اH�cP¤����`E(����#`�B�b�1��g |Lf���t`g�_���F��t`n� �7� @xd@�:��``$&;�FR�`$�$�� ��8��h^�lv��t``0z���.`����m���-�Shr1������t ��c(F��<�P�P �D?��0�t��%BH1�Zb 8�z�]�@�9U�8�S� h*�� T��]�@��� �7@�` � 0�BA(�d�#|6^ Ax/u@�i�‹x|�?ƀj�i�� ו��@{n� �7� @xd@�:P�[� �-Y>��t�n ��&�J�kjM��5�&2� 0��4��x�פ��`e'�& 6��1� 6a X��`vò�c�d�4����%����؋)�d�02�� v@'�����L ������, �0��� ��` *��M�- �<��.��(l6I77���X �2 ��d�02�!(~� 0�$���@��`P�l�n�`؍`�[�n�B�ń1@ʀ8v �5p�@`m� �7���X �2 ��d�0�?�0�� A0�@0��?`��8j�E��#x 2�����`q'�r ]��������$l�II#� ��rL$��<%�HWp�)L�P �� I�|h! ��-H�B0��$�(�A!P�`�WaK��%�'6���JT�lj7�D6�٤JdS�Q%�I�Ȧ٤Jd�P%������!WAl�E��91@�A;�M�DN� 3@ځ� ��� �v�P���`ܙ �^C��@$���T�P������:�P��=��V�0,��� ����qa҆� ��dx�F��� O�8P��D ƅm�M� m�� � �����Qm@'��Q��N�Q�I'@�a��O'`@��i; �����O� X�;��� p{:�=��(ų:��Y e܋۳6 ��8��˴���������6p���1p�@`�0 Hp/D�/�@7�Tn�0(��c� �A�8:�� P���k�p�����"gg����;Pe8s�w�8 e�p �\`-�(`�l� ؀"=��l��0 ���" `�0@qv���`"� ��Q� ��6X�d�6p��(p��8� �@8�� �Ùp�`\�m0 F�'�f `l@ �!��3� 0�3��@�����DP x��Jp� %胝�b@��"���|C(��@���% �7� \�P �� �@I8 %�zM� t@+�aM9Pt(� 88S����┳qa�P�7�Ŕs�.@ظ�b��i'��ݴ�pV�Eh'a�-���ܢ X� �AEp �*8��,gyg��p�28 �@8s �:P�+@��ph�0K�ݥ��H6 p�%`�@GȃK�����ր� s�;LE`��X���&0 H0 ���Q� [�ZI�_7��I�#�6�z�Լ��D0 F)���|6�AP 3Z��-N�����f܌���2���4�rf�� }���; (�����q3`VP�@aH��( �7�_�`�2@N�k�%@8���c8 �����n#~� ��| Nc. @�?�S��O3~��8 A�b�q�� %�%�;ЛL��0{t�T�`0>NX!�38��V� a�p�p�B(��+D ������ph ���� �@����,�Ax��qp@0 8����s�k&ܰ ��A8���G�� {t��0��� �O��Ϝ���A�a��>s,"��3��V�NS3�@�Q=���`>N�Q=m����rT����6pZ���� 8m���6���@h̀x "k�A� ��'��=.@C� ���P�@�\�A8���"�@�p� �9��v@+�6p�@�f�83�"��1 0n� �!���o�  0�3��0K&��@�.�XL?�O��`�m�0� ��R�Ao��%�'۰� `��c�۰H� &Ƙ�g8M`�)���ȃ����ڳ@l{����`�����]hv#l�`D�Vhv�y�6��B 0�s+ ����"� '�hO�`�]� ض` ��:��V�`+,��P��k�� ���]�`�q� 7�� �|� t`����a �� �L�!�`Z����2� f�8��@̀����yW��p�<(�`&� 1 �E�PD \�� � @(��_���/�E ��!���S`�; �f�O�?�����d` �@�����%PI{pK@00 �#i��0�Y}�A;"��&0 �����=�#��O{X���pD�HG�>큠�#"��L��<0E���@����A���J���q���� ��� �z����`(���HV�'����)2E���(�g��>��cD$�Ir"��22G �T��PF���` :P0�ա:T��PF���p�78 ���T�a�����@t�:% �$0�N x �����8 o�u&���:Y \@r�����S\@r� �S�NXh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*h�ߖN�L�~)����8�� `+8�@#��p+@�ө:��i:��l}2��>��d+l��:U��� ��<��:��V�`��� �O�����N��:ag�|�Sv��1;��P�� ��S��>�[aL��Ͳ���*�P�����V��7g+P��O�C��'[!kP���T�V(�1�l}2��V|-���� ����3AB���ht ca5��� p�0F{���� �.I�A�uCt1�4^Xb��� ��!��6Kd'p����XM7DJ��%��ɑ��f'��� ���Kd'9n�?vB ��c��P��[r�x��$8�`���k jB��B�)�!�8pЁ�q ���V(�A1,���c( $����� @P�ڞ`���x����`)L@o��=�7l�L@op=( X�P���~� �0J�`� \@��� �� �2 h ̅ �V��\�@ � ]�3t�>@R��ƈ�֑X���+~ 2�{��b.0�p���:X���t��:: �`��u0�?P��`��ut�"^doa%K�8�%�^doa% �E ��ZY +y�)F��$�$��� �`0`����@A-K��V"0� �/���s�Z8 ����q� �;�.@�0&@#�;�.� H�n$� ���x7����dp�Ɲ� ��� b�G(�M( F��`0Ķw�t �h:�7���Z8 ��,� .�u��� s d����{b��=�'�[����� 8:<�Vk f�8�F�z���e �Ep �*8h� ����`p �8���f��;��@l@�� PA+(�g X]���p�������7��@f� ��O�ͧ����|F�i>�uZ����2�   ,�����K+`�v�{���v��_��7��|V;L` ���*PJ ��K,PÀB�a��۔�0j�� ��p�o�}l�)=�SpN�i8 ��4����0��i6P(>��Y<���;� ��I�6p���!vȁ��A0��"�p���|N��9�<)��;`o��P pr@�P e@�q{&(9� �<H@�p � 0�p\�L���d$! �@1�μd�0D0 �� @���W?�l�A��9Sg��bҀ�R:k�ąB�` � 0� p0�h� L�j>�I������A�18C� 0� @<�������G0y� X��! 8��T��8 C�����6�1F!/M` �b ��b� �-"l�5P؀ Y!n��`Ȁ@~� 0�B �%���[�b`@&�2��!+���A � *d�t�|���X�`(� �(�O@�b' �f�H��P�m�(�oy Zbr�g��!�P BA~��*Ϣ��b �A�H���5�ZPKy@���>��AK� �&XЀh��� �'�j�@x,�g��N� ����� �S��`8 �&+���}�B4��1`~���C���� �Y�_�4��+�ɯ1a�� �F� 0�$�sz&̑^���"9)vi�  +ą_�h������R <��c�gp�B|; ��'7�\�M�Oc`>ف4 �CX� �Q���X��7�7�  �d�} Jv�(� �,�(��� c �&^DC��� ��T�5P�@�M�n� �7� @xd@�:��`d�<��``�6;@�Pc@4؁4�pik���� ���n` �8�Ȁ�t��5P�@i c��ف4 �CX@<��7��(q� �90�  �����e� Ч��F O�a`!D��@@O�g��V;�( .`k���!�|�@��k��2����d�0��|*@��! �� B� Z���`. HQ o��M��A x�1pC�A@%���P��ߺCԀ 0��'.` `됁;�ֱd�@�v�7�pkI �|��;p����d�0�c@�8X���p |B��4��'��N��N�T"�� h�0���L;pRW���  ���d�02�`@!؁K@P��ѻ�6:����R*1J��� nXL�!'����(qX���H����\Gp�#��1�Ag�c�6$_� i�� AZ��}p�/���4��>rV�8" X� �h<�` 6pF���0Q��`��/h�b��?@ =��4� 0��bI�$,X�@@aE� ��'�@��a�\[�"��[��a'�ɷ�l�[��a'�ɷ0H�H�a<��5Păxp� ����s��2�(f �B��x}� D)P|��Ai�@�����` � 0`ClA1�v �2p���d������Ǡ ��ʣ 4�E(~�_�v ��@�� @ �P��� b���[|  ��-���x���fF.�����?<���@|  �@1զ�T�0�'���2 � �E��Z��K) �޶1�\�D=�` �;`��A�Q�,�(��"���$?@*�䕼@� T;�.8v3�=�<�|� �� ���Oy>y��5��"�4��������i ��@?@Xtv`'0� 0܃H>�=�=��  ���;f�`���C��!� �A!��� B�� %w0�A@lF $�*��A��� ��ta��7�J $���E�Z� �UP�I��� ]��*�e��0�U`����� ���P`�D�#�-�H@��!n�@�Ԑ!@���@܃��n1( ��ՊGԐ(` ;�~��d?���5P��28n� �7� @xd@�:��`g� � BA(��C�#a$ B��`'�-  5�&U�Pg*@�� lfԙ>�Gl�Y5�&I(�v��I6�-��@ 8Bp������-HGXا90R��-  1��t�.F� �#܅Ĩ�m� ��6p�ܰ�R0(d�.���.V̊� A��`u�� 6�O�L�#6�ͬ��G��l}H ��!cB���1��098���� r�,��:Sg�� u�F#��N�#J��}( �8��#l��Np !$��v��;��� E�����P ��@/� ��*�%@�B�(�G�  Z��n�$FB�)b � (�& �@�� ��5��!��^�3�B]�&� FpQM`$L(5�L�PC6�k����P Jɕ %W����  � �t��LĵP�a Ji��?=��ƛ �0�?�P *C�S�?B� 0�A-�� ������(vu���0�����P��9���`\sp l��0[�^� 8�5�XkI�5���T���� ���(q�02�9�ր �k�0n��}р^� 8�5��X.�{��500�\t�o\��H���c �:@.@`$k` ���?Z�HX���B��Xk`�8c�` � 0�p <�����k��i�.�^�ܙ���׈: �k���1���� 1$>���p�x�cP8@gH l��_p�� ��O�8S6B�)�������A����?@  \O�5��g�d�x��� ��4[����5�����'k��K�A�A^[�@�y�E�Y_�,�(�5���bH|q���Ǡ&�� 3�m�>�äSt�y�,�A��fB�̋'���v"N��a2���4��d�81�RB �>  ����b��q&|�� ���V���< fB2���JE���M4(6��ãY��n`��3�f&$��%�M4`6ѠD p`��7�d ����6��h���>9��@�*�Z�?��\�H? &Dҫ���AL �5���8�sM� ��7p�pw����p� �+|��p��� �p&p���_� �2p��Dx��Up1���@Lp@7��|��Mp8!�������w�)��p���M�w�&�;����BM7��;t���J?����p��2�.����~�"� w�݄;t�P�O� 5݄;���M�O ���8�PSTĩ�����OA)���(�� á�@h� 4d��m�́8`�@��� 8�̀�4A L��x��8$~�L`����`���(�`h�� zB)� ��4�)� ��� ��hp �X+��h �$�]�� 3:X HHB,�*REJ����ܰV4� �!��pR�n8�⤬���J�V�6�� @�m%����tܧ @o@-�4� ��0����Ba�� �~�f�V� �e�T�m� 4P4[�����X?@�c+l�²mr�V�6�� @�E p���Alܰm��Ib ����@{(��K���%�d{(�����N�C ��%��:T ( ��x���6J���P#��(�p�NN@I@'��m���F��Qb�����N�ÇB'{��a8L�!�d�1D� ʈz-#�a�������c��a/8���c� �A�, ��D}M�bG$���,>�^� �7���8V� �+d�8�bndQ�e����8�Fp�� �����$�d��)v`@�t 0��̐�Э؉� �"�[U�r�pD Da��}D���>�'h��4B(5�3��p!���5@��0�t ]�5�F2�3�Gr��d� &G��?a� (�1uB�� a ��d�~��(�Dd9�}�F28�3,�� 6tB0�r@���e(�A��=a�Đ������ �Q6����� �%�]rV� ���%�U�\M �8����9R9ށ�a�Bը�A-j�%�_��� ������_���P\��y �F8����DT���8��� �}l��/�È��R/�K�%�7��)�p�>�8[� ����[h�qN�V�1 ��J@�9 ��ì��`b�:x0��x�up��:X�A������I9 %`��X�a��Y���,�� p<�:8 '@�����z�Y�f�����[�9 ��ì��`bA,P%g�ì��rޛ(QO�8� $@ � va�L�����V��S`vv �2��[� ��'�@�x`+8�2 �i8�l�x[�.<���6$�`�?� l��` �]8)8�<&�����%�UAG!c��tr�C�~�id집��F�~�ip�� ��.< 0�O�v�nx�'`͠��!��o��Fo�*�� �^� ��)��,�� .M� �pp��0� ��$� @܌(&3AE�����N@2�>8`'h�w�E2�>�,�� ��\&��h��7��N�N�&�9��^ �&`�?��M*%`� b� ���,���28&`��08��C���Pڀ 8m``��%zڒ�=�g�,�z�ؙ�p�4`���%�����3=-���7��6�g����zBO���<���@�� =�'��lz� =� ��38z�]�vq��4�s���9��@��D�(*s����:QN ����;z��p8ƭ@ʁP-�`&H>Q��x@<�@�p��$��f`v�U@�:(�؁� "� ���5�y��+(�`�� @����41��?(3�n܀�f$�y �(�@��0`n�W�����x�]�0���̻�D`��w7��V�yX ` $�G�` ����h�A4Ȱ Ch��$�� @H�\D��8�1GA/��8�A#� ��/��F�A�~�6Y4V���r,��q+�B��Nl �VP9�����r܊[ao*���7m�r���<��p �B#� �P9�ſH��_(�/4�F� `��9r ��I�&�P���38�ʹ�;�G�Np3� \�����`8؊��i�Cnx S�V�S���_� 9�x��P��Yx���P�?��OY�#&���?�%����#\���?�%�ri%����w H� �$/h��BG^� t�,БwP���x�$j���$�L�ytD��O@G4Y�qg"� �#\��ܙ�@G^�;�3�A�A5�L$$$/p�;����x��#4����)(�ǂ��c �p�BT q!0�����|.�/P0����4cI &%A��b�.J ( �$���Ql�M��4܂?d��3`@] ��7p��PT��r���[�FnQT��r����F�3�p��q� �2����q�?0~�n�{�[@�v(ԭ�% ��[�ۀ��Ǹ� ��2�æY��a�܊v�Ch: 8�0���8(\�V܊��_��(��VxFs���!�} knŭ��_� �!d��5Q�XD� k<��_p��8<�x�5�C� �*^ƭ�@�4�%P� Xr�#x92fNp3�@t��%:V@�(a ܰ�H�A�����F�X �a��$� �@+I +$��R���$( ���"HI���$��HK- �ד�JH#4��$ �R[jKn����@�� I��0@ p%�JU `�������J�� � ��p�c��~B�\"��):D����O�^?��b���@J�J���(���P· �������I�$a!���P ��BXsa!����+X� ����kE ����t'�"��a*EB��zc�K#�| �"'�D1@���x@��;0&�a.,���X���j) ����� X��p�c!,�o��.1.��,��p3��Bpxd!,������)����-d@ `&�!� r��H ���[� V�-�+`.�������Bp.@Q,�4��XJp�"M$V�-���aT� �!@p�����v�6��D@�FI��I� @¨��` ������X� �Q- �(�b ��xp��)��aTK��ր��f�@N�� '䜋s���&� �vX� �ȩ�@��Ng�@V�n���a  �wpm ��`�� N�Q 06B2���R[�E����4. %� @\���6�Ёփ�1�c!�+�՜p� ����0fn� #7����p�zH)��������zxbw�7��`P^� x�6��pR�z� �6�ܰ����I�681� �x@�S N̉Y f�L� �a�e%|pfZV|���0BAL����1@�E�3������_�E�3��1������#៴ 1@�E����� ~!�c� ��0���F�?���Ӑ�"(�Ȍ��$� 2/���ղU8��0�X0 f0E�A�#�:@��/��X:@�@  ���ҁ@LI$���?H��? ��?~@ � F ��?�I�I0Z@���?~�UH" &�$��m�H� �%X�0�@��t �Ё>@^lx�$�ЁBH������`�G�I0c �kp �@(��` 6 @(��� �7� �9 n�2�@( �N@ހ5�@$B� �!(~���L�#�)o��y� �  ��2��  �&��` @F �0�R� ` �(��$�A��I0@���#�3���`OHgx.@Q,P ��� `8����:��.@Q���`OȖp��(�� �"@�`K<p���3�#`�GF@"X�Ap�o8>�!�X@Q��[��@�<� �jc$�o�� �#w�����_!Z����Gp�4��>r��J�#UAK��o�R@Jh)AQ ���ZV(�є��Z@;H �#%���@8Z�xQ#%P "Q�-�P�H��V. �0/)�?��qiF�l1���v@\{�Q��E���` �Q%Ar����D;N� � -�R� J�h+�b���{`)��h��@<�����D�a�j����`z�O �`\M� �f@w�D�D�AI(D�k:�h��1�� x}�'�cP��L*ڒ�Vm�l6B�ԙ�A.x�"8�8F�@@h�:�� N<����6�a@�@= @h�E����:E>9!GR@�NQh�lp��대ܐ�>� �$+d�܀���p� 09.�\��!7���� Zb|���)E0 cH���)F@cþ<αv&�L`g�� �R�  a$��� փ��#�/�`&�H�K�A �t"d���3�AQH������ A ��t2��Hp( � J�7�4�D P N`X�r` �� @� 1T�Q90,B� u$���,��@�b����B�h�!t��{0*¨����A�*¨�����B� ��r`,�fQF����r`L���p�B�I1�T >�%���U�Kl�j�%9�|�K >P%����J|�J��/ 9`P���U�/)`P������'� J�Bm�j(�s�I1{����� H1�*l%>�b�$�A)*� ��R�ƀA�����fR̞�| �0҇T(�@�a$Pa+�k%! J1PA�b5 ڀ����/)��� ~��;I�fߌ$��@�� �����@y�A���p-�,؂ ���ʃ#�A|�8�#P��<n��H @-���(�RP �`��A0�ka|��1� ��@y�@�V��Ȩ> ��$@1���� @4j�I�SpI�8#�0��F�`) %� pJ@����-n@ �(�b��0CP `) %��7 5�(ds�M̉�Uy $�/� O�Y^�P��4�7��(0+p�D��%��_�e�K��2�זt�,���I" ��Ի,I����i@<��4� �xpo��5P�� r`�?@  �x�9$�m��lF�Vh�p�-��(��L� @(��(p�@ Av ! \8�Bp���@<@ :�0��0 �� �N@=j�D *'"@A�`'���`*�B� ������W�^�����Б0,a:a���KX<� �� ��� ��` ��5�)$���S���,aIq �X��B�@=��ޔѡ��l�># u(��T��X `|��FG�y4M-u��:0 $(�����6�� @C��04f�# $$�0�����C� +@�8�2�x��%�d {x �D�$� �������� ����L������8��`V��m��q7�t?�w�n(��8���T�Y}܍��8&ᎆzAq�^F`6/���=zQ}��a?�SP�V�2����`Vw�n(�I��`Vw�n(�I��`Vw�n(�I������ t$�� @GB ܐ�lԍJvc4̃�VX:�h���S�"PS�AM!񧦤��R�TMIo������4B� ��T1�p���F�D�U1��쪘F�D߭�*�lT�� -xP��Pn� ,�+�� �!� �V� �кX8�ˀ.�F���`]��+�e�@1iW���� ���\� �?p��`Ja �Px�.�B�\� �+��rC� \BZԆ+B���P }� p� օR�W��\?cŲ��3V, � c]�Q������� (:*�9�͢�_[(:��舀�St�NI�%��|���@�):%��I�> d�Q��‹�`U�s�ϡ言�Pt �x��97!��s�ϡ��>`�����c�x.kdx���>�[9�R��� �*�z��|��/�C(:�=��>`����M�U}Pt��s(:"���I�> �x��9�иD@]}P�� PX�x�"3e&Va,���"ȃ��C�#��0�.��B M��S���TnZ�:8��鬃VA��:��S����6J@��P�8| [�l�E(=�S�O���VMO�<�O�)>�෥SE�ӹ_ gp�p� �� �����:K�V�'�a:�9�O��V8�Su���`�����n��:�l����[��:��t�%��l��po�B��9[�”}2J�>� Y��l����B�'`+��O��0����.�` I)�]>�Y ��� ` (&` g��K��� b�.� �X'˧΢ �KL�1A�]���SgK)���]0:���@d%&�b�<9�|�l�� W,���R��%&q�A5�KLtԦyrONG�Av�ZZ�,�J7p F8n�t�ţ�Ah� ��p A8n�t�ţ��P�)�P$�6a Di� �K��̀�4A ��|� @ �k*�5�f�8�_gBp@ �r����&ml���zB0� \̅`�� ��K��w 2� ]k�)�_K@�8 [����ż��L�r��n?S��)� 0� ��� �V� �`.Lʹ�� ��l$�� sa+ܜ 2���#3�R��р�\� �����v�N�~�u����6� �A)��m������$6����cIl��Q��$���}N�[D)6�Ϩ �slB�9�ǒ�?�2��I�0�mR?�2��I��&����+ŏ� D�6�#Ԅ�0y�l��uqh�Om�Ky�6 ��p��#`1�� P���3 6�B&��8�ʹsL2�>ɠ��,] ��Sc���:P ������j�A�d���3! �������Q�A'�(gz��%�D@�ϐL� U#�%� |�d����Qd֫!3У�P�+As��,fz��Zd��-�$���딀�03hƧ�45� @/<�|�\�F�� 8`�@0��5@��P�����0�gG�3|�C��08�4����Ohx �@����h �`Y �) �0 :A����=��"@�#F�`F��F 4��<�H�( ��[�2�G�"!����ᶪY5 `.'�R���p$Z���xGbH��(�-�:UM�5 ��� F3Q$���"�T����dX5fn�T�z��d����.]����ҡ�q$�ސj� ��<��Zhy(�0��� l���GS�wP`�ѱ@�+ @P�i�� ��&%�Q0 ���� `0���(>�A�c��p V��%�@��P �<� �A/��p �T� zA�h�Bm 8d*�� r��� ���pS�X@!>�> 0�Ԅ�`�C}X��>�΃p d�:l��f ��� ̀p���C  8� q��C� �!L`� B���,�)���� �) ���(�@!�@O(%>��#Û��k�,��6p̂�p +��0@�0�Y!L`0-L@C@��<H�G@�B;���  0�@ș�$�@�i>}��4���H� y�� ̎�Qh�{i���􃼁p�J? %x@\��f�[Xs3 �4��.��oa�6��� i!�oa-!$��`+FCN1 !6��``���Q�2'�Z�*SD%`(3̔�)S`� (�b�>`���Q�2'�Z�*SD%� 3̔-S`M�� �A� ��3P  �B|�F��� �X�@�cc t(e:@���8�@�'m�X�(,��!�F�,��8MXcl4�E`��Y��Ҕ���)@>h �fPp��,b�/���x���9������x��)�@��ʁ�<�@V�1Y!e��, �r�����[Pc��հ �D$+ASi ��)��ԁ��h$p��^[a�a/�A1XP}�'�鹔G)"_��d%k*M�GpR>C�0XA�aBV�6\�!�C^��?`F����DT��`F����D���`F���t}l �b\܌� � �^���f̌� %��X b�>����@�v D�E`c7� H ,��f�/B`��E��|q�@`��E��넀@�`f,� ��̘��,! �@� @@ ���[@��"�.���f�� b�1�bPp��G@0��\�X �Q,��#����kF �)0�X�,�Hڧ6��� ��a(%�nX���BB� �#� B1(,���u�X��A@,��� ��H@�Xn����a�> �b(�K� -�Pp�P���"�i��):����i�,�):up�8�p��8Ά>��p� F�J��g�� pC*�`��9x6ΆF�d�$����T��|��N��A�-��`�+���)~�:�:cgl[ �m�-����N��A�-��|�b0�)�q6�ƶh�p���8��ـ�/$:8�E (h�(�S��@������� @��8��*�����6p��{� �*����m��3���T���?�����El�"X�@0V� ZA�x` �� � Pp�� 8`��|� j� Ї�� ��}H [$Pp @j ��"� ��!����0H!L`���� �) @O(%>����P�A�XzC�6p�@?�p`o��6pЁ�{�o3�@A�f���@��A(4� �?��@@S$�%0��B�o&���d�0`�!���>� A��L`@`e $�2��X�@���$�RA8n &$�d��m�́8`�@��� 8� d�L0�Є�Pl��Ҡ؁u���MXv`����Xw� 7�@2�` �� n�� K 't�� zBHl@��%��X�(�� 2�p� ��5� @�.m���]� �@�p� �9��v��̀�n��Q0 .�(�� ��_ ��08n`��a �A10��<Hp �(�tO� > 0�3��(q ��8uz�P�3������Z�f�8�Q0 �A6�D�� �A28���H^�yѠ-�����^P�`0�8�L�}hdÂ���Z�!8l@ @� <�'��`�D��TO(�^|�5�m�q�!�����w�����6p���1p�@`�0 H�Q0 .� �� �I0^� ��a���r��/���_ ��08n�|�aP�1(��@ F�(�٠ x�����A' �> ���m�́8`�@�S�!��?��=�@�cPj#f�83��!X��?�<��[���3��%��0� K4� �Og�>=!x���Eh0 �f �) z� :!���Y�OOH��,h��ACh�24 ���2B� r�����W8 � d�p�B�=�pୀ9�YȣeM���P��`%`8�.�5��p�\��Z��@ 9c8� 0Phh�>9c8� .�hE � ����'`��Y( f���f�$B��=��\p@�� @8\�V3�_�Q�-@��(��� F����!�8�cZMk�q F�|���΂� ���� >� %@� ��`���0���)����1�""4�Ii ��a��}(�tl�<������������ ��=Z�,�:�X٫�){�#z�Xc%�G؅6uڔ��G:��h�6���=ZK 2Ћa*�=����A�a*���e���6���X/�^��P9���W��y8h�#�B�\c:��A��5���W��u�%P�� ���OP�� �?�b �d��O2x A���҈�u*,�ecVH0�r`�|�p>�I8� ��(���'�� ���������0ZA�@�i� �OO�>:!d9�}DN+�S�(��W�ր�� #=�����r��0��u�3�@28'�l3��A AD��S��x��܂`�x�ύၞPJ|«����R��@C0"�'����|.XF8�6p�@?h>� ��:0p`o� @`�0@��N� 8�/0��Q"W3�z%rES8���0x��4��IL��K��@n���l��v @��h �ݟ �H�l(��6��`pCn( �E��46:�� Yct4��X�1� u�/�VsdC�� ���ԅ��vB � /a'��pZ�N`5ua'�S�H�N� $�.�y�RrX�$� /��`C� �c'���P(���m�� vp�d'�λ@2��=��� �p`f���x3a-^.7��ԭ� %`��)�#�ԭ]��� 4T?�pxS�� ��a @@��%`4��[q+�ԭ���M݊[Q:��nj}���xF�h��Su4��[q�R�!!�� Z�F�p ��*��0�S 3�����D��ul� ‘���sBOp$f)�\���L�m���u�EG�>a�hQ�Y�:@�H��ų� ��'D�E���`�` ����0�X@��'`K P�@c��)!���2 ,� X�%�^E� ����b�0H��,�9 ��E� <�%�*�D� �",�W�%&M����%F�K`Nu]�b�0H ��$�8� ^A�S�"��&�$���"��$p)� �;�$0����Q�H�c�8�$g�812_~��8�B�Hǡi@ Pc`H�B�}f��QP�q� "�84���4���2�c��1H�@)pX���Q �0 ���@.ᄃF hN�r� �A�|Nf �8���))0@ p �8�*���@ J (9@�$����)P�H�@V0�M @V�`�B��A���؀tP�@�R`np)��@� u� ,)���ܐ�@��>�R�iYA �c0n���I���3`����#t��:b@5�:�& ,C`���I @��`C��17I %0`� � f�(����m�SO ��%��C'�g����� �m`"��,��1`L�!0��܃�B`L"����qCR�Xv �Qy�pX� ����pk�ā7@���~� 0 �-(���p)�x�h[� 0��'�xG��#a$RĔ�m�?�m| �`E�5�m�@�;aET�1`H"(v �Sp J�(l� 3P �*pk��7� �X��<����{��>� � x H= ��jx@ �@^� �D��"P�`��y �@� �x��Q ��(l�(��c��pk�ā7@���~� 0� @%�f�(l�;X7���X �2 ��d�04@@2<4�`�"� ��3�|�g� a'`�� �gh �!4�BP�`I@5��19I�H�����  � ��4T?@  �5�� "� ! �����F�p�\8�}����r����f� �� D_�l<�N����e�(�}p���r��~����3��2V0Q�x��9IC�� `�I�N�`>���A(`�I�O H6)�\8�B�OV��w �;�� #�".���(+�q�` s@�*��` 6@Y�  ��� �N%<��™�@��3��`!D����k�ݠt5�z�%  � �=� pBX�� ��(+� ��n�����C�IQ  ߺC?�N���p��@ �A���D�Bp���d�<�>�.@HD��1� �@`Z�y�!@s�@`������7��(� ����7�` ��H�Ks�!#�<4��vF"yh.�u܆�H�Ks#�<4��CBPhBx�`\�(P.�  ���  ��d�0�  �(u���p��R�䁥����K�`P�8����؍0BA6H �1�\�  �T��@0d� �?@��d�P �A6��\�l B'�j�PPB6���N� |�/� � ��/À�PP|A(�� X�k� B'�c��1p��H�θ�#�N�(l�%�c��pk�ā7@���~� 0p `BL� 3�&��g VH��Ԅt@�� G�ЁtP�@`/��`0��M� ��&$���n�F� �`'�c�AOH7Ёt@|�� @���ƀ-H����P� ��� �8��@�o� ȁ9@�` � 0��ft�.����P� �@/�����r�-�@ b@ A#p����P ��&����2��  ��7\R5���]�tځHK���s5Aݨ�p 6��v��in��5P�@�!n� ��j ��` ���P�`�O�(P.�/� $�O�]�t�A!pcnl 8�z�]�@�6��0�p �@`M������T��(q��7��  �8�z���'�� @<�wa����+^H/��6�T�K0�@ b@ ��� X�k0A�i�����}�B�Z�  Dм���n` �8�Ȁ�t���q �`��h\2��� @����d�0D�i.` �K@@�@��U`t>���[g >P�@%c�y��=��@h�d� ��5P��No5�S���R�OI?@  ���c�g�x}��0C�@�;߅ ��>է �A��@ <�|w(x@��b�;|���i@<��4� �x�d�0�P� 8'����q h�1�S����KP ����d�0�?u vT��튍��vQj��P�8� �?@��: �'��}�A�@���� �� T�5P�@�!n� 0�hA�A�$$���� 8�f;���>��@�؁W@bG�h��T6 BkH� j�BPhBxР� aҀ� b 6�!4���� @�? D�� B� !�A� @AD��ƀ ��؁4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0�@^�i���*��k�ā�C܀�~� 0�x��Ƅ)B6���!��U���g=|F����(�+!( $� P�(��F� ��`�؁4�,8�Yc�cB���h�17~� 0@@h�� �;�k��a��ԂLA���x�P((B\0�Aą�p �M&��"h -1���I�d ؂4p <.k���\` ���n` �8�Ȁ�t����xlF�P *@(�@ �^� ~0(l ؂`� ��0 ��4GP �@(��lN� :�  ��2�@6f� �R`Ҁ0������@ 0 ��8��*�����6p��{� �*����m��3���T���?�����El�"X�@0V� ZApx` ��6p��Щ��9���q� Ё:`�p� 8�w"̀x�� 8� �@�A�@V�R�\�� ��<�0�AC� � �EP ��� ���HPy`@�@�<��*H�� 7�8p@��6pVPw���̀�T�P�>���h �=���}��6��� 0�� (0`�"���T� ʀ8h�=����p���6p�h�=����m�́8`�@��� 8� ph`�A@ �8h@ ��Qp̀x�a` p �h �=���}��?�@0z`P>@������dp؀"6@,@�A0g �<��Hm���7���r��0��u��<�@0z`P>@���~� �<`���|� �?��p �A��� @��3p�@z2� �4�P�@��A#p�D�2`��?x` � 4p3��po ��8 �@8s �:P���m��3���T���?����f@�*��@�������:8�@�c@"�M�@����t���;�@� ph`�A@ �8h�g8�e���`E�ʀh�k�?�0T�r��0��u�h=��h��� 8`@p3f�D�� ��!8��x�C� ��!f�8@`�`���` �h��`*bP ��h��3�O%pp�('�*�X$���<� U�w աj����=|���ZCT8 Q)%Ȁ���rQ1���(��U (�T z���5��.���@68�dv4�ف<��-����[ �lAS��*`��Pt@��� +h���H0Y���@�BYfA�\�@J� �v���4* ���.�o�_�਀�{�.�]~�/���%��Q��/�@ ��!d �.B� �� S�~R�������9��Y��\��h�h�4 !.�� @�B(}f-���zÔ�b4����\ͣj�u�$��`�L+1 s�$��Zd\��16�G�5;�|Tx�F��G�1%ڏG�)L��p��((�@ ��M��)��AOz R̈́�"���p��1H� ƥ(Ld�P�e�֌ħ o�H��O �n6 c��a���[k?�`؀�e`$>Ͱ���H|��� � �X��� �|� pçi?������ ��X�7�O!��A� �R��e���;��`����J@����`>�a#@�`���� x�i���4|����a#@p����bL�a�.�"X�pؼ G�X�#3a&�7� J��,M@ $h:�@�7� #�6!��F�rMu&�@���>�DyD*��m3��0S�9@� �)�T�� �ìA�>�;�)Y�Re K5� H�� 8�v̀�����K�H� PJD430��2?� (F�F�"� �@HE��� 0$��4� p �#��D�?qH$9�>��v$9��>�w�@ � HZAx` d*~��}�q@��6p�@0t��@`��d�Q0 ��( $�`�� f��1  P�`0��pL�y���C� A�U�+�%��O@ԱP4���>�M$� @�1$� &;�`�)n&\��f@~� 8��q�pR� �T|���׀�i@@�^½�8��s ���L>V�&��y�����&�^�c�o��D;2���!{��M>�P!��D��gu�%�NO໪�]�hp��H��|-��K+��M/�-�@S�zp` �cd�6���� 䁢U|�<��%�N*(#�8�J`J*� +�],�O�t���@Y�0 ��>y�/Bw��QF���D�8�2`^D)�f%7X��0��؃��R�P��E�h-8���m 0�w� �O2x'�$�� �.���b��PZ�;Hh�� a`�A2���0��2��k�h��^CV�BUh3>����ZFF ���.-�@'&�'��Ƥ¶Rl��;H�D�80@�K L� ̀pf����$��Ya 8�.x��#�^0%�| �Pd 4 �ZAT� ������ �;���3H ��Bh@T�� .MPT�i�pB@��# \X���)<ŧ`��"Ć92G.�����St�����  ��pa,��"0���)������SP�9�)>�E���"x O�%<ŧ�#s���O�):BG��� �@X�= ,3����f��Q��� p@�>������} @��4B�Q���o@��h J��{�� 0K"&�Dõ%����)0�h�(�g ���C�����?�ش�)p����c4b ��60J�a5S�ш)P��9� ������sC ���&7��A�IU���@� �J��� �A`IJ��b�M��GF�;���vnv� h''`'�|�N@)U ���W g��x�PE��"HpՐ�!�N@!@5������9�l��I�j�9����}�n& S�*'��0��K`>�'���q` `��"0� C� '�x�`�h'��p���P���R��y�D�p0�b�|�Wc�WF� ����Z�>@"j��8���~ @-� VN8� p+(m��S�>�>��@#�4i�>EA(n���%�i� +X�VPp�I�mm.���N� &��O�i ��`�� ��S%=�ǧ)�Bz�VP�ǧ)����w�F>M��4�Ӽ�O�>ͧ)5E|��i>M ���&����VCp1���WS�.1)6O�>� *��� O�>E �c����m�{' k�?zp�b:YC,&?zJ� 8��EP"�g@&+�R��I�� x5����1�pH>� �{�)2�1�@r��!  #!1���&�X!9|�*�B��cH�$P|H�`��� ���V� �P! �ō����Q}��a�5��D�SJB`�5pnFXJ@I�E�$FX�F`�5���"J�5� fFXJ@I����ր�� �ֶb�5��=�J@I�?�76����~�O(%�R����: ��$ ���Eil�$�hP�ߥ�`9ԍ��  }�O$��1�*Xu� ��R�X����U�l�Ūh J��5n ���,O�H <p3���X�0 ��(���X���� ��$8@�k� Ί� � `@It ư\@`@It �\� h��ư8�( sa$(�N�€�! ����|Ah~�Y(��0�� ��Y(���n² O!.@h@h@����E�` 6�, ��s@�*@YA ��0$�-�Y$ϰnB���&4��� ����) /  B���\�(p�`I@5 �$�` ��K` pC(0�˂<���th�� }�����S Yz:�!�FB��NH�i�$0��  �O�Ylh-xB �b0��t*(;�����,��F� �"Z���'#!KO�4��-�Ox �!,/  B� �?@2@�T�� n�Ѐ \�M� �x�B��pl X$�)�f�|n �i`#܄$�|�@`�B�܄J� `��&��7�@�o� ȁ9@n`��&$ �|�����%���/J�)d�%d�B�%l��:%��I Ql �)����Q�N!�5(%2[")�N (d��_��S�G!S�#��hPH�)�A����/6����5`�pK���86%��[�i0� �(�؀�1�P�)'�� �TE�� 4Uq�.���AUl�M����?UA�䃐�i��?Uax�U�)��e7�"��˴t����$l��)V�z`#`St �0vB���B��������>h�bSt�1@ЅHd]��@؀pk� D_-H�B0��4G�G{`�,���Dh i�Aѵ4;���>����Qbv�(� da'�D0 u n�- ����c؀�Pom@٨9#`7 �(�$�� Q�cd��0�FV WD��U$�n Q�c �2@����W���1Z��W#+��F@K � \��@$�CV�#@M �&�O--a����0@H�� .z�w�b'�`؂ �l��� &T��� b�@'�$` � ��X��A <@.����R@ <��" �b��u4GLh��@����"���lkH�܁$�����[0�$�l��m�Bh����0PT�q<.`�&nJ�j�6��<�Q� T������m�jⶣ�&nG5.(���8���kT�ո@5q08�qT��f*P@paظ�1*P�@�VIp���z��p�n��8����D��!/�R�^�a��CV�< G( <�� �y���m�� ����FF6H� a�p�ny� ����$��Cd�6�URc�di��� �I�H�A���$HA�P��p��'�)�M������ ��'൥��� �������k�P%����zR ����W0X 1R���!����V�k4#��9�79�,@$K�,�D��S�Y�+K���A��a�J�[ T%�DK�U" ��P%��ȉd�B �( !02�1FR ��P��S�[�$7H d#+�;/��@9� F���q l�� 1#VZ�a4F@�M@є�V!@��+P|[�c�B�'��@�@��*�m��� �"�*2ŷ8���Jd�LӠ�%�P��B�� *2/���X!�#�|�ؑCd�Hdz@��2p����r9���ž����)�� ��:YK' P�&�"�H� (��*Hxc� Ď$�}bGa�0 �T��@�?����2a�άZ:�j�*�k'>@���&;�w��H>xw���g� ��#�V͞�:{l��KgVժa#,3�=�!�Ξ�clU��U��`9Ff��H�U��t��0lU�Ç��̅�`��\�����u�������|&�FX\���L����*��*Bh8ƀ�����ls�p �` 6�T��� n o�5P�pyCo�2��@�d���  B�w���|A�I!\�6s}A!�d�<�>� �/P `!���:�/� �� �/�@ 샄�- �0;a����A10Q�� aҀ� b 6�!4���� @�? D�� B� !�A� @AD��l `)�o�NDCƀ�?����A��F��������O;Ck �a�Q���B� ! ,B"x� e� �;�h��k���6`���n` �8�Ȁ�t�؁5P��y@ �)��@�k��2���R`��>��l� 3� e� �2���?Z�f4GP �#� a�@�Up3��`� g�B�tHjx��@�` 8�z�]�@�9U�8�S� h*�� T��]�@��� �7@�` � 0�BA(�d�#|6^ Ax/��� -�@x/����'��K�l��P�@I� �?BA(��` �*;���xHk��7���X �2 �P�`3 ��:�A��@W�π��!��3��V���YA�|��~@�2�@�G�HX�Kq B��� �@��Kq)�� e� �;�̀8k���6`΀xp� ����s��;� � x H= ��|` �;@�@�z@ �>��` ��@��@ 0�@ 2P��y"���3p�@�x��"`��<�1@ʀ�v �5�#�@`f ����pk�ā7@���u���p��R@H�=��X��<����{��?@�x�3� �� �3�A!P�� �D��"P��4G�ƀ ��؁4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0��H÷a�5P��to��5P�� r`�?@  �PdP�`3\ f�:I(! �π.��'�� >�A(��$, �|��� 8���� ��g:�!4�@ ��!7I����*�L@q %�|� ��%CD�8$�d~���%8g�Ya;d��h7ZBV�Ya;� �13��v�Z�cje��0�Z�Z-�i>�I2��v� ۡO~N.�9��v��$�s��>�4K��$��d�8D�E0� @ @��0���4 � ��]��ʖ�8� �ϯ�U���*��l9��' J��P� O�-�8���U����A�RF��r԰�*~ث�� @uWI I�')��.��@4+�8Ҳ�M�g�� X 4�t�0$<� X S�� �)bV�������Il�j�=��MN�0� X �Sx��@4 �4�V�ܞ�46B��6�a�� �e9�E� d�N�):��6���n�m��:���t����@E�"Q ���`���9L'Π���@B� pi"bp N���� � �#�v�n) ��uK@ �$4��c|�W�1���|մ�j~��Vm�������j�b@ $��"P��� � �;�`� P�L@[%$�d�ll�YǠ� u��O���V��d36(H\F�Q$#b�>�*��Z� #�(@�*�;\���ux�`3���|6�fl�%�lѰ�KS��NH!� �@l �#@5�.@z v�Ѐ�CE`X�4� ���D��]$a�h=Bdz �94@=��� �^�P/ ��i�4 � �V�B�0`�A�d �����% �̳�>�p4-`� ��3$��4�a� ��sr �%�f8\�A3��Ÿ?6�H p$Eg��]�pv�`$3t��x0>� ]23�_�Н�%F�NX2��8��ƞ�3T hSU� �����'��� ��*P��;�8�O �T���'�@h�c���0��(�� �8��@�o� ȁ9@�` ���2��@��3��Ͱ:�A���3�ǀ}v�q�8��Zh ����R� ��ݸ�S�\�q�+�beҀxi` ���pk�ā7@��� � D_��A��`'0?@ ��+�S @V Vd���D`� V��H�)2��Hhc���\��k��7Py�@��� �7��` � ���Z�������|��Hhc|�=� � �g����7�@0d� � ���`G"�,��S�A8|��(� � Xᒐ�$��6M��ic�Fͨ6���(�D'�'�����xX�P<,�|Z�>- x�����O�nP�G��H`7dy �@]�k4�6(��V�h�mP���H۠�����A +cE#m��#��F�%�G��� ! ��c6�@�d�0�l@@Y�P ��'��O0Q���c���/����Rp ،/`4��0�cP |���` ,����Xa0�5P��>X>{� T�5P�@�!n� �2��@�G"�,��S�1�3�� D_-H�B0��$�(���&1a,������,-1<���E�`�!��1,%e$��1@��H.������� .X� ����P�X��7� B�w��2�!H~���� ���5�-4;��`d�2�*�L@�!3ԙ���k���u��D� B���3�(� <�l� �����㰏A( !�a��Zh �` �;�b�Bk��,�� ���n` �8�Ȁ�t����` �ĎV B�5��� 0�v�!�@� (��PH��F��d�� �5Z � �?�FЫ��i������|�؁>` �?�FЫ��i����jD��(�,��`0F�� ����"��@M�� z�* ꑥ `ET0�M��)`p�H��F��[�8ă�>�[  ����q���������'$�x@��$�$iG� �I�vd���δ��b �A�H���5�"��'��&x � p�|�� ���y~���<��p ��N8�� V ��� ��m���;I�5*��@6 �kd�ʚP� �}@C�a�0p�&T�*��|�- h��a:p"N��:���n�N08'������ 7�'�ӁqbOlA�� DhL� �� H��oa��$k�-��v0FB`Y�D�̍12F�H �!�,�i%)\@() 9C�Ё�(@��p�T;���;`~� 0@�;�d�T2p�A � ��O2p�A ��ƒ�;�*pE� �wPȀ;��d��� @��H_�BN;�L&��,k����J!'�xp� ����s���/C!'�P� lh�6�OA!ꄍ�C�i�H�` ��NgҀxi` ���pk�ā7@���~� 0@�05d��hM�&��Ԑ (+ee��/8 � D_��@H�` $�6BH)I '�2���:�<�S� 8�)� Hd h;�4)�}BC�2��-8|&��<�@� ( Qv)�;ACBP�@(c�m؁4g��hp ��0�5P��y;a'<h� �` � 0,�v��������P` ���a���P�v)b`P� �l�O�s� ���� F��S ٌ�0�B@��`N�P�LU(��*��`.��� ��T�d�_�� <`T� � ��D���T�d`x@Ղ5 ��� �rA.�Wg����%���yU����8@�B����'e@�e5 ��8#��>��EgH����E�.:��]t�$������� �O<��x�5]��t� B�X��� ƀ��i@<��4� �xpo��5P�� r`�?@� �np �G5 ;�8G���rd8ϑ1+5�BA(PN��4�H�6�;���P ƀ ��؁4`L�)(k��3�@)p�� ��� �*�v` �;@�@�z@ �>���(w� ��< ��|��D�h!(jx��@�@��U0̀@���SP ̀X� �3����n` �8�Ȁ�t�؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V��v x!�>�Y� (�j� �A�d�02�#O�S� ���x�W!�� ) ��` � ���x*��"=��4�E�d�G4��S�����H/P��2�ݙ pg6� 8 �C&<2��,�����T�@�<��� ��T6+gU���B�3؆\qd�_� �fkx�t�}<� (�V����R�}@���T��06�ʼ3Z���2��H���l�0}F ���lL@T7���$�`�7�|�q�P�-($���� � h21� #Px��6���� � �2� \���4X^g��g�3F��/��0� #�"(h|d_4�@A �Ȉ0���CA6�(!@A�@����l>@�AA�� ��l��O`�'�E0lA@�@([�<��(���Z�ښQ3��?#>�/���F|_T`�'�E1F|_t >�1���A <�̀e 8��,&�*苪 '����iTA_T� '���� r����" �x��Pl)P��x@aH)(������O��?�b�f� �`@�s;����ƲX�!�9 OW<xG�@J�Ö<F�N�$�SL�#�)7�}cx���N7�}cD�t�0d��=�����N<��J ��!�ZT�A������B���x:(� � Y��M3�����t�!+��!A< X�!D+���*�f�x���h` ���W��@�F#v�@$�� �[�c��5;E,����V�6(� =�#�����@�I0�#���V�6(� ����0H$,���A �� ��5�z�,Bqx��"ԅ')��XZ����șp+�X8@��[���r&ފ�� ���K��� ��Q: �3�Vșp+���r�܊%�����(ː���@Gy X���Vp�p+���Oc p���Q�!O������ �����Vp.�nw`���Ό��9V�q�;�F�L ��4Ty@ֆe�S`k��<,C9� oEC��0.�,�ON`>ܢY���|.��f '@��Q� k``��3(l�� dg`���pv¤�;�#���:B�� �g'0��� '}�`�@���"'t����E�(� <�"����D Z��"��G�@��,�"avv� K``��8M�X�B���SP�)P�d lTpzBO��d�ܟp�Cyx��N��0t>T�g.l�w�|�� Q�w�̅d0H�B2x�p� ���B��=��d.؁w�?��!H��΅C� �0��  `0.@2x�=z\�Pl?X��!���p��)!�B�����E ���60����%��~`�հ P�6��fV�mX5��!�w`lC���"؆UF��6���ѐ G�� ��!��h?�#!'��`V � �@��B����6؆Uc�h��4*@zC#@[a �Fl @#����$@h3a��*RvC0� �fA�u��bX���� ����6�3,��T�BiXW�<@���RM��̄��^��� �fA��*1�H��)��p�F(E#��� |�Fl���"�F�y3�$��C3(8M.�pr���O !`����LP*¼x�y�L��~F���<4C�~f'hN�PvB ��c ���)��>XE��}���(:Eg �V�@�YE��,��St������%�RP�a0��0�%�RP �1�c ��r�G����xh��3������Ӄ���$��7TE���A9x[�Оr�kq� �� � ߡ�"V<� +Z�r�3B���B0�p��V,�@ �&N�x��G�:���vE���X �b�U��S�{4 ɡ�0��P ��7�G[��cȤx` �6�I��r��0��u�3���� �$�� <�'�f�D 0(�p�<�ph�0@ �E���@D�Lz:�g0 �!L`tB��T��`��@h@'���$Q�ր�dˠ 7p�*�r��0��u�3��p���!��(�I�&I C̀p�,@�-7X�` ,6���"Hp�`( �A+(�B�Z�l�]-Y��w������� 8;� �<�H��!m��S;f�@�p� �9��v��l@H ��d�p�@Hi��\p0�����|�&�$�H`�(�&0 �����'�� ���@W+d���8YA+l�p@�� @,��@ʂ0 �f�7���k�(D��W�`,�Y� � �y�� F�� q���0u<�\hS����'Z��oִ���0,«Я��a��y��鋞GNd9�_�G�p`� �) 2��� 8Ph��䄂� ��`>9A�`�� � s�Y0��`l��9a 0�6p܀�`>9������� p �8p�@0t���"G��<�@�R��@����� dLN�*��2S��p�)�b��VhS`+���08͵,4I�%�ؤ�F ��z�a��2�VP z k(�{�8�Vh*&N����.�(=�S�O�ir���� �=�I�@I�Q��W�J&�[A�03'����  6�;�4\Mp3a���O�J�'�nF�P�\MlPH��X� `J�'@�&60 `�p5���؀4\ �,6��Z pR��P�%�x������]H�՘�J�)���(ܠ��0�Bu���G��B!�(��� M�h��p5Y� ��وր�Q! �F8�h`�3@�f�83�BA�f P�̀�0� ���0�Aj` �� �Ag� �!L`��h� �!ȁ��}tB0H @|���j�f� �@�@��6�� �� ��2�� ��t�h@5�j�ms 8K� �|m���~�6����m��3��f�8��@̀�@�����6@S,�)�B&�o&� N�@��B@��!8�6�C�h��a�M���:p�ap�@?�àa` �@?X ]�%P�Pi��!&` (�U�i�\gr6M+HC��*\0��U0™\�M�Ґ)� W�ëpL���a @������&�����MVnխ6�L<~�[MVn�@�%㌓�[��K�'k�dPǙ�«0��gM / A�Px�B���0�M���<�g xL :�Px��t�!ॡ|0=k(LC�0���Rs�p� 8��g��X?ɀL�Ls�P�A,π :�!8��3,А��� ���pZF+� ��,$Xj.@Oh��3,��Ι��@4��?�l� �`�4���2��> �3|�e��0�A'� ��N�r@�,�#��7(n&\��f@�ct$� @ՙ#���8j�mJ@]`4p�.�Gc <� %�.䆺����$A�.ԅ��h�G`5d�.胺�h$@](�F:��92:N�t� ���܅S���s�6��.���Pr����\�Hp#�"A���py�� �[AA��p����� �8���VXR�A�QR��P �h8���L8@!*�����!���"8�6p����p������� � x H= ��jx@ �@^� �D��"P�`�3@ A)�i� ��SP �@`f ��R��pk�ā7@���u���p��R@H�=��X��<����{��5�� �@ /@A"��@�S� ƀ�������Tx�( �8R� h*�� T��]�@��� �7@bO� <B �O� a�@�U��`d�<` ��Ԅ? D�H7� H�|�`��&؁����� ! 0ɓc�L��36�؁�,��M@7\)���B² O!.@h@h@����E�` 6�, ��s@�*@YA ����#ѣ@l����AX �$�ov�Q>bl=�#�@�H�a#܄$-��Mh��3-��S@�,Ąv���ň �(�v@p��X �f%��0rB�{�A? �����F�`� ���l�H� �������%�0E0@ p�=Ƅ�0F�9k�%�0r,��#����3]@�h #��0rFK9#g�0��0rF� �/#�a���� F��i /��FNK�������Z� �/.@Q����j@�r`�� 06)�3Ua#��%3���P=e�脫 ��������1Y��u:0�L3F~Cq� ��7�f�iB�*)�A��ߠJT�*Q%%`����@t6) 4�$��`d�< $QsH"4It @(��|�6� �x*�l<��P1�&��1(ՠ8�A!��  ��!H� ���F��$�^t�4�mBa������Jwq�ǩx�5P�@�!n� �?@  �@�P *�߅ �H^�xq�4�^� ~0(l��t�`0|�0Ā?BA(���R�vBݠd�%P��;� (��@�꺠�CX�Uׅ� ��(�>@G+XR���$�@�H2E�H�JM�/�F��5��d���U�EX$d�u��n�?@P ğ5� N�3� ��C���@` ����5P�� un� �7� @xd@�:��`d�<���.A(�Z`�K@*2�d�G�K{4/0:d� D2��LP��� Td �@����2&h^@��3���f���!ƀ�Jv �+?� ���� �8��@�o� ȁ9@��A� � D_-H�B0���q� vB%����Ȉ�st� 0]�@\%5�dBW�!�q�+�3�D��B��`c`��?@  ܙ�9�O�4���D�A�� �`3�B�:C2� ! `��`J�*0%`e���0j*@�1����%�:C2� �A蔙�� @Ch��Fp�� ��B�}���6CgH! �_�p�/�p��� �O2�>c� �DP �@0����5P؀f��T��@Hn�;� � x H= ��|` �;@�@�z@ �>��"�4�5�� @�� E� L�*|- t9���(l`��57Py�@��� �7��` � 0� �#i���z�F��#�<���(� @0Q�45����q8����3$�D��r��ˍ�.(���r���=ҝ��"(!70�4�$� ��G����x3��C� $� |�����71�>0ob>��Ǜ����7}��&� �+��J�`^� ��r��(WV'&��F�gh%�3x�P��gh%�3p|�A"��$�$�X@J� �{ �rƷ�<��[��3�5θ��B @o�6�ҷ�P�[� ��������m��%`�qF�X^>�\�3zQ/�i,g,-�x�`qZ@ �:z��P��^kz �����>��� �Ą��Ob�����f��t�''k�Pd�S(��;�'���Q����[:��bs��>�kK'xf��� �O����ER��O��Ae� ����O8��' �$x.���M��� �%@}�l<�I�\:�s��נ%@�.`ԙ Pgl�Yu�����fVAp��A�D��|�J!�+m����W(�M!�5��bx����3��@Rg$���#z����R��m�#{AK܆��HGXا90R0�!�p��X��)��#$�dX�) }����@�� $�����@�HA;�Q +���@�J���Ё@R�@;� � �ąc��C }�'�8҇}ځ/�� T�cH|�#��� ���؇�a�@r��!}ا\8�B.H!Q �� RH!���P�-��s���-� +�l�!(�a=,�PQpC"X 7�ܰ��E� ��P���<�l� Q@6���dI� $��U�JT�H�?��$܅t�$ n]%� C�[@W]�� C�[@W�@���p@�' ��� hb` t H�8Ā�.=`�@ǀ� �Cz�.�1$a���� | I�8,B �:� .<��Q,�PW�.D�W���PWp� | I�8,B� � ,�0u�\x���,I�8�����"4�/`6�� tvp�������^�m� ���ΎW�0@��@<G" Rr�����3;v�(�&E���O��.9}�56�A1?�D��W0pn� 0YW�a��W�O,�p��U ��b���� \"EĚ��0@~�b ,&��^�`��UaPS��`R, `\������Ȁ�� tX�Cԟ ��?}� 8��p��&�0^�)X�,`Y��E� c X�%`,k2�3��˚ ,�Lp� �  ��� 㙇ua' 2�� X�5(�y.T�N��K��,BkP:�0\������k�.�A�@F]d*`'��,BkP:�0\����>�j �hW �]1�-��@�bw�]���� c��5�� �����R�W=��?&�k~�hWK�]����kt���j���˜�|�nb*�]-�wU��ML�א�c��@��S��]���|�nb_J��v��(�+u�� h���hWK�]���k���|��7� .Mp3 �� pW.��8�#�pE�)��#� �B X!/�ܐ<� ��#��P"N^8���Y����@�$�X�������X8`1�_V� #�= ga1��B���389�>�glU�UVLZD@y5��dN��!�Ćb�j�� �!70�XA�+D8x�ذNJ�@ yf��)@B(���#���4B � L1��'4��9����Cc`N�a%G����sh ��$�Ķ���I: Z`l����� slKl�=P�<�Ca[l�`6&���6j�����m 0�eaΑ��0�H�#�J��69��]�QcT��� ��1ȃ?a���9���ӰF{��S�*��p!o"��V�+��r��B9�=�`�� ΁��C+\E�x�AV���@+f�Å` 8��խX� �L��! �ƒ+�u|-��^�+� ���(��DrJ� �a�� $q`� P��0�: �l�JQ�Ip�'(� �0��Q��`���9�F���0O�Q��J� �=*�� ��> �A4�Ѹ�m�{J��=�Ѹ�p"`�D%���hTBI@4��p��Z�8�ˑ �� �p�#v���!qM+P���w�0$�p�8 �� �@����M�� q��Q �,8|2A֐8��|� q���5*A�ԫ�c��� �8;'���&`���-%�^I��h$��G��+��'$�� ���C��P�\P9B. �0d�Q�-��p ހx�Q�-… �bh ����`�@�m� � M�(*`P�� ���fVUS2��)��:@� � ��%؁C@�;� ��=���2��)��x���P9ށ����V� U2��)�f0�� p0 �X".@�c�T� B` �� P���3w�����GcC `5g!:P��qg"� �#yA������� \CF�?���I�3���.Q{�C 0�$:P��qg"� �$/p�?�%�h����D�;�X�Y@4w1�L�G��y���d0D�OL\  ����Y?11E(�|0DR��K@ �9�X`��:g3r�I�`���1DRpK �`��� �7��C���!Y>���dYC�:�E1<n�ML�C� ��a���,���1�R�1$�bPZ��e ��(41]��&��t`%q4,�0Jb���%�$*��B@I,�[d���[S@(�[� �S�NXh��S��@� �8� �@8���;����f@�*��@�����̀�T�P�>��P`��C���`E�X*h���|� �(� ��^���C,�~����0,���=��"8"��gn�������3fB��W�"L���խxd`&3C,µ|sa&33,µ|�h&3�,µ|5d� �j� ��^����U� ��9�AV� [�+�`� c�,��� ̂���̝��w/ � ��p0F�P�ba0 }�0�nx�`,����;� ��` ��0�A�x�b0< ���A�x�b0< N LJ�! n$c����N�e����RQ�� 8�q��|%�CBK�8�%�����!!dq X8�|pJ������ ���� �� ,� d�w�B ��w( ��p���*��p@I�?8� ��#��rՎ�17d�Cl���;� �V��!Ȓ� ��T� X+��@P��i a ,�)��A�� �l�UX`�B ,<�>�e@S` $��hB�k ��,OQ}�/�8@hˠ}��=�!L�C�"�8 @0 p��`��Y���,B�� D��y �( @t�l�,�B @� �l�,��� T [8K�@J�� ��Y�d�P�e� �4���@l ����� @i�9���q� Ё:`�h �=���}��?�@0z`P>@����� 8� ph`�A@ �8h`,�n� ��#p��CpAH��:�El�"X�@0� 0�@h��@�H \���,���PZBKX( �MCp�&��0��(�J �0����BpJ�Z(0F,�P`�Є1 �%,�¯��;x0&k�~u`� h e����03hƧX(`�Ec8�Є1 ���"�����(������ ��aQp�f�;�@eV�~�aT&e*��2�� Tf��WFe (�i� (��#xC�� :�4��Q�„�čaïR��v��]�ø1l�}[,x�� 6��~��l�#�o� :2�)@���3` NA)X� ��@`J�@n` �T�PA�k��2���R`��>��@�d�)����}@ /@A!P�� �D��"P����1@궀( "v ��1��(�k� �8��@�o� ȁ9@�` �mQF@P�`3D���5��H?�g3t��c��/H?��3�(�}>�� ����.@��>�� �� �~�O f� �R`Ҁ0������@ 0�� �7� @*p��؁5P��y@ �)��@�k��2���R`��>������D�h"H~(U` V�5I & �\H�װ�~X ��5I & @@(��d��� �lW����)�_G@��C���3*��:I��V�.�(h�BD�0DA;���v���0DA;H�۠�~%5р ��N۠w����!��`4 5р��r�c����>���p�S�$��S���!c��V� ���� �8��@�o� ȁ9@�` ��<` ����`��'cp��0Q��$�B�m����c� �/Pa!���:�/� �~ �/�@ 샄0�@0����aj�(l� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|���?�0�� A0�@0d�08����h���G@��3���f���&�A� ��� � �"�4$?��0��;�̀)8�` 6`�(n��5PR�@u���p��R@H�=��X��<����{��5�� �@ /@A"��@�S� @��#>!���� ��1P�P��p T��9�@!�B�|�Y0�wN}�d�lH@ ����@ Ag � �A�`��A���3��PB�>�3��� @e}4��U0!��0�8����N�`�� ��1� :����P@B ?�G�"'�~�)�E�N�_x�~����0�ђ��/0B����ޒ�/0B��%��*��/0B���&t�&Kh�% �q0Y��)�F��b6�!�)@(P��Sh���)B�[P4�"(����A���@� ����"'�~�) ����-p �b�`) Z�m�>����sa.P�����P=�̅�@ �b@M3��?���_m����q��a����H�6�|��4�mpH�q�#��\�q8����x���q�#�����\�q8����x�~��q�#e��� ���&��fA�l �^@ \�(� ��� O!.�@���1����c( k��fA�*�(l�Y67���(q� �90�B� ̂�5����O\0�"Z<��}ƀ��d�02�*�L@H"`!���+�������h� �����(P��!  �� 2���Q����v�N�r;�'x��PrʩA��`'x��SN�"�c�� I�� S��0[�H�(l��H7Py��wY T2���<�3dh� 4x<�&��g V�  ��� �-  �PBP�@(j ܄1@ʀHv �5��@`m� �7���X �2 ��d�0�?�0�� A0�@0����K@*O4����D P ��1��?�2Py�a4$��5� �"`��<�1@ʀ8v �5p�@`m� �7���X �2 ��v` �;@�@�z@ �>���(w� ��< ��|��2����� ��@`� d� �BP��!8g��D`��� �D�#h����} d��X�@�0W@sp�(l`7�7��(� ����7�` ` �2@shN#p�@�x��vVA�  � \@ M��m�A!(��$5�F� �#v��WP �` ����` k4�|A��Xځ4�P��xk���ci,���n` �8�Ȁ�t@�5P,�e0Q���hA�A@��A�Dc��0A4q����v5�� 0��'ЀARd�p���A�6Y*Kei,�10�(�?@08������@�^F���@@R@� �0�����\�'�@!D ��� 0�L���5�l �B X=@�����b�$X�E��(X &���efd��"�1B�����"�j7�E�(�"�=p������ H�EP z�`�"�¨v�`��� J@���� փ���R�})�`��`�6(� � 210l�N�$�AK�?6 �N�$`���3FB`H��d���}��� ��0��@v%�b'P-���� �D`w�}"��� ���`)���I �F+� R�"c�>� t�I(h +�)@���p)� )��[l. %��]���#�N� ΀�\��� �� h���- H)��@ P`p'E�[�j�H���>`|��@ (0�` �|�)���p�@�!��0B>�! �-�  k�)�$0�@�Zp ��������$�zFHY�bh��Q�\(l�%D�*/ [�-|&�� P� [��%D�*/ [�- ~f�L�+ /��-~f�� p��9l� �  !Cp@HI�$!��!!$�O�F����bt�s %����_x s��!��B#� OAx�= �B#� Oq��b �B#� O�lF��p�6��Ss�dMBHpN�$x����� %�x 0 ��\byx��Ϳ `t�}p+<�(`�B`���)<��� ��_x I�<�� �B�� GAp@�*a�PP��!t0�� �@��J�A� 8`�<�ec@ r`�� V�g0 ��3��C��0HK ,M� @CO� A���pZB8-�� �h�$�G'P)3��>�A�$�)�}@�&)!�| J�)B��Y6O �?a����$%`���F���+�_װ �0[A; � ��.H"(�� ��;t���#��na�� ���h��!&��Cx��ޡ�x����ޡ�@l���a��@l3���S�^��y��R�ܘ��z�g(�ܸHhx` ����� p �8���f��;̀p�@&�3py8'pf�D�$`�@4��� �) ��0 !���P�f�8���z�hO�8�C� �����f�b�@�Z����A����bC � O`+l� �"�ϡx�����B �B8<pDh EZ��``���X�@'�Ğ��5O�<�J�3�kO� t�'�J{[� P�'P��O�\��DŢ�"�����h�:@�ߑ�A��p�؀r�~��x��;���p�}��s�;���p���DP��3� 0�B�? h���� ��<��� �a ��@�@�p� �9��v��PAO���'1��Y(+`�B����H� `8�^#@�.���B8�4X!t'h�p&���G�p�i�}4B^w'8ܝ�#F�V� &A�UV�r��X����f�r��A4+&�a����R��� w'����}�+�>%�Y��fqM^��͢Y�� `�B^w'8ܝ��,N@ h/��D�fq�x/�6�fq.����Y��fqJ@�x��Y�Fc�em�f\;�8���`0��,^�i0����.�x ��q��2`E�� �a ��@�@�p� �9��v��̀�B ��˳��20�g=��epx���<�a= 3py��z�g �M� ��� k,��R���hS�!�@/$�K@J�%� I����8�%�z!���c0�%P�km G�6��2�še(� � �EH� �(��yV��{3m2£�/��F` c�Q�Em �0��^�p$ ��s�O�� ��T���>�'%�"8� `�K(`�"8`�Kp %��ܟt�^�>0����p���%���^�Yp ������a��cx Ɂ/����j��>p CҬ���p�Ip ��1���0�c�?$�1�}�^�>p &��Ȇ���I.�A��O�Z�iX�,@Z?��X���� rI�'`�4,��`�`CK@@6t8C ��!��sL���40�c��i�����a0��xp0�4��0^���x+���o����8%�.��*�&�<� )@/T�7q @�I{�1�3�kWYn0#S� @���aXYn0# "bM�Q�©x�J��3"v܀�;n���2����v���$6)�L�X��*��� �� ���1��`F>�y ��8��"F���y9M�rЅP9*�K�(tA�4����B `,�%u��"�:@E$���Q{P�XCp�a�Q�D�y ����%�Wu9���4����3�xi�>Ê� +]N��I��:ԯғŰ�A�-Wzկ2B"f��񫸜5<���*#�TDF='@�\�K,n����6�� (�Г&��؈H~�~ҏx8F�� X%�7��E� @� ������ �X�7��VB��'@Z�� %V�1X�`�T��� 8���B��6ł������(ł@Ѥ~�������B+2Π�2m����r{���*� �9py��v��̀�� �a��F�OQ#��:�aЈ�E���2`Ƒ@�{q{���Ya�<� �A0� <��3 0 ��x�u ��!8�� hM� �(�@�4` �)�k ��Tp ��ph`��STh`�Up�@8y� �=@��~���6p��{� �*���`� �Cp؀"6@,@�+@�@|�v��'(�@?(� � �V�}�O��bs08`.(���X�b���^(�O���'`�FE,�p+��N����֡v��� L� ��H*�Pl�@0�PwT�>�m����� �'�����}p-?�`� �B\�� )v��(� �ފ`���>h�� �A/��g���3H ���bs0��b)��� >���6 ���>��( �AR��`�/��F� B#�`���;m �� �� >�b��@S3��g���|IQ>��( jB��B�)�!�8pЁ�q ���V(�A1,���c( $����� @P�ڞ`���x����Pc�@�1��7X �W@O ���X�C���$������ H@��4��`z�� �a+���`�� � �'@k{�� �� � z��D�H��PLº( a���` ���d��EPhX �a ��#��u�X '�<��$��uQ^�u�J�X�b]���xY�n(�``�l�F6�m���Q�F�%p@��6pЁ����F�(��`x3�6 �` o� �!��<H�S�6 ��@`�f�8@`���-�w@� ��A1�゜�?�,K~���d�g����Ȁ�hc �j~��H8?�3N���3%�"4���0.ȫ8�b���gcc�e��a4Ə��A � Τ1ʀ�xcc�hB��p�f��8s����؀ʆA!X��� �����8s�$�i���.B[�o��ʋ0��Jl�! �9,��N;s!a�� �}�8sX�"���V�>��c�| Jq>�@`4��>�$�SP���)J�E�g�"h���)�<�SP��p�F2�>����3�V��n�y�9��<@��6¤$?s�'�E*`h��B h�-v/���� � {�jB�cPN���X��N�p� 8 ~�O�r� ��'����Ls� 8 0` H���g�RY%��L�S���8 {a�L�"*�I�S�$�ؽ�mJ��� [aۘO� %��V�9+�jB �E��p3�a �������pQ. fh� ɠ�.�.��YK��.�(NG�X�R� 0=�A��\t �%0��X�` @ �0��.���LO `p����Z �(�hk ��� %�h<��` ̃%��# �` p�y`��X�,� ��� ������ :*� [�K��"X_"�����9�������Bd� � E�ϳ�ccK�Tt��� �V`K���0��@�l��)����7�s�c�:E�<�V� ��#�`�� ��m�pt.��q@�&� �l��0��f�p[a�L�)P�B� [a+d���R@n���x�a@Vn0����c��r Y"!7����p@�p ���p��yt2F��%�.��� ��ݹ;v`(��x 2F�Y��� �p�G� "�# ��8���40`yx��'��_p�D����'����p&���=�H$���;9cdI��IHV�(s��8��!�[�������m{ES;(&K�"�Y(���)P�&�?$A� �B^ t�`B}��B^ R�.􄅁 ׉���RJL�00!&Ąz��P&Ą����� U&�?$A�`B}�@0�����\�e�|@����\�e�|@( E�,�����"T��Y�~&���m%�b�Z�`������8�@L�q ĝND�� ����ܘ� ���!�����eVr+�R"��p���X �:Y"��p)�������*�0�l�zw P�(ۭ��Q�[���(F��V/�`m���E��flB��m.�߫�����%�����|vI A�f ��fl���%����߫��BX"Χ��Y�J�����a �%�|J�.��%����|v ��a�8��KJBi3������|X� p>�䨴۰KJ���z�!8�]RB»�%����|v���%���E��?�v�a�8��K�b A(p��8�]�m�BX"Χ���?�v@�g����n�D 9*m�6�>PB�N(!p���_��?�q>%d��QBvI ��p!8�]RB»�����|v \,!.��K���@K����]R \,!�g����|X� p>�䨰��KJ@����.:�2 �p� 8� @Ԁp@� ` ��5H@��*�P&�p�̎W�$� -� �0 ����y(k� ���m�́8`�@��� 8nF��hZ6n���e���5�wً�Y8p*8�u��p�]8�h`�3@�f��@�����<�0���8P���@���8� ȃ���n�H���&`��}bӸ���&`K � ��� �u8ǧx7,�i�X�<��@�p� 8�px|B&0��3���8<>�@�c PF�h�p&B���!ȃ���@C� A�]U�J��y ��%��ڵJ��y /!i��U$���%�%���}����� �AEp ��@�@ 0�e�,�L8n_�A8�h`�3@�`��FBDfBp�&����d��8�l$!"D�"�` ��P0ʀ Z@2��̀pf�8� Z�3��<���/0�,�ݙ� ��(HO�@��c.'��E0 ��� 2�� �.�)(5�9���q� Ё:`�p��i�L`RV���' �����~�� C�>��i.��<|�\!E��e)��l��b�4�>�6�A��b�X�>e  ���ր�Cd��D8� �@8n��%�!�~�p�`�k�up�p�&$ $��/�:a ��Op7�A�8:��,Cp�!8K`! `�@CX�!|` ���� �B ��1` �`!(�R̀p�� 8̀p[� �,<��@hS�3LE`$X�� \�Ky/��<�W�]�� $@�0��򪹱}�H��#2DDd �6��塼jn�E�=}�� )� 3�@Ԃx�'T� ����K�8�%����� @�,�PN�P׆e=`�p�E�e� ̎%~f� ��"A[f<�-��� �2�@��+p��"p�k� ܆+x�;j�MH��$�%��L �e;�;��@z�BIpK�5��G�#������n�N���Kp�00���<�'�a dhY�e% $!J@G�@�@�A0hY܂.��` =��� 3�"��P�B�R�`X�`���d3��"� �� 8���5�|�3@�3��#�<5�&�p @j@ �BM�w���� ���w<�0�APk�?�0T�r��0��u�h=��h��� 8`@p3���C� �78�` @`�f�8�2���� �a �\��� p �8���f��;̀p�`�1 F6�l@��Q�r0���N� <�'�@�����(��(7����`h��Aw�d{Co� ��1�PF�� �PɒAw�d��Y!�CҬ�\�̅(n&��� �tY.n�\(��u!��˺e ��5� t�� �� 7�������6pЁ��� (��̀pf��a�;�� 2P7؀"P�@����X?X�t�A��H��� �2f����k@�O��O8n��$�5��m�́8`�@��� 8fb�p�̈́���P-��<�'x� `-���L`@`Z� x��"��(UV`�� (\h��\pm��PTp�X����i�� ��ūhl��1�48�������9���q� Ё:`�p� 8�` 0 ��G�̀� ���0��hh@����.�������C��1@Eh�Q���)��P�@8��9���q� Ё:`D��� ��F.�D�.̀x � (�Q���� ��]SPHX�<��6p��r��0��u�3��p� ��0��(^���5@��h�<��8 �@8s �:P� 0�8���v�#Y=^� � 8�h`�3@�f�8ʦ�2�HY)�W�0dR����' ���piHd��J$"Ɵ�9���wn�F�%�V� R�n�p �@܊[Q4�F �@#R�D�F�%�_� R���p �@� QdXZPfͅ�qf� ��fѬ���m�́8`�@��� 8�� ȂZpzfA-X���#�. ڬ m���6�����u�|� �P�ɋ� ��p��BL� � �u���BL� � �b���BL� �cp����4B^�$;�'��S���e ̄������^v��R/;J �r��t�?� ���K�G�%��~TT?C%ht�}>�(#$2��!j n8(����K��E�e2P �@���d�0�Wy��H&����r^����h"���;�j�D�Y䈀#$��(n�9-�����8)%��,� �<.@��[��.��M�(�b^؄`N?��W�]��E{4�Vp���'�$��p�in��cy\��pE��%�h^�� ��1��K΀/��ȧ)U���S�r��� ����)�W ���"����&rCmY� |Y��Pz§���!| �p��HC�HU�!�Æ�&&�����#� ��i�@OH��'Сlp�E��Ёp� � ���p�I��g�܀p��� ������p�I=��g�,܀���������Np�7�8@�=�$g���p@��8@b� *�e��7��2a�� �a ��@�@�p� �9��v��̀x �Q|�.@>�Q�U.�� F�(���D` >O@��p ��* ��NP=l@�E0 zB)� �4�)� ���  \>XB��� `��@�|>Q��$? c2�3�@F � F3Q�#([��Q�v @�|�/�E�� �BG�3�� �&������%:B�6�D-���@P�(���%:Z�'JJ��}�d�ځ'J�(k�]pb��� %���1Pi ͟��aT�1�0��R��S7���>�o ��@]ub�� P�3r@n��X d�,���l� p�s�� O��5�|���xV� �6�˖��l��^�|���<�� 9`y��xd��50ȃ``<�8�0r��9@��( �d0E���g�� �#! DA7���Q� �HJ�'���l,C� ����@PN�yw@ ��qPN�a� ���z��x0�@İ�r���e�4�g�l,��y6��<�P�;���T�5��O %=夞�a�`� D�2 eՀ��lqf�A�`���-3@�9 euV���l�HYi�j�( ��q D�(��@���D �!��`�)kz���d夞�q�@p0�6`���A9��y��� D 0,� ��?P@x6��<�g�q�ͳye���� @5X����R�PN�y�!H�PBDO ('�<�;�r���8('�����I=�� <�M b؀`9e� ��2���y6��<��l��( �|d`��H|�'����rR�� A 0�B"zB�5� ԏ?�y @P @%���� �a!R�B��U'%������v��a;������ (��h�}� �>Z��,�������a!���|`��f��� @������ ��8a�l f� �� ���,ȇ�� '(�gA$�����Hp% ��� �}���Q�@<(;:aP% 0t�N�ܙ ��V(w����pg!��#�ΐ� 0@ ����,B ��BV�$!�|`��:� )�������]8�P'|�� ���S�(���߽|�` ���f�����K��Y���w/�]mng�,�{���hs=kg����w�@�Ku���^>�볖GQ7V����{��n0�J� ����<���㠜�� @8?('�<�7�`6��a�唁7��@h���X�g�l<γy6� 4w�!���k ��@Jz�I=��0)� A�� d`�$5�w�K�Q7P*4��eـh ���7��`@��20�@�e��������8�� ~������M�������0�@�2� 7� \�px��d��5� @���E�����)�e�4�2�� � ;a'�!Bʀ��?�g'0 C�NA"�5��'� @�ARQ!�#$���؀h$�7��`@��20�@�e�4�2`y���e���`�R8R�4p��/p A 0�0"d2kbM����{2@�<��tV�E�ǚ؋��8��/�� �Akx p|Ϣ���Fp9�Km�u��sV�qhO���Ԁ�u n�"���h ����B���@ ���@���@&Ȅ%�8F>P��q����ĖP.�q�������D&p�|�%���.A&p�|�%���K�q����b��8��� x��ѐ���kR�-i4�o�Q���NJF�$����5�V� x/`Q�LJ!��� ���� !���M3)^1�1d�c@�@�p�bӔ ��O��.�S� S1 ���)��@� Z��!�%05���l&v�,�l�$Fe3�#d ���A�Ll�X��bP6[1���e���؊!̖@�y���؊��8��-���f� K�A,Y8�%�H@�Kìh�%�'��03Zb���av�H+�)�\,�q1�LY4�`��|� H��)�\,�q1�LY4~`��|���H��W����xÈp�} ��+{%�?!���=$������$^<`xe����B �x ���'���+{% e�a�5�r@� )� ��8�؀�p� �:P�B`� 0�?P@( ��m�� �!����n� �( �h�?P@8V�*`����0X!+h��`>B� i�2`�dj�/��@ ܏E�=1�W�*P�BP��U -�Tl��)@Ҳ i��~K��@ @��M�m��fӈ�~�oE p kn�(a0\)��6�ۡ�[��AXs���b��"\� ,��X��Fh#���@>�j�.�E�A\��p$`���m,���>��Elwp6���q$]� �"���p� 8��`&\D>�XP������"� Hn�u@,� �A�UZ��E(-�R.T�APZJKi�T�uH�X�J� ��PT�APZ���E@�� � C`��������������Tz0 �<�R� @p*�� X���]؀��� ��7PdFO� %@�B �AO� bDV`��(� 4�P��` (�@H�b:� �X�thKh>����*���'1�K����_�|𭷓�,9���|h����i ҥU�� �e���� D�o�����,Fn�M�� 1Q� �I'Z0��c! � |� w� ��&v ��/L���c�_Ħ5���$�_��1p@L�8 &�Ě�1�2L@>0�c ��1�/��5�&v @Ǧeb� �Mk � �ƀ�c�_���5� ��c�_@G�cRH�4�b ���?�� ��� �f�����Y�%�0��=a����rO؀�'l@�F?�tO؀Q�_$�( �q������;���0T�K(J��9 �Q��K� s��,��?�/�qZ4�a������Jl�a�����Tb& �@%6��BQ"l���D0؀�p s�( @��pE�`��h��`E�`� ,� @ $� ,@XP��)(����zr�� �1�U���zEh �'�rɓ+<���sQxԘ�*c�i��"���P�� </��G�PϣD<��>�� ϣDp�$�9���� J������VH0%B�q�̑l��zr��e!������Z'���g��0W �p@9��"T�gl-��I� �m�!,B�* ������� ��r�GR�Kx$���Gp68�`�A0�4P�p̵"�Z@7A0@l� 0׊P��:�� � h��@وZ����@@d� DB��`�[ J�DB��`�[�#2Ʒ�@B$ !4�H�/@I��(����3����7':J�ps�C�w :Dǡ At�!:Dǡ�#�#�i�@�M��Џ��H�Hx�1/��\{��p�&`PD?r lE�#�0PD�� lE���0PD�slE�:�1P� lE��0PrlE �1��hu�s��$<��� �s�僵�HKX{��L�����0�X�`��h`&$9r �H0�����**� ��I� PGp�$��f� UP�/��� W� `��`�!�5lBp�f�_��<@����L�E�a���A�BO��1��i!�X�! dB�٢�J0�-��,� �E� ��$�� `�g{f ܀��p��{f�$� @,HX( �,��� 8"�'`̟[�A�%�`��W1nI>��A$�[�in������f� ���� AX���,H0f�$(���X( �̊3�m@�0fG����>@d4�OQt� � ��x�����.0߅x$`��`6�� �|��"��W0��( ��B� va�� H �Bt�I! ���*�‰�| �48 ������.V@%2!ܷ�.�[�H�h)p�A±�(�$�E�`� ,�$�u�b bH�M]p��5�ET)���K@��o)���4��"&EJ#/@ �) ���PV�F�B�h DQ �E����WJB�B�$� �@*�� �8��|PJ�h �7����a��N�$�}����B�Clx>݆$�p�Bn� ) � ����Bn� ) .�$�r�� Bυ��~A/ Hz%�0����BJ�a� .�6�d��h���P�J�J���(H� y{���� \EEh��qP-��CI� <�/�����a$�WQZ>p%��4��x_�,�/vB�2��ZV��8� F�PI�ZV!P-��y� �:������ ���hU�qP-�Ԅ��:U�q����8�>�Z�`��� I���� �`C A���M�B� q��4 @� I���$�wP�B���X�3P@��l��ju�3�m�M��6�"�#"@Ih7$�S|�v��MG���$x fQ<ŷ+ �"D%�2"�+ ��ah�v3qH���%�j�O��&NG�!4 mC}H���%���O��&�z� C����[H���%�#�OJ�g�8�#JRy� ��$�A9n�H�Ad�n��@7�݀�TO�X(�`�K &��r������h�C����aP�3� ��Cd��(6�M�l`S��a �n�3uB� t��BC� !�@'��gtBb3.���Am�/@'�ڐ@# �8����`�i^��� � '��:�cP��0�?A��P� `,�!���O��� @����_���/�EF��r(�a+���ML V@9�����r� [Qo(G��7l�r� �<��h ��r� �(G�H��_d�0�\�L �N�H�" ���!� ���\�0 � �`� H���>Ƞ�`��q.B.�� ��`RH+��� ���u�20)$�<w�2�V�A��\��G�I0)$�PX�BL� ���ݤ@j:��&��� ��Hg���6d�z�~`@>���~�}H8� ��;���)@�� �6p�0oā7� ��e`Ё:`�0x� �=0���}��6`�@�z` �)���X�� ԀB`�@"�5 (�?��*8�� ��;�Z0O� ��V��@xl��8P��� 4�� �@p� 4� �@�� @��� bO %=�X�� ,�8R�0)�ր/H������������$� �@w@ ��8��@@l�������q� � �@�t���2�2� 2� 4 0hM�  a�@�U@�A:�5!Ёtl�8t ԁ5P��K8�  �$pp�/� I '$���t�*� G��D���M@t ��~P�d�0�˃L�W�C�#[�?p �C�~�ąD��(,�$�@����L�<` !��3pπ �l�P�T�5~ .��s0ЅhS`��a#���������GH�e$,��nX>10��RB(� ����/F��A'�V��N@�8%�Ԋ�qN@ @�PV{�A��8�CP3�����N�� �N@�h-����Z�NvC;�Z$�� ��oP W��p (t�jE݀c���1-�0F�cp�_�Ѧ:� �3��)�5Ё ��,(���Ё ����0@ H %(�����E�������Q��$0��s�>�9%� t���<�� �� ����?(�@���"J!�(��T8B� �����>C� !�τ�"B� !����g"�'�� `�!�� -�� �?(��ע�(��Pn��/�O�0�C@�|&l � ��a����ц��x=��` ��m@J#6 ��� gR��)%&�.~��)e x��2F��o�6�]��)�RB`J�����)�MR��&6 �Lo�R��7-ç��)���u�!���)�2�o���7���oh������z}C뭗�p���2FB��i��v��aH �!1�%��`c6�o� )e x��2�I��i#@�� ��2|��� S�]��)`7�H�#���ae���$����jc c������!�� �ћ��1�RB�Q"� �#D�(������ B�O �I l��$��$+���Z�V[�l�-�@�^��@Kh ��%l@�"[a��e�Ҷd��)(��X�Wg�3� �������^h|@�lY��e�3� ��D3�`�ʖm��/��c��b\� ��l�:� �<8ZBK�-a�ʖm��/��c����*[��8��A ��q/���e�3� ��h -��va$$���va$� �/ځz#�O�7a�ځz��\�%p��Ox��b$lab.��� �C�� ab.��$tb$lab.���'#ass!L�E?tb$lab.����#ass!L�� �C�� ab.�@�'#ass!L��8 �C�� ab.��H���\s$J�#�����2 ��{�}b� '�'6�8�%�� ����kq��,�� ��gK,@à��PJ8# h��)J�9�%t��rBN�}���D�#Jh @},T���A���$�&��I܃�>(и�c��jX�AA_}$���Ԅj`!?��(���X��:��$��Ɂj� �����T�jH �7���jH ! $��O5�B~�� ���$���BHI��SM����#4G@�0@� �� q���@�`h�=���T3@��lӧjq3�m� ��6����[��H����$v� @�! �bY��N��HB�� �� ��HB�`ن�H���[��H��M�p� ��6�',��3:�g�8�S0�l�[t�n K��#��N�H�g�8�#tp�\:h�&&��Ai0�,�f#��܃VAiF�X�>9D �pGH�!A��ƛ�-J�M�@�Xg�U$��Z��K�b .����"$��x�Ei�Ih�AK��V�:Hh�$�V�����0Z�v��l�� �r�����/Җ�f������EH�z�4�dm�-J�M���jI����$�*�6K�b n�$�*���[0���|P���*l��l6�~�V��d�h_�U��.` +E��bX܁�Jš) ��"�k�d���-��"A=cqFh�3��YU� a@mh�� BC >!��|�@>P� 4���rBh9�6���z��h�c���18ځۼ�wp �vx�෰�b�oa3�a=���a���H3p淰���ر`'̀���f��z;��,E�f���-lF;���(lQi��(���f��z`#��� E�fΆ��-lF;����(l��H3�b(��(؈�`#��l(���(B�ٰg����v���P6�l���q6��ٰ�䷰��Ά ������w�K��ٰD�l��cO� �g#�ųA��z��m=���A�Q<6����4c�փi[6@��6�փJ�Yj=��c�փJ�Yj=��,���z����b�փi[Yj=d���p�;x�m=��,��(�aX `8��H>���p��� �t|P�F� ��:����� $�����H>�"���{�4�H>�� ܋{�0�� ��:����� $�����H>�"���{�4�H>�� ܋{�m� 1A�T�@0:A� ��tV�+����o�I���@~C���*R�� X LN��kb�߀�~C����/bM��p�o�~1�A�*��6��@�J����6�Ya&��*ل��a��J�! ��_䄍�/d��`:pB�D�XCrX��0\ Q(� ��f��@�h'L5&����F���(n� 7� F p#pP��$2l�Q4n����~������7\ E�|�H��bt �F�F������F��o��cx���1<.F�L��7��v"k���n��|7�L��Fp#�č�p�n�o��5���CTx�g� <�3�[��B�� ��R�� ���O�[�Pă���@0 6���-1���� �" �0`q|>�GK�/`qE0 a����`p�P��m ��`q|�€�$�7(��(l�j�[�mԭ�I�o�8 �����m� �@Э� ZE�@ܶ� ZE�BRԭ� ZE�)�ۓH����S(E'��0��S*@`"���ԟq"�H�����h�E� �'���`pO����$�����! ��"�����E0A,\� w�>��$�d����� po�A2p�!ă��f��L� ���p���pC�;�7��C��b�$7�ڃ�1 8�Q4�x�����������f�C{p#i�=ăx\� wh 7�ڃ��!m�����F� i7��BCĎI� ���2��@pK .n�;���0pC�� 7���Q�n�,�a���!vJ�� b�$@��0pC�`%���F� K�i�pܐ6ph�@���x�K�A�</���(�wb���3�B�ѿ�A������������8�s�/>�Ws��w�����y��\+�n�u}��� w#g`�����U ��;p�;k�AMq���_|�/w�%*a���]bv�.ѿ}�;� �3f����p �;1&ͤѿC�@�;1jCmп�`� R�o ��vL���&�N�p`:i�0��u�����@2���,����H��"t� T�(*m ����dT��pK@E��%�"��� C�����(�ݧ.X y`$�X�@�[��S,�<0 �d��d �-B�� C�&��B0 �5$Qn�O]@&AR��%� D�E�>u!�I2TZ2�����`��pc�� ֐ D�E�>n�b�I2�@2���� �1{$�Pi�@�[���6,��aK�.X ����(�ݧ.X I2�@2�����!)@�JK��"t��`1��� #� ֐ D�E�>u�bI2�@2�����$�Pi�@�[��S,F`K�b����(���bI2�@2���X� )@�JK��"t�@()��!0h��S C�p��3�@:8 [��Ġ�AbP �������ʁXK����:������XL���8SrL1690��8l �&���F���6���C`� L �چ��� L1�6����lá�)9����$�@��9c��h���-��yP�A��B`O�)����X`0�)䪠�"�K��O�J�<(���S�B�ea�Ժ��b`J1>E ��e�}P�=ŧ��B�L�i �<��`| s0��<��@�.Q��<��σy` �9����0�C�8)�B#D�%��A ��!RD��1@�<�������2�w�s�;d��)����[`n؃�Q)�<�(S�Ly���>�܁;�y �ʔ� �J�!�� E��8 ��@fātp�B��A+��ĠCс�1��xa�:x(F@��N��0��36��0c`l����``��7(�G���xc�D��\G� dXa��Qڀ��� 8����z���*0&2�!`� 0�����`2�� o�i0`�oH�Nh�0��1 ��׾0Œ#��Y"�F�Q�;�E���`�"L0b���P``�&F&�``2%F&#b@�&0����3�(�F��c��`��09`Q?�L"0�@m(�n`<��pRJ��HX�����f�I��v@�;pW.��Ԇ;pj3��6L�A �ݰ@L� �!�0QL�G�;�_����[p�; �a'0���: w`<����ݰv�)�a� ݐn�;h�Q��t�NH���< p���a��{0Hϝ� %A@'k��v /D`m���`� �8Y�� ���0@����?� �$�у;�8ۃn� �`��ݰ�]�y+��@؆n`<�+ܐv�nhya'䅝pv�N���=ܙ�@�?�<4��<��@ <�B h'�P�@R|�D����Lynm�78P��%�� @��psT|#~� ��H���D�7���?� [����`���a�!l~0�C�Q�H�p�AT t� P�����2����(� P�N�]'@�[1���:�1L�1L� ( -a+���0C��:@@��`�@K��S�t��O2��d9��BK��d+ȁ� Z�hS� �)�u2b�\1L����B���̃ ��� ��VL��0`�1��a+L��p �V@ S` ���� �V@ S` ԋ�!-N�f9 X.�2@����x��XE�@p` 8�%���V� ���x��XE@�Y3a&P�*REp���[�؁ ��X%̄p9��(s&$ܮ�B0A�R��s�C�;�$0��XE�rs&T�����X���F^U��@IX�t4 � ��H�l��9�9��VX%a �ny�C�A,����O����G,����Ȩ"[a ���ŧiI�T� PY�GeYd� T�uV�JeYE�HT���@eY0q+�ĭPYօ�0���DBb"!��APY��( 6�$TZ�RhJ�� �҆�rhwh���p�(g��M������X瀅� I���(J���&�&���P�0 7Q7cfBk� ��3c.H ��@�� $x7��]@`ؘE� ���`�,�㋐@X�h�"_\'�@X�h��:! ��� �hB�03f&� @@$k�H�n,�k"���� bf,��`����- ��pEb� |�3�)τ+R����^ڌ��n����zs �A �` ���X���l��0�����$� 5�~��?C ́���� %@����|Ð��[�7 ��q��o� C�"j��q4�)�7h����E��aHXDn�?|�oQ�h��V@ �:����P����1���%�߁=p]����n��G��9 |i�G ���p��EN1���p���!�`8py�� �[AA��p����� �8PR��P �h8���L8@!*����L���&�` 0�%P�i�w���`ڴ��0�1��3�?P�i���?K�N�m�hZA �M�g�,���(��i��&�R� �M8 �`�h� f ��6-������&0����Ya`x�T~�i�?�g�,��B ����&0����Y�)��R� �M``���#(��K��e D�e�@�ʦ�/��bv �*fw�.Q� �S�Yʦ�.���+X��O�K��,&���P�K�M,7�(����5+�L$S�W)K����d��h����,�%��� �YK����d��x�矔�%�S�?a2K` D���O�/�YK ���}��!P�����]rĬ�����L$�l�XK`�&�� ^��d ��������)x����� �'nb ,���� �H�^E��%�V�?a2K` ���O� N�+��,��W�?Q�K` ���&��P�+��,�0�� E\�ۃ"}p�������p�� � 6����� � �$� �v��� 7����1\n �5��l�w�fl�@���#� � �_����L�H��/����+��/���4\n������*8��? X /0 �V��:���q@��/7�tޠ50�M��3X{؆��?�G����N���@� Gy� /`+���p��m���#����T @� ��Ă| bͫ ?! X �����:@;� �w�;�@��w�J@���M��3�Z�� r𵵋��J����@�r��2�;���������E �U��X�0t� ?�.�4 P�@�2d� d�%��C�S�3�]� `���@�d� x2� O�KЋ@��3��� <�=@�@ O�܊@��+��B#��'�hx� <�=����X�b��'�����d� ��A�@ O�܊@����B#p @��� O`�`.!x^<�;�%Px��8���.�1x�'( 8��.�1x0( ��$pn��?AI�K�N�-x0( a H@�x�7X����OP@@I H_: ���� �?a00� ���A�<��P6����`���3��G`<�,�h��y�'( �$D�/�����`�� ��K�#}� J( (� AGa0x0�����#�xG\��( 4`A<�8JB,x� �`8"LJ�6����8J X����A�Σ�4�$�A�8h� x�4R:��@L�+���qDϳ \���*�gA@J�Q8�I�&��A�88�=.�Qr�!z ��( ��$� �P�H,�����Qh��x�@P<`u% �����A\���4�$�E`ZB>��-����@h�Ip��qDϳ �Σ�*�gA@JW ('\���0$�`�����Al,�� �C� ��?�$hOwb���t@X���)�dy,��+  a�K�� ���r���,��A��OWS`��g4&�/s� ZD����r�@V�7 0�$����u�I��:���X�u&�Ex �����0^��C�M�Q��\;� x�2����=�r����y�q��&CT�O�{��6A�C� ��V��4&ae|�?B,(�P�4� p�0H��Q� �Aà PN�?«��@P��b�0h�Bt�X`\S�1>0�X�0��;�a4�@8��`t'( �0J@,8��4�X�0b�0��U`e��(` (+3 ���� � L������ ȋ?0 �F�5��K�V0 �F�5���:&����0X��� ����v�*v,^wwl�-_�a������[��/�a�x�ݱ��� ^N]�u����pw@�1�;A@@�G �@� �@L @�P��-a���XO�@P�@ z�7H�b�S������St|�g�ɦ~���?�l��?~���z�)�@���^ �z1 �>�3~�^�<� @�� `��A� ��<��qyx � � �8� ;�'�I.���l�<��4y2�l�>x�#`�<` ��>x�0�?PB��N�<N� Cp�0� �'�:���P� W�'�J@O��b ~� ��0�"`���8� ���s �� ��(���W�<1& �X%��l�1a:��p4��X���u9 ��[a���0��sX[��P��Q��0�3!Zt�Q�mvy �'��t�`P�)Ř0�W� 8�yE,�m�������m(�:A'�*\�K@�� /��cP:J�0���������T����p� �A>h8� ���B�h�B����.�h`� %��.���]��OQȀIPVXƛ��0���VX�[D���@ pd@a��u(W � d� ��B���_��� ��A\��W�$(�+l�e�Eĸ.� `�+l���2�"b\,l��2�"bܜ�,"e�39q�XD��g,"e�3=&'^���">�E��������[|C.�����pr��� "'�@��sbN� 8��Ĝx>jN�8���ċ�Qs�Ή���ĜX>jN� [�ӐN�V�� %'ֆ��s�nY��̄p�^�3 ��L�|�T�6Q C1�4�'����4.<"] ~-�p/��R &� {�m��|&� >�P��P{��{�mPP7|+�@Hb27'h0����r ��� ���Mw� .���` (&P�li �]t�ˡ��N��Ζ���.i<1�������.i<1������Y�li�R�dn��o�ˡ��N��Ζ���.i<1�������.i<1��0� J� ���t�4b�.��� q���&0A�1��ܒΖ�/EL�f\�bq!.0�� ��//�@?(0�˻0��>*� s�����JH&*!���d���J���G%|�d���JH&*!��.�LTB2Q \"���d���J���G%x�d��D2Q ]���0�LTB2Q �D%$���X d�,���l� p�s���|�!k�O�Lu!0}*�4J� ���|���4�� � `� hP�Nk@Р� 725���؀6p���1p �.�u� (�_��ؠ�!\`�A��7X���`�~0����A�0Ġ`�@O�>�&f�HD@�ˠ�� 0q@kP6��,�J�� �`>�^�0�nx%�=����7zQ{X�7����7zQ{X��, }��n(����uq�a"L��7p ��p�;p 7����7z�P��a( ����C�iX ����h�,@���z�K�$�%`.@޸���� 08РQ�EK�� 5����QzC@C �\�\���/����7��5���0��;��@ �P�Dmx!ᨬ���?���@���3����,k7��Pz�� �;����� �p�e�����"'p�0^�c��5̆�2`���.�����/_ `����yym$`\�5����a���L�%@�0���`,�.����;ap��e�$��Nx��e ���j���l�� ��u��eYø�����;8�O(\��$�����$r`"�fQ [1F�HK�����& ȏ�����}�� I@t�% x�\<K:�%Px��8���.�1��'( 8��t���%%B��� | ,)  <K.�OP8 �����$t�%Pr8 �����t�%�`8 �����t�% ���` �,�*����%� �,�*���0Nct,�5���D���#�6]F��J�L!`��� h �� ����g5��x�ap�j��@%�5%�p�n*p���a�/��y0o*qX�a8<���v��|�8��pS �p8���`>��JS��p8s9�T�0v�pX�a9������p��`�T�p0��p8��8���0�BoX��wЃ½��> A0ݗ ��p$�7�`�x��wЃz�x�!��� �}h�$���� 8t$���xB�A�E� ;L-J@o� A0ݗ �C@ !Xc�V�y�2[�`AD�#���==h ��}Mm1� "�;�͠���F�� c�#�1���,c` D@�0=���p`@��?\&�4�h }�7X}��B� � ��P0���!���p� �}o�� �{�G0N_� � ܷ�?����A����1P�G�Aa H���4��1`�$� P���3 6 [1p8)$5���TK@N�zX� �S�V:z8�*�S���y85��,�0ἾF%��+L�j��$5�3���6':�R�=\LH�-�hrӘ�M �[1���� �SL�G� ��f����L�G�3��� ����)(�ǂ��c � \��y;<��#�s\04h�N��;�sl��.���`;��:����;Xl�m� ������D�IJ� �iĉ=���IJ� P:f�s��� �����cJ�m(}���;80C�/�w��P�lC�/�lCY}F�ν�PFV��slqfp�I ゎ��f�`ʈN@���8���zgv'���fۀ8� 8� :��p;g縠�{v�mp�%�:��xK�m����0��x ���p28�`8�%���(��r�؀FG�Y�C�Hp(vBl�X!\@�6�JE�( `������ �!6p��� FI����{�����;K@.}�aF�7�;a ��?: ���K@���3����<��`��Q0���K@վ����!�c'��0:J�N� %a'Ć6�'�Î��R�0>��( 0�g� ���GF�a'�o�v�P�!��i���4�F��@#����~�N��g背�3v���w�p��?�y8��( �$d���34�F��# .�A *�N� at������N� !#����4��� �n ��?lV� �w�n��?��9�1%�`��� �c'��0:vBl�w@c��h��1/�Kscn��,����X�'hm�u��`̑Hh��U��6�:�yh%��#�W���8�ˠ �A�%� �(�� �$��9im�u4 c�D^i �aԞc*� �jX Py �x D8�8.@<��h�0N�� �K��"%�L�`&�0�f �Op5 ,�<��0p4�� �  ��ż��L���<��A���W0��%�$��pV� ^^�+�D�3�O� 8 'aTz0V]�)e� z 5�� ��̄Ksi �1�n7���>��c <��b4�� l��6�$-�pW����#i%� � �QҞ��0�X d�,���l� p�s��@|�]�b�"@|L �w��bxL ��w��bxL_��D�}FG�s+�Q�d��.��-* 00�� �������V��@`�d |��:� 3��0Pr.��` �X0Pr�@�Q�% �� V `BA� �G�a���5P]>�`�gt$:1RFG�#K` !h0DZ�c�` ���:��@(9�`�F!a�40�`x� X*6$� X3%g�D���X��#x �f�"> ?����K@���������A h��!4��l�GX�(�&x�����GX��&4}��K�">(�&x���f�"^�(�&x���� - ��#4��q�EӿM_^,�S7�bIO�� ��q�Gh���n\�������(��E�Rl�Gh�M� x8С�bIX�(�&x���J��M_�ԍ+����p0�CŒ��Q�M�M �ϒ�����#4��Q��;h�%a �����gI( %�闄%���( ~d4b.��K�8?�a̅�PD�#q�w����fZ���#'��Vp~ �2������\(w�S�D����#�����;$Q��D�AH�?&LW`.h�?�%��\p�$��;���K$��#4����1ß8bG�p�8d���� �� ��8��}�D�h���MԉH�"[d$�`T���:�'�Im�>nƀQ��EKm��fO�0 F#�-KD�p��F#�-KD��^���bv��%�"����$a �@/��� fŬ��JG�� fŬ�-6b��� f����$A�N������8@�>�� f���b��-�&fY��K�����@Wћ��P ���7K� Л�F����7CBH(�8$����FHЛA@oI(ћA����h^�G !�t��ұ.B�G`zs/1;I����JG�N1��l@�!@�N�����$ bv�p����� 85�f`��� f� I�A��M f����b6 �ِ f'I@ *�#�ـJ���$!$���!f��UzS�͐Jǫ���#��ҡ���x5��1���4ڂ;�� ������@(1���n�[�D����%�Tbp7X@%���V܊EP���a � a`N ���4ڂ0m�-��� @[x\@����e @Pbd�n�jdڂ�p m�-�%f���2����`�F�m�-���j�T�m@*q2g���2�J� �A%N��@ 0�[���p�t� @f���Ġ���`Y� � $K|�8 @�:���"����E �ZXja,b��AC��SSa�n�UP��PS�8�΄��T܂[NBЌn�ZX���j����A��@���m�������c0�����>�g4�%~*b�`��̀�3d���c��=�@��Ι���O�P�����̋G ��xdbe^?ʼx��|��5�&��~��BIL̉�L'��~� ,�|0~�y>P�!� ��H���)�X���.@hB@� #�#,������ �e� ��P�g8��V��; औ �f¥�)�#6����<��(�� | � �!�`������ ˋy���f�IP`&��O\�����ʣ ��� Ƚx��5�bY�#�G����c�� ��FŐ4 C�i! ����_����}V�F�/!k�L�� � ��P R`@m���_��C3(j �]Eyx�ym1����=�ږ�ቕ�'V��{⮢<<���C(O�3���]Eyx�ymp@� ��Š��B��'�}Dà�>�Ax�b5(����<�JZA�x�b op��>������n<�7�?�f��wPF�L� �_��!1$3o�bD�@]M�G���/�� �Z��BsB�Ȗ1'��g(��_8��S>�L�C� �������8b-�3�_8�Mxv�d� �"��@���4� ���Et���a� ����`�":�s ��g� ����Cs��qK@0�h(Ja)����00(��) �0���B�����P�Xp,���` X6��@H@�$��i�P �(|�@�0� ��!��Pz�W����x �^�W����Ncnz�� 8`N� 0'�D � �������x(c.� ��'���sqN��9�'�� 9(O� n�^@O�/�` M�X � 0@��qD���p-p��� r�] נ��;�/�/��)sN�Kx >7�H��V� ��U#CV2���K�#Đ�p�p#7M �*���T`�X6qD�|��f�� P�dph��Q �ep��� ���� �@2��� �:r��'hvĎ0Sށ�� �����Bp`@��Z��I�'�/��좊M�*fū��bW�Z��� '���T|J�UHũ���p��U8WA4u�* "�����B/��+^�@]T���W���b��PzB1y�����u8z����O��L�'�ɡ����b��92 ��/�'��Pz�W��������t�� � ��j���0ă;Ћ�@/��� j@��^Hb����K��X)�?�DpK@�B+%���`K�6p���Jm �d��qT������u���qT�Em��!$�opQ�@K�\� ��PL ��0>����0���)0n��cH �!zB �8�C�E 1K@O�8�X��b�#�9MO��,D�����,�z���Yh t�^�YL�]�(` (�YL�]�`Xp `A,�p F� ��Z�k1�� �Z�mq-h`,��$�� H�,�����7(o�DP � ����@��u�4��J�7������"X3�O,�%00 Fd:�^� z��-f C���� ��� �@/��I`4��$�bx`p�X�3a �u;f�X �,������` ����k���,֐6�Œ=����ۅx�f��� �\xȵx4�� k�C��"-�d�%��7� @+,͇���;s� Np3�����?��L+�)��#Ć�`+FC �1p��&�}��q&P2��pL�',� FO`�b p @q����n�_�O#-�d��!| ́���s����K@r})W����rJ��x)WA,�����!`&x���F���!4bL�1��h�<[��l��#d+��� E@�Vh:�A6�)���K�8�%��g�PL�8 ����\<�Pv�:AMݥ�C���H��:!���&% ���l��O�>(�VŒXBh�� ����2@S�,� �h��!<�O ��p�� �B ��1`�`!(�R� ̀� �[��PJ|�}��F J�9�e�R�PF~09����a 8���R��s��!89����2r�I ������ zB � _�s���u8?x�F��!�(` (� ��#B��N$���DR&�"�X��K�W�%zC$m:�t�@` ��(r8�%�����7,��N ��ź�����N ��� x^� @2�8���yP�mK��ފ[q�@ � � ���h>�m� �/!*ۉ-'�����PN��x)WA\|Bz�S����bO�� �E�'����r@T&��\`,���"t�g���E0*a�"��-� �� �����y��� �s _�9>�/v��y���)0n��c�b�!��/��d���׏�L<� 5x������`c)�4�X+!��u8G�o��������c�?_�s�xNz�� %�'���U0,?x^�� H�E� @ f�%�,��.�,-x ���P f��g�LpK�5�W�X��` ���a�` ` (�+��� ���Np�.��N�H>~ �����H>���x&�|� ƻa��x AS���Rps � ,�0�f Vb����8�@ �b J+h*����� J@Sa4f 4{@����(��<��h��I��Ƹ��c\� �1� @�����)H�� ݗPs6�1%��ԜMdL��H ��*�%e\���5簾\�dL)2F���S���P�Uy�I�+�!`M�2^Ɣ"c��� `� �� }΅��>�'(C�΅� `3���� c�Ϲ0�g�H�%`��ruE�?(W� }��P�� �!A BBH�!�<���1ly�>0�\���}`B��"W��+~�1�'?�0�\ ��B� 0 c���$@� ����Q���� CE��cU��UQ�!`��cU�A�x7%�N���nJ@�x7�� �S�O `�%�Ov���[y+���L|` ��[q�C� F�q��3Vȓ�%P�P`�� p y��6�H���< �7�Bʠq �)У�y�r�� ���F䗀0�f��,~�Խ�<����w����5ze�`��ng 4�)���֔YS��R4�LI;Hc.���� ������i�y�q� `������X�� ��2k �^q��w[SfMfJѸO0%� ��S*7'`:n�rC�E4�)��7��rC��o%�b�|Q��+�x0�%�N�@��Ը�؆���!@�A�68�vr,F;ц�Aݷ�> ��I�/ �D'�j�N�?�تK`��ѩ} @2/���pRJ�6�dh�)X�+P4@h�; ���a�&���m�O �>��R�W�S�ķ)� �WKa)�+Я�Rh�6CA�@h�; �O��g3L����6�'����$Z� ڧ h���}XAA6��X �� ��)%`��I ����)\b3���;�>���W�� ��f �k���?����D_-@�RP$*���ڀ ;� �T0@1JC���[l��'m��-d���O$*���@HTj�� ��@�R�h/�.����Ix t!���a� F0J�.�T0�R�hF�`�G� 0��8�� �yO� �`8"Lz�ݰq��� K�6�����C ��p&4��O�8h���0@%��au�+V�ct W`u�����X��!$���P 8  W������$�NhzH_�&���Ż1 �b��!}q^���� ��8 -�ϤUo������:ޠ/"��C�"�� =�/z?�2�LZ%&���E`zH_|�B� H�8J�Ix�B� \�`�" 0 ��$� ���_l B� p.$����&�W��ya�����#�� M¼0 -!�Ŗ $�����B� Nh�I(p$�NG� 0�Ù��F���� X`0����$t�'`h��p��`�W�:����C%�0�Y���8�� ��9py�� 8�PʁV�Z�A@�!!�����BX� �!��h>��߃OB�k� 1�I�4�|kX�$�L�E@L MMi m�ѐ\{(D X�6,a��m �!�,a�O� �6���m�?ӡ��f��6��,�;s� Np3�����?��L+(��-18݂<�#ڧ���o(���>e��o(8I �*�<q�T' .�Ƀo��a���n���0�@>�#�A-ځ�G���������?@�,p���J�o$w xAR|CC(+Eଔ��@���>+���@�h  0w ��; @_i ��@E,P�B_郚�jJ�����a@�" @��)�(�"a�m����:�&Tm�Z��3,�q��u0��Y` Tp,�X�@��� .?� ē����\�sa ̅�3�X��l7�%�`la ̅��%�[�K(=���1� /!�n�f�IP [A�T�2���9��[A蓙`N�q�'3a&(�p>���L�L�Ã��t��;SΜF���\d�d�b#��@w����D�c+$�9���@����"0��;h:A�@ݦ�t�qx��4o �NӁ�#4���tƐ�r�@`,����<�'S�PL9����r2@`L�-0��id�>�B��nlN#Kd�,�q��)Y"K 0���|���%�\8�,��p5 ,�<���U0�IX�j��q���b^�h&������_�Ssj�t<�G ��Ss��u85[��(qbܗ`�!8h�%���0�K���XĩI)J:A'���t�N� :YB8��I`�@�Y�\M *�pK@��d�q1n�t�c"�q-�8��p�H�Of? �`آ+}2 �G�p� Ϧ3<=٫��b#НC�%��>y�Z}�t�� h:� jtŏBa���dx�B�s2B�e�@&���.� ��@�����BaI�&ó� �m2<���<�(n��M�g��Mgx�.!�mO(� `l`@ʹ��ݲ[*@�-�A4�� <�v ^E�]�� ��A�ڭ h �A�6�n]@K@��@4���p@�$���܂hſ�-�E� J@G���^P��<@�Y&� d��Y��I�5ˀ�<��2�2`.�� ��6�O�@�ц'�Kp�V���4��<�1�8M�?%�'t*�<� 0 ��Q�N @G��{<�)=�1n�S`��?�qC�3�S��q�a�9n� �|���"�(��,���@9���V���@9�-!���Qק㘜���B\H5qዾ�5��9��lEp5����:��%��0^�h�"�s}� (�:�P��B��C���:d0�@�u�`��P�+�9_�@#,�rL�F(�sDfb�W�9�%���3s|�KB=�g7�5���`�[CI8��`�t� й9n %���`���2X� ��t����W�� ,�7�� e� o�0>y@@\��"�P�a0`���ӱۘ�BOݠ��@ �%D�t�.��� .�%�cu<��nP�S�=u<��(&��.L�0t�nh �.Ѕ�@��p �b p�(�](B����u��i %`@l�t\���HǺ���) ��;��e ���|��\����Eh��~��z�Qฟ�^.a���;��%E0�Ƒ"�N�`��8�%�Ol� MGI�+��U���7�u�Q���W��䌠�O�)p3ga �d���aw�Θ7s��)>Ň3Is�`�\BҜ��ӎ+lI�0� x8& i�BI� �K�c.!i�B����,T� +/<��9 ��^yQ|�q{�� ���� ����3���wL0�:� d#`�>�΂]Xg�,�2��F���� p�����3��,�����g!0FP9��;&a��2�0��>� ��#}���=@,ZbH �X>�15���j #���0F �1`�0�h�ac��Ɣ�Xc�1\�İ���E[ �a1�_ŐC�U �ע-���C�U �ע5�İC�e �ע5���Ccȿ�!�2����/�<¶Y%M� �F�� �H} p�@�aHW����|�va� �h��GX��H} F�� `a�& �h��GX��H} F�G��7H��L\0 �4� ����&7H��1�L?0 @H��?=���A�^� ����@��Y�����r�Y�'�U腜�T��g����Fȉ9�fͬ�LЊ�@ g �h���.@+څ<��V� }0�i���5��V��Y#'*ء9�`�V(�@+�1SX"�V� ZhE�X�`tZ�.�1�h"�V� .Q�1�5���0k�AG�5sb��Y#'*;�5�`�ȉ �%� ,�̚|@ g�p,8`�T�0k��5`�.1X@;��� ����p�D��v~�};���^|SBؽ)���j� SP5�ſ���u� S� �ſ��F���[a >A H�C���A/MGaz� S� R@�`�_� ��YGGi��|%�QXǭ0�@I����::���4�ݳ��� >�������c{�H��`"8�;�p�i�c��4�q����D�cׁ�� �����c��:ި뀣�8Y9��(��MVp�c΍bs�F+���!���Lp�8����d�:�n@�^7<��Ql�nx�ǫ�cׁ�� �8����d��X d\8`��VPp�+�8p���1p�T� Cy(Zh�!"���P� a!.����\�%P�P���M&�M��7 '�����o�����& ��8���Mp�B���GPsP��Q'�$ܙ pgp��iw����fZ�!���8�bC `< ����E�p4 "� �9�Em� ������hjC� ��6�w ��I) ���� N98 �%����xN�I�+���0PX�Y�w&� �?��Dr(g!jܙH2H���'�PRI�V(:��0�9:0p ��ð�@ Z�$Ű��?���� #�B2X0!FSn=LG��^'�u��pp�@��G��^X�0b&̄�`2*+D���� �0�s,u»7��K�a�� `60�$� �d�LLX����@O(`���q��K@O(&/����� � ;A��Ѱ�y��6����H��(���(s�d��X � , � ���N `8p0�L p��_�Q)��-��#h'���ٔtU5t��P)���F#lʀ�d4B�p2�G#��ҍj�����'� � ��8���d6���r'h��6%P2=a ,%cn�LOX�g'lJ'@DxKoQ2=a'lJ.!��V�?�P�e ��0p�i�a+ܠ ڔ�a���yV�VX�m�܀6�� h�a����V@(�m�Ͳ n@�%��0�V���V@(�a+ ��stX �h��Ѵܰ�B� )el���P�U� ��9�AV� [�+�`� c�,��� ��L�#[��� �?��1�^P�A�� �1�~L���?�9������fv���+�.Q�e'�Ӽ�w0�>���V��o�q?��m����o�0���p�P@� �) �d+��ƿ�c@>ײ���p�BF(: A��s���V� $�����X d�,�P@ �@.����`n̍Y� S` ���P@ �Y� �@(���( �$@ГV�2�ʜgc�N��0V�����pBOī�0�l���^��Se���j�Mq5��՘���j��@����L�@@����Lx0Nq5S�� �[�� �9��W3� � r� GW3J@�Ȉ�$��*��.�d]B� 2A�� /���h�A�(�f #0:�@F4`�t�6�h\ 0 ��@�` �.!�� #`�`@\�m�� � DAn�*`��Pt@��� +h���H0Y���@�BYfa&��p�.��6��p��)�ɧ��J�n#�� zdp���9�(q��B���h��"��mD@( E��ۈ�P�?�ͣ���Q�; =�A(z�B.|�A�BQA�>r�S����.�g� �$���,��ǹK�8�%����Y�D$L�a�P���\�:�M4a \�.MP�$�� �gR� [a �U�C��%��V�Is+n�>` �(�%�@y��{bO�V�'��`�\�2 �!;�U�<� cH&�@ �ĐA��E��!@�� K�8���~���,� .��%��l(�u �A��!�l��6�pl���6K ( �"��� 3!�@Ȑ",@��K���s?�� H?�`(���Y�f ��aN�Y8�~����N�]�9�&�@�����p��J������p���8�A6K �<�O` X����]�O`@o9�����nX�f �;0�F���� pÿ�L,�%��ɗ 6 @�|� C��"�'p+@�����V�;�/n������%�/n� �0��V��������܏q+*� �0� �<��T�x��6t�.�,�#�@�"�� @)PhAI�Oݸ �� @# ���C@L��(]@)<�!�@�>u� <�C@jC�� �<[��Wq���z` ��C�2�R(K` ,�-�(�9XK` P����@��$C4 %� @@ɠ7 �G��O� ��D��;����X�E�C77����~P�^��0���1���F|y��G%ta��p2Q �D%$��LTB2Q ]����/�LTB2Q �D%$��%��JH&*�K$��LTB2Q ]���o�LT�H&*� s����JH&*!���d���������X��6d�,��<���"@�`M���ۀ X �A���� M+� �"��P��r�x�����D4ܧ�D� ��5�X�j� (U�3T��s ��h��4����3sq��13������������ �`��<0ff��cf,�13<3s��9�8����%�`�̒�����cf�9x0f�?3��q��13������������`d�`��Ux0f�*��cf���13�<��l ��yT����3�q�����������D���� p�w�18�P�"���n��|70�{�?�绡����P�q�=� �������n���|7ld�lz��0<�"��pW.���8�O`1J�9�1��s`1 �� +���`…9� + @�`Gj�4�����So1L�р۰� �-\�۰�`v�60NSJ�9Xo1��s�� �� +�����…9� + @�`Gj�4�A4"� ��CT���������`&�F@J"+%���b*��)5�$����+ GF ���t�C�5�!�����{u��KA2 �� ��l�Y��)kxd��|K�x@��?j(BM1 k�xd���MbP��$�����M���x ��d<�I�鏚�5P`4x�$�5��=�CdE��u�5��8��$�d�Ze�Gv+���|�JH �����cRBJ��dp^�pL8/p8&�8��|J ������I(4�!�8/p(4��۔��8/pX"�8��PBJ��8��! q(�+��`Ʀ 0�##�`p������ ��8��p �= ���m�|C�p.` �R�J�Hf���R� 0�� �7� ��(�� ��:`�@�d�)����}���p��R@H�=���@^��B���� �D�T�)X �vǐ@��� �ƙt�� �8}���I� ����`HF#�Δ���@K� I`^$�&� Z�l����y�2e�h G5 �2��Eh��%U(?/�IN�-�*��@��l  �2�y��@'h 4�� f��EˤJ�%�$@�`�" 4�N������y�2�P-��р$` �T�y��@'�35�(?/�EN(��dz%�l@� 0�*��HM�������"'�/�Ll@��#>�$���fI�I�<�͒Z����! ���ul���,I�%<����@K�:^�<�͒Z����! ���ufJ�<)�<�͒Z����! ���ul���,I�%<����@K�:^�<�͒Z����! ���u�oa3d& �@@J෰2�ֆ�4k��1@J� `3bRP��f���k�͈ P����(6�͈��2�O��^p8�f�(6�͈HA<2�`�xd6#6��\lF l�� ��p���Q�����lF ��P�������1p0�C� g^؆�a،�%��1)�Gf3b�`����ٌ8�xd6#(��\lF �*/4M��(��q06�`3b�`��*/4M�6�͈�����m8��6� �f��F � � �f�(6�͈Hq0<2��`���f���X�#�1�Q(�Gf3b�Lε�f�����B�Tx�QF������ �oLǠ�p �`32���R�1p ��1�c�>�c����1�L@�p �1�dS+� �J�(�#a$ � �$�5؀��c��6�2$�Y�� p>� �Y����A�� ���������/0�>"�_����/F@� J�S8�5`Dx#��(4� ��H�4�${E�����^�3x�0�~M-I��$�+� �� �H�$ ��I�WT�$8��lp�$���d�1p 9�3������!� �d�|��G��R#4�����F�:�@jăN�2V���>�1��p �J�9� ;@H>9!GP`��0>r�O�v �(��}�з�|�� �4�J��@)�d�� >�G���ԏ$0@@���� E����������-��h}�4͒� 4!��dn`; !iɇ�$��CH@�# 0�i6 FK6�Q�јMt�.�&3��]���꒙I1)+��P�� K.l���4!���)�q��D`O@@�k��2��"���v(�����Z��c�Z�!@&�$�x�!\�=�#���L�9. � ���rH: /���6<�Na9l���[�H�BH@��� p �`3J (�X�Ц��>�/HV�@�`�D�i~P(�ڔ8<�!�큄�/(Bʳ^;]?>��<�$C|~^ ��4� *Ft>���-�UЌ�L�� �q򖍊�|~o�ʁ�����|�N ����I �-���������:���h���&�DN`s"'��3�crN�6���`�h �`8�z!�lF:�� ���L>��|�c�!�A:� T�*�A:�����J�A:�4�x{4��:�� ��r^l9�P>7A�h�e� ������,�G�� �&$g���� ��|� �A�< ;9AP�$0rBNx��o�V�dm����6@�x�����K�`<�����`^R�a<@@���ˍ���D" P�)�p I�#��?�I0ÁHP�����Lf �$��$0�A@! �$��HҀI! �$��HҀIb@ D�P j)`'����ZW����p +rv�`������� �v��@ݒ����>�$%����7I@ �T��{�@�4�f#$������P ��6Xȍ����P ��6XH�}�DڇH��}�����&[gn�`Q�Jw�8U�0X�>�����t�Nn;("74Uc̺M������`V��� f%�C� ( X M����t8��Y �� VBSe0+!��C���<` 8` 6���xp� ����s��2�@(���p(+�@�`'�  �ġ~BJ���� I`����@@J p7��[x?Q�&��*/8�N~�͡�P����9�����~\@Nx�͡���� �>�$����K���i_aʟ�Y�� ��@����YQ�`US�����fFE䵚6`]� ��.���hl��z�u1)��h p�%� /�T��� �j X0yH�TM�J��AJ ��v�}J¥;a0��F�N�-��}�\@J(\�Š6�Z�)d�p'��0vW����p �Z��4�f'��A#����w0��RB ` �8��B @ ��h�����>�A;hP���>�A;���O(�G;����Bp !+h��(1�. `2Py4��5i|Q�Pb:�a�P�h`@v��Ɏ���d�b.� ���O��U������d�b.�Of\�'���}2�qRZE� 0���)�#`�>PhV��(� EѬ� (f <�ă`�� 9;�BѬ� (0FX����ڤ�xm�$&Ą��!<l@@(��h$Fგ���w� t����A֑��@��؀��h��� �g�� ۠�������'� ۠��Ag� ���+/rO�>!���F� 2� ?�O����9��F� �����2������VC��A ��<���e�4�2������VC( ,�K�)���������^c��ϔ: �!�EtE� �� ����@X"�60��L%+0����S�J���|�/n��R���"����N (J@���f�`&�@dB�f�`&�@d��� #���� ��!� `^�@�3/R�ԑ#Ow� [��μH�C�<�AakR�������XN2���:��(���~�GPQ �I>���D��ut� �J@ �!it� �'���(�ITh_G'����@��F'���f���̄'kfB��X��p�C�:)"`�p��>��$`�B9�t󁦙S�j�Љ�Ie� ��H�G4�T 0"�È��`��0"�B��e�!�J!a��_���2B��*!��}���>P��� ��.�I�ڍ��FApҁ8�F� x#��l^h7*�Q9�9H�V(�ݨ�08�.�x x#��Ȍ��6 /��(���C��xE�%�(�PV�����PK� L%0��sr��?a9�i��h$�� ˁO󜔀 pF8�F�˟�����4\����W�r �V�j� ��"J�4%���V� ��մ�n�m�H�"T���%�2��>�@ ԁ%�m��P���B�T��oඐW �n y�1\@ �`fBgI��pX��<��0�4%�n��� � 9p�@� M�VH�����PJ�؊&`+~���:��&�/�:� >�lM�+Y8��C�J�N� �����n� +��Ѝ�ωr>����{�IA�=� `%&�nЍ� X� � ��t���JL+1@(������U`�%#��xZ��|V_�Y}�F��E� |�/�M�=`d%��\"�r�0�%��Թ�S�O�#��|V��[}/� oD\+��+po� 8�F`A hāj\+��iވ"�V�S8��(G��-���>��_$oԀM�F����� T�@�8��n)�U�8��>��Q@�[��u���:������Bph_���R��K�3����HT78����~N��ſ��"��|@7B@EQtTD��/*���@.ȅ�/(D@�;���|pH���g�(k0)��`G�7�� ��@�ǡ���}`����&ЬjH����fe�U ��� 6�)s�AhV5�>�PTCwF��>�l� �H�0R q#հ�����$+I��[��T�?W�C�4��i�R�3$ )��|�r ��*���ۧ�ƿ}�ϔ��q0�L�)���i��r\l�Ɵ)'e`�M@R6�C%$�h�#H�B����#�<`�B]� F�.<�� 1�҅��/�Jx+AV��PBl���|�<0`���3�D+�<��b�x���#xĐ��q(�� �EO� J <%P �P4 7�3􄦼cNA�� �A `� ���r��O�)'� �����N�)o����T�`l� @�@૵�6�#%@�� 3!4%�$��e�����P�� (GJ��rT&�  A4�US+�L�#3��4��P��Q�� ��r�m3@@mȠ�$P%��@'�&P�lEI�;T �P[a+�G��"p[At���:k� [��� a ���U;T'�[�l�N�:�Vd0q��DA� ��3Q*HPK��(N� ��j6L�b�� ���L3qx���1�j6L3qxL�� ���CQ �8��P�q( D�]�΋�P ��8V`^؍Q����$RD�Q�I����D ?) DUJ�X%`��l�ؐ%@A~H`X�ygj�U�5�nX�-}�EM�6��*o�y�'�I���Vy^��<�OR� ��V��y�0�c�0� F;J�X J@?��B��$�5@?��B��@0g��X�� ����V�f�(��AP�` �mP�aR8=t4�X�X[~K��}� �:x���`C�B P�3��� ��5X�C�2rQ�A H�Wpj�� ���G�EH�Om�2�b�Jx�~��Pʿ�;P�c(�Y�3��>PuC pw���D C�@ HJ@j�U%� Z�K� "�L�8~GЏ}���7�HBp(��I-����C �!�����i��@!�K�$q���sh5@7�?��#�l@7Ԁ�tC xw@?��B�����z�`E|K�Џ}���P�/X- Ȑ?` ����K@ H � J �jMsZ@��Q� �(�6h'a+��( E��� �����I��"�5�E�J�Ch}�U��V��F���P�u��A ��b� ���Gj��sF�ܗyA@�"PJ�%��@r��+��v�ax�SZ��@p�.Cq� �0����?��,% B�O(�H ApO �s�ʍ���p.VMIy"D (ϐ�nh3�fK C0Z@0I�"|er#b��h0��Id���$jI !*��%�:ֱG��p �h�I���hL���2!E� ��$����j�&Y�c(� �����+�C܂ �R@ @E���P� ��3PbA$�&}���-v�B��䛀|m"�� �@X�?���"�ڠx�����!L�3�%�C�G?l�8���Ð��( � �"�!Ѐ`�8���8 OSb��)��m�� B P�|O�j�����@VC�Xʆ'�SR\GP�A��E�7�O h��$R� �� qp.l=R���"�r�E���M�8m�'H�D� ɝ� 9 Dl����@!4������²���� �� �@ �?@)��� a!z6}EA��� B�Ӓ!(��@M��U�zq&|��DA���GH�&��N � �=�B&8�"�e�4)� �@ P����/{�A��5��H�w�}AP�  �C�d~!У@�b�{���TC��0%�l��b{�=J�8(���5@SB�3� ,��`���!|?v��70�� T_� �F"%4� tr�  X�຤�`O����%%$�$�� qIP��"��� Z����|��H!䍎 }K� �: c���b�R� :����H$�b���JpU�y���H.��X�����(�E̟d�� 5���WB�vH*�$D���T��Eܓz�6�OWI �d���i��a!D�D�h@`(w��l@AX�wv��G>@�N�H� ���R��7#1� ?�B�~� @�s�q����!qCP ���3�CH�� r�xxq�# �� v�\�rC�4� D`�cT��v ���_`P�GP I ��$���0,!^l `��).�!4�{�0GKp$� <���glGU`>W�`b>O�� ġHlR���H���aPF� ���c@J�A *C������j�ǀ>Ѐ��a"h4�ȄD j)4���N`�����aYH�R�� �I���� �N'!��P��R���i���t�u2�q��%솲�R� ˶a�4���l��������X@ȏ|������Bq�dG�2nKYF^`Yt����2���#�|�h�s�#�\؆\�� +"BM$�c���1��a!�G>@YP� ~��[� �@��64 f��Ic��H �d�D@sh@"�~��ЀRPx�_IW����{��ku�@ �B�~z��!Q@Ѵ�8ssB�C 7I�� >�N#jL�E���a�("���0��XR�X��@j��9˱�������Z�a���$P�Nr���E��X�؛��K@�ځ[`�!4���rC���"�̆�Ƚ��`�T?�~���˧�?@�@~��07�A��OX,`T0��p�� b0Ap�M!H�1*��D�h@~,�P����#Hy-���c;@�1/b@M�D0 bFhx�^�0�����!��`� �g���@&���D �?:aY�Ǩ�@C�� 7L`ޏ� � p��@Ax�v�\�CP �>ҵ3$D�A�P��\���6�`ـ0��` ��܀�@Aȏ|���PPpAp@-�"�rC��=�~ h4���+�4��L��̧��8���B�hr�o��''��mWbY��/0tT���a~�����"?P!`Y����,| hpR�! ��s� ���ڝ�RrV`�d�P�€PI`Ќ �"/�.�V d!U���a(�� / 5��p�����$�'X"x�O�oąc���*�‘$�t pB\�!�L�m`L&D0��W�s�~ja��5��\�D�J`E���0FE���e�e X@�C!��>Q-8��av$��pu����m��eO�+�h�(��6x��8L6���A��g�D����$��l �!��4[�����ȫ� ���@<� ȳ���Ү��!�0 W�t�� �E�Gv�OX���e!`���3&� " "\ L��� 4�؁(� � `pE�ab.`"���@�t����!h=:LB�6a$�P@��(~����$��!D���Q7��Υ),��e�N�8��v ����R��A/Rj�YAiB���Z�p�k�A� w50�  "�Da�I�$�>�$"�54$��X@LHGu)w�A ���~��h������Y��P4��R$D@lB\N��\�t��@J������F�AHo^ *�;��!L~��cPA(�ـ, �,BȆB��E/ ��#@�ܞ�"�ch��0����]~ I@5��Ř܂�P#�hq ���T��z˧��O�X���) #8D��# �{�;�c������ ����fm�� ���Hg��4[��K����:�p�:��� /,`���B�hY�j@�h�,�1�J^���ɑ@D��-`��D`B�8�+3Ѐ�kz�CHǀ�$p��A7�:��<�l �?�a?$���FBL(#!����IJG(��j Gp B�@6@:�Ǩ�s��ԅ�5P�]�f[&��J��.��=�*['+��� XCȿ�$�–�n2�*a����W��@!jⱢ� �-��+�4�9����h@p>���?� 5�a�$����B4x� � ��dG�I �(��F�Nn ����'��xu|&8�1r����!'$��S�@"�<��$p��^��B�GVDn�i` ,`>}�(Y�w�؊$C. ��|�R��MXd#ʻ����@YI@��A} 6�LT��0�P�,mތ��������� -PL[���%��!L��3�Ǩ�@"4����^.�Q��\� �d��ېrC�� =P�$����!�8������!�E����uX0�j"_��z&���5�l�0I��=��d�ݐj�l7� �`�lC��5I` $���3���ʧh=8�5�A"���$�D�E�� !cb�t�N�NX@9 �� ͔�'Y@��^�7M��:��3��H��09j���Z���"H6 ��8����3�a$�P ���`���sL����(�A���'�� !�f�$���C"� B�DyW`h@~����`�"��+ȏ|�zn�h@�:�#�*-�v_�귲܁D@�7����gBR�� B�����M� x�Y�o$RP Y@0I $?��g������ � ������D� Ԁ��3��1��D����3��$?@ʀ����pP �# � `pN� �` GG�B� �# �����gn���!:�nB�DtE�9a6$�t_���#- �@��zK���X�� �����a"(� �!�`cF_V2I���l� �'��s$��6B���Ł�� ��@C�Z�?6B((�1*�E;�h ���B.�h�1������a"~ $�� ^� �A�K�X����!d �$��h8�($�Pd��I6M�5PA"�~�!Ѐ$�B H~� �3@Pl"@!l%���@1&�{��!�Y��� �FЂI`7 �05.�=h�U/+֐� :� 4���g��_\�`6@ �_�@����,_#�����(�� �A��:,�B�fN ����bB�!�Z��2*�ȏ|���$@0^ `�b@QȆ�!Ā�� ͒ ��� A(�~��e;����� /o��Aq ��� X��͌��8������H( �ac���� >�)�����ao �~ n�|��i@~�����s��A�'1�1�����dI ��$��C�In�$�ܠ: �U�@�$�� ƃA�̏�P.8���F�4�0P�$��R�9x�c��!̏|��P,A~��0D?��  ���B@"� ��$�A@�>!�H1�FD4�g�������!�$�`h�@nH�!�4�� l�P4|�� I/� B�H,@$���7���)� 7��$���I�$���R!�* �PWPDx?$�$�PI�'r!������� �,�k��IV$na!i���C"H�F0����<@1h ���; 0�C���!�s �L"`I�d�Р p���)�D���&%����� �/� l�J�=�d%Ё��~\O x��F��%���#�8��B��1;��$��9�;� �4���� �B" D�@ X�%x=� �$�Q�#����&TB��K�q�T����$7$��@� �I� ��������� ��k⠖,�|1XI��a=$~�K�@� ��҆2��p#����g5@p�VYz���Ms@�afI�c8Ð�(f��H�:�~P I�$?@ʀ��``� �`���(:� ���P,����80�ʛ@E�*�"�� BȮ �8�CU��`���;S_�D>h+�g@� e� ��� j��< 6�@"4 h=S�h�`F�D�� !P�#�Z_�! D�I �ЀL��# �K�����H�� /�Gi0,��D �@/��� �@� ~���N�(ޏ%�� ��,�6Òh΁L^p���x���!���I<� }"l�`�g�$�(@pu奰�{0z��c�b1���!ڏ3� !$ 8�Z�/N��a��`Z�h@`(w 7x>c��1H�6�fې�@Cx�����5P(��G�,@|���T�$ @�- �]�I��� J�����c\ � ;6�@ ?R@�, A���ro� �y`e�P�Dy*��9a;�3�� ~q�l�e�&ЅD0o�i"`�6 �l�e� �]*�cp �C'x)�����B��Hb�8���ƍIQ�g%�g��f �4 A��$�$0�� F��d���B�[`�ơ,��B���� !�-z�$�<�� }�8$t� -hm!]�L�&�A� |�c$��0H@sH��t���� �(@��a3���`;��+�̉��I�/ O$L �G>@� e� �V��!d@!�&�|�Cx?��6�� P�x)��Rf���A�aP����,4�$�ڙKO"`4���@\�ȏ|�&�Nv�rA, w�(����BJ�4�p�65YD�P4��h2BHQ ܀`(��( �� �`4���rBn�>,��p�N�RX�p�-�h�V�<[B��^`!D�E� P ��I��� �~ 7��-�X@!� �B��-W�!�!{�X��u �А�\���BJi6B�hf��_���! �` $3�@9�*c�����@6 !�*���v�� % $�� �x�`7ĕ@d�9�U���x`�͠�3$�ń�D�i��(T���� ?�B��` ��?pu��+�� ���N6 C0 #!���$LX����|�BB��m^%�, S�� S�,�4' :��²�_�a�r�P�i�;�O ����@C�!$ ��A�� �E�31@nX�fpI�D�$����,���� �@͏|��G>@�# �,�4����  �'��$�?*@zH4�$;@��4��c�i&�����$�s h@�)E����� ` ���B��u��z>��@�3��Ȁ��a���#�G>@����Gǰ�P� �@~��0�t�6ߏm(��_4V-�3�EU�5�� ���B1k�$`�3T49A�8�H�:�W�G�����I h1=���f�c2��F !�`7���jL @��bX����$x�3�O~��0?�B���R� `!�y�~�iy� ,����μtuG !7ܓ���A�!�C� ��o"�J�p���� M�7-�8!/� �ec��6p� �N ��,^CX��~h��5`OT�l��ȅ{��@

�X@� �^%0�Kw�KF�� d�lA[Hr����B�@�9��FoJ�#/�s� ���g�G>@Y��G>@�7(u ���l! (�� �������@8`�R����&���k�#�bȊ(��n�n!n��o��XkH�a6<�'X��|�?���k�bH������a~���Ą�A�.�H� Pn�]# Ua�h�"th `�4�D�hЍb5+��g���F~��0�{br�sH��DB��!̏|����1 G ���@�� 8����d�H�G�(���� ��)��v9����&���<I`4�آZ�~�=n� <��r�ia���\�I�|�"|?��3���~<�HE�����"� I���$���<��,��,�ʲBHx c�C�oS��  `I�n�R�g� ��*�}O1�>H��Y�"�D4v���cB�v�4d4<�5� 4:�K��!��~l8�K~ ?�B���������<o~���9��ˢ:��P��A�zd#8�`���p�AeY,��X�z����L�fجRP �Q�V�S��6FB(����v�`I`��G2X�����@o� 0&k�V@��C �� �.@Q\��|n��`("m�#`#�'¨ �!t����: pv ?�>��!̏|�&�A�. H �O�P � ~ 7p�{�w_�2�0^��R�7�z����(��GH���D��"(j ?�B���N� ����$�������� =���/��@(u ?�B�]��`4�����! ���6A��]�1HI���]'U�D�4 =�:���Mh���0�B�0" �~`#$�����h,�`n��"���t���!H��ΐ:�/�z �0�"�'Ya�k%�I<�u!�3� ��BH��H�D@@�ȏ|�&�` b�H4@�`���a~��0�2P� @�, b$��ZA(�~ ʯ�$�?�#ȏQ.� ���Ln���{�jE~� p�$?�X@�0^~���f�I��"�I $��D<�}'` 0�D *�`~�6W�D��@"�d� � ( 7��$g��(B"��v��=6|7�a ��BB� ڬ�#����PH��qp1��4O�CP �H�D��@04�UF�c@X����$r@8��)I�P,���5���: ΰ �}0š9k&�3�$ � ���D B�~��Gb3�$0�P ����Y�$�e6# H���[�$~� Wi��ڎ���(f���(X���BH��3��Qq0<��I1A}���H��6�\p\[�u�M�H $+,�B�@VP*�6�����A4a��9p�X�A1&�.��f�1( ���c1�H7iIvIPx�� �I�0�$�sC�( +<<�lA(`A!0�`AC0_,�?��!�v�τܬ�$8��n�K@X@ �<(�⬯ڬ@LP�4�@JA�͸b ��`>Qk$,�#��=��Wø�d���0��*8;�Z�7�z���x� �r2L� �� �� �>�(b<$���"B�h��$���# ����h/��'nx��a��0��HЖ�@���t���1@[p�A���=�.�B-�m6��C.��`Z"���=X@�R98P���J^�M�+��>Q7��kL ��0yՆ�y��D�@� ~ ,� `h@n� ��ԋ�S�J! Zoi������ ��H4��QXQ$'��4Ѩ�~A��L��� !���4���@r���,���������0��b_r pv`I�Z��q���B` !� �a!��"���# ����B�� ����FS���w �B�8 �����AI@:!c�}҅r�h�F��7���_�;Co�@�? P��3&� ��5����G>@� e� �X��!d�����a~��� 0� �# �,@t����+�4 ?�B��Y�?!d���$�~s���4���; �`�q=ttT3Xl���6/�%�)6 ���ܰ��P,4���IX0�jB����*^ëȎ���/�  ȏ|���;���4� 1���aX� „ `�Z�h�M@S����8 �:��3���@�Y��h(��p��I�6$�c�g� xE��V��� �38��٠j6Z0�52�b�R�j�4��֌аҁ��1*�E;���F�U���p~�A �>( 8Њ�B�) �Ydn�|��%=0����IZ��� @�H��O�B�~¢�(,`�d��~jF�>؂� B�A�?$�xn�'DQ4ϡ�����D�!$8�� �� h=�5֤�I �&t�B�X@�P��}����X]�Dyk� h@� ��_��$����l �1$�(� ��`�1��:�g8k8cu؄,@%M�a ��PAC��L��@n� �ac�y������l0�̑�@'�P@.ܓ` � #����� 1Y�(u�3ls��# �,`����t1 &��6,�#6�@X�jĞ:��c�B`1W'3d����5�4�"W�� B�����&�^ Ec(�o �D�C~�+ ��~B�@�s�D �HH@�M-`�$��r5~7`�մ�H%�&��������, l�X"�4 �0�D�|*��R''����BH`("�P�hr���;�H@���O�p& � �"X" � PW�X�}� ����Єi�A1τ&��!�:�@4�(o� @�@Dy���H��͗���!p�Hh?.� �]6�k�K� `T�Ʃ�LY� ,p��@�FD�a ��4�~`88Δcn����a~� p��G>@Y@3��<�Ր�Yqj��LO2���cH~"X/@��ȏ|�����b�KY!� Ռ��>hC���#��B�"�H! ���Ƶ>�R�$�7�R� �j�ą�L(E�ɹ ���B�C�O(�D���ވ� !��4d�b]ZWJ �B$?p �1(Ks4�c� X@���0��v�(��)?�B��!̏|��G>@�# ���d�%I)r pv@�5��P���˧� �B̗b�k2�?��37�:���IW��h@�_I`u� ��JV�x?��/����LO�?Q' |�@<���H-�S4��vC�� ���Je�A,���J@I ��O�>1M'`{����K4q +��%n`h�" p� ����� �|v���>��j��ay� � ct&���~���I�%��BC� ������2�I:$7x���( I �ؗd�t���)~D 5�h ȏ|�j�Q�5� `藦Fƣ��m�DI��'��$�l�>��d t�Sd��[+�3�(:�8�3ǁ�@�Dp <�P4 ?�B(th ȏ|�F/��@~��0�� A(�~���Og��Xj)v�0{PH6AD#��1�u� 8?��*��@ ���6��[��n�KI2a'$�� �B�d�`Q�����8� �)C00 \@�� ��m< �̐����Tꮙ�S2�#y-3 @��<���F��5���X����Q ��T*�H%.�� 5Y�|3��2 8��Y�b�1����|��� �!�T�0�# �,�c^!��"X�P (»��>�K� ,��$���a@ 9�&��AAr�`<��$�"��`l, D��g����D8��@!cb`�HZrLFph��`6�e� X��Ii 7����~n��9� �Q?���m����`�`�C��G��A0"�v~?^�P���F h6�@ �T�p��) %�����~ ���:��.��cOrx)[%dT7��3(��\$��0 �3�3�9�NĹ`3�" ��0��a6�mN^�akG��gܔ���"�E[Y(b#����~�G q;X���nCn�!��%� 1��@6�˖�9oP��� !�.b��D` �@X)Jm0 �BP�s,�:&�Ȅ �Ap ���g@ByU!���~�= �� |�D�<&��%���;@PKy`�!4� D�Nh��_�0���=�#�����pB�3p�2&Z `���t �7����E�:6 ���2PDIa] E��$���l0����u���[[h� �b#X��B~��� (" �섎:V���~� � J��I�ZLذ,@M��nb�Ά�8��$����!b�L�x�<��鴉`r�����T�,E̍�J��U4#[�G>@�O�@��x�h��pv�$�P ��b4 X�k�h�С(��(� ��e�f, R�p�A�K���߼@����%��B�Ep,Ua7$���O"�4�:���1�@T�v ��t?~nOu� # �6U+��H>�a��0X@xI �<�c`�Fn���T�3`B��Xk�9h�6��7`4 ��cP�Aȏ|�����X@P ��`�͐�����E1EX��p�A" � ?F�hA/PQ���$i@"`�������)�#���hH�(���@�\�4�&p�NPX@��1�D�D` �# ����;pu\��W�Ѐ��t������D��h"0?��!L~� �3@�@~��0�2�ځ�0�Өp"��!�:`� ��t�����E, bЂkB~��cp�6݆!J� �\a������g;H��� �?��Opj�94+P $�!��ud��7f�`����n�7��0 ��X@��\�\�C@�@"������X@�( ռ�b �s����eڵ��� ��긂���,P��������B빔�-����%Q�D�$P7�@�H[l'�p���bT��j=�`>BP�&��(@���42��R��(�a��������x(7� g`N��x?w" @�b0��/I�h����aNX"j� Ȁ��BH'�(���!���Mx?D����P)���$���X@�P� ��%����6�m ,`����Z��� =-!+$n�D\$  �q3BHH(3x��� �X l���0#F"��`� �=�~@�\ meqx�%�@�&!$l4hJ�h�^��`+���`��2/< H��?`C�h��h�P����m, ?@6���`;'�ЀС(�|?�0q ���C�G>@��+`h‘�`R���W�����*X�m�'?�B��!d8�t��Q:C����S�P*/N��� M�NaP8��I .y |�H�F؁�#?�B!! @���%�x�AC�: ��P��E"`Q��@��>���� �*8<hPB� �0@���!����h��TC�ڡid�Z��A�H[�*�|@�@ $�F����hC�� �z��4�3�" �x@œѠ,�T3�5��4�=���vZ�|6��$�@!`~�먁�}��!( 7� &�.*�L!j=��Xޏ��=~`-Ֆ�=�j�z��܄����m0��5d������4�|�ΐ@`��9&�D9���a�5l����r�kh?^���h�ȏ|��G� A"�4��G>@�# �B��;��� ��x��AX0Q@�h��#yY>h #��<��6)04�"�V��D�D ЀD�h@�:4H���B�{(4��0�$��B)��X�h^@�lA0YX!���*�F8?!d�P�Q��# �,���!qt��͈ ��B� �A4<��@��ru �>�����v�0�B i q&����X@<� �F� . n�, �$B��\]�$&��Ԥ;H}�H��D��� �ځ�ŀ>�sx8�5����+ ��4�$����?� >�Ol��Pz��Qg����<� Q~u(�$� ��$D&���- ! H��1�D�qLm�8�������'�^�DX@�Y,`רn�m�s�l�O$R��IZ��>��HB,��BB�#BH��� ?�B��å!� @�l̦FR��x?��'����̫�!���' �@�ox�6��؆�i?`���G>@C"�:Q�3`����!d�@$���8���x�~�C̈���E��!̏|��0F�3!I��� N�/L:yf��¶�BH�%!`�����`8�P �@! I�� B�Z8�,@�&�D��@04�U�k �@�� ��B1x��I`�f؃��h `����LA!�\@ ,�?!V�W�|��^�KQ�n� fa $���@VP4I��h�D@�99 , ��B�X@�c3_'4��`�`P �V)|�}R�h,�6�D��8,(�?���3&a ܁��L�(ϨE P��P�X��@L�0BH`{&�6%c �<��'���S @�^�%�CX�3�Ir���� P � �����Y����82 ?�B��eg�(�v�Z����-@�pU�G"�\��􉣚f h|�����!X�����8�%!B�$8 $�;�r�ez���tѨ\��Mր$�v �Ay��t�� �G8�K- �(p����.�H�(���@!Il�e1�CȘ8u'�|Tk+���_�j4 6��4�ф� �b�\=sւ6�Q@`�� �$ u�@LV� ���<6�4���ʖ�mPJg ���eb�< ��+�f��O"� ���n�-�ά"PR��B)��]3�����40������D�/� l�X��,����l�^�� $�$� &o��&7��T����� �&z�5�f�@I �0���*2�� �̞��@ޏ� ��$�PL�B1T��8������E@K@ $?�v� �1E�����i$`u������#!d \���X@:� ڧE��7g��S����(�و3!�t��a�f���pu\A�� �% @��B40 Q>�$��!d� ���F��, b���@�, ��>����a�Mu t��D;P ,�e��{`[F�Z ��X@ �~���$�. ` I`$�P-x��$ 1�^#Y@��(�॰�vvlCL`%��n�!'I�$��ъQ ` Iհ���Y�#4G@����a, &� J� �9A���� �[C�@dOq �D!г p#���B0��v8 , �6��D,�� I�$�s X��A�h�v�r��Y,��8X�2X���I�8�$��E�>�B5�]��Csބ$�����=�<���n��.�, ְV�<fj! �$�[� �p�l���,f C���Dp� �7I@�`փz>I`�4n���S(,`�\�{�� X�S$ �����ٔ8�tHqT ` I &�Y) 3,�4�Ί��@�I� ��J@V��T�� X@M�x�!��88 P����DZ ), l�)�F��ـ(���$�'X@7H:�0��P7(B�`I��v�'H`�� H��q ,`s����0�{I A4Xn@� ���UǫCP��", x�e�N��L�����@� ���$nRS������aT��$P�s�����D�� ``ƚ��OmX�M��D ܃�LS�A� �/��^� ~0�( ��(g0`�!% 0X@��`7<�$Iq�0� , h4`��]�" Z�$� X@��(I`#���U�p#,`T8�~�d+�,�OhN��X@p�U�������;�Y�����w��i1E�2��( @�����$Їq 0U�JsF�� {e�&۰Ѣ�b ke��w���FaI�6 ���`p& b��JA\h ����m H����@G�0 H�F��>�R�x3G!��� H}���$��L[�/�$l�܈sX �AZP�$ ��|.����$�jy�g�@�pb���",�$�X�yɴ����@( , b���p��P7,`�d��9: �Q��c�p��nh�>�䟕0lFX:H�>��Q���a�� @�(�� �5�!4dkXk��,�#d��m �mh�&4qN���0�5}b#�� ��:',`T$���W1I��қ�,��Y���t�LZ ��5���%��J\ H�c8�(t��9`�" ��X�1 I;! 8���"����j�����@V@�,])چ��L� Y! ��~�X@LH}$+�g��`�y�Ѓ��I`p�͌��"�3 �I�0L;���,�����H� �k�* �`p& ��.ͨ`�� �>��@���>�A������PV?0��T�, �t�<�Dn0���$��B�1/��T�o�bB� 1C�֐vL"�8,E�xoX��M,�7;�0 �# �, �[�� X@4���0l�Mw`O# �$�X���6 ��D���b,�*��$�6،�(R9 X��s�! #;��ҩ`�c��! �����8�-?�B��$�4 ?�B��(f��XD�?�~&:����/pC�`�QXe������� T�D� �@��4 "�3Gq�x�#��*�O�(���D�S;�K� �� ����PZ^K�E}� �:p���\�B� H�3Ѐ��a�5W�C��1�~p��! DyW`h�����Ǩ�Da��-L�0LP�nȏ|�FyW`h@~��+o���an� ���b�`� D �� h �!�����������B���H@ 48)E��|x`6���� m�O~��� (��E~t�΁Ѐ���@VN�����@P� 4�؁��a"hB�!�*��a~ ?�Bh� H�@ �DC�@1� ~v��+�$8 o�@�$}3M�� ,�S|Cp(rCY�B0 ����Hh���m����`ң�l���@"H��!0>�*^�Hkê W�*\ū��KP̆VqQhŬ(, 4b� k� G� �@a�E^̆���@h q�%��(� �r�i�g���Fx` �,�@(� ˂$��"�J! �RB�O ~�D�@`O�Ѝ����Е�����YjxƱ}�3�f�Ǡ�s�jH��!I t|7r�Q4Z"PZ��� � �+���BC!4(N�HM'AF�I,�5$��y�N0w� �SP� �N�P ESB�=� (�]� 1�o�x?T�5,I��!LƠ4~P \�������PB��I�&D�@"�d� � ��� @O>@GBH;r� � J�M��=x6 tȅD *�`� Ѐl�:M���������BHx?݁�����A^�aD�x0`��HD�Q��g00�Bp@��p ��FF'x)�F��A�6�2A!�$��@ �] �,,K @��:��Ѐ����ȏ|�"g�WD8q���.�|��=dw� �/ -B"� �DJV�g��`�!`���}�$ X] ﰀ�`P��!cbC%?@���ЀD�|*����`@M�p�'��=MV�= $�!A.�H9I@5�� S�F;�*��ޣ���B�X4%�<��� &�:����c�@q#!p��@���l$QB��@'�� ���� �K�H��&hKJ HI`#$ ��� �M!D(Ec� h3D�$/�B�� �d�u�.�V�'��u�.�b���܆P RJ��@܃���DZL���P Σj8��tI�E�+���I� x+��C��gL�"�O �2�S�Hw�+�!t@;$["��A � *E�"�I=aͧ�$����F~ �4�x���E"�4 0�;�B6� ,ʻ;@�# �T�q$�W@uI�jI�$��^�X�f$&�G>@�ahs.80�5$nH�A�<�y� n!� 7�����mȏ|�&��� p����&�.��i@a(l����P� �Q�؁��!k��TC!9! ��$> K��X��f� h ��*��IЀ��a"h4�ȄD j)4���N`�����aYH�R�� �I���� �N'!��P��R���i���t�u2�q��%솲�R� ˶a�4���l�CUP��`B��߄-Q��h��L�̀p|�h=�B~��������# $��z�g�� , �dG�2nKYF�<h/�,:��`�C���X>P4��9Ѓb.lC�H�A��&���1���xϰ�# �,(�?�l�-�~ �{3 �̀��SP$@�F"�94 T?�~h@)(<ǀ�$�.0�L���`����� DK��=���:�B�h!�����8s*R#M�MQA � �~z��!Q�1�tE�~��� !��$��d��s8��1 Q N�3�A���.��H`*R`H` @���,ǚk�BPgkYԇ=S�@U�:�an�Qt��v�L0�h0�fa����-�v�X@` -�`|��Pj� �H���U���PУ���� ,� ��5��b�T��hWȏ|��=HX��)˂� N@C� �!A,&��)I ?F�� ȏ�� �A~� �e��wlG�0�E �ɒ�FA� �� p@��18!dT 4���"|?���?��\� ����0eh�x?v�0`$�A���pe� @,��H�ΐ@EC $?pu��g� ^�dn�h��G�?��Ǩ�XH~ 7 >P�# �, �\PK���ܐ�,B�� ~₪0�# �� �d���J@��@�?�f&Q� z����]��uer8�`>����me'E��� ?9!-o���x���"�G>@�# ���� ���`�d�K@��� I`����PX@�%����ݐ������P��y����,��� @�* �1a_����E� $�,�j8C1�>lE06��&7����� @�)���p XQ�S8�D��N�K"�8� � �ɄH���ab.�O-������� c( ��E�3�A�I Ht��i�)`�Rl ��~�D����p����&�;�b4. ҹ=qK����=E�� �m�8��!0B�Q��a�x��!Ԧm  ��dJ��a1`�{M��$���C�Im�^C�i�9�#�! ��WS (4�x��g��q�]�1*�E;B�a0���&�N���k�� J�,���b�v@���œ���n��^T����@]� ̐D@X�;�;������@D�0`������.HW��r pv ʻ;@X�A�A�����*)�:��x���j��DZ�����M� Ѐ�$�����B�X��K�!�Bo �u��\��\�[6�T)� i�h��)m�b�!�F��&�8 ��%X@!����pW���`�A?��D��( 8 ��$��D"@����D� � ���/�N�'D8�YЀ@ZE��3����e���(��!+�1p ���a���1�'�"L��'H�v@p��1�m���"�s�! X��\�D��M�� ����NX@H �t�@�8�H6 �� D`�# ����p @"~ ��ea�E�P(�S����,��P(�S�P��ˍ�  �tn�x@�1��y��\v ΀.��$���b� nAV������H!�$�I5�X �"t�>_��B5x�|�.U�k'7��. x+�� 4��vfqII��EH<�r� X��7�[�GE��q�8P� H��h��S��'h��`����� ����=� �1h�`u� L�?&�����'X@\�M��a`pij$ �3d�x��� ��%H��� ��g�A"h7܆����:� %$�$@�">P�FKd���P� �L�"�h��O$����و^����]�B"8|�$��D��1�W2A���-`�G5�Đ3X�H� %`$���]! @����ZMA�΁��B@X��@����b�p#p���~� ���l˄�^�6�%8�Xe�d�b�kHH��A���J�-lY�&Ӟ�f� p@:xk@ t�1B��cE�[DyW`h�sp �Ѐ �|��1�3~`jF��IX3#�%���.F!��q����B�`l�� o2^]�I�6A��ܠh��z� �`�T?�*�&@#�d5���D~��P�р��DX���O��" GV�%�"I؊$q��Q�'7�؊$)Z��%� �����30����y�و� /#�)BVA�;@� EP� (U!:��$T# @�7#�x+�:�2A����'H �Vo; 8�A��G>@�1� �1*�E;�� @��4�����a���E�W�FB:��g�6$��(>C�" ���%�ЎS��K/�XQ� �4����!���s1� &8@M��[�d�������bfC �;��_2���@͘ �&����P@�dنV�k��H �g��c �O�zp�k�D���-H���:B�Į��F���$0r@��)%O����Ro�h,�tQg  �����:c\��u�ar� E�!�Z�D�l `p& (�� g>� H �$�:�g���sL����(�A���'�� !�f�$���C"� B�DyW`h@~����`�"��+ȏ|�zn�h@�:�#�*-�v_�귲܁D@�7����gBR�� B�����M� x�Y�o$RP Y@0I $?��g������ � ������D� Ԁ��3��1��D����3��$?@ʀ��Q�D��� �5��G>@�&���?���t��A�G>@A;0#�܆?�BCt� � 0����iY|�eq6��N��:An!j���< � |�$�@��zK���X�� �����a"(� �!�`cF_V2I���l� �'��s$��6B���Ł�� ��@C�Z�?6B((�1*�E;�h ���B.�h�1������a"~ $�� ^� �A�K�X���FI~���0B�B"����p`�A"@&��d�X�!P��$�]� H-�ЀD��@04�" ���3�I(�����(�du�V0�8K1 �C!�Z0 �a�����F; >����-���e�����@����������������h+���ƙ �[���� �.D��k@�"�5R� x�(/)\�����C3Z�� �A��:,�B�fN ����bB�!�Z��2*�ȏ|���$@0^ `�b@QȆ�!Ā�� ͒ ��� A(�~��e;����� /o��Aq ��� X��͌��8������H( �ac���� >�)�����S�Ć�,��D�|�A�����Ӏ��! ���0��Ob�c�',� ����@�I�/����I�A;t��2%��I&���� ,�-�<\ p 3M�A���$0p�Sx?� �S�&�O�aIrI U���8�����a����G>@A�� ��Ѐ�� �(�  ���(i@"�4�$���@�,� ��nDDc}, �����R��F��(����I�! 0���3� �B��B*$�7 (" �[ R�G���Ӕx�^K���$�T H $�B�U 3,����$�~Ck�]�r!��pG�vH}"4��|�A�I �l.f'����8`�  �I� �26A����H��0�r�Y�%x=� �$�Q�#����&T�p�0���"؀�^�>� ��� ���$�! ���V�O P��<~p � 7 ��<�� BD" �#�&�A-9X��:b����zH�� �2j�'� !d$r�Fpi�O��Q^�XE�%���- ,�'�p��aΏ|��A[7@s9a# �$���@�h0�%��F�C\�fn~vԛ�~��AǠ8��HW�j�=-L�8Q�� Tq� �)�}�Y�b�a� �h������XCO�� p�w�p�����" <�0B�������3�X�3� #!�p��F�b���p��~��!� �����H���4 �6��A��c�fih�Bu\3 u ���K4/`m�V�$ r��*�$1I�d7`�$?�M�A 3�L֑ ] H�5 0��@������D�h���~��L �qA24�h�V���1� 4� �.����LX$B�X su��K�!p�@!� �%��# �����2`h���`?�� j��< 6�@"4 ��(Р'��Z�$`X��(Q *H�����z���Q�h!4 �|���!̏Q.ځD����y�0C��@I�� �_� ����8�z� �!�`Q�K� @ 0Y,l�%������$��0BAC@-4��x@A�D�,(05�nϞI,@)P�$�.�C]y),������ �,#���:1�{b�b1���!ڏ3� !$ 8�Z�/N��a��`Z�h@`(w 7x>c��1H�6�fې�@Cx��gY(� �h�)P���~����� MuI���@ѕ������d�� �dǸ@Avl �$@~��*Y@�X*E��"���,����T҅sx�,�%$k��J_3�֦�8��@K�6]�ЁB ���a��2�A��^�x0�@"�Ǡ���!̏|��>�,.�\` �����m �� ����! ��t�(� � �x���a"��`� �=��`4,`�����H���:i�!c�� 1O' `Kr&Ѐ�<�?�`���� p��! !I�1��O���c`3�X�� ��N=�>`�2�2�k�sP5eAL�$�>�! ��<�YA� I��CV���IY�$9{�$EK`��h�`K ��� 2�N��Kր��B�M ��R(K�-����Dp @� ���1a ��MX�gH$� ):�/��lP_� ��p�c��G>@�# ���؁(�����8�� �<84 �qAu�B*�dN,a4���)���d@��X�lPj�{$�@��Kn�t�Ȏ�"�DL!����2�Y��C� ���WaK=@���� t�FD�! ��D` @9�� ��t�����H����2`h,��B ���e��7.���a�g6$D�D����9ISp X���,m� &�p���pL�D@9�L"P4�yr������ �(�&� X�9t�$���h��`3�@���d��e� ,m��_:GɅp�P��/�^Ji ��#����&�G�̳a`��b+A.LrA|� EU�>~@H� *r�r�\�1m4y?e�;x�P���1�3~`jF�@�HQ�. ��0��I���!L�E H�e$�0M�>؀ŀ x0@<�և�9���ZKh,E��BH���@̐�3�ť������KGr�� 2]nI�a��N� N��D@��%���l�$ th � ��4 w���1����C�wi���p�V�jm����� :D��G��w�/6ԟ�Bh8PI@l|�T���1)������� ��l`��$��fV���h��̜�U�p L�8��[(4����!��E��@�I�Nx��A��qH�4A4Z��B� �,M��R���H�a$���JA�����Q�T��f!��v\W�����_�H�.@ȏ|�&?@ʀ��Q�D���N~���<����YI��l��@X@'@ी6J�FnH�N�|@A�# �K��;�Ljg.=��Ѐ�'r pv ?�B�: �q��,��|n � )%�ă����dIx�a`����hJ1�5�d$�]�Mt�i��D���(��PQ�!ɑ��h!J! �ܰ}XY���॰��<[����y��P�%��B�)�v!�lC�2>� ��@n@[���Bp.@ ���Z�NCHC����;��@"��!?F�h�# ���l�f�� Ϳ ��B��Hf>x�(�仏g��P\�X�/>B`!#��\�iE'�Ŭp��$��JX*������C�E�_��Pp��-h���� �� 9� P�f��vH� ���$p5���y a��D��# ��x���\�وI ��`X�d �fL���@H�f<�� �J�������yI<�@ #d(�A�gH�� ��4�LP�2�x� @~��0�2� ~�� �W� A`�l�(`FB�uI������ �'��?pۼJY� 4�~Y@iNtnd�eA���� �( ���vB�@!���@BH���H � ��gb�ܰ���� ��I'$M�)X���,@$���!̏|��G>@Y�i���! @Z N��I@T���h�!Hv� ��h@1�Ǡ�L��c��H+�Ѐ�/R� �#�#��@x�!$���c�Z��|��pg�����* Gȏ|�z�=�7ڏ�a������a�m��P��h�Z�g􋪰k�.�6!�b�&@1H,�,�f�hr�Pq�b�( u���D̓75��bz��Q���d���B��n@5F�՘��.B(�6���a�qI�D� x�3�O~��0?�B���R��`�$��@���Ѧ�a6��  8���)��pO���V���&����(!� .:F74 �޴�S���7@��8�� <@�:%`n�n�Tx `�O��]4���'*�H�����=Hx ��RX@!!��̆�H� �<��,?:A`q�P�$�Z�� , bE��å�B�%�G��� X�Q^h���.=hKI@.��5�Z�H�#'�@#����B x$�`q��?a~`5���a"� ˂r ������$?��- ���`��`�~�~��mH���*�-��Y�1�4��.EI�h����<�.����,`�&��↹�:���$�fÃ0(q���a�g���$�$`��k�bH���k��׌��� �2���MW(t ��G>@�# �, &l��v�@:g�"p��� Q� !d�h�"th `�4�D�hЍb5+��g���F~��0�{br�sH��DB��!̏|����1 G ���@�� 8����d�H�G�(���� ��)��v9����&���<I`4�آZ�~�=n� <��r�ia���\�I�|�"T ݙ'dDu��n@� ���>R�Faq������B��k63I +�05��`ˢ�,������,��T*D AX����YvB)� e�S ��@|�!@�-���+���(�. MOa ����*vH4���ȏ|�j=��DĈ I�u:�f�J�� ʻ;@�L@�" ?�B���eQVr (|� @=��� 0np h �ܠ�,��� �`=LA]Y&_3lV)���f��)rC�#!\�v�H;E��$�kp�#� ,E܃�| � �7���5P+ �աI`H �( ��D�):��g�VQ>7�Y��6���aT��:�B����� ?��3���3K ,�:Cuf㚴� �|����s��1�����a~��0P�uY@R���|��"X�M����#����I���@�����@�C�ȏ|�F�$�?*@z���cy��FI~��0 >���ȏ|���4���=x'" $������3�,?�B�~B"0~� �>� Bȏ|��_W�8M~��0?�B����� @�$DyWp �C�3�d�I4�4 H,���$p����5 ����8��I�'h�j� 8�=��D���(4�0�$@��0��3��N� �^C`���f/�e4=(�D|�}�"�'Y !q'ȅ=�4�J&, 4��x��B�g�6��� �%��@�h �!`Y#?�B� �%�~ ���I�# ����D��@04�" ���3�a#���2{�/���� �0�M� � ���� >@�I6u�'t�c�A(�~ ʯ�$�?�#���C����:�cT��v���x0��a~��8�Z��\���0�3��x?��l�'p�t@��� }� X��&�� �X���� 0?��(f����(�"�,`�h�c��E"���8N�a� �� � ��-P E�3h�6��`F. X U��^W��N�9���T8(R �2P� `��B ��Lt��1�,�� ��9����$P(���ǀJD��g����? ���ӿ�@!�#���f\4 �>�&���(�D��� Q^�t1X ��`�D��f�I"`����-`�� H&�lF ��÷I����0|�Q�'�2P� ��B ��Lt�`I� !�0GG����' ���?Tc �n��r�qm���6}"4���,mYA������jф��� 8�c��`�h�X N�Ip�נ�! NO)�����R N`����QX�1�Q$���$�$ ��fc�$�@x���B��� `� 0����A� ��!�/� �ȏ|�� ;�gBnV�KЀK7e �%�,�Daq�W mV &����@ � �f\��|�I "l����@�na p�H<��D��H����~� �_ ���|� �� ���j)���-����+L��0I ��D!r�-�>��6p�b���I &���)Z0(�� �����9ǀt1���(�^@�tB�"�P(ʆ���G�J��0�DD���J�hKY�Vh΃:NV��- 8���J��AU�~�6��rC�!�R�-BzO �, t �(HV@%/��� ���m�d�� (��I�z>7`�'�Fx���!0�&�ڰ1 ���HH�`�$��S� � ���8�z�~ �W)�`j��>M;�R�zK󿾟w ]@h�4D��T����"9���F��� �< `B| ���:X����D�D�@C��ax�QB�P K@Q�����@�/��כ�h�+�K�x�(�j��+̏|��cPAn� ��ݜ�!L���?�~h�`�FS���w �B�8 �����AI@:!c�}҅r�h�F��7���_�;Co�@ �? P��3&� ��5����G>@� e� �X�(�"��D'?�B� ��������`4 �G>@Y�6� ! \W`h@~��P/�:�BȮ��I����!#8E1hC�v@���z��f��1��m(^�J �Sl@I�a ��� Xhq��`�Ԅr �U��W�VA^�0��!dw�1�>�h�b4����� @�����&���*i?p uB�g4D�D���F �PD1�x�/��m07��`l@TgF��n�i"8|���g0P�^n��`h=\ ����1��G@�g�gv�@�,�ͼ�:#��j� �f�%���WE�P4�A՘��ю1x)@5t�@NkFhX�� ؎��`lf#����lg8?� hhEh!K�� �,�7d>�֒���@ـ8|�$������4���t?��� �',��R�vMV��V`�-X��� D���AK��s�GkFV���O�!D�<�6Ox@p(:Zm���\�C"P,�O �P��@�X��&A$��� �`!B ��� �>��i�,�.���5p4� �Bf��n! �|�;[B;` ��o�����a ~5YDnp� P�� ��=�Y��1���&d*�h h4�<0�B�Z�0���!�A@�Y�� ��f0��P6��'�I `���y�3��DBHݲ[�� ȅ{R,AT``����5�$& ��t��`�B~�����:@�.f��_؆�Bu�hkQ��SG�~�@U,��d��B�4�����T��Ay>���؄�! �K�h,E� $��bqȏuE����/B�`.���AI ȿI�,�$�T�� ( �D� ��ȿ @;���r5~7`�մ�H%�&��������, l�X"�4 �0�D�|*��R''����BH`!�����_Q6("�P�hr���;�H@���O�p& � �"X" � PW�X�}� ����Єi�A1τ&��!�:�@4�(o� @�@Dy��ъ߶��4 �J� @ۛ/��C����~\@��l&�� �` �����C3�t����3e�6�D�i�U!D ����D`�� ��:��Ǚr̍��!̏Q.ځ��! hv����? N�U���I��]p I�O$�h����B�?@ y)+$z��1�; �Gmș�|P(P) |Rи��P �/P�*(�{)�ʋ�2���� ����C�XJV`�@ �����i�!Q 9�d�X@Hw� E�F�"t@�[*>����sC������'�V�Ƥ�O(�D���ވ� !��4d�b]ZWJ �B$?p �1(Ks4�c� D�K�~�TM���`'�0��# ������a~��0?�B�h@VX��"7�W`�^Cx Ua��L˿���4`�T���[h��R�|`M&�P��r�V'�����ăЀ(�:����Q^�/�Z�W�@%�C ��]ח�@b`�' ԟ��>�M I�Y$���)�l�������t��� `K2׌���i ��c�����kX@!��T&T�`�J@i1�����~�D��#A�t�g an�~�D�b\�Fa�.�7�BH9laI ���g�h �j��NAѮF�G D���@�ި�ǀ0�KS#�Qh��F6L���AP�/`9�:��ҁO`I �J�Sd��[+�3�(:�8�3ǁ�@�Dp <�P4 ?�B(th ȏ|�F/��@~��0�� A(�~���Og��Xj)v�0{PH6AD#��1�u� 8?��*��@ ���6��[��n�KI2a'$�� �B�d�`Q�����8� �)C00 \@�� ��m<� ڇt\f�|�� b*u�̍��)��Ց��� �R�@I������L,XI����_p*�� ��$�BƄ�, Q��E��G��I�I���� h�{���+� ^� �dm����O� �* �ِ�!d� �aOd���,� ���v� �%��=p 1�V�� zA'. X��I[1� �r�M� b�����x XHE����X@�: �h=8rÉ0&p^3x�$B����3��䘌�М��lh ����]��@n@5����+s hh�~�8۠G��(�� �П� H-�`DB��~��1�Qg!�t@�v�O�,�E����� "P�մ\�~�B x(�0��e+��n� )�ؓ��^�VIY�ča�� �:1I�10���� -A�$�q.�̹��4 ar��s@��yX�Z�b�7��?�t�V����`=��BB@��Vp���ېt��h �B ��ц:$��;�C��mE��4`ٲ�"� x�!D�E �����#E� &a�Cjt��_DŽ�0d�1��3@�b���H(/�*���"X�o����X����G`�$V�$p��`hj),4���B�� �����>����r`$������7�A�xB�D @,���������`���؀�:�#G� �|���(��ձ!$7 ���"J �R(�\$���g��t��� ���BN�� � B~��� (" �섎:V���~� � J��I�ZLذ,@M��nb�Ά�8��$����!b�L�x�<��鴉`r�����T��4���P����@�^E�1�E~����� DB�1� 4 7�� � H�@�� h@"�נ!��CP 0Q!��;&X��K�|�k���!,�7o�a8@"�GI�m�yKU� � A4�, ��e#e�/h��=��64�$ �T� #�8�B<�l`i�$�� ��u���"�*�TT��f��?�֔s�zm�xn�h@"�Ǡ���!����$� ��Λ!;7����b��:�p�D@6zA~� p�$�^���+�4`IҀD��1���FSlG"�4�� АPP,`5���$i�M��� ����b�� ���G>@ @v��;@��Y#�?e�# �����7���'Z ^@�, a�>"H�b�����K��'C�T@r��O~ �,��MH�4 u��ZB�?F������8^�/����j�Ma� X>{`��V?�~BOK� �p�IAHD�x܌H���wDl�H��ʦ�؜f�l7�l�*��P]II�eO��s�( �9���\^C� �E6�+�g���� `$F�D��A{���ȹ@8�@�&!$l4hJ�h�^��`+���`��2/< H��?`C�h��h�PBX�8�����c�Ȇs0�l�D��:4���&.`#�x���!�q M8L x����Z�_� � ���G>@�# �,'���p6 AgH2�c�p��J�ʼn�9���) G?I�%��X �;�v�G>@"$�( ?�B�$8h�@$ ��Hl 0(uЇ�qVU�Y�g J(�`܀؆a�(��!raȅD�<��x?�� &Րj�vhY�Vh�b�n�V� ,��$B��џ� +������>@ b ���FBh�{���+� ^� �z��4�3�" �x@œѠ,�T3�5��4�=���vZ�0px� ;'�� �|6��$�@!`~�먁�}��!( 7� &�.*�L!j=��Xޏ��=~`-Ֆ�=�j�z��܄����m0��5d������4�|�ΐ@`��9&�D9��� !,��� �0rCnx �����r ��������!�UZHkƣn���Hv�����a~��P��`�P>7!ϐ5 & �h�Wy$/ �-a�T���Y�F �&Q��ɖr+ `�@"H�� h@"h4 @��@�Y!�=��~�|�q�Dy�L4/�]� �,��@Ehd� ���k�����B��Ő8:��fD��� !q� �DP Jz�:�@}‹�}�E;hU!���8B�W� , l�@j� r��x���H!К�%�X@`�JM��$�׈�JII ���X@\ ��#8���^�8 �@�2�]i�H 5U�|B�����6��Ξ�!�xT���P I 0�(�?84R�V1���l"AU����$���F" H�8&��p�L~������`��E", �,�kT 7�6�9L6u�'�NI6����j)|���$� @�b�N��WP ��h���0��B�4e���(�. Mbd�`65�����>Ōg`^� !H�> ��h��}��a���6l�H�;�.?�BBAԉ:��d���! h� ĄD��A6H��3Ѐ��bF�X��(���a~���8�0ʞAIT�_p ~a��3 x?����B�M��S�R@���h�$,0�X�  �@� D�(� \D@�@ ^�H�$��(f��JD�?�~&:,�?o-C~��P �e{�X����e%�CX@5�Ǡ�SP� �O������$�a����R�v�YX ��)��E�4��8 E����Mѝ����(�h��D��H!x,�籙��v @(� ��hM�@AC(v� &��o��`�'���lC�H|@Q>�#���O����0c�h �X�j�� ��H��X��ˢq�� Fz�d�H��X�� �M���:ϣ� ,`��1���I`Ő� l�\`?�1tTk@Chh �HK�%�t;� &K��`��0�B���p ��@����$P-;�@��ԊpP�h�g\BL�U"^Љ�ACΣjZB�H4��\�>qT�̠ ���_�t= 03}���ܰ$�@���$�Dpg�Pn��Lo��ߜ.���{,���G��XHր$�v �A�H�X#�<��:�(�J�eQ��Gc�W� ��p��Ԓ@n�� � �(��B�ĉ+ $����FX�9���SwX�G@����[�u�F�`a���@�M� @)����3g-hC�$&�RH� 1Q' �`�9��c#��A�19��l �E�t�O X�!fγ���RoV�I ��P b(V��8b�b2�A`(&SI@S ���F� P!�$��Ԓ4�8 ����8�1IQ옪���-L�" �6'1{rŎ� bǼ�g��@�� 9! �>��t��I3�ձ:t���`�1���=�+��b�ZL@i�^𣴔�K]���)M��J<�@$?�h �v�b��*%u��`)��9��5��*!J�<_\�H�+���6�EH��I`�4n���S(,`�\�{���W�Q 0���s��J� +!+�@J X�S$ �����ٔ8�tHqT ` I &�Y) 3,�4��<*2kH!X'�, $ (Y P��+`I@ 4�N���h���$@��? �i1���$�m� 6f�g���`� ��]��H��q��$�O; �$��Qq$ H�ʸ�9X��hƁ= �$� ,7�t ������! � ۇtV�<ò`��w&��X@Lh y�DPa7�) HN‹���0*XC( `]8�� L��M A �f�I;��ц�n�J��=� �d�{Оi >!���%�@��J�i%��^� ~0�( ��(g0`�!% 0X@��`7<�$Iq�0� , h4`��]�" Z�$� X@��(I`#��]�4��jn�� �Y�/�l%�� M�)� H��X�Z�s�p� +p����G�_�KG|$�'��n�8 #&�@FO�gs� ���XC��8���`%�9�ap��2�a�mX�h�P�������;Y� b c���$� H�E�8�1G`� .���̈�r X�6�$�^|{N�#~g��$��l$���#(��7#q������$�'� H,�ʹ�X@�,��8����EH�����Y��H���{V�tY'�8ȣ�Ȑ�@�X* ��{�p/X@��C ����X�q~�s�dP?��BpF�0�k�BK, � �����e(�d���5� (`74U��w6�����T���.dn��� A0��`8�� k�2V�������'Z�a(�b�j�̨8��$���,X�o�L���X}MJ�$��hĖ$ӌ"�Q,`��&�X>��~,ʑS�;Y�>�� �a��*��C4�K�ts� ͕ס ,�$�X�yɴ����@( , b���p��P7,`�d��9: �Q��c�p��nh�>�䟕0l�= HDž6�$�t�d}f�" 6�T��>Qȅ1�k@Ch� , ְ��=XG�6!�@��0XMh��b�8# cM����t�$��   ���$�U�C`��&,���x�C�e+�>ӄV�dc ke~�*�����D����D@�� ��# D���� I��(�$��I� I�9�N~V��g�x����d�J�6�g` �!� Q���{�bB��#Y��8�< �͛��5�H� � lf4� �Y��K�a�y�t��`��M�@�,�\�VQ� �3I7�piF ���f� �z��|�)��$�$�/O�����o�E`I�����I r���,�$B��x)u�| ���.`1! d��!uXkH;&t�"\��,���&��p���B�ҭc�, �c��  6�;���� B� ,@��Z�Fa�`Q�k1Pp@Xl�\���EIO�#$��P ~aк&�$��b��Hp Eb#��݀V @��K��L: �� ��Ӊ,-Q��:l �'����BG�h�Ŷ@�� ����ZO'��t²��[Z̯�e�lu�^I��P��1{ �l�4��[Y!+�:����N'D��!&q�X3f_�g S� !��ȃx@.lP���ȃx/�@����]FGB.l�2���`K� ���JӍ�$ �ې+�3!h"��Ɯ0�* ��|&�u�Yyq����*_L[~Ԉ"��=��`:A,�j��@5X�������O���6!�����gƃ��|`�(>�A���`��i?��N5�� (�j�?n��~�W�����O�@�'^�ld�;�O$�� $A"(O1�@X]@"H�1]�D�tfr(2-5��?��(��t?~ �%(��H����|H����D R�������`nP@��U! �`�tB�8�x�����@���} �$c4��%QS�U$��� �i�Q�gڟXE��^AX� ,�.�"��;#)z` �C� ��CӶ� �c1�@�����qrh���` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` �0�` ����s'8�� ��3� 8'8g� � �� �'8m�m$��p8��g��Np8�8g� ,�3p��8g� ���� �8g �Np8�8����3pO�p�� �Np8'8g`)$N� ��H<����ij8�X ��$���68A��g �"� ��HW �9 ��?V �׎�U�`�C�Ц���?o�|(0��_;m 7}�4u #p�4o #p�:F�\u(0�4t �7}�4t �6}��_;h #ڇ`�C�𦏀� NC�`���>v�N+�;���tV��x�N��;���V�Ӄ�N��;=��¿�|�N��;��ﴝ�ӄ�N��;������ә�N��;����V�Ӏ�N��;�~����w���iA}������w���i�~��ϝ�ә�N �;���t��� �Nc�;=��t��ӄ�N��;���4�����N�;=��t���Z�Nw�;���t�����N��;���t_�Ӆ�N�;m�ﴠ��]�N�;���t���x�N��;���4��Ӏ�N��;����V��z�N��;���4���Z�N�;M�ﴡ�ә�Nc�;=�����Ӂ�N��;���4���wz���~������w�P�iB������w����;]��t�����N+�;���¿�Y�N�;���t��v�N�;���t��Ӏ�N�; ��4��Ӂ�N�;}��Wi�?Q�4����K��/ ���E���KC�/�Q�4E��u}i���9���_�~i/��A��_��~i���I���_ZXi�����I-�_�~i�������_Z�~i���Y�v�_Z�~i���A�v�_Z�~i���a�ƨ_ڷ~i�Z���G��*�KC�/�[����Ҿ�KS�/m��4��Ҽ�KC�/m���J�� �K��b������_��i/��a�6�_ZXi������F�_�Wi��������,�Kk����Y����K�� �( 2u(J�~΀ 8h@D�I@ ΀ 8�� �3� ΀ 8�@SoS�72�Է�S�]p �20��N� ��F��#𩑁����jd`�20�Q� ��F�T#P�;��� �����b�i�Y������j��3Z�g=S��L��3Z��:S��L��3�Y�g=S��L��3Z��?S��L��3L`0��v�zA��~�΀ 8� �C���:D�!x�j�kPե� �3���f���:�� ăx�A<��Sp�X�=�� .�B��� ������=0�� �C��$jg������[i��k q�0�zCp� �"LD��� �3�#^����zG��W�#xD��<�U��w�h�;�G���#`���m}G����#x����P��Cq���>��P��Cq���G4K��#���s��!�:�$��$zH��!g=S��Lq�3�Y�g=S��L�*TEH�"U��>�*TEH�"U���*r5���PGW7�SR�NI�:��@�\ utu�:�XNd�i��A�E���sv5�>뻂W􊇟��x�A<�� ăS�=��v6 0޺갭o�Z�YjѫoX����[��&��O`�q�WC�8��S�#L5��j�G~u֓&XO�N=i�BYHe�,� �� ��� `Xk�S��A��"�����/�Y�0֫�*`��_�A29�� ���E�F"�ɇ��-�_���HV� �3� \O9�|�/"�DG�@�#׈� DAj_ kQ��E��Z,kQ��E�\�Z�� ăx�A<8k5�#~�o��Lc0���yȀ�8|D�t>�Y:�&԰�tjXB� 5,!݄���\o�~��u8G�����룮����>�������������Z��x�� ��7�?߈��&ZO��~G��]�#x�������?���`���K����f�J|!�U��W_EH|!�U��W�Uo�!΀ 8� ��� :L@�� ��r�XԺZS�j��Ij^�v��a� ��?���`�s�k�į�v��aI, 2�$�<������7�:[�l��I��֤[gk҃��5�9?('�<���?`>| \Þw�}8Ćp�B[Cm a���� �<<�_�����ǀ��c�ex�1�<��x �<��ö�����ǀ��ZRhI}p�6P?�E�X͢,�@���&ZO�3 ΀)x \�t�uۭ�m�^��f� �u���:6�v�7u �����ʟ~*��^%z}�x�Q"�G ?% ��lkP�@ɷ%�O����g �h�@)�pM�5!�3o��ԙ�Pg��[�3{�������~�i=|����qM�[�Vo=���Dki��u�.��\Wr$�L_�3-!��t��AKH����:��PЯCAs�L��~�#���L��3q&�z,���(��O�?m惴���H�Z[��S��u���:�Tkkz���=��4�b`O^B��U� VA+X�`��Ą��P�������ku=A&~�V�d�k�������-�2���(�zf�u=3{����='"ELt��ҵ�� ]�?t��ҵ�� ?]�� 2��� ��+��P��BQ( �+��P���-�d0�k2�' `�(�����B���Ӥs�iR���4)��x��`�~��4���jH�Q�Ȯn�n$��^�F����ndW7|7�T�H�v�S�_L�6e,Z`� ﺃhx�A�z��$�w��A�W�������R�$�k���AD�R\�&@t/��l��kS�M��6%�ڔ�kS�5�$ �`�O�>�'P�@� �P�uJ��)"����c���Hm:����j�tn�h:�Z4ymWԾ9�z���2���(�Ԑ�WC�^ i2�X�B�?|���5���^�'��y!4Ǽ��c^G�1�#���Š���b�o��siLӧ1M��4}��������>|���������3|6��>�g� �o�%����d����S؇*�d����&`�9�b��@�������� �����~p�B�1�E�D{����=��A|������_�k|���u����_�k|���u����_�k|���u����_�k|������_�k|������_�k|������_�k|������ZY���,�B��jf_��}- �L��1�C��?@FAK(����_ iz5��Ԑ&�~ d�5��@&$�<0����C��U٘Wec^��yU6�k�x�5m� ��6^��"&���$�GUG�����$�� ���O�5@�d ��2������:����?�c?�����r�:����n�ndW7|7�T��v#�ڍ$U7�T�2(`�����ɀ�'�� v2�����'�� ���O6 � (�� x{k<��5���bo �G���#�$F�9)b8kh㬡Msq.�ި�Q �G�أ� �Q{����� �䁁�\�� ���+|U�| �TEȧ �AM iz5��Ր� �2�@z����JQ �~�(�R��c]�u���e�l���]4�v���e�l��^��v���e�l���]4�v���EԠ�jPG5�������'6U�U��O�h�ɧ`8��S0�A�)�E�EL�"0-��E`Z0-���(�9@�0���p.r� �nA� {�B�r� �nA� ��B�2|�n��P� B�[�>!�-;a�}B�[ND��%� F|vM������7ZJ�)#e����2h��#j����2�ȴj�#\5���G���#r��9�U���qD�h�8"G�j�#Z5��jG���#rD��4��hjH��M��6� ��iS�Mad7���*lSȰMa�6���NvS8L�d7��:lS��M��6���>vS�M��6�~�6lS��M�6� �S��Mad7�o�BvS�'M��6�j`��7m �)|��a�B�m ״)�P��B�m )�)��0��B50L!d7�~��iS�M�d7�k�S��M�6� �S(�M��6���RvS��M�d7�o�>lS�'M���a�B�oV�E0�f�Y@l��,��Y5�̢�U��,��6�̢�U��,��Y5��¬�UfQ,�YeEb�UfQ,�YeEb�UfQ �YeE���UfQ,�YeE���UfQ*�YeE���UfQ,�YeE���Uf��*�(fլ2�"��*�(fլ2�"��*�(߬2�"��*�(�ݬ2�"��*�(fլ2�"`��*�(�ݬ2�"��*�(�ݬ2�"P��*�(�ݬ2�"P��*�(۬2�"P��*�(fլ2 �jV�E0�f�Y�U��,���7�̢@l��,���7�̢Tv��,��6�̢�U��,���7�̢X|��,�@e7�̢�U��,��Y5�̢���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�i�ؤ�4���M K�e�ؗ]bOl���%�ŗ��KHlG/�+�����Kl�-�1�����bKl�-�3����;�Kl�-�9��~�{cK��.�%6��7[b_|�ͱ�i����cKl�-�i���cK�/�3����dKlH/�E���;�K��.�#��&���Kl�/�7����;�Kl�-�K�Į��Kl�-�O6ʖ؝_b{v�}�%v��)[bgl���%6����KHl�-�e��[bg|���%����[eK�/�%�Ħo[eKl�-�3��>�([bC���%vʖ�_bv�=�%6���,[b�v�]�%6���![b_v��%�ŗ�_bv�ݲ%6͖�#[b�l�}�%�˖س_b�l�}�%�e��m_b�0�m�%�e�� [bwl�-�-��>�([bwv���%�͖�[b��K/�5���bK�-�C�ľ�cK��/�C������Kl�-�7��^�[bkl���%�Ɨ�.[bov���%65x ��K�-�+�ĦoAb��*�A����{dK��/�E���[dKl�.�7����dK�-�%v��؞]bc|�m�%v��[b�l��%�f�أ]b�l�]�%vƗ�[b�l�M�%vg�؜]bgl�-�+��.�[dK�-�)������K�-�;�Ć٨=fKl��%$6Ɨ�_b_|�-�%vh�؏^b�l�-�e����[bc|�=�%6Ɩ�,[b�l��%�ʖ�2[bo|�-�%�f�� [b��K/�M�����eK�-�i�ĦoAb �ݱ=������KlG/�'�Į���KlK/�;�ǖأ]bl��%6���,[b{v���%6˖ؖ^b�l�-�+����{bKl�.�%���؝]bWl� �%�͖�*[bC���%6��ؖ^b[v�M����^�[bOz���%vg�؏^b�v�}�%6W��;�Kl�-�k�Ğ�{fKl�.�;������fK�-�K�����KlI/�i��v�;�Kl�-�I��^�[b{v�=�%�f��7[b�v�M���Ğ���KlG/�{����{fK�/�i�����dKl("�-���� ��W�Q�9{Ŧ���Wl���+vf�ؕ�bw����+v̮أ�blxZ�+���ؑ�b��m�+vŞ٫�fW�Q�[v�����WlI_�7v���{�W�]�9~žr�b��ݱ+���ؘ�b����+6ˮ�0�b�����+�W�؜�bw�� �+6����b�����+�g�ؠ�b���}��D���{�Wl��+�5� �c���B+�i��1�b���]�+6ˮ�[LT��^�;vŦ���W��^�G{Ů� �b�슍�+6ǯؓ�bS����+�̮�@�b߷�}�+6ˮ�:�b_����+�g�؛�b�~Z���\��"�bw�M�+v��[�W��^�1v�&�gWl�^�Ev���;�W�k *�Ǯ�.;dW��B+�Ǯ��b�슍�+vg��eWl��+vͮ��b�����+��^�[�Wl�^�Iv�b�W�k *6ʮ�p�bg�m�+�Ȯ؜�b���M�+���� ;dWl�_�/}�F��eWl�_�/����S�bg����+v��[cW�-�+�ή�(�b�����+6���b��}�+�Ʈ�,�b�슭�+v���2�bk����+��{�Wl�]�=~����ȅ���+�i��-�b�FM_�M{�b{�W�]�Mv��!�b[�M�+�Ů��b��m�+�Ȯ�7�b�슭�+����"�b���ͱ+vf���b����+vf�إ�bS����+vʮؙ�bk��=�W;ͮإ�b��M�+�}��5�b_����+6�؛�b�FM_�=~����cWlL_�I{žo;�W��^�7v���[fW�L_�+�f��S�bs���+�g�؝�b��m�+����*{eWl�]�[v����W�)R�+}���[fWl�]�g�j����W�I_�Yv����4�W�k *��{7j����+�ή�&�b_��=�W;ͮ��b��=�+vž�{�W�Q�g�j��gW�K_�E{����eWl�]�3v���;fWl�]�E{���;eWl�]�g�j���eWl��+���ؑ�b��]�KvŞ٫�fW�Q�={žoeWl�^�/}����Wl��+v��ؑ�b����+�ɮؓ�bo��m�+�Ů�*{eW�]�K{�����Wl�]���\�؜�bs��}�*vʮ��b��Ͳ+6j���b_�P�3{�����Ul�]�m���;�Wl�^�9~Ş٫�fWl�]�I{Ŷ�{dW�)R�cv�>���W��^�)}Ů� �bo�� �+v��؜�bg� �+��[dW��^�;{��[�WlL_�AvȮ�[LTl�_�ev���Wl�^�mv�f��c�ӯ^�I{����dW��^�kv���۳Wl�]�av�n���W��V�?6<%�[cW�]�1v�����Wl�]�Q{Ŷ���W�]�w�����bs�]�+v�.��U��V��H���;�W�H_�G{�&���Wl�]�=vŦ��dWl�^�;vž��WlL_�Q{Ŗ���Wl�]�?{Ů��bk�� �+�i���blx �+6��ؔ�b߷���Wv�n���W�]�Q{ņ�{7j����+�W�ؖ�bWl�]�cv�&���Wl�^�'}Ů� �b_�P�+}��;�W왽�ivž�{f�v�]�Kv���{cWl��+6Ǯ�'�b��=0*6ܯؔ�bs��}�+v���e��=0*vi�ب�b���+�ɮ؜�bs����+�W��#�b�슭�+vh�ئ�b�����Cv���dW��^�A{���{dW�^�5~����fW� O3}��!�bW�� �*vͮء�b��m�+vh��S�b_�P�K{���fWlI_�Ev��[�W�)R�;{ņ�[fWl�_�Yvžr�b�FM_�9v����cW�]�'}��;cWl�_�Sv�����U�]�_v��!�bw�-�+�Ů�1�b���} �BŮ�{�Wl��+�n����Wl�_�9{���{�W��^�/���ب�b����+�Ǯ�&�bw���+�g���b�슭�+vǮض�bW�]�U�ʮ؛�bs����+6i�؜�b��������ء�b��=0*�5� �cWl�_�m���eWl�]�Gvņ�{�Wl�_�3v��eWl�]�]vȮئ�b�FM_�;~�6�{dWl�]�MvŮ���Wl�_�QvŶ���W��^�+}Ů���Wl�^�w���ؗ�b��� �+�ͮؠ�bg���+6�� ;dWl�]�k?�ؒ�b����+6��{�Wl�_�7v�.���W��^�qv�����Wl�]�cv���{7j��M�+��^�4�bw슭�Wv�.��fWl�]��~�����Wl�^�mv�V�+�b{����+6���Wl V�G{�~��W��^�Ov����eW�]�Sv�ލ��bo����Wv����fW�^�5v����Wl�_�7v���;cWlI_�?{����eWl�]�7{�>��dWl�]�=v�f�eWlL_�Sv�6��dWl�^�G{�F�cW��B+6ɮ�1�b�슍�+�������]�'}���۴W왽�iv���[fW�)R�-vņ�;fW��^�9�v�!�b����+6ɮ�$�b�����+v���W�]�'}ņ��eW�m�+vǮ�/�bo���+���ب�b���]�+vؚͮ�bo����+���*{eW�]�w����-�b��-�+6��؞�b[�}�+�h�؝�bo����+����p�b[��}�+�Ȯ���b[�} �B���;�Wl�]�O{����b[��=E*6��ؤ�b_l1Q�qv���bo���+����#�b��]�?{Ŧ��fWl�]�5vž�;�Wl�_�#}Ŷ�;fW왽�iv�.��cW�]�;vŖ�fWl�]�ov����S�i�)�4���ApL��^����nz���i.��bX��a!,��_�}X��a�ׇ�(h�@4Q�2����G��Q�϶�R$���E�:�U�E�[��nQ�E9�� ��3 ����� DB~�|,?`>������'�k��L5���8�!~��q����G|5ď#����W� ���E?��"���j���~��h�Zd��_-2x���W� ~��E?��"���j��~��ൿZd�5+Ь�_��� 4+lǐ�\��p��!(h���~0J��(�e�[�oQԿE��Ƞ,���P�vY( eAh��]�.�\�~]��u���%~��4�z��I��a!���(2��T�ȯ�#��Ǒ_G�ja�q�WC�8"s7�ݰ2w� ; s7�ݰ2w� ; s7�ݰ2w� ;���� 2�'Q�Q�Ƚă���Sp�W+2��W���b{^ir_\�}q)��%�&� m� B�!�&� m� B�!�&� ��c�\�a�?� �&��X�g `��~�8�� X�3�� ̂X0 b�,��M��6����3 ������H�Cp����h��o�CtH>�!:$��VUt��*:D��3ZO�h=m�j&1E[�{z�_�%>S�#�:��j�G�j��q�WC�8�T㈕�2C�$� *>��l��M~�6�������w��ў�_����/�yu�-8�� �� !!�C���hU�r��*^9�_���� $@F\t2%�x�E'Sb�'3���� IY>}�\t��� �2X>Ȁ�/d���2��`� �Z^����_ha��f��_ha��f��_ha��f��_ha��f@ؘ�}L� 6�@�S ��{o��������{O�)���g��8�!~��q���_ ��S�#L5���E���j�^���Bt{M!:�����^S��!�G ?%z}���Q�F ?%�z���Q�G��>$K����C����>$���,�C��Im?$L�*F�]#Ӯ���iW��fe���W?.�C�[ �nQ����ܢ\u�f���j�o�i����M���� L���Z`�F��o�Vh�c!4����u���՚���G~ua�q�WC�8�㈯��q�Ld�'�g����z��.��/����(��#��lk���%~�� �Y�����GO��#������ @0Q��E�(h��Y��f- ��(��`ћ�Eo��Yo�c!4����EQ�e�[�oQ"�α����P_l{A����^D}A�ESC`��"q;�v�P�EFmY�]d�v���Ev�!~a�q��Ƒ_G|5ď#�:�0�8�".����R�3j ����2rFBD��g�<����P����Lb ����ګ��Lc0��9մ�T�~�N��:�_���Y��,��BhE�!��V�|�\�g�������@�>� �Ap,�h�g@dD�� �����n��� �����n��� �����n��G�j��?���8�T�ȯ�#����#��l��Uo���_��|�6����Wk#���zC�,)���8��v��!RD�<"E���# RD�<�(�Hd`|$2H� �dȓ]Tu��yȀ�]����2"��!!�~�cc��Ա�VG��X�cծ�慼X���ǣn��}�z��峵���^>�l�p��sB��_>[{�d���m_>[{� ��Cۗ�^>�,^�|��i˧[/�n�|������'k/���|΀ 8�@E�#� �eIe1��k�d�Y 2(�,|m� �6�A`���T�B�g�F!�3U��f�|p�y��_��~i^��y��_��~�ik���a��f���ik����^�z�O�%�؞�b{ڮ�E"n�`]_u}}���Q��G]_����` m��n������m��N����@�m��nԷl����c o�%g@���`�?(�� �Cp�(���yȀ��ۨ�m� �6jn��ǗL�)L��/�bS,��_2ŦX0��d�M�`�p�Jx����w���;�GT��f�g��i�{���L5��j�G�j��q�WC�8��S�#B�,���P�BY( B�,�� �/�ܾr��� .@o��� ��/@Iկ*�EX�Eg�媹>��h�mfc���^��:m#�` ���>��Z���Eg�u��?�0�8�T㈯��q�W��G�z�=�����۳^o�z�=���-��[��A~��Lc0��1֫�*`�lMz�u�&=�:[�l��I��֤gW�j�oQ�E�E�[�Q_4?}�3r������w+�� ȠR+�� ꤝ< u�N��:i'�B���ga�/��P�vY( e�,��]�vYP�}���m�Y������*�H߾Z���\ۢ�'W��ֶh� l[�J�*Z����m�V@I\E�O(���'�m� (a@g@��S\'�g���c��5� l���� ��4�p�@�n��4�����lm�������ln��Z���\-@Hf�!���d�۩��S�.�ڻ8�ҩ��S�.\��h���{s�����c �쯼LU�J^�*Y�g��[���hJ`54%��X ���<����8�� �_ ��S�#�:���8�T㈯��q��Ƒ3 ���v���p�0q�� �}����Z`�F�+�$2�����B�>)� ���B�¼!���l"�AH�^?�z��Iө'�`` �� �3` �K�������n|���1>����c|���������f�?B�� !Y[׍]��X����bW�_�/����/�b��}�+6ܯ�6�bo��+6�ؖ�b����+6��)�b�����+�Ǯ��bs슽�+�ɮؒ�b�FM_�%}���[�Wl�_�[vž��W�]�YvŶ�{`T��B+�f���b��-�+�Ư�:�b�� �+�i��:�bS����+�Ǯ�_�b�슭�+�Ȯء�b_�P�1}���{�Wl�]�3vŎ�cWl��+v����W�]�uv�����Wl�]�G{����eW��^�qv�f���W�Q�7~Ŏ��Ul�^�+6����W��^�9{ž�[�W�_��HŖ���U�]�_v�����W�]�Ahž��fW�]�Gv�>�;�Wl�]�O{ž��fWl�]�qv���[�Wl�^�#}����e�����Ȯض�bo�}�+vf���bc슝�+vؙͮ�bW��^�[v�ލ��b{��m�+�Ư�$�b��M�+�̮��b{��-�+v��ؖ�bs��}�+6ή�@�b���+6̮ؤ�bc���+v��{`Tl�^�Ev�&�;eWl�]�3}����eWl�^�A{ž�b�bS����+vɮ�S�b�~Z�Ev����W�]�9����fWl�^�Q{�.�;�W�Q�qv����Wl�]�/}ž�{�T�k *6g�ؚ�bo�}�+�ͮء�b�슍�+�n��[gW�^�ovŞ"� >:��h#�������>:���+��}��O�>ZJ�������V�>���h(���t��Gy}�}4p�љ�G���w���>z��hr8�}4��ѽ�G� ��}42����G#� Z�}4��ѿ�Gy��}����Y�GCi��}������Gs��}t4��X�G7sͥ�y���A�Gi��}����U�Gs��}t�����GCi��}�3��`�G�i��}�2��H:��vͤ}����F�G[i��}t�����G;s��}�3���>i�he����>:���!�������>����g}�����G w������>�J�h#����>�E�h/���4�����Gy��}����>z��h&�������I�Gi��}t�V�>���he��N�>�G?s�}t�����G7i��}4o����G{i=�}t�����Gsݤ}������G{��飃����>:m��,�������>���h���>�>:I+iM���V�>z���e���N�J�Gi��}������Gsijޥ}4���_�Gi��}4o����G[i]�}4��ѽ�G�vݤ}t���F�G s �}4�^ >�G/s�}����`�������F�G i�}4���|�G_i%�������>���hg��&��Y�G�h=�}4�Π��G�-��}�0����G3i]�}����E�GCs�}49�>����(�����f>����d�}��f�>���h"�ô���>Ig�*�����v�>����&�������C�G�i�}t�����G����Y����>Z���e����>J��b���>:���d����T�G�v��}����a�G/s��}4�^ >z���b�Ǵ��>zJSiM�}�����G�-}�}t1��U�Gsm�}4���S�J�� �������>�G�h'���&����G�i=�����>z��hc����T�G��$��}4o����Gw]�}�o����G{�"|4��ѿ�G�v=�}�n��Z�G�v�}��V�>ڙ�h#��ô���>�H��/���t�>ڷ�h.Mͻ���>H/]�}�����p��hc��~�>z��h �|������Gy�7|�3��[�Gi��}tp��c�Gi��}4�^ >�I��!�����&�>Ig�g����>:���+��}����O�G�i��}���ѻ�G{��}��6�>���-�������>�H��b��N�>:m�hr8�}4"��B�GKi]�}�o��Y�G���}4��Ѿ�G's-�}4�����G3i=�}�o��D�GsM�}t�����Gy��}4���C�GGi��}4���]�GiM����>Z���/���&�ѽ�GWi��}44�ѽ�GCs��}����R�G;sͤ}����`��-�������>�H��d�3����>�I��g��>�>�I��壁�b��\��wim�}t�����GCi=������>���h0��{���>�J��$��}t1��S�J�h(�����.�>:��h�����T�Gwͥ�y�����G/i��}��O�>���h+��{����>:���&��ô�>�>:K��%�������>�H��f���p��Q�Gi �}41��i�Gi��}4"��C�G?i �}t2��WZI�h.Mͻ����>����壁����>���,�����N�J�Gy��}�n��C�Gim�}4��ѻ�G�Mࣉ��N�>zK��b���>���h��}4���IZI��f��ҋ�GOi*�������>���h!�������>ZK�hf��.�>�G3i=�}����E�GGi��}�p��>�K�h� |t3��R�Gy��}4�>����d�ô�.�>�J+iM�}t���A�Gsݤ}4�>�I��L��N[>�w 6���>�H��-�������T�G/i��}����\��wi��}4�^ >�I��d����>��'M��}�3��B�G+s��}t���N�G�-M�}������G w �}�0����Gs��}43����GGi]�}4�>�KS�.��u���>�H�h���v�>ڷ��c45��>�I�h+������>�I�����6�>ZH�h&�����.�>Z��h)�����V�>zJSi-�}������Gy=�}t�����G�v��}�0�� �Gci]�}t2��`��d���p��C�GKi�����n�>z��h����&�>L��c��n�>��h����>�H�hg���F�>ژ�ha����>Z��hc����n�>ZJ��1�����^�>�������i>:m�h'�����>����o����>:I+i��}�2��,�G�v��}��V�>����d����>���h�ᣉ���>���'�����n�>���h���V�>Z���!�����i>���ht��>ژ�h�棋����>zI�h���&�>�I�h.Mͻ��6�>zK�h+�����n�>zL�h�����>����b���љ�G�v��}t�����G;i��}t�V�>�H�h�}���@z1�h��}42����G's��}�0����Gy�����v�>Z���#�A����J�G;i �}44��N�Goi �}4H����G7im�}4���]�GGs��}t���E�Gi��}���Ѿ�G'i%��A��v�>���h �|t���IZI��+��}������G#sm�}to��Y�GGsm�}���`�h�ᣏ��N�J�GGs �}4�����Goi�"|43��D�G3s=�}����M�G#r��}43��|�G�4}�}t���X�G�4M�}�o��`�h!�������>�I������N�>�KS�.���������GyM�����>�H�ha�b����Gi}�}�2��L�G+s�}4p����G�h�����>��h+�������>z���!����`��&�����F�T���)M�}t���\��wi��}t���B�G�]�}4���\��wi��}�n��M�GGi��3(1����G_i%�������J�Gs�7|t3�� �G7i�}t���IZI��������>�H�ho�4}����R�G{��}t��ш�Gs-�}�t���F:^��y-��Լ��n|^˩ym�浞��Jw^��y�tռ�S��P�kEu�䵣��Fw^K�ym�����T��Q�kO5�嵨:��ZO�k�=�����S����k;=�-�1�ײs^��y-u絪�מj^;�A5��t����_��y��浬�׮s^��ym�浡:F��P#y-�浭�׺j^�y���� ���NwP�k�{��U��F:^K�y���˞׾j^[�c$��ռ�S�Zv�kM5� �1�׶s^��y�t統��V��kym�浡��.{^��y-�浮�׺j^[�c$�����N�k_5�-�1���ڍ�ke5����vV�H^�k�9�]�6���U�k�9��Լ6T�ZN�kCu�䵤��.{^+�c$���1���Z��kW5��1���j^��y-;絳:F�ZS�kY5�]ռ����N�ky-�&ռ�ע�V�k�;�uռ�U�Z^��e5�]������W�k;5�%ռvU�ZU�k�4�ռ6��Z^�y�:絧��vz^��y��浡�׊��kEu����F:^�ym�浬��Zw^��y-�Uռ�גj^��y��ռֺ�Z$�k��浩��rj^�y�����v��j^�kG5���1�ז��k7>�]������P�k]5�ռV�ZY�kS5��t�v��j^��y���U��Rw^k�y�����ֺ��S�kKu�䵲�ז��k95�E����j^;�c$�嵨ں�Z$�kM��U�מj^۪y-�Uռ�S��V�kM5�mռ���ZO�k�{�䵼���H^��y��浮��Rw^��ym;�H����O�kS5� �1�׶j^˪y��浱���j^��y�u�ҝ�"y^�k"�mռv��Z��k95�}ռ���ZO�k]5���1�׾j^�y��浲��r|^�k�{�䵼�@� wN&r���d�V� �N&�2��d"���ZM&�;���dB���wN&l5���d��[M&n5���d�V� xN&�9�H�dW��%O&<=���dW��ZM&r5���db�� 2A&t5���d�@���N&v5��dB���ZM&�9��d��� 2A&�;���d�����N&x5�8�dB���^M&<=�H�dBɓ }O&|5���d�V��A&z5��d�W��_M&�<���d����wN&~5���d�� zN&�5��d"ɓ�zN&�<���d����yN&<=���dBW��]M&�=�`�db���h���6�>���h#������>�I����}������GsM�}43��\��wi��}4���`�G#� ��3����V�Gs-�}�1����Gy �}4�Π��G?s��}�2��G�G�v�}�o����G�4]�}to����G�vm�}������GWi�"|4��ѽ�GyM�}4�^ >�G�h,��}4���U�G;i��}����F�G/i�퓦��>Z���a���>����b��.�>:I+im�}����B�G#s��}������G�v��}�0��E�GKim�}�n��A�G?s �}t��ш�Gy}������>:��h���V�>���hf���>L�hD�}�0�Ѻ�G3s-�}t���c�G�v}�}42����Gs �}4p��C�Gi��}�0����GGi��}t�V�>:��h(��3���>�I��e��N�>:��h)������>��h��y��&�>���h"�����>:I+i}�}t�V�>���h��3��V�>����!�����.�>�E�h���n�>�H�����.�>�H��)M�}����P�Gi��|��O�>H/��}t����p���"�b��Z�G�v �}�n��`��d���>Z��hd��^�>�H��#��V�>���h$�Ay����>:m�h �|4�^ >����!�������E�G#sM�}t���Q�GCs�������>�H�h'�����^�>z��h+�����^�>����&�����&���GKi�����.�>zL�h/������>:L�����6�>:��h&������GCs��}�2����GCi��}t���C�GGi��}t��Ѽ�Gs-�}4H��N�G7iM�}t���X�G�i��}t���`�������>zH�hc��f>�E��d����>zK�h'��}4H����Goi�}����M�Gy��}t1��L�GKi��}�n��Z�G;i����f>:m�h�ᣱ��~�>:J��c��6�>:���%��Ǵ��>�J��o���>����$��}����K�Gi��}�o����G�v-�}�2���>i�h&�����f�>�J+i��|4�����G3i��}�����G{i ���&�>����"�������>Z��h+������>:K�hr8�}4�����GCsM�}��O�>zK�h���.�>�w=�}4�����G+s�������>�w��}4���]�Gyݤ}4o����G?s��}����P�G'sM�}tp����Gs��}t2��\��wi�7|4�>:H��d��&�>���h/��Y����>zL�h �|t���c�Gw=�}����[�Gi��}����F�G i��}������G'{�}������Giݤ}t���E�Gki�7|4�����G#s��}4���c�G3i�퓦���>ZH�h�����K�GCsm�}��O�>�KS�.������>�I��+��}t���L�Gw��}4�>:���d����>����#��.�>Z��h���&�ѽ�G�M࣍���>zJSi��}������G{��}4���]�G sͤ}������G w �����>�J�h#�����&�>:m��(��Y��>�>�H�h���f>�K�h(��3����>���h����>�I��*�����6�>�I�h.Mͻ���>����L�{����>zK�hᣝ��n�>:H��a�A��6�>����b����>�H�h0������>ڙ�h!�����N�>z���1�������>���h&������>�G�h� |t���\��wi�"|t�V�>ڷ��-������>���!������>zJSiM�}tp����Gi]�}4�Π��Gs �}t���C�G�Mࣿ����T�G�v��}����>����(�����f�>��h#�������>:J�he��&����Gym�}41��B�Gw �}���ѿ�G;s�������>��hf��v�>Z���o�3���>�J��0����b�ш�Gs}�}����A�Ggz��}4�>�H�h �|�o����G?i��}����`�G+s��}t4����G�hc�Ӗ�f�>�H���}���_�G;i]�}4��ѽ�G�]�}����^�G7s}�}4��ш�G#r��}t���A�G�i�}���љ�G/s��}tp��Q�G�v=�}t1��WZI������>�G�h"������>K�h#����ԼK�h���&���Gy-�}t���>ZJ�h �|43��Q�G�- �|����C�Gw������>z���b�y��� �Kl�-�W�ǖ�=Lb�v�=�%v˖ء]b�v�-�%6Ȗؙ]b�l�-�۾���K�-�1�Ė��K�-�i�Ė�;�Kl�.�A����eKl��N!������K�-�a6j����Kl��A%�Ė�'eK�-�q㥗ؓ^bcl�=�%�f��=LbK�G/�%v�ؔ^bOl�=�%�͖��cKlj�$����PDb��K/�3����f���-�#��V�dK�/�5�Ė�[b�0�=�%6�n����Jl�.�M�����Kl���c��v���K쓍�%6h���Mb�l�-�E��&��KlI/�1�Ć";�K�/�K��~���K�-�1����[fK��.�Y����[b�l�M�$����_b{v�M�%���ؖ]b�l�-�5����{e{l�-�%6ɖ�[b�l�-�;�����eK��.�%��{�Kl�ݱ=�Ć٨=fK�/�Y�������=�%�˖�[b�l�-�%6}��_bsv�}�Q��N�{fKl�.���>�([b�v���%�e��0��l��%�h��_bKz���%�f�ؘ]b{v�]�%6��ؖ^b�v� �%�����v���%�˖�0��l���%6n��;dK��/�7����c�S�-����ƍ�^bS�� �������eKl��A%�g�إ]bc|���%�˖�[bOl�=�%vƖ�0��l�=�%�ŗؒ^b�}�-�%6h����-Hl�.�-��~��bK�-�g��ƍ�^b[z�M ނ���;cK�-�Y�ľ��eK��.�5�Ė�TbKl�/�-��&�۲K���%vʖ���-Hl�-�/�Ğ��K�/�U��v��bK�-�[��^�[b�l���%v˖�[bCz�-�%vi���Mbl���%6˖�*[b{v�=�%�˖�_b�l�-�%�Į�{dKl�/�O6ʖؙ_b�l�-�[������fK�-�i�Ć�[bcv�=�%6��ؚ]b�v�M�%6�؜]b�l�=�%�ʖ؝]b�v�}�%6W�آ]b{v���%��~���Kl�.�3�Ė�[b�l�=�%v͖��KHl�.�q㥗�4[b�v��%6Ɨؘ]b�l�M�%v�����Kl��NS����;�K�-�C���;dKl�&�e��#[bwv���%�e��[b?z�}�%�ŗؗ]b�l� �%6h�ؔ^b�l���%v�ؒ^b��K/�7������I쓍�%6˖ؔ^b�}� �%6ɖ�,[b�l�-�%�Ȗ�![b�l���%�f�؟]b�l�]�%�Ŗؠ]bv�=�%v���_b�l�M�%v͖���nl�M�%vƖ�[bc|�}�Q�����b ���%vf��m_bg~�-�%vɖ؏^bv���%v��PDb?z��%vɖ�![b�l�=�%6n���c{l���%vi�ؗ]b�l�}�%�������}�%6Ɨ�.[bk|�-�;�Ğ�;�K�-�e����۳K��.�{��.�{e{l���%�Ȗ��fK��.�7��^�[b_l���%�h�ؕ^bGz���=��n��b �ͱ۩���g w���q�p��g@n�Q�q���sg$n��q���gDn��q���glh�A�qFC��gHn�Ѹq���g�z�q�q����gLn���q�q�gw���q��8g`k���qƫ��g44�a�q����g@n��3p�q��g0n���qF���g w�q�q���g`n�Q�q����gw�!�q��sgPn���q���g`k�!�q����g4n���q���g�z�!�q���g�z��qF���g w�q�qƆ��g||���q��rg�z���qF���g��(wo� ��v���ESo���]4�vY*ۅ �20 8 !� �2��z���M�]��vY*�ESoM�]��v�ϗ �20 27��5��X�bI,�e�-�2��/�Q���@�B 1W ~��s�����a�Z��k�+ @^���AKH-!��tଡ���6�:W'U7«�HRu#���^�F���� ߍdk5 ?�;!Y�d�UI$���$�g�+����� vhf_�E`Z��1-���(`Z�iQ��(Ӣ�d����`.ĂX0����r�' `�(��|� >��<��W�����^��{q��؛�Հ�`�c�rn$H87$ ��Ԅl���d`4�b`O^����$�Ñ 2łX0bA,� �_�B|�2��+�s�έ�9��g�\��sׇ��>�g� ��3|���>�����sׇ��>=��t[i��(�4�gT��3 �� �� �20 �K1��d���Q��Oh E�جYC�@ E�5��P�����:x�_stnz;O�͸F��l�k�=��͸6����?�9 ���U'̠�,�BP�!|� >��/̍9�r1�ܘ/̍9�r1�ܘ/̍9�r1�ܘ���z0��q��mt����6w����0$�<���>w}� ��sׇ��>�g�l��sׇ��>����?:��������3|EB�=�gP$��3|EB�=�gP$��3|E�� �na��P� B�[�!�-w���Ou��!���B݂�6�N�;a�uB�[ƶ��:sl�̱�3���@�B ��R�7���܋3��ȚX؇*�G$��q������ bA,����m�] ����§�^ 4�9C9uKs�3�S�`jZ�=-�Դ�Ђ�>T翄��v�KXZ�9i���|�vr���=;O��$�H��#YԍdS7�U�H��#Y"�dS7�U�Hu#�|@H�!%� ��^|�z񽝵�vŽսuG�&�2RfZ�N�ZvEj�U�!( ��Djӱ�M�V+��#R���n:�Z4�[����n:��sl��?Q�D9��OR@ h�����uc �`X7�`6����@�8{�������>�[�Loy2������x�'�ៈ�"��x�'�ៈ���Հ��Ԝc�4��:����n$�����Fx��� ߍ���F���@�B �N��d�<�n�9Ⱥ��[{��֭=GYמ#����@�8���f^��e3�]>�g�l��sׇ��>�g� ������>w}� ���j6�{)�f���:�vr�n]� ���zC0� �#4�NHd;!��i�MH�6!9� �Di�}H��ZM�k�s\�",@� �����/;�������A���� ��?`׷X�z)��>�g@���\�!S�#L5��j�G~ua�q�WC�8��Hծ�|�6����Wk#_���_��~i^��y��_��~i^�%6��� .�ܾ���� �/@o�� �"R f쌍�36���fa�Ȉ����G~u��?���8�T�S�#���K�",��g�Nt��I'z�0�/����H����݉@��D�?iw"П�[�'��n`"П�;��p����@�n�s�qw�?����n�M����?����n��i�u�?���Lw������?����n�s�q7��� �^���,�P��Bi=���g�_��f�u)h3����~ B�!�=��\Þ�{�:�������0� 2�8���X���?��'�@��"�� �=ȇ��c��%������VCP��(��`�{���f�g��y�0g@�4 EE��8�� �]p �h(:g�0�3 �����R���*ZBq�?am�֟��E�O`ۢPW��ضh�l[�J�*Z���� �3` �����X�pq�;�H�A���>2��h͠ `wg�Щ��S�.NŻ8�ҩ�K��.���:��A&Ť� �bRLG�&u���#�-[ݑٖ���� ��3��y5���Z`�F��o�V��-H��-�H��R�wK|)һ%����wQ�r ;�������A�����Y�&�wO��� �������i�� �� �^*�`=i����ԓ^�k�����ߢ�~�^��}�� ����K|�.�����v���s@���;�Ѕ�C.]�8����PJCi(���4��"��s_��{��%�����^�Gt�>�%˺�l�^��{��z�/�����ʟ~*�i��:��@�� utu�:��@�� ur5���P�ף�X0x=*���ף�X0x=*���ף�X0x=*���ף�X0x=*��éx�N�]:�w���ũx��]\O��l҉N6�DEA�����>В�@Kꃩ�_ ��S�#L5���8�㈯��qDE� ����A9��y�ApL�g��YN�f9��Xn�7k`��g ���YH}�, 0 ��n��U�FݞApL��A9��yx� *zA'��^� �a����� ^� �a����� ^� �a����� ^� �a��������Z���Ȁ�����{`��AE� p�0��2�c�!~a�q�WC�8��ȯ�#L5�0�8�"�h�)"�V�"�h�B�,�� ��BY( e�,���`��u�?���Lw�C�����ݹ���n�}�q�t�?����n�c����?���`�3����?g@������b?� �3��c?�� X�3���@�+%p��gg�>�ƣ�R���b|ao1>����C�[6��뇰���C�[��!�- �a��C�[��!�- �a����-�`�(�ݢ�j�G�j��q��Ƒ_G|5ď#L5����Q�wF���{g\�Q�w���~gH��w����}g���q�w���mgd����w����~g����w�q��g���Ѹw����{gD��wF���{g,���w���mg�Q�w���~g�����w����{g����w���{g�����wF���}g ��a�w����{g`���w���%gX�A1v�r��~g �A�wF���}gP��a�wƶ��{g�����w����~g����3v���}g�����wF���{g�����w����}gd�a�wF���{g0����w�q��}g$�w�r��{g����w���{g8�a�wF���{gh�Q�w����}gX�Q�wF��;cg\�q�wF���{g�����wF��!g��q�w���{gD���wƣ~i���)�v�_Z���/ �4J�Ҽ�K��/-��4L����K[�/�R�4����KC�/�[��E����Kk�u��=���_ZXi�������Ҿ�K��/�R�����*�K��/m������$�K�/MQ�4F�� �K��/����柨_Z�O�/���4F����K��/mQ������Kk����-���_ڥ~i���9���^��~i���-���_�K{i���]���_ڤ�/MR��I-�_��~i���-ꗆ�_�Wi�Z������"�K��1��)�K۔w��m�?�Ҷ�ci�v��� ��Xڶ�c,m��1��-�Kۖw��m�;��6�ci�v���My�X�Ƽc,m��1����K۶{��m�=��6�ci󎱴my�Xچ�c,mk�`rkr��&����[�y�ɭI���ք�`rkFo0�5�7�ܚ�Ln��&�&��[3z�ɭ���֌�`rk�|0 &��֔�`rk~w0�5�7�ܚ�LnM�&����[3z�ɭ���֜�`rk�w0�5�7�ܚ�LnM_&����[�z�ɭ���֬�`rk�w0�5�7�ܚ�Ln�� &�&��[�y�ɭI���֜�`rkVo0�5�7�ܚܽ��ɭ���֔�`rkBo0�5M>��U`rkFo0�5�;�ܚ� Ln��&��w�[��ww0�5�7�ܚܽ��ɭ9�����`rkVo0�5�7�ܚ�LnM�&�&��[�y�ɭi��$��[�y�ɭ �������LnM� &��w�[ӻ�ɭ�ݻ;�ܚ�LnM0 &�&y�[�y�ɭI����|�`rk6o0�5}�ܚ&L~w0�5}�ܚ�LnM�&�&��[Sz�ɭI����4�`��I� &��w�[�W�ɭ &��֬�`rkBo0�5�$�ܚ�Ln�� &�fx�[���ɭi��d��[�y�ɭi��$��[��ww0�5�7�ܚ�LnM0 &�&��[�W�ɭ���֤�`rk�w0�5�$�ܚ�Ln�� &�&y�[�y�ɭ)���֜�`rk�w0�5�7�ܚ�Ln�� &�f��[�y�ɭ �����`rk~w0�5�7�ܚ�Ln��&�f��[z�ɭ�����|�`rk�w0�5�;�ܚܽ��ɭ &��֤�`rkVo0�5�7�ܚ�LnM0 &�&x�[ӻ�ɭ�ݻ;�ܚ&L�w0�5�7�ܚ�Ln��&�&x�[3��ɭ9���� �`rk2����7��]�(8;#�Èx#����u������1>����u�����^7>���ロ�5���ٚ�`�lMz�u�&=�:[�Q�D�(h��jo�ad�&�v@�n�a��&�v@�n�a��&�v@�n�a��&� v@�n�ad�&�v@4Q �(8�'�z_o���݂9��ڛ^�B�����{�sj�˻/��� ��nQԿEQ�e�[�N��:�?մ�T���M��7�����!rs�@g@�S�!0��. e�,��� ��BY( B�,��oѫ�E��a����d�!t2�f�g��i�{���ݛG��X��c��O~�_�� �5+Ь� �Ê[Z����)�}���>c{(����UoQ�T��V��Ap�J=��]��3 �0�����˨".��_$@�� �5+�׬�gU��U�j|����������������߯K|�r �?7������o|<��1>����n|���1>����n|���� |'T�PxB� 5|'T�P�wB � u�$��P�wB � U|'��P�{B%� U|'��P�wB�� u|'T�P=tB%� 5�'T�PAC���T����;�I���&���g� �3`9�@�?�� ,�3`~�!s9����� �G�����B[\'��. e�,���Pʂ�. B�,�w�*s7�ݰ2w� ; s7�ݰW{� ;p�7�ݰW{� ; s7�ݰ2w� ;p�7�ݰ2w� ;Щ��S�.NŻtj�ҩ��S�.�q�FƉ'jd���q�FƉ'����曢�棪K���.�-��EN� ��)t7��ݜBws ��)͢,�f�?��v���q�E�G�Ϫ�?��ՠo���i���f�o���i�S�=�lU�o��,��Bh�c!�ۨ�m� �6j��F+�����2L�m;U����!ZO�h=m"��8�P}�\?��[�]�"u}��SM��:�7��T��h=m���a���z�.�����������N�EQ�e�[�oQ�6�A%�� ���b���f1Ƞ��d�Y 2P�QE\�����wʇ�m$����s?�g@�Sp�hg@�S n��U�k��z����w�͢,�f�?�f��]So�T㈯��q���_ ��ȯ�#L5���8r�0����LcL��?����P_n{AX��Q_l{A�� �3` � �n`v�"���>h�����c�\�!Ь�_��� 4+���(�hXX�B�( e!]���߈~�-�����ފ��&ZO�W����A�gk/��|������'k/��|����e˧k/��|������Gk/��|���A�˧k/^�|�����gk/ھ|h������/�f�|���a�ˇ�-+� �P�V2Tj% �A�3��Cp���  q �b��y�i�NŻtj��T�K��.�ڻ8���g���p}�w8�>�;�E�΢O��?g@��z��)���`�lMz�u�&=�:[�l��I��֤短 �N��:���{�~�M�O5�?մ��֊�akE�谵�Ct�Z�!:l��z�D�is��{�=���p�^h8z/�I��$��$zH^��y����C@�AA;M�H��-�H��R�wK|)һ%���� �3` T��ž"�c|������G��o|���1>����o|����E�[��nQԿE��v�a�A�m�|�v�����n����HO �=�����蟭 ��R�Y��ԓ&XO`=i`@e�,�� ��BY( e�,��p�X�夞��,�N�߷m�6� :�(�? �ؙ��[���������~ �~"�b��j]��u��ߺ���Z�jm䫵���FKbI��%�$��WC�8��S�#L5�0�8�!~��q� �|"B�[��n1����ܢ\u�� ��Sp v5�N�F4Q �(8�� ��΀ 8�� �3` ��(��@�Q�D��Z0kQ��EA��Z�� �� :�� ���~ԃ�lm������n����ж��n�����@��+ ���T�ȯ�#��Ǒ_G�j��?�0�8RR������B3� ��/4�����B3� ��/4�����B3� ��/4�����B3� ��/4?`>�0 �,��Bh�c!Pmوi��9�� �����2��z�1(�3 ΀�ѝ�@ �o;��΀ 8��0 ���@/Ƞ� �=�΀ 8�@�3�9���T�~��8�T㈯��q����G|5ď#�:�`�lMz�u�&=�:[�l��I��֤��6��w�������\��e�����2���=DB�,��� ��BY( e�,���"X�8�� ��3 �X�g@=�Ap�C�� �Y���%�_��~]�d�5W5�e�绺��.����:�Ϫ�?�������������f�+xz�W+2��m�~���/d�&�v@�n�ad�&�v@�n�ad�&�v@�n�a�vY( eAh���P�vY( e���*tB`�P_EH|!�U��W_EH|!�׷H]�"կK|�.���ė���n؁�� ��ڛ�n��� ��ڛ�n��� �����n؁�� �����n��� ��� ���GO� �3@��5������\��]����-��U�Dp�΀ 8�@��Mw �Ŧ;8�� ��y�LWNm��P.t�� y �6j�}����Zac d��12��lL� d�&�v�jo�ad�&�v@�n�ad�&�v@�n�a��&�v@�n�a��&�v�jo�a��1d.�0�W>x�G� �W>x�G�@�W>x�G� �W>x�G�@�W>x�G�@��E���cP�[=e������}��wQ�D�(h�� �3` ΀ 8���HN} t�-�Է@V�[�;�GIկ�Oߧ��s������T��S�.�ڻ8�ҩ�K��.�=V�TئS�eO��=J�Tx�Sa�N��=��ThR��N�;B�T(�S�eO�;�#� %v*���M�Bʞ %v*lة�ˆ� �t*��P��B�� �t*��в��6� ۀH� ;�T(�Sa�L��=�T��Sa0�PN��6� �@* ��0b�B7� v*����ˆ� �t*,��a�‡� %v*,�pN��ɞ ){*�ө0b�‡� -{*��b�B�� v*��0P�ˆ� e*����BK���K�/m�������K��/���4E�Ҿ�K��/���4H��&�Xi/��}��_ڷ~i���9��_ZXi��Qꗶ�_ڢ~i_�����&�_��i ��5�:�Җ�K��/ S�4H���K��b��=�v�_ڣ~i�����柨_ڢ~i/�����ƨ_Z���/��'��_ڢ~i���I��_Z�~i�Z��4�����K��/�R��K���K��/��'�6�_Z�~i���Aꗆ�_��~ic��-����_�Wi���)�F1v����{g��ѸwF���{g<�a�w����{g����wF���{g\�a�w����}g���A�wƶ��{g���!�wr��}g�����w���{g<��wƬ��{g���Q�wƬ��g�����w�r��{g�����wF���}g�����w����~g@��v�r��{g,����w����{g�����w����g쌝�3v���~g ����w���}g@���w����}g�����w���cgL�wFq��{g���ѸwD��{gD�q�w��D�� ���� ?(�� ����E̎9�� ��зo�u�g@�Sp�0 <��T�SR�����*B���"$����*B��/�'F(����/�",��ߢ�~����X��h,�=�v���-���(�ݢ� ��/4�����B3� ��/4�����B3� ��/4�����B3� ��/4�����B30�٪���_��n�/Ez�ė"�[�K��-�s�;���ߢ v�2�-���(�_.�"����bg�sP�3�9؊�B���h� ?x N����*B���"$����*B����gx ��5p���^gx ��5p����OJ����'��BY( B�,��P�BY( �� ��`�W�UhE�!��V�|��ԟ����!��̿2���ApЀ��bC�$� �{��A>���΀ 8��'�_G�ja�q�WC�8�!~a�q�W�~�|,?`> �7���N��7��x<�߅[|n�ެ/z����zh�����)@jh����p���nm������lm���D ���1�=�l�L��3�vτ.� �Ȅ�{o��������{��yȀ�p�6P?��͢,�f�?B$!�W�����ch ���w�0g@�S �Ŧ;��b���/�yg���Xn4������GS��|4EQ����� J��Cd�g��Ap��b?�� �3��F"p^g@�S0�g�A�����?�������:�� �����{`��� � dG2� �3` *x�;�� ��3 ΀�Hݒs���p�P0 �r}��! ׇ���92�����&��� n�?�G�S��u��,8@J� %I �����f�g��i�{���2�����S�5+�׬@����8�� �����D&1y5���3 ΀)8�� ��3 ���i�^� � �-�Է@܂M} ��&�v@�n�a��&�v@�n�ad�&�v�jo�ad�&�v�jo�ad�&�v@�n�a>��������XB_k �������_w5�&���a�� *��o���p�@hm�4��@�n���$�D�L�.���p�[ � �-�� �c0#� ��g`=��zfC�ixF.�<#� �� x���ݒ�v���jՔD��jJ�vZ5%Q;�����VMI�ί�#����G~ua�q���_ ���?[V�ʜ�Պ �����X��F+��Hi����F+�8�� ���p����E��fpLc0���4�l_[��T>��p�,��]�BY( eAh��]D��i%���ur5��� �T������nP'WC�_G�j��?�0�8�!~��q���z�}"(M @�&�Ҵ�πz8�� ��T�HRI�xZ㍗� �g�� �Y��T��S�.�ڻtj��T�K��.�l�<^�|����M�&ݤf�?B�� �T�~�N��:�?մ�l�L��3�v�4�=�/d@ۗ2@����f�|���A��$���5����Bt{M!:�����0>���A�����F�n}�Q��e'��.��A9�� �y B;�� $g��B�>A_ �+�kR�A��U��V�a�6�A^�� ��b�AIe1Ƞ��d�Y 2���G��c|���������o|���1>�G�%�?���P��@�\ uJ*���P��B]����nPGW7����N\o�"��Ƶ�H�u����zv'�I����� �&�)�����@6�����N�Sv'�I���T�QE\F)һ%���_��n�/Ez�ė"�[��}�4^/x�ex�1�<�xx |<�����������c��[T�o�h=m������σ���8�� �J��(u�Թ�$��VR���9����d�q�A�<�j�G�j��q���_ ��ȯ�#L5��a�5����z_��}ݯ�u����z_��}ݯ�u����z_��}ͯ�5����z_��}ݯ�u����z_��}ͯ�5����z_��}ͯ�5����z_��}ݯ�u����z_��b‹=/� �؃�Sp B���3!��ٙ��U�����Ad��ĘcjL��11��ĘcjL��11��ĘcjL��11��ĘcjL��11��P�BY�eAh��]�BY��x�� ~�|�@��.NŻ8��T�K��.�ڻ�6P�3Fe�^?�_�� �5+Ь���I��8�٤��l҉�T�SR�dB��R~pH;��֓&XO��F~B_L� G0$v�#�u�g@� z���g@� �!0Z�hhI��%�v�0���[��o��.���0 ������i���3 ��8� 6M��4ݶ����_���e ԺZS�jm~�!s9�D�a�j��‮ߢ�~��u�v�0g@�4p�X�:�7�@!΀ 8�� �3` �A�9�� �0�a@g@�4�A��k���}�|dp�V>28eԺZS�j���n���:[�l��I��֤[gk҃��5陷�I_+����`H� G0�k�#����`���D��P�EY( �¬��SM�O5�7���� ~�|`+ g>���3���l=�� �������hV`X��v�0g@� z���g@� ����O苣 �Ê[:�Y�)8|�`��i���?�:[�l��I��֤[gk҃��5�Q�E�[��nQ�EQ��Y��f- ��(`֢@4Q �E�(h������S�#����G~u�� ?�0�82o%�Y��ۛ��j��i����ܛ��u���~��'&������?1������O�{��'���r��?�������ONx��'�=���� }��Ą����VE8�o�%�� ����Kޛ/�p7$�P��~(� I?_+Z>�����`�O��?� �a�ׇ�}X��a���k�bX�� P�N�����_��~��\�uj/�ܾ�X�*�#~�oB���` T� o�@�7A�Pߛ�y��M�<��&hXx4 @�6A��›�yh�M�<��&hZx4-� ��̓ o����&h<�Π;���3D�΀�;C�� ��3����;#y�̽3f����;�r�Y�3`�΀�;�x� ��3�Έ�;�q��3���@�;C��3���`�;��� ��3���(�;Cs� +�3��Π�;�b��3\����;�q��3�����;�q�3(�Έ�;#�� �3F�Ψ�;#��ʽ3,��P�;cs�3���P�;y� �3v����;#�� ˽3��ΐ�;c���3*��X�;cq� ��3���@�;c[�˽3���x�;�� +�3���x�;�r� ̽3z�Π�;C�� �3��ΐ�;#��Ž3&��8�;��� ǽ3�����;C�� �3��Ψ�;cg��3 ����;�r�ƽ3�����;�C� ��3��8�;#s� W�3��Έ�;�q�X�3��Θ�;C�� �3�z�=�����[�]o�{�=�������^o |�������[�^o�{�������[_o�{��������z˳�-~�������z[oyv�����g�[�]o�z�%�����[_o_�YOܬ?n�@ 7� ��p��f�Y4ܬ?��n�@ 7�@���p�����f��p��j�Y7��������f��w����Y9ܬ?��n��7�`���������f��p��t�Y=ܬ��n�@7�><���Ï�Y;ܬ?�n�� ��f������f��p����Y0ܬ?�n�}x7� ����k�Y�߬?�n�@7�>|���@���(�f� {����Y7���������f��p��Ç�Y:ܬ?n�� 7�@�������x�f��p����Y�ݬ?� n�� 7��؛������f��p��l�Y/ܬ?��o��7��R�4���,�K��/�R��K��&�Xi������F�_�~i_��}����_�~i���-��_ڷ~i`�����6�_Z�O�/MQ�4K����K��/m���柨_�i���Mj��Ҿ�K��/ ῴ��Җ�K[�/�Q�4L�� �K��/mQ�4���*�K{i/-R�4��Қ�~i^��-���_�i/��5�:�Җ�K��b��9ꗶ�_�~i���=�ƨ_Z�~i������&�_�~i���-����_ڥ~i�����F]G_��~i�����z{��-Ϯ�<����zk��-~�������zK���}��g����z[o |�=����[�]o�{�����ޞ�z{��}��g����zK��-���g����zK��-~�����Z�T��S�H��2^�T��@*�ة���Bɞ ){*4��a�Bʞ #v*�ө� �T(�S�H��=:�T(�S�N�r:Z�TX�S��N�;V�TئSa�L�;R�T(�S�dO� ;6�T(�S�dO�n:V�T8�S��N�n:B�T�Sa�N� ;F�T�S��N��=�T(S�H�;�Tx�Sa�L�m:J�Th�S�H�m���6� v*��p���9� �t*��b�B�� v*tө0b�‡� |sK֚�,l�m|aoy������C�[6�~������C�[��!�-�����{��9��ea3�h=m������PSo�Tl�S�=\��h"nf�2H�`&(�"nf�2��`&(#nf�28�`&(eof�2p�`&(Vmf�2x�`&(��nf�2p=]�ClW�!��z @�� � ��2��d�f�?B�� �,���P�BY�g `��y΀ 8� 8�3���@�?�� �&�� 2@C����u�׍��7>���x~�c|���1>����u���%�_��~]◅�P�BY( ��Bt{M!:�����^S�΁�=��`��c��Y��&?`��m�=���f�"2m3%�3 ����g�����}�8�� �&��X�g���3 ���9�����S�nN��9 P�϶�Q�EBmY�]$�v���Ev�]d_�Ȁ��3�R�`�?g@��f�?B�� ᬯVd��M��6 ��5p����gx ��1p���gx ��}� �a�m�������ĥ��J\z(q�ĥ��J\z(q�ĥ��J\z(q�ĥ��g@��R �_��}� �3����� @8-� ��{NK�'����o�ɿ7����p"��:[�l��I��֤[gk҃��5��ռ: {��ij���Z`�F��o�V�2î"X�aW�̰�6q<���`ǃx<�� �ǃ}~~<����ă�x<���`�ǃ �=0�� ރ|xg@�S��gx ��-p���^gx ��1p���^��w�H�zp��Ԭ����z 5�Ԭ����zP���g �T���Q�?,��Â��Q�?,��Â��Q�?,��Â��Q�?,��Â�,��Bh�c!��˨".#��)t7��ݜBws ��)�^�z�O�%>���Z`�F��o�V@_ D^��� B�>� ��v��Aa!��ApLA8�g@�S ����=0�� �A��!���l��AHa!]a^��B�j��q��Ƒ_G|5ď#����G���t�_l��3 �x!,D�[�oQ�E�E��G�>u�x����j�G�=�E�X͢,�Y;�u����z_��}ݯ�5����z_��}ͯ�5����z_��}ͯ�u����z_��}ͯ�5����z_��}ͯ�u����z_��}ͯ�5����z_��}ݯ�u����z_�k��E �_��~]��u���?������J�͐A��f� ��s}�a�=���{J�~u�inFڟ�rR��( e!]����.�620M�q=J��(���[�~0J��(�� ���q=J΀ 8�� �3` ΀ 8h� �3` ΀ 8h@�*^q�xM�h��7�W�^}�z������p�[��$����ȈC8�-�Յ��[��o������x(nࡸ�����x>o����&� sޭ0qU�e�1���{����=^��u�crR�lH= ��G��ťx_�Q\�Gqf��ހ�x��T��O�O?�?�T��S��O���m�c!4����x���՚ZWk�oQ�EQ�e�[�O��(���jE��q�xŭ��;��� ��3<���;cq� �3���X�;�� �3"�΀h;#��3��Π�՚ZW��b���f1��k�d�Y 2(�,�T� ��x��T���*Nŭ���T���*Nŭ���#�S�h��8��Êώ�O�o�٪�T<�S�h��8����+�ð�ukX��5~pH��!��{�~�-���T�eT�Ѭ��PO��7�7��T��SM��7�w=]���'4� >?2�z���!s�X�=`��i���?S{�:|d�>2x�R�wK|)һ%���_��n�/Ez��ǂY fA,��`t�xn��3 ΀)�� 2I�3x�X�=8��T��S�.�ڻtj�ҩ��g ��ж��n�4��@jh �x�p���l���� *�g��7+� �-�Է`S�]p �8��8L��n�/Ez�ė"�[�K��-�H��bhq1� ����͢,�f�?Bծڕ5��]ͫ�E�X͢,�]#Ӯ���iW�����bdP,��a�ħ��WC�8�T�ȯ�#����G�j��qDT6Q�RC8� �m7�S�@H `]7O��uh� �4O�xBM� �|'T�P�OB�� |'T�P�{B� u|'T�P�wB� U|'T�P�OB� u|'T�P�wB� u���� vƨ\����"����-2� ���"��������3�0�� ރ|x �=8|d�>2x��="x����#�w��="x����#�w�X$�1@�EB�Q���ApLA�۷ ��]��j��~���g�Zd��_-2x����W� ~��E���"���j��k��h�Zd��_-2�ٯ�W� RD�� �7��� RD���Cۤ�����u���i;|d�;�������A������"͢,�f�?��?���`��i���?���`P`�g쌝��}�� ��/4�����B3� ��/4�����B3� ��/4�����B3� ��/4�����B3`�����uk������[��&?`���mV|�i~�!s9���°��w�AbC�CM6�D�?�t����`��i���_��n�/Ez�ė"�[�K��-��_��}���~���IT'Q]�D��M`7���v���M`7���v���M`7���v�<=����'��)t7��ݜBws ��)����F0RK#H-�`��F�Z�H-� �4d |5ď#�:�0�8�!~��q����G�:�#*�EX~�|8�[� ��3���8�k� ��3���8���q�W��G|5ď#����G�j��9�����S�nN��9���s��{�=���p�^h8z/�t7��ݜBws ��)t7��>c{�z��=E��؞3 ΀�f0J�(i���������Q�D��n V�Id`�{���f�g���' ��4�z�,�*���"*�h���]�bg.go�.v�r��F]G_�Wi��y�����K[�/�Q�4E�Ҿ�K �/ �4K�Ҿ�K[�/ R�4���*�K[�/ͫ�4G��&�Xia��Yꗶ�_Xi ��9�v�_ڣ~i/��]ꗶ�_Z���/ ῴ��Җ�K��/m��4E���Kk����5�:�Қ�~i�Z��������K��b��=��_�Wi���E���^�Xic��9�v�_Z�~i���E��_ڷ~i���U��_ڢ~i���Y��_�H�;��T�S!eO�;��T(�S��N�n:�ThR�eO�;�T�Sa�N�n:��TX�S��N��=N�Tx�S��N��=J�T(�Sa�N��=F�T�S�eO��=R�T(S��N��2Z�T�S��N�m:6�T�Sa�N�;>�T8�S�dO�;N�T(SaeO��=F�T��S�H��=V�TذS�H��=J�Tx�S���^<�H��-�H��R�wK|)һ%���_�K|�",���f�g��i�{fbW8�A_+����`H� G0��L��3��h=S��L��3�Y�g=S��L��3�Y�h=S`�Lq�3E��=����c `�1@0�W���0��`�c 0��1�����~�M�� �Ap,��g@`���~�h�g`�S��#s��GO��#��M��5����lU��}�\ �7�ެ/z�.�uԎ��:jG=.��vT�G��_�=d���)���WC�8�T�ȯ�#L5���8�!~a�q��+������v���i#�/���8�B�:[�l��I��֤[gk҃��5�9���?����~ua�q��Ƒ_G|5ď#L5��j�G������F>����{`��0>P�B�( e!]p�a�������5S�֥@ �h���m������&���SM��:�7�{��SM��7����_��6�ی�n3<НApL�|x �=ȇ����?��o�$� du����l�[� n�X�S�ڻtj��T��S�.NŻtj���� 8������i�z�4��{���P�BY( eA �{`Oc�=��1 ��>�߻�. e�,��Pʂ�. e�,���x��y�����c���\qv�qzA[��B�� u�E�X͢,�-�� �S��)0n����R�v�]�)we��� �v�N ;e¸���v��!r�"X��̇���z��g�� ���D��:���YH}�, �p��_�Ke�3��� Ծ( @4kQ��E�r]0Q�2��RvS�]p 8�-����n��� �����n��� �����n��� �p*ޥS{�N�]��wq*ޥS{������s�O�y��b�;H�� ���,��_eC�2���� �!6�g�Hld���42�K5�� �6�-��@V�[��o�g����z�GNm���ApL�g`=�p�@�夞�A���L���@&�Ap��e����K|_ �㈯��q�W��G�ja�q�WǑ�P�EY(  �B,���-~�X��bA,�� ��cTIՍ�j7«�Ȯn�n$�����Fvu�w#'�ៈ�"��x�'�ៈ�"���e�;�Q�8F��`�(������'�s7�S�@Cp?a�!�����O@ ��|݆�~�nCp?ew�7��u����^�����M �G�أ� �Q{�����ZZGki��#�ف!{�������~���q���8H��֡�Z[��S��u���:�Tkkzd^17�[�p࿥�[�p��[�p��[�p࿥�[�p�b\��q=&����cb\��q=&����c�� ������>�g����sׇ�]>�g� ��sׇ��>w}��������>�� ��3|���>�"��R��P����d��G2b�# �?�?�P��� <�)����Ox <�!����Ox <��jH��!M��4m�0�1~����?�J�4$�Zs�&X��-�ڔ�kS�M��6%�ڔ�|Zk>H>�5�'�֚�Ok��O��?Q��DQ�Ԧ#R���@>5AY ��@Ɓ��,� U��`.ĂX0�[�����x�@�e�g`��?�c?����;�{��?�c?���y�0�\VC^�����P�c�eu�1�:��@` ��U�Q���x1܌�Q���� bA,�l� ĂX [�����3rZO�1��g\���C~J��a�����ֶ��c������H�ȲT����.Ke�,��������.2Ӎ�M��B>�^ �v����l �� �!V5��bUc�������AY��@��? ��]M�]��vY*�ESoM�]��vI�" W%x���H� � �R@ �[1���?Q�D9��Ox�p�� 7� �20 �e�-�2�2���(��ҿ���-� 8��ҿ���-� 8��ҿ��-� 8��ҿ��-� 8��ҿ��-� 8�B�W�^�F��I�ndW7|7���I�nD��G���sGH�@�`��1 Ļ�}������Ot�?�{�T��C�k7��ݶ{��������ݕf�T��c����?�}�@����� �����r�:���OЋh�٥�g�Ɵ��H��NI��g�$���S��.�?;%�Ɵ�vh�٥�g���hr!��.�5�����_��~�/�5�,�OM�4�g(��3 �� ~���J3F�?���ϟQ����(�4�g��X��c�_�~=��X��c�_�~=���F��I�n�W�^�Fvu�w#IՍ�v.�ya;�ͼ�f\��qm��d{\#�q�l�5���O��?�[��c�_�~=��X��c�_�~=���������*�:���ޯ�����:������� �:��� 篃� �:(�*i%��n��VRiUI�x$�V���G� �ܸ��2��ˠ}D"Ă� b�\( �SrY` ��0l]C^��!��Ơ^�cP/u�1ԁ:�rY` u�0l]C����̟��e�d�~��^|J��iP�^|J���iP @lJ����V�ZlJ ��f>H�?m惴9e�A�4��̟J3 ���l��Y;g m�5����SwG��/D� � ��)]׺��+?����b�C��d`��?@F���4���jH�,�ɧ����Z�X bA,���-~�X b�d���u�pu�&�ߊ��o����bU� VA+X�`�����ƶ��bc[�w��-y��ؖ�]ll��.6��~ے���m�M�]��v���e�l���]4�vQ��`(�b0 ܧ�zf�u=3{����= ��[po���FY�e�o�Ui�O��?�f���?@F��kq\�������^�3�!:�F��� l2�����$������N=��d`ѓ2����WT��{�$����r\���zC�i=���O��?Q�D��YCg m껼%���[�.os������[y;��mΖ��]ޒuy[��m����]��wy���mΖ��]ޒuyK��m���^��wy��-}���v����.o黼%��v���/o�xR[4?�-ݟ�A�Oj� �%�E����"�Im��|R[t<�-f�� Oj���'�E����"��I-OHb��!|R[t<�-���ARKj� �'�E �WpR[�?�-�:���$��Im4���l~R[w<�-���Oj���'�E`Ǔ�"��Im8���"��Im����j~R[ >�-@��A�Oj���'�E0Ǔ�"��>�- ����"��Im��f�8�Oj�@�'�EPǓZ���4?�-����Oj� �'�E�Ǔ�"HjIm0���"|R[{<�-������<�-���Oj�@�T���$� Nj���'�E����"��Im��l~R[v<�-�>����Oj���'�E�Ǔ�"��>�-�����Oj��'�E�Ǔ�"��Im�� |R[�<�-�=����Im�����xR[ >�-��ARKj���'�EpǓ�"��>�-���Oj��O����xR[�>�-�>����Oj���'�E�[*`R[<�-����Oj���?x���n��Im0����xR[6?�-��%� Nj��'�E�[*`R[8?�-���A�Oj�`�'�E�Ǔ�"��Im0��� |R[4?�-���AOj6Q���"|R[s<�- ����"��Im� �� Oj���'�E��"��Im��p~R[�?�-�9����Oj� �'�E���"��Im����$� Nj���'�E�Ǔ�"��Im�����Oj�@�'�E�[*`R[|<�-�:���$��Im0����xR����?x�����Oj� 磏��>�>����C�� �>�:����#磏f�>r>�h��C����>(<���Ï�|����G G~<��?����G�}��f�>�:���Ï�|������G}Xn�A�q���g�z�A�q����gPn�1�qƫ��gXn���qF��g$n���p���rgDn���qFr�gt|���qFr�g�z��q����g44�q�qƆ��g�z�!�q����gXw���qFq��g w���q����g(n�!�qFq��go���q����gXw�a�q����gLn�!�q����gTn�q�qF���gw��3p���g,n��qF���g0n��q���E�������U;@ױ�o#�԰�oH��a��6(�J:K���~ x�Q��G��am�"�{ఀ�8�q��EzLa��1{���������8ء�sYzG�#�;�`m�"2;�������#Q|ɰ�o0�1�O 8�����١�s.;���~�`i�I����$ �X�4�;� �~+H���� >��4��O� �z7I�q�� �X�4H��~� �z7I�O<� ����� �z��4��O�`i�I�_> ���4��2K ]�[�=�1���b�{���%��2�!���7������xv�C~] ��u���7�H,��������S2;�&dk����Y2;�&�,�@���,���t�@Ng�t��-4��k@���A��'�fùs�`;g��OX��ܝM�X��ܝM�X����OX��ܝM�X����OX��ܝM�X��ܝM�X��ܝM�X����OX��\���a����tl�'��v����T3��6��T3����d?�~�_���~�_���~�_���~����~�_���~�_���~����~����~����~����~�_���~����~�_���~����~�_���~&����Z�s���i�����{�WFt��N����ZFH� �ZF�$�t��%�8��_�%�5`"����H�����h_&�lϘ���9\Ϙ���9\Ϙ���9\���X���w��M�ֵ��M����E����E���Y����2�I4�˲��~ ���~��ȁ�������~�6�)�x���t�`���遻���a�����a��f�]���HW�&�}� 5�.�EO��r��K�ܸϱ ;?������x�����RN�Y��"���\_�&s��X1X2�* ��(i�)IUy˘�����~�(���]W$;���~��A��~z�dE��~z?���~���I$�U��HV$;��I$�U��x�X���#c�+��m��݋���D:.O���D<�N���~=�����Nt8G틴��DG�t8:.O���D@"�����:�����`2��9q�S�9q�7�͂��,8�͂}_����}_����}_�7�͂��,���}_�7�͂��,8�͂#ށ���~o��2y�o��2y������~������~Z�Wڡ��#rH�i�a�w��w��w��w_>���vC�����~����V(����V(���1y�o�����~�������r����Y^����T&����WB��>�$��.wg�$��.wg�$��.wg�$��.wg�$��.wg�$��.'!���\_�&s��8�}�c �;�0��E�~M��҂�~M����@Ѩ����~����8�o����8�o����8�o����8�o����8�o�C��8�o�C��8�o�C��8�o�C��8�o����8�o���Үw�K�ܸϱ����ܸxȈbC��0�Y���w� ���Q'��.F���+u"��b�Ɍ��Q'2��F���+u2��l�Ɍ��Q'3��F���u"��bԉ(��Q'2��F�T�:O�c �jٶ��EN8 9�l@X��u^@�0�~��B����7�����JK�$ѳ?UFۄ�i�w��{��{�����~����~&� 9��k���~����=��_s��~�ݗ�Ui�\�����+���,�+ϡ���~������~��~��a�eF�������;(�����9q*��XʆM��є����#�z����#�:�M���9��}\���U�ڊ�_h+ʻ~��(y�R<�.��2\_h+ʻ~��(�������]� �苷s�RH�+ w��_Զ(r���\T�����D�����V��N%u�@+��&�L�Шi�~��Wb6G�I���~�,�3t͠�,�V����W�2�gh� �,�tE/�# W���藗J���*tvg�ew�٪+�7&jzp`:���~���qx���qx���qx���}|���'기�\�ب_�%�5`b_&�5_"���8�A�������~(�Ӷ�݊���w+�r� ��~���ʸ`�w�7��E �ZTC�~���.y����)y�����Z�~����&��,�����:�����`2��B��-t�mj&�עm�r�QX��N�ݖX��N�ݖ � $Ga �;���gfA����Eo{ L�`��~�����~��8���m�QE��m�QE<{;����z;����z;���$�i������ ���ޢ�h�F�+���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N���;�N�vЯ�,aW��� ?��6H�$ � i��5rXS!�5rXS!�5rXS!�5rXS!�5rXS!�5rXS!�5rX������2��ye��_ ������B�Rܣ��.32V:Ha� ��#��`�%�0��`7��% �$�m ��@r�ye��Y�����x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;�g�8�o����8�o�C��8�o�C��8�o����8�o����8�o�C��8�o����8�o�C��8�o�C��8�o��M�$�c���D��%��,��'����'��~�_X_!��W��x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;Ꮇ�x;!ז � $Ga �; v[�`7��% �X��N��?ހ;�p��?�����;��퐻?�����;�����;��퐻?��퐻?�����;��퐻?�����;����n�$��.wg�$��.wg�$��.wg�$��.wg�$��.wg�$��.�]f�]^F��e��r�x��a).V �L���D�,<�Zsú�Z@�3i$������$������$������$������$������$����I}� ���q�L� N��N �t<��D_��2�2�gȼ˼�!�.�~�̻��2��N���;�N���;�N���;�N���;�N���;�N���;�N���70�/n�J�|Q�~��8�x�tF�(����XOg�Eݻ�ν�Sf��~�}e`��a}�@�I���G�Ia}�`��;�W��`�LzW�{�WH�; v[�`�%�0�c �;v�Q � $G�_�~�� ��0�b�`�D�,̶�@0��K�ya�ꮼ�!�.�~�̻��2�2�gȼ˼�!��6�1`c6�1`c6�'2W=��7�i{=0��4�9 �TY�g��������p�`�P�@�0� �sf�X�K�>�>�1�$�� x�h�X�H�8�(�������z�m�`�S�F�9x,hXH8�(������ةȜ�����u�hx[hNXAH48'( ����g�=��5��z;ì�3\m���`�\���`�\���`\m���`\m���`\m���`�\���`�\���`�\���`�\���`�� �5 ��B�,� ��Qe`k�遭ek������Z�Fz`k�������<���ux�c0�����<� ��x�c���_�<��lkx�cP����<3 ��~���2x�c������<#�qx�c`�� ;����� ���и� ��P�� !��0�� v�Π�� ������ ���@�� ��ΰ�� ���p�� ���@�� ���� ����� ��ΰ�� ���P�� ����� ����� ��P�� ��� �� �΀�� ���`�� ���@1� ���0�� ��ΰ�� ��� �� !���� ������ ���и� ���@1� ��� �� ����� ��ΰ�� ��Π�� ��ΐ�� ���P�� ��΀�� ���p�� ��ΰ�� ���p�� ���� ����� ����� ������ ��Π�� ��� �� ��ΰ3� ������ ��Π�� v����� ���P�� ���p�� ���P�� ���@�� v���� ������ v��P�� ���`�� ����� ����� ��ΐ�� ���P�� ���@1� ;�� �� �ΰ�� ���`�� ���`�� �� �� ���� ���@�� ���`�� ���P�� u���� ����� ���0�� ����� ��ΐ�� ��ΰ3� ��΀�� ��� �� ��Π�� ��ΰ�� ������ ���`�� ���0�� ��΀�� ������ ��ΰ�� ����� ���@�� !����� ���P�� ����� ��ΐ�� ����� ���и� ���@�� ���� ��� �� ���@�� ��΀�� ��� �� !�ΐ�� ���p�� ��ΰ�� ���P�� ��ΰ3� �� �� ���P�� ����� ���P�� V�΀�� ��΀�� ���P�� ���P�� u�ΐ�� ����� ���0�� ���p�� ��Π�� ��ΰ�� ����� ��� �� v��P�� ���p�� ����� ������ ����� ���@1� ���0�� "�ΐ�� ��ΐ�� ���P�� ���`�� ��ΐ�� ������ ����� ��΀�� ��ΐ�� ��Π�� ���`�� ����� ����� ����� ���p�� ���`�� ���� ����� ��ΐ�� ���P�� ����� ��Π�� ����� ��@�� ��ΐ�� ����� !�ΐ�� ��� �� ��ΰ3� %�� �� V��p�� ���`�� ���P�� ���0�� ����� ����� ���0�� ����� ��ΐ�� �����ThFS! �M���M��`4��TXFS!�M��6`4ڀ�TxFS! M��`4&��T8FS!�M��`4���T�~DS�@4�`4��T�FS!`4�DS!�M�� M�� `42��T�FS!�M��`4*��T�FS! M��%`4�XX4��T�FS! FS!�M��`4ba�TXFS! �M��`4�`4*��T�FS! FS!�M��%`4� `4"��TXFS!`��FS!`M�� `4��TM5�TXFS!`���18����18����18f�w��~��g��~�Ͼu �|�)��5V���<==� �:�؛ 8�a�E��Q|��1�^s�5�^s�5�^s�^A`��]A��^Ap���U�M�!P���!&ʆ��(`"�l�U�����$�F^�(yU"�l�v�����$ʆ��(`"�l�v���!�%�F 5A�A 5A�A}��^dxM�yP�5A� ��.\d�pM�y��5A�A ��,\ddPT��eP ���-"�����yx�����yx�����yx�����yx�����yx�����yx�����yxB[YP�eAY ��eAY ���8�\H ѵ��gz� t2�&`7�2�&`7�2�&`7�W�&`7�2�&`7�2�&`7�2�&`7�W�&`7�W�&`7�W�&`7� �j�ߩF��u��YG� v��gQ��`gQ�oZ�����Z�Fz`k�遭ek�����]��ő(]���ek������Z�Fz`k�遭ek���'6�ҟ��H�H2�eAXP�eAXP�]I,� H�TC' �R ��4K5t�,�� H�TC�Z�Fz`k�遭ek������Z�Fz�u �Մ�I���I���I���0?�|X" "&"b" "&"b���a~���G +��7 +��W ��W 5���zt1`��91`��91`��92�&`7�2�&`7�2�&`7�2�&`7�2�&`7�2�&`7������yx�����yx�����yx�����yx�����yx�����yx�����yxXP�eAXP�eA2`�?tj��6ik����9x)`�0N��)�8e"=�� �x�Z'�A|qSG0Uq�����Z��LU�c�1��[���A�����yx�����yx�����yx�����yx�����yx�����yx�����yx��G�jqSG�jqSG0Uq�����ڎ�#�j;����!��@��������]��Bxu aB\| ��Bl~ �:Э�[�ں��5�@��n 떰�n ������Z�Fz`k�遭ek�����LU�T��Z�A|q�����Z�T�����18����18�\#��8r����18����18����18����18����18��;@/�km���f�k�@�{��ڹ{�v��W{�u�����yx�����yx�����yx�����yx�����yx�����yx�����yx���wg�����Z�Fz`k�遭ek�������pg�ն � v�̵ � v�̵ � v�ն � v�̵ � v�̵ � v�̵ � v�ն � v�ն � v�̵ � v���� 4h�V�=�Z��h��U`Oh�V�=�Z��h��U`Oh�V�=�Z��h���T�M���M���Dk�F�6m`k�遭ek��������������:��(�`8C���n�/Xt. 2pjZz���gZz���gZz���gZz���gZz���gZz���gZz��XhS��`x&��� NbT���bT���z|���bT �GbT �GbT���z|���z|�hgZz���gZz���gZz���gZz���gZz���gZz���gZz��N�cX��hZ��|�c��9�R��T����Jz�f(�Y��8���y�1����I�kk�]*|�2���Ǿ����������EK��Y�-�X>[�����ґ�ZK8�JO-�g�������SK8�JO-aH��T�S�h�?��%fy�6V�5h�M�ļ-���J�h2�*�8D��+�����VIRHO,� x���+�=Q��@�)�?a�I� ��O��� T� %� \���p ����y� ��c@ ʀH��������� � � �p ��� ��C� Ѱ *�wPX P� �` ���� P���� �~��ǀr� Ġ�� ސ� �` �PQp^� �0�� op � �@��!��f� d �0 ְ�������P �p �`���Pg� � ��p���� ��0��� ��d@ x� TP� � �0 �0 ��` � ��z� 7� ؐ�j�vP�t ��_p}� �`_`�# ���� �����p D��`w �� m����� �p tp��P ��P7� FP ���p�� ��K� ;�� Ӱ ��`�v� ��`P��s�v��0�0A�ϐ ����Q0O� � ���` ؠ v� �� �p԰y`�6 ���p G� z` �� )a� � �0 q� �� �0 L�|��� pWP +��0�� �PS@"� � � �P�@ X�S0��� ��Ԡb@p`Y0�@���0�M� � �`w���� �� �p��p R���}��� K�� �` K��0 }P t�{@ �P q��0 � �� T� � z� �� q � �P���� |� F` �0 �p����`�� ��  �� �� �0���0 �@� � �0vp� � �� _� ��� ��1 � ��ߐ!@�� ��r�u����� y` ��%J��PA �� i� � b`�@A@��� q?3�T� � � �� �� �� �P��� K` �@�@�p �0� :`!�� �0���� �` �@�� ��݀d� � x� �0 sp�+� H� �@ �� s �0!�o@��Vh�P�� ΰ ��V� �� �pT��@ �`u�eo� ���p p��0 \` �p��}� �� � �� T� ��p�pp� �����0 l0���`���u` � �0נ ���p�� ��������WP�@ _G� q`{P���� �p Q� ��o0 >@^P؀�a�� �0 �p?�R�I�Ɛ c��pXp-pː�0 ��U� �� �0 �P��v � A AI@���`�0�0� �� H� �� ����Ȱ K@ w0:��@�`P ���� ~PV04����U�R� ����q ��n�j` p@ l�����Pw��P_� �! �`A����� �� ��� �@ �� ���A��f� qKP [0x�RPa��`O� � � u�/� u@�0�@� �Ձ]s�ۉﭹ�}��#uV7��*I���Y*xt����{vV�XZ�u#��ߕ~���Nw��$¨�~�����:~Ϲ�ܤ�I� ��խ�q��ۄ(�e�n�haў�^lm�f� �^u�6������I ��=9�@\���Y=V ރ���߄流Zo� ݁)�l-\Bx��m��~��wd��������6:�](݊�Db~~�'cp���cD�w�-*�sG>:�\ >W�q�1(���%Z���=(�_6�H]���n��[���7evd��⌼�9]�s��mozg �\��`�B�����zձp��fki��$j���� � " @�Ce��C�86 �X���!���������