From f198317ce7d4dea437da6fee9127e436f814f643 Mon Sep 17 00:00:00 2001 From: Xinwei Xiong <3293172751@qq.com> Date: Thu, 28 Sep 2023 18:00:41 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B6=20feat:=20Big=20job!=20kubernetes?= =?UTF-8?q?=20Deployment=20Design=20(#1055)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: fix docker compose file Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add options about helm deploy Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> * feat: add openim server test about openim web Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim server test about openim web Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim server test about openim web Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim test: Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim test: Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix env api url Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim server deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * fix: fix openim server deployment Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: add openim task list Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: remove openim config Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> * feat: remote tools imctl * feat: add tools imctl * feat: add tools imctl * feat: add config * feat: add config * feat: add openim config * feat: add openim config --------- Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com> Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com> --- .env | 1 - .github/workflows/build-docker-image.yml | 2 + .github/workflows/build-openim-web-image.yml | 118 +--- .github/workflows/openimci.yml | 2 +- .gitignore | 1 - CHANGELOG/CHANGELOG-3.1.md | 26 +- CHANGELOG/CHANGELOG-3.2.md | 40 +- CHANGELOG/CHANGELOG-3.3.md | 40 ++ Makefile | 5 + README.md | 14 +- build/README.md | 8 +- config/config.yaml | 21 +- deployments/README.md | 2 +- deployments/openim-chat/LICENSE | 201 ++++++ deployments/openim-server/Chart.yaml | 38 +- deployments/openim-server/LICENSE | 201 ++++++ deployments/openim-server/README.md | 15 + deployments/templates/env_template.yaml | 8 +- deployments/templates/openim.yaml | 22 +- docker-compose.yml | 8 +- docs/contrib/environment.md | 3 - docs/images/oepnim-design.png | Bin 0 -> 66183 bytes scripts/check-all.sh | 1 + scripts/install-im-server.sh | 9 +- scripts/install/environment.sh | 22 +- scripts/install/openim-crontask.sh | 2 +- scripts/install/openim-push.sh | 8 +- scripts/install/openim-tools.sh | 2 +- scripts/make-rules/golang.mk | 6 +- scripts/make-rules/image.mk | 2 +- tools/component/component.go | 31 +- tools/imctl/.gitignore | 64 ++ tools/imctl/cmd/genman/README.md | 49 -- tools/imctl/cmd/genman/genman.go | 62 -- tools/imctl/cmd/genopenimdocs/config_flags.go | 243 ------- tools/imctl/cmd/imctl/imctl.go | 29 - tools/imctl/go.mod | 5 +- tools/imctl/go.sum | 3 - tools/imctl/internal/imctl/cmd/cmd.go | 146 ----- tools/imctl/internal/imctl/cmd/color/color.go | 352 ---------- .../imctl/cmd/completion/completion.go | 283 -------- tools/imctl/internal/imctl/cmd/info/info.go | 119 ---- tools/imctl/internal/imctl/cmd/new/new.go | 619 ------------------ .../internal/imctl/cmd/options/options.go | 50 -- tools/imctl/internal/imctl/cmd/profiling.go | 95 --- .../internal/imctl/cmd/version/version.go | 165 ----- 46 files changed, 674 insertions(+), 2469 deletions(-) create mode 100644 CHANGELOG/CHANGELOG-3.3.md create mode 100644 deployments/openim-chat/LICENSE create mode 100644 deployments/openim-server/LICENSE create mode 100644 deployments/openim-server/README.md create mode 100644 docs/images/oepnim-design.png create mode 100644 tools/imctl/.gitignore delete mode 100644 tools/imctl/cmd/genman/README.md delete mode 100644 tools/imctl/cmd/genman/genman.go delete mode 100644 tools/imctl/cmd/genopenimdocs/config_flags.go delete mode 100644 tools/imctl/cmd/imctl/imctl.go delete mode 100644 tools/imctl/internal/imctl/cmd/cmd.go delete mode 100644 tools/imctl/internal/imctl/cmd/color/color.go delete mode 100644 tools/imctl/internal/imctl/cmd/completion/completion.go delete mode 100644 tools/imctl/internal/imctl/cmd/info/info.go delete mode 100644 tools/imctl/internal/imctl/cmd/new/new.go delete mode 100644 tools/imctl/internal/imctl/cmd/options/options.go delete mode 100644 tools/imctl/internal/imctl/cmd/profiling.go delete mode 100644 tools/imctl/internal/imctl/cmd/version/version.go diff --git a/.env b/.env index 2f2766ef6..4f684ad77 100644 --- a/.env +++ b/.env @@ -227,7 +227,6 @@ OPENIM_WEB_PORT=11001 # Default: OPENIM_WEB_ADDRESS=172.28.0.1 OPENIM_WEB_ADDRESS=172.28.0.8 - # ====================================== # ========= OpenIM Server ============== # ====================================== diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index f9fb42500..bc27c96bb 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -15,6 +15,8 @@ name: Publish Docker image on: + schedule: + - cron: '30 2 * * *' push: branches: - main diff --git a/.github/workflows/build-openim-web-image.yml b/.github/workflows/build-openim-web-image.yml index 6e8e7d823..4a696fcdb 100644 --- a/.github/workflows/build-openim-web-image.yml +++ b/.github/workflows/build-openim-web-image.yml @@ -15,6 +15,8 @@ name: Build OpenIM Web Docker image on: + schedule: + - cron: '30 3 * * *' push: branches: - main @@ -28,114 +30,6 @@ env: GO_VERSION: "1.20" jobs: - build-dockerhub: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - -# docker.io/openim/openim-server:latest - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@v4.6.0 - with: - images: openim/openim-server - # generate Docker tags based on the following events/attributes - tags: | - type=schedule - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{version}} - type=semver,pattern={{major}}.{{minor}} - type=semver,pattern={{major}} - type=sha - - - name: Log in to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - context: . - # linux/ppc64le,linux/s390x - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - build-aliyun: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 -# registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server:latest - - name: Extract metadata (tags, labels) for Docker - id: meta2 - uses: docker/metadata-action@v4.6.0 - with: - images: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web - - - name: Log in to AliYun Docker Hub - uses: docker/login-action@v2 - with: - registry: registry.cn-hangzhou.aliyuncs.com - username: ${{ secrets.ALIREGISTRY_USERNAME }} - password: ${{ secrets.ALIREGISTRY_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - context: . - # linux/ppc64le,linux/s390x - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta2.outputs.tags }} - labels: ${{ steps.meta2.outputs.labels }} - - build-ghcr: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 -# ghcr.io/openimsdk/openim-server:latest - - name: Extract metadata (tags, labels) for Docker - id: meta3 - uses: docker/metadata-action@v4.6.0 - with: - images: ghcr.io/openimsdk/openim-web - - - name: Log in to GitHub Container Registry - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push Docker image - uses: docker/build-push-action@v4 - with: - context: . - # linux/ppc64le,linux/s390x - platforms: linux/amd64,linux/arm64 - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.meta3.outputs.tags }} - labels: ${{ steps.meta3.outputs.labels }} - build-openim-web-dockerhub: runs-on: ubuntu-latest steps: @@ -146,12 +40,12 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 -# docker.io/openim/openim-server:latest +# docker.io/openim/openim-web:latest - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@v4.6.0 with: - images: openim/openim-server + images: openim/openim-web # generate Docker tags based on the following events/attributes tags: | type=schedule @@ -187,12 +81,12 @@ jobs: uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 -# registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server:latest +# registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web:latest - name: Extract metadata (tags, labels) for Docker id: meta2 uses: docker/metadata-action@v4.6.0 with: - images: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server + images: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web - name: Log in to AliYun Docker Hub uses: docker/login-action@v2 diff --git a/.github/workflows/openimci.yml b/.github/workflows/openimci.yml index 626841d3c..ff5dc947e 100644 --- a/.github/workflows/openimci.yml +++ b/.github/workflows/openimci.yml @@ -151,7 +151,7 @@ jobs: version: 2.x - name: Docker Operations run: | - curl -o docker-compose.yaml https://raw.githubusercontent.com/OpenIMSDK/openim-docker/main/example/basic-openim-server-dependency.yml + curl -o docker-compose.yml https://raw.githubusercontent.com/OpenIMSDK/openim-docker/main/example/basic-openim-server-dependency.yml sudo docker compose up -d sudo sleep 60 diff --git a/.gitignore b/.gitignore index 2d8f1e002..92408fa56 100644 --- a/.gitignore +++ b/.gitignore @@ -160,7 +160,6 @@ flycheck_*.el # Dependency directories (remove the comment below to include it) vendor/ -tools/imctl # Go workspace file # go.work diff --git a/CHANGELOG/CHANGELOG-3.1.md b/CHANGELOG/CHANGELOG-3.1.md index 8d64c5ef7..894432183 100644 --- a/CHANGELOG/CHANGELOG-3.1.md +++ b/CHANGELOG/CHANGELOG-3.1.md @@ -8,24 +8,6 @@ ## [Unreleased] - -## [v3.1.3-beta.1] - 2023-08-14 - - -## [v3.1.3] - 2023-08-14 - - -## [v3.1.2-beta.3] - 2023-08-09 - - -## [v3.1.2-beta.2] - 2023-08-09 - - -## [v3.1.2-beta.1] - 2023-08-09 - - -## [v3.1.2-beta.0] - 2023-08-08 - ## v3.1.0 - 2023-07-28 ### Reverts @@ -35,10 +17,4 @@ - Merge branch 'tuoyun' -[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.1.3-beta.1...HEAD -[v3.1.3-beta.1]: https://github.com/openimsdk/open-im-server/compare/v3.1.3...v3.1.3-beta.1 -[v3.1.3]: https://github.com/openimsdk/open-im-server/compare/v3.1.2-beta.3...v3.1.3 -[v3.1.2-beta.3]: https://github.com/openimsdk/open-im-server/compare/v3.1.2-beta.2...v3.1.2-beta.3 -[v3.1.2-beta.2]: https://github.com/openimsdk/open-im-server/compare/v3.1.2-beta.1...v3.1.2-beta.2 -[v3.1.2-beta.1]: https://github.com/openimsdk/open-im-server/compare/v3.1.2-beta.0...v3.1.2-beta.1 -[v3.1.2-beta.0]: https://github.com/openimsdk/open-im-server/compare/v3.1.0...v3.1.2-beta.0 +[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.1.0...HEAD diff --git a/CHANGELOG/CHANGELOG-3.2.md b/CHANGELOG/CHANGELOG-3.2.md index f7823d119..3f77a8273 100644 --- a/CHANGELOG/CHANGELOG-3.2.md +++ b/CHANGELOG/CHANGELOG-3.2.md @@ -8,39 +8,15 @@ ## [Unreleased] - -## [v3.2.2] - 2023-09-03 - - -## [v3.2.3] - 2023-09-03 - - -## [v3.2.1] - 2023-09-03 - - -## [v3.2.2-beta.4] - 2023-08-28 - ## [v3.2.2-alpha.0] - 2023-08-25 - -## [v3.2.2-beta.3] - 2023-08-22 - - -## [v3.2.2-beta.2] - 2023-08-21 - - -## [v3.2.2-beta.1] - 2023-08-19 - -## [v3.2.0] - 2023-08-18 +## [v3.2.0] - 2023-08-19 ## [v3.2.0-rc.0] - 2023-08-17 - -## [v3.2.2-beta.0] - 2023-08-17 - ## v3.2.0-alpha.0 - 2023-08-16 ### Reverts @@ -50,15 +26,7 @@ - Merge branch 'tuoyun' -[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.2.2...HEAD -[v3.2.2]: https://github.com/openimsdk/open-im-server/compare/v3.2.3...v3.2.2 -[v3.2.3]: https://github.com/openimsdk/open-im-server/compare/v3.2.1...v3.2.3 -[v3.2.1]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-beta.4...v3.2.1 -[v3.2.2-beta.4]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-alpha.0...v3.2.2-beta.4 -[v3.2.2-alpha.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-beta.3...v3.2.2-alpha.0 -[v3.2.2-beta.3]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-beta.2...v3.2.2-beta.3 -[v3.2.2-beta.2]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-beta.1...v3.2.2-beta.2 -[v3.2.2-beta.1]: https://github.com/openimsdk/open-im-server/compare/v3.2.0...v3.2.2-beta.1 +[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-alpha.0...HEAD +[v3.2.2-alpha.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.0...v3.2.2-alpha.0 [v3.2.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.0-rc.0...v3.2.0 -[v3.2.0-rc.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.2-beta.0...v3.2.0-rc.0 -[v3.2.2-beta.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.0-alpha.0...v3.2.2-beta.0 +[v3.2.0-rc.0]: https://github.com/openimsdk/open-im-server/compare/v3.2.0-alpha.0...v3.2.0-rc.0 diff --git a/CHANGELOG/CHANGELOG-3.3.md b/CHANGELOG/CHANGELOG-3.3.md new file mode 100644 index 000000000..f7326691a --- /dev/null +++ b/CHANGELOG/CHANGELOG-3.3.md @@ -0,0 +1,40 @@ +# Version logging for OpenIM + + + + + + +## [Unreleased] + + + +## [v3.3.1] - 2023-09-13 + + +## [v3.3.1-beta.0] - 2023-09-11 + + +## [v3.3.0-rc.1] - 2023-09-11 + + +## [v3.3.0-rc.12] - 2023-09-11 + + +## [v3.3.0] - 2023-09-09 + + +## v3.3.0-rc.0 - 2023-09-07 +### Reverts +- update etcd to v3.5.2 ([#206](https://github.com/openimsdk/open-im-server/issues/206)) + +### Pull Requests +- Merge branch 'tuoyun' + + +[Unreleased]: https://github.com/openimsdk/open-im-server/compare/v3.3.1...HEAD +[v3.3.1]: https://github.com/openimsdk/open-im-server/compare/v3.3.1-beta.0...v3.3.1 +[v3.3.1-beta.0]: https://github.com/openimsdk/open-im-server/compare/v3.3.0-rc.1...v3.3.1-beta.0 +[v3.3.0-rc.1]: https://github.com/openimsdk/open-im-server/compare/v3.3.0-rc.12...v3.3.0-rc.1 +[v3.3.0-rc.12]: https://github.com/openimsdk/open-im-server/compare/v3.3.0...v3.3.0-rc.12 +[v3.3.0]: https://github.com/openimsdk/open-im-server/compare/v3.3.0-rc.0...v3.3.0 diff --git a/Makefile b/Makefile index ff7878108..1d01409a5 100644 --- a/Makefile +++ b/Makefile @@ -73,6 +73,11 @@ gen: demo: @$(MAKE) go.demo +## versionchecker: Check version of openim. ✨ +.PHONY: versionchecker +versionchecker: + @$(MAKE) go.versionchecker + ## build: Build binaries by default ✨ .PHONY: build build: diff --git a/README.md b/README.md index d1af632bf..2cab2bee7 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@
English • 简体中文 • - Docs + Docs
@@ -166,7 +166,7 @@ Deploy basic components at the click of a command: ```bash # install openim dependency $ git clone https://github.com/openimsdk/open-im-server openim/openim-server && export openim=$(pwd)/openim/openim-server && cd $openim/openim-server && git checkout $OPENIM_VERSION -$ make init && docker compose -f basic-openim-server-dependency.yml up -d && make start && make check +$ make init && docker compose up -d && make start && make check ``` > `make help` to help you see the instructions supported by OpenIM. @@ -211,17 +211,17 @@ Read: https://github.com/openimsdk/open-im-server/blob/main/deployments/README.m -## :link: Relationship Between APP and OpenIM +## :link: OpenIM and your application -OpenIM isn't just an open-source instant messaging component, it's an integral part of your application ecosystem. Check out this diagram to understand how AppServer, AppClient, Open-IM-Server, and Open-IM-SDK interact. +OpenIM isn't just an open-source instant messaging component, it's an integral part of your application ecosystem. Check out this diagram to understand how AppServer, AppClient, OpenIMServer, and OpenIMSDK interact. - + -## :building_construction: Overall Architecture + ## :hammer_and_wrench: To start developing OpenIM diff --git a/build/README.md b/build/README.md index 8da6082d9..edd419ae5 100644 --- a/build/README.md +++ b/build/README.md @@ -49,17 +49,17 @@ While it is possible to build OpenIM using a local golang installation, we have ## Basic Flow -The scripts directly under [`build/`](.) are used to build and test. They will ensure that the `kube-build` Docker image is built (based on [`build/build-image/Dockerfile`](build-image/Dockerfile) and after base image's `KUBE_BUILD_IMAGE_CROSS_TAG` from Dockerfile is replaced with one of those actual tags of the base image, like `v1.13.9-2`) and then execute the appropriate command in that container. These scripts will both ensure that the right data is cached from run to run for incremental builds and will copy the results back out of the container. You can specify a different registry/name and version for `kube-cross` by setting `KUBE_CROSS_IMAGE` and `KUBE_CROSS_VERSION`, see [`common.sh`](common.sh) for more details. +The scripts directly under [`build/`](.) are used to build and test. They will ensure that the `openim-build` Docker image is built (based on [`build/build-image/Dockerfile`](../Dockerfile) and after base image's `OPENIM_BUILD_IMAGE_CROSS_TAG` from Dockerfile is replaced with one of those actual tags of the base image, like `v1.13.9-2`) and then execute the appropriate command in that container. These scripts will both ensure that the right data is cached from run to run for incremental builds and will copy the results back out of the container. You can specify a different registry/name and version for `openim-cross` by setting `OPENIM_CROSS_IMAGE` and `OPENIM_CROSS_VERSION`, see [`common.sh`](common.sh) for more details. -The `kube-build` container image is built by first creating a "context" directory in `_output/images/build-image`. It is done there instead of at the root of the OpenIM repo to minimize the amount of data we need to package up when building the image. +The `openim-build` container image is built by first creating a "context" directory in `_output/images/build-image`. It is done there instead of at the root of the OpenIM repo to minimize the amount of data we need to package up when building the image. There are 3 different containers instances that are run from this image. The first is a "data" container to store all data that needs to persist across to support incremental builds. Next there is an "rsync" container that is used to transfer data in and out to the data container. Lastly there is a "build" container that is used for actually doing build actions. The data container persists across runs while the rsync and build containers are deleted after each use. -`rsync` is used transparently behind the scenes to efficiently move data in and out of the container. This will use an ephemeral port picked by Docker. You can modify this by setting the `KUBE_RSYNC_PORT` env variable. +`rsync` is used transparently behind the scenes to efficiently move data in and out of the container. This will use an ephemeral port picked by Docker. You can modify this by setting the `OPENIM_RSYNC_PORT` env variable. All Docker names are suffixed with a hash derived from the file path (to allow concurrent usage on things like CI machines) and a version number. When the version number changes all state is cleared and clean build is started. This allows the build infrastructure to be changed and signal to CI systems that old artifacts need to be deleted. ## Build artifacts The build system output all its products to a top level directory in the source repository named `_output`. -These include the binary compiled packages (e.g. kubectl, kube-scheduler etc.) and archived Docker images. +These include the binary compiled packages (e.g. imctl, openim-api etc.) and archived Docker images. If you intend to run a component with a docker image you will need to import it from this directory with diff --git a/config/config.yaml b/config/config.yaml index 2709403dd..d2162d4b2 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -156,7 +156,6 @@ object: sessionToken: '' publicRead: false - ###################### RPC Port Configuration ###################### # RPC service ports # These ports are passed into the program by the script and are not recommended to modify @@ -197,7 +196,7 @@ rpcRegisterName: # Whether to output in json format # Whether to include stack trace in logs log: - storageLocation: /root/workspaces/openim/openim-server/logs/ + storageLocation: ../../logs/ rotationTime: 24 remainRotationCount: 2 remainLogLevel: 6 @@ -229,18 +228,18 @@ push: enable: getui geTui: pushUrl: "https://restapi.getui.com/v2/$appId" - masterSecret: "" - appKey: "" - intent: "" - channelID: "" - channelName: "" + masterSecret: '' + appKey: '' + intent: '' + channelID: '' + channelName: '' fcm: serviceAccount: "x.json" jpns: - appKey: - masterSecret: - pushUrl: - pushIntent: + appKey: '' + masterSecret: '' + pushUrl: '' + pushIntent: '' # App manager configuration # diff --git a/deployments/README.md b/deployments/README.md index 1dfb87217..7065d45fa 100644 --- a/deployments/README.md +++ b/deployments/README.md @@ -73,7 +73,7 @@ $ SEALOS_VERSION=`curl -s https://api.github.com/repos/labring/sealos/releases/l ```bash $ export CLUSTER_USERNAME=ubuntu $ export CLUSTER_PASSWORD=123456 -$ sealos run labring/kubernetes:v1.25.0 labring/helm:v3.8.2 labring/calico:v3.24.1 \ +$ sudo sealos run labring/kubernetes:v1.25.0 labring/helm:v3.8.2 labring/calico:v3.24.1 \ --masters 10.0.0.9 \ --nodes 10.0.0.4,10.0.0.10 \ -u "$CLUSTER_USERNAME" \ diff --git a/deployments/openim-chat/LICENSE b/deployments/openim-chat/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/deployments/openim-chat/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/deployments/openim-server/Chart.yaml b/deployments/openim-server/Chart.yaml index d9d07eccb..22a95940a 100644 --- a/deployments/openim-server/Chart.yaml +++ b/deployments/openim-server/Chart.yaml @@ -35,4 +35,40 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.16.0" +appVersion: "default" + +icon: https://raw.githubusercontent.com/openimsdk/open-im-server/main/assets/openim-logo-gradient.svg + +maintainers: + - name: "OpenIM" + url: "https://github.com/openimsdk" + +keywords: + - openim + - im + - chat + +sources: + - "https://github.com/openimsdk/open-im-server" + - "https://github.com/openimsdk/openim-sdk-core" + - "https://github.com/openimsdk/openim-docker" + +dependencies: + - name: mysql + version: 8.0.25 + repository: https://charts.bitnami.com/bitnami + - name: redis + version: 14.6.1 + repository: https://charts.bitnami.com/bitnami + - name: mongodb + version: 10.1.0 + repository: https://charts.bitnami.com/bitnami + - name: kafka + version: 14.1.0 + repository: https://charts.bitnami.com/bitnami + - name: minio + version: 8.1.2 + repository: https://charts.bitnami.com/bitnami + - name: zookeeper + version: 5.17.0 + repository: https://charts.bitnami.com/bitnami \ No newline at end of file diff --git a/deployments/openim-server/LICENSE b/deployments/openim-server/LICENSE new file mode 100644 index 000000000..261eeb9e9 --- /dev/null +++ b/deployments/openim-server/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + 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. diff --git a/deployments/openim-server/README.md b/deployments/openim-server/README.md new file mode 100644 index 000000000..dd6eb759a --- /dev/null +++ b/deployments/openim-server/README.md @@ -0,0 +1,15 @@ +# OpenIM Server Chat + +## 目录结构 + +```bash +openim-server/ + Chart.yaml # 包含了chart信息的YAML文件 + LICENSE # 包含OpenIM Chart许可证的纯文本文件 + README.md # OpenIM 可读的README文件 + values.yaml # chart 默认的配置值 + charts/ # 包含chart依赖的其他chart + crds/ # 自定义资源的定义 + templates/ # 模板目录, 当和values 结合时,可生成有效的Kubernetes manifest文件 + templates/NOTES.txt # 包含简要使用说明的纯文本文件 +``` \ No newline at end of file diff --git a/deployments/templates/env_template.yaml b/deployments/templates/env_template.yaml index c6a2d7465..afa67404e 100644 --- a/deployments/templates/env_template.yaml +++ b/deployments/templates/env_template.yaml @@ -36,6 +36,13 @@ API_URL=${API_URL} # Default: DATA_DIR=./ DATA_DIR=${DATA_DIR} +# Choose the appropriate image address, the default is GITHUB image, +# you can choose docker hub, for Chinese users can choose Ali Cloud +# export IMAGE_REGISTRY="ghcr.io/openimsdk" +# export IMAGE_REGISTRY="openim" +# export IMAGE_REGISTRY="registry.cn-hangzhou.aliyuncs.com/openimsdk" +IMAGE_REGISTRY=${IMAGE_REGISTRY} + # ====================================== # ========= Network Configuration ====== # ====================================== @@ -227,7 +234,6 @@ OPENIM_WEB_PORT=${OPENIM_WEB_PORT} # Default: OPENIM_WEB_ADDRESS=172.28.0.1 OPENIM_WEB_ADDRESS=${OPENIM_WEB_NETWORK_ADDRESS} - # ====================================== # ========= OpenIM Server ============== # ====================================== diff --git a/deployments/templates/openim.yaml b/deployments/templates/openim.yaml index 5c6be94f5..b029826a9 100644 --- a/deployments/templates/openim.yaml +++ b/deployments/templates/openim.yaml @@ -228,18 +228,18 @@ push: enable: ${PUSH_ENABLE} geTui: pushUrl: "${GETUI_PUSH_URL}" - masterSecret: "" - appKey: "" - intent: "" - channelID: "" - channelName: "" + masterSecret: ${GETUI_MASTER_SECRET} + appKey: ${GETUI_APP_KEY} + intent: ${GETUI_INTENT} + channelID: ${GETUI_CHANNEL_ID} + channelName: ${GETUI_CHANNEL_NAME} fcm: serviceAccount: "${FCM_SERVICE_ACCOUNT}" jpns: - appKey: - masterSecret: - pushUrl: - pushIntent: + appKey: ${JPNS_APP_KEY} + masterSecret: ${JPNS_MASTER_SECRET} + pushUrl: ${JPNS_PUSH_URL} + pushIntent: ${JPNS_PUSH_INTENT} # App manager configuration # @@ -353,6 +353,10 @@ callback: enable: false timeout: 5 failedContinue: true + beforeUpdateUserInfo: + enable: false + timeout: 5 + failedContinue: true beforeCreateGroup: enable: false timeout: 5 diff --git a/docker-compose.yml b/docker-compose.yml index 543d5558f..4f8983660 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -127,9 +127,10 @@ services: ipv4_address: ${MINIO_NETWORK_ADDRESS} openim-web: - image: ghcr.io/openimsdk/openim-web:latest + # image: ghcr.io/openimsdk/openim-web:latest # image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-web:latest # image: openim/openim-web:latest + image: ${IMAGE_REGISTRY}/openim-web:latest container_name: openim-web environment: - OPENIM_WEB_DIST_PATH=${OPENIM_WEB_DIST_PATH} @@ -142,9 +143,10 @@ services: ipv4_address: ${OPENIM_WEB_NETWORK_ADDRESS} # openim-server: -# image: ghcr.io/openimsdk/openim-server:main +# # image: ghcr.io/openimsdk/openim-server:main # # image: registry.cn-hangzhou.aliyuncs.com/openimsdk/openim-server:main # # image: openim/openim-server:main +# image: ${IMAGE_REGISTRY}/openim-server:main # # build: . # container_name: openim-server # ports: @@ -203,4 +205,4 @@ services: # - prometheus # networks: # openim-server: -# ipv4_address: ${GRAFANA_NETWORK_ADDRESS} \ No newline at end of file +# ipv4_address: ${GRAFANA_NETWORK_ADDRESS} diff --git a/docs/contrib/environment.md b/docs/contrib/environment.md index d539b961b..f94d423c6 100644 --- a/docs/contrib/environment.md +++ b/docs/contrib/environment.md @@ -199,9 +199,6 @@ It's crucial to verify the configurations by checking the connectivity between y ``` - - - ## Config options ... diff --git a/docs/images/oepnim-design.png b/docs/images/oepnim-design.png new file mode 100644 index 0000000000000000000000000000000000000000..74cb79a3127bcc0c433066b411050a9402e1de14 GIT binary patch literal 66183 zcmZU)bzD?k`#o#}QX)0fAPv$X9nvTW4BbeJbT=r?kP^~^bazWB-6J5~Idu0Bzk@!{ z_qp%){R8*_XU^GY?`vPzy4G4dL{VNE^C|Jud-v{PzLAkox_9qE=DmCOk5Qihe?hyV z{to=O@1P_tcCTcRbOZS1k(uZ_(R=sGBhjx69^YMKE2HUf?;cj$-Piptn>^!t_inS_ zNQkPq>TNfnsKl9lKlN$8y&St7Y;u3K)}NSp_ki60J)q9>qC%yeb4A_=^1N_S zGt2RCLRYJuBRM3G}V=~sX$PKfu8=gynIB_eB_@T zga3C=V# Hi@jX{x$8ep`3t!Uhq !zI<`1y%*71F+{y@Ly#kvi{8(PTLM&Vx{L zAWwG~o1{ZSL$jMkj^HA!hOse86BudNl9QyjBMKt;6tb>Z^6p7O9yQ0DtG{V;?z?)} zwC7qiEbk~Zr0Y(P4YTP(@K#0t?vsQDW+F3SFQW6<%t^Sq@(LrjIj`1uT7Fi-g+0`t z4a@dk9AZqOprEw%^~qjB=bF7pQu&>H)6&RK_vTp#_9qo$x4I(88m6_6_ZQnZh-3BC z-BmWMXz=oI>E!VgENWR&%X(O!B4bz#cM4WD$_)eh98~Zn&FlU?e!}BDk36kSS3o5a z@|A4iRL#8;n Y>QxP-J_~yW~J1OZ238M1W{8MwC-3@^6kz=WV @IyNv67dF)Lxa{aB&zvr&f|Q?#wT=K&jZuW z&aPsxMgilevZB%prLyLeG3{vW&AdQFbN`W}D<|;WP(poAoHWnF5Y*9&BZMpq1H9vz z=X8x#hwNKcMg|5JDP)B1ezlD^ww|8R-dgfY0B;1|?e5LT_?acSIUuK3$6-p{6{^24 zPqv0ye0 *5lB(KZzL5U{8{f?W>YtBm?T$6Ick@|{Zy3Zkv5 zfBI6(8$m-tzL>v@p?wz(z4-p;CjWSzIQvKA?EWBx&LxF-V7C#6*&u0us=(Q ;)nG@)k|AQFc7$cFMp-gFZ_u~(V z{q3gbe;#J@zlXi*SpO#Kw;Q;!hu9n~ocQikxII#!%6L~=FD@?bu6CpRyF*cV%P>1S z0>)gRjPxQTA8vd|(9qD @tgH%m15|kQ zH_0as9oa7ZdXW-N?6*y?@QQF^qwP9;voWN%_iY%t2za?Oyi(7ryL%8w ltqy#;IJ>N?j43dvsXNKX$Z7-7;usXx2w^ zv71kdZ5EO9x6NTYSqs#b^T*qjaOk^KepRj4 yfpXYBMK(1;(B=T?Mp#k(f^;Q>&Ur_w -!XC7pZ_l` zL;vtun0SAuuqJq@u;<6X@yCX*N=V_siPc9Am}_z!{}e*G8Dybl8DvKi5PpN{M; z=ZahicZP3%)+SsIL#=El@6dTy=(ZhS%r`bLKGW|7+8KI`|2U}JXI!lD_B0grR9lJp z*}y4@2|Gw2gK?_XoiN)>+}H~lxN*L`=kqzY<;<$;{2UW64UHf@5!8&v+Op5oe0%J& zzfA6hJ@2upjXF{PT4IyTp~*{N&8WAoxlW7J{E<}!>3GfRw1%L^IpXY?_n*@iz#j^s z>bKSnZVMJAV|UqnPc?-FeWug=p3B|&`cZsn>wvIyxMCQAfjW!?%7~yUc$`|EyfzVf z5d`^)ONq!A)-T%jsAt2-Hoev|j}30;%=h?}EzVhKLw{8>@KfaG)PpHe;KBIY49WMf zHz(p-@VVAp@}|HeO_Xwr5xHaTv#7)}+&D>`i5i2KTHHPl@z>mcddm*w?;v@<)S<`s zJ4GaW&2cVq|MsaDEM>OHeXp1{R%iW)WiS0C*T$ewvoM3V>GqW?-W|{T_Tk?wC6?N; zUX3U5sJL^5y$K>_L)|vr*?WX#u$Fay$tvqL*{?$UC#Tlo`qxX+AC4vkMv=sy>-#)t zZ%(&u0Jh-9XUVBik2riis``9;dA$8*S>#4n!XOT(jIZlzsA)u+Qp#=4noOiMLlexK zSS2gAJIy2CMM@RyL3CfscIn<26FBrnNE^!5v13%H2WC9`V&^Czb`_tl9 WK@UfzZbfW|q1<__ZvZ$sQ$s>aqV`q>!P$&JtRqiz|pm zi)AC~o1m^3aK~fLK!e??pOjB-4-xuCUvQFn!q&Cf96$tcqR*Mq+^t5h1&mXl{v1V@ z9%`Iq493)rY`f36-&qJ>{9WGEEpsXfXCbFzZzZWGLjGzx>Y|jou7z__mgAbrlYVLv zcCbT=3DQRHP{9WDbdzN@u8pHv=X{Wlt1NG5oh?%+9-QXjWc6PQuGdPm(+5 ;HQ$}z9I4$OLYBU_ogb@{h@?L&+;RH sT*XqgCd?AI+YW@ 8jhk{S4yK0=2Y4#j8&zm)P`yR43orkTs2BMUR?d_&P z>rBqQXYzJsQ0E;ZK_&^_omuxM8r?a#i$IaT6RbcY-%&UsciEPz`JO5~e&E7kSNQVr zNY_b6gUyYyy#(SNIn;s%@;s+SI!ujLhPOq0>nsc;ghB2=E^_%(Ir{0ZnpFXr$df-i zJLW$Hjnm+AR@+qeAlemMGuwLmqZ@`A6DYjcBIjE-fMlj5!;-AhkzYf2O@eRQTy9Ok zwe1VdR&3^SHd#_OU&>m#ew?mdp-~caMXak8f=r0-NiHSP=p_i3i>R>@`&DjuKhF_K zZYIo!Xxnmg{t#@4G2~%s&oD|pivlD36dC1w)We7&WTp~qp=k+--V{jAeH}hRgZAA= zXnUOVC+MTd$d7lm#{Apg9G_PSdbJdGk?z${`)O}2vCcuDEoFz-*O^sn9BY8urIK3U zk HMkd&7RMXp|W?~BIWw+A8rn=HB8z!`q8fKkXi+Nw+wh7$kkx-t%PYSmjAXc z^hQYQn{S5#Z@BiFmhQAq@JU}+h`P)4rMdl_#qlX|`R1!e64Q4?!O8dsqu|A)(w~_L zcgdZY{!gVP++>n6mx_YP&oKuG`*^MKocE>qPz8vaV_50GBQTg~K52OVz-PC#C7x7n z&9UNSBqt7ce;6IUfDpO9e@SfTD$Iy#fTCvjeoxKb+FQi_16>d6K+k^sQ&$4~3u_pS zft$P528Gp0PjYnfTlT5?YZP7=epEtxY=hI4&*umSpVl<*TiM2&-udkAkkL!&)6yR{ z-Y2;1b9<~lH{u5+YB2QpEo(haqHB-p*j9$Mgu})G5m%y^rppD|#~%j}xAgzq)Q@x9 z>5E?ynbfCu2hT?s*$MN)_iI(N<#Bp?9o2d`Rp4rGB5b`?-^AinG|Ple2FgB`Hs1MY z7rO#IY{V;Cl~UpGiS3Xs@ >4Psc*1|hdiATT&}3xfeYa9} z-{v;X-u+2-U`e}BP;c#gsaLN~+;-hqG813V0`Eb_USC|j#I+p^*3BWE(e)txXD;;} zF^rX>=n9eMlKsuzo*GYduk_0-b)+&aHDAq;#y&M)a_9L(xtasH@LJNgMR8?^(m>$l zt22b~EBI<1ogQNMJ3E!yo^_#{S5it#C!e|C-nGTQ!?R2>%sX)u&;8xdUETg~4PCHj zpZfi;a{W?D*YclXt;oJ<_^**dA%w~Qj24x!?-T#Lr6RM`8Hhc}vK^Oke$=wM_YVx< zlKG1kQo_k1dsCR}bitpsO{6W$1qi8Zb19$K_O^YTor~Q*4M0u7*!73@#oN_y1}ZzR zPBE+KHEC|uNS9miSW__7- uzjkxu8!OReoIa16=OKuWj{a4s&bmF@Fs|k1$)eW? z0N R*XH zifDU+4Yu4_B#md)@4UH2+5zlH{rJMd`}#BBH=|$QL_xf^FHU!+=^ixH)oDn)to3kp z4Yo}dbgOXvO!9ENRKM%H)7BlKw6eCQRTzmPROD&(@uq0beT(_R)_!Y@*@9IP@+Uaz zP~AZQS-@f%G+w4!sOBO$aC K;wKZz!TQDJy z-Wn?Di0*4!ef!1M$6PjZq~6}%hh9c6=;)*+&Y}2>w#%KE7AFTF5$~(nw2|Ah+iRb5 z{o5^{5b5MrJqTXM=er=b41$$fP1mFYoQTYuH|1)nelQ5M4GoueVIw!KnbCf2Fx3K> zgMfg5_22n1{?SAwXNQLsHJ(^PUcmCTZ;a&95LQS>g6rH*3M`lH03?4{SN`nTvrj-f z^WxR3Q7tz?(}5(XGsJOa+BF6+;P$JFqjJ*$Vhim5zWk^5c8MO`larHbwe8PfH7LYg zJk4X5&-0{EzXRX_ii!szDk{{A&d|4OZ#gi0MDUbIc&uZ)+}zv_Nn1{ L&Y3ngeu|Q#ookI^v@ba99G1I zh{CoB=R1}X?EuE-ASD<(f8NPM4IjaRLI*=YCay_fQQ;tDI%u}SB-Fo{Ay0!s{)?2s zRFj7bsj%n7ROP_}JqR5Q&CRmB$#Fvo&=GD0C@CqQ5fB6prV3C|Q2d-K0Cv)!ZqL$B zk9AGgd3yo}-~+}AgxcHNzX4NEiTB3ayE&N5yV@@!L+p5a=wUtIB(K{N?-LAAa7?be zwsv8uba^iV9|SrNIQ|65lrn(Bgu({}dJS_rLJ9khGINjZc 6~3H`#( zi$9EBsb=|?N*yqWFeQ!>HZ@fH!y{%VR=0v6Fg=ZG(DFp=e#jtMY|_0IuUI zzHprMIGTK3A47Dg5+Q|%w;=R+Cl#aVOEvgb&`7xh 82{f%P$#SA)J_v-Y=E64KJ4sD`d{lh0g71C;4yG<{p!&3V(fNz@OW7uDRTZE5i9 zlAg@;vI!)10ezXL4<}h2_@R#Ar@mZ*OnP(vr_qE cbu z6tNC5W&$d{huV(i^ia1SfSU0qTR&ZM;1@J?4n$~{52nb;^Y!-kSE-SwP1lwz>a0Ck z>2h2A_;c=~om(Ph6~W>KTc!WT&LOJG+U{!@pPBdJgPFXSH6>$p>2wYNTfuPx6*>Ff z8i9Uw)|!#mIhL#niS3fUV+Wi97q!+Llv2vNJLEMmByAX_ZO8DR4z(VuN(H+wN!bMl z{{ld^1z{3)xd8sF2wc(R;A9hNMR!jkdqX-I@W*%S6eY~X-_q5mD_uil5_!i)h!Sr5 zj>;tCPsvncbN-Se7#@lhpnxXf9X!qBvWoia-}%ZWzfE=DS9|v4lXZs@1tez&eJa3f zC!Y)E(f7d0jrIypsA@gJ`>GzMN<-w7s&hR-!Ou9bOk& _wNtbU6}7(bJ`F$l># zKDO^)H%s#})hq2vGhLD2fB3+`ZSrGZA}pQBGy|kt_WtuJST&Y5>~1fBN!GA9(qatM z2F+_@R#uGjdtGwWH^K{^uYgm1`}hRH^5k%A5F0DA3Eb)AN|`koKJc$~Q7+wrUsSdy zc*$n@J^gF-Z&AE2j>t1SawBbvxt^}_r6(**;=*q(#@ELVsJJ}NXs9%57k@Rco+I_W zLr;t6I_}R)%0MT=T;{ImZuT4W7e*rWB=>W$g3*&0z{@i;g60Oli?v;@cJ^-Dqte0W z=b6~HEIjyeGz@hbpzzQ&VOLf{bV}QLUK~|I`QGaW4};%;m_nV#!@)7El}`dlTwl_7 zLKpBP&6EBRIOXZK-=39Q;N?DapINtB)j8+)(B7Mo>e<+#f16?~k%yCkQLF#%XT&?s zXG<-3 ^Zj~RJf_@II28=uqDH+=h?_Ab1>SoTdC^o zSxB22ynJIq8Wx&9KJSd&We_{HHvk15TQC|Pci-SIX=Zmb3p(91l6Guc{Di+`l6_VU z^szWTAMo94Z%JCu;6dXFiyA_ugl{7T#0{h9_-nmKQQzr1cs4=|H##TAxduF6neLvL zzM+5VP@BnB`MuQKdzchp%G-95cL_U9GkxS|mhfJh*#{ (}kr5&snsi!Oa)0arR+%$yn zYd;YScwqauX<}6fH+0}k6+vZ}zkurQcmtw~@hrERRY4o6%*)RKVG5Kzhk;XRa*sX7 zL?;o?nu?^tOu@6CxtZsrlvdO*HjXHKd0aYv?XtFdOun9B5eS~?zjw@bX2&j4q(v|A zG<%o0gEKTkgS10%995_Hw6i`|vs;KCKRz_3$ZSK{a;6S)BgCuiUj^{`j=M9Hr|D<_ z3KqFb+iu1HX!w;aOZW%{MVs;T$J!~CR9KWDy_tL5T(cX#ru35q(~U15?WBLI$N8Ht zUmE;8POt0CpdpnukrXtQ-;R7&NM~^Nby9 rL@d1j@`((wIBctq1PrVZl>;$|#|{sX`_%q_B3W!Ag;$WKpRVm|I_6-;b?` z=6!d?OICZ=nmeG!Y54na%3CyS&Stdrcr1WkB}FeXC83 zc>TNfSN3%f=vN_41l_iT#==`ytSy~cm)|KOhy;;2kFB)xP4!!JEA7VcBTZ3Wi}r0) zDygFg@*k@iwhoqzf+wjq?~lt^Kohy6M!}H2BCpBusuu #$%QO&8KzUeiG@q!<@8+H66mQ;T8D z9;HO5o>Ec W#d@_f`WopXc?iyTzA4)uQ*`$WOF}W{|t!9+R4)ncv zE;ZTLm@Yp*|HJI}YGvF?R5~}i48qV!APW)y$+xlw22aJ;k2UPBa&>>9e+OhO9Pk~| z-ORMhEWlG|Nomh^khY`PW9x-KNvHREHJHoVni|Sp9a`6E93Nwwd0ghdovmMxTn3== z3pf5{A%s7jdk^373ufj4Er4HVzZ0`#QCi2|^~JNs?|WKXmsEemKF&JX7?Cc>BRAo` z*dd9l(@6 x!r3nmVk%ydK&yJ% 7; z<&CdLbF*7kv~%~v`Ihq7MuH4!s}!u%K1%s}39Gp4@FFv7VqFv|_;prJ+_+oI^Y}*A z^&-G*Xsxmq^3|go)xd$gdPjexgxUZ;#)o>KucmwMczdlvyI>Cisj(9IHTHk%YMAeP zQ>O`zNTJ70?AXKl71M)FY}6IuRPc^aS?t^ kss(gMYW5Pompra8>B}mZ z+}#%}L`)VsB2QUao9o?n9z0bdSkyUW(h(syR>A5pQ`*TW3Y=xHF&dF`{CITV8gfNc z9#pu-8{`r_Uzw2CTg2y2E) %JUC^7fk@)?-mZS+%0(pktfrUXnTHDJQX`iUJ2cY9mSm6K zL1>bKf{pDLP*j*qHzzCU#)>qJECkpkAv5TAv+jBSG< 4Tdqxc{+ibN{Ccl-B(t!}ORL@%qcd{zvn+z@vj7qO ztEDf?k`JAk*jzkF({K9rx6{1C_dJn4&%kw01L&{;4xHO{wWH;|Obhp#tHSoQu!89v z_Rc&(OxNibi!e?^qZ)B|0H@G?b*a~5^2TdQC>-<|sWCV7$o$ZU+a6@C;}ki$dz>{= z*khP;b>(SMZGDbJX8PRT$SAmA!%H*hPycK|kN2)HFvLAmW73kY2xf-086SYKnJp@S zb;0Tzr *z94pN|WJ~fF|y|j9eWxK(~ G4sFp 4p3w4>pv|KJQ}3BH`{g zj~u%O>_VA BUOPTu@oFu!TajN%-2RNBQ55wrCXsr{EBEVBb zEms%V2gvywIeR6BuRJ9Q@7ved60KMl&kB3G<)=e$nzSexhNttk9GPH3q{-uQ1ng6r zBRpSx3|mkqcSv%L=Bg;{2SmNJmNl+U`9o}SSZxEn3^v7P>UU-q?lml+B+fRt82$Kk zKXUf_mN)NY2rg{BTpcg_;19BD*q(3EZ#@F+Tw_q7*!XzaLa_WseqLUgT8oUE{EI_F zA-miRcgkU^WSoHdM5Kg9#fKi7X;R19_PqI;de@!omZgi9TO1#+)7tgf9o)o<*k?6p zF`dVqfSgipJcx>h;B1^LHsZWGsux+>^SLM{CB&)HYB!P;O~B(|XVTXK1%46dCr 7@U&huY)OEzuef}8AOw= z&4REyi<5Vkg_xL` q`CRD1?89d&1DJZL42C7T_89@nf!7@)&b> z 1h-L613u-c0>?O(j)1a$OLb^wA>%yRsKAB?RPe5x+w=zR7g;zKt?#f8W+3 z+qab7n$MA~**CmgIN9^2_AXNY1+$HF; 3Q o02WpWH1DF*5;z$ zdOjp%%jJoCd1m>U(_BhtPNpj*->=Mik{2fvuZ8L3N1*A&Y3mnVwe)b8bGwZ`(~KWV zkH>{Xabe;k42#u&3%ze%Z*)5Xz|4mf5uZ7&Vv=pXx1yVt*vkJ&&%^EMgt7R2$2wr4 zj}qbGW$8kUh{>6ozShF=(iCyMD`OpjF5%=zbv~c*5^4%6ZvpP2gipV``fP#TNHLCH zPkJqigA}eP-1K$44*=JCj{J&Gqo~{U5 yd^q3 oB)_kcfo(ladxAn{i3kMH(Q3hf6lTDfqS$!$ pVte4ec<94%2 z)1+kgCX8bB!+*r>tj)=juulOvJI}Zr_pI7K4^*mt)J#4e25Pdk$A>Cdm+PsX`Q8#} z{BXYF&D9u91rR_;ZtBGV;E%up81}cgfw=bT^#E5|x1(%L&mV|I_7ou7gKC0%6*T>2 z%^Jg_3MmGO(`T6?rg(=(@OgW>RzYiznwD0p@bri6W*8ACwL)24-Go+g>Q v<_zBhH+y$VMPM0^R6jXWSF@9G!Q z5p0?Z9y%Fg-13%?koYDUN+3_jc`y&S_%bcYRSW5RWA3^EE=WaXWwz=d!1Wsgz?Tgr z?wV$j@DL(lZDLM5m_1ku6S&R0$dGa!>Pv|GuAMY24b}+{{-!DuF-2*W{84DlZa^oq zfLAGL1Q=bWB%f%Aq%5T{*>q+9>F_4$Z&uhc{oBDOnM`zeE-#ntPABwKR+5+Z=HXbJ zrMi mgJqYJDOI9YV(*);cM6NJOkELV@& z;H%5_fa&v~#(J`1^$RVpZa=oP-IV7{^E1tcZ-oN|(OEo*uDzD9wA*8(>xsTkM<1(T zsJi|oqq7Z+rd8oIGZ!zBqxA?JN!^sElgqAfbmO!Ou%kWf(^*hqxK3#CHyCnyZ}C-y z_K8=L*JR;u3kjZ-H`B^q%p2k#$>0vEG)9wG5G9q4BO5I~oQ-lRra89pEcN({tmC9Z zFmDVj(uTZH80E}vW;` knT0JdHFePB{nZ&Y^(QSJ;SAyixRE@qD<#c zl=&~ZJ@xf}MD@wipE7=Q5Cbk!fCvrW4IM#fhVPO?!iWtLyVT?#3M|Obw+;7`35I8_ z7q3q(wrxH+k=jm`nF(Of^D6)F73FP3xJ)63A-pKJ!?FVuS(0GrPn*l!!x#QS?$wfm zubD!B8vE~*WmGk0V!xK#RTm}Qw0NRVaA9w +eRLef={*+ zBJHR=-j8K{9zMUB*?8gj;Tl%u+Z#Mjfvo)O?bxk_2jhSL$nrU08=;_eEY{hRatjM% zF+qRn?p`>8wd=8qUD0d2(h<=S$AQQpt0&G0DoY3<*U&K8!>}aj^y#`fyP_xe#FMmB z_%jWD5555nppuY{%hA4&$LTkhy*d4 !K(PQ>I^Op};2)`q{Hu1Loxy<)}pj|^`@?#Y2h#oc{Q*RR+K`bnXy zN7A97*)l^xdydm|eK-M!U5J+$!}FL-?oiO`3f=9_(XUczbRzaCz+403Y-Fq$x$3W; zYcm_rmv*0VP7L*VKQ3nO+v45>T9Bv3I%nZRtOq#cJ{Y(}#Q?A>c+IVR?}O#~cj-a) zCI@x`v(_gIYt<+Ub@qf4HjeGVI0*tSCCUtxc;5iYs$=1&pWRwNkp;j^2i} v0D_t%QO)N&i9Gsll>KmDX2(nlNsf697&P;yrtBlQ|4*I4DW)U~smYdZ`8o^t@ ztCDVV#AEki-o9sVr9BhJZz`G5cv(lj4hNd{CO8E=yaG_iLge+6iwS}`bkUUDMx#sY z&*fX3ICbqsIU}v(uP4izUohU0g<-B%EN+>&1MJ(ck_aj>0aadxWxZ!bmmZG!3Nau# z$nJBzd&9tjA80gtXg5*eTye}sCRD^3v8_*WErBFn)N*4HlPHB>=6B1_hbjnrst(_` zp5+Y>m%0Z};rhn!cw2TH&=*n{-GbsKox41^L*l793o9#QyI6QmMrKv~8&lpiqfEEn zel;FTRS~bl>rbLYb!X8$KH!D*Nq_#+z+Rmn9G=_d(L*~gs@&>S!8f);t87$K8w1-T zJDmN=+!FRY8#pJ#lVm(Bow9@LOMF!OKDT>53$-mbXm_kH6oOju!yItKoR6}4`;*@+ z2)HiCwS=ydPPLFZyTOYFc}xPXb}*==t#ROV$@B5XLERFxdhwV$K(P5gY#`{NrsW>V z4PL2tO-;L9F-L>zzr<*R0$h)Ce!Nb+-qijNRbFpLx !YUI7E6a8 %4_! z1U;*v#mIqRh&&gu=_BLyo47S5x+oue5#gH!{KRI*Ekn{qb%l0bDtXQIShIG@w#)Ib zvgvZW@BWkM@}#eg_lXbG>@SD taLzP=}l)D*XV^9Pa)ga1GkN9um$!FQY!G={nrC;f} z3>~+o7|yFEElksP_NVz#GQ%|l6RY~RIUlw?sp4t1dnFj;^kwE3K+LV1wo?W$6t2J% z_vSr!`0h+Eitqi|gbMLs7?Ye;w;R%>Zy>|H0k8xfui!AW?Ds;AJ^`q+J8Q%uw;R~) z7QJFL5!5?F7r5tE$&6 a(1}fCRFkY^J7hu#iO^rJZ@B@d->h9p{bnzX zc`OINI#9P442{v49Xv>tMTGsa@-!Z|aw_e3Q{1wBcez3ZKb)48M^vGC(WtAoFUC=m z9&1y^?V0dV$b?Tq32zSQt~SnEKAjc3QOZ*Bqy^!8F3fr=VtYoJzo~#aPu&HRn+Z6` zbbrBTU+Hv `4Bp~RTlVN8K8q919CIU^2IiR|k9Rq| zHTH3x+h~1bAKe>8#V9;ZcFR4CtJm#4az(@AhP0CAcV}Z`r7+ONc|Bl@ZVe=UX}oq~ z?vnQMbt69Kdo!Zm!=5U}Hrx-20(q4^%81h43k4qpgeU_lYO6a132pz8@d1f|5O4C) zok732PouaL5N%)IfjTAnXOlW9;N0(c1YSh_0;xPU;LZp#Mj@)5PXTh15OAF{%l;x* z^wmMT8vbSSxFzT%l-L`e?>2ncPk}X`(^l=eH2}Rs{Ns4bJ4uL6=v`&XvSkr;H~{2- zgW?Gkgs;oi*ube8KX6=vg2%MV^-3j5xWAxqoz>Lp$7CKPkI4Wk+7|E-q*kmIaCf2y zoX^Q-<_MThCII?;$Bzt8vYZ?sq=r%L`ghi@F1mJ*7i_#9a}XgL9vAER_6yu($*4Jc zG$-9|n8RY?_y(Id{HuIF@`?ke-ztJsRoFBFagF?)djJkoO_>bl#A#D>N;e?f{T0LK zxUQIcYX$jK@xi7$ibAVDiyrgdpC=iVKR;TV(EcqCdf?=b08X$Jt9sNsAo<_QBPq9J z$N~DZN@CoLvZ%z=UmMUiKb-E$o)6ZxeBKi}VfH*C(QiZUHPY|I0zGYH@V8NYyd)-5 zj?Nl+AR|bcK>WFi(uC8=3kIdt_WF!8!X%cBw%jWQ;xgjK*)pz|Hk^1#I0 =BJ0ehSkjH=_AKN%CE^e$KgMRl;=r=c}rlywJO-)Nnt2QLRfB*go*Tx!F zNi3PT^_4LmwVashPdxwya4z*dcXN70HFK!2Eq#Qo7bkUA%hKNCpP9VMUgyQGm-8~< zlC|rk0;GaR`qjuc$lj|eboaQhE_{Y_H+m)=nIMb8S z@J(EaJf$mwRQ^wZ-}7uPbk_8d`NqL2;4zSpv}uaKj4UW9XpnSC8D7D-a_OaPxa-^j zpM=YuoXkZDiZ+8QoZdK|VqaXBxi >CMW@X1qYtfKY>Z>v?%DJOs|&@+6;-?uMB0KS%HC|EZs z)2h#9zu3kblabK1H!GWA`Ent$1(PxQM+J}gYhGoyhkEG~;$9UkSfGYA9 zzF+@JXX0hp#UKhcxJqsF3HlCiqWSUq5X;dDBXmg+;2N^O{Af-i;kJBMN}o$PiFTU@ zxKv2=^z=@&(mj!5uVPa%UyClOsI2bg>wXf7fE1+)ema|TzaP_i+WFl?k0XEqU_&Qi zw(4Q_#&jgJM+ty+o84JL9Vf=pb-os9RtF)bGPn$ZHLau+5{7s5hg{obbKur@on>AG zl?Den-h`!d^lTL1d>=MCzCo7HKDXV``Lq(LSL$e;F%;v!@#0Q2VDk_a{amfZlfc=F z4FQg{i~w20PWey%qu}ONo8o1UwXQ`(S0Wl*_Vln9FW~9VOq_&}ALi)MIiV9z*v X7|Hsr@$3@kCVZV ToG7 7JvEWb>DDEJ;me6q% CksSyx pvfx#7d4~%-Jw3OYC!p&dDDiW? zj~Be!3A|nNa)Py0vGw)hM2wPjU}8?WYvb#beMs$`5&6j_#-q*^N=$J_&aq7Vm~gr< zm9R7N8FPJqMG~R5VIUW_!I|gPu?0tZz+nI+4;+a!Lp0$E=3?#UADrUI %1 va7D^h} zCpN#^RTmd%f`@#5adGjz6GODw)hx(ic0ct2YT+%4OrEU69*Xn6(4h<1*46;mdzW{F zq6XpSl68^P&;6Td9}uC+%;!YqTe#O zON`QC0_)Qa%)h_+)q{?7u~MM@h*HG^p3C9U&yR7y6{(r$3Ic|g_Ot>3uK^Baz0mNX zV59p=@B}HSot5>hu zOqRA7akb9bPsvXAW3!*D7ToMru8U`)IA{>{4*=N`b#GB#_Ac#QH^weqPp!r3!Re%x z9c7w|RHhHu$#w4-hAR5sC6b^& _dmmd~GGRyil zH*`ll+yjO_HTvR=ftMO6o<@lXr6V%3e$;E#ICda!P^no!lMQYoTQCO|W7}>iH3JMT z68f=~xs8Rm|1ey_?%0}LXtbWM)O}gFnopr-$*U>u$yxRo&s>ljZwI>NTkW%@Gd2B& zxGyt_&?B;(D^loGRR~bon2H_aLk?Mh1?Hwnu)FjXf;+on1W`~X`-x$u?DnjvU*HKd zZHWy=Q89h++JfOI?vx9EV5abkJzmASZ7uTK1M=*?=I;lK;5OK+@x-tRI?O#~ddAgT zb9l>3gIxvjv|uRJjy9V^e)jqx+hBrmHjc67{HusBC|PrypbDf$A`Jw3Xk>M`jSqG% zXOv?s3dG>kf-Jf7kz;my1_l=nCI;=FYA_{S>{mOI;>rU$iyob)bgP9mJZ|V(X~SMm z>lyT{Nj_$`YoI;X7theB%P60}NLnWvqWO@_A6tz>ZF=muqx2T*qpiW^2@VO#1UX#% z`}cwCcoBr3)qeM-ir1}9NfB4s>%zujUREy>8<%s?fodpVyvx4Y^_1gTWE0&)UG`Ga z&QVgt C zyYkreeTpynG1_sl(k^$v(DVJ%cv%>2b0Yh+Z{Ji-IZ=MNLeuabhpku=E6!y)zAsjj z5)$e9=J!OZ=S{K52^SA~&qk&7q?2lQgOB?((X%yoCj3NccU?CEj1)AQ#(hv198pw^ z_d0V-l9;I7)B3+ui9|8Ez0u4Hh3#~@>N`lwC%Y<@*$*_ExFNbBsx>T6Z%VGv)C z&z})sQr%3`+B^Q5c$~(f_{>|`Y7!#XA3CGzHFixpmro0nUOyYp^CKQbT~MocB)iCT z_CR(0>1^ d`kYO0C_*wyeV;vD19z{$jud zStAEO-WsM$AZRTCv!bVILTb)0quIBvvrcg8`w*z8&B2Q-m|eSRk)*J %RLm;{s{W)UcR<&}ubeq?TA2(l53>2~KLNNQcFe%21?CSb3=7@U(LuT}{Y zml+?ua%)QUJi#dNE*3e|e|EUq3t5vep>#v^H{fa|!fWcN&4O?T%f0jK>sH<#2ni~X z<$kit^Ym%CdiqmYn7E$!_CgM}{13~+`#qkApeGT~ki0P?8ca`X@xum3V&+V0(d!Qw zAE9Y56bE6Veb!@3lrf|V!JxOJ?EL3w>c|KNk7qOp#&kC18BD-BvK10o+6KB62PpYV zG7v%DeF-ZQZ$auDgh_aoT1N9cT(`})_-_^oLf)rHyoT>^@wEP`*pyARlSe&xd6Ju; z-!ju=NF &z^lQ&mQlS<`eE|8ATouQdMqPzbAMUI{yVl z3>i25*mzLo%01V5`HgVGXG?f)bBZE!EMNM?n;QISp2ZFmPgA1Hy_N`A*G` -t-`OD@U#%%lU34bD~!#2hDkxdwQsqVP`DPoKdlv}vqnQe=$ zJ38TnjOHzp?l~1nYJTJ(vLXGpr&=`U+^`dy^W*3(NsYUglEK*tneA(3x$%86S@?k$ zd8Lo9U{+SI%dgW~zohH`4NXLlZ2re8F*r3PCEKc->>9H0eLM@ZQ1Idly{!-VicOKj zmQT~fNF_vl;jF-xK^q40mWw|i-)BOM&QAG*!>OKwk*Jp|PDWb_#MFYiO}uG8*AnW9 z3AB#6zPp~0%16HS-Hh}%#B6jk86q9~&z?oyYIyKDV=1XRad$@1-JR|E^P`=AcozOb z!fT(c_}o0S!Rucf1f(7WultMV*&CfD8^={v6;sc$E5lHnBgKn~QGtUx#5C}jyfGR` z6{%gYXO|z5r_ko4f((6-2|B3^qN)FRSruw2 7#yi4A|`}|7gKpu}<6Mmd29@*9KsI#0wRB`w=O$4 I)40lN+Z;}IG8(~ z+og>4F4b3MUgBM~mGx^;oT*<)9Un{s1zE(|#0IC3&^VZuKQ&Aiv`dz`x8@4mbeAC4 z_G&||>Ch1B#UR0^^0MgnNC|VEHr!9p@GE{Bgi9k6qsa@g?qxC=%$HMvWX`fF%Ag;X zSyN?>9d+36b C7B2O!#`4VmED+4avsqd9oy`NS5f&ciW-LhS&4Y zv`V@xqs#qp)s-l};UeTxjM~Jp5K{#@Uu5C?#VU?b9!mNS|4cDGj8(1$+MJIZuZajX zhGfFt?(_}dGN_*yN#ijKhwx~zVF&8fa&EqbI~UY>>K!NOwJBcxS5EV+d?-{kTqSr_ z#HxEzsvO(eaZ2>2c420~1^rvg~A%??JerIUVC4LEDK( z3x6L*F-q~w4S^AxCg^Pb;$2tT{Kkjrj6NLmRs`L*V3v3Es) wSSp4{{|H)5pW2ikq@rX2oF^>>6d zRXOKR1zUqNFS>@9&Lr2Slm?LFbQr&?9oRqRZ#b_qC9%myiM$+YC0R`41q;Qe)!feV zt5nZKDsm>K@9TH)xC(#t??DpD9t576r!fo^bgC#gkv25C+#*@{!ZQoElvHC@WV8u9 zd0$Q^tl4((Yt&}H#{ztf(XZ_aLv{-+_pVTfXtZS;hjbJXt=q=mdm+U1rRv*@T`|m- z u&W4&hRtr$UK;De_ySWs28|L p>{k$1|wD%gQ5#iu&t+7;Xum(nN|5|9e+F z!r$}vPWazo9+;K{$}gjk OhR@T>kcI6$C6Agm4i 0`Wy zSSr*yS!(S^&Kp$9g)n6}mHm4Pog&l4kRXq1oQdDh0k@QYL_U>~+SQIf$w@%6(d&QL zGE|jDdM|}v`L!4uf%sJXVs0B(7oAc#_lkwHR42_e>%Jx>Ikay;T#?{I2$gHs0;?s| zvAA5;xa(@?sBd2!Pv;pZ;wWRs6v$o7({ROK!vKatchxnUX3od8{EM*;oBl}1xZwD* zlkTFR)wbyv2ZyJhR@p$m_Y&skcHcmZtA4uvdr$opA0K7i)gv%;cs1s9 XjtSWgEyK8`f+AUPlpPacPBd$)5-S_%>i{7tB(9D0pRM)9v z>YoqDy6Bdzc=d0No?jwd88k47A!*1J?3g5$&S6`_WgFpJebHzaZM?$ N^AS{iT6k9C3v(PL_pwe-5erjY`CUS7a&dMv z7VbMpChx$N7rpLl$D!NcLF0LE >c* zNEawgl|0GfRLu)r$vTSmb;5R9?d0VUu__16BJGjDcEwwFiHeu8t8HOq)Z!j|Zo6}{ zKl}{HvjN-ZZ;<#KXiw@J^<3QO9(ifg8yPG5`jF?5tEOmGgxr8to4p-QA_^MqY7nVA zb|&Bs$?S8@6fy^V7>*}T!0Gh)LkH2th)tW+#Qn%8%&*rUb1SEO*<}4Wy0B$5@8TuU zFZtoL&Z)o>spZ{tX)YCYx%GF&_co6Ew`5UC3f01O7|6&rly~$vx5RP)zl| d_#8f4jWE~W`sm`rJ^nl5;k;7OY7kkks(t=b7f$(Sl#4!7H-V%_p<+2X z`5!<~H7ES;ZhasYk#udrFBia+Io`Y+D1Mb5i&9P#H3RnO1%m4*m7NV1`P$TvO$Q3a zzLznX_k0=+@91m5?L;l+A5DZ%M=y#r2-<$58(4-6CDx8qdDW4vrZSSlMR2!RcgqV` zf9KUiP# y7mQQ!z7k^+%gs|B 3 z&H*t>1iV hD)h|P*h@@BQgdFsTo+lMYF5z5@{N;DEuHrr z3{n_g;apo-uKTcl`0H-G!K)vW9Sgt5b;{#1*io*uL-i_B`z?1%vDa$aJjXKz=!4vw0y8_hIQN2Zt=0e$YvFr2k3@~Ew5F~zZlg~C(L z;@?41KM8qeDmTjWurqq>L1uX#r*X;8O{jkdA0&0gVW<4@Yy9a@fVL?%{>(mA=|Q`# z-S`DKlOS7F6Zq(A?;=$yex?-eWCFE>f5%D%8-8>rp8>D0QqG0a@2g2f#jjr+*SdDy zwZwwRqBbi+`PbtZ)E|BZy7k-IaW)65sNG*Mi(5Fxt7CVMI$ykf=d%=F!ECdIAQH(q zt$kGe*`Gr$v-aA~VG54|SuUU9T;93O;Sc70F1ER=wfCQGV91zX`(vY5p`M*QHIgY4 zs2SQvE{9jg9Xg4PomckZFXT`q&jb%ic yQXSTiS*%%a4 zmQR$N!hg3CC%@=TDezdK< gwZWuhOb)}Dtn$Mj< z`#wXs*5!?1+PMCOhkjS(=>HB=#VN{e5&vla(Y&_sTzQJM1kKLQ%pCz2Y;oqj+#jfW z#%gt#d~~wya`m<2grQesUb+n3GvUF^XR>b{5$~*YOzN9!!v6F*R>1M{rj-|J^Eh2X zC3&?-MLxD$af`P{GDoSKzlR~i8@uye@L5<`7`U2z{!wMCo;$&65?9sW`o8PXE8V!% zHv4?49hjog>x3Jl@>W`5ANaQCSFnJ>S3ugiw6}WheEjMmy-4iv0{D3!J+_VYQTeQW z4Pk;+&$;AlA>TW;X(lS&QH0?ez+bMHoC>Gc4ApusJBfhd)7|?trV8cF&?GBB5gY>< zWVinv->Og=%CPkFOYF(6gO9YfnD2!cy8Y@j`YP^pkErZwGjoNyZb-+x8N(&LO&(yI zuc9h{qo)Q-{`)YwRE{%cn7 z7q?D(6Y?Yim6Ev39tzV+&{Xxb$n5#PyiKEe4Q9H|T`Z)aPiQVd_~4Ofpv!u!B)aoS zc ;rAX ?R@LQk@tJz3;UCx?L3pHXTx}mdP z=W!zT^?i93ztVnQ2~C%Ozi1G&r~J85eVpryGdW+ed-iah>k8xQvx!3|bSooIF#OcJ z4Ifte_&=ifq;e&otcDn S=B9&@gsEVO;u%viQEaxe7>F}{_!ZsgOgL+idX1LW~Bws zppbOeeAB2E`3R=b(Y9Dnxm~P9kSN&IhqGIun^rcPKN_<$Ws}6(NqkI94QW@(ga4N! zcew4g&05Z==BWhpYMji8?8|24vp{(0bEc*QP-l+^b6cKaccX#fGu)PqjqR@Q+2PCA zuR|*`ggIX8!57MFMjszd5hNqxKCr!ctbRFkulnnz&wQlX{SfdkPg9kYlmK--EGi1t z8_!K^Hx-c~&iTKWFeeO|pNuf_@OmS)Hg#WuO(}k6AYMASdqQ=f*n)Vy$&+yJr4XiC zgYhBWl;4u26@{#7?*+nt*O$nkk)Ty0za?GYODoWn%O%RKRZhM-{r7);P&<>hr?Q;V zr{wA66%Lhl(G0P q9;6QTGIrQCOP zlUOomdi!mtVrYf#v91%&$bD63TZB1* ^-1j1y-lHWJ?wM8Kip_f4V<(4Ph$>AH51K{2 z{U1qgjMCbP2b=iqJ%(4Dg(**OhqQ;ZE>)*lII|F;QTT5QBekj^4Y{Z`_KP!<54r)m z5jgJ1P)f*Dz6EdJocoLLUmT_n$1Gls2pCA+Tj#g<=xGX!kQQgVMHeD9gBv<<_4n@$ zH~#*9X8rZ2l$enRf*Ar1uI=Np)pVAvp(I+NhpQti??bjGQ_2Nn)|?f-B7SK^95YK9 z5%iQ|OZ>mPCWPymnw!gKeHw{N4Ps<@cxHj9QZ`p3_rBIK5Q)^!k2%N^|KNP}W9EL& zpoOYl +(!`yzQGqo3!WO+U*@JJ=f- z%+zXy4d>4er^mU>W&is9?4E4y%@W6WJOUL4KBmz-0p-uM*kmYJm15#PbFo@&KwP0z zJi1L_u#tVm(Yig*6xxvpHR1C-Fx`ItlSA+asIq@i+fl0<7{~cH0bB@&IhK)6&I3`C zky@Q4eiwFIpYsjOeoOc|n4ZG=7-UwN0}f$Ub|0`S-XTL@p4fDpRIdoiQC!aYM*ezk zkd&+KXUsYP^ZLQkt8td` AzT3;q#R zd)jDjIYS?b?RRW!J@Exqecy>LJ?C9FZQn3e0|NuAmbBz#Yf#BvRhJqI^YOjKOjv)$ z^vFfh1eKQyoFa bY%b65Jlok9LS8<++)H6JL~p3X&^==?kq~8Coj_QlINDiK zhBWA82Y1>}j;oMSMZQN@KTq+B{uy5ykt2jZm9*9wwSA2`86ru4Rm7A2uNG1||2Ypj zRK^Y>;`r#(F@KXk7F?-edoPT7nBMD&7jOq`JQPH(qSD$G2UcwO&x%dENl)Fg+ZDqX z=&pqzJLA9jeCh8dHR;nI*~MGin|vPbSrgt8j$I`ExsqQJc2V1A`c(9zj5ds$NaSh3 zPdb+k#?eGnEvE#TWG?D&?d-!m5~%!*YsQT2Z0+dr#%Vyn&GipG`r+CV24X}*2VXuh ztBj-32C!o1!55$xWNDZ`JEBb#b|Pg{+LKY6kpF0N^mG9m-BRGv2n!9q@f`|FJ^Kj| z4jco-9YHShi6D9eOuDc)ZXABtlysvxMG{@^unyC*M*A>!CgP{fo4gm06iQdw;m 5J@EW&AL$@@0ocEy0tsH^~7cfm|ef|>e@IWyx44yVnhyrOxQ9| z=Bef=bE8N8X!r7j9SDIk$J09Rnc8LWdboDH9&xH^nYO)Rtu%KIRo_8fWDSNfXfU6w z`OY}dql$=C@)zmEg;4Vx0)O<8j@TJp7wRGur3xK=4;xnMVv!LHJT8d+J-6@wE?j+{ z{iCP$E~ =xkJ1r}iyiMGdSrq!cclCqB0X3kt$=#!&+%2J#RH(wKNU5W~FZ^2*A z>Pwr?0HH3(V_4ABySE~a{gxEbfqQVwZ81L!4r|WWBF{jcx%MY`6emFU*JMh_BABr1 zG2jaO2NeJX(6>G}e^8_Mi9BF=<>YB9aMqU^gm{ VuOaTuRVE*^Hn72hue6&aI!@D2OM+y z1PWft>&wedgwiAtdplAV2z+gQWdB
)PI=6wsX={`Cv#H-lKpm-~cukN5xG{^)=sWx__m zj5e5T4a5j8ysLuHg-3~^c6WPvc)LzL3nFP<=gwnue*Jpw733_RRK}nrM}U7NVP*PC zb>n)hZk$WKe11~dD)%pwp+Sa7tzK!SmflVr_FCnwU|g=Hjff@wob@z=zb}T{XUhK( zcx!$OdtFpz%`G8iU^CgXMH?`>ALfBn(9kj&@fNJf{kO?)B6xY)9O4`$Rlmm+%&o=N z^8Esq?vIu5nP>=sliJz0vB 1)xYc1r5^W4 z`y_x43D(?nTjWCGB_K}I=Qnu7uS*o!J*A_g)&c&SPyw9s GG1}apCKQ{^ogACA8)nO zFo&i*bm|YrlGocdN*T95QA96ByNkIu&*uphBg^R``WQWwBfW}TG(M&Xzj<|tuo3!q ziy7|ga$w`z&(H~0eQ|!GCdd&HJ6-nU_*LJ~z)Etk)Ezta=irehN4ez?llav+=3xGl zNab~e>Bj9X`=&kdpPg}NeyXpYLAH+iWPblyj{aet^S|q-X*6@Yn5a4 zg)^+QssR=pE9)a(UXuCwdElc6ygDlKHv(w8%3Ny>*Dq3dIRg_hlC5YtFRh1#7Q|J6 zz!CC)?s2okv;~)gC_T`R>JxkxHb5|aYx$Z{*17cC {NY 6&1iwm zVDTuvVE=Ele*l<5zJ@*svXEoe_226?2p2Y8OYdJ>-6Cl#D{6>JPjoro(?C93a2JRV zmJ4@xQE$3or6@JvO*oYz)fN#g^DhB)*}jFfIX_6U*dKN9dncYu-g7vk1~2spv%1aQ z&uCE;IY(V#9hrsa=&b~mM{!7BF!ZX+Pasgsa>&yHIAJ!G`}m}|kD%d$`o0R!IjcHs zc L%jr*GCO{*T^))d*#1i^~~unVu&}`63|U0>G(TpM@0 z2pxmcWnb#HZPTEXRA9bN)c^p}TrZT^c(p~Dnbr|SHZ(D2a$7W|lOF!o)DlsK=7f1G zrP+^(LxngrokbJq?iEo6pUN)WPh+He!k`RPsHJ*xU&4Mr=>(qGnW1c>7>}xV7DW2x z)Pw;fKe6RW&IO}R_nw&`e!7LL&MDMEGMCN|;mULCTp|c@s@)Ldgw-PA5%#bbX~r@i z_p-UvZZA6k-ZO_R8)0!Gd(R)-itm|GR|~5%l1{6~B}%_exv=n|4UTXwyw(H!iJi zRvQj_rVK!>ny9cz0F^Dd;?r8A2pUR0P8Eh=jLqi0yi-px(o1@ljFP`Vzd?Ig@Wgxh zDba;Hh|u_5fr;+*oaVuF+gc5&M TQ=qP2{?QCx`+xBT z3^<80a${Oz_1lv!Z;*;IHn=t5H|~(Jn;abL9Y{pPY0k9mdMl-THiL{Z{0-CbE#{QC zwd=keto|iLUX`q&wEpsJNuV2J3w8V&H~ ul<}Qke+ x?qf5^jjVktgLDOD`!HxlJvM(31y&Yo*w zTJij^j&6l!h>KpIXnMfR64$qH>NIpbGO3nysXpyC5f}eC@^>doLL5S|QZu6%H(%r* z=^%OG%PcGu`c= pf1lRtNcIh5Ii97qCR} cJz&Pzvxj00Bo>q5vPB zh>gvNi+;F3X_R2V!T>9DiS&Ind0>Tvd> WZ9<%cMYunBlF)K}C(5290M$*HImJP>88HoazmoMm4;@imQeZS>=@ zdqhFTnwi;+)Z@z!adOuxMaet3BxmM>8BaF31J$dO1!PvX8dA&UPt`2DIPITFRv5kU z5Y&8Fnfh{>QP{4qfTQp;=rapRt}S94#Dvp{A+=!ViZ0S`7EF|`H*mN ^bO9{Ie1-XqF^oo<9}d6}W+DkG!^yW Wp=NX?&V}6tshj2$wPg*2e{kNkSaf58oWag$v zpZ*u4GWEQgpZgXg?Jhi`#Od}Ie`%<$Z{BNn=s>t?CkspP>NaHr(Y{CvCMhZDI!jUb zNsnZLBwiI?EIdj0W}?VaV`HN|{g6i$j>DD^4)ZwRq ~Y+Kbi)bnZkip;p%RmXB8~%B(f`Bx(7Y&wfAWxjuF%GViyhf{_m% zt+3<2*~t~Rg*A L+l>>hh2_XF& z@bDoyA*&l79F_afMnTW}reGL;+>} YlL2&)aqJCNs#aU|CN@2U=6WA;o ?8vt=%Z)7 Ul?aT4}BAUME z0+hLC#`bD7=4@GpXG5ln(L&~p1Imi+=W!;QZd R2EYPO-U-IdQStV}W*W{8%h2^k_H$pB(Myg@(r|3puAq;YzeYt=5i zqT7ekRG5m0)2T_H?fPDlG@pwhql8HdtmMbT>1ZBY03Xv+0vEW)Z0dLBB9|92keulC z=LNvhawIP2eD}^BEiQ0lpHGySxMuyx5P!+>B57B|u<5^4anE7x0x{duu@VzGNY(%U zt7&t;TEEDma?v_-BH~-XwAwYEw1pz=VV{W6jPUgk=3*%49Xyq^m&Qhr0sZPv-+JVA z>%Axv08=>V&l7UJ+Q4_&W}%=lGw8U-Oh?9d`R_52U_f~UB$v^CHfRji=Ox>2q%fuh zX&^^d%#K_fR~wgudS9H4XmN6T*|2>ZESbt~fD2Y>#IY0lk6$AjPZ4g45}5t{7)r;& z&>Uf~ef0laMynp
<%THVs2#__Lnf>r4XcVFlX^^vA-+aibV6_57~{SYXJv8I=?s zPxj29L1>U;Kb;~{``Ro+%ZigE+4)N>_@uEr0sr?~goEvcZ^MyxlQnA;)Zza5y3qr5 z=Ox^%dNPacdE@ySoqqPSjgjZ!3JVfxCV}g9v{m!pk5ZtlJgTp-Bm`)wC~Ck8rYfN( zB{c>T3Sq`cNVrlduR)_Nm^mJ>%;UXX@qT945e4!Zzc}`zU@(|AmkI*w1s60v1TiWh zu;W5L%}U-ljwx<#u)xB3P-yR~=bXYIO6q~Cg^SbAjVJc#LNr6txWnA5%XR|hfav+7 zia8JacCS9=*Pk8iKhN0od;7nK_DFs{XD$VG@98Zw_NcvcV7t_NrhMJ_#>U69ogx6V z7-+Fh?>G3VMx*3?#nz;(AeDDu^M k?(ux?nXm{!*`gjR7#$&lm3~p^8cPs ziY649ha9D^{3c5lEnDS}m8Oe1IVm(|Kh}0#Ea~Te>ile2U*$x5Hz@d_s$QUq`;PAq z>i&U&_<(GH0-o0Y_@W43r(sax8v A9hS^Ui(*&^1nTD)UQIX7KO#$C13Hn%t+6yP_k%jd6a9wfJThZ%ND zIki+>D#T6?&^6c$wu3P%S|U~3OCqLY ysviMC;WsYc$CSV~XVioZxKAtC<$a4VCUqIS z+SI7q>D1~lLyTZ8+KvMV!sQyia}WN4) q#fXL5B@Bx+KKiz};KLMhi=AJ}zYpe7e^Ohy1gCqyAn>qpD z7$i^tP8kOtiFV4;-X7=^KJuc1qmGGC>MdiWLSDsNJEpxi$(a@$yG}mu>GTa&xnseH zFgdKX3VZB5(yp`(1DpVxcFBoB#CHrp298Z)!iWDedVX=ehOKyr_(nJO^ZsI|$<9p8 z!OQAK&qQjotDz~cucBi%Q<=8jslE)OsUnp;=AB0jt3c|c(7A^iXx6c*AF}Nw?o&{1 zjVc=je%8l6yVWFfBj<4+ed=A=^$i*zA*H1Sbq+LOqzX$$6={`qXqQlVy{!GXo-yw! zYt_WJIz2KnQVC+cgASvAC<4BGDF9KM-ZqXq?_S7|9y3HCEz)enNMJ1%S21;!yiZ>q zqZyOndd*mSjFj^s;ex_(o>LV4=Xv1=-w!5UMR#u9i+pML(Yj!ITTtI&H^u|=yk=}W z+WK;Z?sDaMp562XSdUObukKu=^18V!LOo*<@n4@nw1{Nv_YIPi%pHPho7)^ko3Uvj zlVMht4m;~fL0rY6l8_^D;q@@-qT4zJ#XrEGChZCmAee)?PS$GT+RG2Jn!^X(lXID- zAk*_LLR(W4d6A4%ga@}-WT1 siv8UNLx zy=l_Cj^zv$pXBiBhUNP2G5cVq(a>qX&|M#_H&|oL4sndaFer T&t*9A0CyD!xQA zCyqf`lym$Sr>%4}LuX9ZJLgoBG}Lmj)}mLaNW9IA8^?ZN{=V+Zl5`})xnB*I$7iOL zKHh%9e!#3!XWFu!v9rRa5fNpB@t9*SdhRv+R57_hQ|9z#8Sk#bPV3COewXXb#XOk- z{L!sU`#pc|uN8YUcF1%XZ|{$M%YFFv<6QQf8ba*Hp7`-Y9d{-|eO0HmatkSay$Z+( zafrfq&vz`39{mT%=(386aL}IGTB0^iuZjN}z?>g^A0sQm-~l)w0A!w8q3up55jkF< z1CBQmu#b}5I>im|r*w3q 4=;1+6jL*_*<10Y1ok=^$0%j ^w%T;rGM@zKg9 zzNqsgiLiJG+eCHyH#j1e<1{`PSt*K(?jB0_ZhH?(JfeQLNIIY9O8I$JL56SGWnIya zGuq4r>kC^tNEOGDyF?;zUxuth7;6)4c)@nP?O(}H@~zD ^;9n=DR~@ii@6Ksj~-ZgiLO9D5rgyR2ZjuIr&b8EQqw- zG8b{N ^3|XjlQs>y7-8Wq5&;G5{Nu>%Yj_RD~P*ZKsix z_^tZ6_~=YxzYC$;i~Mljim45nw-1e(4bhkXOwPAYsrEHY$UDdb8}OprFuV=ntNK27 zz)s-@yW3AOx(0%)E6??TUAk`e>ZftsG^flu{mSXpaWvIX!`0iGD<#-c WPH !F}U=*#n!YvVV@$e_r%P$OCr=&HVZU{K*l_bM(V) zI;o(Nmm!08SV@8DTEYUK3n&}Y-QH+=DhD>&HJ3BUohLf7A3~1vTqLY~`ks4f)R178 zp}LE0StT(gmYcMnqN}!FQ6a=Q$Z=8WGLsbE?1aw+gm0Lg9j<@7WgZf8&DXWSQ3kK3 z%X|(1JzVSfI2F*?JHp7=^T8VupCE$P%55n_lAr=CR?oYD DatzbzuRsHFloCnfVq2B(sVK1>B%X>+?W`gre6sl(m*RK=iao!c$$9?(O zU6#Im4KACvmy0~7FQWN;JlDy+R|>H)$?ccbJm7>BHr%~0^h$u(FJuw^7DvP-wA;Z~ z)V;O~y~`e6l#B^7o;~)RsNVc!i~i^RLWXICz&L8P`{MX{fP;!<{> C);zswwFx4^C{eZP zeiuL`5aOxUy1bYyEo|j5N?8A6#4X zrtqW>i279$`ChIJ0$gwPzYr~DE0bH^V%id{Y-~NImA<%REv~|Bu+P1@#>@f#@+_Ka zFAsh3veEBKPO7 o)WGp1tgz>fnmBerVQtPKbW%{c zZSgL;$-9jLK#yX1>(51N4 WSYDRVKL%x%4eLulbQm`s}XYmKa$DBIK?FIq&>(l*C!jWsKD%zDoBu6OX8S{8S6E zW807ih)=%`%f !>*$GrFOAsLc4 |n5yL?o v@nQ}4@h_T5}^rw>|G)(#hrE2Cb zLruF!51%om% Umqp|hikmAC;EDU7OyUA5eZ`%M;IznR-UoKHe#}O ztk 2(#bPrWo3b`1A2b7KPHni`mLat^e{r4eq&Ww!p=s$PX`HG zd21BdL}R;O>Gu#Dp}L}}MqOe&V>6{o_ePSnLtUB3z05I`p;Iu;JAAb?$8iDdgyWVe zLroc4ybUB56R8{(2%)~na>ct>HG+GMdP11a!In!ibmE7hgwfr7!>|Fy%kZTLVn(SC z;zg>R&i|nH$@t^ $TI*fffCC#BjPnmN%jn)$1Oi&>>=Eff*VzcD^{sul| z%33X$32l^?YZYR->mAMV!){z3yo1^AMk79*=G8-D+$bC1j}R56+Y-iqRh5t)vx1PQ zzQ|?4Lge9;j%JNnm2IZ`_l4NGrFi-}`P!GeFI)F>Ew0#Z`ZR@>eA{W#olHP`=pfJo zKVBcw@e#$Y@YLwcs$8# |L0@n#Z5*^n*Rakh_9zUMM*_<-O>oCYxW5^{(CXa zmRC|DiAuOOKvW0g+Bxn}<#p+}Z}Eu45>1YnbOxjY6J&-jwvj0VJkA_9H}#=jTZNrv zwaN8vP %Rl6RIK zf7pCF6Tu7i4`QTPQE{@;eKodof4;o`>AoohKwz8*&ct<3qR`iEJA>4dSIEW#3dond zsvStlxc>>Y4|aWbF$H}l$kwONVzY(6hqJg0xH?B&+3fsGAb-ApifKI69=z52>em(a z`&Gv{@|3#XI2gh7FX2C{dQfkK=PwXzKL;z7Xr$n; zpxj{cc&%hw&l)wJ0-cI=H8n`7FrzY6m8RkQOK3V_#zqAymvt8D-|x#%UXVi%FQ6=X zUXb%&UQI`ld$e~`V`+cB$e4{}{BFVGj!44fj%Hn*gPjdF$pm+SoAsBZaZz7?oLv>? zS**zV@6&%?kv0+on*BD{%f;lG1N9ZuQT*b&1VyZvw-1d?82-%KWdKT_f$&spdpI4! zX*Afc-!>m*oC6k1CuHk_yy71b2cpI3G(i&N)d>Gddy#*H5ZZ>V^%lbt)bH#6erjl| zP51x9)LTbY)qUT?HYf;^(nzNu-5}j9-3`*+pfr~fxJZM5gmiaEHwZ{~cV0T*eSJRP z-+1}Y;ke`Mv(JvT=9+6x4vz-=fX!f3;z&Sfgsa}=JPAvfqGP3}9{@1M?S}@Bv(MWm zJNdl;pwzLH;n62~`=0b{K*x4#74C3nVO;w5UGi{+WEEZGcdPDy=~sQ}_!tl?VzQaz z)FNf14>9~1xGI!tU8sluzm#2y%#TYQIfDr`Y?-wo<4?9Y5L;Bc9Z>+eu-)Di6HVml z@p0L@u&tfl2awXO#28BdFA>g0E3=$rc +{TjjNpPN#phhZ|M znSp06Tq)s3T0 f zrIbw~50o8J($z&_WMrh*ss9U7*8dyuQz{AyQC^IJMTbraIXTJg$r55iBcmcf5QGjJ zKomef|MKCXZP8!Cb379!Wq1UDi)&HD4Jxz$J^f2YZcK)|2j!MxDLz;_@=)(bY`j2@ z%39$gb6_wrBn$#69IqF)-30=; ZKp^ zwe~NcW>HJ62HuI`3Tgneg7?p%R)nI5)QhVr)?~T=Atb=WR(*VkV;98rz;;4V9sy`W z2ohpp!TS<2c@w~7ND&)0aNF3~bpuJ!R0dNerk#7Zxgg#< |aXRln zZ_(5nT#BkPfeZV3>6g$fKaDTO;*5r3#$w?(%T7$O|M#Yk3>X!wHGzgr4d|3v_6^$P z {jBJpO8A zWCTt;?#pTw>R#`U?+;#w!>m;Yf5`d_DLu4yXSk*QZ-sm;Er$;7gRcJwI<;bWX=aW- zXp_TgO23F2ye$#HVvo2N#rL+_T8oLmjKp(YIs=86|5n#K&Y4_0Z6Yet>A|zzNhV+p z9ZtljS+EK8(^v|9F3!&4E@;mMtDmBr>sQ_P#!?l -o1_$iK4(8=m zRk3+_dC3dKP(fJ&QgQUu37B=8_%soAbaqPa=KTv=qW)J5fUIo%K`I61s>FbfIhuxy z+Uy#G%cEs#YU)x|uqIRdQ@OC;YmyVmvUj>-`zYv^8@~ix?o;(t{{KB3lOtGV-zp9r z2ge+s$Bqr^e8Y1LuZQU%h8%kupe|u+A-=gsP7#xw90qt)(wLiyRD8d1yjgj0k|Xt# z+*8d-j;j)?BD(G@dE|9ufF@8a6Yvpaj&uZq`V1B}hj|`4z&xy2x9Kx{sZAk-MRC?F zME0OO-vXX46iU$OXoDgj(Ef4A29ZFEDYM{wlM1 c>7DJ`GV~eekRiBMOQpFd~Yg-z|A( k?jIA!91NcihmwzajyZ>lUZii$-jl-+lWxWgM({(V^QC zye_YPQ4PJLS!K )YtcH%ffb< RUVmTt5smSnAH77~f{h$H7KS z9tWCUe >xQc4+^+M?V9k3Vug<(2q*_1aV5{rj$p6*B-{>f zoCD7E7{Ga{8G@Icu~{MrxX=O9v{ZE$WwC~{I^i%Dm9EhWV#rF)|1>xP@r(;6Lc`K~ z#P&qViHHk{h((R`11S+!{QhB|kj-3eXaW>jM!OtMXW+~uQY%EVzb0|=;e!yxA#2w8 zjS2{r4xR&IN19or3NVqW`b>;G43kaK{Wl3x-mOk#=TfFjv4j9vd;y%f0&8k&J{<^z z &v2x{32$zQNyUGN%htQ*X9qS!{1~$n6 z;Ib%=ar9Hi)^b)N=bOYQQPY-3(?5D~m^`u0i6CMo k%|9bohPTaJE#A_VT@!`XCgo2Qj05y{K$Jf>oxv6vTSkE5?SOGdDKmG59Q zTN+2er_qVP;BPKF9_aUv{zF10VpcRAD1R-Fj)q5&_yw>l )xBBG+k^D3&=H5i@)S`M#3frgH~512jiucC>7f71 !gc6`A6nIbN^<%*Ztit2wGd5y&0f^Ui!!7?_8l_hW~OZB2*S%(%x(kfp=vxH z37ahQn%3F?6__Im8cuBQ<;~B`Bn5>$H=m#fpthAY4g-~l=K~tKcE)UtIy%Cf%yl4f zmynPsRn6aKvmvUFNDY4fco}`d1#^& zlD=_f)jy|#T0Y=rhE_sRu&HyrJu$wi25P`ad#HdTXWwCEu}L2exS(7Zp!2uhjCpLm zk1nCchKf5PDbPNQ!^l=Wv-0hAIpyAgv6Z$j=W^{&Jmi#mg88li(cjVP-U7BC;jfYe zq>Wy_XW~7C9C7iXcvZNnT x}oTl6nf%j-20aF_OjkBb`N%s zD7}Dn9zT(_I?t`NvDouKDubDPLURE_O0hxRh{8FcU0j;i&%voND|B23`Vk~oh6e|$ zRQLTsU;5W^Sh0B;IJ;Kpt-3q7V5g=tOxBUh4***<1m0yQ1`j@c47zRC^MYIY0Xp(z zQr>=<9lMu#EPr?VIevBq1?M|~I0F+8d?K@62^i%701G|OZq2l2KIQu_uWx0Bn? z=|1PL%U6+vJfxhQQ-G!=YA>)gX#BAH6afXi&N8*>%H_xmsoa440B@>)Ainpp4XQlZ zsj9xMx?e~ORjPd73b}{y *cV5@YW$CEcj%g~K;9o&&! 1aBF2JD@bm JNEdU*ISI)Lyl%8H=HFj*k! zf-rdag`D3csjbzV=d <7ebyX+kSel8-;h8o0MGp~l^OI32okpL {ZbVF*uKSni`fH3Y(O`RhOWkF z`uu6kSRLC3C6WBa=x2Lj5^eWAn2A+#^0~flq%Ope?#Lw^s|Dh(Yz@Mt=F*S4-cQr- zC(a BR+e>@RK;r~F7Ox91FX3c<6P>scs zD&VWzn3clcEp=0G2itg0ZkEz@t@9O!-J6R$A|;d`0~@rOA-9_rvsU8~RZQq#S_Kz% zet_M5!=+<#n{hx+D93E-8WcBkoD1m0FT2ry=72P;Wu}(&1RSh2Uku&`L8jyx+1V#F ztKO=v!)}p>Efd5+Q3SCmD}`nFiHw-X-qN28VN$!6!h~&meb4O1Oha%N#Q(Xj{vxbi zVI=U~W;%>w!IOMocqL0ma2YW|Qe-BS9t!n!U&tS=1ybR)&w=jU)h)ortP)ur1iZ#f zTa-M+s_L4++yha{A^oM_U)3v2Bi_${oa%=H>rRKd!omSf73ekiY$qLcPTT0F0|}3T zLS=lwCJjHXpP^fGHRUjf&|kk6ivgClU&6zYEjzik-oS02y}Z3aiu6kW%&k18PyVJl z_Xhnm7HNHYNC@I~ZZ7;}WyO|~mR^5)yEk27O=D`fGy46#mhqb&c!;ec`iuDAFWGA@ zfDG)Bmrm?vOE{=<(}W~(*rvJZgGd(-2_y(7f@xPrE^Dohb9wRcZ#Rb188bXZe=)*; zi|mtRmWJM$N7n|EIn}Fk$PP%O_JIEm12Y^m61Z7(f;$p;UV}SL9As^41(|>0*ACSa zfzHGE2DOFLsr(MCQrh(8E8tEIZ@$g8Z~ex-IdOA&IkiHV{TuGPd1}NDuT|w!7lZ2U zi3q3nbtR&xt*veRKoBF~rA|-*Hc!l-*i33EBNNa^iC$b&;L9AAsD5M-|62tb3> 4!8*rHDZxA)G%9Q+CgM1ZBv$Q` zT691eX=>$=@EJ{GwTKDW+1~(NPwF)`sWJ|I@OuDEYtoB>PBXGwP|wz)8*2Ub06M?d zy&D=E=K!Vd1}wk7NT+_F`mEge{WP-viRy3#H>j%KUDN0)LMagz&892BbB90{^=14T z`N0;@v=-H{;^7nY7HFN5%R?oPPxWVHLE}_FE>7CyEhTs&Er_86i3z?A{AnWO%vm!r zHPr-J3?tZ3@$CToeu?qZZ=twrfX#r~Vzny*2RM~jFFb-*8WEe~TU%SV<{LN+4GqB( z(68dh-*uD-rK4P@fq?p2_8+9aquU>X{vA9!uW-^f@k@Z@urvhVJc@Ye1l|Kg{eS^j z`F@fGWUb(OdXrH=?E?I>>}kLsDW(SBA!Orxb2vSI&7=8vXU`ox^7G|FKY@p@uP@jj zmxAf5anr+pu~w7g;D)%JCLb!>|J;JZ-tKrs6oemJ&L&ECAS<`Oy|jn7D2ryeX*YRP zg@`xQhpnxz_ujl8-hH*{H|hl6)z3EGTZ1lDO1Ij44^Xn6ei{WT?|{dw3!)#f>64*I zZTVMoU%os#-JO)@ErA$ $hnQ-C#|xc0M149o}-vg39l1DjD7^6box zJ(Q*WOi)k|B<`F50qJy^a!M4HE=GqG?);n_FYW*eozO01GL<5&8ZmwSAK= O1{c+n#AYeNTmCeZaBXd^=LgzG z*37uJo<%)~d#wCz9WWt)K`*SL5(n}LnY2Z4gShFy!GFy4kqm@bWhgb#{!X_{?o*he z&bY9q1vmU>U+W~SE|&Y)rICk~Lk?zZhO0S%=@3BQ=$2`S5@8kyz$E^=5M}k@82>PY z1^x>XT3V@q6*#e?C>Bmq4V#P;Rm8%=`j=v! `Xj zjv6o*8U^QV9K-Mk<#3@1PB9a;f1=t3boNA&mfvDyYZeT(9{&I&nf&j-;Q)jf$^e+? zp)yoEOQvIFjQ@t7Ob;sq3GfO5z(_j5J(8_gq0=OeO2iu?FL3wC;Rb8n9==C$%Rt;?BHs}RT>-cR*DW(P5!ww- zKqV^9&4lGEoB4VYI=X(%s(5h9N~UcU>ojNsDl0W)^pk<&7Ep4bm|QGQ8{FRBR_fWw zXZj |`r_6vwg)qIiEeo;uD2EDM99$;1tTTJY#g zuxi09^%=EF4S=jEQ?JG6AAYhQIL2G=dKd``tKcL7^F^oMz`L;yrhK;ADX%>kHLRNr zZb_^NWdsn=iTa1ab`FN->Dnhg+{B=B8o-FgTFR#I-Pc;G0JTta37p_cv;e1G%x4ui zu1DMF4`!K{*~)xCz99_zJv! >#)kbcF9`|0)pE|@gK8%Hr6K`AK+xP~SE-QQAot>$lU0?J)02|ug>=-Hq>h=hu& z8%)p){CVgG1_m)yaBbxHN)1Em;KBV|*xC}L=s32tVP|4MFo{csD9imFjf z39dM5aM_0dh7|a~a1oL?&5X;Rh$iNpafADW|4z bGuusV!K$AE{R zHhZ1?KTqb*>wxD7m&hVdZ+NnSW{*s`xYyU$SEvGJvy%`Y#NSb9@9*!ct7gI?BH}i# zi}8~Fvog|K0+h1RNTdCkstL&52VPK^^aSK0xPUS>q~Ukn3ETjAVbp5G7=f4SMg?{V zTvs!|3xF}+)Vk~^Rob1Lo>uO^-tw8^4@i$p6#fa`t(MA4b@*ZjNGngN4s jla@@7~Mj%j|tHV z-@?tQG1=i4r|1%*Tr*QRA&=_yK;09ca#I$Q^Q6^WBly(Zae16l1Em}T%a(1xOSRa2 zOF&>%^iLWUvbKMDbtP$|0Qv~4J~Q4r4a&Ercn)x#f|-$O|1$JcZe@3|rNz4HnH6y@ zVA)#`Z{=S<%U%YCj?qWF7=2AmP1!ReHkV@6peV6TlMnxl&>(RipJtKjOV>6AP6z0d zNtIs)Qtg7B<`}_TAFYH2 |&Eg)7DfkMdrj*o9%(>|@q z^Wrm8Ea1G;fN&y>&y(CXm`kwuOYe4J+GgP@Y;zc1)}xjZ_McZsuwirDkeLO9`u)&( z70zd(mM@bSXvLC0oT@vV^9qv}yJ7s8T0cdpem(-2c_3sauD+}AgeVCKJ<+WC90+Pf zmZBD)LEm=f5e9>nvt7NIy?q&&3vgV=5o7^YqC|N;7~yE?Kc!<(%{B}u`lYiwQPd6& zb43LO0CdZ~#LAMz+_-lFf=ec=oVaZUQ-QV&ns88Y)XgqDe4*Mp`82B9AM8!8P2lLv zroH$~k!j|cL5sX jAM|#U3Q6i5=47Ne0LmzrOY^GQkoG8bw3qR7*($oR)4Ezv4bhUI82RL35 zu5Yo~X=D+=FA=dZ_ovE)g-Ae1T%o!jX!{OeNAbt@*QW4SbTdH1;7de9Lz{rW;JN^7 zk?+%?IsT9lN)b)Xq}!MV2ZBv-`L5ypy9O=hfNeUsge)#PGSzwX8Fv7NFP$3?Fc3=> zi#;%*q@^Jtj+=0u;w&zmRzR15n{gNFG^m22b|$s#qltHw7Gq*Ld(+S9b~K8H?K27& z)bN0Hck(05AUGf>pHvK>NsN=r<5ivS|E8rDs59WPn!j;yaDboEOc>&UlvGq&bW%p3 zWdP&Lvb!qZ$?JBNJAT}>!?D~bRuRDSS4;wcAE^7w=jhPrr!0tXz6i7K@9ziutqiQM zXk|@J2pAfqZs%>%vO8oR2#)=$BS0y8GK7Qw0Nkbn-gG%6EdC1QgKOPSw6l-F@6g)i z^CEZL@0A*!u-E9-+L1IiHd>{2Wq^Z$l|X% a9rI`Lmxw4X=~@t7R9Bw^KtK_XC_LtDZ+dK^T4v9T+w0PfUaNY*L|79_6$Kd) zd({qu_cdO@PIc?S kwCA|5C+;?saz zqeZ@Y-tIYaI=yD4gb*_TIsQdTqfmo->{;gbdd&o&hE}1P>Q7^~H^FQ=fCG(-( w+jdBD)VoEzY2kl_8wljQ1tHVsy`8*hlCACjTM+?LY5fm=um-X zpL}%j7cN2M_zxM{|CWc8HLxFqxU!OycWBxZRZ|&neh1?94Fl7eytrT{NvG`6Rym(O zd7`bV0EDIpd0hUAICN5ArqKv$cD(! I|gMh-eKUR zW!dR|=^DA8#cn-goZO?5Mi0K} F*IPXr3HZCwsaRuGUOmhWA z^JE)<-#>0|lzk r}01BiW+b6{uh7VJHX;o>bST)b$ jP$|9}Lzz+L6nwrF#D(C9a+0_2G@KwU?H9>9q0FsUY>%khu7uBJZl zx57*woNSt4KS$42S*ih{%mUZS$M9EZb8ktx>3`KZH>Yhmu6r38OX>t*nHZLQ>NDUE z`mc*c$DXw)oyjPuX#erW-n2ik5UMLo4u`8kvVUxAZ>Ny&8Zth*frnFGekT3~|Im 7*hfO=vPQhSU|ut`yW$WKA+$i5Body=>wdSE-yK?k6-(@ zu?NJfDs~hVi2}c{iQCbVAaLPUA(2#3!8!D12Atl&tQge)=|G-fQpAnmnZWEF;rB_o zACCxpg*V8FV|0Bb#ZrGww*u-oT!IupPwq6kr+{2Xf!W_w_&De>e}EEM?C~gQ?wH7j z+3`{j*8$_-xn}QKO%*%{25su7Ob=O>s$lYEfy*N8ncjC6DYQ>+nWsek z0=l<>cRQaODNBG`O#O`iQ14Ci!$KWndhGm#ehsMI?0p&G!|oYM7g(%@vb<6Nsk?n1 zu#46zkP-$P_UV_G)0iP3R(F`zc6+5A#F@~&nveNN)Ex& PWgKWb?z;VsJgM;Csj0@x}=LdX;DUtj=6p7ZpClY3Vmchr>!>D4U<+xwd42i zat__SLoEV`00V bhw*ZojYf1e2_3H#= r8NcA3QJD4(BV+Uy3M(Z5QWDc(j2v& ziyMV^bIRZgAkio$k}gCNNp_yUZdT{@ C$Uqb9u5C!HJkZV*LVFr*Mz-y@H?$K zyZ1ro#3=HpjO0PN{dXeIx(xf1_7j*4*eTuRu;i(tvaHq1aAUh<{JXzI<4k#eh{R<| z+I*9>!LR8%fx^dq5p IXHRdC10T-c)w#aX zeb`4>YgFzY6uFJYL~AbFU|Tv1LL~_Nl8RuWw{XL7*n~4W{Ine*qAkNa+QGY+_`|UM z-#<(nXWCIs{0M7T$|2VtH~q~lltXcz`Lf^g!OA9o|6Z1W1atydfP@Ix55EpFD%2Sd z(<%dk>o&;Av#__Hf#fDbGLrmPIP2(Fnt twl@a>&r$@6HP4E`gAeYIXH*|s z(QdI`^-F6_FXN#x)InWu3^0=)O|>8AM5c$f+^rwt7(F{0e`sXb><=I8j(puPa?*s# z 9F~X|HV13-&%-F^o5Hx_Ycq9w3EbYR_9Xz>?cve{4w4e-VP7j7^Y-Y z8C#Kyfqi*~mQ(26kHs;SwD>m*$@{CVXPuBmFg}|6jXXX+76krWyUxZu;v0@n4CUpA z^U*~ucn>JDyc 0DQbeNv5R86`Dky}2l3&$yG7)(&D$`%6vZz}`Vo8a6vPCkn)R;kWTuhf z#?^!9TrdT#XV&adOIEAcl1HfaPy#2Ax^#U*;^M#={ {51hW&OVI+J>-l)$Cj*P!C znD=zv_ovIQ`8mxu#q#9qfq_E=^@E!>V@aVAq)xZgtkyWlHgPra3VehpFNT4WlX|lg zMoH{AL(e(wsC1HDd*LB8(ij_OvQnS7$Z?9D6Lxs5Xk=pg03&AKr!;+ST5gj5DceT@ zw@MjKCpNkOC6gU%2n2XW;+A%p2qXroK)W_{nP>WYFj;;?CSORxE`7*MqkWFWzRO8g zJ6!p(*{QeSw -BQ;tPs#sAAvh^1O{Yt7jtGj(5x;Uv0n2Q1`*pf%E$-)M2UA2f*fDerUe) z#o;m!Kjkp#I(aMbkZsJENMqs}K!|_7r1#+UxW#+Jb*f?i$7#m8KE0{F?_HSL5iI@w z$zju7GvaP7TI_%~17;`+b6cM!3(H)Uu *sJirf9IJMKWoy7+EEaXrq*<_B#_vY&w+&x7O?^>J;P?5y*I=-&ddln
U!UvLJB?(IVK%HB zFnc`F0bMSkhUwz$)-bxx$iba~Pu2H7-lsi){kk(%>7}1rVa)V&PB Z2@NIjZUYAHZb`5R_5$>!QQrsIO3caZ+j->aB7W0=e4xlZ=s_NY5u0ZZ0i zI+xXN2{d8$ii#3ilj5+tdxS$D>L(TvIcBNT9I z8f~U2driw1xAFsbOPvQ%5(U4^(j*Xctkq8vu8PYrKk?KKfF>?Ky7 {7$))PSes1%(Am)2Kekiu;xR0vMry zw(K=%|NUn3h&!RzM-jJ*Wpr#T+kK(6HDe)ZlPijPlYV_Jo4`4b`n;{l80zosb1`su z6qbIcl;h^H)0_UoIjmZ&dekI8lfv tXl*T88 z5jw4y7N(*0iefzuy&Faulw;J^(~Ec(DHa~hC$%>e;kizfU_IY#0}PU7?+-a_zY=>L zB9JEVGFDX2Jy6N>M@;J4P>%MFoDSd!+~l@MvD~mb@+ME*MeH@hHasuyY#%~8E8_bR zz4|zI%d8e?e=Yvt7dEMEjzUw8T*}=#A%J?wJIYrjZ{gBr0df@u-?Slz+mU`UO5Xa( z59kPhm$v=}x pS%h?Q%r*K+BGp8_|d-JfMZ0zqR zks
X zifYreS?rCY9+zHG)p?QQhp8GUX^+E!rB3?n)Zbxufx0MX8=`*CO@g0|3?;)xZhYS- zdDAlcn9u3f?dQ_(tT^ZwNk{uleO`H)aQO9kF5UC086*v{ gStR6rSa6O zp2w{KJW`>6@MSQ67U$&Q$pY{`aDytME#tFF1Et-X@V{!9o~ydd`Nv1C!*O@QiT3M{ z@>;!vNx0uFM~0pVFn$t?yADW{e*5+(^aMv}(Vn32;uO5tG$4l}g!b+AJ3#07c2z zw1ASOM>0l)bZEJITGpnsafV@3UigIX2S< FH?-BTkm<)lu(in1FZVP0` z66ZHdJmLbK04kw|jCtWRk5haMdt)dPm`$XbijZt&e+>Ju% (a~m|6N3*X{Dz2# zVOo)4+oHfHZ7;UoY?w$RF?5WI_T0bEoUENc1u%-DYpSmI`q6=*9k4F572~m^JBRS~ zQj51#q? v)xvbqZ~PBEKAA88p>Rp3SFUg*p# zx%eKH*IfLopaWbbTgoVld8WtM*jOJpg2F|G8mq<;2#`B{m x tecM}m1t$$pDKvW zyk%{MH{6R?Is_W`_V)6XM9bv&1jV?xy~kJ1%#Us8G!|H>nh}w57{A9sIGr&}=*igC zzN4@AILXy@>`_ofEjD`aL~^-jX>}7Zr*F}d#q@8MFdHV(O2?hdHF5w||1@6l#%a?y z7EbF=KlSKGGaZdb-6P!=OAQOcL*%1+ US32WH9Hml3Q`D!NSIfW?oU6z;$ya zlfa3s5=R>m3cgHhj>CPly|JfvaWXy@7KLw5iiDoxUTW8OMO_ZccW9~n*Uu1Kxz*%v zpm>Q9FUcrdAJjtzaJhdj+9mGBI;NrQ3Md6YF@|k5Duj)p1%!&UW^zekAUa%Gf2$Ym z&R3^|Av$Ug^8qdcVQwel@++ObO#xYQx*MA7M=YDR7UY*|EthQ9=Q!_TZ{!KsR5n<% zQylg^hIEp!F1BN`UlYQYmXJne(zrDjqs!;d`Gp_dK#3^XR3{Dr93Ih2dHnYzr7X_g ztpY0mo9sik1dEdOIhgA@C?(aH8GEdBkmkD8XR{ZlTaOtB5 =Mjr-n3>2%CJeFz1{%05lEb&q7+QTr$&qa`7G2sGr2} zzXBLqA7~7YGToe7z*zGUE^}(UZ(MpIJ9&cHzw}X=J@&qE%v5c^b5O4!O6f`SPr|vW zA#U5sSPkbr7i^dyw40+?VqxwZ*s45cDRVk_l~|cJc&=^B-v$)KzlP%Qcs&t&jT?5c zXk&1$@$w-n!+iFHOys(|- aEu=3l}>c#=pTPpy>d{iHxrs z7+L-(Xy2p(>XZHe)*YXPLi*l<`Tc4D K$@$&!ykf(G}3D;NiuMy!hGJs4aF_ z7P{~qmNOnO2tz?Z8BNKE1@(&8p5GL8lP#-Q$gciIrN; `%$<9Ngk04>Uk=>V z>!|R(MS5|83;EhK*q_~Q5RT8JC^kkse;CL>SWm)FF3X&>KkL+C$;g56*hCdN#`b!f z HHZtI