commit da913234fd83e1b6d692d32f4cb320e31a1070d8 Author: Nathan Schneider Date: Wed Jun 25 12:47:41 2025 -0700 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bfb614c --- /dev/null +++ b/.gitignore @@ -0,0 +1,50 @@ +# Hugo build output +/public/ +/resources/_gen/ + +# Hugo modules +go.mod +go.sum + +# Hugo cache +/hugo_stats.json + +# Temporary lock files +*.tmp + +# IDE files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Logs +*.log + +# Node modules (if using npm/yarn for themes or tools) +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Environment variables +.env +.env.local +.env.production + +# Backup files +*.bak +*.backup + +# Hugo shortcodes backup +layouts/shortcodes/*.html~ \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..61a331f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,65 @@ +# Default image for jobs - contains Hugo Extended +image: + name: hugomods/hugo:node + entrypoint: [""] + +variables: + HUGO_ENV: production + # Tells GitLab Runner to initialize and update submodules recursively + GIT_SUBMODULE_STRATEGY: recursive + # TODO: the Surfer server base url (ex: "https://www.example.com/") + SURFER_SERVER: "https://e2c.medlab.host/" + +stages: + - build # Added build stage + - deploy + +# Job to build the Hugo site +build_site: + stage: build + before_script: + - echo "installing NPM packages" + - npm install + script: + - echo "Starting Hugo build..." + - hugo version + - hugo --minify --gc --cleanDestinationDir # Build the site + - echo "Build completed. Public directory contents:" + - ls -la public/ + artifacts: + paths: + - public/ # Pass the 'public' directory to the next stage + expire_in: 1 hour # Optional: Set artifact expiry + # Define when this job runs (e.g., only on the main branch) + # Adjust 'only' or 'rules' as needed for your workflow + only: + - publish # the script will only run on the branch 'publish' + +# Job to deploy the built site using cloudron-surfer +deploy_site: + stage: deploy + image: node:18 # Use Node.js image for cloudron-surfer + needs: # Ensure 'build_site' job completes successfully first + - job: build_site + artifacts: true # Download artifacts from 'build_site' + variables: + GIT_STRATEGY: none # Optimization: Don't fetch repo source code for deploy job + before_script: + - echo "Installing cloudron-surfer..." + - npm install -g cloudron-surfer + script: + - 'echo "Deploying to: $SURFER_SERVER"' + # Verify artifact downloaded correctly + - echo "Contents of downloaded artifact:" + - ls -la public/ # Artifacts are extracted to the root of the job workspace + - echo "Uploading files to server using surfer put..." + # TODO: Makesure to add a $SURFER_TOKEN to GitLab under the repo settings > CI/CD > Variables + - >- + surfer put + --token $SURFER_TOKEN + --server $SURFER_SERVER + public/* / + - echo "Deployment completed successfully" + only: + - publish # Example: Run only on the main branch + diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..93fca42 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,67 @@ +# Exit to Community Hugo Site + +This is a Hugo static site that migrated content from a Notion database to create the Exit to Community documentation site. + +## Project Overview + +The site documents case studies, legal snippets, and resources related to "Exit to Community" - the practice of converting startups into community-owned cooperatives. + +## Key Technical Details + +### Site Structure +- **Hugo static site generator** with custom layouts +- **No CMS** - Decap CMS was removed due to login issues +- **Content in Markdown** with YAML frontmatter +- **Custom CSS styling** with E2C yellow branding (#F4D03F) + +### Content Types +- **Case Studies** (`/content/case-studies/`) - 24 case studies with logos and descriptions +- **Legal Snippets** (`/content/legal-snippets/`) - Legal documents and frameworks +- **Resources** (`/content/resources/`) - Media, education, and primer content +- **Main Pages** - Homepage, contact, add-your-story + +### Important Files +- `/layouts/_default/baseof.html` - Main template with CSS and header/footer +- `/layouts/_default/list.html` - Card layout for case studies and other listings +- `/layouts/_default/single.html` - Individual page template with logo display +- `/layouts/index.html` - Homepage template (prevents auto-generated cards) +- `/static/img/logos/` - Case study logos (64px on cards, 120px on detail pages) + +### Styling Notes +- Uses Space Grotesk font from Google Fonts +- Yellow hero section with ribbon background header +- Card-based layout with hover effects +- Responsive design with mobile breakpoints +- Case study logos have white background with padding and borders + +### Content Management +- All content files have clean YAML frontmatter (title first, logical ordering) +- Case studies include `image: /img/logos/[filename]` for logos +- Descriptions are full-length (not truncated) on listing pages +- No bold formatting in markdown headers +- Tags are used for categorization (no separate categories field) + +### Build/Test Commands +- `hugo server -D` - Development server +- `hugo` - Build static site +- No specific linting commands identified yet + +### Recent Work Completed +- Migrated all content from Notion exports +- Added ribbon background to header +- Cleaned up content file structure for human readability +- Added case study logos from external directory +- Fixed layout issues and duplicate content problems +- Removed Decap CMS system +- Implemented responsive card layouts with proper logo sizing + +## Future Considerations +- May need to add linting/typecheck commands when identified +- Content updates should maintain the clean YAML structure +- New case studies should follow the established pattern with logos +- Consider adding search functionality if the content grows significantly + +## External Dependencies +- Hugo static site generator +- Google Fonts (Space Grotesk) +- No external CMS or database dependencies \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9dd29d8 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# E2C.how website + +**An informational website by the Exit to Community Collective.** + +## To do + +* Set up deployment: https://git.medlab.host/dhorn/medlab-hugo-template diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/content/.claude/settings.local.json b/content/.claude/settings.local.json new file mode 100644 index 0000000..c453150 --- /dev/null +++ b/content/.claude/settings.local.json @@ -0,0 +1,8 @@ +{ + "permissions": { + "allow": [ + "WebFetch(domain:actionnetwork.org)" + ], + "deny": [] + } +} \ No newline at end of file diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..370cdd0 --- /dev/null +++ b/content/_index.md @@ -0,0 +1,75 @@ +--- +title: "Exit to Community" +description: "Stories and strategies for community ownership" +hero_image: "/img/Frame_1_(6).png" +hero_alt: "Exit to Community concept illustration" +--- + +
+
+ Exit to Community concept illustration +
+

Stories and strategies for community ownership

+
+
+
+ +
+

What is Exit to Community?

+ +

Most startups aim for one of two "exit" options: an acquisition by another company or a public stock offering. Both often pit founders and investors against the communities they claim to serve.

+ +

Exit to Community is a search for another way—a path where organizations can mature toward accountability and shared prosperity.

+ + + +

This is a strategy that we are exploring together. Here, you can find cases and documents about experiments with E2C so far.

+ +
+ +
+

Explore E2C

+
+
+

Case Studies

+

Real examples of companies that have attempted or achieved community ownership transitions

+ Explore Cases +
+
+

Legal Snippets

+

Legal documents and frameworks for implementing community ownership structures

+ View Legal Resources +
+
+

Resources

+

Educational materials, primers, and guides for Exit to Community transitions

+ Access Resources +
+
+
+ +
+ Partnership handshake illustration +
+ +
+

Get Involved

+
+
+

Share Your Story

+

Help others learn by contributing your organization's E2C experience

+ Add Your Story +
+
+

Get in Touch

+

Connect with the Exit to Community project team

+ Contact Us +
+
+
+ diff --git a/content/add-your-story.md b/content/add-your-story.md new file mode 100644 index 0000000..fd52d1d --- /dev/null +++ b/content/add-your-story.md @@ -0,0 +1,87 @@ +--- +title: "Add your story" +description: "Suggest an Exit to Community case study" +--- + +We're curating stories from founding teams and allies to help people learn from experience. Do you know about real-world examples of organizations that have attempted or achieved community ownership transitions? + +Help us share it with people who can benefit from its lessons. + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ + +
+
+
+ + +
+
+ +
+ +
+
+ diff --git a/content/case-studies/_index.md b/content/case-studies/_index.md new file mode 100644 index 0000000..7487d62 --- /dev/null +++ b/content/case-studies/_index.md @@ -0,0 +1,5 @@ +--- +title: "Case Studies" +description: "Real examples of companies that have attempted or achieved community ownership" +--- + diff --git a/content/case-studies/ampled.md b/content/case-studies/ampled.md new file mode 100644 index 0000000..ddadd7f --- /dev/null +++ b/content/case-studies/ampled.md @@ -0,0 +1,38 @@ +--- +title: Ampled +date: '2023-12-22' +draft: false +description: "A cooperative patronage platform for musicians that struggled with funding and governance before shuttering in 2023" +status: failure +tags: +- co-op +- failure +- missed-opportunity +- multi-stakeholder +- music +url_external: https://ampled.com/ +image: /img/logos/ampled.svg +--- + +### Summary + +Ampled was a patronage platform for fans to directly support musicians. Founded in 2018, Ampled allowed musicians to set up pages to provide fans with access to music demos, unreleased material, and merch, for a minimum of $3 per month. Ampled incorporated first as a cooperative with three member categories: musicians, workers, and fans, with three seats each on its nine-member board, with only musicians and workers permitted to receive dividends. Over time, Ampled struggled to coordinate and compensate its workers and volunteers, and despite efforts among members to build new leadership, its founder and board decided to shutter the co-op in 2023. + +### Motivation and Readiness + +Ampled co-founders Austin Robey and Collin Lewis have compared the platform economy to the music industry: “You don’t know what’s going on behind the scenes, and someone else owns and profits off of your music.” Ampled contrasted themselves with Patreon, a creator platform that is known to periodically raise fees to boost shareholder values, alienating subscribers and hampering creators. In 2017, 98% of Patreon creators [earned below the federal minimum wage](https://theoutline.com/post/2571/no-one-makes-a-living-on-patreon) in their revenue from the platform. Thus, in building Ampled, Robey and Lewis incorporated community ownership in their business model because they believe that creators – not disengaged outside investors – should hold decision-making power over the platform. Ampled was part of a growing network of co-ops, including Resonate and Catalytic Soundstream, that gave artists a stake in the services they rely on to make a living from their creative labor. + +### Process and Tensions + +Ampled’s biggest challenge was securing value-aligned funding to sustain the business and fairly compensate its workers without compromising the integrity of its internal democracy. Its model involved worker-owners who invested their sweat equity with a time bank to build the business and platform; musician-owners who invested their time creating content for subscribers; and fans (i.e. [community members](https://www.ampled.com/artist/community)) who paid a monthly fee directly to Ampled, and who weren’t owners but did have voting rights. As a co-op and technically a for-profit business, Ampled was not eligible for most grants geared towards nonprofits. And as a digital platform, it also couldn’t take out loans with any of the few co-op-friendly lenders, because those primarily serve physical operations. To cover overhead and compensate workers, Ampled depended on funds from [their Grant for the Web](https://docs.ampled.com/gftw/), [an NFT drop](https://ampled.mirror.xyz/BtZXGcoYn0K-xThCDxLEQGhGJXsj11tQVT6rtMGaGLw), and various sponsorships. + +### Results + +Ampled went fully open source [in August 2022](https://twitter.com/ampl3d/status/1561684611146493953) with the intention of allowing developers “to fork the code to create their own Ampled-like platforms.” To overcome the funding challenges associated with being a co-op, Ampled had planned to pursue more grant and sponsorship opportunities, and Robey had considered [minting community tokens](https://forefront.market/blog/how-community-tokens-can-power-cooperatives) with a market-determined value, inspired by models of [tokenized stock ownership](https://www.noemamag.com/exit-to-community/). However, many community members remained wary of crypto due to its market volatility and related reputational risk, on top of general confusion around its basic concepts. Over time, Ampled’s core base of contributors grew less active and coordinated – largely because many couldn’t dedicate the necessary time and energy while working in a volunteer capacity – until the platform shuttered officially in the fall of 2023. + +### Sources + +- E2C conversation with founding team, board, and members +- [Funding Musician Co-ops Using Community Tokens with Ampled – The Blockchain Socialist](https://theblockchainsocialist.com/funding-musician-coops-using-community-tokens-with-ampled/) +- [How to Unlearn Capitalism through Cooperative Ownership (With Austin Robey and Danny Spitzberg) – Strange Futures](https://pioneerworks.org/broadcast/strange-futures-austin-robey-danny-spitzberg) +- [Ampled's Opportunity – The Smart Set](https://www.thesmartset.com/ampleds-opportunity/) \ No newline at end of file diff --git a/content/case-studies/arena.md b/content/case-studies/arena.md new file mode 100644 index 0000000..4ca10e0 --- /dev/null +++ b/content/case-studies/arena.md @@ -0,0 +1,37 @@ +--- +title: Are.na +date: '2023-12-22' +draft: false +description: "An ad-free platform for visually connecting images and information, transitioning to community ownership through crowdfunding and member governance" +tags: +- crowd-equity +- social-media +- underway +url_external: https://are.na/ +image: /img/logos/arena.png +--- + +### Summary + +Are.na is an ad-free platform for visually connecting images and information. Publicly launched in 2015, the company [describes](https://www.are.na/) itself as “a garden of ideas, or Tumblr meets Wikipedia” and “a more nerdy Pinterest” for designers, artists, hobbyists, and students. According to [its website,](https://www.are.na/about) Are.na is “the only social media company whose only customers are the people who use it”; it is largely free to browse and earns revenue through subscriptions as well as a higher “supporter” tier that may eventually yield dividends. The company has laid out [a public roadmap](https://www.are.na/about/Roadmap) detailing their intention to become a public benefit corporation with compensated member-investors. + +### Motivation and Readiness + +Are.na has built its capacity for community ownership over the course of nearly a decade. Originally part of a parent company for its first year and a half, Are.na became independent when that company’s CEO retired, and a collective of digital artists who had been users of the platform obtained full ownership of the assets. This financial situation was unique because the CEO permitted Are.na’s exit with no financial strings attached, and it set up the conditions for the collective to involve its community more freely than if it had been sold off to a new parent company instead. + +### Process and Tensions + +According to [its roadmap](https://www.are.na/about/Roadmap), Are.na will transition to a public benefit corporation that is wholly accountable to its members and has the ability to compensate its member-investors. This approach builds on a long-running practice of generating revenue from paid member subscriptions, not advertisements. In 2018, Are.na also ran an equity crowdfunding campaign. Under a Simple Agreement for Future Equity (SAFE) contract, users who participated in the crowdfund came to own a portion of the company (around 6-8%, depending on the company’s valuation at the time of conversion). However, Are.na’s budget is tight and the size of its core staff is small, with two full-time and three part-time workers as of December 2022. They want to execute their E2C once day-to-day operations are stable and they’ve balanced long-term goals with more immediate needs. + +### Results + +During their time in the E2C 2020 Peer Learning Cohort, co-founder [Charles “Cab” Broskoski](https://e2c.how/Charles-Broskoski-45514f0b20bd40e99fbe9897587b92da) and advisor [Leo Shaw](https://e2c.how/Leo-Shaw-f95853ac82cb44189147cc9f0c01ed04) developed the narrative for Are.na’s multi-stakeholder vision. Since then, the company has hosted meetings with its subscribers to gauge their thoughts on the E2C proposal, while co-founder Daniel Pianetti has been leading discussions with lawyers and other domain experts to figure out the appropriate legal documentation for when the time is right. Are.na hopes to adopt a level of persistent transparency similar to [Open Collective’s E2C ambitions](https://opencollective.com/e2c). Are.na is currently in the process of developing structures for member-ownership and governance strategy, in order to legally enshrine the dynamic of mutual care that has existed more informally between staff and users for years. As of 2023, this entails seeking out the best way to transition the crowdfund participants — who are currently SAFE holders, not shareholders — into an entity that can receive a return if the company is profitable but does not get acquired or go public. + +At present, Are.ca could take one of two paths. First, it could seek majority consent from the crowdfund investors to amend the terms of their contract, allowing the company to share its success with them, without having to convert them to shareholders first. This would enable them to issue the investors something like profit dividends, offering them a tangible return timeline and ensuring that they would still see upside in the case of a future exit. Second, Are.na could raise a second crowdfunding round, issuing a different type of investment contract while simultaneously converting and re-organizing the original investors into a separate entity. When it becomes time for the company to share profits, it would then distribute them to the two groups of investors. + +### Sources + +- E2C conversation with founding team +- [Charles Broskoski: How do you describe are.na at a party? – Are.na](https://www.are.na/charles-broskoski/how-do-you-describe-are-na-at-a-party) +- [Can the Internet Feel Better? – Early Magazine](https://www.earlymagazine.com/articles/can-the-internet-feel-better) +- [Meet are.na – ArtNews](https://www.artnews.com/art-news/artists/doesnt-produce-anxiety-meet-na-social-network-created-artists-10207/) \ No newline at end of file diff --git a/content/case-studies/buytwitter.md b/content/case-studies/buytwitter.md new file mode 100644 index 0000000..71946b1 --- /dev/null +++ b/content/case-studies/buytwitter.md @@ -0,0 +1,38 @@ +--- +title: '#BuyTwitter' +date: '2023-12-22' +draft: false +description: "A campaign to turn Twitter into a public utility with cooperative ownership that generated global attention but fell short of majority votes" +tags: +- co-op +- missed-opportunity +- publicly-traded +- social-media +- trust +- utilities +url_external: https://buytwitter.org/ +image: /img/logos/buytwitter.png +--- + +### Summary + +#BuyTwitter was a campaign to turn Twitter into a public utility “with broad-based ownership and accountability, like a co-op.” Starting in 2016 when Twitter’s low stock price put it at risk of failing or selling to another company, the campaign began with an op-ed calling for users to buy the company cooperatively, which evolved into a petition and then a shareholder resolution proposing Twitter study its options to sell to users. The campaign generated global media attention from *[WIRED](https://www.wired.com/2016/11/lets-build-next-twitter-like-green-bay-packers/)* to *[The Financial Times](https://www.ft.com/content/5997d76e-ede3-11e6-ba01-119a44939bb6)*, spurred detailed plans and academic articles, and generated popular enthusiasm including thousands of tweets and even [an original song](https://www.youtube.com/watch?v=qawlthPv1dE). While the resolution got on the 2017 Twitter general meeting ballot, it fell short of the majority of votes required to pass. However, when Elon Musk bought Twitter in 2022, the group relaunched as [Better Platform](https://www.betterplatform.net/) to engage users in public interest alternatives. + +### Motivation and Readiness + +When Twitter's share price dropped to an all-time low of $16 in 2016, a group of co-op organizers proposed saving the platform for the public interest by having the users buy it out from shareholders. The campaign began as a thought experiment in [an op-ed](https://www.theguardian.com/commentisfree/2016/sep/29/save-twitter-buy-platform-shared-ownership), eventually leading to a petition urging Twitter’s then-CEO Jack Dorsey to explore shared ownership models for the platform. + +### Process and Tensions + +When the petition didn’t receive a response from Jack Dorsey or Twitter leadership, some members of the organizing group proposed crowdfunding $6B for a majority stake in the company. However, the group ultimately decided to escalate from a petition to a shareholder resolution for Twitter, Inc. to commission a study on its options for an exit to shared ownership. They launched [BuyTwitter.org](https://buytwitter.org/) and a sustained online campaign, mostly via Twitter and in almost 100 earned media articles. However, framing and messaging proved difficult. The group learned that “co-op” doesn’t mean much to the general public (or else conjures images of a consumer-owned grocery store) and that “buying Twitter” didn’t make sense to serious audiences because they could already buy shares. However, the idea of turning Twitter into a public utility proved compelling, and the idea of “broad-based ownership and accountability” helped communicate the value of selling Twitter to users and other public interest organizations. + +### Results + +In 2017, #BuyTwitter presented their shareholder resolution at the 2017 annual general meeting. It [received 4.9% of the vote](http://rejected/), some 35 million shares, meaning the group could come back another year but it was not enough for the simple majority of 50%+1 required to compel the company to study its options for ownership. In April 2022, as initial rumors of Elon Musk buying the company began to emerge, the group published [a new op-ed](https://www.wired.com/story/you-yes-you-would-be-a-better-owner-for-twitter-than-elon-musk/) and later launched [Better Platform](https://www.betterplatform.net/) to organize A People’s History of Twitter and an assembly on the future of news and social media. While Twitter/X continues to be owned by Elon Musk (for now), the vision of platforms as public utilities still serves as the basis for future action. + +### Sources + +- E2C conversation with organizers +- [BuyTwitter.org – Press](https://www.buytwitter.org/press/) +- [Better Platform website](https://www.betterplatform.net/) +- [Cooperative Organizing for an Inclusive Economy – The NCBA Journal](https://web.archive.org/web/20190302195643/https://ioo.coop/2017/10/21/cooperative-organizing-for-an-inclusive-economy-the-campaign-to-buytwitter/) \ No newline at end of file diff --git a/content/case-studies/cmx.md b/content/case-studies/cmx.md new file mode 100644 index 0000000..552ae79 --- /dev/null +++ b/content/case-studies/cmx.md @@ -0,0 +1,33 @@ +--- +title: CMX +date: '2023-12-22' +draft: false +description: "A community platform for community professionals that was acquired by Bevy despite potential for stakeholder ownership" +tags: +- acquired +- missed-opportunity +- services +url_external: https://cmxhub.com +image: /img/logos/cmx.jpg +--- + +### Summary + +CMX [described](https://techcrunch.com/2019/02/11/bevy-acquires-cmx/) itself as “the world’s largest community for community professionals.” Founded in 2014, their stated mission was to “advance the community industry and help professional community builders thrive.” In 2019, co-founder and CEO David Spinks [sold CMX](https://techcrunch.com/2019/02/11/bevy-acquires-cmx/) to Bevy, an online events platform. Spinks has expressed support for community ownership, saying in [a 2021 interview](https://technical.ly/company-culture/chief-community-officer/), “If every business in the world became community driven, it would have a massive impact on the world… Community ownership is the longtime trajectory.” However, despite CMX being a potentially strong fit for stakeholder ownership, when Spinks [announced](https://twitter.com/DavidSpinks/status/1506349501908324357) he was stepping down in March 2022, he did not lay out any plans to move toward shared ownership. + +### Motivation and Readiness + +CMX had its origins in a professional forum TheCommunityManager.com, cofounded by Jenn Pedde, Brett Petersel, and David Spinks. Spinks broke off from the group and started CMX Media, Inc., later CMX. Initial funding came from a loan from friend and co-founder Max Altschuler. Many community management professionals built the business in CMX’s early days by creating content, producing events, and contributing to the growing profession, notably Carrie Melissa Jones, Yrja Oftedahl, Evan Hamilton, Erica McGillivray, and Katie McCauley. + +### Process and Tensions + +As CMX CEO, David Spinks tried for several years to build a self-sustaining business that was profitable through various revenue streams. With a loyal following in a Facebook Group and annual summit event, CMX eventually did become profitable in 2014. The staff joined full-time and the company added new revenue streams, including training and workshops, sponsored research and content, consulting, job board, and CMX Pro membership. However, even with strong community interests, the event industry is difficult. In 2017, as the business was struggling, Spinks sought a way to make the company solvent and went through several rounds of trying to find a buyer. Despite having a strong membership that was professionally invested in both the value of community and CMX’s success, there were no conversations about selling the business to its community or exploring member-ownership. + +### Results + +Ultimately, ****Spinks made a deal to sell CMX to Bevy, an online events platform; Bevy’s CEO Derek Andersen had been a CMX speaker and sponsor, and CMX used Bevy’s platform to run their events. In 2019, [Bevy announced its acquisition of CMX](https://techcrunch.com/2019/02/11/bevy-acquires-cmx/). Spinks continued to lead CMX as a VP at Bevy, receiving a bonus, salary boost, and stock options. The two remaining CMX employees received no salary increase, and others who built CMX received no equity compensation. However, Spinks has since become interested in community ownership, saying in [a 2021 interview](https://technical.ly/company-culture/chief-community-officer/) that “If every business in the world became community driven, it would have a massive impact on the world… Community ownership is the longtime trajectory.” In 2021 Spinks also wrote a book titled, “The Business of Belonging.” In March 2022, Spinks [announced](https://twitter.com/DavidSpinks/status/1506349501908324357) he was stepping down from Bevy and CMX. The CMX annual summit event, website, Facebook Group, and other online properties, however, remain under Bevy’s ownership. + +### Sources + +- [What is a community company? – Technical.ly](https://technical.ly/company-culture/chief-community-officer/) +- [Bevy Acquires CMX – TechCrunch](https://techcrunch.com/2019/02/11/bevy-acquires-cmx/) \ No newline at end of file diff --git a/content/case-studies/dada.md b/content/case-studies/dada.md new file mode 100644 index 0000000..bd6e9fc --- /dev/null +++ b/content/case-studies/dada.md @@ -0,0 +1,36 @@ +--- +title: DADA +date: '2023-12-22' +draft: false +description: "A digital art platform exploring community ownership through tokenization while advocating for fair art economies" +tags: +- crypto +- social-media +- underway +url_external: https://dadacoin.com +image: /img/logos/dada.jpg +--- + +### Summary + +DADA is a digital space for conversations to unfold through art. Founded in 2014 by artists Beatriz Ramos and Judy Mam, its name refers to Dadaism, the 20th-century movement that sought to upend a bourgeois art world which profited only an elite few. DADA’s platform is an open canvas where users can “speak” to each other through drawings. The community can then decide, through a process of deliberation, to mint relevant collections as NFTs; around 10 historic collections have thus far been minted. Leading the charge for blockchain technology to support fairer art economies, DADA was one of the first platforms to experiment with on-chain royalties, encoding them into the smart contract for their first collection, *Creeps & Weirdos*, in 2017, enabling artists to benefit from secondary market sales (which, in the offline or “legacy” art world, they oftentimes do not). In step with these values, they have been exploring an exit to community through tokenization since 2022. + +### Motivation and Readiness + +In 2019, Ramos and Mam were determined to maintain a space for digital art that did not replicate either the inequalities of the legacy art world or the increasingly frothy crypto space. DADA’s founders sought, from the outset, to make a platform that was open, collaborative, non-competitive, and home to a thriving community. In contrast to the market-driven hype that permeates much of the NFT space, DADA advocates for what they call the “[Invisible Economy](https://powerdada.medium.com/the-invisible-economy-db46897d4f07)” – a paradigm of “interdependence, creativity, and altruism” aiming to use Web3 tools for meaningful community ownership, not just financial speculation. E2C is thus a logical way of putting ownership and stewardship in the hands of the people who create value for DADA, be it artistic, cultural, social, or financial. + +### Process and Tensions + +In March 2022, DADA [published a blog post](https://powerdada.medium.com/introducing-the-dada-exit-to-community-d4b9874c6c94) laying out their intention to exit to community and staging a number of relevant questions: What kind of legal entity will best suit their needs as a wholly community-owned project? What governance models will best enable them to remain equitable, efficient, and transparent? What would a fair token distribution look like? DADA now conducts frequent community sessions and Telegram chats on topics like governance, invisible economy, and token models, encouraging anyone who wishes to be involved to weigh in. They have since announced their intention to introduce a DADA Token backed by their art collection, and continue to encourage the community to actively engage in shaping this transition. The crypto winter of 2021-22 has encouraged them to slow down the token development process, but they are still discussing and devising a token-based E2C. + +### Results + +While the outcome of DADA’s E2C remains to be seen, they are well-positioned to cement their status as a voice of equity and artists’ rights in the Web3 space as they pursue new avenues for community engagement. “DADA is a platform with a unique value proposition, a passionate community, and the largest collection of rare digital art in the world,” Ramos and Mam wrote in a [blog post](https://powerdada.medium.com/the-invisible-economy-db46897d4f07#:~:text=DADA%20is%20a%20platform%20with,our%20community%20with%20our%20tools.). As of December 2023, they boast over 150k unique drawings created by the community. While the crypto market has fluctuated wildly since DADA initially announced their intentions to E2C, their commitment to creating an alternative sustainable ecosystem for artists that is more fair, diverse, and less cutthroat than the free market remains steadfast. + +### Sources + +- [DADA.art - Website](https://dada.art/home) +- [Introducing the DADA Exit to Community](https://powerdada.medium.com/introducing-the-dada-exit-to-community-d4b9874c6c94) +- [Introducing the Invisible Economy](https://powerdada.medium.com/the-invisible-economy-db46897d4f07) +- [DADA.art | Medium](https://powerdada.medium.com/) +- [Crypto Artists Share How Web3 Tools Enable Diverse Art Market Experiments - Forbes](https://www.forbes.com/sites/digital-assets/2023/05/01/crypto-artists-share-how-web3-tools-enable-diverse-art-market-experiments/?sh=5d0c6ace64b0) \ No newline at end of file diff --git a/content/case-studies/debian.md b/content/case-studies/debian.md new file mode 100644 index 0000000..703794d --- /dev/null +++ b/content/case-studies/debian.md @@ -0,0 +1,36 @@ +--- +title: Debian +date: '2023-12-22' +draft: false +description: "Debian is a free Linux-based operating system maintained by over 1,000 people worldwide that by 2006 formalized power sharing by recognizing a subset of developers to vote on technical and governance resolutions, all without a legal entity." +status: success +tags: +- software +- success +url_external: https://debian.org/ +image: /img/logos/debian.png +--- + +### Summary + +Debian is a free operating system, built on the Linux kernel. When Ian Murdock started Debian as a 22-year-old college student in 1993, Linux was primarily used by students and computer scientists. Debian sought to make Linux easier to install and deploy, and was the first truly free and open Linux distribution, meaning any developer or user could contribute to its code. Debian now holds about 25% of the market for Linux distributions, and is the largest free distribution. The project is built and maintained by over 1,000 people across more than 40 countries, making up a large and geographically-dispersed community of contributors. A subset of these contributors are officially recognized as “Debian developers” (aka “project members”) and can vote on resolutions regarding technical, social, and governance questions as well as in Debian Project Leader elections. Notably, unlike many other major FOSS operating systems, Debian is not housed under a nonprofit/foundation, business, or other legal entity. + +### Motivation and Readiness + +Early on, Debian functioned under the centralized leadership of its founder, Ian Murdock. Murdock had a fairly laid-back approach to leadership and an openness to considering contributors' opinions and input, but ultimately held the final say as decisions were made. In 1994, he released a manifesto for the project, proclaiming that Debian was to be “non-commercial” and developed by and for the community of developers. + +In 1996, Murdock left the project and unilaterally appointed Bruce Perens as the new leader. There was no formal governance process in place to represent contributors’ opinions or resolve disputes, so when Perens turned out to hold a more expansive vision of authority than had Murdock, project members grew frustrated. They began to question the basis of Perens’ authority; he felt this strain and suggested that the community elect a board of directors as a check on his power. But project members felt that this wouldn’t go far enough, and asked Perens to step down. Following his recall, project members stepped up to design a new governance system geared towards better representing their interests and ensuring Debian’s continued sustainability. + +### Process and Tensions + +In response to what they felt to be Perens’ overstepping of authority, Debian project members drafted and ratified a constitution that delimited the role of a Debian Project Leader (DPL). With the constitution in place, the first DPL election was held in 1998. In 1999, Debian developers began electing project leaders for one-year terms. This led to a period of experimentation with the role, where various attitudes and approaches to governance could be tested out. Some worked better than others, and developers’ opinions of the DPL role varied widely. Competing visions around ideal leadership principles sometimes caused tension in the community throughout the 1990s. One challenge was establishing the right ideas around meritocracy: while project members initially assumed that the contributors with the most astute technical skills should hold authority positions, it became clear over time that the best programmers don’t always, or even usually, make the best leaders. Different models of leadership valuing different ways of contributing to the project – beyond just writing good code – had to be tested out as the community learned, in practice, what qualities they needed in a leader figure. + +### Results + +By the end of 2006, the Debian community had achieved consensus around the ways of distributing power and making laws that suited them best. Through collective experimentation, they landed on a conception of democratic rule where leaders hold some, albeit limited, authority over technical matters, but also defer to the community and can be recalled by community members if they overstep their authority. If the DPL becomes indisposed for any reason – or if the community fails to elect a new one – the role’s powers and responsibilities will be taken on by a Technical Advisory Committee. The DPL’s role is mostly restricted to coordinating project-wide decisions, serving as and/or delegating a representative to other organizations or the public, and facilitating conflict resolution, so most of the authority to make choices about Debian’s governance is laterally distributed throughout the community. However, the DPL does have final approval over financial decisions. Cory Doctorow wrote, [following Ian Murdock's death in 2015](https://www.zdnet.com/article/debian-linux-founder-ian-murdock-would-have-been-amazed-at-its-legacy/), that "The Debian project fundamentally shifted the way free/open code got made by fusing an insistence on engineering excellence with a public declaration of the ethical nature of doing free software development." + +### Sources + +- E2C conversation with Debian user Molly de Blanc +- [“The Emergence of Governance in an Open-Source Community” – The Academy of Management Journal](https://www.jstor.org/stable/pdf/20159914.pdf) +- [Ian Murdock in His Own Words: What Made Debian Such a Community Project? – TechDirt](https://www.techdirt.com/2016/01/14/ian-murdock-his-own-words-what-made-debian-such-community-project/) \ No newline at end of file diff --git a/content/case-studies/defector.md b/content/case-studies/defector.md new file mode 100644 index 0000000..3326e93 --- /dev/null +++ b/content/case-studies/defector.md @@ -0,0 +1,39 @@ +--- +title: Defector Media +date: '2023-12-22' +draft: false +description: "Defector Media is a sports and culture publication that emerged in 2020 after staff at Deadspin quit when faced with new management, and formed a worker-owned co-op." +status: success +tags: +- co-op +- journalism +- success +- worker-owned +url_external: https://defector.com/ +image: /img/logos/defector.png +--- + +### Summary + +Defector Media is a sports and culture publication run by a worker co-op. Many of its staffers previously worked at Deadspin, the sports website housed under G/O Media (formerly known as Gizmodo Media Group or Gawker Media). In 2018, G/O Media came under new private equity ownership, and in October 2019, new management suddenly fired Deadspin’s acting editor-in-chief. Every single editorial employee at Deadspin quit within 48 hours. 18 of those employees started Defector Media, which was publicly announced in July 2020. All Defector employees hold equity in the company, although its founding members have some enhanced governance rights. Inspired by the Teal management system and incorporated as a worker-owned cooperative, Defector’s employees participate in a series of standing committees that make decisions about business operations. + +### Motivation and Readiness + +The former editorial staffers of Deadspin had worked under several forms of corporate ownership—Gawker, a digital media company; Univision, a media conglomerate; Great Hill Partners, a private equity firm—all of which, to varying degrees, left their professional fates at the whims of business executives who did not necessarily understand or respect the editorial enterprise. Through it all, they were able to grow a loyal audience, reaching tens of millions of readers each month. After new management fired Deadspin’s acting editor-in-chief, the entire editorial staff proceeded to quit in solidarity. These editorial staffers then launched Defector, setting it up as a worker cooperative, in hopes of controlling the ongoing operations of the business and reaping its rewards, however modest. The goal was to create sustainable, middle-class journalism jobs and steadily grow the business, rather than to grow as fast as possible to get the largest possible exit for outside investors. + +### Process and Tensions + +Defector was co-founded by 19 people: 18 editorial staffers and one revenue and operations person. They divided the equity in the company evenly amongst themselves, and did not take any outside funding. The company’s legally binding operating agreement required that key decisions be ratified with a majority vote of all employees—so, all would have a say in choices like whether to raise money via debt or outside equity funding, or whether to sell or wind down the company. The initial editor-in-chief and business-side executive could be fired with a two-thirds vote of all employees. Defector was able to launch with minimal startup costs, because key partners were willing to work under pure revenue-share agreements with no fixed upfront costs (e.g., technology for the website) or with discounted rates and generous payment terms (e.g., outside legal counsel). The co-founders decided that the core revenue model would be direct subscription sales, with articles behind a paywall. Heading into the launch, it was difficult to predict how willing readers would be to pay for journalism, and staff were prepared to make very little, if any, money for some time. + +### Results + +The day Defector launched, over 10,000 readers subscribed. Revenue over the first 12 months totaled $3.2 million, enabling the publication to hire additional staff. The owner-employees continued to build out rules and processes that allowed for everyone to have a say in the direction of the business—while, at the same time, ensuring that people didn’t get bogged down by trying to reach consensus on every single decision. A few notable projects they have undertaken since then included voting for representatives to the company Board of Directors; assigning decision rights on key decisions; creating standing committees to work on ongoing organizational topic areas; and writing a full employee handbook. By December 2021, Defector had more than 40,000 paying subscribers and had grown to include 23 full-time employees, including all of the 19 original cofounders. + +### Sources + +- E2C conversation with Defector founding team +- [After Quitting Deadspin in Protest, They’re Starting a New Site – New York Times](https://www.nytimes.com/2020/07/28/business/media/deadspin-staffers-start-defector.html) +- [Defector.com’s journalistic experiment began with a staff walkout. It might actually be working – The Washington Post](https://www.washingtonpost.com/lifestyle/media/media-defector-success-after-deadspin/2021/02/21/80e867ee-7231-11eb-85fa-e0ccb3660358_story.html) +- [A new model for modest, middle-class journalism – The Week](https://theweek.com/business/1005721/a-new-model-for-modest-middle-class-journalism) +- [One Year of Defector](https://defector.com/one-year-of-defector/) +- [Defector Annual Report, September 2020 – August 2021](https://defector.com/defector-annual-report-year-one/) \ No newline at end of file diff --git a/content/case-studies/ens.md b/content/case-studies/ens.md new file mode 100644 index 0000000..2cd9c82 --- /dev/null +++ b/content/case-studies/ens.md @@ -0,0 +1,34 @@ +--- +title: ENS +date: '2023-12-22' +draft: false +description: "Ethereum Name Service (ENS) is a public key protocol that decentralized its governance in 2021 by forming a DAO, airdropping tokens to users, expanding collective ownership." +status: success +tags: +- crypto +- success +url_external: https://ens.domains/ +image: /img/logos/ens.jpg +--- + +### Summary + +Ethereum Name Service (ENS) helps simplify public keys on the Ethereum blockchain. Public keys, which represent crypto transactions on a ledger, are long sequences of numbers and letters which, while unique and secure, are almost impossible to memorize. So, ENS offers the Ethereum equivalent of a domain name: a customizable phrase that is easier to remember and find than a full public key. Purchasing an NFT on [the ENS website](https://ens.domains/) grants the ability to customize the key associated with your wallet address by creating a unique username ending in .eth. Founded in 2017, ENS is today used by over 300,000 accounts. In November 2021, a DAO was launched to decentralize governance of the protocol, and 25% of governance tokens were airdropped to existing active users. ENS is now collectively owned and stewarded by its DAO, [using tools](https://docs.ens.domains/v/governance/process) like Discourse forums to hold public discussions and voting interfaces like [Tally](https://www.tally.xyz/gov/ens) to facilitate the creation and execution of proposals. While they have a DAO constitution, their [governance processes](https://docs.ens.domains/v/governance/process) are intended to be continually owned, modified, and enforced by the community. + +### Motivation and Readiness + +After four years of development, ENS was initially controlled by a small set of people. However, in step with the values of decentralization and community governance often touted in Web3, the team wanted to decentralize control and management of the protocol to their community. So, in November 2021, the ENS DAO was launched, along with the ENS Foundation, established in the Cayman Islands to legally represent the DAO. By virtue of being built on the blockchain, it was possible for ENS to assess the users who had previously registered .eth domains and airdrop them governance tokens, enabling them to begin participating in the protocol’s stewardship. + +### Process and Tensions + +The ENS exit to community was done in a Web3-native way, through an airdrop of governance tokens. After deciding to opt for decentralized governance, the ENS team came up with an algorithm to fairly distribute 25% of the ENS token supply to active users. Because ENS is built on top of the Ethereum network, the team was able to take a snapshot of the wallet addresses of active users, and then create an interface allowing them to claim ENS governance tokens. As part of the claiming process, participants delegated their votes to active community members, and also voted on resolutions for the [ENS DAO Constitution](https://docs.ens.domains/v/governance/ens-dao-constitution), which outlines the scope of legitimate actions for the DAO. + +### Results + +The airdrop successfully put 25% of the token supply into the hands of ENS users. Many accounts claimed to have received token allocations through the airdrop worth over $20,000. After the initial distribution, the users ended up having more control and power than the core contributors, who collectively received 18.96% of the token supply. As a result of the airdrop, the ENS DAO has created a way to self govern an integral part of Web3 infrastructure. Following its success, the airdrop model executed by ENS could become a standard way to decentralize services into collectively-owned and democratic networks. + +### Sources + +- [ENS DAO Constitution](https://docs.ens.domains/v/governance/ens-dao-constitution) +- [ENS Docs: Governance process](https://docs.ens.domains/v/governance/process) +- [Tweet thread: ENS governance token airdrop, explained](https://twitter.com/ensdomains/status/1455754470894317570) \ No newline at end of file diff --git a/content/case-studies/forward.md b/content/case-studies/forward.md new file mode 100644 index 0000000..72b4936 --- /dev/null +++ b/content/case-studies/forward.md @@ -0,0 +1,34 @@ +--- +title: Forward Action +date: '2023-12-22' +draft: false +description: "Forward Action is a UK-based digital agency for progressive nonprofits with co-founders that converted the firm in 2022 to an employee ownership trust with profit sharing for every staff member." +status: success +tags: +- employee-owned +- services +- success +url_external: https://forwardaction.uk/ +image: /img/logos/forward.jpg +--- + +### Summary + +Forward Action is a UK-based digital agency that specializes in marketing services for progressive nonprofits. It was founded in 2015 by Joe Escalante Coney and Alex Lloyd Hunter, who met working on the UK Labour Party’s digital campaign ahead of the 2015 general election. Since then, the agency has worked with major organizations like Greenpeace, Amnesty International, and Save The Children. In October 2022, Forward Action became an employee ownership trust, with every staff member becoming a co-owner and sharing annual profits evenly. Escalante Coney and Lloyd Hunter consider this ownership model to be “the best way to empower our team to keep delivering the highest quality and most impactful work possible for our partners long term.” + +### Motivation and Readiness + +In private conversations over roughly the past five years, Escalante Coney and Lloyd Hunter discussed their intention to eventually part ways with Forward Action to pursue other ventures. Before committing to their departure, they wanted to develop an organizational structure that would ensure the agency could continue to thrive and stay true to its values, even in their absence. They considered a few  possibilities which they  ultimately felt went against the agency’s social justice ethos. The first was exiting to a third party, which would have put the agency at risk of sacrificing its values by submitting to the demands of a larger marketing company. The second option was for Escalante Coney and Lloyd Hunter to remain Executive Directors in name alone, remaining on staff in a passive capacity while continuing to reap profits. Instead of pursuing either of these options, the co-founders decided to opt for something more aligned with Forward Action’s values and hand over ownership to their team as an employee ownership trust. They began to contemplate the logistics of the transition in 2021, and it took just over a year to fully complete it. + +### Process and Tensions + +In order to properly facilitate the process, Escalante Coney and Lloyd Hunter sought help from the consultancy firm Baxendale, which assists organizations with transitioning their existing models to employee ownership (Baxendale is itself employee-owned). The two co-founders along with Baxendale introduced their transition plan to Forward Action’s workers and opened space for anyone to ask questions and submit feedback, either publicly or anonymously. Baxendale set forth the legal guidelines for a governance structure of a five-person board of trustees, each with voting power. The Forward Action board includes Escalante Coney and Lloyd Hunter; two representatives elected by workers; and one independent trustee from outside of the agency who serves as the chair. Helen Hyde, the independent trustee, previously worked in leadership at the John Lewis Partnership, which is the largest employee ownership trust in the UK. She was recommended to Forward Action by their accountant, and the two co-founders made the decision themselves to appoint her to the board. + +### Results + +Because the transition was so recent, it may be too soon to gauge its long-term impact. As of June 2023, Escalante Coney and Lloyd Hunter are no longer involved in day-to-day operations at Forward Action, and are thus no longer co-owners, but they remain on the board of trustees. In March 2023, they hired a CEO to take over the leadership role, and the new CEO is responsible for reporting to the board. Escalante Coney believes that as a result of the employee ownership model, “Forward Action will still be driving progressive change and thriving as a happy, fulfilling place to work in ten, fifteen or who knows, twenty years time.” + +### Sources + +- [A New Chapter for Forward Action](https://forwardaction.uk/2022/09/new-chapter/) +- [Forward Action – About Us](https://forwardaction.uk/2022/04/about-forward-action-our-job-benefits/) \ No newline at end of file diff --git a/content/case-studies/gitcoin.md b/content/case-studies/gitcoin.md new file mode 100644 index 0000000..6928319 --- /dev/null +++ b/content/case-studies/gitcoin.md @@ -0,0 +1,35 @@ +--- +title: Gitcoin +date: '2023-12-22' +draft: false +description: "Gitcoin is a platform for open source Ethereum projects that exited its founding organization in 2021 with an $11.3 million investment round and shifted to liquid democracy." +status: ambiguous +tags: +- ambiguous +- crypto +url_external: https://gitcoin.co/ +image: /img/logos/gitcoin.png +--- + +### Summary + +Gitcoin is a platform for developers and creators to fund open source projects, particularly within the Ethereum ecosystem. Despite its name and its founding during the ICO boom in 2017, Gitcoin did not initially issue a coin or token, but was backed by the venture studio Consensys. In 2021 it spun out of Consensys with an $11.3 million investment round, which included a distribution of tokens to platform users. Since its exit, the goal has been to put the platform fully under the control of the token-governed GitcoinDAO, which follows a liquid democracy model based on stewardship. + +### Motivation and Readiness + +With a culture deeply tied to a vision of decentralization, Gitcoin co-founder Kevin Owocki sought a strategy to develop his company itself. The company began to achieve success during the crypto market downturn following the 2017 boom, becoming the main clearinghouse for grants and gigs for developers of Ethereum-related infrastructure. As Gitcoin’s success took hold, it became clear that it was ready to expand beyond Consensys. + +### Process and Tensions + +During the crypto boom in 2021, Gitcoin raised an $11.3 million investment round that included the Ethereum Foundation, Paradigm, and others. Through this, it exited Consensys and launched the GTC token on the Ethereum blockchain. In a “retroactive airdrop,” 15% of tokens were distributed to users who had donated or received funds on Gitcoin already, or who had participated in some other way. 50% of tokens went to the new GitcoinDAO, the token-governed entity intended to control the platform, and 35% went to the original company, Gitcoin Holdings, for distribution to founders, employees, and investors. The governance for GitcoinDAO was forked from the DeFi protocol Compound, centered on a “liquid democracy” model of delegating voting power to self-nominating “stewards.” All of this was relatively new and little-tested, so there were many uncertainties in the process. + +### Results + +The GTC governance token is traded on major crypto exchange platforms, and within a few days of launch it had reached a market capitalization of over $200 million—meaning over $30 million in value for the platform’s early contributors. Gitcoin continues to progress toward developing day-to-day management and governance through GitcoinDAO and further decentralizing, moving from being a single platform towards a more widely-usable protocol. + +### Sources + +- E2C conversation with founding team +- [Introducing gtcETH: A New Way to Fund Public Goods through Staked ETH – Gitcoin blog](https://www.gitcoin.co/blog/introducing-gtceth-a-new-way-to-fund-public-goods-through-staked-eth) +- [“Passing the Torch” blog post by Kevin Owocki](https://gov.gitcoin.co/t/passing-the-torch/10971/1) +- [Gitcoin on Crunchbase](https://www.crunchbase.com/organization/gitcoin) \ No newline at end of file diff --git a/content/case-studies/groupmuse.md b/content/case-studies/groupmuse.md new file mode 100644 index 0000000..25faae6 --- /dev/null +++ b/content/case-studies/groupmuse.md @@ -0,0 +1,50 @@ +--- +title: Groupmuse +date: '2023-12-22' +draft: false +description: "Groupmuse is a platform for live music run that survived the pandemic in 2020 by expanding to online shows, becoming a worker-owned co-op, and then adding a second class designed by an advisory council of musicians." +status: success +tags: +- co-op +- multi-stakeholder +- music +- software +- success +- worker-owned +url_external: https://groupmuse.com/ +image: /img/logos/groupmuse.png +--- + +### Summary + +Groupmuse is a multi-stakeholder cooperative platform for hosting live music performances. Since they began operations in 2013, the founding team intended to build a successful community-led platform and transition from a founder-owned startup to some kind of co-op. Starting in 2020, Groupmuse survived the pandemic by expanding to online performances, and by facilitating two ownership conversions: first, becoming a worker-owned co-op with help from LIFT Economy, and then adding a musician-owner class designed by an advisory council of musicians. + +### Motivation and Readiness + +Since 2013, Groupmuse has facilitated small, in-person traditional music concerts by connecting musicians, hosts, and audiences. In 2016, *WIRED* [described](https://www.wired.com/2016/10/groupmuse-classical-music-concerts/) Groupmuse as “Uber, But for Millennials Who Want Orchestras in Their Living Rooms.” + +Ensuring fair working conditions and extending control to musician gig workers was always at the heart of Groupmuse’s mission. Similarly, collective stewardship of the platform to serve its community was built into operations from the start; as co-founder and Chief Technology Officer Kyle Schmolze noted, thousands of musicians use Groupmuse to host events locally, so decentralized decision-making, particularly by city, proved early on as an effective and efficient way to ensure the product is working. Groupmuse’s motivation for pursuing shared ownership was to codify and advance these goals and strategies. + +During the COVID-19 pandemic, Groupmuse expanded to include virtual concerts as well as other genres of music. This pivot provided an opportunity for transition to cooperative ownership; now that the founding team had a functioning product and proven business model, they could finally take on the work necessary to evaluate and adopt the right cooperative model. + +### Process and Tensions + +Groupmuse was founded in 2013 as a C-Corp, and reincorporated in 2019 as a mission-based Public Benefit Corporation with the long-term goal of incorporating shared ownership and democratic management practices. In 2021, Groupmuse began two conversion processes: becoming a worker co-op, and then adding a musician class of owners. + +First, with help from the consultancy LIFT Economy, Groupmuse [updated its bylaws](https://medium.groupmuse.com/a-new-path-for-groupmuse-a50215a310c8) to function as a worker cooperative. Schmolze notes that this process was relatively straightforward. Worker-owner membership in Groupmuse is open to any employee who works for a minimum of six months and 15 hours per week, with the consent of existing membership. Membership includes a seat on the Board, the right to decide one’s hours and salary, patronage dividends and profit-sharing, to appoint members of Groupmuse’s steering committee, and to serve on committees and weigh in on key business decisions including mission, budget, and hiring. Decisions are made using an advice and consent model, following decision-making structures outlined across membership and committees per the bylaws. + +Second, in 2020, the COVID-19 pandemic created a major gap between work and compensation, and a major tension. According to Schmolze, “the pandemic hit and we had a lot of very important work to do, but we had lost all of our revenue sources. It wasn't long before Groupmuse was relying on a lot of volunteer and unpaid labor from our workers and musicians.” So, Groupmuse invited musicians to design a new ownership class. Eight musicians formed the Founding Musician Council and later became the first musician-owners. After a nine-month process, this completed their work and in 2022, Groupmuse began [offering ownership shares](https://medium.groupmuse.com/become-a-musician-owner-at-groupmuse-34f7cf60d430) to musicians who use the platform; make a membership contribution of either a $50 one-time membership fee, a contribution of $50 from their earnings, or two hours of administrative or other event-related work; and are approved by the Musician Council. Musician-owners are also required to complete a number of administrative hours of work each year. Members receive ownership shares, which access to Groupmuse services and activities, as well as profit-sharing. + +### Results + +Overall, Groupmuse survived the difficulties of running a platform for live music during a pandemic, and compensating workers and volunteers fairly and respectfully for their labor. According to Schmolze, “Our conversion saved the company. All those people probably would not have continued working unpaid if they were not given some ownership commensurate with their commitment and devotion.” + +As of December 2023, Groupmuse has 10 worker-owners and over 40 musician-owners. Cooperative ownership among workers and musicians helps to support fair wages and fair distribution of labor, and to keep the platform accountable to its community. A key advantage of democratic management, according to Kyle Schmolze, is the goodwill and trust among those who use the platform; for instance, the decision to ensure that musicians and non-members control programming at their events leads to immediate, tangible improvements on working conditions, and demonstrates Groupmuse’s commitments. Profit-sharing is not a core incentive, given low margins, but the musician-owner agreement nevertheless includes profit-sharing. + +Groupmuse continues to develop its musician-ownership program and evolve its overall model by adding members from its community of musicians, and by experimenting with systems and tools for effective and accountable decision-making, particularly as the cooperative grows. + +### Sources + +- E2C conversation with Groupmuse founding team +- [Uber, But for Millennials Who Want Orchestras in Their Living Rooms – WIRED](https://www.wired.com/2016/10/groupmuse-classical-music-concerts/) +- [Groupmuse aims for structural change with switch to musician-owned business model – The Boston Globe](https://www.bostonglobe.com/2021/04/01/arts/groupmuse-aims-structural-change-with-switch-musician-owned-business-model/) \ No newline at end of file diff --git a/content/case-studies/hackernoon.md b/content/case-studies/hackernoon.md new file mode 100644 index 0000000..7775afe --- /dev/null +++ b/content/case-studies/hackernoon.md @@ -0,0 +1,37 @@ +--- +title: HackerNoon +date: '2023-12-22' +draft: false +description: "HackerNoon is a tech publication that ran a $1.2m equity crowdfunding campaign in 2019 to leave Medium and build a platform of their own." +status: success +tags: +- crowd-equity +- software +- success +url_external: https://hackernoon.com/ +image: /img/logos/hackernoon.jpg +--- + +### Summary + +HackerNoon is a tech-focused publication that relies on a community of volunteer contributors. It began on Medium.com, where it achieved significant success, but that platform’s policies changed in ways that harmed HackerNoon’s business. In 2019, the founders (a family living in rural Colorado) used an equity crowdfunding campaign to raise approximately $1 million in order to gain more control and build a publishing platform of their own. + +### Motivation and Readiness + +HackerNoon (AMI Publications) started in 2016 as a publication on [Medium.com](http://medium.com/), focused on in-the-weeds blog posts on technology and software development. Medium’s features enabled it to be an open publication where authors could easily write on Medium and submit to HackerNoon. It quickly grew to be one of the largest publications on the platform, with dozens of articles per day and thousands of writers. But by mid-2018, Medium had changed its strategy and began to turn away from offering services to publications like HackerNoon. Messages they were getting from the platform convinced HackerNoon’s founders, David Smooke and Linh Dao Smooke, that they needed to move elsewhere. Medium offered to buy the company, and venture capital investors expressed interest in investing. The founders rejected these offers, wanting to retain control over the company and keep it accountable to its community of writers and readers. + +### Process and Tensions + +To finance the development of its own publication platform, HackerNoon initiated an equity crowdfunding round using the platform StartEngine (whose founder was a HackerNoon community member). Equity crowdfunding is a strategy, which had only recently become legal in the US, that enables companies to raise money by selling stock to large numbers of small, non-accredited investors. Doing this enabled HackerNoon to leverage its already large community of writers and readers to solve a business problem it faced – without giving up substantial control to investors in a standard venture round. + +### Results + +The campaign raised the legal maximum of $1.07 million from 1,200 supporters – about 15% of the company according to a $7.5 million valuation. In 2020, the company received a $1.5 million investment from Coil (whose Web Monetization software became part of HackerNoon’s platform) on a $11.5 million pre-money valuation. HackerNoon has since continued to grow, reaching over two dozen employees and earning over $1 million in revenue in 2021. + +### Sources + +- E2C conversation with founding team +- [Exit to Community: Two Startup Journeys to User-Ownership – Boulder Startup Week](https://www.colorado.edu/lab/medlab/2021/04/30/exit-community-two-startup-journeys-user-ownership) +- [Hacker Noon from a Community Perspective with Linh Dao Smooke – HackerNoon.com](https://hackernoon.com/hacker-noon-from-a-community-perspective-with-linh-dao-smooke-qo963skk) +- [State of the Noonian – HackerNoon.com](https://help.hackernoon.com/state-of-the-noonion) +- [Get a Piece of the Hacker Noon: The Premier Independent Tech Publication – StartEngine](https://www.startengine.com/hackernoon) \ No newline at end of file diff --git a/content/case-studies/josephine.md b/content/case-studies/josephine.md new file mode 100644 index 0000000..9c98030 --- /dev/null +++ b/content/case-studies/josephine.md @@ -0,0 +1,37 @@ +--- +title: Josephine +date: '2023-12-22' +draft: false +description: "Josephine was a home-cooked meal startup that tried granting 20% ownership to chefs but after facing market and regulatory challenges, converted in 2018 to a food policy advocacy nonprofit." +status: ambiguous +tags: +- ambiguous +- multi-stakeholder +- nonprofit +- services +url_external: https://www.crunchbase.com/organization/josephine +image: /img/logos/josephine.png +--- + +### Summary + +Josephine was a platform for ordering home-cooked meals that operated between 2014 and 2018 with major customer bases in the Bay Area, Portland, and Seattle. The platform’s co-founder Matt Jorgensen intended to allocate 20% of company ownership to cooks – mostly women of color – and to have cook representation on the board of directors. The company’s business operations were [interrupted](https://www.berkeleyside.org/2016/05/11/food-startup-josephine-pauses-east-bay-operations) by regulatory challenges around food safety rules and, despite successful advocacy efforts to change California food laws, Josephine shut down in 2018. The founders [reported](https://www.berkeleyside.org/2018/02/02/josephine-announces-it-will-close) that they had a hard time raising money and that the “policy timeline doesn’t match up with venture capital timelines.” However, the effort pivoted into a new nonprofit called the [COOK Alliance](https://www.cookalliance.org/), which continues to advance home-cooked food legislation and support culinary entrepreneurs. + +### Motivation and Readiness + +In 2015, Matt Jorgensen and Charley Wang co-founded a startup named Josephine to connect cooks and eager eaters for home-cooked meals. Beginning in the Bay Area, they raised $4m, hired 15+ team members, recruited several thousand cooks in three states, and built a base of 50,000 customers. The co-founders recognized just how much work the cooks put into making their platform a success. And, in 2016, the co-founders and the rest of their team began exploring ways to better reward the chefs. They considered worker representation on their board, an equity stake for chefs, and other ways to include everyone who made Josephine a success as a democratically-run platform. + +### Process and Tensions + +The goal was to give 20% of company ownership to the cooks, and to ensure cooks were represented on the board. However, enacting this was a slow process, and combined with regulatory challenges, it ended up straining the relationship between Josephine's founders and investors (who wanted to see the startup growing faster). User growth was on track for 15-20% per year, but at least one investor expected 15-20% *per month*. Directly engaging cooks in governance and investing heavily in policy change work to legitimize home-cooked meal sales simply necessitated a slower pace. Ultimately, these two factors – mis-matched expectations with investors, and the regulatory issues complicating operations – made it difficult for the Josephine team to find sustainable ways to build a community-owned, for-profit platform. Towards the end, 90% of their budget was spent on policy work; therefore, the team decided to pivot into a nonprofit model. + +### Results + +Although Josephine was not able to pursue an exit to community in its original form, the team found a different kind of success by pivoting into a community-driven nonprofit. In 2018, Matt and Charley shut down Josephine.com. When they ended the platform, they gave the cooks complete access to all of their data, as well as support in continuing to sell food independently. Matt and Charley also recruited a transition team to pursue their true purpose as nonprofit. [The COOK Alliance](https://www.cookalliance.org/). Having already succeeded in passing legislation to legalize home-cooked food sales in several US states, The COOK Alliance is now focused on helping cooks build businesses and cultivate community. + +### Sources + +- E2C conversation with founding team +- [Josephine is Winding Down – Josephine blog](https://web.archive.org/web/20180201234521/https://blog.josephine.com/josephine-is-winding-down-d1a4feb5837e) +- [Home cooking helped a Berkeley woman pay her rent, then two inspectors paid her a visit – SF Chronicle](https://www.sfchronicle.com/bayarea/otisrtaylorjr/article/Home-cooking-helped-a-Berkeley-woman-pay-her-13279583.php) +- [COOK Alliance website](https://www.cookalliance.org/) \ No newline at end of file diff --git a/content/case-studies/juno.md b/content/case-studies/juno.md new file mode 100644 index 0000000..442f76b --- /dev/null +++ b/content/case-studies/juno.md @@ -0,0 +1,39 @@ +--- +title: Juno +date: '2023-12-22' +draft: false +description: "Juno was an NYC-based ride-hail app that promised drivers equity based on trips completed, but got acquired in 2017 and eventually shut down and ended the stock program." +status: failure +tags: +- failure +- multi-stakeholder +- services +- software +url_external: https://en.wikipedia.org/wiki/Juno_(company) +image: /img/logos/juno.png +--- + +### Summary + +Juno was a ride-hailing app in New York City that marketed itself to drivers and consumers as a more worker-centered alternative to Uber and Lyft. Juno had a number of driver-friendly features: it included a tip option, took lower commissions than competitors, and [promised](https://mashable.com/article/juno-sale-gett-drivers-response) drivers equity based on how much they drove for the platform. In 2017, about a year after launching, Juno’s founder and CEO sold the company to Gett, another ride-hailing technology platform, and ended the driver stock program. Mashable [reported](https://mashable.com/article/juno-gett-end-ride-sharing-app-lyft) that “drivers received less than $0.03 per restricted stock unit.” In 2019, Gett was acquired by Lyft, and Juno was shut down. + +### Motivation and Readiness + +Juno launched its black car ride-hailing app in New York City in 2016 as a competitor to the existing ride-hailing apps Uber and Lyft, as well as to New York City taxis. Around that time, in New York City and nationally, conditions for gig workers on new gig work apps – particularly Uber – had become the subject of worker organizing, lawsuits, new local and state regulation efforts, and public scrutiny. Juno sought to differentiate itself to both riders and drivers through its treatment of drivers, particularly related to earnings and ownership. + +### Process and Tensions + +Juno built its driver recruitment strategy around several key policies: a flat, transparent 10% commission (compared to the dynamic, opaque, and higher fees of Uber and Lyft) guaranteed for 2 years; improving driver support services and other app features that drivers identified as affecting working conditions; the ability for drivers to choose to work as independent contractors or employees; and reserving equity shares in the company for drivers. Juno’s driver stock program, as announced in 2016, would have offered 25 million restricted stock units to drivers per quarter so that within 10 years, 50% of the company would be owned by drivers (with the other 50% owned by the founders and investors). Any driver was eligible to earn equity in the company by meeting minimum work requirements (a minimum of 120 hours of active trip time per month for at least 24 months out of 30 months). Juno recruited drivers who had been working with Uber and Lyft, drawing them to the platform by focusing on these incentives. + +By late 2016, Juno had reportedly recruited 30% of Uber’s drivers in New York City. (It is common for drivers to use multiple ride hailing apps, so this does not necessarily mean they stopped working for Uber altogether.) As of 2019, it was responsible for 3% of trips in the city. Juno’s rider-consumer marketing strategy included messaging about the platform’s better working conditions—however, it also relied on unsustainable fare subsidies and other discount programs, similar to Uber and Lyft. Even as Juno successfully increased driver sign-ups, it struggled to gain market share with consumers, making it an undependable source of work for drivers relative to other apps. + +### Results + +In 2017, Juno’s founder and CEO sold the company to Gett for $200 million. The driver stock program was terminated in tandem with the sale, less than a year later after the first shares were offered to drivers. Drivers were told that the restricted stock units earned to date would be converted into a cash payout program, reportedly amounting to $100-$200 per driver. Drivers filed a class action lawsuit against Juno and Gett seeking compensation on the basis of false advertising and breach of contract, among other claims (including alleged securities fraud). Juno continued operating under the ownership of Gett until November 2019, when Gett was acquired by Lyft and Juno was shut down. + +### Sources + +- [Juno Takes on Uber – The New Yorker](https://www.newyorker.com/magazine/2016/10/10/juno-takes-on-uber) +- [What Did We Learn From Gett’s Acquisition of Juno Rideshare? – The Rideshare Guy](https://therideshareguy.com/what-did-we-learn-from-getts-acquisition-of-juno/) +- [A “driver-friendly” Uber competitor is nickel-and-diming its drivers after its $200 million acquisition – Quarz](https://qz.com/969601/juno-ubers-driver-friendly-competitor-sold-to-gett-for-200-million-but-left-little-for-its-drivers/) +- [Class-action lawsuit filed against Juno by former drivers – ClassAction.org](https://www.classaction.org/media/razzak-et-al-v-juno-usa.pdf) \ No newline at end of file diff --git a/content/case-studies/namaste.md b/content/case-studies/namaste.md new file mode 100644 index 0000000..c726a86 --- /dev/null +++ b/content/case-studies/namaste.md @@ -0,0 +1,39 @@ +--- +title: Namaste Solar +date: '2023-12-22' +draft: false +description: "Namaste Solar is a solar installer in Colorado founded by a team that embraced new leadership in 2011 and converted to a worker co-op with $40m in annual revenue as of 2023." +status: success +tags: +- co-op +- success +- utilities +- worker-owned +url_external: https://namastesolar.com +image: /img/logos/namaste.png +--- + +### Summary + +Namaste Solar is a commercial and residential solar-equipment installer based in Boulder and Denver, Colorado. In 2011, after five years in operation, its founders reoriented their relationship to the business and helped convert it to a worker-owned cooperative, which seeded the development of several additional cooperatives in the industry. + +### Motivation and Readiness + +Namaste Solar was founded in 2005 in Boulder, Colorado. It provides installation and maintenance services for solar-energy equipment in residential and commercial contexts. The company began with three co-founders, who invited the employees they hired to make capital contributions and become co-owners as well. There was thus always a strong commitment to sharing ownership among employees, and the vast majority of employees became co-owners, growing to over 50 within the first four years. The company involved employees in governance decisions, using open-book management and a one-person, one-vote decision-making system. For a time, all employees even earned the same salaries with the tenure-based raises. + +However, the company’s practices gradually came into conflict with its legal structure as a C-corporation owned by its employees with widely varying amounts of shares. The company’s governance culture stood in tension with the realities of its unequal ownership. So, Namaste Solar explored various options for its future, including receiving acquisition offers from other companies. But as the employees began learning about cooperative business structures and the cooperativism movement, they realized it was a better fit for the company’s values than the C-corporation structure that they had been using previously, and they decided to convert to a worker-owned cooperative. + +### Process and Tensions + +Namaste Solar’s employee-owners began learning about worker cooperatives in 2009, and they formed a year-long committee to study the options available for their own transition to a cooperative model. In late 2010, the 52 employee-owners voted to approve the conversion, which took effect in early 2011. The process enabled the founders and early employees to receive non-voting preferred stock to reward their early efforts. Since then, workers have been able to become co-op members with a $5,000 investment. That year, Namaste Solar also became a certified B-Corporation. The Obama administration spotlighted the company as a symbol of a “green” economic recovery after the 2008 financial crisis. The cooperative has since grown to over 225 team members with annual revenues in excess of $40M. + +However, their cooperative conversion has not been without caveats. Throughout its existence, Namaste Solar has benefitted from having supporters with considerable personal capital which they could contribute to the effort. As a construction company that’s based in a relatively homogenous state, the co-op’s membership is mostly male and homogenous. Furthermore, due to the cost of membership, many employees choose not to become co-op members. + +### Results + +In addition to member investments, Namaste Solar has raised external capital several times throughout its history that totals almost $5 million. These raises were organized in ways that did not dilute member control. Meanwhile, the company sought to expand beyond Colorado to achieve greater economies of scale in its operations. This effort, however, proved unsuccessful for multiple reasons that included financial, leadership, and rapid growth challenges. Instead, the company addressed the question of scale by turning in new ways to the cooperative model. It aided in the formation of [Amicus Solar Cooperative](https://www.amicussolar.com/), a purchasing co-op whose members are other regional solar installation companies, and [Amicus O&M Cooperative](https://www.amicusom.com/), a shared-services co-op whose members are companies that provide operations and maintenance (“O&M”) services. (Some other member-companies in these cooperatives have since followed Namaste Solar in converting to employee ownership such as [Technicians for Sustainability](https://www.tfssolar.com/), [ReVision Energy](https://www.revisionenergy.com/), [California Solar Electric Company](https://www.cal-solar.coop/), and [Sun Light & Power](https://www.sunlightandpower.com/).) To provide financing for consumer solar installations and other clean energy projects, [Clean Energy Credit Union](https://www.cleanenergycu.org/) was formed, owned by its depositors. [Kachuwa Investment Cooperative](https://www.kachuwaimpactfund.com/) was created to provide support in the form of real estate and mission-aligned capital for Amicus member-companies and other cooperatives, employee-owned companies, and certified B-Corps. In this way, Namaste Solar gave birth to a network of cooperatives, each with a distinct model designed to address a specific challenge. + +### Sources + +- E2C conversation with Namaste Solar founding team +- [Scaling Co-Operatives Through a Multi-Stakeholder Network: A Case Study in the Colorado Solar Energy Industry](https://doi.org/10.5947/jeod.2021.008) \ No newline at end of file diff --git a/content/case-studies/nio.md b/content/case-studies/nio.md new file mode 100644 index 0000000..f35a487 --- /dev/null +++ b/content/case-studies/nio.md @@ -0,0 +1,36 @@ +--- +title: NIO +date: '2023-12-22' +draft: false +description: "NIO is a Shanghai-based electric car company founded by William Li who in 2019 allocated one-third of shares to a trust that functions like a town hall while retaining most governance rights." +status: ambiguous +tags: +- ambiguous +- high-tech +- publicly-traded +- trust +url_external: https://nio.com +image: /img/logos/nio.jpg +--- + +### Summary + +NIO is a Shanghai-based electric car company. Sometimes referred to as “the Tesla of China,” they are popular in China, expanding across European markets, and have stated their intention to enter the US market by 2025. NIO’s founder William Li is often compared to Elon Musk, but NIO has proven to be more innovative than Tesla in a number of ways (for instance, their cars recharge faster than Teslas) and the company has a more user-focused governance approach. In 2019, Li assigned one-third of his shares to a trust on behalf of the company’s users. The trust will function like a town hall where consumers who own NIO cars “will have the opportunity to discuss and propose the use of economic benefits from the transferred shares,” according to [a company press release](https://ir.nio.com/news-events/news-releases/news-release-details/nio-inc-ceo-transferred-50-million-shares-newly). However, it appears that consumer input won’t directly shape and mandate company policy, as Li will legally retain full voting power over the transferred shares. It’s also unclear whether *all* NIO users, or only a select few, will be invited to these recurring company discussions. + +### Motivation and Readiness + +In a 2018 SEC filing prospectus, founder William Li wrote that NIO’s users’ passion for the product inspired him to include them in the company’s governance by establishing a trust. He cited the NIO’s original aspiration to “become a user enterprise,” and expressed enthusiasm towards the prospect of deepening their relationship with users by involving them in the company’s future: “I will let NIO users discuss and propose how to use the economic benefits from these shares… I also believe NIO users, shareholders, employees, and partners will all benefit from this arrangement in the long run.” Customer loyalty has [long been central to their business model](https://www.bnnbloomberg.ca/nio-is-winning-ev-drivers-hearts-as-competition-in-china-spikes-1.1811806), so positioning themselves as a company with meaningful user involvement in decision-making also helps NIO stand apart from other players in the rapidly-saturating EV market. + +### Approach and Tensions + +NIO’s approach involved establishing a trust that does not enable individual users to gain direct financial benefit from the company’s performance. Rather, membership in the trust allows them to guide how the company uses the resources that accrue to the trust, through participating in discussion and proposals. Thus, NIO’s approach centers on sharing governance with their community, but does not necessarily entitle them to share in the company’s financial upside. + +### Results + +In 2021, NIO’s listing on the Hong Kong Stock Exchange was delayed due to issues stemming from the structure of the user trust. In September 2021, they went public on the New York Stock Exchange, raising $2 billion, and were eventually able to list on the Hong Kong Stock Exchange in February 2022. However, their US stock performance has been rocky. In September of 2023, rumors circulated that NIO was holding discussions about a potential tie-up with Mercedes, although representatives from both companies denied this, and it is unclear how such a deal would impact their user-ownership trust. + +### Sources + +- [NIO SEC filings](https://sec.report/T/NIO) +- [William LI Transfers His 50 Million Ordinary Shares to NIO User Trust As Promised – Equal Ocean](https://equalocean.com/news/201901241347) +- [NIO is Winning EV Drivers’ Hearts as Competition in China Spikes – BNN Bloomberg](https://www.bnnbloomberg.ca/nio-is-winning-ev-drivers-hearts-as-competition-in-china-spikes-1.1811806) \ No newline at end of file diff --git a/content/case-studies/python.md b/content/case-studies/python.md new file mode 100644 index 0000000..0f9a1b6 --- /dev/null +++ b/content/case-studies/python.md @@ -0,0 +1,35 @@ +--- +title: Python +date: '2023-12-22' +draft: false +description: "Python is a popular computer programming language that evolved in 2018 from a 'benevolent dictator for life' to a foundation with five-member steering council that included its founder for a term, and currently runs smoothly." +status: success +tags: +- nonprofit +- software +- success +url_external: https://python.org/ +image: /img/logos/python.jpg +--- + +### Summary + +Python is one of the world’s most popular computer programming languages. Created in 1991 by Dutch programmer Guido van Rossum, Python is open source but governed by its developers; anyone can fork it, but only core developers are able to approve major updates to the original code. Initially a “benevolent dictator for life,” Rossum formalized processes like Python Enhancement Proposals (PEPs) until, following a particularly contentious PEP in 2018, Rossum [decided to resign](https://lwn.net/Articles/759654/). To bridge the governance gap, Python's core developers [voted](https://discuss.python.org/t/python-governance-vote-december-2018-results/546) on [a proposal](https://peps.python.org/pep-8016/) to implement a steering council with five seats. Rossum joined the steering council for its first [term](https://peps.python.org/pep-0013/#term), and Python has continued to operate smoothly through its new community governance. + +### Motivation and Readiness + +Python invites its community of contributors to submit proposals, known as Python Enhancement Proposals (PEPs), for major new features and design updates to improve its codebase and other topics such as governance. Rossum had helped implement PEPs and been nicknamed the “benevolent dictator for life” (BDFL). However, after [Rossum’s 2018 PEP 572](https://lwn.net/Articles/757713/) became unexpectedly divisive, he decided to step down. While this decision was not just due to recent conflicts – he’d been BDFL for nearly 30 years, and, as he [wrote](https://www.mail-archive.com/python-committers@python.org/msg05628.html) to one mailing list, was “not getting any younger” – it represented an opportunity for the community to bring a new form of governance to life. + +### Process and Tensions + +After Rossum communicated his intent to resign, the core developer community considered its options for new governance. Fortunately, they were able to build on existing capacities developed under Rossum’s leadership, including the PEP process, the existence of a core team with various documented rules the community followed and enforced, the existence of the [Python Software Foundation](https://python.org/) (PSF), and community familiarity with various voting methods including those for electing the PSF board of directors. However, there were no written bylaws; the BDFL was a one-man government, after all. At an in-person retreat, core developers came up with an approach for choosing a new governance model, and for choosing an electoral process for how to vote on that new model. They opted to have core developers submit governance proposals as PEPs, and used [the Condorect method](https://en.wikipedia.org/wiki/Condorcet_method#:~:text=A%20Condorcet%20method%20(English%3A%20%2F,there%20is%20such%20a%20candidate.) to put those PEPs in head-to-head competition with each other. In an election facilitated by the Python Software Foundation, the proposal for a steering council, PEP 8016, won. + +### Results + +After PEP 8016 succeeded, 69 out 96 eligible voters elected Python’s first steering council. They also decided to elect a new council following each Python feature release. Rossum won a seat on the steering council for its first term, which enabled a more gradual transition. Importantly, Python has continued to operate and perform effectively over this period. The Python community regularly releases new versions of Python, welcomes new members to the core team, and remains one of the most popular programming languages in the world. They also continue debating and accepting PEPs, with no conversations getting as heated as the ones around PEP 572 – perhaps due to the increased capacity of a five-person team to attend to conflict resolution. The Python community hopes to keep growing and diversifying, and to continue making a language that people love to use. + +### Sources + +- E2C conversation with Python researcher Shauna Gordon-McKeon +- [PEP 8016 – The Steering Council Model](https://peps.python.org/pep-8016/) +- [“A New Era in Python Governance” (Talk) - Shauna Gordon-McKeon, PyCon 2019](https://www.youtube.com/watch?v=mAC83JVDzL8&ab_channel=PyCon2019) \ No newline at end of file diff --git a/content/case-studies/signalise.md b/content/case-studies/signalise.md new file mode 100644 index 0000000..d8116c4 --- /dev/null +++ b/content/case-studies/signalise.md @@ -0,0 +1,41 @@ +--- +title: Signalise Co-Op +date: '2023-12-22' +draft: false +description: "Signalise is a Sign Language platform based in the UK that raised funding in 2021 for development by selling 10% equity to investor-members." +status: success +tags: +- co-op +- crowd-equity +- multi-stakeholder +- services +- success +url_external: https://signalise.coop/ +image: /img/logos/signalise.jpg +--- + +### Summary + +Signalise is cooperative for booking Sign Language interpreting services on-demand. The cooperative is run by its workers and users, Deaf people and British Sign Language (BSL) interpreters, to serve the needs of the Deaf community and communication professionals. Signalise’s ultimate goal is to support Deaf people’s independence, help them know their rights, and facilitate better access to interpreting services, including in a healthcare context, enabling individuals to advocate for themselves. In 2021, Signalise raised funding with help from [The Community Shares Company](https://communityshares.co.uk/), selling 10% of the co-op to 194 investors. + +### Motivation and Readiness + +Signalise has been a multi-stakeholder cooperative from the time of its founding in October 2019, with its workers *and* users – Deaf people and communications professionals – constituting its ownership. Historically, most interpreting services in the UK healthcare system have been run by private companies with centralized ownership, national providers, or Deaf charities – not administered by Deaf people or interpreters themselves, and thus have been more likely to prioritize profit over these groups’ actual needs. Community ownership has been central to Signalise’s mission from the outset: under their “platform cooperative” model, it’s the folks most intimately connected to the services that they provide who own and govern the platform. + +### Process and Tensions + +Signalise’s bylaws outline the need for regular meetings and member engagement, offering opportunities to give feedback, shape the service, and be involved in the continued evolution of the platform’s roadmap. In 2021, Signalise needed money to complete the development of their web platform and video interpreting services, as well as ensuring they could employ more staff and continue to grow. To raise funding from the wider community, they held a Community Share Offer in April 2021 with help from [The Community Shares Company](https://communityshares.co.uk/), In an effort to make it accessible, the minimum investment was set at £50. Investors were granted voting rights in the co-op’s operation, but their votes are weighted less heavily than workers and users, to ensure that control stays with the people for whom the platform matters the most. 194 people invested in the Community Share Offer, and their cumulative ownership stake is weighted at 10%. + +One trade-off that became apparent in the process of growing a community-owned business is the fact that it demands more engagement on the workers’ and users’ part. For users, that means taking the time to understand the business and the part that users play in receiving services. Likewise, it asks workers to understand the business, be more actively involved, and commit to delivering a high standard of service. However, the payoff of this involvement is immense, as it stages the exciting opportunity to co-create a platform that works for all, to find solutions that come directly from the community, and to ensure that the business survives and thrives in an incredibly competitive market. + +### Results + +As of late 2023, Signalise’s co-op membership included approximately 100 users (Deaf people), 100 workers (communication professionals), and an additional 193 investor-members following the Community Share Offer. Both workers and users report that the platform has made their lives easier. Users are able to use the video interpreting service to call their GPs, rather than having to rely on family and friends for interpreting or to physically show up at a doctor’s office and write notes to reception staff in order to book appointments. Interpreters are actively involved in the platform’s governance, and demonstrate a positive outlook around being able to have more ownership over their work, shaping the service, and working more closely with the Deaf community. Perhaps most importantly, there is more connectivity and understanding between Deaf people and interpreters. Looking towards the future, Signalise is investing heavily in their tech to support growth and co-op membership. As of 2023, they are reviewing their strategy with all stakeholder groups, and have major ambitions to test the model in other areas and scale the business. + +### Sources + +- E2C conversation with Signalise founding team +- [Signalise - Docs & Bylaws](https://organisation.signalise.coop/) +- [Signalise Co-Op | YouTube Channel](https://www.youtube.com/channel/UCRmSxpmve_t8HN8_Fv5OQBw) +- [Why do we need a #platformcoop to deliver interpreting services for Deaf people?](https://medium.com/signalisecoop/signco-io-why-do-we-need-a-platformcoop-to-deliver-interpreting-services-for-deaf-people-8360e4250068) +- [Why I got involved in Signalise Co-Op](https://medium.com/signalisecoop/geraldine-ohalloran-why-i-got-involved-in-signalise-co-op-2b2f1882f913) (a Deaf board member’s perspective) \ No newline at end of file diff --git a/content/case-studies/songadao.md b/content/case-studies/songadao.md new file mode 100644 index 0000000..346b8df --- /dev/null +++ b/content/case-studies/songadao.md @@ -0,0 +1,36 @@ +--- +title: SongADAO +date: '2023-12-22' +draft: false +description: "SongADAO emerged when Jonathan Mann formed a Limited Co-op Association and DAO in order to protect his daily songwriting practice with 100% community ownership and governance." +status: success +tags: +- crypto +- music +- success +url_external: https://songaday.world/ +image: /img/logos/songadao.png +--- + +### Summary + +Singer-songwriter Jonathan Mann has written and released a new track every single day since January 1st, 2009. The ongoing project, known as Song a Day, has earned him a Guinness World Record for the most consecutive days of songs recorded. However, this project is much more than one person’s ambitious creative endeavor; it wouldn’t be sustainable without [the financial support](https://www.ampled.com/artist/jonathanmann/) of Mann’s loyal fanbase. That’s why Mann exited to his community of listeners by launching SongADAO, a registered Limited Cooperative Association. He has minted an NFT for every Song a Day release, and to become a member of the DAO, you must own at least one of these NFTs (as of writing, over 4,000 are currently available to purchase [on OpenSea](https://opensea.io/collection/song-a-day)). SongADAO’s members democratically own and govern “100% of the rights to – and revenue from – all Song A Day songs,” according to [Mann’s website](https://songaday.world/songadao/). It demonstrates how artists [can break the fourth wall](https://www.metalabel.xyz/magazine/features/evolution-of-the-solopreneur) and expand their creative practice from individual to collective ownership. + +### Motivation and Readiness + +Mann had developed an early interest in NFTs after coming across the CryptoPunks project in 2017, which sparked his curiosity around using blockchain technology to monetize and distribute music in new ways. After many years of creating a song a day, Jonathan felt limited by how his fans and audience could interact with his songs. As NFTs became more widespread, this developed into a new idea: What if people could collect Jonathan’s songs? What if a participatory community could be built around the project? + +### Process and Tensions + +SongADAO is taking the decentralized, internet-native DAO formation and pairing it with a formal cooperative. In fact, SongADAO is officially a Colorado Limited Cooperative Association (LCA), which members can join by owning one Song A Day NFT. The group avoids some of the associated web3 challenges for sybil resistance by requiring members to confirm their identity through a service called Bright ID. The governance structure follows a one-person-one-vote format, because it’s more democratic than token-weighted voting (which is characteristic of most DAOs). That’s why membership of the DAO/cooperative is represented as an NFT rather than through a fungible ERC-20 token. There are also creative ways to earn membership, like participating in [challenges to create art every day for a month.](https://twitter.com/songadaymann/status/1519372158375452672?s=20&t=00vGxIpXzhKAEMJ8gI6FOw) + +### Results + +The unique model of selling an NFT of a song every day has been incredibly successful for a musician like Jonathan, as over 1,600 people now own a Song A Day NFT. According to the SongADAO website, the organization hopes to inspire other creators to replicate their model and new business models in music more broadly. + +### Sources + +- [Song a Day website](https://songaday.world/) +- [Song A Day YouTube Channel](https://www.youtube.com/channel/UCvj5S3f10rO6CoibatfRGzg) +- [How to Make a Song Every Day and Turn it in to a DAO Cooperative: Interview with Jonathan Mann – The Blockchain Socialist](https://open.spotify.com/episode/53gFEEJShruRKc6L7wxnW5?si=GIg34dM6TdGwa4Nlj6EjMQ) +- [Evolution of the Solopreneur – Metalabel](https://www.metalabel.xyz/magazine/features/evolution-of-the-solopreneur) \ No newline at end of file diff --git a/content/case-studies/the-appeal.md b/content/case-studies/the-appeal.md new file mode 100644 index 0000000..0bf6669 --- /dev/null +++ b/content/case-studies/the-appeal.md @@ -0,0 +1,37 @@ +--- +title: The Appeal +date: '2023-12-22' +draft: false +description: "The Appeal is a worker-led nonprofit newsroom focused on criminal justice with staff that unionized, got shuttered by former leadership, and reorganized with a donation campaign to form a new, independent nonprofit." +status: success +tags: +- journalism +- nonprofit +- success +url_external: https://theappeal.org/ +image: /img/logos/the-appeal.jpg +--- + +### Summary + +The Appeal is a worker-led nonprofit newsroom that publishes investigative journalism on the impact of policing, jails, and prisons on communities across the United States. The website launched in 2018 as the editorial arm of The Justice Collaborative, a project fiscally sponsored by the Tides Foundation. In June 2021, shortly after its staff unionized (layoffs began five minutes after the Appeal [went public with its union](https://www.niemanlab.org/2021/05/staffers-at-the-appeal-announced-they-had-formed-a-union-five-minutes-later-management-announced-layoffs/)), Tides and The Appeal’s former management shuttered the organization. However, within a few months, the resilient and tight-knit editorial team leveraged skills built through their union campaign to run a donation drive and successfully relaunch the publication as a new organization and fully worker-led initiative. Their new nonprofit enabled them to move key brand and web assets to new ownership and continue their reporting. + +### Motivation and Readiness + +In 2020, management of The Justice Collaborative, a legal advocacy organization, closed the organization without a clear explanation. The Appeal, a direct offshoot of the Justice Collaborative, continued operating, but the abrupt changes brought longstanding issues to the surface. The staff’s motivation to unionize centered around a lack of transparency from management and Tides, constantly changing editorial directives, and the mistreatment of women, people of color, and especially women of color in the workplace. However, a few weeks after the union victory, [Tides shuttered The Appeal](https://defector.com/the-reckoning-at-the-appeal-was-a-long-time-coming/) in June 2021. Concerned about whether The Appeal’s website would remain live and the void in criminal justice reporting left in its absence, the Appeal team sought to carry on the publication’s mission. But having learned through direct experience that operating under their previous fiscal sponsor was an unpredictable and unaccountable business model, the staff realized they needed to be their own publishers to secure a future for The Appeal. “We really were the organization, the ones doing the work,” says Strategy & Legal Director Molly Greene, which further motivated The Appeal staff to find a new way forward. + +### Process and Tensions + +Ironically, the Tides Foundation’s retaliation against The Appeal unionizing helped inspire and equip staff in forming a worker-led nonprofit newsroom. “We were used to working as a cohesive unit, and had very clear lines of communication,” says Greene, “so when it came time to build a new life for The Appeal, we were able to sustain momentum and our strong internal dynamic”. Staff elected leadership, coordinated a fundraising campaign with support from nonprofit media outlet Scalawag Magazine, and began developing new governance. They chose a nonprofit model partly so they could transition ownership of key brand assets and web and social media properties without fees to a for-profit entity, and partly because a nonprofit allows them to ensure that their publication remains free and accessible to all. + +### Results + +After less than a year on their own, The Appeal has several organizational and operational accomplishments worth highlighting. The staff engaged a large number of peers in research and development on their own decision-making model, ultimately named [OATS](https://rjionline.org/news/how-to-bring-democracy-into-your-newsroom/) (oversees, accountable, team input, and signoff), which Greene says ensure the staff are “including everyone while still moving forward at a pace at which we’re comfortable.” They also addressed negative dynamics common with nonprofit board-worker arrangements by forming a board of advisors. They have since shared resources on [how to launch a nonprofit newsroom](https://docs.google.com/document/d/12wuJGzVD7ophMu1rQLORCOURb8jJOI8XQbl-my3h57M/edit) and [how their governance process works](https://docs.google.com/document/d/1phaMlP4UH8ufg8u3sUu6n651mAcmQQNMnTvcrjcIqAc/edit). The Appeal has been and will continue to be “very intentional about our board of directors – including criminal justice advocates, formerly incarcerated advocates, individuals holding down the worker-led side of what we do, people from outside of criminal justice who are really good storytellers, and one of our own team members.” Future efforts may include deeper engagement with readers such as lawyers and advocates who need reporting from The Appeal for their daily work. + +### Sources + +- E2C conversation with founding team +- [Important Updates from The Appeal – TheAppeal.org](https://theappeal.org/important-updates-from-the-appeal/) +- [The Reckoning at The Appeal Was A Long Time Coming – Defector](https://defector.com/the-reckoning-at-the-appeal-was-a-long-time-coming/) +- [The Appeal is Back! – Defector](https://theappeal.org/the-appeal-is-back/) +- [We Created a Democratic Worker-Led Care-Centered Newsroom – RJ Online](https://rjionline.org/news/weve-created-a-democratic-worker-led-care-centered-newsroom/) \ No newline at end of file diff --git a/content/case-studies/the-brick-house.md b/content/case-studies/the-brick-house.md new file mode 100644 index 0000000..73bbe99 --- /dev/null +++ b/content/case-studies/the-brick-house.md @@ -0,0 +1,40 @@ +--- +title: The Brick House Cooperative +date: '2023-12-22' +draft: false +description: "The Brick House Cooperative is a group of nine publications that protected itself against private ownership by incorporating as an Ohio-based LLC with co-op bylaws and nine equal shares." +status: success +tags: +- co-op +- journalism +- success +- worker-owned +url_external: https://thebrick.house/ +image: /img/logos/the-brick-house.jpg +--- + +### Summary + +The Brick House Cooperative (BHC) is a group of nine online publications. Founded in October 2020, BHC designed its model to protect independent journalism against the risks of private ownership. BHC launched after fundraising through a Kickstarter campaign, incorporating as an Ohio-based LLC and operating as a co-op. Its nine publications – Olongo Africa, Preachy, FAQ NYC, Sludge Report, AWRY, Hmm Weekly, Tasteful Rude, No Man is an Island, and Popula – all pool revenue and expenses, and each own one share in the cooperative. Shares cannot be transferred or appreciate in value; they can only be sold back to the co-op. A yearly subscription of $75 gives readers access to all nine titles. + +### Motivation and Readiness + +Popula, The Sludge Report, Hmm Weekly and FAQ NYC were early grantees of Civil, a media venture that attempted to establish a network of journalist-controlled newsrooms using blockchain technology and backed by a cryptocurrency token called CVL. When the Civil experiment faltered, the founders of these four publications discussed their continued desire for a democratic, decentralized operating structure in line with Civil’s vision. Each was interested in a reader-supported, ad-free, sustainable business model that might benefit from shared security through affiliation with other newsrooms. They recruited five other potential cooperative members and raised $100,000 through a Kickstarter campaign and other donations. In 2020, BHC launched [its main website](https://thebrick.house/) and began publishing. + +### Process and Tensions + +BHC is incorporated as an LLC in Ohio and operates as a cooperative. Its founders considered becoming a 501(c)(3) organization, but decided against it, concerned that nonprofit status might limit the kinds of journalism their members wanted to create. BHC’s founders studied the Arizmendi Association, an umbrella co-op of nine worker-owned bakeries, as well as other businesses in the Bay Area that provide shared services, technical assistance, and financing. BHC’s founders also studied corporate histories to glean insight and guard against undesirable outcomes (including the 2004 case of a Craigslist employee selling their equity in the company to rival eBay, resulting in years of legal battles). Drawing on these lessons learned, BHC opted for a model where ownership shares are valued at $1, cannot appreciate in value, and cannot be sold except back to the co-op. Currently, BHC [divides revenue](https://www.businessinsider.com/brick-house-cooperative-divides-its-revenue-media-bundle-2021-1) among its publications based on where the reader subscribed, either through the BHC homepage or the member publication’s own homepage. + +### Results + +The co-op still houses all nine original member publications, and it plans to accept new publications in the future. In January 2022, BHC [received](https://thebrick.house/hurrah/) a $100,000 grant to complete its website and advance its work on libraries and digital ownership rights. The co-op members and cofounder Maria Bustillos have been sounding the alarm on corporate publishers seeking to make digital books merely “rentable” to libraries, like Netflix. As a proof of concept experiment, BHC [sold](https://www.thenation.com/article/culture/libraries-digital-publishing-ebooks/) a digital copy of its quarterly anthology to The Internet Archive's Open Library so that it can be lent out in perpetuity. In November of 2023, BHC launched a crowdfund to start a new project called Flaming Hydra, an ad-free daily newsletter by a cooperative of writers and artists who own and share in the publication equally. Their initial funding goal was met in under five days. + +### Sources + +- E2C conversation with founding team**** +- [The Brick House: Who We Are](https://thebrick.house/who-we-are/) +- [Introducing the Brick House: The wolf-proof media cooperative – CJR](https://www.cjr.org/first_person/introducing-the-brick-house-the-wolf-proof-media-cooperative.php) +- [A Media Pioneer Tries Again With a New Journalism Cooperative – NYTimes](https://www.nytimes.com/2020/08/25/business/media/brick-house-journalism-cooperative.html) +- [Maria Bustillos on Tokenizing Journalism, the Death of Civil and Rise of Brick House – Coindesk](https://www.coindesk.com/markets/2020/08/30/maria-bustillos-on-tokenizing-journalism-the-death-of-civil-and-rise-of-brick-house/) +- [How the 9-publication cooperative Brick House designed a revenue splitting system that could be a model for new media bundles – Business Insider](https://www.businessinsider.com/brick-house-cooperative-divides-its-revenue-media-bundle-2021-1) +- [Flaming Hydra website](https://flaminghydra.com/) \ No newline at end of file diff --git a/content/case-studies/the-well.md b/content/case-studies/the-well.md new file mode 100644 index 0000000..06af62f --- /dev/null +++ b/content/case-studies/the-well.md @@ -0,0 +1,37 @@ +--- +title: The WELL +date: '2023-12-22' +draft: false +description: "The WELL is an internet forum founded in 1985 that had many owners and faced many threats, but eventually protected its community in 2012 by selling to an entity formed by 11 long-time users." +status: success +tags: +- acquired +- services +- success +url_external: https://well.com/ +image: /img/logos/the-well.png +--- + +### Summary + +The WELL is an ad-free internet forum and social network founded in 1985, long before the likes of Reddit or 4Chan. *WIRED* [called it](https://www.wired.com/1997/05/ff-well/) “the world’s most influential online community,” and it shows how home-grown user culture can shape a platform as much as formal governance. Ownership passed many hands over the years, from the founder of Rockport footwear to *Salon*, until a group of 11 long-time users bought The WELL in 2012 as The Well Group, Inc. Their [press release](https://www.well.com/about-2/pr/well-group-acquisition-q/) announcing the acquisition, their goal is to maintain “the great garden of community and conversation that we have.” + +### Motivation and Readiness + +The WELL grew its membership through word-of-mouth, and as a result, most people using the platform already knew each other. In addition, it has always run on paid user subscriptions in place of ad revenue. These factors were consequential in the early days because if an investor began to make alterations to The WELL that disrespected the community’s values, the collective could conceivably withhold funds as a collective response (and, given the level of familiarity among users, mobilization to cancel payments would’ve happened pretty quickly). It was evident that their culture didn’t need bylaws in order to exert authority. And unlike other interest-specific online forums or niche social media platforms, The WELL’s interest *was* its own existence and future – there was nowhere else to talk about the WELL aside from on The WELL! All of this helps explain why, despite their collective spirit, there was never a strong motivation among the community to formalize collective ownership, and why they were fine with seeing the platform transition between different proprietors. So, when it became clear in 2012 that *Salon* was looking to sell The WELL, its community was ready and well-positioned to buy the platform themselves. + +### Process and Tensions + +At one point earlier on in The WELL’s history, the question of cooperative ownership came up. In 1995, user Howard Rheingold sensed that the vision of then-owner Bruce Katz to expand The WELL membership might put growth above community, and he tried to bootstrap The River as an alternative social network, which he incorporated as a formal co-op. While The River didn’t last, Katz eventually sold The WELL to *Salon Magazine*, who realized the platform was less profitable than they would’ve liked it to be. So, in 2012, Salon sold The WELL back to its users – specifically, a group of 11 long-time users who opted to become shareholders – for $400,000. + +### Results + +Out of the 11 long-time members who acquired The WELL in 2012, only seven remain as active owners. There are no full-time staff members, with daily operations being overseen by a board of directors and a handful of independent contractors. Because recruiting younger members was never a goal, the membership’s demographic is relatively the same as when The WELL first launched almost four decades ago. In fact, one forum thread that has gotten a little bit longer over recent years is the obituary thread. Still, users remain active and look to The WELL as a necessary escape from the rampant toxicity of Big Tech social media. + +### Sources + +- E2C conversation with The WELL researcher Jacob Kuppermann +- [The WELL Group Acquisition Q&A](https://www.well.com/about-2/pr/well-group-acquisition-q/) +- [The Epic Saga of The Well - WIRED](https://www.wired.com/1997/05/ff-well/) +- [Obituary: Earl Crabb, CEO of the self-owned WELL – Berkeley Daily Planet](https://www.berkeleydailyplanet.com/issue/2015-03-27/article/43159) +- [Rheingold's Tomorrow: The River, a User-Owned Virtual Community](https://people.well.com/user/hlr/tomorrow/river.html) \ No newline at end of file diff --git a/content/case-studies/trident-booksellers.md b/content/case-studies/trident-booksellers.md new file mode 100644 index 0000000..82be5ea --- /dev/null +++ b/content/case-studies/trident-booksellers.md @@ -0,0 +1,38 @@ +--- +title: Trident Booksellers & Cafe +date: '2023-12-22' +draft: false +description: "Trident is an employee-owned bookstore and café Colorado that became employee-owned in 2020 in the wake of COVID-19, and continues to embody its founding ideals." +status: success +tags: +- consumer-goods +- employee-owned +- success +url_external: https://tridentcafe.com/ +image: /img/logos/trident-booksellers.png +--- + +### Summary + +Trident is an employee-owned bookstore and café located in Boulder, Colorado. It has been a fixture of downtown Boulder since opening in 1980. Their brick-and-mortar space began as the office for [Shambhala Publications](https://www.shambhala.com/), which started in 1969 as an independent publisher focused on mindfulness, yoga, and spirituality. When the space became available for lease, Trident’s founders, Hudson Shotwell and James Gimian, decided to open a bookstore there. In 1981, they added an espresso machine, becoming Boulder’s first combination bookstore-café. After passing through multiple different owners’ hands in the decades since, Trident became employee-owned in 2020, in the wake of the COVID-19 pandemic. Through the transition to employee ownership, they have continued to embody the practices of “right livelihood” that guided their initial founding. + +### Motivation and Readiness + +Trident’s philosophical motivation to exit to community goes back to its early days. In the 1970s, the store’s founders had been students of Chogyam Trungpa Rinpoche – one of the first Tibetan Buddhists to come to the West, and an advocate of practicing “right livelihood” and making a positive impact on one’s community. The founders’ initial motivation to open a bookstore in 1980 was to practice that right livelihood as a way to spread knowledge and promote community. + +However, it wasn’t until 2020 that Trident became employee owned. As the COVID-19 pandemic and attendant lockdowns caused hardship for small businesses, Trident’s management and workers had conflicting ideas about how to move forward. The owners asked a former manager, who they knew had the necessary expertise to keep the shop afloat, to come back on board. He agreed – on the condition that the shop become worker-owned. So, Trident took his ask seriously and opted to exit to community. + +### Process and Tensions + +In 2020, Trident’s ownership did not intend to convert the store to a worker-owned business, but the pandemic left them in a difficult place. The store’s owners had to come to terms with the fact that they did not have the knowledge and expertise to steward Trident through these tough times – but their employees, who had long been involved in the shop’s actual on-the-ground operations, *did*. In particular, one employee – the former bookstore manager, Peter Jones – was identified as someone worth bringing back into the fold to help Trident weather the storm. Jones agreed to rejoin Trident, on the condition that they pursue employee ownership, giving power over the future of the shop to the people who actually make it run. + +At that point, Trident was owned by three families who were somewhat external to the business’s actual operations. Once they agreed to shift ownership and governance power to their employees, they created an LLC with 100 shares. In July of 2020, 12 of Trident's employees bought shares in their employer, inaugurating the conversion to worker-ownership. + +### Results + +By 2023, 20 of Trident’s ~25 workers held ownership shares. Every January, they review and vote on the operating agreement, at which time additional workers can buy in or sell their shares. Trident holds monthly governance meetings, where each owner gets an equal vote on proposals. Shares represent proportional ownership, and decide how the profit disbursement is split, but decisions, including whether or not to have a disbursement, are made equally – one person, one vote. Trident continues their 40-plus-year legacy of providing downtown Boulder with literature, coffee, and community – and meaningfully involving its workers in the decisions that shape their workplace, as well as rewarding the time and energy that they pour into keeping the space alive. + +### Sources + +- [About Us | Trident Booksellers and Café](https://www.tridentcafe.com/our-story) +- [From Booksellers to Owners – Poets & Writers Magazine](https://www.pw.org/content/from_booksellers_to_owners) \ No newline at end of file diff --git a/content/case-studies/uniswap.md b/content/case-studies/uniswap.md new file mode 100644 index 0000000..af3456b --- /dev/null +++ b/content/case-studies/uniswap.md @@ -0,0 +1,33 @@ +--- +title: Uniswap +date: '2023-12-22' +draft: false +description: "Uniswap is a crypto exchange that decentralized its governance but accountability remains in doubt." +status: ambiguous +tags: +- ambiguous +- crypto +url_external: https://uniswap.org +image: /img/logos/uniswap.jpg +--- + +### Summary + +Uniswap is a free application for buying and selling cryptocurrencies. Compared to major exchange platforms like Binance and Coinbase, Uniswap is much more decentralized: users are incentivized to provide crypto they own to liquidity pools on the application, and the crypto is made available to other users who are interested in purchasing it. The trading fees on each crypto purchase via Uniswap go directly to [the original providers](https://blog.shrimpy.io/blog/coinbase-vs-uniswap) of liquidity, whereas Binance and Coinbase have total control over their liquidity, and all trading fees go straight back to the platforms. Uniswap is also more decentralized in its ownership structure, which was established with an airdrop in 2020 that rewarded governance tokens to previous users. Finally, Uniswap is an open source protocol, meaning its code base is public, so anyone can see how it works. Like-minded developers who want to build their own exchange platforms from scratch can therefore “fork” the code and iterate on it as the basis for their own new projects. + +### Motivation and Readiness + +In 2020, as the cryptocurrency market experienced a dramatic upturn and crypto became more widely traded among the general public, a number of exchanges – including major players like Coinbase and Binance – rose in popularity. However, these centralized exchanges were seen by some as antithetical to the spirit of crypto, which embraces decentralization. Uniswap sought a more distributed model than its competitors by distributing governance tokens, called UNI tokens, to users. The motivation to distribute [UNI tokens](https://uniswap.org/blog/uni) was to create “community-led growth, development, and self-sustainability” and enable “shared community ownership and a vibrant, diverse, and dedicated governance system, which will actively guide the protocol towards the future.” + +### Process and Tensions + +Uniswap performed an airdrop that rewarded past users, giving them voting power to make decisions about the future of the protocol. In September of 2020, Uniswap [announced](https://uniswap.org/blog/uni) their governance token, UNI. This allowed anyone that had used the protocol up until that point to claim an airdrop of UNI tokens, which grant them voting power to govern and control the protocol. As part of this process, 60% of the UNI genesis supply would be allocated to Uniswap community members, 21.51% to team members, and 17.8% going to investors. A minimum of 400 UNI was airdropped to retroactively reward everyone who used the service (even once) prior to September, thereby giving control of the network to over 50,000 Ethereum addresses that had contributed to its value and success. However, while Uniswap’s governance model is more decentralized than its competitors, it is ultimately based on token-weighted voting, and is not immune from developing concentrations of power. + +### Results + +Uniswap has seen active and engaged community governance, with initiatives and conversations publicly visible on its [governance page](https://gov.uniswap.org/). In addition to governance, the UNI tokens are used to give grants as an incentive to help build the Uniswap ecosystem. In 2021, the [UNI Grants](https://www.unigrants.org/) program awarded 95 grants, totaling over $5.6M, funding projects ranging from liquidity management research to the development of new governance apps to Solidity bootcamps. + +### Sources + +- [Governance | Uniswap](https://uniswap.org/governance) +- [Other Internet Uniswap Research Report: Discord, Governance, Community](https://www.notion.so/eb545f60b0ba4c30af066ca1a855e0fe?pvs=21) \ No newline at end of file diff --git a/content/contact.md b/content/contact.md new file mode 100644 index 0000000..f9ba270 --- /dev/null +++ b/content/contact.md @@ -0,0 +1,101 @@ +--- +title: "Contact" +description: "Get in touch with the E2C Collective" +--- + +The E2C Collective is a group of practitioners, researchers, and allies who collaborate to make E2C a more available option for great organizations. + +Want to contribute to this resource library? Have a story to share or questions about community ownership transitions? Are you looking for support for your own E2C process? We'd love to hear from you. + +## Add your story + +If you know of a company that has attempted or achieved an exit to community transition, we'd love to include it in our case study library. + +Contribute a story + +## Get involved or get support + +Want to plan your community exit strategy? Got experience or legal snippets you'd like to share? We'd love to hear from you! + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ +
+ + + + +
+
+
+ + +
+
+ +
+ +
+
+ diff --git a/content/legal-snippets/_index.md b/content/legal-snippets/_index.md new file mode 100644 index 0000000..1bd4648 --- /dev/null +++ b/content/legal-snippets/_index.md @@ -0,0 +1,5 @@ +--- +title: "Legal Snippets" +description: "Legal documents and frameworks for community transitions" +--- + diff --git a/content/legal-snippets/airbnb-compensatory.md b/content/legal-snippets/airbnb-compensatory.md new file mode 100644 index 0000000..9cd77c1 --- /dev/null +++ b/content/legal-snippets/airbnb-compensatory.md @@ -0,0 +1,13 @@ +--- +title: Airbnb RFC on compensatory offerings +description: In 2018, as it approached an IPO, Airbnb submitted a letter to the US Securities and Exchange Commission requesting permission to distribute shares to users. The permission was not granted. +tags: +- Exit +- Filing +- Public-policy +- United-States +type: legal-snippet +layout: single +external_url: https://www.sec.gov/comments/s7-18-18/s71818-4403356-175575.pdf +files_media: ../../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/s71818-4403356-175575.pdf +--- diff --git a/content/legal-snippets/alkemio.md b/content/legal-snippets/alkemio.md new file mode 100644 index 0000000..c433e26 --- /dev/null +++ b/content/legal-snippets/alkemio.md @@ -0,0 +1,14 @@ +--- +title: Alkemio +description: Investment terms for a steward-owned company where investors have no voting rights but significant upside potential. +tags: +- Investment +- Netherlands +- Steward-ownership +type: legal-snippet +layout: single +external_url: https://www.alkemio.org/structure/ +files_media: +- ../../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Alkemio-PurchaseAgreement.pdf, +- ../../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Alkemio-ShareholderAgreement.pdf +--- diff --git a/content/legal-snippets/co-op-builder.md b/content/legal-snippets/co-op-builder.md new file mode 100644 index 0000000..52ccbfd --- /dev/null +++ b/content/legal-snippets/co-op-builder.md @@ -0,0 +1,11 @@ +--- +title: Co-op Builder +description: Online tool for developing legal documents for Australian cooperatives. +tags: +- Australia +- Bylaws +- Cooperative +type: legal-snippet +layout: single +external_url: https://bccm.coop/co-op-builder-tool/ +--- diff --git a/content/legal-snippets/collabland.md b/content/legal-snippets/collabland.md new file mode 100644 index 0000000..c7fc179 --- /dev/null +++ b/content/legal-snippets/collabland.md @@ -0,0 +1,12 @@ +--- +title: Collab.Land +description: Co-op bylaws for a blockchain project that transitioned to a multi-tiered user ownership model through an airdrop event, including tradable and non-tradable tokens. +tags: +- Bylaws +- Cooperative +- LCA +- United-States +type: legal-snippet +layout: single +external_url: https://help.collab.land/governance/charter +--- diff --git a/content/legal-snippets/fair-return-terms.md b/content/legal-snippets/fair-return-terms.md new file mode 100644 index 0000000..b613da4 --- /dev/null +++ b/content/legal-snippets/fair-return-terms.md @@ -0,0 +1,10 @@ +--- +title: Investment terms for a “fair return” +description: Aiming to find a middle ground between a for-profit and not-for-profit, this term sheet provides for a “fair return” along with a mission lock mechanism, the “Guardian share.” A UK startup successfully raised around £1 million using this term sheet, mainly from individuals. +tags: +- Investment +- UK +type: legal-snippet +layout: single +files_media: ../../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Sample_term_sheet__guardian_share.docx +--- diff --git a/content/legal-snippets/financing-shared-ownership.md b/content/legal-snippets/financing-shared-ownership.md new file mode 100644 index 0000000..a219a4f --- /dev/null +++ b/content/legal-snippets/financing-shared-ownership.md @@ -0,0 +1,10 @@ +--- +title: Financing Shared Ownership +description: How policymakers can support the financing of shared ownership across the economy, intended for state-level policymakers in the United States. +tags: +- Public-policy +- United-States +type: legal-snippet +layout: single +external_url: https://democracypolicy.network/the-agenda/policy_kit/financing-shared-ownership +--- diff --git a/content/legal-snippets/ginkgo-bioworks.md b/content/legal-snippets/ginkgo-bioworks.md new file mode 100644 index 0000000..ccca836 --- /dev/null +++ b/content/legal-snippets/ginkgo-bioworks.md @@ -0,0 +1,10 @@ +--- +title: Ginkgo Bioworks +description: IPO with Class B Common Stock which grants employees and directors 10x voting power over ordinary stock. +tags: +- Filing +- United-States +type: legal-snippet +layout: single +external_url: https://www.sec.gov/Archives/edgar/data/1830214/000119312521275407/d172577d424b3.htm#rom172577_78 +--- diff --git a/content/legal-snippets/indievc-term-sheet.md b/content/legal-snippets/indievc-term-sheet.md new file mode 100644 index 0000000..25ad07d --- /dev/null +++ b/content/legal-snippets/indievc-term-sheet.md @@ -0,0 +1,10 @@ +--- +title: Indie.vc term sheet +description: Revenue-based equity financing term sheet with a 3x cap on return to the original investment. +tags: +- Investment +- United-States +type: legal-snippet +layout: single +external_url: https://github.com/indievc/terms +--- diff --git a/content/legal-snippets/legge-marcora.md b/content/legal-snippets/legge-marcora.md new file mode 100644 index 0000000..febbe53 --- /dev/null +++ b/content/legal-snippets/legge-marcora.md @@ -0,0 +1,10 @@ +--- +title: "The Italian Road to Creating Worker Cooperatives from Worker Buyouts" +description: Legal framework for enabling worker-ownership buyouts of endangered businesses in Italy. +tags: +- Italy +- Public-policy +type: legal-snippet +layout: single +external_url: https://www.researchgate.net/profile/Marcelo-Vieta/publication/316360529_THE_ITALIAN_ROAD_TO_RECUPERATING_ENTERPRISES_AND_THE_LEGGE_MARCORA_FRAMEWORK_Italy's_Worker_Buyouts_in_Times_of_Crisis/links/58fb664e0f7e9ba3ba5237d4/THE-ITALIAN-ROAD-TO-RECUPERATING-ENTERPRISES-AND-THE-LEGGE-MARCORA-FRAMEWORK-Italys-Worker-Buyouts-in-Times-of-Crisis.pdf +--- diff --git a/content/legal-snippets/main-street-phoenix-project.md b/content/legal-snippets/main-street-phoenix-project.md new file mode 100644 index 0000000..e74eef9 --- /dev/null +++ b/content/legal-snippets/main-street-phoenix-project.md @@ -0,0 +1,13 @@ +--- +title: Main Street Phoenix Project +description: Key learnings from the governance, operational, and financial documents for a worker-owned cooperative holding company designed to acquire and operate food-service businesses. +tags: +- Bylaws +- Cooperative +- Investment +- LCA +- United-States +type: legal-snippet +layout: single +external_url: https://www.dropbox.com/scl/fo/20gqmeee9j2zgn4sibt4r/AIEsVgetO6b4HJ7pGUfmHFI?rlkey=os0dz2a3pevaodbnj7btdwag8&e=7&st=lr1yadcj&dl=0 +--- diff --git a/content/legal-snippets/right-to-own.md b/content/legal-snippets/right-to-own.md new file mode 100644 index 0000000..fee8e05 --- /dev/null +++ b/content/legal-snippets/right-to-own.md @@ -0,0 +1,9 @@ +--- +title: 'Right To Own: A Policy Framework to Catalyze Worker Ownership Transitions' +description: Reviews and proposes polices to encourage employee ownership conversions. +tags: +- Public-policy +type: legal-snippet +layout: single +external_url: https://thenextsystem.org/rto +--- diff --git a/content/legal-snippets/shared-earnings-agreement-seal.md b/content/legal-snippets/shared-earnings-agreement-seal.md new file mode 100644 index 0000000..9624771 --- /dev/null +++ b/content/legal-snippets/shared-earnings-agreement-seal.md @@ -0,0 +1,9 @@ +--- +title: Shared Earnings Agreement (SEAL) +description: “The goal of a SEAL is to align the interests of investors and founders in a wide variety of outcomes, while giving founders full control of their business and keeping as much optionality as possible open for the business.” +tags: +- Investment +type: legal-snippet +layout: single +external_url: https://calmfund.com/shared-earnings-agreement +--- diff --git a/content/legal-snippets/sharetribe.md b/content/legal-snippets/sharetribe.md new file mode 100644 index 0000000..b6e64f9 --- /dev/null +++ b/content/legal-snippets/sharetribe.md @@ -0,0 +1,12 @@ +--- +title: Sharetribe +description: A tech startup structured as a “steward-owned enterprise,” designed to serve a social purpose over profit. +tags: +- Bylaws +- Finland +- Investment +type: legal-snippet +layout: single +external_url: https://drive.google.com/drive/u/1/folders/138TkcSEVCyjOXByM0QUR7M4iWch8u6tM +files_media: ../../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Sharetribes_Articles_of_Association_and_Shareholders_Agreement-20240522T043504Z-001.zip +--- diff --git a/content/legal-snippets/startup-term-sheet-with-3x-buyback.md b/content/legal-snippets/startup-term-sheet-with-3x-buyback.md new file mode 100644 index 0000000..31466eb --- /dev/null +++ b/content/legal-snippets/startup-term-sheet-with-3x-buyback.md @@ -0,0 +1,19 @@ +--- +title: Startup term sheet with 3x buyback +description: Term sheet provision with a government-backed venture firm with an early-stage startup. This provision allows the option, under certain conditions, for the startup to buy out the investment at a x3 multiple. +tags: +- Investment +- Italy +type: legal-snippet +layout: single +--- + +## Exit dall’Investimento + +Decorsi 5 (cinque) anni dalla data di versamento del Follow On, le Parti dovranno prevedere nell’ambito dell’Accordo che: (i) i Soci Fondatori facciano pervenire all’Investitore una offerta di acquisto (fermo restando il diritto di prelazione degli altri Soci) delle partecipazioni da questo detenute per un importo pari almeno a tre volte l’apporto complessivo versato, al netto di eventuali costi connessi alla transazione; ovvero (ii) l’Investitore avrà il diritto di imporre alla Società, sussistendone le condizioni, di avviare la Quotazione e di collocare in via preferenziale le proprie azioni rispetto agli altri azionisti qualora le condizioni dell’offerta lo consentano; (iii) nel caso in cui le modalità di cui al romanino (i) o (ii) non fossero percorribili, l’Investitore potrà conferire mandato a un advisor esterno per la valutazione e la vendita del 100% (cento percento) della Società. + +Automated translation: + +## Exit from the Investment + +After 5 (five) years from the date of payment of the Follow On, the Parties must provide within the Agreement that: (i) the Founding Members send the Investor a purchase offer (without prejudice to the right of pre-emption of the others Members) of the shares held by him for an amount equal to at least three times the total contribution paid, net of any costs connected to the transaction; or (ii) the Investor will have the right to require the Company, if the conditions exist, to initiate the Listing and to place its shares preferentially over other shareholders if the conditions of the offer allow it; (iii) in the event that the methods referred to in (i) or (ii) are not feasible, the Investor may appoint an external advisor for the evaluation and sale of 100% (one hundred percent) of the Company. diff --git a/content/resources/e2c-primer.md b/content/resources/e2c-primer.md new file mode 100644 index 0000000..473884e --- /dev/null +++ b/content/resources/e2c-primer.md @@ -0,0 +1,52 @@ +--- +title: E2C Primer +date: '2025-06-24' +draft: false +type: resource +section: resources +layout: resource +description: "A comprehensive introduction to Exit to Community concepts and strategies" +--- + +## Introduction to Exit to Community + +Exit to Community (E2C) represents a fundamental shift from traditional startup exit strategies. Instead of selling to the highest bidder or going public, E2C enables companies to transition ownership to their users, workers, and communities. + +## Core Principles + +**Community Ownership**: Users and stakeholders become actual owners of the platforms and services they depend on. + +**Democratic Governance**: Decision-making power is distributed among community members rather than concentrated in the hands of a few. + +**Value Alignment**: The organization's mission remains aligned with community values rather than solely focused on financial returns. + +**Sustainability**: Long-term community benefit takes precedence over short-term profit maximization. + +## Why Exit to Community? + +Traditional exit strategies often result in: +- Mission drift as new owners prioritize profit over purpose +- Loss of community input in product development +- Extraction of value from the community that built the platform +- Potential shutdown or radical changes that harm users + +E2C offers an alternative that: +- Preserves the organization's original mission +- Ensures community voices remain central to decision-making +- Keeps value creation within the community +- Provides long-term stability and sustainability + +## Getting Started + +Interested in exploring E2C for your organization? Consider: + +1. **Assess Readiness**: Evaluate your organization's maturity and community engagement +2. **Explore Models**: Research different cooperative and community ownership structures +3. **Legal Framework**: Understand the legal requirements and options in your jurisdiction +4. **Community Engagement**: Begin conversations with your user base and stakeholders +5. **Implementation Planning**: Develop a transition strategy that works for your specific context + +## Learn More + +Explore our [case studies](/case-studies/) to see real-world examples of E2C transitions, and review our [legal snippets](/legal-snippets/) for practical frameworks and documentation. + diff --git a/content/resources/education.md b/content/resources/education.md new file mode 100644 index 0000000..f453e57 --- /dev/null +++ b/content/resources/education.md @@ -0,0 +1,86 @@ +--- +title: Education +date: '2025-06-24' +draft: false +type: resource +section: resources +layout: resource +description: "Educational resources, courses, and learning materials for Exit to Community" +--- + +## Learning Pathways + +**Getting Started** +- [E2C Primer](/resources/e2c-primer/) - Comprehensive introduction to Exit to Community concepts +- Overview of cooperative governance models +- Understanding legal structures and requirements + +**For Founders and Organizations** +- Assessing readiness for E2C transition +- Community engagement strategies +- Financial planning for ownership transition +- Legal frameworks and implementation + +**For Communities and Users** +- Rights and responsibilities in community ownership +- Democratic governance participation +- Understanding cooperative economics + +## Case Study Learning + +**Real-World Examples** +- [Browse all case studies](/case-studies/) to learn from actual E2C transitions +- Industry-specific examples across tech, media, and social platforms +- Lessons learned from successful and challenging transitions + +**Legal Framework Examples** +- [Explore legal snippets](/legal-snippets/) for practical documentation +- Bylaws, governance structures, and policy templates +- Multi-jurisdictional approaches and considerations + +## Educational Partnerships + +**Academic Collaborations** +- Research partnerships with universities +- Student projects and thesis opportunities +- Faculty resources for cooperative economics courses + +**Professional Development** +- Workshops for lawyers, consultants, and advisors +- Training for organizational development professionals +- Certification programs for E2C specialists + +## Tools and Templates + +**Planning Resources** +- E2C readiness assessment frameworks +- Community engagement toolkits +- Transition timeline templates +- Governance structure guides + +**Implementation Support** +- Legal document templates +- Financial modeling resources +- Communication strategy guides +- Stakeholder mapping tools + +## Research and Publications + +**Academic Resources** +- Working papers on community ownership models +- Economic analysis of cooperative transitions +- Comparative studies across industries and regions +- Policy recommendations and advocacy resources + +## Community Learning + +**Peer Networks** +- Connect with other organizations exploring E2C +- Mentorship opportunities with successful transitions +- Regular webinars and discussion forums +- Regional meetups and conferences + +## Get Involved + +Ready to learn more? [Contact us](/contact/) about educational opportunities, or [share your story](/add-your-story/) to contribute to the E2C learning community. + diff --git a/content/resources/media.md b/content/resources/media.md new file mode 100644 index 0000000..b7b65ab --- /dev/null +++ b/content/resources/media.md @@ -0,0 +1,52 @@ +--- +title: Media +date: '2025-06-24' +draft: false +type: resource +section: resources +layout: resource +description: "Media coverage, publications, and press resources about Exit to Community" +--- + +## Featured Coverage + +**Exit to Community in the News** +- Recent articles and coverage of E2C transitions +- Analysis pieces on community ownership models +- Interviews with founders who chose E2C paths + +## Academic Publications + +**Research and Analysis** +- [The Italian Road to Creating Worker Cooperatives](/legal-snippets/the-italian-road-to-creating-worker-cooperatives/) - Academic research on worker buyouts +- Policy papers on alternative exit strategies +- Comparative studies of cooperative governance models + +## Media Case Studies + +**Journalism and Media Organizations** +- [Defector Media](/case-studies/defector-media/) - Sports journalism as a worker cooperative +- [The Appeal](/case-studies/the-appeal/) - Criminal justice reporting as a worker-led nonprofit + +**Creative Platforms** +- [Are.na](/case-studies/are-na/) - Social platform for artists and students exploring community ownership + +## Press Kit + +**For Journalists and Researchers** +- High-resolution logos and brand assets +- Key statistics about community ownership +- Expert contacts for interviews +- Fact sheets on E2C models + +## Media Partnerships + +**Collaborative Coverage** +- Working with media organizations exploring E2C +- Supporting journalism on cooperative economics +- Facilitating connections between E2C practitioners and reporters + +## Get in Touch + +Interested in covering Exit to Community stories? [Contact us](/contact/) for press resources, expert interviews, and story leads. + diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..338eb00 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,34 @@ +baseURL = 'https://e2c.how/' +languageCode = 'en-us' +title = 'Exit to Community' + +[params] + description = 'Stories and strategies for converting startups into community-owned cooperatives' + author = 'Exit to Community' + +[markup] + [markup.goldmark] + [markup.goldmark.renderer] + unsafe = true + +[menu] + [[menu.main]] + name = "Case Studies" + url = "/case-studies/" + weight = 10 + [[menu.main]] + name = "Legal Snippets" + url = "/legal-snippets/" + weight = 20 + [[menu.main]] + name = "Resources" + url = "/resources/" + weight = 30 + [[menu.main]] + name = "Add Your Story" + url = "/add-your-story/" + weight = 40 + [[menu.main]] + name = "Contact" + url = "/contact/" + weight = 50 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..22f9160 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,815 @@ + + + + + + {{ if .Title }}{{ .Title }} - {{ end }}{{ .Site.Title }} + + + + + + + +
+
+ {{ block "main" . }}{{ end }} +
+
+ + + + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..02bb045 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,233 @@ +{{ define "main" }} +

{{ .Title }}

+{{ if .Description }} +

{{ .Description }}

+{{ end }} + +{{ .Content }} + +{{ if .Pages }} +
+
+ + + +
+
+
+ {{ range .Pages }} +
+ {{ if .Params.image }} + + {{ end }} +

{{ .Title }}

+ {{ if .Description }} +

{{ .Description }}

+ {{ else if .Summary }} +

{{ .Summary | plainify | replaceRE "^### \\*\\*Summary\\*\\*\\s*" "" | truncate 200 }}

+ {{ else }} +

{{ .Content | plainify | replaceRE "^### \\*\\*Summary\\*\\*\\s*" "" | truncate 200 }}

+ {{ end }} + {{ if .Params.tags }} +
+ {{ range .Params.tags }} + {{ . }} + {{ end }} +
+ {{ end }} + Read More +
+ {{ end }} +
+{{ end }} + + + + +{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..b420d47 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,93 @@ +{{ define "main" }} +
+
+ {{ if .Params.image }} + + {{ end }} +

{{ .Title }}

+ {{ if .Description }} +

{{ .Description }}

+ {{ end }} + {{ if .Params.url }} +

URL: {{ .Params.url }}

+ {{ end }} + {{ if .Date }} +

Last updated: {{ .Date.Format "January 2, 2006" }}

+ {{ end }} + {{ if .Params.tags }} +
+ {{ range .Params.tags }} + {{ . }} + {{ end }} +
+ {{ end }} +
+ +
+ {{ .Content }} +
+ + {{ if .Params.external_url }} +

Visit External Site

+ {{ end }} +
+ + + +{{ end }} diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..f752ee3 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,3 @@ +{{ define "main" }} +{{ .Content }} +{{ end }} \ No newline at end of file diff --git a/layouts/shortcodes/contact-form.html b/layouts/shortcodes/contact-form.html new file mode 100644 index 0000000..27beab5 --- /dev/null +++ b/layouts/shortcodes/contact-form.html @@ -0,0 +1,89 @@ +
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
+ + + + +
+
+ +
+ + +
+ +
+ +
+ + +
+
\ No newline at end of file diff --git a/static/fonts/google-fonts.css b/static/fonts/google-fonts.css new file mode 100644 index 0000000..e69de29 diff --git a/static/fonts/space-grotesk-300.ttf b/static/fonts/space-grotesk-300.ttf new file mode 100644 index 0000000..bcd97df Binary files /dev/null and b/static/fonts/space-grotesk-300.ttf differ diff --git a/static/fonts/space-grotesk-400.ttf b/static/fonts/space-grotesk-400.ttf new file mode 100644 index 0000000..576f9b5 Binary files /dev/null and b/static/fonts/space-grotesk-400.ttf differ diff --git a/static/fonts/space-grotesk-500.ttf b/static/fonts/space-grotesk-500.ttf new file mode 100644 index 0000000..6141a58 Binary files /dev/null and b/static/fonts/space-grotesk-500.ttf differ diff --git a/static/fonts/space-grotesk-600.ttf b/static/fonts/space-grotesk-600.ttf new file mode 100644 index 0000000..98cdfc6 Binary files /dev/null and b/static/fonts/space-grotesk-600.ttf differ diff --git a/static/fonts/space-grotesk-700.ttf b/static/fonts/space-grotesk-700.ttf new file mode 100644 index 0000000..f4f8002 Binary files /dev/null and b/static/fonts/space-grotesk-700.ttf differ diff --git a/static/fonts/space-grotesk-local.css b/static/fonts/space-grotesk-local.css new file mode 100644 index 0000000..16dd1ad --- /dev/null +++ b/static/fonts/space-grotesk-local.css @@ -0,0 +1,35 @@ +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url('./space-grotesk-300.ttf') format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url('./space-grotesk-400.ttf') format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url('./space-grotesk-500.ttf') format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url('./space-grotesk-600.ttf') format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url('./space-grotesk-700.ttf') format('truetype'); +} \ No newline at end of file diff --git a/static/fonts/space-grotesk.css b/static/fonts/space-grotesk.css new file mode 100644 index 0000000..8bba045 --- /dev/null +++ b/static/fonts/space-grotesk.css @@ -0,0 +1,35 @@ +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 300; + font-display: swap; + src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsj.ttf) format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 400; + font-display: swap; + src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsj.ttf) format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 500; + font-display: swap; + src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsj.ttf) format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 600; + font-display: swap; + src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42Vksj.ttf) format('truetype'); +} +@font-face { + font-family: 'Space Grotesk'; + font-style: normal; + font-weight: 700; + font-display: swap; + src: url(https://fonts.gstatic.com/s/spacegrotesk/v21/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksj.ttf) format('truetype'); +} diff --git a/static/img/Add your story 48daac7016594611870f5d9a62f23c82.md b/static/img/Add your story 48daac7016594611870f5d9a62f23c82.md new file mode 100644 index 0000000..de10d72 --- /dev/null +++ b/static/img/Add your story 48daac7016594611870f5d9a62f23c82.md @@ -0,0 +1,9 @@ +# Add your story + +[← Home](../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5.md) + +We’re curating stories from founding teams and allies to help people learn from experience. + +Want us to feature your work? Suggest a case study! + +[https://actionnetwork.org/forms/e2c-website-story-form?source=direct_link&](https://actionnetwork.org/forms/e2c-website-story-form?source=direct_link&) \ No newline at end of file diff --git a/static/img/Alkemio-PurchaseAgreement.pdf b/static/img/Alkemio-PurchaseAgreement.pdf new file mode 100644 index 0000000..ab4eb42 Binary files /dev/null and b/static/img/Alkemio-PurchaseAgreement.pdf differ diff --git a/static/img/Alkemio-ShareholderAgreement.pdf b/static/img/Alkemio-ShareholderAgreement.pdf new file mode 100644 index 0000000..bbb7216 --- /dev/null +++ b/static/img/Alkemio-ShareholderAgreement.pdf @@ -0,0 +1,20064 @@ +%PDF-1.7 +% +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +>> +endobj +6 0 obj +<< +/Title (Shareholders agreement De Clique BV draft @ 11 2020) +/Author (Sjoerd Mol) +/Creator +/CreationDate (D:20230905073321+02'00') +/ModDate (D:20230905073321+02'00') +/Producer +>> +endobj +2 0 obj +<< +/Type /Pages +/Count 22 +/Kids [7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R +17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R +27 0 R 28 0 R] +>> +endobj +3 0 obj +<< +/Type /StructTreeRoot +/RoleMap 29 0 R +/ParentTree 30 0 R +/K [31 0 R] +/ParentTreeNextKey 47 +>> +endobj +4 0 obj +<< +/Length 3215 +/Type /Metadata +/Subtype /XML +>> +stream + + + +Microsoft® Word for Microsoft 365 + +Shareholders agreement De Clique BV draft @ 11 2020Sjoerd Mol + +Microsoft® Word for Microsoft 3652023-09-05T07:33:21+02:002023-09-05T07:33:21+02:00 + +uuid:8936C1D4-2211-4040-B0F3-51D1CD712A10uuid:8936C1D4-2211-4040-B0F3-51D1CD712A10 + + + + + + + + + + + + + + + + + + + + + +endstream +endobj +5 0 obj +<< +/DisplayDocTitle true +>> +endobj +7 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image13 37 0 R +/Im2 38 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents [39 0 R 40 0 R 41 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 0 +>> +endobj +8 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F4 42 0 R +/F3 34 0 R +/F5 43 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 44 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 1 +>> +endobj +9 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image32 46 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [47 0 R 48 0 R 49 0 R 50 0 R 51 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 52 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 2 +>> +endobj +10 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image36 53 0 R +/Image38 54 0 R +/Image40 55 0 R +/Image42 56 0 R +/Image44 57 0 R +/Image46 58 0 R +/Image48 59 0 R +/Image50 60 0 R +/Image57 61 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [62 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 63 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 12 +>> +endobj +11 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image60 64 0 R +/Image65 65 0 R +/Image67 66 0 R +/Image69 67 0 R +/Image71 68 0 R +/Image73 69 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [70 0 R 71 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 72 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 14 +>> +endobj +12 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image76 73 0 R +/Image78 74 0 R +/Image80 75 0 R +/Image82 76 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 77 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 17 +>> +endobj +13 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image85 78 0 R +/Image87 79 0 R +/Image89 80 0 R +/Image91 81 0 R +/Image93 82 0 R +/Image95 83 0 R +/Image97 84 0 R +/Image99 85 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 86 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 8 +>> +endobj +14 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image102 87 0 R +/Image104 88 0 R +/Image106 89 0 R +/Image108 90 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [91 0 R 92 0 R 93 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 94 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 18 +>> +endobj +15 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image114 95 0 R +/Image117 96 0 R +/Image119 97 0 R +/Image121 98 0 R +/Image124 99 0 R +/Image126 100 0 R +/Image128 101 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [102 0 R 103 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 104 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 22 +>> +endobj +16 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F6 45 0 R +/F3 34 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image132 105 0 R +/Image134 106 0 R +/Image136 107 0 R +/Image138 108 0 R +/Image140 109 0 R +/Image143 110 0 R +/Image145 111 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [112 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 113 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 25 +>> +endobj +17 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F3 34 0 R +/F6 45 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image150 114 0 R +/Image152 115 0 R +/Image154 116 0 R +/Image156 117 0 R +/Image158 118 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [119 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 120 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 9 +>> +endobj +18 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F6 45 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image162 121 0 R +/Image164 122 0 R +/Image166 123 0 R +/Image168 124 0 R +/Image170 125 0 R +/Image172 126 0 R +/Image174 127 0 R +/Image176 128 0 R +/Image178 129 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [130 0 R 131 0 R 132 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 133 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 10 +>> +endobj +19 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/XObject << +/Image185 134 0 R +/Image187 135 0 R +/Image189 136 0 R +/Image191 137 0 R +/Image193 138 0 R +/Image195 139 0 R +/Image197 140 0 R +/Image199 141 0 R +/Image201 142 0 R +/Image203 143 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 144 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 31 +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +>> +endobj +21 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [170 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 171 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 33 +>> +endobj +22 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 172 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 35 +>> +endobj +23 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F3 34 0 R +/F5 43 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [173 0 R 174 0 R 175 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 176 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 36 +>> +endobj +24 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F7 177 0 R +/F6 45 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/Annots [178 0 R 179 0 R 180 0 R] +/MediaBox [0 0 595.32 842.04] +/Contents 181 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 40 +>> +endobj +25 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +/F3 34 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 182 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 11 +>> +endobj +26 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +/F8 183 0 R +/F9 184 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 185 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 44 +>> +endobj +27 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +/F6 45 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 186 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 45 +>> +endobj +28 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +/MediaBox [0 0 595.32 842.04] +/Contents 187 0 R +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 46 +>> +endobj +29 0 obj +<< +/Footnote /Note +/Endnote /Note +/Textbox /Sect +/Header /Sect +/Footer /Sect +/InlineShape /Sect +/Annotation /Sect +/Artifact /Sect +/Workbook /Document +/Worksheet /Part +/Macrosheet /Part +/Chartsheet /Part +/Dialogsheet /Part +/Slide /Part +/Chart /Sect +/Diagram /Figure +/Title /H1 +>> +endobj +30 0 obj +<< +/Nums [0 [188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R +198 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R +208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R 216 0 R] + 1 [217 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R +227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R +237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R +247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R +257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R +267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R +277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R +286 0 R 286 0 R 287 0 R 288 0 R 288 0 R 288 0 R 289 0 R 289 0 R 289 0 R 289 0 R +289 0 R 290 0 R 291 0 R] + 2 [292 0 R 293 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R 294 0 R +294 0 R 294 0 R 294 0 R 294 0 R 295 0 R 294 0 R 294 0 R 294 0 R 294 0 R 296 0 R +296 0 R 296 0 R 297 0 R 296 0 R 296 0 R 296 0 R 298 0 R 298 0 R 298 0 R 299 0 R +299 0 R 299 0 R 299 0 R 299 0 R 299 0 R 299 0 R 300 0 R 299 0 R 299 0 R 299 0 R +299 0 R 301 0 R 301 0 R 301 0 R 301 0 R 301 0 R 301 0 R 301 0 R 302 0 R 301 0 R +301 0 R 301 0 R 301 0 R 303 0 R 304 0 R 305 0 R 305 0 R 305 0 R 306 0 R 305 0 R +307 0 R 307 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R +314 0 R 315 0 R] + 3 316 0 R 4 317 0 R +5 318 0 R 6 319 0 R 7 320 0 R 8 [321 0 R 322 0 R 322 0 R 323 0 R 323 0 R 324 0 R 324 0 R 325 0 R 325 0 R 326 0 R +327 0 R 328 0 R 329 0 R 329 0 R 330 0 R 330 0 R 331 0 R 332 0 R 333 0 R 333 0 R +334 0 R 334 0 R 334 0 R 335 0 R 336 0 R 336 0 R] + 9 [337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 342 0 R 343 0 R 343 0 R 344 0 R +345 0 R 346 0 R 346 0 R 347 0 R 348 0 R 348 0 R 349 0 R 350 0 R 350 0 R 351 0 R +352 0 R 353 0 R 354 0 R] +10 [355 0 R 355 0 R 355 0 R 355 0 R 356 0 R 357 0 R 358 0 R 358 0 R 359 0 R 359 0 R +360 0 R 361 0 R 362 0 R 363 0 R 363 0 R 364 0 R 364 0 R 365 0 R 366 0 R 367 0 R +367 0 R 367 0 R 367 0 R 368 0 R 368 0 R 368 0 R 368 0 R 369 0 R 369 0 R 369 0 R +369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R] + 11 [379 0 R 379 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 385 0 R +385 0 R 386 0 R 386 0 R 386 0 R 386 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R +390 0 R 390 0 R 391 0 R 392 0 R 393 0 R 393 0 R 393 0 R 394 0 R 395 0 R 396 0 R +397 0 R 398 0 R] + 12 [399 0 R 400 0 R 400 0 R 401 0 R 401 0 R 402 0 R 403 0 R 404 0 R 404 0 R 405 0 R +405 0 R 406 0 R 406 0 R 407 0 R 407 0 R 408 0 R 408 0 R 409 0 R 410 0 R 411 0 R +412 0 R 413 0 R 413 0 R 413 0 R 413 0 R] + 13 414 0 R 14 [415 0 R 416 0 R 417 0 R 418 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R +424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 428 0 R 429 0 R 430 0 R 431 0 R 431 0 R +432 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 437 0 R 438 0 R 438 0 R] +15 439 0 R 16 440 0 R 17 [441 0 R 442 0 R 443 0 R 443 0 R 444 0 R 444 0 R 445 0 R 445 0 R 446 0 R 447 0 R +448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 455 0 R] + 18 [456 0 R 456 0 R 457 0 R 457 0 R 457 0 R 457 0 R 458 0 R 459 0 R 460 0 R 460 0 R +461 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R +470 0 R 471 0 R 472 0 R] + 19 473 0 R +20 474 0 R 21 475 0 R 22 [476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 480 0 R 481 0 R 481 0 R 482 0 R 483 0 R +484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 489 0 R 490 0 R 490 0 R 491 0 R +491 0 R 492 0 R 493 0 R 494 0 R] + 23 495 0 R 24 496 0 R +25 [497 0 R 498 0 R 498 0 R 498 0 R 498 0 R 498 0 R 498 0 R 498 0 R 498 0 R 499 0 R +500 0 R 500 0 R 501 0 R 502 0 R 503 0 R 503 0 R 504 0 R 504 0 R 505 0 R 506 0 R +507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 511 0 R 512 0 R 512 0 R 513 0 R] + 26 514 0 R 27 515 0 R 28 516 0 R 29 517 0 R +30 518 0 R 31 [519 0 R 520 0 R 520 0 R 521 0 R 522 0 R 523 0 R 523 0 R 524 0 R 524 0 R 525 0 R +525 0 R 526 0 R 526 0 R 526 0 R 526 0 R 527 0 R 527 0 R 527 0 R 527 0 R 528 0 R +528 0 R 529 0 R 529 0 R 529 0 R 529 0 R 530 0 R 530 0 R 530 0 R 530 0 R 531 0 R +531 0 R 532 0 R 533 0 R] + 32 [534 0 R 534 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 538 0 R 539 0 R 540 0 R +541 0 R 541 0 R 542 0 R 543 0 R 544 0 R 544 0 R 545 0 R 546 0 R 547 0 R 547 0 R +548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R +558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R +568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R +577 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R +586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R +596 0 R 597 0 R 598 0 R 599 0 R] + 33 [600 0 R 601 0 R 602 0 R 600 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R +609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 614 0 R 617 0 R +618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R] + 34 625 0 R +35 [626 0 R 627 0 R 627 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R +634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 641 0 R 641 0 R +641 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 646 0 R 646 0 R 646 0 R +646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 652 0 R 652 0 R 652 0 R +652 0 R 653 0 R 654 0 R 655 0 R 655 0 R 655 0 R 655 0 R 655 0 R] + 36 [656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R +666 0 R 667 0 R 666 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R +673 0 R 675 0 R 676 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 680 0 R +682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R +690 0 R 692 0 R 693 0 R] + 37 694 0 R 38 695 0 R 39 696 0 R +40 [697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 703 0 R 703 0 R +705 0 R 706 0 R 707 0 R 708 0 R 707 0 R 709 0 R 707 0 R 707 0 R 710 0 R 711 0 R +712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R +720 0 R 722 0 R 722 0 R 722 0 R 722 0 R 722 0 R 723 0 R 724 0 R 723 0 R 725 0 R +725 0 R 725 0 R 725 0 R 725 0 R 726 0 R 727 0 R 727 0 R 728 0 R 729 0 R 730 0 R +731 0 R 732 0 R 733 0 R] + 41 734 0 R 42 735 0 R 43 736 0 R 44 [737 0 R 737 0 R 737 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R +744 0 R 745 0 R 746 0 R 746 0 R 746 0 R 747 0 R 748 0 R 748 0 R 748 0 R 748 0 R +748 0 R 748 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R +756 0 R 756 0 R 756 0 R 756 0 R 756 0 R 757 0 R 758 0 R 758 0 R 758 0 R] +45 [759 0 R 760 0 R 761 0 R 762 0 R 763 0 R] + 46 [764 0 R 764 0 R 764 0 R 764 0 R 765 0 R 766 0 R 766 0 R 767 0 R 768 0 R 769 0 R +770 0 R 771 0 R 772 0 R 772 0 R 772 0 R 772 0 R 772 0 R 773 0 R 774 0 R 775 0 R +776 0 R] +] +>> +endobj +31 0 obj +<< +/P 3 0 R +/S /Document +/Type /StructElem +/K [188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 777 0 R 778 0 R +779 0 R 780 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R +216 0 R 214 0 R 215 0 R 781 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R +291 0 R 292 0 R 293 0 R 782 0 R 303 0 R 304 0 R 783 0 R 310 0 R 311 0 R 312 0 R +313 0 R 314 0 R 315 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R +406 0 R 407 0 R 408 0 R 784 0 R 413 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R +420 0 R 785 0 R 786 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R +434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R +446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R +321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R 330 0 R +331 0 R 332 0 R 333 0 R 336 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R +787 0 R 788 0 R 789 0 R 471 0 R 472 0 R 790 0 R 480 0 R 481 0 R 482 0 R 483 0 R +484 0 R 791 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 497 0 R 498 0 R +499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 792 0 R 511 0 R +512 0 R 513 0 R 337 0 R 338 0 R 793 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R +347 0 R 348 0 R 349 0 R 350 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 363 0 R +364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 794 0 R 378 0 R 519 0 R 520 0 R +521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R +531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 795 0 R 598 0 R 599 0 R 600 0 R +796 0 R 797 0 R 798 0 R 799 0 R 732 0 R 733 0 R 379 0 R 380 0 R 381 0 R 737 0 R +738 0 R 739 0 R 800 0 R 801 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R +802 0 R 773 0 R 774 0 R 775 0 R 776 0 R] +>> +endobj +32 0 obj +<< +/Type /Font +/Subtype /TrueType +/Name /F1 +/BaseFont /ArialMT +/Encoding /WinAnsiEncoding +/FontDescriptor 803 0 R +/FirstChar 32 +/LastChar 233 +/Widths [278 0 0 0 0 889 667 0 333 333 +0 584 278 333 278 278 556 556 556 556 +556 556 556 556 556 556 278 278 0 584 +0 0 1015 667 667 722 722 667 611 778 +722 278 500 667 556 833 722 778 667 0 +722 667 611 722 667 944 0 667 0 278 +0 278 0 556 0 556 556 500 556 556 +278 556 556 222 222 500 222 833 556 556 +556 556 333 500 278 556 500 722 500 500 +500 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 +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 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 556 0 0 0 0 0 0 0 +0 556] +>> +endobj +33 0 obj +<< +/Type /Font +/Subtype /TrueType +/Name /F2 +/BaseFont /Arial-BoldMT +/Encoding /WinAnsiEncoding +/FontDescriptor 804 0 R +/FirstChar 32 +/LastChar 233 +/Widths [278 0 0 0 0 0 722 0 333 333 +0 584 278 333 278 0 556 556 556 556 +556 556 556 556 556 556 333 0 0 0 +0 0 0 722 722 722 722 667 611 778 +722 278 0 722 611 833 722 778 667 0 +722 667 611 722 667 944 0 667 0 0 +0 0 0 0 0 556 611 556 611 556 +333 611 611 278 278 556 278 889 611 611 +611 611 389 556 333 611 556 778 556 556 +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 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 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 556] +>> +endobj +34 0 obj +<< +/Type /Font +/Subtype /TrueType +/Name /F3 +/BaseFont /Arial-ItalicMT +/Encoding /WinAnsiEncoding +/FontDescriptor 805 0 R +/FirstChar 32 +/LastChar 122 +/Widths [278 0 0 0 0 0 0 0 0 0 +0 0 0 333 0 0 0 0 0 0 +0 0 0 0 0 0 0 0 0 0 +0 0 0 0 0 0 722 0 0 0 +0 0 0 0 0 0 722 0 0 0 +722 667 611 0 0 0 0 0 0 278 +0 278 0 0 0 556 556 500 556 556 +278 556 556 222 222 500 222 833 556 556 +556 0 333 500 278 556 500 722 0 500 +500] +>> +endobj +35 0 obj +<< +/Type /ExtGState +/BM /Normal +/ca 1 +>> +endobj +36 0 obj +<< +/Type /ExtGState +/BM /Normal +/CA 1 +>> +endobj +37 0 obj +<< +/Length 11491 +/Type /XObject +/Subtype /Image +/Width 543 +/Height 154 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Filter /DCTDecode +/Interpolate true +>> +stream +JFIFC  +   $.' ",#(7),01444'9=82<.342C  2!!22222222222222222222222222222222222222222222222222" + }!1AQa"q2#BR$3br +%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz + w!1AQaq"2B #3Rbr +$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?( +( +(j(A8\tIX2ѠYfCfp4Q\@'v/E k[o{isШ|xe1f?)-.sgmEs69e_>#k:mQo{ tM7yRB/EQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQMc'P&#$h:}CVpe,{SO\Ew7a~U]GеfzGL)FׯXY洬|=j80ڸC-$WWEg!_MʺGFkm#[_5JſNiç[CiWbmq,2( {CE%` +(Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@5})tQErQ@Q@ ]g1q\NbQU -C+JMU=`E#x?5@lM ?O[a|y=_5%pO1H#i$f+> ? I] IA_8Ǿ)E쪠/=:Vhʫ3YRWgW|]A۟X.]P}AE| +>뺦jjs$w!QqeN<Җ*5%ʑQ^skWlUN@œ䢍53ѨbC VFocJ +x::4Y7ZN3GdnE!XnŰjELΪ'kkzK. N8EL4Ý1QTHnn40]+Zg7ȟprҽUZN*.ou'?"%Gvfnѻ+ZI9ܛfMzWj~v(;*]0yO ˕EW1%Wx>&eYoiRueʌT|Q^]ĺψ$F~B 7*~@WԃYT)Ǚ ET%^gvZ,cƗ׊p1gӏ~œDF +gf˺Si9 nRok5p7MPzVQ^xLgeK RmDTL(Es/n?Q+8)*G诛l~+xey5uxWP^XՕS n[<yOq:iW{R£:(΀(aZ(Ů6ד@z#'qQVϊ~+.$_5\sdQE +(^Erux B*ḥtQEtuFD+g@JGCᧆiv}x<;r{t+v p\4ַ +Z2\A ?<3/NAׅ rsqּ:Rinb}RqG{W}콒_KePE}-_;|#ѥ|cY)¾|mF ?f|u?_Xw?i^dcu~ `-Ƥ5qkx)D.׃%'IөSv&<;D7 cew>a^ujo/1U /ZKyTTtuVVftҥI>h ^MA_v+kɾ9#Ko/ZK5%C|;ê}UĢ6y~Ӯc|q"va^e>hXmYaC`z5 |q/4#>ֽ˵xi:rgJ }oC'k۾ ȝs_x!B5MR__9|XN9ncB-Bqy +6ӛgɿ5ÅQy|6Edl|Ac_DǐO-WIbpè`r }_^={@." vF_~:^. f +fT~|AGq1[>W1K"ƀ1 +j0sdgvg!l_$v,k:>@o9s~q֟<܎0A^C]kg4(su*3M|ml-Z-\>ȼ }y?mRq养n;[oFᧃ^ҵ;9${?:bi!JIe=AWվ^YbpAEG;*:/i4aiҔs&]BF'̙W|WͯEo.0=W\=+DlUFnłȅ|a1"XIquWU[ik.DŽ1-%\>Y{^FBF~eTmu}6{ĐLXu*M]dT61v5݇퓌,EbԢ}I6kZ2gү :S,у<~Vџ<~#_VE۷j im[g>ҪFVҺ/'Ѽ9zw>PN;dT]vOGydTݲ>3_Ԡb<Oz?ψVGvWuyg(Up; s޼^8"RGrN:_&,j~'Ē)`IUa5ˍS>fW쭂(aEP?՟-z ^ǨYǨXMk dR3 yZI#b=aQksH:(((J<!Erux Cn)lzQ]&Eg@O¾ }\}3+}Z[m"h\edH sT綞SC !R?_L8ox.xd#s>~ӑ"|_gTK6t?ǀٯՃ(`r"9_WNw,y?+@?>jcy&c*x>x\O\q.@t~WK}^<^MA_v+kɾ9#KVO HyY%@mkwcƼ_:OjI¢hJLH嶝Z9l2*ᏍLj|ĞfN^ߋir?5ּI.]RQd>nq40NXz{;_F?W\J2W=2s^KD)bըxGz=.;i`C*u="g.iru?ĽT*Ak־[+W;o>xag|mмv$̿gC'ԑx;]>MIls+y +Gc\gm1YǾ@ckvkfu6c2dwtDW/j2?˙ZB=2z~:'Zwy-:* vyq]9t+>'G"yO_ןƹ+5 \03$t.űG(MͽVg=ֻK>PO#kk:]7RH$WS5ZBAxÌ+Nu`^<į(tWӕį(tQ ;ooW׌| ]}?TA:e^j#T8"T|w6D9_Bd>/Q<:o r u aɥI^0)!tׯF<u#)C })k=p5oy# 鍁ڑc({ljGe[<#v\ԯ5+냙$21&43C5ʢz4s⫶-oxz)%=yH}GU^5Ն*JU]q|G[J帮7ڷu]e.aqıK{:*Ggk~3N?OtScQqӰyo=lJͧ\{zʫG[[\;QU:IRi +ZeyoYwk( :: ՊmcZꅢ(QEF]RㅟOʻhU v띫(@%u?UqKc袊2(k?|:~i6|2.zdqS3?]:|SFnGZ&o.''5/k(ER9ā>|>y",~j28:k +Ft{L<_7Sߝslz5y??iXW5XYAInQ5AMuMxu?k>I-+Vy$In]p"cIxExeaA |MlNrK@=?Q_JO O闋H21<=gJWk^3߂_'\)\K|6L+ +>^~PxWiA.QJք,ќ*]+=3)?^SaјO^#laz?Jc{j?l|5志6nf\gH}NoPM.,\I~ƻͥJ?ހ:υ7lIy3'ÿWıM=Zc*}2vիN^*SWEuį(tWӕ^/Y)ԭ'X'`TK+ )|$ L NH TNooc-W8߃T.5 h_;$QHޯ}k xwv*bg+ǥp}׳;pϜ~&x!M-咏+Pv_<J!LWص΍Ӻ[qs/Wr.YlF# /B\%ղ\`Aoneec fMg#}1ɱ6fR8Si"wSXu=~Z +=ZuumPq>8EJ7 "˯_Ƒ%ֽwJ,4Kӭ:*>qpyiRRIX[z|V;VݞVVG?~տW]g*{J{wܢIX6=_ < u-_6y=rֽ`rӥ5_Ğ66xk&7ȯ@oc,-aهD}r[)_ 2V#wZ nclMh<_N|&)ϸoܻ!%'<5[>=jΝŨQ&$R 2.EdǨ"b*~ڌz-"$1GAV(}1ёd?u3Y{MR+gEEgꚏt1i$+ngjഊBQ[skw#=Zwq")X"rRFH_.iK%%iU23+`tIYvzƞz>8`>բ_\`)eWoj3TV)Eܲ@sEբ/Tl;"m`\[`XJ|V Z}g@6fQ#Ӭդ X\v^iޯn9==EulcX,3p.QE(-RNI$"iVU9 Z*5ۡP"7zzN.2gi\ Z)HR@֨X^C3007E-0Y.j"Qp/QYtmO$yjsSO-0ZEmߑ]Ya~ody^i"qާӵ!9"x$rUn(5 .#g(]y#1(,dQp%)QEQEQEKQ-uKcaױkK4 EwҽJ#E1cī?VyFPGUO h7>3\"Dlk5[hh̆di,2\}7U`c݌c볹uA1oJ4l jx\ԟδlಃɷM䝹'AeGmVrd׭0(AB\623z+L3$dJFG6mc( +lOu)9Ft:6a,(Ibg9&f@P*PmX+1ƫ5n[)P3ڷth-[ӉҷW'Yp ƻ P<Ғ8B\F}o„ 3i:vL `S4 C*츊fWG1O,蘒\o9<eGPGӥs; %9@ڴ!n?wi׶K3*uH>Sm4lٚ#1,9&wЉ;jGX.$M1Oun+jkEҦzZtɸFE0jfЌQm@݋Z݉6ӯ!sXQ]oFnfEw˴TwuS'P[ѧd_zιVM >VY.-!pA"ޟ<1A$2Rjq{9YNTH\BEm6lD*$1gYGo1\"z8I^#C5TnKˑq*% ts:g8H5YYMs'܍ j'GqowSp ?uIdr+ I2+FR0G&;.cU]w|؎ s}ꯤmAg'ʠQ]#:(R(lh6U/EÃهZuf4Q<[[ҍ(vR+%HPŘ=OR9 (( Euk%]b|=m,Su/%,^:5˿$zv +i 1]ZvŻWk>~"ُ{prr"Klķ_2gRs̷x]-J;7q[:,P%q2f=x銷H>͟1MiMĭ1}@PfͤquL$ٽ}Vh.389^{TsVW<}\8F3Њ454 *J((((((((((((((((((((((((((((((((((( +endstream +endobj +38 0 obj +<< +/Length 109 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 355 +/Height 84 +/ColorSpace /DeviceRGB +/DecodeParms 806 0 R +/SMask 807 0 R +>> +stream +x1 Oo7] +endstream +endobj +39 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +40 0 obj +<< +/Length 1284 +/Filter /FlateDecode +>> +stream +xZ[O8}d_V(00+ehwCR Mؒj~v˥ ) I-{f~U\6^] Guԋoͫp }\~F~`~$Ĝ!#&-~wF~o"'W 4V) +MpX7v]d(&{/ |FSkb͐+ZmA-&(lUHBic+u.~ҬȀi dv-Z +M^| ih͖Y v/DX0XVmao~`5V7S0y_ .@tv31m,1‚8`ۙ&F* $"I >\ֻ~( +EخMƷ0/T!T?!Oo5 ee58ok-Xk41- t<"H lƠO4:n}Y"JĬZl6>";;z'CwG>ىdg>{Gn*<"*OCm$z7v~](F2%P{o隷rNJv@ +˭U|$ u+Hri1|Fɥfu [ZvmjWvL'̬4b{6)it%G$I V|>5ކn=ƨsw7KW +xd%{/KuڳC_en+u;#j?uW;4  lka9)IiҲ N? A:&K$~뭩K݃c1GyAN"'p6 +h&Syv R[|O7t`1P(tquUmtt[s2q̮c:`U.|P^,زQ LI֫H%18˶ W驯܏ⷡ s`jIbkt$[)M4 u9#!|M0 hN T#6z0k6:  ]-#l!ý\YheWOrblID8xBcn%'4{qAF4:spڤΨwW֟=nePY-Wc +?%t~bK?ŬA'u +endstream +endobj +41 0 obj +<< +/Length 53 +/Filter /FlateDecode +>> +stream +x *0Q0BCKcCs=33CKK3c=K#C3\.}\#|@.' +endstream +endobj +42 0 obj +<< +/Type /Font +/Subtype /TrueType +/Name /F4 +/BaseFont /BCDEEE+Calibri +/Encoding /WinAnsiEncoding +/FontDescriptor 808 0 R +/FirstChar 32 +/LastChar 32 +/Widths [226] +>> +endobj +43 0 obj +<< +/Type /Font +/Subtype /TrueType +/Name /F5 +/BaseFont /Arial-BoldItalicMT +/Encoding /WinAnsiEncoding +/FontDescriptor 809 0 R +/FirstChar 32 +/LastChar 32 +/Widths [278] +>> +endobj +44 0 obj +<< +/Length 3039 +/Filter /FlateDecode +>> +stream +x]n9}7觅4  K]KJv`039"[MK,IH-Tx~l|ٯgOO~;g7eo}vt^-_''x!߉ KsU!ȸ`D,'O?6*HbdȄBJe{yP{Õ-zO׏un?vRNa 2}vjރST]{Nk|$m+r&}yʜWO_?Z7*έa)r;|w3_9ME$I%tqI@5w}7`aJRd/F*F)4CoBn,֐;[2䳒qD qF*FYv&tgnnjQ"RG4z?`NmO adz/~f +YwySI\1pπ 3[O>=]Z̎됤zZٛ;Ǻ[ `(0mc _R6jm䠴!Z(4@q);k'8;;l + b݈XD!טɆu ~ %Rv{x(<'i6uKͳ7p9:Q`&7]#[pru-K^)%-;>T+Nbio5u+ܛ|Éڋkf[t0f84*yx7"lE ~l.y(И͓4I-~ $4Mgkr'rErc\.XgU.vuUpY/9 k0L=]t 6*̯}>GBu !xv! |qE4Çqsé ~xvetgcar̃" Q$j]Y^@veJ0a2oLDveܥkٰP7.,0&lK#b\dϐ|U?P|ӌ_GV\o2_gt}M +? 4I=Nt)dX4uYn<2[̛\h$_U,}└}ؓI"%:/U0E0 RhfW1]&K֥@*P3c:t 4$UN*ڊ]g`f#C.SDa[@q(Ɏ lVDٰ֬v/Eek'pm + > +endobj +46 0 obj +<< +/Length 23 +/Type /XObject +/Subtype /Image +/Width 31 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 812 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F +endstream +endobj +47 0 obj +<< +/Subtype /Link +/Rect [383.29 697.8 471.86 712.75] +/BS << +/W 0 +>> +/F 4 +/A << +/Type /Action +/S /URI +/URI (mailto:stichting@alkem.io) +>> +/StructParent 3 +>> +endobj +48 0 obj +<< +/Subtype /Link +/Rect [456.47 617.05 526.7 632] +/BS << +/W 0 +>> +/F 4 +/A << +/Type /Action +/S /URI +/URI (mailto:stak@alkem.io) +>> +/StructParent 4 +>> +endobj +49 0 obj +<< +/Subtype /Link +/Rect [89.9 494.41 157.35 515.36] +/BS << +/W 0 +>> +/F 4 +/A << +/Type /Action +/S /URI +/URI (mailto:neil@alkem.io) +>> +/StructParent 5 +>> +endobj +50 0 obj +<< +/Subtype /Link +/Rect [175.49 458.52 247.39 479.46] +/BS << +/W 0 +>> +/F 4 +/A << +/Type /Action +/S /URI +/URI (mailto:rene@alkem.io) +>> +/StructParent 6 +>> +endobj +51 0 obj +<< +/Subtype /Link +/Rect [97 335.87 216.15 356.82] +/BS << +/W 0 +>> +/F 4 +/A << +/Type /Action +/S /URI +/URI (mailto:%20info@alkemioholding.com) +>> +/StructParent 7 +>> +endobj +52 0 obj +<< +/Length 5968 +/Filter /FlateDecode +>> +stream +x]_s8OU-&Mb;$wI&f2[SE˺XWǛ-HJlMhH @ͣjvY]gώW⪞$_NbotT٢9t{U|<9yy,E$KD)RF4ɲ~׿%''>9$4|nYZr$%2KrHN9Q&)'{T N߼LU3MFu3~urcr9EϰN~ 񫝆Aސ`:S;Wމ0sY\=rPRK L.Q[]1& n20+fiEsgw}K%M_>xjLKoC,ehVi)ՐQR5ѓ] rMhNkGpJ9M9 ػX[G.юs{˒,%c\]M!2tHu`]GϧphI+.`\]\D5SR1:sj>[^{0<8ե|GP*l)L0L!{_F XocVf2aveaLnQ)-S~ƿA z` UNk^TZ 0( +g׈ +Z'q& :ğ^aL΂]UK٦Y2/F byX:RLkRKXk&bfrM(T8p8T8h."M6̀q +6$ԟI8j B;Z +qkãoW[DG%Xe9+T) 0nrzK +P͈4V~躾Չy T@IJuT5?UvL$B~; [I&K*CB dSRe3TzYO+j/U_f_h4KjD>Ǐ%\DFsl\~ݨwJdQLG|E+$@5Qˀt勐8`8 2ˀM*/c[p][؀(SF(u\M`Sf҂9(QSQ(۱r…u^d)uʹx ڗS#h} i7tδFcNһ(S"F65x o%{|C6:>څ6ٙ}{r3vf{OwjaWtema3]ZV,%x\f Yq #K#p"p!䤄@rZh[wLiLtDyOZ7Պku z: wXZ\x_vzs`*n_FcX|f=Tj\/Oz@;ir_7]rĄP?Bc9z}u(fp/1֊wԓ@=zK8zY8ѝr7,lEExd酷|wY;Li*yWba}z&_g\tm'cT> K!) mgAۻքtnr'jƒj)#Vܼ̈́<װ=[Y-5E:H`’Ž/-,o:6ӦM},Y&ᅪvAGv3 q— +m=}H)dqo){)0hJ#Ե9\{lt 4uzAйPJepj\!aɌSD_,~\g&B:#GZ_p8R0]mUQY +Wuⶋjatdjͺ-/tG0#.%4;&\.Qr]죉 9q Dsǔ 4c-Be-R>tidf.OL$PӒoĊe{벏 F}$yv<}0`wJ{J +nG_@.խƤU#Ď \FxU^)q@G‚쑔G홐pGskkV \ + ԲԚ +!"[{Fp8!*q꧑1+*M..2LA%FeEp]̸}<Y(7/r= +6Ԋ :G M:8zFR$ +>zfӗ T^@~(sG "cG/&5.-tGNZZݎvcցH@ ->Rȹ}eT7,ծ+78$CرO&bIYNc&:x\¸=0BQ,/S"|Fs3F +cx4E:"T(!B\`x޺ds3|9B+]r F.x. Sltx߲#6_H")K!GaEg[TLiq7'T񓃔zF@Pمi-jk}XU%q58깪']=6:/V{MG3BY ۶#F˲$%tcQ%c:X»BJ +b6Y ΍5 JSr;=ݢXǯ@5u,B~>%PS +&#!^CnN̻|\9l^5PҁJ@-]H h;ԿQLx 7@U^+Su Ή_V<Mp#,zr6*8 +vB +LZ$f ]^:JD< D@hU%x $- RS NRֵ-MQ6- g"x!C8'a5*"eՏ)iY4ρ&e- +-x 3"R>r]Pԅ! :LYOԿ9f%ah{d?p=xO^^$B#a g'q5B2[[ ȨtQƓ(r,Cnwf\퀠>MɝP޸/z@jІ=B <<bi&Nʾ:G2$[ C^Z9;92#j!Rtm[CMuajs?mF5G[^[ܳ:W^,+t!:/</7(}Z-W ZX×,Ksy)S~3tm}Gvb9%lމ,.t04IJQBE(C)oEιz0@UPX[SQLBz2<ި5Sk.J5“PV2 8.50ˏ,z)-Ռmӈ)dD>Dk%.+|D{zܾOZ4+]h/ilLl0Mr2*-ͯW]ɋ,{cA6i.\!l7˙ +5unеZu#̺ŝ;s@]'"kMŏM=؂P넆8{( hrWH6+*z|otB +99hP@3)P U'`;r* B X[NCxDh0]) g݃.]x¶WZS\2]#{ނHKʵRKsݚz׌ FXmY^>Mݺ&a-ς#\v2q_MJcʄsc8 }yR_WA6@pڽăO] fA]nA˿׹bӱݿ_3L)xczኖꆐ睩1m- çtRxKG(JK&~{rؗ,e^qʶM}R怫{x2w}R]~ޙ1Neގ o X_d_j g9 Mg| B'c! +cM kO>;V7g\5 1#ZtRrgX,“p<* <*M͈\hMmB4z pRC,p :mgx_J01s,ax'N[/i[FBfȇnz݌䒖,IƄ@Q`9wRowɅbͼ/gzN $Bh7un'H1_k^8> +stream +xc``Q0 +F(@ +endstream +endobj +54 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 814 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +55 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 815 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +56 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 816 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +57 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 817 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +58 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 818 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +59 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 819 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +60 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 820 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +61 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 821 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +62 0 obj +<< +/Subtype /Link +/Rect [387.51 174.89 405.91 189.84] +/BS << +/W 0 +>> +/F 4 +/Dest [14 0 R /XYZ 68 799 0] +/StructParent 13 +>> +endobj +63 0 obj +<< +/Length 7550 +/Filter /FlateDecode +>> +stream +x=is6]3[M\v7E|듮/UӶڻǦyYM~ἃK߶mlӯ$|+˂%Y* +L?-Y|q߲˟._%EVR&KY|O}Hu~+ͷ^y,|~|b4| yC,T#\^Bht͜4u0w{Z[{K.pAE=Owm@ëR{R-uґ=GUrn֠7vO3#<nWYze> $QS@1<@)j $ +)h|_Oq[bin` 汎i-yThЖ Xl bAQkFN,Y9rWNԸD\;#%´`*VLaA;Zx~7^ wFh6xSr#9 =PHjۘO(Iw5ޫ!r/˙D*kzL`YhA4ʊ eH[-!;\F֫a`񽇍[/^c͸?Xorybt)?>R?Q]qWUOmTEG|&k4F'EZCMyZT;ȶXM}uSh9lQH;y4ߒQ|e|01@b+VEiޓ^1P 2+#+{ r4+Ӓs:Ӓߔ}@ t}u .*R|2kRR%șGF#,zx̺)\[6xkcƤnÝ.5A&-$w;q 8m4WZlh缱6 ;j ^}ҏ E1޴ujm+Ei>`f \Fζt2%j^eG^+BLhn{kr7a5[!ū-*tuo2 `*#"^Xv0og0xoUAŇT ! MO/{țe~44RuvV9z<`6fT *xF&q>_7Ni>p{3-JhjóagL%$i-D5 NG +3wOA娔;/ѪN@ZzL,ז5n@<]!+̕ZPrb@Fְ% +b zK)\dgCt HA]*BylO]i@KaN]gi}HV`'%yZ+ L 1:>a#^潩waX/0 8޾_ \wsQ.O *5p1DcZѷtH!63ru^WAsS☆\r' +XujukD6x`6<<ڍqz,-WC;6έͷSVodCNjpc?(ufnG&&yA$tлv}n,UmģBU>ô@!$r̘h݋E'PtFcRć}Z1Y`R#zƁO|+ +{p %HC-LM3`aXaZОcqO:pYkh V=aPi8BHoפ>> +A#܆[u =GaQ i +dž Jv^EDIw&%Fw +\#<-$`YHtQY`X&5jHtmtt)P(f'`M6b|+Rێ(몏'u{m\zcMұG kDFeW\U5Ns$>XcXڽ6VawL+̫'qz͒=**Oqfw#DAAtA@9;2"ÍE5 +2?24ki9tf}H5Os:  +1]-HUv19F[X,ʉC&X" )TwN5p/$;nLA3hqEH7!0ƺ zt6K2d2}H(wBtM.OP\bChuN+p&'+nC(ؓ +m3A=1W= +Nޝ|+Kĝ}}ڿR@0q"ut\I(? +o{Uh*o@CHt*olGrK>pn.S{̔Z313W8NmK[)7T h'=k(Ck~$0Yhn8fU6H{GAM&9i5~HMgЍ +dZ^rD-Y:Z|ǒe1*X~5Ar`0e!g-W_H=2ڮqvs[˴d\zpJyqS +qCLɐ!7C?& Mito>>+1<:VУ'h6b<3kD͐\-+0&Ns?ƛ19 VX` ώ2 +%HQ Sx(P﹢(rמ;o%c@׺bg >* +np!&}< FKnOn5og! 6״jDu{hCr |#fͦK\;Wv_ԏy"Dk=kaDS|T@*ʃ7Y"XA2Dc.!NݯV6rM_L}v6m#_')%QF*7}E݁\Sj¥)61hwAȍhe7Pa528/= 7L*!f) BHuX;"s=ڍKmY-Xа>Yxn +Dx s+Gm5ڰVu|[M^=wpP{T b!R"?tB˪A DTYfd``'büٶfqg\o\ƌ8cSUƌ]2y23Oiz\_?G. zUsȩ*)4TY8j/K5eVR ~o90^$#bsY* |=T@ގi; {*iV/bnƩ*23e*OIK rkpy]N{*7S|t٨];^6qkw*8ѳg3Ecf<3dBG}hExðM|TIeFbx)iD,F-|m)ldj @/<>hi|wE|/]l66Zο2U+9 {_2oo`:-Ju&/cX!MT2U,ɖ@xkȬ[crX&G1) h\n,>*'6ͱWG>8oJ,FEܹ؇GFKS0tLϲ x|g!(4&v+3Կ[FAeƳ ұL9|Ym#*`=_Yf{{@Ӌk P)(6 zFpBd^ A" eIi_^'&c^9B} ;1QmdrT1ΐ!sQeZKPLKcUl>g0d9>CgqsҜ+ځkC7>nק;?o8<6 $evIobNXZ3dbyKt惏CzXűWTT I*L¹=Tle PU,Vdk,fQ%]!YOL>@נ@h\Hs(P 0JqA$+ +f$ F!l \ >Ȝɉ=%~5/J\U*A>SE`8f} +@"cE+ HZY! MRHv^llfL t]8q{2 #P%D:YL[tm]qaw":Ͽ0_|7՛>]I~ un e\wz庴Oad`$aH(^'>TSs$@\!VȩlkzXs]czt>},CՇd9@XtkxL9*sk7u2 +!JcK:ϐ28 EtW{f=@{'48SX8 ^ ;:#I2tqnlD<| [T>eFs<~(z聏;+G}ז1 +i[py+G..AĀ??CN1Jciw?!D @9N) [QVP +ai,/!1,sf +;v@SLʎ4 I"jsVr_;j_?E I;'iR0!S]!كåt,EZ4͡`XN] +6.T3bNdqn:!W4ݩN؛7bڸSPtoi2L8nG8BpBBPf gffp&)%)çpό@ +endstream +endobj +64 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 34 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 822 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(&^ +endstream +endobj +65 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 823 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +66 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 824 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +67 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 825 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +68 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 826 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +69 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 827 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +70 0 obj +<< +/Subtype /Link +/Rect [199.46 566.61 245.64 587.55] +/BS << +/W 0 +>> +/F 4 +/Dest [15 0 R /XYZ 68 611 0] +/StructParent 15 +>> +endobj +71 0 obj +<< +/Subtype /Link +/Rect [146.65 515.76 192.83 536.71] +/BS << +/W 0 +>> +/F 4 +/Dest [15 0 R /XYZ 68 611 0] +/StructParent 16 +>> +endobj +72 0 obj +<< +/Length 6091 +/Filter /FlateDecode +>> +stream +x=ks۶3ҝ&^9xv4;Mn7{?(6kL7{@Rv#@uI$y88o۫E~}tuˋ2_G_׷ewۮ>?}ҏm5YE^UYVdVY%y^lݼ|e/N_8e^>z.2"4YS>^]ӷ~{ůl?^x ϗ/K>O`Es3D^U]!2BU Bnr?Y3+ g-|lsq_zh1&sQhT,VF{&ZY$>oU6[7@h=m3H/.1,C k<:LV8Y<@/HےM܍XWY@R`&΋@woæPԀů3ڳ{0BR܁TY}~XPpMV\]gfxw:^ès^jQ{1J=}@naUs<$xxK}v%E.E5 5ȝU|ت N@%p[{h(Vg_(*'nHG\642?ƹDx֮:kS7K&69}zU|@%Kc4CKfds%%U9Т 9Jg?vr1 }Ca?$Y^H<~:DH5TƛQTſ>cKowd"Zߢt3Les.6zBoeK?0-uF:sAjyi/޴ٖ%Ӭw0+\%x_y +c  Q, +ŏ5|WpIcOI{^;-^*?KRI/U<-+,-\Fvv# +~k'*%c$ 'xێh?攬B!),DYf` +}L>~hb2)C /\V`5޼Z46ɦoyVC +t5//uU+kKZ:{l|dLjɕv20W׎WhLJsֶs^yࣱq;#Jc(j\0Dڞ7.ٴqyꝌ_gF״&> ?$rU"EeZHJ n7qn5&EHl*5M B[򳂶Iحb?W-ߐ1+4& +4^Х?_ES9 NdB(N>W+hcU6 tĖn jV̖+7`BȕP>dxV:ZBԀa!%འ.F22^c,z +l'To) +!m7:qЬUA_v&'El0Q.\BEY"-n%D{Sё5`'RL4O8Xuo`|H1Kܣ\,7bp%a ǔVN\{F!ޗaRbo}f s1gNP^͝k-@)r-xlm3;W!~21Ů; )PN{d94gZntvֽl$ӪL3ƪ {&#Q?&BR\n>h'V7Te1Q9j*0Ed^&( O|;!QtѦ:x +3!"Fݮo}ۤК<3D2S?q/IDay°Mup' Fie}pS?8Ĺht@~=iD0/\^دN|t U_OY0j^MƒDu]*\)it5 COTw)F1Vhp4[ZT|RB!}vĨ?ɧ7P{B9ʫOt)w'[)c!ՔCHRQP&[Z0AG2j Al4q֡UՁQ̮(2-*y0.FP5?Ç=Q 9eS9@_AEn◁ Q($D!bT7_ Ea}>B:5J!7A΄yQr"IXQ{6qQtRMZTw+4u^6Q݄mu{17L>jvH +3ل޾!kw?gAϹ6 0\bVGnV+rSմ~֫}fJbm*kڮ =.iJǝ\JrzLֱت=fZt´ӭFt =7 ^gm5sl@aѢlZ]@jSȚ=UZN3׎)ʉw'jDF s& ҟG\sm98jiq䗔Xaz=mcUt# !aDU&Hz莦޵=>ǜc3 `hUl⯣#! +BJ?k>eޖeDI3K*Pmp'ʩYcR}P:$sv3T+%ʼn@$N탏BSJ& arRC`SUWH!X޹TkסM6gjb?&XLq1udZb5"&Ƣ["MzcZTЋ*0!!,CN59`f*T:xMKVy Sh304L02ya!F|8ijqFwCBEtvWOtQKl92`4F{z~`:Ie* +(S"mB"NHCHOmj2!14{D|ر'`͓BG +A)V<E=>ڷĊ|Kj3T8YpBZ$=_Wۏ3i9MM,)*~mlWku#_Bov/* 1$ 9dL蕶K!}rԗ"sPK#jt\/i8uOg07 +=a;6T%G®bA*fW@@:zk棶꨾гE1æޓۮa^vQ 1&+kVSxfםV})jMGBi?A"cz5홾*'oljo!ob׶KZVNȧnKq-5F eh.d5>|}_v|/V w=rոF{J㫱%f`FF[胐WטCrܽFt#1z ?(J[Z4^'|r2h6RVHטS Y!mlFo9.EEHL{wfTkePtH_'Me>)O~)O*d<1}(xJt2xBdB}H&rT6݅Ԇd BOn F^vxf.^=dvSu"c$>)z#-6n oBy;QN +C$hgU>@GoAGJL qG#%C8K=z̹V>3$'|ߊ')}\vd +Y$1Lݮcy`C|˓Dc wr:~ +IxOJ~ߡdbDmnW=@c iq`&aRpf^{Ԥu׃7%:[FcaT`SH*[xn"tƾ:0mA +E婕;ÇA9Gb?U&rFI1_B6xpcOR +QW@od14g6jdÎ{tejJIpu4-xoCiJ]FWx-xhBYjmPJs_ +endstream +endobj +73 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 828 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +74 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 829 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +75 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 830 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +76 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 831 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +77 0 obj +<< +/Length 6471 +/Filter /FlateDecode +>> +stream +x]Ysȑ~W$p'AQvG32EƆx _]W,+2ը\/,gps*Fʬb9+}׏Vpv?ȖN7+.O#050\6y3D^VYijwoB7eh +U C\E]2pE?]:ߩCgc1g(>&gB8lp07 k6DgEysnU60zɯ@U(WzWZ\ꉉ/yqBEz{yyt%{Z恱lntJ* 2>!})pRɋw!Jh4g?dHgEo٣UySٛwYæ]xwuV]_dn}B yE7YbX{'x^X::9cgaoj.&,0r,c21[PFyh*u>(.Hϫ\U>BT?|y-FusAKJU.WaP.B%E_x'W2 Brzf" | ?(GW#d"O+MDA?~9UXZji=J- u"%ӥM[;@2tqvxVwŏVr˺C>K>AK7hD7 >Wݖ-H3bqu@e<_']V!c ᾯ$\ +RA0z₩ȵX 2+g-屓8gpc +eބUhZ`FVfnpYOO-ʛ8^Gfq7w-Օ,Ţ`xL !ZDx"Zm?VK~=s--n>3ήe%X7M` hf^~Utp=6M8Jϭb*W>t$vMXƇJ]w_*>]@{t`eę lhLkXg)>Df3}&`-MI蠞8 ؇QAD˓NJdJ4B~!Bp.*WO=FS@h+`[$@%ըvrؙtFurWgBdEL}"\`N +?9.\tk'ar}M f zK6'i?)_Z>2rh `2-sX)Qш?o&^s24/B5 Φ*4i CnX5f{@RC.lOR]'T"x%ߕ86רE6zPutm;O@qYY_oF9*/FޣsTz G(][egOɊ|\j<Ѹ߹ZfDuxzpџK5d= +>Jb"+f rI9M@Zca-Yp#]nS_nѠK:ΎnՉ/.:L=J(2lESc#xJ^t[" +f)Lb#YfanP5z֧Yp g.&%uSSI\XMki V^,0j>"XQՠ`6Np1I16oZYvE*9״gb:WM. SDJ d.l@8^/"ad=BŘŇO7~ U.A1)}ԒGx8hYD?BP-Ss35qxCL߃WXz?!*o){d ܙܓX i.%h^ ;2A-q\9/XaIY*ӂdrn04L'Aca)l\IB*z?ava@I8-y0\76Lϗï{?LJużGJD2*/VV +| l +|J>?_ju{覙6J\]F?tF6H_p?S54s`uXwn#i>H ^Vx{쌺Zh6e uA}n`&9WVG!hVE;zHKMA7*۩QLBX}STTIo a3 QVrt11_jtjzJPǘ(.Usd݋h\)`c=ASWt-0#Q63&b(ߛ)41*]Oh~+*J(=R!,%$K9_:n]E /Ц P=QMirX^.!Jam"}Ŵ}-axS[O@mWx)s -W F W6H$"R  iYq*D0>%7,@ߠ!Rxg7\H1R&=㧟cbOS@Q?߆YI+?;2P>冥)K]) ǧdMz +sl׹ ;v\\06 Es@r],:jnyL\Pݙ/.zYc9:IdG(gxnR/{n=BbF j Ē+T}9U ?jO׶H`t%Q*Xe';`b)9E,"[ MZN{)I(QEtFӃ3А(!-(.mj +sCNҟPX^ +o]@jgW,B=* r^(QN>UޓWTBѤeMBX36lzN8n;S +UHMB>FAR|&Ѝv,Bi Kciٶ0݀M+:I,. +!F=TǠᘌeOiR6cM5dl4[%p35θYlLupА[i:,ǠݘM?dfOp-A]S˵]IorP>T2}ӊ'u.{3I՘pa`qn;DP71[UI|Jq_`oRHd$Ruv֓8N;xפbY"9 F)?'?EH8ErD2ne^ +nͱK8!v!>7< +@cLi@!Yhda7V&+,֋IA%x)vKma8zD].˛b%8^#>*]rۑœ~ +1\-kׄlVw͂L;'JԦ~(fGOhxCOVL]aD'h`=PrkiGU@*4xݣy92!P{\(ϚÐ9KT-S ?cUu菶i{/@s*0u;Cz&H#>-dtlP4-)aע] Bs;n @)i)UcyM+mS W~M\4c}:ޒ9h]AOck n+D햧zږ )rf +L<)`%$]%컄vҴL0 $ICcb8c_I AL(M5ΰY.no\a/; 40n\\Z]Z +8Q,wF=)Y{&LS9T@f)NH__B¦>%:*TMWT1S`,d̼I:c*t Ɉ߽0@H#(,9Jsi'`2! xk۱۔j4Eu6`"*U*O D/0v)B1.c"~C2|*z[1vUi,8I)%?S''.:9goܡNx,<Ą(I]$}Jǿ)NWá +dE0b<Ϗ0ڿ^58r#X~_'o޺D}^d.x@oRVל(Y!4 ړ2hO:NN52IS:k%8sLp֭/ۍuXyx[׆67U/ ڣ9¿s]Xj&qlh^-;-d_ռA2wD"~'ǾwcQ찙xz@j|C: ͖uLbd_v 6%n,Tf.싉k'DQ0e#˜AyHhiގ}e_1Djn~Ut[Nع=s0ftNk̈́xw+KhߟPy3\mxKܫǐڼ4<84| +endstream +endobj +78 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 832 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +79 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 833 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +80 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 834 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +81 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 835 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +82 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 836 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +83 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 837 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +84 0 obj +<< +/Length 24 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 838 0 R +/Filter /FlateDecode +>> +stream +xc``Q0 +F(@ +endstream +endobj +85 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 839 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +86 0 obj +<< +/Length 6016 +/Filter /FlateDecode +>> +stream +x=koH?f/>=f&xpEYE,ŗ]UG=qSIfUw_n.y՛ݮZ5WnMC}}w7է޶ٞ$g//_diʲ`IJ'i&m9Y|qzū,)btYZI,eyrq{}HkU_߿|,;勧W\9Gahx WiDIJo@ !O<4hrV1cf-njZ}yLSάc2֛]լo$mYIU%sZnGBF(LCg"*);1a<Lccq$耕U E|@)pR'QfTo!L!4W?8*ϊ6.$EGJ{$>m5ޝ'٫d֬?^èRkѢ)(}lL57bJG@.E6_!WѬCSjv)h1/4JHmן +ϏWeK:xj嗺xAUD`v8U3 n&V56BBja>t!p`vqkڴARX^8:lRJq P1hv!*gnJFв|.bR6g0"3<)$];W#(s +,nT.Np'v S?D'h46pioeZ5{tcDbllZ'L[^Xdk\-l;n$ 'hy ֋g(@|Qw"M&`J<@n-QT"tEXvԶ_m&)AvSґ^.gNՈmi7%ZPPd^5 Mt- KްP`XQZVr(eofNĊ)y_5B:5}⑵; XeFF {tq.DԐ_sT S}"Sӂ S O>u4,œ ž!We7w^aYͯ9VVFfn7zF>.c_>k4NR5!EuK&\8idvXx\Ҏ|n驫0\v6;_iEUX$E(xZ8mJ;RvqޞzrZ',Q$"\oxk;!cژbjv [92y'i u.y%XFN %mo7Dz!Y 55{ t9|gh9+H=-yR_SixfѠ[{yٙeG"K7h1(R/ƔsT9Ѝ=1zDɧs4*Al>10*ޖ]A )@_M):= 5S*Ǿ,7}hT%-[x +xV{kj&89l0ϣC*EZ EWad ! hhQv!VeQv9gp)!ζ ^ +/:d8SWYnҢ EPAn&UOl/z0#HM|PzXpTCH//2I*5)EUaIDb=0\I4wy3PF]?_tm8>S3#6s`j1(3 ȅJY˖lep?Ņ#~wv [% Ko֟l]'Oq*0萊 @`D!S.HKptYjZaK\DqЧ) y6Rca%i\&8h2AK RSD7dj8T%&9#LkMi''0NY@_x?},Ԡ ++p(I(EI5]@:Cꇴ1ALzO+;[J$>BQ<ž+k%ga7u6*g[b;6ܮf]0TLJ$Ҋ aFsTnZ~h ?^R]M~lT2zw…n1nC. +4F4#șXƸ U*U?za(RBiSix`a^gr'.1/K&N\@cqgZO_y"Q]zێKs 7[z-v','k_;UWO^ӓ!qzCL?V7o{xCV[}Gmh}U#-\1U輂y*Ƚijg۽3ƏiPbBƗ;Hn2+iὰpx=u Ykkk<mW뽋ʾs\#.bzZ7͆7`D=JaJDGq$#.msu/f@/|Ywv;2K/ Aą E? ĔS`MqD Յi\4?HVs_F egé#3GЃCXAyL<{jt@Ti3#bsd kbW?yvl֚m%'* F x땄orባre¾W\A?-"@Ҿ D~dl5Q8@o;4T'$XZv@tĴ@Sx6x5QT&SPcåµ"ύwN ΘMdnlF;Uvw1' +lc6<;9n>,nBc<q-I2Nf$ 'YˌdjRKǙ_>ard^TCQΤ$p!9E|v;͘{ kS2-UR}畩aY]Sd\p!&gprw ] JMķ.pF'YXKZIEzԾtjJ 2vMcT"Wp"d?~Ŭ2zg$8K֌^Z19js^>BV9ʇdqGXd_xWX1ٲ,S1!\1pzCn9<=0w؈%}a ̋P~?7cF6euSI>|kQ8T$1gAĘe֣T)=dApZ(8zL=gEfaK,F8P7ī7US(L#Cz[%||?mlTG4t:eB^Pgx,Mg,ABf<@=;{^O2[fcmZpyKV,eO-gp%7m _y҉-!` ʛvl7K2z?$\ Y0x0/gl]ا~qG mmFt2/V,YtwUhfKMPjNޛq Dl#|)VSXxVRFgBhۨ/% GԏK4/5'J%` A,>8 :~Fn|Pا?g 66WZ#eH9#_ʙ@s&/`}'BZp?KePa&E@3%~Nhih]]TjUWF #ArhȖR6; ɺj+?``k|!FpFѤTb-m +>mE {!%oMo ٨=VK.%Wbd\5qݵpu'6pynNP)mU0BX Q^C}np=ժc7R`\t&9v3A/&zxס/PʓCklDّiCf蚾}@,:LJy`.IŹ&5|wW]k/Z`9[{lye r{^Wʗ +a:@|`9|gǬG 2VjИB40=\wi3:ImM7 H YIGš %~|; +/#0_fDSj,I5Qb!!8G&'*K jӞAݒ\2# h->b 2DQE *Sl+D9ƊQKef.dΎCB:&嶀*_6qK0.*0 +`Ρ^Vx|HȈ8*zR3h0> Bf|ùp]n fie'$WLmi6U{Q9?jK}M*̈́cU *+rM4ACy]iU ~|G[[ʴ գBE1)ʡd_{$vbgtEGz Z6<9>Tyؘ +!}6QP #O~mY>׀9G:8 s>$߬[E@^ (KvCm\x¥+2FqELlZ~1Q`7L*>kzf$ň/W,u>8 l*Ȩ ghiPV2ݹ >iX)6[J$\AYFhjzOZq>zL>ATb9 ++YX썭8b +O]*z֫&P +bG"PaePTI `6ԲlKۯFjPTwM-Li>N =M`c<ֳj"Fɹ{/@#K?S>nQrŃYeW>"haVN8Eu$D|?I*#6C<@AI ,/@ eW8Τ Cv +!GNmqZ|'"Thlաn +endstream +endobj +87 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 840 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +88 0 obj +<< +/Length 25 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 841 0 R +/Filter /FlateDecode +>> +stream +x1 Oc   +endstream +endobj +89 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 842 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +90 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 843 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +91 0 obj +<< +/Subtype /Link +/Rect [281.79 467.97 300.19 482.91] +/BS << +/W 0 +>> +/F 4 +/Dest [11 0 R /XYZ 68 390 0] +/StructParent 19 +>> +endobj +92 0 obj +<< +/Subtype /Link +/Rect [170.64 387.22 189.04 402.17] +/BS << +/W 0 +>> +/F 4 +/Dest [11 0 R /XYZ 68 390 0] +/StructParent 20 +>> +endobj +93 0 obj +<< +/Subtype /Link +/Rect [403.03 285.53 421.43 306.48] +/BS << +/W 0 +>> +/F 4 +/Dest [12 0 R /XYZ 68 710 0] +/StructParent 21 +>> +endobj +94 0 obj +<< +/Length 6192 +/Filter /FlateDecode +>> +stream +x=ks8S/W%mE4vkskgo.~LD[މE,ŗ@g^n"8^FepӃodYt$BZNEKiYh +ļ]`5H8d9l`]IQEVC]v| Y&H**= P㣶o9 +ݾ۵" ma%%)d/=@# 9yo(qceFkHjAƋ3smNFQ?}r_q̠3 +P1= mEGMKcg؎V7A +5JLU1 5W .aC?(K)0Jnɼ;%Rw=pm#ڂ\b_ '_WG\ӁL.6QD+~qK[GsJ l) $v3"j(HI*Mr°IZ ^1qc#$ 8U!'dwdzup~*N{!m^]I{S 3bƍB(Y7K7$;B]7]8lȶz>[#R51FAnBaPm8Pni3cZ ]m$&Fuп{&v'+Ç ,MawIZ:BjꐃoFcvְRN#Ϳ"o ZU\J#s:MtQ̰=t!fdk7 pEq[7K :ZLmؗIorp<kPƫjmFވ촸ɨل-wc@Dj66D1]i+|9~zw1;ÉE;і_RRqQ52跾EDS*=%=yЦG=SٗeTOيgz]@7{ӭuJcZZ[*BAqg*"v& +' ` +<"uFSBqQӧ: +-BD-Y e K*ٹ|;T_{O9W6??`}f1Nߦqp!ZȀO_:=$;0Zggbzm|kwĕ"~OkAhA XJtPKEm)2f(A" Hn\ ?ʼnZ?F0Lهآ;z^x%VG*f'E<*gx`Uz'^ !uh̞\zl`@ktor~Oqprw6`&1=3ھEtck7Һ PC2n9buJs_ Da0Xgg`M5@ +Ǩ0ݖbD:* -ȐR)leW1H6 r>SF:;g<{FPɯOQ![N8X#(CSHA9s#68FNr M'nPXw@@B`g9:5E혎 +uKiڽb"Lbs[C&ۛQE+P-Đ^d',ls7$eMgbYWAT߽B?ŬMɲ| N'ر_i4DY5ܶT%xg[hJzaaWt)q݀i}a3NoLegsgDٰp5`8Wk#D9!]A9D]۠.,lsŦNQHrs>y/2 ̕S=vmtOڰsRk/ =@˭h-N" vfKY;wv_V`OL(/q3z#Q6cXIjl7|B=0 +͔Oz~Vq,U@8)b%1!ۉ:CH-2uЩU*ϷVIo6,w^cw^'yD jO.θq*= +{۫[!+j'TU#zt`z=ӥ8x:,CQ!,*UBHDW=kXcHΩY\mcꔟ=2{ +*C͞E2sQGW,?^1 @409p+9~mke:$⵫0ǼYcVq1_G4 mfn94CC2ɔw< +.@ ƒ'%0Ws"]!d+>q' (Wq_BsZJ#BBBB*8$ߙx&*M@@1sϿ╛T߹]d2@8rc.7=N t,1Z-%Oԕ0c>TS%/w Л."-i̽{DzsZ1~3D,3#6и3<=αg(SaJRx`hPQ5OM}op2*D}`-釆5?Mw[Oaq/@`\/ۅ"8& +ySQa.kD:&Bƅ h8ǣα@j6d(4փAx3fF1 Õ-iB DvWeA^̄ }B{ xgt!#fhy(G\m1~4Z!Yĩh4.¼ 'Є>zQsmYL#ͦn|Nʮ%GufꉙuFebz0=GZ2(b4)M貛0p[zScÑHNY +/[CNؿsL@=򈑘rZW#/,xDuEE︀Qhn7mG™WeQ^;]ʽ +1^B"5 8{.o1cL54=UM5Qq!>x B'SAV$r=)rhTb(sbheQ(L8Ik碙-ʹj,R p WJat(9v=tN=F6v?c +*z2KjˀPRt6eXBg&{k+A8.+C;ѡ%2T +UH{Gf,1Lk8Me3֏M#IuXvG>Dˆl n/SQ"\׺* B%1Y;˒Mg T1 ItMҩiD\ t)}⡮!R$}4PdH`p#5&4`*p4 +K`nu5Gd ^M#D ˦,9 ,t!'G)a%Wc?H4 BM-"jU&Kfs o ѠLsLВ TR  !GM~tq }!:^,u#Zh DcDr +::Be 3%*b|XM 4(ňcڄQ1zk +:<%\.ު O:x;+ЮUWKZ z(D[UT*M~иbR{LF<8v;(VP9f,v-r%),{2\_P`3 +AW_ +N–J!e!#kő&;3Lz8{jXw,?f"MɟONT{) +I^`a@OUfI +endstream +endobj +95 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 844 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +96 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 845 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +97 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 846 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +98 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 847 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +99 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 848 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +100 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 849 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +101 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 850 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +102 0 obj +<< +/Subtype /Link +/Rect [163.15 733.7 209.33 754.64] +/BS << +/W 0 +>> +/F 4 +/Dest [15 0 R /XYZ 68 611 0] +/StructParent 23 +>> +endobj +103 0 obj +<< +/Subtype /Link +/Rect [237.63 473.46 283.81 494.41] +/BS << +/W 0 +>> +/F 4 +/Dest [15 0 R /XYZ 68 611 0] +/StructParent 24 +>> +endobj +104 0 obj +<< +/Length 6013 +/Filter /FlateDecode +>> +stream +x=ks6]/[5ċR$ͮ/}HHif2hu7d (+D3h4tqd}},엷Y]ubh.V˷njԛwÃׯ,+2U\H2ԯ_W_z ^|.2"4Y}Q?~5<8;o}_f޿~jw˼=6~rUy&K?ZOBWemv +{xel.Oj\ojv+e0!ZrtFV&SjkMrTuIzڪ6B[Xjh5Xe4˿.O`%&1:ȋ*gogyr%{I#>lx79`TeJ.Ev3"?;M 8$~ +E8|>e c2+QE +I:ȲQaVtܡK^eq^譸0 A׹)Qk̎Qp8A eiXۿ-g٬^{V*@V CHU(`΅4f\NIY"i@ہUAĊ)Njvt `ޛYK78Fk?ײl6{!j)r]{"B畊êbx~VH 26`ly@,`ŷj! CjJ&vAtmñv1bOu0-P8%g{! $UjPpDjY[mw U0xunJ֊Su  +!VCrEGOF 5g tspr5#b?WvM\l%̚Y] /?=>a +)N_][x9IbBlt]j`qObV؝\[yz=+aHlSZR}2$WQ +k{Y8"?'Daܸ$J@hTc'^QEN:ca4BjpF1Z`?WzRx^ +zrbۼXKbUaSXܐ 5n{`mK6_Z ʅ7['n!uG M}ȃyg$ {(EeJYo-ԬQYy1dsYrk 6ƪJRV%CB|e%fĖ /VrƦ򍝫7[K@ w0P1.gSK@?#PICrl[ 5+T +bq8MRqзA5hF}D٬Wv!HGzߤǂXEH^.\ŘnORޗ˼BI]E !~!QPњRxr-vcMCK,ylkVtNzb*ױ͹ +6ЃL=o)9C(UӢ'χq}k0w#h0xD؍b$#s)tQrma~F~?+Hp[GlOS3ܼqtPc;]%25l5^JUgxqv_D1gy!6$Br. +RU @[54P|SWn/1zQy־yJ-HgeAFf_A̫ +!-Cb@FWȋ2J5-+Q.<=j]1er4!tַ2H=ts-ȜSzа; qD[PR kɅ` tVERҢ$/@ajE%i$W`Xnb(>v7&F1[u w UզnC˟sՆGvSHKi.ETLy:vHO^NC7ma*5 N[V Ġ N'AU?cSUrPY%+@*{D mD+!1H2!0"@w}WK]I^ul.0(E|-wҸ  c;"XSnQ4S"3ih A~or(j>Bzd!}5:B ++BHIN[M 98.)`Ӧ݃GFXр#qv*@D ~J[ťX{D=DhǭC +K z9P\d")ۘnfXlH{p3jy[HwG 8\tQӟ7R2I\_ $~ /W쟦 0W +Œ}8>p,>Kӎev*Js ,n ?&a?7nc8JtxsXd>dbH=##;>>1"c*72s0|K>M@au܊Z)3Q!ף#-m-?,nܸ̏%.߻%7L:} AljFuZL{K'ߑ@ji1a`(t.&7Jk Wm50)O*t}޼u# @]pRUJj{T-^LjA,OBHMA'KiYXA{D<%lFK^%lN8 z Xd+n/Uu }QF7Y3Fuz62ON0y1mZAyTB4:`INԅZy3UK#Ȣ !yy,P*_R!naP +L3GI^Ybע˭ȇ7q D}\:{)mitń@bR]׭)L U?$r_Hiquv{>PIf0NQn6VIkƊv6V8}A +]J3n ^Q0$5$M%9+C77^ygoQnߓm]&8X 0=_ƕ;$0SL^M$%ffԫ:ԦyT&!b`E%"XQ`kq7v*sm.][~Bd{aAXy,|Tv?vK3%t̫rb9;^ۮ$G ߺΜ=a8j^FueyA9gFP$Sa_iv8m_sa`MܑszZra,"a#wȉהX5gO+6E2P Q' +_ULԟ\oDk"bk͓eMcxGGe+h +*$U8?ֿvur +|۞r}~O"rXl{Y9w,MzL娅 h{YϟڞV4fe@S%+u9U|R.w}[6eu*e5! rߥ)s^-̪"ыO-%8aya_B7]p嶶ta5>>5VŶG9ySHA^ YCB.B`K:YrVݻΓWϴƲ5'("tg\ \-A4F8Ukݕzg:Gz͵(#2 +K^aX9˻Uyk\=CWV-ajmxu/N,H1{|ݲv +ݑ4}r,<ݎD3/ۘQ /&T~ -i_٢ ]49oDPZk|a-rvLS!.CH*#+/S3d!%~{=' fM`omrl +^ b,W:d3:^VL&)%-ux۽; W5I@bTmBt}J|!@+;%" +2/RˠXuzЊQaj7cUFu ^ >TZJػ$W@x{/<O +_< 1P* laA\+E07pt~"`\eR)#m&FGBLGxKih4şkJ S цH@6-( 2tݟFy^E:9/#NU-=YtR᠝4ʩ4K$ʊ1L_B~DTIf[NQ*6%+rے^DCSauohE>MKCl!$U`>YT3x}}STyώkcMUF`֯N~n=r+mU1VeAPⴡ>GȎ[}dmPl+nk=L/wV.LJWMVF;UW$4,OnpcZٔlu5RR?F +endstream +endobj +105 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 851 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +106 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 852 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +107 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 853 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +108 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 854 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +109 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 855 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +110 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 856 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +111 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 857 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +112 0 obj +<< +/Subtype /Link +/Rect [429.01 219.73 475.13 234.68] +/BS << +/W 0 +>> +/F 4 +/Dest [16 0 R /XYZ 68 285 0] +/StructParent 26 +>> +endobj +113 0 obj +<< +/Length 6368 +/Filter /FlateDecode +>> +stream +x=r7?#eJJHJ<19\jhPv"Lr.h4}}^U7mwڶM6_n۪]7-CӴ7ѿ_H+EIi,xTH'2/_ߢW/_E|znN"I\J,fYtQw!nՋ[Vo?|q]勷}\G~hxI#q#8ˣ$N˲,o2,.3 !  9Y9`|֨OkubLƢp: -;8`aQEmzhh9[7ͧZ})"L`txs'"NJ9;u88LŒ=d$sU8o7<䲌pPoJ]|$44jj. )9*PȖ$Ef "^U[B~|%Ѭ.~&{T.E֭~K2ό$?:EufJ9*P/7mԓo (e49$Mj+Xrf}gXTUz鶆[dt9X_B+kI-E?伌eGuͪôuxDr̃Z(YTH>H[#IQtoʳ +eC+mpp@#6Y,\ct| {{C/r Z3 P2 ˳8Vp+X^*ل;Jm]^!Bx_*sXB1g*0ljDWR7m`6T޿Z:hP;BfھKmAH_|E.IFD@C( jEe)i9FW_"V5HMnu? )#V! @,r0\$CiDv )%PݐX@14fR+ɬ]u*{kpŐAvX} g~94CBxok"E-maͦ%.Wz¬ M{v(.hO2cõVOVNe_F%zfI{rQ'lǨڱB.;Ôj,G𞅔!uCچ_$1O=ExHiDZ}!]\{ GZ +Bۇm1ըh +_ؗ5fi)dʑbEmÔK,VkաE>AU]Rτ1^+-5&t~|[ x@OHASJpniyBs&pCVe.ރl%ug([R@pU3`fRK^@d4`I +k[waTfaW x7sa36Dy:}W vCO 7&FS"j +i4Т4 FQ;Z/1oX>(4a/ bv#D8Nusca *)l.zgPNbҢMBk %N҇_.Uߣ~>ўLyP*/p2k+P窬#- {>|ڙ7RGZMQJRAm&VIԠS4 Lc%`?v Zu=oxS >N.4Otn~1=3HTєD"s!䱹Bxv̆QA aqSJHPwxچa[i17'Eƀ?T3 w6P ѕwAA wqthDpOg uw =I>ЀN)`Eeņ/ /mXP>+y ѾcZM~[I+[GT'EZ2y'6 Q|jAHO/[8N q|Iۤ\z)fULf,ܧ܃1&\^G#M8&*Qz[$x`DžuA5:kCiUwjl4qJ&ڰIWV(]w>[;+Lڸ{CC*< 3Lo I]hL%EmxM +2RY&(m "V +a ڃ{毖 }]ҥԘi` 6_7|q8@:ʨ:0&(˒qC*ЍPOkܰ6̀sdEĄV~o(Y~B3ŘZIWYNEMeĒ ?\z5zKRl9m# &J%]LVɒ(=;%,~ + 1dj3~|i/B u1o$.˘RL91C^JCY&(D͓Yia[]8P{[7{5^2J +Uߵ W~2rO7ucyg bPh|__<*D$tHw] wgg!UaXN{Y{e'ZR|Q~ExG6IQE5dыXh /=k4QF[-m0ćeh,+8i$ ݣ{q +ѵqAb _" ܷu2c\}|ZH̓1dq!Ae\M"<$lBCޗļ0BuChv'Oe +˥T ė=⛨2J~O|yK3I +^9fl'}%&}t%(}P/ZkXuݞˀܮS7.x2̩r?j8h)gX3̮^[^7VA.ೞ/WxOYm'Rϖ0]ٺIê+Wo>- O=R打BEDQ;wN5St'e`꺐>;'ˠ +D7u,"t% G/)_o)"1ڃ{p0e |ë.d I8LJXk_a(S&M4 +1IEap DwƄdK2k9أ$-'+BǨ'F0+S+"t l/OO,%ڍV0K+ 2B3qhJ +pT6kY_;o+L1UĨ5!g(S%1ǛڄAG8pL:x&ĿԙlQgЙ13Ʌdy+.>:C_`es>b1O>gL. E3y >:HԻd1ZgԖ@6ʤzU՜c/;G&f} mڛOƁvlǂ^y/(|tfG9I*b0$?7qtuvPa_?:$KFWDEB& +,TK2P>6<W+YoAgK l)਻~)i(lL0k{ eL#+QO)}ΈC6{YԔP\K+Zttz *섰QFӞ&KC eA:]M}~eWuT@fy2K΁tfA锹]"ALNkw{'2RhHI*|/ ^`友~&oJ&D۩ +bً61S'>D$d跤N`P-bAE WFtxO*#'hsA627>? dj`iN>A(U*@I i%.$_X7P {g#@/ D@y@B^IoF#ؐ> +stream +x1 Omo N +endstream +endobj +115 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 859 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +116 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 860 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +117 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 861 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +118 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 862 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +119 0 obj +<< +/Subtype /Link +/Rect [350.09 656.35 374.06 677.3] +/BS << +/W 0 +>> +/F 4 +/Dest [17 0 R /XYZ 68 387 0] +/StructParent 27 +>> +endobj +120 0 obj +<< +/Length 6470 +/Filter /FlateDecode +>> +stream +x][sF~w^2!HR7[ص`$6@{ vS M✾w.}nݴWCw? C{uӭayCwK{}m~{~9G}}_/_TekE(-jNˊs}/.B>y +Rl8/),>޽W~qqw/_|\奤H6N dMh+*R4MS#͟l!Ȳ)5| \͒/ZrEȢ['+Bn+7x\}\TyYUIOMo:6JJO%S`&pQIB>T_v V_.~nŢۮ޽^^;#$sFi\1-ą +!$z ))URR ˕V,Wr4`6%$8bkjTANۥZ<³'O N 'pL+"A ڍpж0-|S83=ze̹:0H~hRxǑuDm7+ZIp.Y]oz!m~ ~gm;~{߇/uy3a=wOOG3@[2ͧ׷k"3ev8X˓Q}Z&~LCo^ DfM="1. +?La]6f|T+ӊWHMJͧs%zJ/HiSL?a-|ݷˉ0Eu3 om/a(TOg~vn;ѨVZ ѹqsg ~hw_OG 'UL Yg2xlஅ?Ĝ1J,08PBka g/5 +nm'~0eRK/'gjF6pVp8pxֿ; N'kJ1#/^`1 *z[- <+'LP'y q(#x&c\V fJP-x\p ]?O*6 s5nB!41s'Tswc,c_l:x1͗רT0W|rE '9|}9IVAxNT͛C/_fpŭ*=S8B5ӇY`hel!RFM?@Y<%=_l|kk +CO_/qKU6WN椻[*=8@uW &L6uL~.BW|Tt%ǁP7߻"sIoEdZ5B/5Z5Mi&]_i) )M?0=c%+aOECCC8( ^K& ԦyeHh6r^Ac(@(zrwqNWTH[UVբ]\kP$#> )Uob57wa0e(8җ[/LBL g-Z渔=f@w-0C4[gଭ-6ڼ'AsIS_RZp{MsMB@wE ZfRQ,CHdDӏn 2:,Wv(; 7Tsy!%#]|Hb<LLwHx<'1( 7i1è@@TQC'~ FkÆشզ.~}9&9~Iu򠳆]*X&5?yVSǧ1ĚC"\Nj;t +4-v}obSz* V8Ska#J) '֘)(O)=xBO8bxBHw^Jp|gyvrE$#VH#)<@FJwњ eP/0!P)Nmg^=V̊Ts!7ݺLEP=O$/(*r=f(4ᴇYzN~"ii1B+dp/8kvS$%DђD8 kr@AH )jߴ:6D8y]HIM0PyCJ$L Y@zMO@ <ǜBdfs-*7 bz/ <_4YSiZ;@wn<m MFlYqDmB#kTH=b-gK"ʈczl!HeT]wv4d!'_DR8/"kV4?*ydXw(Ů 25gauъZțmY2a j4⨝&&։o~ܺa;mOjzFr86{+T\ X ͑  /pysw0[, J'(GoŹIL{ѿSFݳ4V9w}5}g@>S8ŽsЫ mLyIU0-3Tݦ?g+Gn.@~Z 6:S(ZRkY_aL\DH0)Ij\ؑn9Wc ] +.s(OnZ&Js/0S{#lF8ܘHiIl[k=z4&醷6"% dG3(?Z&|.AIP)ޘDFYl|O+TxrrZ?I*SG25qH:S?; +C jՀ7[HIrl֧fƜnE. ҃ @ k{#*ӯF*>Pr6cG. +lzXb]RaNw>0 k /0=m&hc"g𾨤P=^;7=(aa +["i ɥ7>sd`:j"60Z=BETX}̱LhH X#޷RڌJ+II_u/Y8~ƪWϠP2ipa>#T3{yfus` drt_̣ɡN_馍pkG2vvBzܟܤp]h`׹ ,.d[I"n+Ym'}(K:aLOg ^}Pi/qӇoXss)I,y{s9˞brk|lҘwg]D# %h:0co%7/?`T9vB +&'뱏i7+q6 (SeHK'|yt4G٬ & @u>6t"!CYz(+]Z=-M_ Rg®emx27 (5j"Ʀ/Mh;X;1>_Hmzr\"0RAWrOfJhsѣL{` `,>NQНA&7+#9v +-$pY-d9ff5u+rO7I4+J&X6idIEW1vSr E4ņy0Pp8!(.&h.+eC (9/,<Xwo?L?=a|ϵi̵~ԫikha\zgԶy@X+`6hb#vv-0G9D@>btkD|ڠ̈́wezCZ܁m`CCJ* nl|] u !\BH9ƪUY6@9C E {^R()yB^?@uݣ}&\(=JΛI_\h |툧h!f2iL9 a}Ғ0wX;ݟF#R9Y+y@SI.e9uWH]7/Q:z;*;Tem~bRɝQ^ҧEP'N!)[ -hsaiA4$ Tu)D~L6w&ݸfȀemly2fib{C +'N#n XB$*^ƶ]Wاy0La!p &?sg!E!E`X03FXs5y* x LhcWU?.3@O5rdWfjS~ 0k|]qT cd6rcx2>KIA߿J> >.R%ZBGHfQ{wׇG-.w]+TTdBrlX ln ˀ'2}؎0̥+C 6gd.8BlP> +stream +x1 Omo N +endstream +endobj +122 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 864 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +123 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 865 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +124 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 866 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +125 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 867 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +126 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 868 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +127 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 869 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +128 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 870 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +129 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 871 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +130 0 obj +<< +/Subtype /Link +/Rect [213.56 141.44 237.53 156.39] +/BS << +/W 0 +>> +/F 4 +/Dest [17 0 R /XYZ 68 387 0] +/StructParent 28 +>> +endobj +131 0 obj +<< +/Subtype /Link +/Rect [324.37 141.44 372.33 156.39] +/BS << +/W 0 +>> +/F 4 +/Dest [18 0 R /XYZ 68 667 0] +/StructParent 29 +>> +endobj +132 0 obj +<< +/Subtype /Link +/Rect [502.74 141.44 526.7 156.39] +/BS << +/W 0 +>> +/F 4 +/Dest [19 0 R /XYZ 68 192 0] +/StructParent 30 +>> +endobj +133 0 obj +<< +/Length 5835 +/Filter /FlateDecode +>> +stream +x]Ys7~WC=vOUǮC$e{a{#nlP]fS }TW&y|LnwUq}ݮxٝg=woO\won/֛v7o?ܞ~m߽ˎg| +iLdVk:v_WG_Nd5~|z +/.2UEhU"evzW}.n_e-W7R祜'ajelJfڨ"7MDo32oʐM?!zqԋmB,%~r 䢇W;x]wfqTzl sUl'"@肆m ~5aC9/[Sd S,}Fs75 \`"# 0,T^4>#w_ȣe3 N"/J8MƧ4']%xӏ,MUR5E \ŧR{fOe(Eᨹ'$io<β?#}VP赐Ez% +_7yYfV\Iﳑv3Poh7٢|FS@qiX#K&e ;@ 7@?/f=Y=οJ#RQjt4 +'ԂL8vGY MW]K-ڋ^v}{J0:bO җ(jԯP?Yެk wᡓ .~Q7njjq"X2޳R1XÙhgC|)bc=gaDz0)e_nf`= MD[/klW-^y s O]!݆NzY2瀟K/Qʍ>b\+ = ę]RD2As]]qQ s'4'/HLKTB:|rg!&L*lL,YgހYbd}!;gw| ђ]]\ޭ)\2B&o!;/ N*G[ #Hjxx:F'MQ݁w_~Ό +*ywߚ?,ɵj|5T@a~Věxw8`.4~1nwѢ[Uv|o9GX(Z˟RfucSG&&4Wl"e!oo +Ehg^l9a0rΌ p$La)L;rޠNQiTxm2}}L% yu )ApE^%RIxl՜4SlC9\rNR؊bh}2[ xiQ01Cvo~wcB×=FzsN ŋ, 1Uspjx|QɎtMb@̨z4{ Ydu5_2R#0)3]#{rBzX2Cj`%X5tÒ,zh2݉`U)պ-k> /ˈUfZ˪yK&KYiYi8'?`[v^>ubl|x(i;_Ƒ8NNN'6/R FqOq(*.rrRYS?P䬒9 +zPE,숾(!aJC qtMQ0JJ@{)X^l;KU^`F`59b6΍!NUҦr5^ĥ SYe~?&|[HΨ˕=fDWh|:*?,7XoB?+oS z6_(OZ8M'D1|>@qebB6AfXc$>%s"@im'z8fK1('C&mJU>Al Yhodz0㞊Dd^w,DH/|tm*$ +$>UJJe! 뼩:b] +o{n)3!w+C`WhG(a#}=֘lcNѽv؛ƣ4HAH6:VNr +&@4fsęcyh*mO90 +*L %؏C^KYQ[X /%ȼ2sƲOi۹O4!!6ĉV16c@aFuFOȡS{Q 7S@IBf3w)&f- L nZèui ͰL zl%ߐLrZ_!onCB.}w[. +á/7@[? & s/1LiL7!͡l䘴[V ϭ\-8٬pjW\eIxT^Ur;H#yd5~w*Q2,C8֔vK [Rµ?u.Q$-teNQ"~.yD@!&BJaڿmܞ/ԄK}:km;zr7ĕ168fqi~Xw"XӸC듑Eغ} as53x_A{nH Um=Cnb4]πR$ԍG4yF ՟>:TtͳHr?J4j`9KȥC4Md|Q\&XzΕ/[TQ`c?T(CQ2]YD-N +Ă-(X]+lhjqK9\gE+lyao@Cg +?y]1o+g_Ƌ[+19)wy{03 ?%UEٝ9?J0?/B?'M5/`H=L +ts!r* r>ac#&$xs +-6|.5nun1ƕ-.m9M?Ϗp H>wİΓ=3:ZX_դh6uH'VKl=5/ +*2gn'L/l#XխfyTld8S] +rҭd#!-®u+;}`g+%KxSe7!sFXo~jSe㪠\fn/ [;[IaV3jvn z܌%]F&hv/T@:-:ʛ K0 (ͱ#ONv7_c di-nJ ^>zPM^'H5\Jn54t5+*$H*c/9Dv.R0b$]>K$N.UPҥLtAn+#n9)U3KNu&m~;K! {lHZ?{gzw1\wۍbj(A!^oq1zg((<邲>%'*ΦЪ~ܵcqP;ib8ҝ$m<9,AXߍNT>K W +AK@@u?rkm4&))g|*gԆRvFЌrڌ/ "Jzsi3Gidjֺ]7vQ(!= DsCxSvnIu@ {7ٔpNz؏ĪcHu؏OzFF˟o4x !_۽O}CLd-;ÝzN4xtO)>`bԀ=njbS )&cEAJ-g:w}(u.T?N |l+( +:;0Oԭ.WQ˪k|(1ؒyyMR^YDciA@ }"oSWcJ>)-?qP̥G:kJ7L](1}jtUir'3 7qSb6G>obaճU=)"7տ= {>On1W\kjtxk4}õI^uvlx} +xC[nvu3́5 raJtU|qxf}nGgݚ +Xr%Zr[4"@&_h?іUph%?SrݵlgϠ +T!!X?M>9I +w|RBFuqo],:4Nhk?E𱐉o'S)>%n`9G$uY}6~NRDa\ z0Iҍ3@(![B`6>rW˶r,(Ma9״se}*7m3d7/h5* tY>W('~A0oa)~E>ݧ4>N#r?~lPb<+e‡ j2U{m7>adGW+N|kn,x (~|7cڪ]|O6gկK֢ʧ]=Z=-;a3t08 U>\cQQ^A|VJt·mD /w +endstream +endobj +134 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 872 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +135 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 873 0 R +/Filter /FlateDecode +>> +stream +x1 Omo R +endstream +endobj +136 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 874 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +137 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 875 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +138 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 876 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +139 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 877 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +140 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 878 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +141 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 879 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +142 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 880 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +143 0 obj +<< +/Length 26 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceRGB +/BitsPerComponent 8 +/Interpolate false +/SMask 881 0 R +/Filter /FlateDecode +>> +stream +x1 Omo N +endstream +endobj +144 0 obj +<< +/Length 5882 +/Filter /FlateDecode +>> +stream +x=nȑ ?e!Q0 1{W݇yT,Ic(S~~ƑɬQRF]E&q~4WCߟ]GvtC{6m=]x]7}.WIUU(:SU,ׯw^:*iN"I\gYTXѧ{E]?‹kVo߿~y}WeҁO`BRFYE%q^uE6h)q]HWO89V7'٪3!V ^9ru KZBdqZzP kvji8{C-]Uq9$ Jh{( + )rpjIq  8 +u+7`4wnw.b/VԎ|5<@ᠧ-wu8"@ n`n@.j>P+p9mug^X7O_^zV(D)_*"h0%F:|՘)X"U?=B5GKc1)Tz Ӻݩ:BDLU'rЗ5}˙[6?]Ї-Uú Ka/@A}Qq*,N~ \}vִo+fjv0ZwlHa/W. ~Q]g.[q.5DIoJLskr3(h-]¸\Ē2a,,2]r[uks8t[)GV0)dxXLȸ,z&9oOJ+%#Xix ~eg<{txr0ʖo%m|3H?|86NM.toH< 8}A19aQq AX,j"2K؃3@(bGZvl")}RD);P]F +֪歠6jq;߱9(H(^X?͍\[Z +wŹ^?MقBR`Eܶc +W"O,4o&Raw mi+Q8\J a]nd8#P?*f(Ep|b MBTSGWShղfr-f(N2cΦML1~5]yZ7*#GfxC"֛/x% 잕HTdU"} N 01'U ya<>GѧvVA*^^_B='S߀~3}, +IEIepJd*6ge IbeozC3F f圱7&ҲS x _0YInw;7mظRjXEi&8QxCRTh>nUv -Z@{\p%!e=XC +mHrMͦc&9+K`6F>2G? AŁ+/pA!=NwqQ.&@ +R{h0clWگet3H{Vg^Fů(Į|7ҊImSOk֎ZN1vU5NTh+M4Qt $dee]56y*<9X| !EcCh1vA5R% +h駊`Hzhv֑DrT򙂫mH-|fc,ΞBD.du!;Α5ߍ`tFR .9?w,Qzt?5e/U >^kcl&yTӇf<}G`Cp\QV6hs֭n<Hrtp'kup 8-v'>< E-x'_QqTgjn``X +@bۍQz#F/T|u~TFpCJHPĊH#wH%ae>4q*ˁ,B: pou\p>2/RtMgbQ_ +=s?d{SnH%fNV|xBc9LN= @0&ƯI +O*S`W[+eQv:-Y +a B=a?h0{n9"9$r +OG)t@ k5"&B[ǏOз(h=l鏰jg Ҷs@^{<8՞mʥ_ 4l*2ᦻ02 SzQV'W"9tl#-$ +j='?R1bY 9H;/N岶 .`OXxС2r jLvѻ `)r?`KjqK>i2Y?)e(je!W$Ȱ`GDc7S- 1n@fg{;.3cIϿĽ}d6}Cݣ6U*Y'M%0H);,T2FH +Q~Q.T'V]&qB|)Q-o:GQKAȥ ~?pr+/PcZ`/Pdgywx0|yrCm: hT%/@隲&i8m:lJƺ'N {*Ȗ`n5y5&s9HjxN-7QzR8.z#7GmC pE +^ׯ-\_ކJVsj[;:<[[mWKmu~gj7-ݣ9xɬ1vQQ|& P/|t fyrHD$/F[3ES^ 7y㕳ir1 ##fXT*Y~F} t{P+V5J".eɊi jpzҶʺ5M{i|iFs +)Nz3t&t0˝;(fn|!YlTNE,mio1|jP$58JM]AŴjڍ:فV(Ts8;XZYmHB8P|P>j6_j|_ =*#ٓYɆ. B )jWp:Eq3^P4]έu;}]TLC֝|w{pIU. ~K\(:x/ Luc>78M48Bb 7_H!9.+5yS3^1_HQ35"l:+* I}c_LOB` pZ.rhxKU@_K)rqLNd='!|~vra}ݘƈMc3qޟ\Rˇ J< +භA5Ikn*?!qhg1G p"CYLڷ?5 + Li %d*Od"g6 g=?.cU8Q}93Db$M5bue fĻ}lM 7 +:\hN8ܴ^R5G!l2U4xsӈh6oX4XZ?1JUFRώ7- +H(d)y0cpb=YR C5Av&}_C"uEBR7ErsrNZv\ih=Tpy2nfrozM%ZnUekvzʪ-Ex2H UQأDQMۘjfjr<¶n>]awҴFnN>-ڤY!jʵePt;-4@Sr},hg>鼮_[]NTX_MK8ۈXWB6LNhϓdh=7i~1 +Pr# +endstream +endobj +145 0 obj +<< +/Length 66818 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 387 +/Height 165 +/ColorSpace /DeviceRGB +/DecodeParms 882 0 R +/SMask 883 0 R +>> +stream +x}Ej{y//@ HB AEz'T#M@DAPAB) Cz#=ݶ3;ޛ~{wgg̜>g X _q +u[xXg}ĂQ, ba/ 1lT3M9Lv v\ 1fM(-Y \䄖12BDu~B M'Y vl>zl15R=/Ր]ҸVY,s-.B[,ߝ΃!e%Gp"|A+Oʳ$*Z:)c$jqoӅC=6O chD0& d_6,10t(0>0,+o0dE> P +a1sƔhB +T?bVڭɹ$YұPKa@,~l+Ce2L2ep;[!*[86ҭ0B!Ul:gQa(*T;b[B%5wE,K KUw O"X]VC=aSb!թ xQ(mfQЂٟXr- ڨXwo[ԅ5Oe"z]>vX[s>ܽ\>k$J ǖdd|()#,CǶF R\u]m0eRG0MxH1YJ' +A,/6ؖb +H}ĨY+EdX]6a&xO +1߈. *<_GpyHLƑVm~e$(2VXYZ9 +03ءj U {hWPi-Ô+~c)4KZQ/0ƬTt1mh'Z!%{]~ i!_e4vaOr? ժ&/4(- cCrB)\ tfȊ܄蔼N2BL o=ЀYjA!Ė]e(?CJ/ؐU3K|O#+gQʄgP x+?d(9A VtjKcFy :% nk <2fFX@ŃM& s JM(X!!|V>,%)9J&\$À%rfKqwz +cEU/M伴f+f؆Vih ?mVvJ7PGSlHv[YIDg%& {*3vgYtN/, m^B+x2@y 6}.tLX3r!vK!1`O K J&4`NFv 9qM7*2IXH˜K$J`\s{*:=+-e?K~oK0b0P^+G7b O52:Y<Νi(YI,gJmW8Z2;aU Ms!&&jvR'/#퇥*1WfFµ0_iǂEQ +`C/TaVƛg$)`_ΝۿhnwDc JA5iPtB(n_\ +Yy4M C?.I`\v[V;).wKM]-/+fЅ݊ t3n!bdeQ:^p&Aeω, VY3?4hЌcqWyVbe 'v5V!=J)eQ!ggfz^v_ʼݱY^ 8ߔ n}# ǡTU<#!wQ=5e ]R$WEAWřlmQ),x5PN)Q7#%+I9v#ˋ/؍+[!AMpY>%SgOo+VTT_˗.^hKӷ;,\+S_W(˷ۊGT)pKr +L'2lq%kߴBrF"w0KO.j|j@0*{XbfAd +hHx  ,nRkGƍgIg#1c䅭ÍQ32tG` +vqԒ$h= ЍU[[ ۾}{}CMOקob ZWPҵiuoRQo8uFDlo +wבr$ahDs`c|Cy)xX(~5w[/z]CcP38@S(9/jFGA0KS-$"O#$ETMX4K҅PdA,ⲰdG}Z拯9/x}0{̢2hgۼ Qиbv)؈NGAJU,n)/S.@&twbk.t<ꇱ7߈+:p |Bu2!2QN]AńwMyZ2#+4`xMvà¥K69y1謅r]dCb@.RTh2J8S|_x٧;a„sVWU=Ə?DV+ի0#sP~&h`LNL@Pjw,$6rwVhuUsuj+9ܙjY8UZw ]Q?n+E0pv X)7˃mfCWzG qE9%^)B@kiןz1r\Z/iO&P<{^hm/,M΀VZ_~ '6XW &n$r4vK2jY&(Mv-_PZQ+:B> +m,HldbqZI id:eA ,:/txisl׌|SVhc`WɪBmdg!/Ycc֐#h1qil̩!h[vmNl!v&.Xs/xIQ90%'?9qI2k"XNDug8Ň~ w;δ,Fti W,+' YF0aGvpvC*ru׀lRkRF=\)7-oK7Vusg)vB"i(LhHeXfĭ]iR3U rk*/0T<fpӮʡC~~lݾē&xd W* =lE@*{l)J8p3a)H3nhٓTBݐAT!MZ^FaҘW +ƘSs24EhD"D )V;b#\H?;ZM78 /p&ȝ"/ |Xt-!t"U-^Z2-~nSyp.xH*úC>QKѷL;,>˷qA3gw +6mz_=B!N864* 3 (7oZc4S2ӕg\d~^jbpVW^,u;::t"ceN\K0 ChQstA*yJEc,L1BJT+QՏo(vI硍>;߆?#S0\<4x+5#xܢUz0ˀG kYgΞfRL&S(H۾$f&C%X) +d4@#ps ,6ȼ[om M7-/%$l@ubi9Qqy=4k4}#mHSN/#b _|wAbcsw=I%UH8E4i /eQWqnc,Q¥'| p3V;R(,#ފ]bмj*hHEG55 =NÇPzg4˂b=L(9oO~ŗ56CD"5twzqN؛Xr%IV_ir:yR XxuɵE1q1dDXʊ7Ў|*<(rDRbGPKV*p?Z2) +y, KoJ˳lj?)`-w*͕ž3n!6ؘRA !9z6Ɍim:4yP׀GȯB .&bp19^%*++vZzYy{u}iuWׯeU +/UUUȠdC)Zѳn?g% {~ArEw =:p(0RѾt +MԒ\h,TfVihQ]^t@D iaÆ=zPT"B(6WP3*tb?h"6W*UU`h(;Ϲ2bei1PU*43Yn$o,*SL1r2uăf49UH%2`\}%́uCtQΤނܢB 3DO+꫕>}~ߘfO?{衇{}x/0U.(qR%n1xRckB~ d˛hYH't!Lyv¦hY%$gV _ Fsо|#D?.F !Έ ުYHxAux!/< s憜 PU+h룏>\}յkׁ+7?GvPk,pBo^ g1ecE6m^C<ē`Xu6nܸ/|i4n^yS.::lĉ/_[ěL&CpQS^ f'{g\~-`?73@nmOpKfNҭkc[$2QUp:S/RS_HQ +4^_UzCY@ [_"?|7P]sE D`}a=1bDss3 LSS;SeW!0IFsJ=Ʀ;[SϿ<7,GW_wG5yokpI.h pSM)88GVǢTX)X\lmm }쁡{駣WCht=v}?_~6m:S3m0 UXz{ckʆ( C2~!6\!+} m"ӭM_vv)''4[bzhaVy|Oڋ"k+B;U*555^1`Fpwjs@]DC9cΝ-w}O}&~^__TBw=i +U+/N%A3:HW!vKwEeѢE?;~ .; /!\.➛faXn7"ɶ0fk-,4їVr b ΰ\}g^,-;1o=xa;2 !B<OyY7>0 6I"(EuH/hʚ5_N,~kN3釔8N$N1'K*qcBu-">+{H Bm疒yخeАmY_Y}XW-P醍y=ө +7niG{z_ +gl\>k;soV+s"a$0*@Z~;;PI%\u(Ie|%tЄq>G}SO®SO=u~D.6(S1JcDŽ8, 'f]YD8(s# sorIz#>2"/[5 }֛[Ii 'VPS`;O>{y/Y +UBAV FLf9GMi,JeDqQ/v%]^6;6i4q+C?gd5V%1n4FBA~ԧt˨?$}$/)Z_\SLʴ̭oÇ+{PUep + X!x\bŪƃl2T޽{O<p̘п!5z-hI U^"4Cۺ7dh Iw֭׭]&MشK.+)j6r"0lXFi2 #R>sfB8.PryWyLLs!"Af$i.@-8t:&ԉ|(y"UWWCsVZw78Pn +I cP~J?ɦo!Yvc;Y=@cH ǝ$a|KMy`B_Q5~HuRNUL.kÕ{T.[?|烦M֯m۹kРA˗/ohhܴ~c}vرhђ+w79cQ@Za;kw2]~~.,=D^6 Jl@ZR|=B;bLj'G.<ȧjEGL6|ȶm;^vwoѣG30&ACZ0%A)<9p/L\3CEqRZb0 {~ءG ISSW̓.0O0OpW.0Yr?(GA>[Idg::WSN:b ] |77 ~| =WzLmq#TyDA4~BOgZM/TQ4 uUH'/y˽zbL6]^ne[P2- kCgٳ+7 '1$CP@XNBo"o9bO,@9i?E(`FyND{}cݸ|Ok3PоlPˌsp\6>r(40kq ?ڸy#( |Us_g*^&Or>>W|>u%KM +l: +U ©6I׉;]Tn )W| B 7' +cǮ#8G2&lXk׮n* 뀀' ^< @Ӓe%'zNq,~wУ!(E뢭"[=!♧=޽oֳgwz#W~0\FUA`BR,W][nm˖m%!Li/v2I8,ybYEsu}ψɢlsʀ+Ck՞oE6 sbQ~J.o+Vyi_ᢎ9:f6zäW]?&QvEIX %qwO?=hOKUﵶ6$"u#۞+d}V|Yn`A]wA\QQյO? ]3Xf_|ѭ[ʪBP/h* :2XjS(MT0` +),aȩ~'|hܸqo'ή!"bHMSrS䡻qLc(8^Xƞ@Yjns?rRKE6ʲp-cƌm7aZ&|K%J+f}[:TDF1,?q})UT;ZRoQ'5VJJ!WzG̨믷q[nӧ;޾`ʅ=t?ǡ1y9)r9,Q68ɭ#?x  =G 2b;ey.q块#ߜ/ \S\ `WUUܾkKPCifMC8ͨOI2tR%%؉Su}gZEDP9իWB0aCV+$.&6JEK(S~Gm۶|>3F p/i8}X/_-cψ$+5* ?Ltb"K$\&7\@>6[_QQi v5zvGu)dY/`W32Oʨ36Ҭ' Juv],BRVn`͘b{dsLm<閮B*Vh[dT +y`wgsu]jnښJA +PGYfCo{>Kv޴aÆaÆzڻ B·$A/$UiPL~*7a0APa^D>Ó +ٰn)'soW{]4>ZzzI_ʟvi/2c/^4҉`7k ΡN~H"w 2=*Ad_uQGn޼y=\g?˦ lG{vXt$ +mIGvx0ϡgyNsmS lOl $Ι3^>|BAYëqVW8˦ǝ2y?Ե~fє+*Gaھ`q c BҿzQb'R%jCWI%X)J k1XQ}NQXm)Rx\N?s{o ]/ oO04QlH9s6mUzٍ:P{ƌU]`_XN%)M>Ds\ ټ8r"!ͷz5kA k׮޽QGC;:AS0TMƒbD(A1 9TژY-2ZE?r2> ydSy@;\0 ,ܝh(z[[7mGGa8-0%T8a$w:zEf^^6f]ZJorQJ1pHXJv>7.#@G@CZPvFH$L(E@e2ܡpBOt>ѽ\18P\@++V\pWp^|Ṧn]ytݺJ69h9f̘S\F ̌AX-i- +w`YC}^O>^7VUE*k}ÌBȜg•"`Jb +h"ՌMh)k.;Eʺd%Pu*g5oХK/I<(ĤC̫g1($FJ |sN7n0rSQ+֘ |q(kUXF| %k}erlSsWg.C=14 (YX[[S%yA͸]F#"8H(3%'9qc}}ֶڕׯܥ%m84(Pܙ ̜bE.8*;Sijh [lw2iGᙗ1n=OsO>dMMMBJqy&=6 ,9(=VK/C(G +)7x?&+A|(Aİ(Pvaf61jQڵqv$C6`y\B"y\d(K#0М7(-`0ơbSؾ&fzK&ڑ6gеz۶rH kmX~G'>ؾu[K.Ï>b^H# ,?D]رz !5)c8,%ĦPxp%gYu[f͖-[N9'tw&U|K 2&eL(\񊤁h#4NX,u2֏x˟@ۑʱ#4KG7}IW 믽~UVܕgnݺ`_>OI~ Œ&|BlWEZ[[/tb 7L Y "tDp۸{]mKo]nؽ{gj%_aFRV !O#쩸M?0fVԱ:+^BoB7)UO>裏i+N9E,bD聏lw)r8E/;dS:8瞃q,`4D|PzLN'˕V\3|pK.5B!?{&\ED QQ6jP/騖K)E̠R1›3vX pШDq&,,|"3:knlݻz돹_zKRB =ɐĦH7CGb/9X&@\҉oCH%1zAs% +NG{!]T0/fM=w燌;gR@ÆsW{ s`!s}{C3S#I D*Ehƽnb<ecd\Ǚ*{ o)碰OD;DBxCWEt;q9vU1"d*%v]UGHCy˶w}W^h,Ԯׯomm6boaTOO9i SjQ2t Euʣv87bvRoWNs2[Ѱ8ed*¦ۥO/BOXʋ ae?@wy0555͍"ȕ:tSӦ l/tXX;ʆD)T%8 gJcFXXToȆ ?V.s㡟 t:ᡔF}aZUR Qk#\$݃둺~aںl [=-YtW׿N0/b,G|%(fC H,vϊ* x(UpRhi0Ok/ig  JS#[U ,"{4Q!3]g*nk橧9sI3`.]j(ES?Ҩ~SrN-uȔx"k+-i,MZ2ݎI/-QXQ@ ƽMB6]; tafδK-TT\cPҠ&>TR$KX`є)]4@UqRmnBIA#Qc l&LΝˤWK2]@M.#ge#Pуy ;AWQÇպ}[Y_Ѳ}>aV_maF0RdOJfyim >`}WIXՀI 5zp0 "<@E(v(FjuQ/~/|1-m%1bI"R q˹r41~3I-ⲷ/\r%_}UR?n'| 'wެ|YC/vqRPTȉ}eF|0TJgN8O Xd=Ɣku#(t\Tϱ0(JqbNf=w*Ih袕k<$,;!t2cFab-W8y|h%Q1O4M\ҕ[m-ڼys߾}1}+LB'RY nxrs3{{׻O_.ۮe p5VUTkag ')hG@+x=&S,$mB+V$srEb:KBepxk1tG1%oW\qEڥ!RaxZ#FY3 {s4  +R;fw!< Ugq6`@:RyeMƥ]ܣ`C`'cu`{@گ_烡'2e ;P3Q%e*J*32,'NȘyrl +n/ GYjLk'\BX>IOfsm+ X`d_H,k EAeR!, 3%32\/GFcNUhwdp"n߯_C:1tv;6I% @h$EsPrymq‰gtdǜ_]qe-/Oz2S ĝ"[Q2iž3/R-Q32X3A[7JMbYڍE87o=W^3OrXq!`9؋\bE%iqd&5'm*$%7U/^hp0zG9>|3:bw1醇 $tɂ8f8PRAG/өJu4al۶;vw 9؂ 쑪6ܘQAE=Ή Z~H5{)*s;S~b3XlZACޗ, `FZ0B4;W-4# +ˁO^$~V;z.SA(˶wyΤ(ҽ-Oex4f:ykw@_0m.O̶twds~P{αǏ=h }w#d@8RS/{w^/weS2j[ P c8*sDxA|A-{\ 7wx82ˤW' +mġ!*Ց/?/s*2oYЄq*ktDߞ9c aÆ~C An 0Gq^^>>ښ*Ld)0)n Fqn^$ծ@mȑ U+'NtRtJaÆ91Dc>(G,1Rn`)̂6bQcr3g@!ste 8tNr!!q3 +Ꚛ)e+O"9npT0)p2@\.2bAd>xɬۊD +eSiRT:o}.[>gmCvAl0o Lᅋ"ϙt`i*w\2$FVX V&Skf_ӐCY@\I >CTܳAd1R>&so'RmlA)DR&8_ ِƆ<\6[rĉGyO?-R꾟KiG;2yjh#C2nQQokkn"IcЅMK^__f]{c׮]6nܸ;nԨQ28$:3dkI󨕧0b# 򳅕J(& iY|tnd)O]2ա52MZR ӕֆpt}WʢG׿[v(Gt&) /l42H9;WI.*7l> ar??YjݤG;<0nEg#ǟ,EKyQ<١G]>97:tB1ܠ6<i=ZΖ"帋gwYgruLMpÙ$ա1Nن(.Z`sL.[|EScs[[In-J$[I`2LtړpuLW ?@ +9VY)"b# $M={5O?̊ӧWUU}0C@>*0\V +dCM3ZwёTiI*-%6]:i{!N6P:{M]Ej/Vh8>Q6#K\6*4PwRX T,Ɖn<96P/\ͻ Љ@$y33hMHD†+艦*Q2LѣwZ=g`s={=rcf\-L*i.&I3 +*dˠ?nѣ_Gvu;䪪Yl`'[Pc-YBf.FnoϬZ',<͓'O1bğguV$mAT- %fQ'3O%A4L_;\J'"_;iONIEE]@G3a%٩K/t쿿xKee%0J&-כ\d %:"KU2B7|Պ.-w]/%8#.I6y2OJ!'춝F3nD/!$`r^9}`@8cƏvkn:fȶ \Y >xK?jM01f&v/Hb"0[b +""6p}\­moݚ'v|W^u_C?Y!z7ul5z8ܯQ+ (2YtWj#Ti Ңz ==8x4ϊ-va~pÏRl/X 9keJ.TCBkbM\52">38w>'N9Pʼnt~.Jdz=3,s֏gwxm޶e?wu7`P?H_}N@/2i$WÍ.;\AUr? 7+qjk@YD\P$&kEmzF8QIa eveyK [Qm;ܾ_~t.~1|Qb&*"i%8P;d,rQV\Ѓ=7I<.~edO>gYyн.j%ϽmKkڵK}SwT{a@f+gN' m0"PN44"<Ţ8Cǟ>AfVvMǐC9D-L2 6 >%L9DƊ>e$^ 砯+c{/_{ifX(z|#{PƑ + +8|Xv5d_vY@"#csg[|(YE5E9{$5Nb^hSL=/|0j~W}ͥ2bG#uF3 +ͺHA_f6._ 1ǜ|ڙ>l8 5(JDIL tR&'Q<\lc=6xwn۶aڧo[$ȭFj7!F_-T:y +U£xƂpyE.7DK6J?i1GP,j*jjeX +1@I{XUxH$uU?r=Sݻwߵk`+/7%K?aCQ**nkReh' Du̙=˖- #G/ ,g`AugS +2Z[)S,YTE ;B K_936߫wê5K<~zx,\N +v^K`LzM՞;FcB1J;!˴:. B GC Y=eڌ֭лwo@4%HSQ-j1( 0[PI5>f!]}:5Fmoun^+S*+֭[wͷ`=ؤIED&#ԓ +DE2S%`a6s&yOn-‹?J~@kQ' PY`@RyU)Nc +TfLȈŠdtgD".Bc$׮]{ȭ+ SĪҁp +u9)ժ=jɂ/o />WLL ::)E'o7+S_o|}3g5[tjW+GmӧO4` &E0n./w{]G`HE"H+dC,\w ȕq2lbb=Th20ŠĬ\ ZѷLg_ ֈ'%GP[[l;r +"dFCQKːTlKRlq*}9eÆ b>e+V.W簣lPkI%۱=;yq[l=s9;oe +yhw7~=j̷mԨ}cQCFQG<p7P8阸B0fc{@gRP9'R2Kj͚a#/?)Tl2 y|KT UFD/$rlsSNG)rizCRsLuEEPHnYMb|𐲇~x7]1&r.[!>*H TL!L'SRiwN;3gwml>@ <6L5kmuDS@u Ԥj6ݺiu׿; }uhR[[$vlmuյ}9d, !+eLHftJd{J {x,xjd7Vv2N0@J%Ƚd2 jlhLWͣ7$`ah[,LԈT&j+V (!EեosY}y.!j={5ܵK.08) i35sa*R[|N%?9JE }D5")M6w/YRTgm>wt49kgpV566~}ANNFť~qcTW_ӧoϽՑݑJ&?*Acx֐ zƊW0T{nbdF9Q,ZR0ƥL@GLƍ/Y6lذ_=04>ӄ]8HbCU9UU5ab:BdŠ__|h3իdvT{GcnK.ڵO_uֿ/G2 b`orХ 9lZO^H&qSR c.id nC>[Q +k~"+ ԟlygܻT5tKT+Tʹy Oyh\at-.9ՎbTH22g?2EXRuyP0?<؏V܁$*-$ Ub׹]x^k[GEeoܲﯼ4j_x焳Y`b s=ɠe3M=v; |c}֔m7pQtHᤳAS (?WITs$-S`j]yhHSWD%"n+h-k8[2etǯ_ +,;K*4,E<̌Q+; mPt,tݣQCN:U)EuO>9S>x+Ͽ%mm=WTT-\x=Gto5p_ 6}FNw%}e"sƞyWɓOF$ ^0ro pSf tsyԋ.ã W/S:ǐ=1͛eՔ|dkޡB3U]8~ ^&…7Ĉd=dZUUU]Uk׮kbmmm!vtd1Cn QulYU dCCUliokhF,mP'y8DW0kW^gMMv7ȴca)a=MO;w߿?.Bjiۘ8c_|w9[{ >xɄ~rSO2q2x"NgBΞD?Qρ 5G%<a"(NJ3"n"*O7s@Iի#gI h]f5Yyj+;2Ro0aA?];[~Gخ~ݫ{ߏ?hҥ~„ !fE.>K&S YMfVִbt̚/CPk|] *KcxRzȹfOȝ-1BF)kE6n >dfHMKTʆz?8*?neXGUNx~[H~"^ޞ#<"xT}0r$[t_q<3Tns={42m_=1qZw#H={KӞ$Cc>ҥȑ#1&U@F9Z55xa"Q*Ŕ1%ʔc7o6442˗vI̼neNQ#%& 6!/cR۲+v9d*XRՠqu +7^W\f#V-Ƨ#rjX!@SUP&3m>|ГO>y]wA%p %$ S!:ע(4ՙJy(};o;}u4P]lML+6uVGky~GHH䢭us#'A^z{K&{ +xfnnw , Rb` (k(b"((aR +Hw&vݞNsܥ|~PЮS1slKvRHg .`JRK,CRA~~MubH)lTHU6 ptk+UeR,!I!^&O RߏmÖ9<<~3-m9a)zqkSAx~0c {I(ibARk2_ Aq=Ͱub@NPTŨmݱ=99aA)z~ౠy +2;SC^@ HG? + ++*[i)e:tsfOk7%h&cGPbܙ|~p)*ҥ+&T+Be̓t,.Y꺌˥3S\ hm CZΊ *ƆMIfr_[i~[6&iralvh (a+  + uθ^1&%J<+Q2'Ve *c?9mV +( +6+?SEϖ ~; +c!Z| &mۚDT&P7" <~4) +90M˖-k8Ε叿BBB + ~w&a +CS% bu1M I R&pJonS0_)sw[e*S7d#4w?|wKJIp,aIIImm}hx!?EI,++08]AԴJdhMP]cqi>f&/AYXB-C=|T[_O<믿vӍ|vB>5o +Ưt`C@|b<~lZzjsՉZ[Aȸ5"Rcd[yEM%I"rm +c7l(V"'YVV YfM,1H+؍4H+Tq (DJDY]`<۱bJ)9)HjZK\a˖-uܙOFUǹm=N]6O3(M:MsŷXBs@"!/;G㭷@nU_ۦuXEi\IS' U`j5}N2q,<v9lPLQ-zN.kqN?6k֢u̬KtRSSXf~h~~ʕ?~r555 ;N<PQQQTTCu-::z!b2v֢DaP$/D뫪Th 48C!gaDBB않17o$M1tj ~[ >#t|>5DELjflɦ4ߚ)FVo2O,]K`Vl;v7n,"kR RElޛ3v'~lk(4,6aqDvE')E(D k5p= + +.]\.T㧪0K&|~-3sK;Tn/Ǫ>Y]Zre֓O>p}ǵ}֖ڸ~y32F8Dēd6"Kf8HkU&{*5u+M2grL ɓvgRR}bl$kv˗[i46# +bcciÆ k۶7ߨ0G-NfɷW͋T?(ʁ^.Kzg?#7tӿ{v}Y`CWN(3ڽ7$gIov6닎;GD:C#<bL +oɢ`%f+)FNZt v#fί?1&֌k^L?f=H wNNNbb"kn/j4&lniKDBn(nm/% +2b*wDJ;ojx Nz,6ja9sLXXXFFsng +Nk&Ӳh524H);IypdXYa)c-(*n7w3œ7"-'&3ϫRȟ_@Ũ ma)A3jP$) u5f:B=8SVNΤ;r ~g5c_}pwsСҒwYl+999U>0⒒˗/'&%-Z[n{A3֌m> !N35]1)} R *־}vRv +C )e۶sH9عꣴu;vݡC X{V9!!a׏hWdRcsMqe|E,\8i8p]^ nʖns: =zO>Iq͞vGꨬi,u˅rZ < tvvvh8+Ke[lX9d m -,B=4*@8fщ͛ZN]:Lu@L5حEvt;﹧& +i9g;H$g:t0MIwTD$#zF +:%R0j",E4㬉:ejgEc1iF#23O.Fivj޼iOr~M:'5Fw[gc +K3>?Yibs#V'p :Pd.ց$?rÇ'@b-wrW50fڈ n9w6S.V(i4V}WހFv 5:ϒٷرc1ݻu}A|Z ikyoT v֘ejX u%5U`B3SЮ05o<86zdcMGdC3JSbKšu\WN>_}/~a؟.wj|st!h'jL8QZ [1F ~eyZ@`p3mX7YAɿZ Sǟ#?zDĆG)⬭UaMdF_#gc^} $lqW8cxͪ7EVX$ânЌfTH Vos؁Z$Ig + C^"Ŕg?KzA{IyŚ'语y$ . +鳟~szRѣjh5%zR8UEEIJ 412?f./B` fa: sF&s1["1Afj_VVFyL,lz.#'h/_-.$x3*H\uٵ3g&&&j&X 0K{y;h4Tj;E˓`b+C۲eѣ P4y|YESLKCa̱ +`@LF:xӠF/h?NNeDHk`6d*|nhR|(-|Ի,Y\__7lV-cbb + +*^|i ZPjcfϝ͏gFuu>b6DXa,^Q ܝXX?9JxŒB#C'N xxqfϞ;k֬sO:~⥋)I'N+Z8뉙 #U ݼӦ9Cnu뜸=:b΢p ;1AS +r҈8y_"_"1@ ?%ˁl,1 D aR &b*e=~kQ&-S"$ Sa?‹/>4΅iۖuQAF'~U!6M_fK/{}Z o8&c~bѳL K7͝ AnݺGh"'# brR>@ښ-rsY Rĉn^QAr;{b^*iV%#" 6GI1y|qSRbz>CzܹC9"!aaW@O+*|k.]?0{\|tA%`FE)X>qxX8hv'r .ȗH(,dyEb*P*43KEHNg( KvZ_P\|eܸqx:W% ulY^Ypsn&Bj /{twjypOuu5S*wbƅ5yOMF4]Z4Iiz&BU5㞲^jY˗2kiKSmq#0_4Q3=1OM:j EmCjI꧎BFR(Dd\3©9eIC i5 pj +`zNqlhh䓏7ϢbF:Үw%'%$])HF 8h:WEi!vM6e%oeSS+tuU7` ѧpO16=++۠\* wF=}N hE4l`г΍sty ,C?c,%` ꪗCU9ODfȲ!̦1I'D&fMi '"{Zh֦M.HWؽW]|B?x\YYY)d^ZP +T?5-f< $tS1n@XidqKt֬hXJ%}02Mߝ2Ҋ_~Ύ]t˹Ғc|ښV-7I)..ͪU3ct 5'G ȗN1x+.r񌈊&d0J fğ x][xM7X?K _]־]75jq?;.KW~ufQq:"`i1H hiR7VI] p:'T$IrP l4>w*T!KbsߍhA/{$ <ڂD/M%*IS,X+ҷs([GZXsc,`J21)4Āt]҈‚E1C4؁$BdN@8x`}^ҥK؏=Z<e;7#))mo-ݯb/sbڀ` +p駟~ӗ/_~uQ7eX(+-_} O>8%%IS \zNiu2MD3Xw1a`w>o _q9ecYmTF w no`B^z(--G%\?3(>},qM,9I rX70+I&۹A{LF_$8`u!umڢ`f=( +Ν?qhܸc%rrSܞPIf_[l](+Qt|Z#3ԮҢf br ,ꢊ/ +EB0nwƎ̦C08VMs0vWD^pIÕfyVMM-,X5l؈}âApc5k6f7/X]惎CBaUL]X8jѴJA4T}] j}rAGBL_XQŇ!Q /.eO7}jjlV8$FVQY][[[WWm7<^FJWċ2NxJ+CZ?$Daf~T= 4T3@5sfO״M( &%{^JJZZ1|T> 2)\$CǴll,U=^ʯȌ\EchMd3B-5[e5uA N9~-{y7Zŧ*ϑ'JOj$ x~dP[ mދcSCn*կ|An(֒4 ZUnfc Edip/4?j;h|OE&U,ox0ʪn{vs#QxÀ&F7^ii)555MHb5] wɏ7JС&i|ܰɠ3=x8>3{8Ж|TU( |fs9͚gGFŴm%Y} CDJ|+ܣ?/$DF;l0J4C OJJġ k 3lxd)2ҵ?KjsC2*!}GnSMe17b 7џhb mV*E;-|DcR2X%i5 -¤m_J,)Y!I + hˠjpo1bğ[k׎ƉepiI[_&w.m[^^;W7|҂FO6w?d OGc6EjMRx+IAs-VYY/~f*ݢe=jZtA f]E;۱aWbWeW^H/,ܷqC'W^YW5HԄcjj inn. E<4LljA˝IɒbFX!Z¨s&cXo 1q!=HlAc] {}T_r:íͯx;h~ofu(uJGj}X2j_$ML +G(ĦOC ZdC+P*-ۯ̝; Wt閕qy8ހiӾCyΝ8d莭[^ H7F^M?6T7z|0Ia+`*/$+0C6 9.jɤqIfb5I{Qа»Q-Z٧wW0I.zdT7M?qiv5>׈ n3֞!*UIس.0ΑGS3bƌA!c:tQBBBbN<9qje(TRX` Ѹ|Ma~AQa!@(L._.8|YO_)ܵS޽ɒ v9 +-Y-*q>c-\:-͛b\18(UVm̎rC%&y q׻|<{d>r/?_WZ0a}=o7nnߦ ."2<&.2? +Na}@F]]r4jdD6j$1cX& ҂h$ I8Y^wfsʒKp8acJJ#"B?]1( +VL+<<-Mdq{H* +gDt&A}g>D?6}f{oFF*틍n*瞛XCHr 7кڪGTӡ'X5@}d-Z|>B0]`}e=b_2q{ ',uTrMsҝg.\㰆g6x2hjEe._<Ȋ50-0>ʕdD@a!%n%h{ed511΀[IVBvhejմifgp_MII'\y u }D3СC9,$ bu'SS4`Ltxy;v*==FJjE銦Y\RBn LOψpXT'.C?"Sۈ2@D +アxϛvfr _^n<^VVvĿ0ϛo~AngΜ:t8QA1cV՜R3#} *;XX$U%~9sgUTkiR$`^P3١!Qё6En2ݲi{",,4) @&ngO UdcQ= &SvlH ;pyhHjwk4# 3YRJ?~-22}^UWWD}ev3v7..d߾}:'2#iD_ul@-"XXn$jp_xjibBaҵ'[f2$BXiw CbC UTt .jV__`1*d#ҕ5&`0=OPw;v^3&n ;f\&KXLuMtYy|bBCCǓX>_Vq3pR`C&@;>rXEY +ltAt̘1iʔϟ?ԩK۶m0v3b:EB z t* 7=rcwCLL$W# Λߨ8QdTB4(Y_@[TEY·o/_Ѻm#c >pM2z䘲>/ +/;X5kchP}VbFʣΌ"p,a*ԛF _w}pF6o!!!t,'X6;(wĤg 2>{ +& R3]8φƩƴJ VXѣGڷo^Zhz9 3;/GBqlQ[uc{PY.,,iwoqlYpy6ZObߚ+ٰ۷w|S^5Ri3Zm;ulg֭s@:tJFHx=,!uFI%% +U1;o'|xi߮#XOmղMm\Y֭S'~fފ?j*7YG\l;hV ,WZU]Y CL |zWp̙,jNDžV(p"s\Pp޽9JD +a^E HPq*.C4݈}=:#aÆ {ٹd=ungϞ +lZ6ޔ r|~뭷.i!Q,N"O_ƼxATU 8K)cdI&;~y D+Ģ5 +I[9rJMII@Re<x\^Kj\\kZ9OQ'qdZں]z]efzE2nƊ^aehFgh(R%Yz<}0ذSVV5ySSn=fwW?C7R 7?>IXg.jٮSVAN:lJ=a(> 8^kC70 Xq_x=A'6b]3]䰨o[ax_޳CVf;'LIvЇ(ˀvsUR-JYbDŽ+(nL^;b(U?btDBul-44|||z~5|@e;~:6.aiĽ Ξ:=yDᗨ +BԶmAծ}[s~4=4VEX+V\y1ƠAڽ{wy:@aR34 Cz'9kt@pZ^-JNL᱉ *Ȓ#+mw=ܮPg6deedf߻2S' =.ݥ _I6z\9SX ҊG' niW^5S6mU)`5Up rssuL +PGk<语5VQQImm]f͸O9  kԗ02 ȁhg'8%%EŰ@]w]nݎ8cS~ش2{ +?O<> ;ؐޢMT%cg& "ӒE π W͚e'Z a@lu:lGVZm{ҤΞKKN8-[dŨhn+B$_mmmzYYY3ve_{o8C`P[=n2+REyͽ]N]kNl;vX %O=vcuJkfլ/=3$aUЂS@;gd$#Ko֌DNKP黊^q;6f8l10?vulFEV=Ԝ_2安ev-|l߇4FuX5 +o٪lxpNNr:B2r!0eW+=L'sݬ nQ*x3}%73d ۵PI~ՅwZIݖ/_ޮ}K)Er8 pOB™Z$TIKFpy\7밳H 0DcYhX-4\G-| +Y}|8}lUm͕̌f#"'{<Ț5_~YY 'm%lD$L`(BQSSW^^i)vϬnuXee){^~y~RR*HqD#Fg Q,?զ֥۞={##BdrYh%y],C! KĉC\zFq Ԫe3S4cG +TqI)#X)Izvw؁JMKƀK M e.c՗ϯ‚4d f@#q,荂l1,AsZ<'֒hp ">}.9x5氠&Vj񇁒8Q +dIPl2b8o+m~޽'`H 'ܹaVͩ~ݷp$4;thO}1qO5wyH 64- +b?P7Q UqMVb? +ȏ>K2K,TR\h^^C<5bĈ{OL1 r`>99!2s8j s|@uu핒-\}}<0*&C_y?*N'%)UR;ѩC׆h񱱀CVT΢UIkkgzttwO۴iSDDCر&~%XsXA~GX1cT x)V[5_|BÜ2/\P__;cƽ/,1?Җbg雽:RsWU(dî@U>l_To`z돛|tWQ}yА^~\6;VrU?C@3EDZb6l w矟ct^TKq3#8P>س,7/΋MrA;ox]'JFUWMjS +[xRtߓl p6F_W~7Ò'm Skh;h6nK{:ը*@;j Fh4dυǁP OLrVllvQ+PVZe=->p8LҩSݏ6_to_2VI1Q^xy!Yg}V#X:Ugm2 Lɩ_}n4h@bb?s?CG()'Ok"l)hauZ']^^>ÿ/?@.W|qW7pǎwԩCڹs{ll,s={Έ"#8l|>k_~ ں/PFIćJ>gݺuU.???"2mccWnll >$j@l%ƭ8|L84͈00j#/Û#hA쑺XIp a Y%KXDͨ74{+GHkݮu4 |ǭ3r:Trr010)'訖ۼ|X,M//7 lv-#uC$9v,$4=|||1b0ύ7y7($$Id31|xUuÇJ{=[%M\0~a#,~שSqjt:4JlbDeTEb]J:} ?S,*.]p Ā1mZڜO?fۀml09u3Mo!A.vD0ORTW[?}ڽ7t޽ڂݻwc?)_'rS[6o%\nPs[ZtM, +)1)JI ;\8 +Nr+W~CUeL +P*Fmh݀Vd7$:Zzv줤$XW]]Cjl۶M;p򍭡ߢN@Xa#Gp|TDTJJ@E혤ꪸxbh(Z>ueW+:vwߞP_u1`C +ڴi5$%P-j4z#Uߐ _\9۷uQXڼ?rWGȊ4gg{JljJb~z]`N5;Rh> rȕyΝ>v;o1b;&Ln C2h5#D&'F1!=s}nC f|Uc@m@>ؗ-:xhXXhV[ZZx(7/мМf͚BT +gܳGА۽W@;1>G-\Z:z;!8EDw4L2}h"mD.?~<22 +Ջ/xۦba>/M`ZdqiaqzfƊ +X=ωFrN9dTخƴYzPIJl5M[ #G,\]wMS (\RV`ݷI +((A  :S &!!aπuP=z,ȄZϜ9Nt0)8j"F5xhm]-\SR~ejvTj*T!a蠃alQQ# }XoyCڷؿW:6V\2"8?_eqej,](j vNJfz]tpݻ' N:ˇ~g,`Oa!\v=?CΝw%]^/Vt=u?;vT_)|y[`y;MnjVgdE<`FfӳR&9Ҫ\bo۶YVV^x9p vԇ8ӡC{+=v@RD𓞅GkLl>7 ˯P[Y23< zXzQ4(,C +r}aAo8vX%Uuu:6|k__s2#QQv/?9vS玘DQ@nxSRbJRBmG?~Mf;"WLʓSznnӧa79rm۶} + _٭!a9 +CC#/_* 1~8c$QUV8?arˆ]iΝ}6mc۶퀫Z'Of#(V,UegϮdu~ (_r߷8UcO?K$zS.ݛ7ߠ&ZLe  a÷n84<<>6 #  QE#JK.kRE;u@S6mw:¯\)߹P`9T\Tн[M6f]"geZ }ruXH7h, ?ի=QS@f-֯n̘ǖ33^o֛X_ްqCUU{"vt9hÇM0aK3UC4P~k +BDop۱(੹~ + ZF%]ӻ6 +뼺d$Z(bYw793_{stNX  t]RJt^}C#G } y Pa/0JfoX9V:f2i%w5**j}Nt*=k< w\lHgyС#psНAy5Hrs4Իa5R0V9-g5CGތi:vJLd[ݺtq헟_w]o  +t +r[8_sT`)Gnذ`֭H}v{1rԈ_w3gOZC3tc˜sԬE }s̙=N;r|Wǃ-IKtYH:lٲ8`Ϟ\lِ!CRXsp CAC6T\TֳWW8t| DsaE9z8 ixҥKBZh?xzrvZZZRJjX(Hdɒz٢LU#Z]-7!a:tj}G~- PgXxXHw +|`t͙FŪ,O*ޣ/\afD.lڀ׎{C@:ǒ1r.NKDNt* qP-n +gpWLv0چr_XnE-ч0BMQH=w[~姈̴48 =;'gFGEc9=łXׅc "X o%'~/&B+ AywSS8qLH@+vRH$YT(%U,\˅zyA#n篿ڷ@]njE }\#VޱcAÀ +.y}@-0_JJĦF4oaI>.W:ͫ.?q7߸dRqK# H}ki۷\t u![5S0Vej <(ׂKۋI +.!a-Aֹkڳz# V@bB>y ǴӏI`%!!J@ MKIxBVzoIEH3Jiq>C;ұc+6oHOK 3զr~>,~px}UBB ;,s[ly=AƸ}^lPmu{]w&h1l[6=rs<1(˗/{\nزnݺOSNL`X=cT2dWf!Ձf0}\۳/3=>*}brƢӅzJuEoa*G=8&:nЁeU+Z ?0WWr&TBNCJo.t՚!_͙aO=M +jܧs |Te o[a`G"‹*+tҁ<^Jsν瞩u$'(V-n^c-=aC ,އ)PK<h A,--}YfjjZΝghY>svzunB5C?½"H7-Uƍz_^-ڵk+vS0?}}MKKvҳ뫯֎3F$$,[N +t]5l:u*"<:<4O^l{P)cݭ[ٔ99{^C]_TXڼE&\gѽ;lbegϞ4ZJ,v!s pl=bh#mں-]n3RsҡC23nF.X2jA๞auT`Q$rItj}$NrA{rܷϙ3g`֬YUGH~eK'N:pj\R[[ 1+CkE #n5YSSSubbbaqڶcDTNN"1x>#D9i$:%u.hgy#iK \QP/zňxD"QLURHgĩ+W~9;W_{`I簇T_MlO4 cYV 0CY?ģW߸yfF=*++rԻv + ?)SDޭlOرCYU-sgx>0ʊMoƴ{gMOǵDBls^/E9io?}^{(<&2>.`H.߸q3k?#9. 0PtYϛ*99->.(U\l鳧"#^(%%8qѢ@>=ՒңG|‰b85, z8999mQ׏ɯ/\{K~kb$hA=;@;J*i +P~FqȐ@0pblkr'#ݰaB}***^xᅻχlcn^x_[ᆡC^p& !J6Ϗv1/y_nWSW JqI||رczbXeG{@ #K ,iQE6fQudMII"=B$jS,8#FXhr& 4cdd.[] YO>v`.ݺŴ2dHT4>(ܝ_5b EAZ9xF])%%EI {=x \޽7aO΀Cϝмy8dggi;ݧ;9(dLW9 +< hNǻw>zȒ¢Bu) d\X0WU"jjk0iܸq-3M/4g8;L6`ܡfcߓ&N(**Ҳe˲2 A`Cz8..ܹsm]Uw ro`zQXLZ!4mb`)n튣s~az߯jnTK(m 1$!G.""S倃yM\p!..aÆ{Dӭk"8ǠmNiiQQQ^kNϟ?yҥ'N?]7\$ A*llZqoMPE/YbJ z~ ;,^Ok)Aco]j#2G 3@Bo0^|ݷ?VɅi)hرб \zOOov/nwJԤ;'gd(qGgѺ\Ƞ(&&HFW@AF@'5mv)tpNgb֭[Dd`U8v 6,XaĸDf2j̆Z*My@`>bbzs}W˫kd/?yjMd,qIp|@lͪ>(8S3 +ۇoHPJ]nsB45\~=y}C"_|R˜G}43+c3xO`vؠkg (R?n4./i.OVޒd4,1N1 9jgll\zzz]]m@9s +"//wAC|׮=DF/9a-Ȍ:²?~Ͼyڃ^c)'\x_k>TC Ǩ W;l.2~6!V3(=B(Bz62xDqqiBB'1«QV0%"M-Ln x#wk׮ZK)+ >!]`H*09V }:k' +NG˰,7*6$l/1ԨfԐE/c%խȎgyO>tĮ]{}sўxdffe&$ ܭKWtƌk r>*^ƬSU +"_v"Iܵ_x|֭aa.?`N35{ ֙S8L(Bɡ)qo):-l؂]/ҥ[6m1Y[޶OW~z:zBiYFF{nnjZtWa$уʼnS@%tu\B2;PbaAHѣGرM6(=z8lVBKCu;Gi=bd!0}/8yu_4o9t2(l=y%KO[**ˆcKE7׾ +5bĘ6 b)hW1 ! ,H; GJ.<38M-rZz\@SacVw6n\l5 Iؐrz,3i|^j\wj쬤OVhx꘰˒z,FLkҙ3 6pPU> +3#@ ξڮ8d-ҷ-Yd"6//`0I!`B2$@9 alb&q āN80dcJ,˒%Yn}D.{vWWWWUWWW7T}Z?}#SO/=Rg.nK.;8[RNc^JǼμ "aܣ| ZvuV?QU>袋nZxFj& $Pr2 s4_\fY]ڢ{''߼^>oV +dM_E|O>sk/G+/T? /qbnq* !5Ngᬵ $Ng5Oncㄍr%xd$X~__ZE+8]{ΟPXm괢e YkH,p/\k1)0v +|9F npX +a.ȗvg3tѣy{.Y~N!PdӠ{{o-o>Yxdwq Ձ8Kֻ?9*=XwUv+&:ZPt1I 6H =.pZi1k.um3ӂ 5rNaCFX `IUg#kSG^~+W,_|]w|+FKn8OqhNuT☥&B,Ri^q@nA=n3KGR#4кei'[Ri.zKWRy9i%]>{_soaUuΞnӦMrmljC`\o;P;Wg?!3!j-2%ӿvhÊ3Dk2j1ϔcBon|$+qφy1979 K ikXxݻ>я%{똗rC?K?s +>WfL9j7LV#7y爫9}' +\Uc582(b gӵ Ҙ핎`@g7b %YZ"gQ +zm 8IsH/=EMFuo=r"g.?ߕ}[޲sCx™ŕn[;˾_]z{yF&3ss[:als!iAaN)t2+6$$MX8Z{g,?[x<׽s^Z + 홪A9Sq_$IڵAf` A)G!)g5r( HC-E=v[ҷ[蝨sӖwW OGF#@5p>%c=VMڳ\U'fff>w>x`u_v/PEG4=7``:^@c*S3V%y A! +Y r^9.sQ%v^^EO8$N?WqEX bx%*BcSlH2vaxw='}ywAPvLv#+ןtY?~SW]~qvwThM[A3ފ=8ύhm䡄&*7-z&p.[-#!x jusyT `tTQhb6˜KύZbЊ/071̉yxfQc7b[W{7np%VQM6pm=ұӖypŊ۷?J{xj⥗^羰b<>pu"Bd ~aEkDIOu h߭ p&8 "~@].$RKV:KjIg>){d7Vd^&Xlҍs.lp '/#CQDkG6(orMߘK2 #| jU~V;U7?[.h5LW{G7_yUxCUG΁rvHެjCXҚU`bp ig\MˏiȪHH0BZ0ˎzL瘍hQ_Z`*BtyXPE5ā?jWd{9 DۆtʓBvK G h^?óV:k.Ajļb,!^pz֋e]tɕ*~]q7O0S9N]`Rc([FLpY4P+qZYH{J@ub@nr"oYSl^;ش)hdFr՞F;S 4'ӛ+19h."H<*SB!e% uk~_W]ŝ-Z?~jWo]| +&XwNpw08@K?(.:2CV)9*D걶c!BBff)6%))2UeȦ; (>TG$qρC8B0~LDo +zgj1{_8nu6Y\0# Q=rc6A ^ߝQ ͞=/>z?-[t0M6ܹ'z' ƸRy+Sӑ xC@x]4*+ ի%!%P"bCQ0($ +2]ѽ4*qG@c2&rgL\<u[ +шBBK(o>gmf,h.Yw1))80xS0Ay%ThW& +)i&r~0r%kYYlSgʒJZ&9iSng~nMbhWd\.Ks¼1i)cc ]Ы6},ku5QZ+۬d{FqyQu910ퟺ/t>GfCa0Qm!է<޽{n _?ٳkr<ŹJL65 uɨR<:u"#vmDCz?F1LK제VtUo~k5py1@WpȱǷ]mEbCmKWY!bYRdي8Ի%SBәA:.ZQ'ЄU BF]i$cZa'w奴I> d[ǥ3UZT7O?8:n-2<'H-#>mMD~S7e5Dr:I.oY8/K|bX΂w<9)K;6&;$R[e Ax^U;Ԋŧ>)0Ùm:Tx >>rN-j8ѽs/r1X+۸qcE^˗.yY}f疋o%x*Y $z!!;Y >gĥO3#)0ErڑR y[6)PUJnb@ArU3"C ?փ&́4w%=:~2ܑdЦ2K+#!{6Qm")O?Ɍ ;e`ynʠuF3!/9+7i6'o 7sb5i=J)ome3-Ys^~tBәLiR%)Sad7y{]ehڂ``?CvϼS}HsjFk"F:~Ho%kHkD;DvgXFlA)G <*!v\@T Lm&ʢ)WK)]I.p0.V$jV#$%xnbJhp,+2,%ܲ $lI$%*8ڽw֮]׿؇cV{D8A.p4h;{csu]ХQ_Z`5ۨsssSS3&5V վ3xHK憫h.tL矗/_fdNi(ʇ7Mb B2wy8AVb$2a,LHTl􆸩} +Lx,Etn߷P?/s=Ć 0(˰gIpxdyyOn&YQ"Ji%?BL.VN"jnŠ?9#_e)o4S*6-9Z=175ĭ#Z4 "!r/|F NʒTsogJScJB~^B&\+ +&]5p; (P E3zy)Xi҇S`+>MLw;ޱC+W. g_0ח(G326ZF܁J{!b;q%g떟2ٹo7t 3B>J1#ROؤì*pŤF )fxV*9#pTߦRD4w҅ɇCj;LZz_JǬ$N0>@|r본,ǑO[bO>zTZQXiXR$ kY `uv_[ߊ)}AP>d!;I3:gZA9#}򓟜]nPw;J|֦h0.(PdJՃb8y~o~__W]q5MMwtwXouŘy<ƬBϕ@:2%qMh!ǁJu,IFف/lԑT(e]Hn0,iUy'򭘫d(0QՆLoex\ 4.dB\#2_S8#&AЛOm4j\ƨtϰ} u~W^m8ٛUw98)1xzFݮo~{̢+&vq"SS^N)H2kijj瞻>+v[\t%{pvYhgBulr2J^p%vMU@5l"{nX7MHZOIVjLV| *79[ 4ԯַػwφ 1.G°#Tvk`mRlj ĉ-[ݻw_>iFtjcPF , WM3I|89l_1")r&a wP˛, :Txml8#GPWҡQ4M_dMW(G +T5"τc&` \ U%C1jD⢡N:I/Rj\X g\)YOt;z׏ '^&lxN!5 +CXzkgLԗjmS}c:rh$?ǿu՗a1} bGK_)#H.L%UdL@mG䕥`Z,Fթz_M</&;30lh(VeRqU7g"}ܯL HUve-o9sH-Q1 +?WpwSwAN1cI^^QU6_/<|e[;Κϳ.1dngCՄ(AL@:%](i 7n'>m^՘Н0ʵiq9R 46R:hvʸlaqakZ1Hqh uD5$˹dwLf,ONvNk_&8ER?5@IW:s z+p"N:Eu+#yn9B(\8)?ܓD:CP@ *Jқ vǞؒ8ֲ(Y3S_sߠ>@=- 3KJ6 e/I%:L@-hbPtwVwʘ֋/z oP#;Ğb:1UK[nqi .[r_bXf1ɀ-B 㺞W: U:"cb^d ++F3-Ī]vU ~"(DfRH@`&Qj4nX2>e u=8`n^N*<dʼn.r!J8=R#иՊC¡D٢j.+(l" !{FbWgٞ$2$KL2,$*8eG:Y"b + +ST0(Ux0cT4mb.a,P/xђ2X +ԙU]\RRRQ\F 6MI8%Q0&t'i$/9t&7>0NF +I.sνd?r+~]gB*t:2cՀ7} O[PE|;+4KZWDHP, Zr+}O/ K''^:iف>HJ CoUg= !zv3 wV +GTK<Kl$A ;[z;”%7KE{ ^T HLOܛq-$×&HvdT*u&&h+<47`l_ŭ[V5U*43IUw?_򌫮r~ƄC҉Ru\),yaB!Ae\J4:5{ytC0W5:Zn $HO"T0ZrV5 eHGژ5}Ckv[ F'ZV )FS >Ν>kuxo9 Q"AW[+eꕒ)Q#c|Fhx0̫4Vؓ3(C1PtxHV-l=zb߾ .袋mV}Hɧ.%ttFQ6=A߻1Ve`t_źu`5[p˾(BI9evF5 +ɒ\J'Ȳpz%D)K3~͎W,-5/GL)ZX[5CVLbDIBhJ&Ѽ$Rx35p@RYĪ@aRa>pN)sLTԂó(Rs+}#Ǩ 'Ν^tMO=_M۶]U=LrE"HFßˡMޔA{Me<7lij;?o19SRZV*!PqÇ_+/Wm1DnfDR+(`WdU+ݩ`Йn3 zem{r9hR RH3sqyM^=iO$F) >֗eL6sLji0oZ8jt]J:z}_qjXi[ ,0."Dk8UU 1%&ᶁH ~){@j"t6G[7Rx!x GOreer=.<נ[!w1VΑ,TPM1987cbA:ghf_oʪLXhTm;9⌨FJM~E_"M"GB: +Iosu_Mr +rlzoc/:g|LOo֎8 +3x?J]J8;NMu.Bl[)Ӈ~+j8% ]cҔȈNFEDrJ-0IlApgEV> 7q Dm۶:j8?_FQt'wbԝ5T-,:\|odnC"] ~ς&W<"m97A83zuڨ'e&`GR3LJQ<7 UvRMГÑr؄j44AlA3V&5^QSX+bCܮ7LMOW]~Ϟ3S.`r u s"Z9oQh}mI:W>2X>Iq+?a34WZǝ YoU%m(j(MʉeB+DU"D8&T' @<# '҆$ʹe$[z± hpHO^ADr:P?y2PYo|7iff +0<@˥:Vdx*DU_.3!KFYr*t=ɆI ic+A>T}1boΘG$᱓s)j"&8ͫbjýGMck% dUtr*dtXA8$J-^hڠvIM!B92TiʙڢP+L=3{>h/g';܄M*yjP~Ǐ>p33Ut߫hj_+k~RI"Y鄤rNJ 5APt"U>,0)P%ft ("JLMߴ)>S9Pqmuk4Q|lJaC:@8fv(= THq U - ?.jȳ܁RR*Ftݭ1W)Y$ņ,x=?7753]/esa=A{EfC;W-:a\.ά_A|*ט 1% Ջ2k:v s UNdm\8ܯe,`Ӻ694BB^B: "B%Dt&?"VgRvbT  I{Ԑ&v5BHJE^! > +stream +x[U۽l3 +!H0 # 2O% mw ; 鋂ya yXYqYAU{|.TʮJ>]S~3 P/v϶OgҔϋmew:;w^4M/8fץ$Zai](> @Z2CWm=ܼy}-xM=EJ. ]g^4f{@P`PmebOىL^[VtBNbQ``}^;甙Y֟$T0Q_2Z4?/rPmp|8Ny$./}7LnLD*dU7zdſm" +Ww),{4I04 __%I1`϶*,΅ >+;E`Z@t}zsֿzx̭X^> z~8}ky38/T[Y9,[~dKeYxG7ͺh{-\5qG~ۿN} W9EEsr:5죟|mQ$F#ēgFwHLgi2g|ޅP;:|< oz-ē|ϲj +ln(ʽZ$@l]|&]r$+X]OVjbr݆Qq$.ȳw"r9ҫ m%ꑇGfXޏP"% +fk}782ON + ?Ƕkv{ߝvR1tv>oۯ>iPO6ܲĿzF٬|z++,g=z+ecaZUNT A61i;aDuޞ8jh^j޷~KWUe L _YyO?f̌%Ϥe (sToAר+3..AB6=@<\W3ej\ܛnV3MUv{ro\n+EH\&ӝйjVnv}7rd6UR<:SyT(2f"s ,V3wliYlsSVظ MUjD{qGY|!)/4m_$y{{骖jLh,'R-"M;yi Cp'./6F٭<_.]A6s[hj݂/NGZ7Ϲx弶^ 9?|0֋ز5O.ԮKA)r'm$.,ѣmє cɪToy$ncLԦn)v[79w'7{miny9OsuuQ=\p0M<~_:aɽ2P0[?ZZV|O~;rIݞ+ޙ3]7w+=<8NmOrf{ڥ8["_zv11m2K9afC8묬&nWY[S3c# +)qJ\=di+:> >f}$lrGUޏΝQ'LvI7n;>>dixƄd STY&$ӲbC^3ʪ)нK Nl%7d`w[#j `09>ʥ&(NF[SpDM4% L?>yyS + m/HE|e_;nr6bf[_\:*unog2 T|VVڮ2VCS\ W4_|gS+߷ĕFk_ٹ&&`9E;=99 azzoAǶK>Im.-?ȹ,3%ė;D˟~: ?d?Cds2'Mkݽ&,T}3(2/t{F]"/ݮ!iך*(>{}SWėMMeTk*tgwmQhA) +k +Q|X}3C{rs+udy:EFPu#4O= <7O=5~=/ۍ:+(0]f: QqdDK3_SxWWVUhjrmn:E&.^ +Y} -]RWDmf +z{8xx9ڽtanNg? by~y>oT85 kܭabwfSS*Z,9Lƍ[o3 !+ % 7rOUwE$jU4). +ϳ.OVpv|eeSӐz%s)vE=W2.cp1G'SOD-i\ hGv0StڹOHR`_2Da)kEEX_e'G"rJ&֕ȏ)rVk_;_*fN>4Ulo>@˻%J#_}ToBys=O`h]EFPc*zչh:#ekWR䳽}Ų;,[A|ًݘ1%qSgV?Ϧ(! .?wlWW?(Gga|)Z)B#(phE9[+rѪ!9a_k\"Wx)g$/* Rf)]:7)ަz6mFY?W |'d.U٩Aßi:s"Z>|1m'wG^IRӤ)>m/Dj(&S +Rb<>uj+I+|?jfs d_.w+I1堸nghuuFB:Pq]L=~|F}hd qo/wwSV45(j fyAºVCSRx_[VTwbޭ)v +C{D33TL9X[7neƁzlZ[[WYA#0՛S} ~rx~lJX)5;o<ܼAͲK1T/U^Go<4L`C߯P" +VkrFbf EEK/<'oc!8_ᬭIӨ t_g&HӉ `d@KԉPW'ZXx*˓ruBx\T.Fwjq[&,Q Z"S,&ҋȘSԔ2'= j>IAב:+$5[ҭGM^"5|,ѸQglmF-+8=ɡ*XG駺}E"EVbRwF7]lj(!T/5I~{uP%p&O7pMjWUA+#ᵕa|,fRive}+4p#0`La44}6wm.K+:sZS|r3_ pVK|X@Ql2,[N1OGI ;^嶏@0Sx"(^TwR<qJw~Slj7BQ X7 <USL_Xpn*ׁv%4.A1dp _h@z}bu>n٢};KQTl9<58NnK1 "܅Pή3G+eVxF)Z܉A|sFܓESy)e:9zbքhm^@թ]KKu"wX:/ +eky^גQ&(¬M_|ܹ8sKdR 63XY𷿽XYշmSY :K;k +(ŋ " R8 +endstream +endobj +147 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 886 0 R +/SMask 887 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +148 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 888 0 R +/SMask 889 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +149 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 890 0 R +/SMask 891 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +150 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 892 0 R +/SMask 893 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +151 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 894 0 R +/SMask 895 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +152 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 896 0 R +/SMask 897 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +153 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +154 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +155 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +156 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +157 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +158 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +159 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +160 0 obj +<< +/Length 10 +/Filter /FlateDecode +>> +stream +x+| +endstream +endobj +161 0 obj +<< +/Length 2996 +/Filter /FlateDecode +>> +stream +x\mo8 AB⛴X,v&w(n$&vޢ?y͐-)T 4mpH<3jv)2yYowź,ϟf7__r5/%~z].6?\}$%)sE4 ,Kr'ɿKV'7'h7'8MhRRp(JLnk:„#nc|ε,̶N)LZh6 Cs];t`FfZ]qRtI|JNSѐh }WrOvL4?.KU2ǗϨi3$SMc l +[L5dD$$2X\ N\k_}ݯN-9,EdszG6aI9X ʔ&VOvPc eڑ孬^l},_=EyVԁJuE.3!B +<[XW{@ qCHb W\A"܅7Efx*ܷ_qv:w\QNWiDfm?M ۓA!3m0Ef hXQ +d&rӵ0 .[Y0dR6Ɩ6йJ|v +zeB(>wXc09RXvPUtJ9JiӉ)ćGEF(»W$="&uFjʁŽCea9d_RAT>AQ˵%8~eXʵz,FZ OtHF&<SMxf + xDR!0"rfsdpF)OyD&-s gW:-Wa 1;%YKbq2~c0Oo,8:h>hF1GQL.dbԥi%^nhJVmIeNU! .W($FZk)ZG:ዑs0 `ʂzmA…J&;Ͳ^ɉI`]Z<2>Պ1܃ d 8+€>8&_kzTH O5&xu1m*\5O86j.רeVv͉5MOuһ mb;55Z~##k۴,o0є z,ę&0O\G' E SсЙecsv(sdBZ ?: 8FsUȍavؘGy!r>DO%J=uC{ڷ)b/T~\ٓiīy>pClP4G-""=7/5ARB +A$Ez{z%)oϏ V +p19{:OC= @b2gES 袁LF~p|>gLk6\ bfs]65> +stream +x *0R0BccS=C3s# R!9K3P%+  +endstream +endobj +163 0 obj +<< +/Length 52 +/Filter /FlateDecode +>> +stream +x *䲰T0Bc =3SsCC#S=C K#s\.}\#|@. f +endstream +endobj +164 0 obj +<< +/Length 52 +/Filter /FlateDecode +>> +stream +x *䲴P0Bc c3=C3S TL!9K3X%+ D +endstream +endobj +165 0 obj +<< +/Length 53 +/Filter /FlateDecode +>> +stream +x *䲴P0Bc cs=C3s =#K##\.}\|@.] +endstream +endobj +166 0 obj +<< +/Length 53 +/Filter /FlateDecode +>> +stream +x *䲴P0Bc cs=C3c#s3S3=sCKsc\.}\S|@. +endstream +endobj +167 0 obj +<< +/Length 53 +/Filter /FlateDecode +>> +stream +x *24P0BSsK=3S c3cSs=3cCC3\.}\3|@.? +endstream +endobj +168 0 obj +<< +/Length 53 +/Filter /FlateDecode +>> +stream +x *246T0B3s C=333CS3=S sC3\.}\s|@.܈ +endstream +endobj +169 0 obj +<< +/Length 52 +/Filter /FlateDecode +>> +stream +x *242W0B3S C=CSKC33#s=S##\.}\ |@. ^ +endstream +endobj +170 0 obj +<< +/Subtype /Link +/Rect [339.6 317.87 363.56 344.82] +/BS << +/W 0 +>> +/F 4 +/Dest [16 0 R /XYZ 68 132 0] +/StructParent 34 +>> +endobj +171 0 obj +<< +/Length 4069 +/Filter /FlateDecode +>> +stream +xrF]U<) ĩTIxz݇8 `HЊ~{$-]Q7VͧtrY7%(l{ R0 =puvy'H0žÜ pbyxU?6vt%ϗw`]^? +| iċ‹b$I$}u D], %H ?Ow1 \3fs͸[i}xc9B%4'C7#˄'G%^ }‘?,y +$/B0p6;䚻a @\ Gm@- ==$Ds rjO,<5Џm@hg"[jX]d<% =H9>;Uc[ǿs&c'N`Y{ Fᾃo0L#?_ᄈ E#xυxҁ0JL /](}ruB^%8َHh'MoM:xuJqOZ#c̋(HحG߽АG~mK'c} U?]>/R#pñb@Iw%X+85x_a)(69Z 4azm>'Y/o6r־.k!X`]a=uK!m9Ep͊S. +sU~ `Wgf9c8kgQWʗ >ֶDLSdQZ[Vh1$1_UfKMo4hOŞpkA! 0 Gg"b7Ҧ8D 譲l3A.aQ6L<ƾ)lÞԾ +*`nR>#HE +*Dp4@bN^T5 S _R  vo$b]mu$aRkMp ,sVd_rw3a^UDzqX+ ]³06@1u$PM5Bٙ*s>ww +0|  P iPyJ]:uhdLg=Z_q j`e~+sc#d)F3h-]cf9C`0451/=he@}pC}IèmM {p@QVR]1n)@IT]j )e}~ IZt^q hLӫ̋~VMCWL9n8p >a}1wk/mwe[q=kn 1{m˾&m V, ?'#cqX.W gb!&0BjG{R_n>j!΃A2eQ;m|N1ym? )@[X v PQ c m'R|]2- R>q=35?{($|Z *x~}C H;,IgzڗB +Rey:rOmi?o<'I5~m9W|o4 xhc5zscm*c<[ '4^0<$d  r:<PtL?@F+rI\V>8wB]94vST7;׾k}bǠfѕ쥑LqEYҧ%դhP25B45gB@KQRqkF'oL [ԷdBqB@q[S} F(ĜAƶy_rnC1 et"¨GEJ?8Ģ@@A}Eq Jp jfukKXӭu8omrWq52Ju/$wa +l2@_B6iz"٠}EQ 3?(,g8UU@ZmkUQ Jd {gV!ݴ^nc,&^-!흷qDEzt uo +endstream +endobj +172 0 obj +<< +/Length 4962 +/Filter /FlateDecode +>> +stream +x\[oF~o_- /I`,flw!ڦdMlCS{.USd(*c,ֹԩsPbI +o.Er;^^gE=szsb/?n !ˊ4rqz_9:֮N)'O߾_7ן޾;^y{+儾Χ'پΖEor.|Ϸok@~jt0n(8#`k}*>"/jpV /־J/ >=ާك{zrf;lreeb!%*%QR {V,ΊܰZmnaOAxDWl?CnI׋QnkrT^%3 +к)2)DZ+ۄ5*}uK^Z^ bt ,O %PkRS9x $)Sw}7Ęa$ + +9=+[ǻk:tJHMƬ.v I\/~]bW~O%hLKބ"d(B<7@o&\r}7{Qq)E>a +BP{\aXv5Ҙӧq9!g";BBO]YWHPazFhŨd^u+rǛ_v0ux0sAf=Z{zF[\PT^*^1u=BP^X6/"KxK Yڅ^p, glt(Jsz0JB//,(=m[Md?qB^AEstw4lӪL@dHxV>+ʟӱ@}x+d:D+d$-[lC4Ja˪熺C?#Y +])BiUeu3wZiOp >n|Hbb= TղM? H `kOe- Qlr6x%1~>5b!֌Ys+VM(KDu-O7Hk-ROTPkI٬Rz2- .i:qSCB:"`.5h6Z0JR3tkC@w"!an! Hoer&=AD3~zBV<0vѡ~xfoI|PyA+\PPXQ +1|䧺Y_qC)i7tع,ķu:W\ +8/qd1DdžJS7Oރ}Iq7ߘ3T6wxyԜ˫:ZjfT:#.̐ ,>bR$KX\'ɩe9)bfNeg% 4/vMbEq2De;Nk[e~=נ9U<4չG ؔyFPʽS.PmULp"[vgIh**Rk@f;DhORP~E:Klۅ)ڱQ 뗀wpL²^-P=s=e/TugmжdaMܤ\G3 /t;+Q-5rrFdmLEhUd/RPn&l|qx#JT*ȳ0+ =vj`LdPtFSjz.^v)&B7M1U/yG Q>MS$6E9E 9-ʃd;%]4XңũìQu$E@@u2nYyD\Ki69cb$gt9B&!*-xȤG7Z\Kz<Е("Z^U$l3;dLje Tr'ZAsQ]&o*"PO8.g[K=}óF_%Z{fMD{_m"@K%0Xv폌%Cp;%#3aYr8 :3ZK8Y~TF]::X=S +pι+0 40ozު_ԕ˖= dT7"Wk \ 7WWGWO^v[0D+efUю*uoߛ'=Z_!ʒ8I 3EhTD󮕕ɲ:+fqES'Q5yxA]WzxD{`: mkRT~Պ%@} +$䜀}\W̘/9atMA6U!2Xg=KpDJ`"xVDqE͈zw 8) X ޖ GMxP_"Fs xѕS<,3Du*(Pe%, +ih~-dQZ"p9#/v_!Aw d~hl36#d3az(?QKsFpD+(1@$j=D#]ojWjW5`12PoTfdJTl¯؂ +q,75p+**g%*c+_^jrvָ @F-偓OPJx/z^KJe|L^=a%F7Z%Yd\^*U/ȓ_%iib/ 3ȎRm sVPZT% lUvl?ǽΏE= %!SG.:gA57$cyN}az)464"'><܀m3`ɪW@j.|щC-éLB_c,ёr4dHIƒ?ۻLɐg# : +SzYyh.aF=,~5r6Kҍ iydck?pT/Len˗ʫL=oS[`{[ +ǣkW=:r3 )þ.!Be$k/>!046y8#xOHIHL^>b|-rсh%Xؾ1+#Mq3PFϥ-Q:nuc'!~VdLU-h-Y;Vi=Tly=8rGHv8ԅ碳rU7nAtw>%wF]C'Xr|mu|Bvs0oGs5oKOؖcel4=;}gR rޤzj6Oԇ}a$ɇ &Wٔ >s5VI!<9M'𪑔\yD/NI?ȡSgKKR$$2qw%[FsAo 2"q䯪l|0?L\R>mp%4nx@"R│)ǂLTzn"pͳ;L0mvMZ4/}=*T#]Ԟ" N<ŀ¸n =nulUWa8 ݌(-Ɇ4`-\t6i Busiy^^2AMe<+`";ߘ?#> +endstream +endobj +173 0 obj +<< +/Subtype /Link +/Rect [387.42 604.95 433.6 631.9] +/BS << +/W 0 +>> +/F 4 +/Dest [15 0 R /XYZ 68 611 0] +/StructParent 37 +>> +endobj +174 0 obj +<< +/Subtype /Link +/Rect [339.6 338.62 363.56 365.57] +/BS << +/W 0 +>> +/F 4 +/Dest [17 0 R /XYZ 68 656 0] +/StructParent 38 +>> +endobj +175 0 obj +<< +/Subtype /Link +/Rect [339.6 123.23 363.56 150.18] +/BS << +/W 0 +>> +/F 4 +/Dest [16 0 R /XYZ 68 183 0] +/StructParent 39 +>> +endobj +176 0 obj +<< +/Length 4698 +/Filter /FlateDecode +>> +stream +xrFU<)fWJ-ڲw!$GE">q  鞞gd~ַ^n߮ߦy>q\o8ߧ돧oy}ݍWacygKaJ؎~e^z\+۟6_ˎZcGJYkc`ma`kKBׯ~[X?Ox{__]E >F4~dRrl/m?К2ߎ.z!~S ?.Wj[E g˕.%Yb:kyK)Bu-6Zon-M[$4aCIgGEvd~zrmmaL`bZ4˟5Ly?B̌p@|ļ#m'jz\=;L׷&Bv6_pr1"rQhOw-`n_4ڀPn5H)ĥ@ lQc=)Ck}˕ +uhc|@w,}|ZC2n0F]Qw]KvL wWV? g wO%%qmh( z E*UCȸޢfeUvvLm5NrXUEхE8eGRʷws%[8L|  a`wN!Je_EG<4 iLD->~,xh5!JB8Ofvƕ- ~4*Luxp[9ZotPe1\QiK|wsu73 Vzp,xA@>ttMva%hJjM觰7̒=[5wIȱݐm~!snrKzYu +6>lu"?̦xv^xyn䲣C[0ZO ? q堼ڏ]iAΖ~鐠{"[8KSo<İrW;97Gе+#QGuRm~HC+S@K"Uz(K׎Fڗ CCsq>l{p_Up]~a |8qv'4PFlNR|LKlZz`wn^5';Vz=pEA:&}t]RZߗd-ҍ{20n}i( olX؎KD( =j1(8۩(6 +fe*(:(-)r ѬH2$S9$][9t$Y:~}y '*)\5ovhRoSV Bvݯ&CR詏A!)mC9Ǥ!a*Z DbPqW@ 4;S,6xV׌O i~8/EoFUgc Ia+EMz%z*RHZ,f@wϾaoEBh3@zod2 E6㐆3 v͈}VjRVʯ;E%zuvLu}ssWvI3)vyynV׌(gHC\Gtgj58xƽ.]\%wx^~y< KH¾9 +750zpPHcKϭr4G +{?-+~DB}v@4 eg)x._#:E:.`.LXM>FW%TQ"ˍ,ߌ׳h +1|W.2y$S"l*?Rd@jH%϶)D!m\Q C+%#yo9- X bކAA +NlG)Tm6Pb2%diꖸjv6/yJ$̽y)0MbXdh{VW{5Qi0Imn@p{nlm{*uJw,K+su-wq4kqTkhf]#"%h&bȯi3Wh$ҧJf%zJ Fl,}}Hbu\jƨXٙLi#%[|O&L;` .%9䚼`@Iw++~ʎ˳11U~RЀ4/]uƃT/-܉Cܹmzj«wsBGA]^ qr @%*k8ilt_nͤߵr4*X|"NܤKDrR_x1$XOsXA%fܛK)Ҏ'FnQT-kRJ,Y?s!b_XSNGAEoy̜Gܪ.Dْ9@c}};O| ]R9hfhku=Ww2*2S,5"چ dn RIխ + pL46fbfW:@kOnvkv$;+A< zE ?RƁaxC)7x'-Z7;[Ɠ۵8XXFu -PG0otR؝k<1!\(qçtR#K}87J8N`V [>ݸ/=B^4KIgMlIK.9dh:s5vsYnm䶧eXRMJ iblW46 Bh.hL=+)Gс!ԟ'i0Dz© qdӳ4 eŏ^&*"o$gcLƉ,mjeaFO:'u6zh2$*g + +k5![2'8h+E=.y)Ps`3lݤ8̽D3r-9B7[˨Z XC鸜P|8VJ'-CE[23)َ٭ qحqlM@4b u7"ҴVY: P_ ;rтݫ;q;H +endstream +endobj +177 0 obj +<< +/Type /Font +/Subtype /Type0 +/BaseFont /Arial-ItalicMT +/Encoding /Identity-H +/DescendantFonts [898 0 R] +/ToUnicode 899 0 R +>> +endobj +178 0 obj +<< +/Subtype /Link +/Rect [309.04 703.7 349.66 730.64] +/BS << +/W 0 +>> +/F 4 +/Dest [10 0 R /XYZ 68 799 0] +/StructParent 41 +>> +endobj +179 0 obj +<< +/Subtype /Link +/Rect [290.67 661.8 314.64 682.75] +/BS << +/W 0 +>> +/F 4 +/Dest [17 0 R /XYZ 68 635 0] +/StructParent 42 +>> +endobj +180 0 obj +<< +/Subtype /Link +/Rect [362.94 661.8 386.9 682.75] +/BS << +/W 0 +>> +/F 4 +/Dest [17 0 R /XYZ 68 527 0] +/StructParent 43 +>> +endobj +181 0 obj +<< +/Length 3204 +/Filter /FlateDecode +>> +stream +x\Yo8~7G ML` $fa<(-o[ ~YE)RNbUuwu.}UUߞʋ|*eyRåUUgP%4QF\rBe.C:?=?Ȓ.aDSbL4#,KnS?dlNx7g?&ߓۿ}tK=HO o53C4O$ %#5d +1*d*D'SrW=z/1T|*g[DmX'dUZa[&Z=:F2>o.K;Q.gNyiOr;qi32NTjڄ`ߓ)O4YF$&'sFh&&WI)C1djG֪|ljgpUQc&p6>5+,y+9?oC$QY'!cD['@id„QHFX?%b5Or5jsH 6tƬ\sIhS1o𴘃eVWd˰Oř x@1t\j(rc7 ) `Aqy gϦLa FKg͵ʲ嵶<-Lln{/n,޶5H3w^˩Jo)/G_J{H# 7PGmY }zw ٱyQ~n7<+=oԧ½z@x݌WjTc?ј=E d<.;">|`1| +__ho?ǰ +).zƺ )qN4)`wh<yٓv7DžEӏ ؓ +6Hq:vm:lNQ9r=i& ycWѺrlN5P?=i +*3qd벬gc-{zZWnI T1B-Qւȃt $l7gckdu(jI<i"2] !F6F*B{6)?iB3EO`}d7q(\ ~`H6dqmz[w,2ᑢ~ " ]nr_VnKv Jl^|H/1zL_]q/eʮytSj3zvO ]GKR9~+}?ćԘ mfɗ@*0Aw8cz_ؼן&9K 9/\ @j@=s-$TkSG(}KmxZ)@+y/p +4F0w@oh+f﷛Ʒ{Co(&x2]&B"D:9 J>jOjVWO<5X&6@@Ο=RYq<7$ :"2x㲷[|Mh}>OF!5䏯~L +M%\ZO^v`{(}bR/cT)qmUH=a q@K@+`C _"UeE&7ne8w=݈ɍtFl !)T݁0SPNç%+-(cs}w!➭4kr Y A)2OaX +l0MӦ=Δ\FMx=|.qwvE4-v`spșX$h0Y; $|V. K.<9eD =AxYgݰCyK]i2 aWPb&`MmV15)<gVdEܠWvi-ǘ8 ?5 |Ob|M0}f7#`$=9vAի]@a[0(?;(f陡ĿZ3 +AykSzMzpDO2Ǻ&2 6ɮb +R$ÅED Z@m+)lbC/4$3Fሖ/f_kHz=*YyEk;,,~:E%h|Ph[8owږo]QSh-: cC/g7k\YmWФgfP}*%[]Qwe?=$!e4^ٮ${[6Z,[Ryd`ty6 N3&누ҶyBȯJUA?F?9_ӥniB5}T|֗њ/ew|x s}x쵚)s !q}sOp l&aP(l~4TUO(HQmCP>Ҩ#@ B~/>ex1bd +(2]qA:dn]PoKm96 np +xKDޑ%ABHٵ3x yfרTU~gP\*UjQ?B= vh!Mc& Eh6T`44@Rs9o'dsSYV4'2qoS}@lށL)/S}kA!A~# E^gE',c)7ey`Μg0g;",ů!dlҒϞbf$yuM4 T/yec͈=RF%ƗpKѠk;RTI4j鹯xCpٱoKjJ(*!|wˍfS49lT, +EPHޯX>{ŜZ@{ڵMBu)Df2 T Hu2bwh`z~v%, O=Ѯ]A^`dAlt(X +A7 ܌z=[٬h]Y%'Uװ2} BRRKT%\ץAׁ49`$}LPkd9Ev_jzWԺ =rrlJ< ?^iUzbdM 9>JA }>g U`&Ʉ]j7Q&;& ˬJjr5tDŽ,hLwY@8eÀa䲞+-36{"lj߮,M7xNMu"_=o2w +JCI7*T$D:ƹ sLd +,<ԅg&}Yv@RЎBBEqݧ@r^ӁzLw} mVDtswY~7%ZGH<43!xy +%TWi ](F9DIhi,!~A`V‹ƚF`[ɼA#_8?|v7~&W9jo(w5 muk<\1`j.7)2 {6P ҳy(c2AYNMiaicsިl6>l@Vˠ(hCt7ODWX%@Smlj,A]I mJ2[xVc8_t9ݺ]QRΫ5݇D xDmnGbJS{Lp.xؙi]EyXi-197:~!s0V~rH>Sj1SWP;Sv8/sA!׻2ż6^  +*GsB:$ɍ\,ɓЭީJ<_DmF|$'(xe~FۊH _̣|QK@PF8f@5Q3r8Z~\x ULlQk ȸwl,AYHj*xNvXv?baGNhVpj.DwEsɺsmlE3K5rv1^jd.B!E= ,Z:|&\6Z>͍We3SnYu{sG؛ϓSRr#x g;f=c;'LEQ/kyL J.!S˒f#p/,hgTA5pmN(X%+S۴!; +ܲL/M1'x]Rm0eha9pw,0C&Q7o@R" JLzdNd?^"S+"8W+/BfQX9>۠,QqzyfY25Y>cS +"m$ņ` +W=l e6!I4FY[2n"Әּԣ .c45[ s0klHTu%NЉ ɓ@ C,2ց !QÍnItՖv]G뽸UwӗQZt&:H +E\ 0aqםSfp3u.Ų[ y'y¹v+ \52{938|}O-:Y41/Qj˶jBTTcsb7Ge0!2͠Fᄐ7,8V!lo0Kd{gth ;tjL(Fo pd߽UU}0mNXPkrޛ?xs8CJDRn^s /&)ƏkRs39f,-#/IWRH=K\c6;uPcq=l>a/P❄5sNX[-9 %1inG^tl*S+ V`Vp"ua#U)wSz5C1eN;jʐeMGhOiA;dBlzC%s|$=t= NwOLVb0Ԯv%: F6%P'Be˹^/=xϭ5F6}3re`}sI82n+cm{g H?.\k,SKߺ/ZG ywem"`.uB ,V>|t5p|0&\C.91LgQ,K76w _JYtyt2D oFxl@{;W(|FƁ%- &u2"Fiw>wA+j{E~ +Z!݉C8ږ0ЙNibæD꣐b<$2^iyH^Cx(Hx-`I:^ң\1%BIp1MP}M+ |&=C;8{:8ҪuP:;Y-N>/٩!(D%ER70-0J!0i3%k ?p3KňW؆?Uܸ T6P&?Q +( x 0'fljY[oTrc"~E" l'|578hQf/$8Ԓ:'!$Tm #AFgOф*=P' "Uq? [#.Pe +endstream +endobj +183 0 obj +<< +/Type /Font +/Subtype /Type0 +/BaseFont /Arial-BoldMT +/Encoding /Identity-H +/DescendantFonts [900 0 R] +/ToUnicode 901 0 R +>> +endobj +184 0 obj +<< +/Type /Font +/Subtype /Type0 +/BaseFont /BCDFEE+Wingdings-Regular +/Encoding /Identity-H +/DescendantFonts [902 0 R] +/ToUnicode 903 0 R +>> +endobj +185 0 obj +<< +/Length 6030 +/Filter /FlateDecode +>> +stream +x=ks8S/s%mhESYWnK2s٢mؒGɿ@Q9c@7UKn4~wdίmIN/oYtٶ˻}z^v\__xr6,"/,+2U\\ojTzh1&sQhT,蚆F ~aA*>&i +\”@|(𥂁K LdtxȋtO(dX^>8)͛r]b8[9pG S:?UUQ0|@CRyжIɟ +4$`TIRR7gYv~@-8tq3+8.]@H߀5Kxq܏'x*XS#(QN#}ΞCJzO򔁵Dyp/7В'(ޑh'Jw={9ToA7=UkyJO E.D+,R I Y!mȏG?jLMli"2#VL-xs3%Hp>J4+7=eDopv氵n\m6V)ְ.-)o*>:01Y>0v[>a ۧ@a4`a*ifY0æY4gkﺠ~۬KX7d:6d} Ri4^w-NfQ(&P}=ܡZ$Ɔ؀3%$Үƹh6ˤ%6^ d0|j )2oC@AkĦkN=%.'?RPLƛAkZ($;c/ $Iii|]tH`5-vDEt U }"kڷzlV!:W5ta26gW$ {U`ɪ٧q|9J,/SM\ *+܀誃1:I C qR^xR_IUBfJc b,59Z>9}ⱺʞ ,5y, %RK,H#lU]kh6N-hn1~+$#פPq 5z|c$=(p:7d57ć +g~@э`墵if_[icj1jo(m/1MjfDK['%~}-&Dc=HcTȧpfX$QTMb۸d MGrï !_sޝ)Fjs't Sqr_-?S-xf\eRU`uUzF"a˺[KLT1u[u8ZH<5lKÕ)|a1䊯[:uuT->&vUJ +ZZoGQc%x[;C3Kmr.n\3Xլ9nIU*="nNaux9$f4 (t* +`tJ6堕 b:Pa(M6"-9)>M'^"DXE"Ut}ZCQZGo/%@"n(Σܹ,Ek݅ND]pFK~fj`eQBG|ʋ>2wZPm̓?GwEbcyLR?XRy!v9j9ՍlJscfec8]d'<4 rzsXGQi|Dz 9FBSf"︅# 9gARUhL4 M2ޏ8BbؖFשtarvbRNyg;hyd:~ZUBxgVϸMؕq/ƢƓB8}/ m'uHM#{w@*_I(JF|xiVSӣ׉&;#}CD3@i Xv:D']LgI"1D$gbL5XSҰoߚA\q2޹[;S"Tbg X-k+iĒ㲠[2뛤x򕐅{G'J",t\.XYaACkG=vXo[7+{z !Lʰ} ]Y6'D0_DHyPݮ-9&˸m_L}O/y{LMRѝC/#?yVVYT!b@)426Gqҗ917(RdI߀o;nIʹAm7S0Kg.z!T/|m?K^JP +/SRf0gKiѮ(a7MZtO{nga:}(@Қi1zu!62(Ŗg,#i2Al67 .WnDֹXj= xe&t>#)@1.+}8,HPQJd2p4b`5&-{|H[eV֝@FB<.}~%0'$ⷂLk. KGvDbWs$Q|i6Bd#gM{ +LyqL,MoؙԫLaLABѧHEM7wbA[:q5fo2M}1Y@2V0}HtqTO%%dP`&J$fˇ*J|LR;d SmfHzovܤPHս;v;v܈0o&+`C)Nap5m.($" t6:$.皊WPnw=J2@|԰MgБꂱAjQŒd FBa]' }]c +S Z`  isStp +Cl`RvݣLmAefٺ7vQY&F)Z)3d+|H,~s>M@&~"15݇QP8tr@ju20V*ླc$U=uZC0B! +@VHXϲoƃ>m_h.vD6Є{Jah5׬uFMFg$綡O@q O0Kt&~#; ԏos$?SvGA˒ 5 ,Q3M@Ύ=^/ܺvf)~zb;bdn@-%I)%*8$J ^㉂hqjܾFДuta&cC)*%/%pwbtr8=m5fsݹ&fSB)J{^QԤKRurޮ{Ǭ~C2Yh,3ml4$ZĴ@<>TNGF ~=n4* 3}A$g}.H2G:: + +!=5>!~>>`P 8@@AFGBI7U؛[̛?;HjMۈN_X.Z\= $6uxw(@ ^g` cRVwTܸ\U6#Q|BxM Vvĥ,\J&f Lc?ip8 3x Z 16QRy'CKW6uL^ޢm('˫Nj{^jf.ns_UsM'$⧶hL \GǘiӯL&Yʇ*PCӯdI267o&iUtgE +ĹDXh+"k1fҺC\}Dg +nkg!7armsIC}a[{ +-L> +stream +xYn8}7\h^E6F탒ȗmb";3]Rx1ϙpx/$YYqeULJ*y5/u]ʲ*^nGp?i$fkR0lYt;|o赟B̊yExP+C3866$U ҙf30hAlQwzk v8?_OgY<zF>JﰳjaDK47S|'YƞTOڡ~ƒz 8X!V~6|Ǩi4XB ?/pJgޑi6%m+l2J5)ܢPՂ >[P waBiOCg;n]wp21> +stream +x[r8}w/SE155UOƗ݇<2-icZE7HB8*DӍFn(7$?*t4ɮqQyyZN*ۢ(og/!KHH4$,L[F|q7R-Q\]ߙ/&c|T}Hor}._rAc&źGXSʼn Z'(gz +1ձ˄2Ǭ +w(IO2d=rxPWיydpe[4Jڰ Ҕ9Qmd0>k;PF߶2u,(iAPQyj$Fqa y yPCP2YL{Dh}R\7_4Lͷr.F}˔aUjF[Ҍ$-iMJ` D$"*"o>Xɐi>&A;g6" +\Jt+I`ބ(xc^/?n{8NyyDwm|xGUIp'7v +JvŻ ũpluJ8Uyy˳Z=jȶMFhx|i^88ޟFqNwu#5k hKPKԹY#kÓw8 gW!.}Νe/CU$)`kX4 [ۨ=n|!3=W?Cݭrnbw ,tc$$0e;5w6L.hI%-xHe;6۲ [˳؎זҙuJ!-s:-cńT(FvmO}G&H XX ITW˲Gk)wb`L5ea,N e,\6HmG{ 6mfNE%jյ?mM-9(&5p Hh[@bojoc&. Ze BԢI-0 +矛|-'s vh";LMt:YulF \2w>;$%T$)f0lKl0~3 +Ac" +-go3D? 0?H9:{1tz_6k8pҖt8QTEEcF~V&vydk z;])n:!ՖBIB-Χ%vQIa3C4I`.Co}e3l:31 \6Di;΅ ß!+,-Zc Z qWP APoV$>c zx=8[gGX5TG> +endobj +189 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [1] +/Pg 7 0 R +>> +endobj +190 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [2] +/Pg 7 0 R +>> +endobj +191 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 7 0 R +>> +endobj +192 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 7 0 R +>> +endobj +193 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 7 0 R +>> +endobj +194 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [6] +/Pg 7 0 R +>> +endobj +195 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [7] +/Pg 7 0 R +>> +endobj +196 0 obj +<< +/P 777 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [8] +/Pg 7 0 R +>> +endobj +197 0 obj +<< +/P 777 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [9] +/Pg 7 0 R +>> +endobj +198 0 obj +<< +/P 778 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [10] +/Pg 7 0 R +>> +endobj +199 0 obj +<< +/P 778 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [11] +/Pg 7 0 R +>> +endobj +200 0 obj +<< +/P 779 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [12] +/Pg 7 0 R +>> +endobj +201 0 obj +<< +/P 779 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [13] +/Pg 7 0 R +>> +endobj +202 0 obj +<< +/P 779 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [14] +/Pg 7 0 R +>> +endobj +203 0 obj +<< +/P 779 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [15] +/Pg 7 0 R +>> +endobj +204 0 obj +<< +/P 779 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [16] +/Pg 7 0 R +>> +endobj +205 0 obj +<< +/P 780 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [17] +/Pg 7 0 R +>> +endobj +206 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [18] +/Pg 7 0 R +>> +endobj +207 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [19] +/Pg 7 0 R +>> +endobj +208 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [20] +/Pg 7 0 R +>> +endobj +209 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [21] +/Pg 7 0 R +>> +endobj +210 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [22] +/Pg 7 0 R +>> +endobj +211 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [23] +/Pg 7 0 R +>> +endobj +212 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [24] +/Pg 7 0 R +>> +endobj +213 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [25] +/Pg 7 0 R +>> +endobj +214 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [26] +/Pg 7 0 R +>> +endobj +215 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [27] +/Pg 7 0 R +>> +endobj +216 0 obj +<< +/P 31 0 R +/S /Figure +/Type /StructElem +/K [28] +/Pg 7 0 R +>> +endobj +217 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [0] +/Pg 8 0 R +>> +endobj +218 0 obj +<< +/P 904 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 1 +>> +endobj +219 0 obj +<< +/P 904 0 R +/S /Link +/Type /StructElem +/K [2] +/Pg 8 0 R +>> +endobj +220 0 obj +<< +/P 904 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 3 +>> +endobj +221 0 obj +<< +/P 905 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 4 +>> +endobj +222 0 obj +<< +/P 905 0 R +/S /Link +/Type /StructElem +/K [5] +/Pg 8 0 R +>> +endobj +223 0 obj +<< +/P 905 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 6 +>> +endobj +224 0 obj +<< +/P 906 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 7 +>> +endobj +225 0 obj +<< +/P 906 0 R +/S /Link +/Type /StructElem +/K [8] +/Pg 8 0 R +>> +endobj +226 0 obj +<< +/P 906 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 9 +>> +endobj +227 0 obj +<< +/P 907 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 10 +>> +endobj +228 0 obj +<< +/P 907 0 R +/S /Link +/Type /StructElem +/K [11] +/Pg 8 0 R +>> +endobj +229 0 obj +<< +/P 907 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 12 +>> +endobj +230 0 obj +<< +/P 908 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 13 +>> +endobj +231 0 obj +<< +/P 908 0 R +/S /Link +/Type /StructElem +/K [14] +/Pg 8 0 R +>> +endobj +232 0 obj +<< +/P 908 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 15 +>> +endobj +233 0 obj +<< +/P 909 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 16 +>> +endobj +234 0 obj +<< +/P 909 0 R +/S /Link +/Type /StructElem +/K [17] +/Pg 8 0 R +>> +endobj +235 0 obj +<< +/P 909 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 18 +>> +endobj +236 0 obj +<< +/P 910 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 19 +>> +endobj +237 0 obj +<< +/P 910 0 R +/S /Link +/Type /StructElem +/K [20] +/Pg 8 0 R +>> +endobj +238 0 obj +<< +/P 910 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 21 +>> +endobj +239 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [22] +/Pg 8 0 R +>> +endobj +240 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [23] +/Pg 8 0 R +>> +endobj +241 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [24] +/Pg 8 0 R +>> +endobj +242 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [25] +/Pg 8 0 R +>> +endobj +243 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [26] +/Pg 8 0 R +>> +endobj +244 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [27] +/Pg 8 0 R +>> +endobj +245 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [28] +/Pg 8 0 R +>> +endobj +246 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [29] +/Pg 8 0 R +>> +endobj +247 0 obj +<< +/P 912 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [30] +/Pg 8 0 R +>> +endobj +248 0 obj +<< +/P 911 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [31] +/Pg 8 0 R +>> +endobj +249 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [32] +/Pg 8 0 R +>> +endobj +250 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [33] +/Pg 8 0 R +>> +endobj +251 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [34] +/Pg 8 0 R +>> +endobj +252 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [35] +/Pg 8 0 R +>> +endobj +253 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [36] +/Pg 8 0 R +>> +endobj +254 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [37] +/Pg 8 0 R +>> +endobj +255 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [38] +/Pg 8 0 R +>> +endobj +256 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [39] +/Pg 8 0 R +>> +endobj +257 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [40] +/Pg 8 0 R +>> +endobj +258 0 obj +<< +/P 914 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [41] +/Pg 8 0 R +>> +endobj +259 0 obj +<< +/P 913 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (fr) +/K [42] +/Pg 8 0 R +>> +endobj +260 0 obj +<< +/P 915 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 43 +>> +endobj +261 0 obj +<< +/P 915 0 R +/S /Link +/Type /StructElem +/K [44] +/Pg 8 0 R +>> +endobj +262 0 obj +<< +/P 915 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 45 +>> +endobj +263 0 obj +<< +/P 916 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 46 +>> +endobj +264 0 obj +<< +/P 916 0 R +/S /Link +/Type /StructElem +/K [47] +/Pg 8 0 R +>> +endobj +265 0 obj +<< +/P 916 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 48 +>> +endobj +266 0 obj +<< +/P 917 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 49 +>> +endobj +267 0 obj +<< +/P 917 0 R +/S /Link +/Type /StructElem +/K [50] +/Pg 8 0 R +>> +endobj +268 0 obj +<< +/P 917 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 51 +>> +endobj +269 0 obj +<< +/P 918 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 52 +>> +endobj +270 0 obj +<< +/P 918 0 R +/S /Link +/Type /StructElem +/K [53] +/Pg 8 0 R +>> +endobj +271 0 obj +<< +/P 918 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 54 +>> +endobj +272 0 obj +<< +/P 919 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 55 +>> +endobj +273 0 obj +<< +/P 919 0 R +/S /Link +/Type /StructElem +/K [56] +/Pg 8 0 R +>> +endobj +274 0 obj +<< +/P 919 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 57 +>> +endobj +275 0 obj +<< +/P 920 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 58 +>> +endobj +276 0 obj +<< +/P 920 0 R +/S /Link +/Type /StructElem +/K [59] +/Pg 8 0 R +>> +endobj +277 0 obj +<< +/P 920 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 60 +>> +endobj +278 0 obj +<< +/P 921 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 61 +>> +endobj +279 0 obj +<< +/P 921 0 R +/S /Link +/Type /StructElem +/K [62] +/Pg 8 0 R +>> +endobj +280 0 obj +<< +/P 921 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 63 +>> +endobj +281 0 obj +<< +/P 922 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 64 +>> +endobj +282 0 obj +<< +/P 922 0 R +/S /Link +/Type /StructElem +/K [65] +/Pg 8 0 R +>> +endobj +283 0 obj +<< +/P 922 0 R +/S /Span +/Type /StructElem +/Pg 8 0 R +/K 66 +>> +endobj +284 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [67] +/Pg 8 0 R +>> +endobj +285 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [68] +/Pg 8 0 R +>> +endobj +286 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [69 70 71] +/Pg 8 0 R +>> +endobj +287 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [72] +/Pg 8 0 R +>> +endobj +288 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [73 74 75] +/Pg 8 0 R +>> +endobj +289 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [76 77 78 79 80] +/Pg 8 0 R +>> +endobj +290 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [81] +/Pg 8 0 R +>> +endobj +291 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [82] +/Pg 8 0 R +>> +endobj +292 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0] +/Pg 9 0 R +>> +endobj +293 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [1] +/Pg 9 0 R +>> +endobj +294 0 obj +<< +/P 923 0 R +/S /LBody +/Type /StructElem +/K [2 3 4 5 6 7 8 9 10 11 +12 13 316 0 R 15 16 17 18] +/Pg 9 0 R +>> +endobj +295 0 obj +<< +/P 316 0 R +/S /Span +/Type /StructElem +/Pg 9 0 R +/K 14 +>> +endobj +296 0 obj +<< +/P 924 0 R +/S /LBody +/Type /StructElem +/K [19 20 21 317 0 R 23 24 25] +/Pg 9 0 R +>> +endobj +297 0 obj +<< +/P 317 0 R +/S /Span +/Type /StructElem +/Pg 9 0 R +/K 22 +>> +endobj +298 0 obj +<< +/P 925 0 R +/S /LBody +/Type /StructElem +/K [26 27 28] +/Pg 9 0 R +>> +endobj +299 0 obj +<< +/P 926 0 R +/S /LBody +/Type /StructElem +/K [29 30 31 32 33 34 35 318 0 R 37 38 +39 40] +/Pg 9 0 R +>> +endobj +300 0 obj +<< +/P 318 0 R +/S /Span +/Type /StructElem +/Pg 9 0 R +/K 36 +>> +endobj +301 0 obj +<< +/P 927 0 R +/S /LBody +/Type /StructElem +/K [41 42 43 44 45 46 47 319 0 R 49 50 +51 52] +/Pg 9 0 R +>> +endobj +302 0 obj +<< +/P 319 0 R +/S /Span +/Type /StructElem +/Pg 9 0 R +/K 48 +>> +endobj +303 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [53] +/Pg 9 0 R +>> +endobj +304 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [54] +/Pg 9 0 R +>> +endobj +305 0 obj +<< +/P 928 0 R +/S /LBody +/Type /StructElem +/K [55 56 57 320 0 R 59] +/Pg 9 0 R +>> +endobj +306 0 obj +<< +/P 320 0 R +/S /Span +/Type /StructElem +/Pg 9 0 R +/K 58 +>> +endobj +307 0 obj +<< +/P 929 0 R +/S /LBody +/Type /StructElem +/K [60 61 62] +/Pg 9 0 R +>> +endobj +308 0 obj +<< +/P 930 0 R +/S /LBody +/Type /StructElem +/K [63] +/Pg 9 0 R +>> +endobj +309 0 obj +<< +/P 931 0 R +/S /LBody +/Type /StructElem +/K [64 932 0 R] +/Pg 9 0 R +>> +endobj +310 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [65] +/Pg 9 0 R +>> +endobj +311 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [66] +/Pg 9 0 R +>> +endobj +312 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [67] +/Pg 9 0 R +>> +endobj +313 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [68] +/Pg 9 0 R +>> +endobj +314 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [69 70] +/Pg 9 0 R +>> +endobj +315 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [71] +/Pg 9 0 R +>> +endobj +316 0 obj +<< +/P 294 0 R +/S /Link +/Type /StructElem +/K [933 0 R 295 0 R] +/Pg 9 0 R +>> +endobj +317 0 obj +<< +/P 296 0 R +/S /Link +/Type /StructElem +/K [934 0 R 297 0 R] +/Pg 9 0 R +>> +endobj +318 0 obj +<< +/P 299 0 R +/S /Link +/Type /StructElem +/K [935 0 R 300 0 R] +/Pg 9 0 R +>> +endobj +319 0 obj +<< +/P 301 0 R +/S /Link +/Type /StructElem +/K [936 0 R 302 0 R] +/Pg 9 0 R +>> +endobj +320 0 obj +<< +/P 305 0 R +/S /Link +/Type /StructElem +/K [937 0 R 306 0 R] +/Pg 9 0 R +>> +endobj +321 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [0] +/Pg 13 0 R +>> +endobj +322 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [1 2] +/Pg 13 0 R +>> +endobj +323 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [3 4] +/Pg 13 0 R +>> +endobj +324 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [5 6] +/Pg 13 0 R +>> +endobj +325 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [7 8] +/Pg 13 0 R +>> +endobj +326 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [9] +/Pg 13 0 R +>> +endobj +327 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [10] +/Pg 13 0 R +>> +endobj +328 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [11] +/Pg 13 0 R +>> +endobj +329 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [12 13] +/Pg 13 0 R +>> +endobj +330 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [14 15] +/Pg 13 0 R +>> +endobj +331 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [16] +/Pg 13 0 R +>> +endobj +332 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [17] +/Pg 13 0 R +>> +endobj +333 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [18 19] +/Pg 13 0 R +>> +endobj +334 0 obj +<< +/P 938 0 R +/S /LBody +/Type /StructElem +/K [20 21 22] +/Pg 13 0 R +>> +endobj +335 0 obj +<< +/P 939 0 R +/S /LBody +/Type /StructElem +/K [23 940 0 R] +/Pg 13 0 R +>> +endobj +336 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [24 25] +/Pg 13 0 R +>> +endobj +337 0 obj +<< +/P 31 0 R +/S /H4 +/Type /StructElem +/K [0] +/Pg 17 0 R +>> +endobj +338 0 obj +<< +/P 31 0 R +/S /H4 +/Type /StructElem +/K [1] +/Pg 17 0 R +>> +endobj +339 0 obj +<< +/P 793 0 R +/S /Span +/Type /StructElem +/Pg 17 0 R +/K 2 +>> +endobj +340 0 obj +<< +/P 515 0 R +/S /Span +/Type /StructElem +/Pg 17 0 R +/K 3 +>> +endobj +341 0 obj +<< +/P 793 0 R +/S /Span +/Type /StructElem +/Pg 17 0 R +/K 4 +>> +endobj +342 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [5 6] +/Pg 17 0 R +>> +endobj +343 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [7 8] +/Pg 17 0 R +>> +endobj +344 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [9] +/Pg 17 0 R +>> +endobj +345 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [10] +/Pg 17 0 R +>> +endobj +346 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [11 12] +/Pg 17 0 R +>> +endobj +347 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [13] +/Pg 17 0 R +>> +endobj +348 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [14 15] +/Pg 17 0 R +>> +endobj +349 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [16] +/Pg 17 0 R +>> +endobj +350 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [17 18] +/Pg 17 0 R +>> +endobj +351 0 obj +<< +/P 941 0 R +/S /LBody +/Type /StructElem +/K [19] +/Pg 17 0 R +>> +endobj +352 0 obj +<< +/P 942 0 R +/S /LBody +/Type /StructElem +/K [20] +/Pg 17 0 R +>> +endobj +353 0 obj +<< +/P 943 0 R +/S /LBody +/Type /StructElem +/K [21] +/Pg 17 0 R +>> +endobj +354 0 obj +<< +/P 944 0 R +/S /LBody +/Type /StructElem +/K [22] +/Pg 17 0 R +>> +endobj +355 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [0 1 2 3] +/Pg 18 0 R +>> +endobj +356 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 18 0 R +>> +endobj +357 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [5] +/Pg 18 0 R +>> +endobj +358 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [6 7] +/Pg 18 0 R +>> +endobj +359 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [8 9] +/Pg 18 0 R +>> +endobj +360 0 obj +<< +/P 945 0 R +/S /LBody +/Type /StructElem +/K [10] +/Pg 18 0 R +>> +endobj +361 0 obj +<< +/P 946 0 R +/S /LBody +/Type /StructElem +/K [11] +/Pg 18 0 R +>> +endobj +362 0 obj +<< +/P 947 0 R +/S /LBody +/Type /StructElem +/K [12 948 0 R] +/Pg 18 0 R +>> +endobj +363 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [13 14] +/Pg 18 0 R +>> +endobj +364 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [15 16] +/Pg 18 0 R +>> +endobj +365 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [17] +/Pg 18 0 R +>> +endobj +366 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [18] +/Pg 18 0 R +>> +endobj +367 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [19 20 21 22] +/Pg 18 0 R +>> +endobj +368 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [23 24 25 26] +/Pg 18 0 R +>> +endobj +369 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [27 28 29 30] +/Pg 18 0 R +>> +endobj +370 0 obj +<< +/P 794 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 31 +>> +endobj +371 0 obj +<< +/P 794 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 32 +>> +endobj +372 0 obj +<< +/P 516 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 33 +>> +endobj +373 0 obj +<< +/P 794 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 34 +>> +endobj +374 0 obj +<< +/P 517 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 35 +>> +endobj +375 0 obj +<< +/P 794 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 36 +>> +endobj +376 0 obj +<< +/P 518 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 37 +>> +endobj +377 0 obj +<< +/P 794 0 R +/S /Span +/Type /StructElem +/Pg 18 0 R +/K 38 +>> +endobj +378 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [39] +/Pg 18 0 R +>> +endobj +379 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0 1 2] +/Pg 25 0 R +>> +endobj +380 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 25 0 R +>> +endobj +381 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 25 0 R +>> +endobj +382 0 obj +<< +/P 949 0 R +/S /LBody +/Type /StructElem +/K [5] +/Pg 25 0 R +>> +endobj +383 0 obj +<< +/P 950 0 R +/S /LBody +/Type /StructElem +/K [6] +/Pg 25 0 R +>> +endobj +384 0 obj +<< +/P 951 0 R +/S /LBody +/Type /StructElem +/K [7] +/Pg 25 0 R +>> +endobj +385 0 obj +<< +/P 952 0 R +/S /LBody +/Type /StructElem +/K [8 9 10] +/Pg 25 0 R +>> +endobj +386 0 obj +<< +/P 953 0 R +/S /LBody +/Type /StructElem +/K [11 12 13 14 15] +/Pg 25 0 R +>> +endobj +387 0 obj +<< +/P 954 0 R +/S /LBody +/Type /StructElem +/K [16] +/Pg 25 0 R +>> +endobj +388 0 obj +<< +/P 955 0 R +/S /LBody +/Type /StructElem +/K [17] +/Pg 25 0 R +>> +endobj +389 0 obj +<< +/P 956 0 R +/S /LBody +/Type /StructElem +/K [18] +/Pg 25 0 R +>> +endobj +390 0 obj +<< +/P 957 0 R +/S /LBody +/Type /StructElem +/K [19 20 21] +/Pg 25 0 R +>> +endobj +391 0 obj +<< +/P 958 0 R +/S /LBody +/Type /StructElem +/K [22] +/Pg 25 0 R +>> +endobj +392 0 obj +<< +/P 959 0 R +/S /LBody +/Type /StructElem +/K [23] +/Pg 25 0 R +>> +endobj +393 0 obj +<< +/P 960 0 R +/S /LBody +/Type /StructElem +/K [24 25 26] +/Pg 25 0 R +>> +endobj +394 0 obj +<< +/P 961 0 R +/S /LBody +/Type /StructElem +/K [27] +/Pg 25 0 R +>> +endobj +395 0 obj +<< +/P 962 0 R +/S /LBody +/Type /StructElem +/K [28] +/Pg 25 0 R +>> +endobj +396 0 obj +<< +/P 963 0 R +/S /LBody +/Type /StructElem +/K [29] +/Pg 25 0 R +>> +endobj +397 0 obj +<< +/P 964 0 R +/S /LBody +/Type /StructElem +/K [30] +/Pg 25 0 R +>> +endobj +398 0 obj +<< +/P 965 0 R +/S /LBody +/Type /StructElem +/K [31] +/Pg 25 0 R +>> +endobj +399 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [0] +/Pg 10 0 R +>> +endobj +400 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [1 2] +/Pg 10 0 R +>> +endobj +401 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [3 4] +/Pg 10 0 R +>> +endobj +402 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 10 0 R +>> +endobj +403 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [6] +/Pg 10 0 R +>> +endobj +404 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [7 8] +/Pg 10 0 R +>> +endobj +405 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [9 10] +/Pg 10 0 R +>> +endobj +406 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [11 12] +/Pg 10 0 R +>> +endobj +407 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [13 14] +/Pg 10 0 R +>> +endobj +408 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [15 16] +/Pg 10 0 R +>> +endobj +409 0 obj +<< +/P 784 0 R +/S /Span +/Type /StructElem +/Pg 10 0 R +/K 17 +>> +endobj +410 0 obj +<< +/P 784 0 R +/S /Span +/Type /StructElem +/Pg 10 0 R +/K 18 +>> +endobj +411 0 obj +<< +/P 414 0 R +/S /Span +/Type /StructElem +/Pg 10 0 R +/K 19 +>> +endobj +412 0 obj +<< +/P 784 0 R +/S /Span +/Type /StructElem +/Pg 10 0 R +/K 20 +>> +endobj +413 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [21 22 23 24] +/Pg 10 0 R +>> +endobj +414 0 obj +<< +/P 784 0 R +/S /Link +/Type /StructElem +/K [966 0 R 411 0 R] +/Pg 10 0 R +>> +endobj +415 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [0] +/Pg 11 0 R +>> +endobj +416 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [1] +/Pg 11 0 R +>> +endobj +417 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [2] +/Pg 11 0 R +>> +endobj +418 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [3 4] +/Pg 11 0 R +>> +endobj +419 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [5] +/Pg 11 0 R +>> +endobj +420 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [6] +/Pg 11 0 R +>> +endobj +421 0 obj +<< +/P 785 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 7 +>> +endobj +422 0 obj +<< +/P 439 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 8 +>> +endobj +423 0 obj +<< +/P 785 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 9 +>> +endobj +424 0 obj +<< +/P 786 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 10 +>> +endobj +425 0 obj +<< +/P 440 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 11 +>> +endobj +426 0 obj +<< +/P 786 0 R +/S /Span +/Type /StructElem +/Pg 11 0 R +/K 12 +>> +endobj +427 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [13] +/Pg 11 0 R +>> +endobj +428 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [14 15] +/Pg 11 0 R +>> +endobj +429 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [16] +/Pg 11 0 R +>> +endobj +430 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [17] +/Pg 11 0 R +>> +endobj +431 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [18 19] +/Pg 11 0 R +>> +endobj +432 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [20 21] +/Pg 11 0 R +>> +endobj +433 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [22] +/Pg 11 0 R +>> +endobj +434 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [23] +/Pg 11 0 R +>> +endobj +435 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [24] +/Pg 11 0 R +>> +endobj +436 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [25] +/Pg 11 0 R +>> +endobj +437 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [26 27] +/Pg 11 0 R +>> +endobj +438 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [28 29] +/Pg 11 0 R +>> +endobj +439 0 obj +<< +/P 785 0 R +/S /Link +/Type /StructElem +/K [967 0 R 422 0 R] +/Pg 11 0 R +>> +endobj +440 0 obj +<< +/P 786 0 R +/S /Link +/Type /StructElem +/K [968 0 R 425 0 R] +/Pg 11 0 R +>> +endobj +441 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0] +/Pg 12 0 R +>> +endobj +442 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [1] +/Pg 12 0 R +>> +endobj +443 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [2 3] +/Pg 12 0 R +>> +endobj +444 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [4 5] +/Pg 12 0 R +>> +endobj +445 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [6 7] +/Pg 12 0 R +>> +endobj +446 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [8] +/Pg 12 0 R +>> +endobj +447 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [9] +/Pg 12 0 R +>> +endobj +448 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [10] +/Pg 12 0 R +>> +endobj +449 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [11] +/Pg 12 0 R +>> +endobj +450 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [12] +/Pg 12 0 R +>> +endobj +451 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [13] +/Pg 12 0 R +>> +endobj +452 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [14] +/Pg 12 0 R +>> +endobj +453 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [15] +/Pg 12 0 R +>> +endobj +454 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [16] +/Pg 12 0 R +>> +endobj +455 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [17 18] +/Pg 12 0 R +>> +endobj +456 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [0 1] +/Pg 14 0 R +>> +endobj +457 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [2 3 4 5] +/Pg 14 0 R +>> +endobj +458 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [6] +/Pg 14 0 R +>> +endobj +459 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [7] +/Pg 14 0 R +>> +endobj +460 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [8 9] +/Pg 14 0 R +>> +endobj +461 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [10 11] +/Pg 14 0 R +>> +endobj +462 0 obj +<< +/P 787 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 12 +>> +endobj +463 0 obj +<< +/P 473 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 13 +>> +endobj +464 0 obj +<< +/P 787 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 14 +>> +endobj +465 0 obj +<< +/P 788 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 15 +>> +endobj +466 0 obj +<< +/P 474 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 16 +>> +endobj +467 0 obj +<< +/P 788 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 17 +>> +endobj +468 0 obj +<< +/P 789 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 18 +>> +endobj +469 0 obj +<< +/P 475 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 19 +>> +endobj +470 0 obj +<< +/P 789 0 R +/S /Span +/Type /StructElem +/Pg 14 0 R +/K 20 +>> +endobj +471 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [21] +/Pg 14 0 R +>> +endobj +472 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [22] +/Pg 14 0 R +>> +endobj +473 0 obj +<< +/P 787 0 R +/S /Link +/Type /StructElem +/K [969 0 R 463 0 R] +/Pg 14 0 R +>> +endobj +474 0 obj +<< +/P 788 0 R +/S /Link +/Type /StructElem +/K [970 0 R 466 0 R] +/Pg 14 0 R +>> +endobj +475 0 obj +<< +/P 789 0 R +/S /Link +/Type /StructElem +/K [971 0 R 469 0 R] +/Pg 14 0 R +>> +endobj +476 0 obj +<< +/P 790 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 0 +>> +endobj +477 0 obj +<< +/P 790 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 1 +>> +endobj +478 0 obj +<< +/P 495 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 2 +>> +endobj +479 0 obj +<< +/P 790 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 3 +>> +endobj +480 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [4 5] +/Pg 15 0 R +>> +endobj +481 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [6 7] +/Pg 15 0 R +>> +endobj +482 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [8] +/Pg 15 0 R +>> +endobj +483 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [9] +/Pg 15 0 R +>> +endobj +484 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [10] +/Pg 15 0 R +>> +endobj +485 0 obj +<< +/P 791 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 11 +>> +endobj +486 0 obj +<< +/P 791 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 12 +>> +endobj +487 0 obj +<< +/P 496 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 13 +>> +endobj +488 0 obj +<< +/P 791 0 R +/S /Span +/Type /StructElem +/Pg 15 0 R +/K 14 +>> +endobj +489 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [15 16] +/Pg 15 0 R +>> +endobj +490 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [17 18] +/Pg 15 0 R +>> +endobj +491 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [19 20] +/Pg 15 0 R +>> +endobj +492 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [21] +/Pg 15 0 R +>> +endobj +493 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [22] +/Pg 15 0 R +>> +endobj +494 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [23] +/Pg 15 0 R +>> +endobj +495 0 obj +<< +/P 790 0 R +/S /Link +/Type /StructElem +/K [972 0 R 478 0 R] +/Pg 15 0 R +>> +endobj +496 0 obj +<< +/P 791 0 R +/S /Link +/Type /StructElem +/K [973 0 R 487 0 R] +/Pg 15 0 R +>> +endobj +497 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [0] +/Pg 16 0 R +>> +endobj +498 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [1 2 3 4 5 6 7 8] +/Pg 16 0 R +>> +endobj +499 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [9] +/Pg 16 0 R +>> +endobj +500 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [10 11] +/Pg 16 0 R +>> +endobj +501 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [12] +/Pg 16 0 R +>> +endobj +502 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [13] +/Pg 16 0 R +>> +endobj +503 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [14 15] +/Pg 16 0 R +>> +endobj +504 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [16 17] +/Pg 16 0 R +>> +endobj +505 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [18] +/Pg 16 0 R +>> +endobj +506 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [19] +/Pg 16 0 R +>> +endobj +507 0 obj +<< +/P 792 0 R +/S /Span +/Type /StructElem +/Pg 16 0 R +/K 20 +>> +endobj +508 0 obj +<< +/P 792 0 R +/S /Span +/Type /StructElem +/Pg 16 0 R +/K 21 +>> +endobj +509 0 obj +<< +/P 514 0 R +/S /Span +/Type /StructElem +/Pg 16 0 R +/K 22 +>> +endobj +510 0 obj +<< +/P 792 0 R +/S /Span +/Type /StructElem +/Pg 16 0 R +/K 23 +>> +endobj +511 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [24 25] +/Pg 16 0 R +>> +endobj +512 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [26 27] +/Pg 16 0 R +>> +endobj +513 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [28] +/Pg 16 0 R +>> +endobj +514 0 obj +<< +/P 792 0 R +/S /Link +/Type /StructElem +/K [974 0 R 509 0 R] +/Pg 16 0 R +>> +endobj +515 0 obj +<< +/P 793 0 R +/S /Link +/Type /StructElem +/K [975 0 R 340 0 R] +/Pg 17 0 R +>> +endobj +516 0 obj +<< +/P 794 0 R +/S /Link +/Type /StructElem +/K [976 0 R 372 0 R] +/Pg 18 0 R +>> +endobj +517 0 obj +<< +/P 794 0 R +/S /Link +/Type /StructElem +/K [977 0 R 374 0 R] +/Pg 18 0 R +>> +endobj +518 0 obj +<< +/P 794 0 R +/S /Link +/Type /StructElem +/K [978 0 R 376 0 R] +/Pg 18 0 R +>> +endobj +519 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [0] +/Pg 19 0 R +>> +endobj +520 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [1 2] +/Pg 19 0 R +>> +endobj +521 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 19 0 R +>> +endobj +522 0 obj +<< +/P 31 0 R +/S /H1 +/Type /StructElem +/K [4] +/Pg 19 0 R +>> +endobj +523 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [5 6] +/Pg 19 0 R +>> +endobj +524 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [7 8] +/Pg 19 0 R +>> +endobj +525 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [9 10] +/Pg 19 0 R +>> +endobj +526 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [11 12 13 14] +/Pg 19 0 R +>> +endobj +527 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [15 16 17 18] +/Pg 19 0 R +>> +endobj +528 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [19 20] +/Pg 19 0 R +>> +endobj +529 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [21 22 23 24] +/Pg 19 0 R +>> +endobj +530 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [25 26 27 28] +/Pg 19 0 R +>> +endobj +531 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [29 30] +/Pg 19 0 R +>> +endobj +532 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [31] +/Pg 19 0 R +>> +endobj +533 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [32] +/Pg 19 0 R +>> +endobj +534 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0 1 2] +/Pg 20 0 R +>> +endobj +535 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 20 0 R +>> +endobj +536 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 20 0 R +>> +endobj +537 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 20 0 R +>> +endobj +538 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [6 7] +/Pg 20 0 R +>> +endobj +539 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [8] +/Pg 20 0 R +>> +endobj +540 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [9] +/Pg 20 0 R +>> +endobj +541 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [10 11] +/Pg 20 0 R +>> +endobj +542 0 obj +<< +/P 979 0 R +/S /P +/Type /StructElem +/K [12] +/Pg 20 0 R +>> +endobj +543 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [13] +/Pg 20 0 R +>> +endobj +544 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [14 15] +/Pg 20 0 R +>> +endobj +545 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [16] +/Pg 20 0 R +>> +endobj +546 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [17] +/Pg 20 0 R +>> +endobj +547 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [18 19] +/Pg 20 0 R +>> +endobj +548 0 obj +<< +/P 980 0 R +/S /P +/Type /StructElem +/K [20] +/Pg 20 0 R +>> +endobj +549 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [21] +/Pg 20 0 R +>> +endobj +550 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [22] +/Pg 20 0 R +>> +endobj +551 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [23] +/Pg 20 0 R +>> +endobj +552 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [24] +/Pg 20 0 R +>> +endobj +553 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [25] +/Pg 20 0 R +>> +endobj +554 0 obj +<< +/P 981 0 R +/S /P +/Type /StructElem +/K [26] +/Pg 20 0 R +>> +endobj +555 0 obj +<< +/P 982 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [27] +/Pg 20 0 R +>> +endobj +556 0 obj +<< +/P 982 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [28] +/Pg 20 0 R +>> +endobj +557 0 obj +<< +/P 983 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [29] +/Pg 20 0 R +>> +endobj +558 0 obj +<< +/P 983 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [30] +/Pg 20 0 R +>> +endobj +559 0 obj +<< +/P 983 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [31] +/Pg 20 0 R +>> +endobj +560 0 obj +<< +/P 983 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [32] +/Pg 20 0 R +>> +endobj +561 0 obj +<< +/P 984 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [33] +/Pg 20 0 R +>> +endobj +562 0 obj +<< +/P 985 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [34] +/Pg 20 0 R +>> +endobj +563 0 obj +<< +/P 985 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [35] +/Pg 20 0 R +>> +endobj +564 0 obj +<< +/P 986 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [36] +/Pg 20 0 R +>> +endobj +565 0 obj +<< +/P 986 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [37] +/Pg 20 0 R +>> +endobj +566 0 obj +<< +/P 986 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [38] +/Pg 20 0 R +>> +endobj +567 0 obj +<< +/P 986 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [39] +/Pg 20 0 R +>> +endobj +568 0 obj +<< +/P 986 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [40] +/Pg 20 0 R +>> +endobj +569 0 obj +<< +/P 987 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [41] +/Pg 20 0 R +>> +endobj +570 0 obj +<< +/P 987 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [42] +/Pg 20 0 R +>> +endobj +571 0 obj +<< +/P 987 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [43] +/Pg 20 0 R +>> +endobj +572 0 obj +<< +/P 988 0 R +/S /P +/Type /StructElem +/K [44 45] +/Pg 20 0 R +>> +endobj +573 0 obj +<< +/P 988 0 R +/S /P +/Type /StructElem +/K [46] +/Pg 20 0 R +>> +endobj +574 0 obj +<< +/P 988 0 R +/S /P +/Type /StructElem +/K [47] +/Pg 20 0 R +>> +endobj +575 0 obj +<< +/P 988 0 R +/S /P +/Type /StructElem +/K [48] +/Pg 20 0 R +>> +endobj +576 0 obj +<< +/P 988 0 R +/S /P +/Type /StructElem +/K [49] +/Pg 20 0 R +>> +endobj +577 0 obj +<< +/P 989 0 R +/S /P +/Type /StructElem +/K [50 51] +/Pg 20 0 R +>> +endobj +578 0 obj +<< +/P 989 0 R +/S /P +/Type /StructElem +/K [52] +/Pg 20 0 R +>> +endobj +579 0 obj +<< +/P 989 0 R +/S /P +/Type /StructElem +/K [53] +/Pg 20 0 R +>> +endobj +580 0 obj +<< +/P 989 0 R +/S /P +/Type /StructElem +/K [54] +/Pg 20 0 R +>> +endobj +581 0 obj +<< +/P 989 0 R +/S /P +/Type /StructElem +/K [55] +/Pg 20 0 R +>> +endobj +582 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [56] +/Pg 20 0 R +>> +endobj +583 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [57] +/Pg 20 0 R +>> +endobj +584 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [58] +/Pg 20 0 R +>> +endobj +585 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [59] +/Pg 20 0 R +>> +endobj +586 0 obj +<< +/P 991 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (es) +/K [60] +/Pg 20 0 R +>> +endobj +587 0 obj +<< +/P 991 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (es) +/K [61] +/Pg 20 0 R +>> +endobj +588 0 obj +<< +/P 991 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (es) +/K [62] +/Pg 20 0 R +>> +endobj +589 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [63] +/Pg 20 0 R +>> +endobj +590 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [64] +/Pg 20 0 R +>> +endobj +591 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [65] +/Pg 20 0 R +>> +endobj +592 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [66] +/Pg 20 0 R +>> +endobj +593 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [67] +/Pg 20 0 R +>> +endobj +594 0 obj +<< +/P 595 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (es) +/K [68] +/Pg 20 0 R +>> +endobj +595 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [594 0 R 69 596 0 R] +/Pg 20 0 R +>> +endobj +596 0 obj +<< +/P 595 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (es) +/K [70] +/Pg 20 0 R +>> +endobj +597 0 obj +<< +/P 992 0 R +/S /P +/Type /StructElem +/K [71] +/Pg 20 0 R +>> +endobj +598 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [72] +/Pg 20 0 R +>> +endobj +599 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [73] +/Pg 20 0 R +>> +endobj +600 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0 601 0 R 602 0 R 3] +/Pg 21 0 R +>> +endobj +601 0 obj +<< +/P 600 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [1] +/Pg 21 0 R +>> +endobj +602 0 obj +<< +/P 600 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [2] +/Pg 21 0 R +>> +endobj +603 0 obj +<< +/P 993 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 21 0 R +>> +endobj +604 0 obj +<< +/P 994 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 21 0 R +>> +endobj +605 0 obj +<< +/P 995 0 R +/S /P +/Type /StructElem +/K [6] +/Pg 21 0 R +>> +endobj +606 0 obj +<< +/P 996 0 R +/S /P +/Type /StructElem +/K [7] +/Pg 21 0 R +>> +endobj +607 0 obj +<< +/P 997 0 R +/S /P +/Type /StructElem +/K [8] +/Pg 21 0 R +>> +endobj +608 0 obj +<< +/P 998 0 R +/S /P +/Type /StructElem +/K [9] +/Pg 21 0 R +>> +endobj +609 0 obj +<< +/P 999 0 R +/S /P +/Type /StructElem +/K [10] +/Pg 21 0 R +>> +endobj +610 0 obj +<< +/P 1000 0 R +/S /P +/Type /StructElem +/K [11] +/Pg 21 0 R +>> +endobj +611 0 obj +<< +/P 1001 0 R +/S /P +/Type /StructElem +/K [12] +/Pg 21 0 R +>> +endobj +612 0 obj +<< +/P 1002 0 R +/S /P +/Type /StructElem +/K [13] +/Pg 21 0 R +>> +endobj +613 0 obj +<< +/P 1003 0 R +/S /P +/Type /StructElem +/K [14] +/Pg 21 0 R +>> +endobj +614 0 obj +<< +/P 1004 0 R +/S /P +/Type /StructElem +/K [15 615 0 R 625 0 R 18] +/Pg 21 0 R +>> +endobj +615 0 obj +<< +/P 614 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [16] +/Pg 21 0 R +>> +endobj +616 0 obj +<< +/P 625 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [17] +/Pg 21 0 R +>> +endobj +617 0 obj +<< +/P 1005 0 R +/S /P +/Type /StructElem +/K [19] +/Pg 21 0 R +>> +endobj +618 0 obj +<< +/P 1006 0 R +/S /P +/Type /StructElem +/K [20] +/Pg 21 0 R +>> +endobj +619 0 obj +<< +/P 1007 0 R +/S /P +/Type /StructElem +/K [21] +/Pg 21 0 R +>> +endobj +620 0 obj +<< +/P 1008 0 R +/S /P +/Type /StructElem +/K [22] +/Pg 21 0 R +>> +endobj +621 0 obj +<< +/P 1009 0 R +/S /P +/Type /StructElem +/K [23] +/Pg 21 0 R +>> +endobj +622 0 obj +<< +/P 1010 0 R +/S /P +/Type /StructElem +/K [24] +/Pg 21 0 R +>> +endobj +623 0 obj +<< +/P 1011 0 R +/S /P +/Type /StructElem +/K [25] +/Pg 21 0 R +>> +endobj +624 0 obj +<< +/P 1012 0 R +/S /P +/Type /StructElem +/K [26] +/Pg 21 0 R +>> +endobj +625 0 obj +<< +/P 614 0 R +/S /Link +/Type /StructElem +/K [1013 0 R 616 0 R] +/Pg 21 0 R +>> +endobj +626 0 obj +<< +/P 1014 0 R +/S /P +/Type /StructElem +/K [0] +/Pg 22 0 R +>> +endobj +627 0 obj +<< +/P 1015 0 R +/S /P +/Type /StructElem +/K [1 2 3] +/Pg 22 0 R +>> +endobj +628 0 obj +<< +/P 1016 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 22 0 R +>> +endobj +629 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 22 0 R +>> +endobj +630 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [6] +/Pg 22 0 R +>> +endobj +631 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [7] +/Pg 22 0 R +>> +endobj +632 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [8] +/Pg 22 0 R +>> +endobj +633 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [9] +/Pg 22 0 R +>> +endobj +634 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [10] +/Pg 22 0 R +>> +endobj +635 0 obj +<< +/P 1017 0 R +/S /P +/Type /StructElem +/K [11] +/Pg 22 0 R +>> +endobj +636 0 obj +<< +/P 1018 0 R +/S /P +/Type /StructElem +/K [12] +/Pg 22 0 R +>> +endobj +637 0 obj +<< +/P 1019 0 R +/S /P +/Type /StructElem +/K [13] +/Pg 22 0 R +>> +endobj +638 0 obj +<< +/P 640 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [14] +/Pg 22 0 R +>> +endobj +639 0 obj +<< +/P 640 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [15] +/Pg 22 0 R +>> +endobj +640 0 obj +<< +/P 1020 0 R +/S /P +/Type /StructElem +/K [638 0 R 639 0 R 16] +/Pg 22 0 R +>> +endobj +641 0 obj +<< +/P 1021 0 R +/S /P +/Type /StructElem +/K [17 18 19 20 21] +/Pg 22 0 R +>> +endobj +642 0 obj +<< +/P 644 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [22] +/Pg 22 0 R +>> +endobj +643 0 obj +<< +/P 644 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [23] +/Pg 22 0 R +>> +endobj +644 0 obj +<< +/P 1022 0 R +/S /P +/Type /StructElem +/K [642 0 R 643 0 R 24 645 0 R] +/Pg 22 0 R +>> +endobj +645 0 obj +<< +/P 644 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [25] +/Pg 22 0 R +>> +endobj +646 0 obj +<< +/P 1023 0 R +/S /P +/Type /StructElem +/K [26 27 28 29 30] +/Pg 22 0 R +>> +endobj +647 0 obj +<< +/P 651 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [31] +/Pg 22 0 R +>> +endobj +648 0 obj +<< +/P 651 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [32] +/Pg 22 0 R +>> +endobj +649 0 obj +<< +/P 651 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [33] +/Pg 22 0 R +>> +endobj +650 0 obj +<< +/P 651 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [34] +/Pg 22 0 R +>> +endobj +651 0 obj +<< +/P 1024 0 R +/S /P +/Type /StructElem +/K [647 0 R 648 0 R 649 0 R 650 0 R 35] +/Pg 22 0 R +>> +endobj +652 0 obj +<< +/P 1025 0 R +/S /P +/Type /StructElem +/K [36 37 38 39 40] +/Pg 22 0 R +>> +endobj +653 0 obj +<< +/P 1026 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [41] +/Pg 22 0 R +>> +endobj +654 0 obj +<< +/P 1026 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [42] +/Pg 22 0 R +>> +endobj +655 0 obj +<< +/P 1027 0 R +/S /P +/Type /StructElem +/K [43 44 45 46 47] +/Pg 22 0 R +>> +endobj +656 0 obj +<< +/P 657 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [0] +/Pg 23 0 R +>> +endobj +657 0 obj +<< +/P 1028 0 R +/S /P +/Type /StructElem +/K [656 0 R 1] +/Pg 23 0 R +>> +endobj +658 0 obj +<< +/P 1029 0 R +/S /P +/Type /StructElem +/K [2] +/Pg 23 0 R +>> +endobj +659 0 obj +<< +/P 1030 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 23 0 R +>> +endobj +660 0 obj +<< +/P 1031 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 23 0 R +>> +endobj +661 0 obj +<< +/P 1032 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 23 0 R +>> +endobj +662 0 obj +<< +/P 1033 0 R +/S /P +/Type /StructElem +/K [6] +/Pg 23 0 R +>> +endobj +663 0 obj +<< +/P 1034 0 R +/S /P +/Type /StructElem +/K [7] +/Pg 23 0 R +>> +endobj +664 0 obj +<< +/P 1035 0 R +/S /P +/Type /StructElem +/K [8] +/Pg 23 0 R +>> +endobj +665 0 obj +<< +/P 1036 0 R +/S /P +/Type /StructElem +/K [9] +/Pg 23 0 R +>> +endobj +666 0 obj +<< +/P 1037 0 R +/S /P +/Type /StructElem +/K [10 694 0 R 12] +/Pg 23 0 R +>> +endobj +667 0 obj +<< +/P 694 0 R +/S /Span +/Type /StructElem +/Pg 23 0 R +/K 11 +>> +endobj +668 0 obj +<< +/P 1038 0 R +/S /P +/Type /StructElem +/K [13] +/Pg 23 0 R +>> +endobj +669 0 obj +<< +/P 1039 0 R +/S /P +/Type /StructElem +/K [14] +/Pg 23 0 R +>> +endobj +670 0 obj +<< +/P 1040 0 R +/S /P +/Type /StructElem +/K [15] +/Pg 23 0 R +>> +endobj +671 0 obj +<< +/P 1041 0 R +/S /P +/Type /StructElem +/K [16] +/Pg 23 0 R +>> +endobj +672 0 obj +<< +/P 1042 0 R +/S /P +/Type /StructElem +/K [17] +/Pg 23 0 R +>> +endobj +673 0 obj +<< +/P 1043 0 R +/S /P +/Type /StructElem +/K [18 674 0 R 20] +/Pg 23 0 R +>> +endobj +674 0 obj +<< +/P 673 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [19] +/Pg 23 0 R +>> +endobj +675 0 obj +<< +/P 1044 0 R +/S /P +/Type /StructElem +/K [21] +/Pg 23 0 R +>> +endobj +676 0 obj +<< +/P 1045 0 R +/S /P +/Type /StructElem +/K [22 23] +/Pg 23 0 R +>> +endobj +677 0 obj +<< +/P 1046 0 R +/S /P +/Type /StructElem +/K [24] +/Pg 23 0 R +>> +endobj +678 0 obj +<< +/P 1047 0 R +/S /P +/Type /StructElem +/K [25] +/Pg 23 0 R +>> +endobj +679 0 obj +<< +/P 1048 0 R +/S /P +/Type /StructElem +/K [26] +/Pg 23 0 R +>> +endobj +680 0 obj +<< +/P 1049 0 R +/S /P +/Type /StructElem +/K [27 695 0 R 29] +/Pg 23 0 R +>> +endobj +681 0 obj +<< +/P 695 0 R +/S /Span +/Type /StructElem +/Pg 23 0 R +/K 28 +>> +endobj +682 0 obj +<< +/P 1050 0 R +/S /P +/Type /StructElem +/K [30] +/Pg 23 0 R +>> +endobj +683 0 obj +<< +/P 1051 0 R +/S /P +/Type /StructElem +/K [31] +/Pg 23 0 R +>> +endobj +684 0 obj +<< +/P 686 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [32] +/Pg 23 0 R +>> +endobj +685 0 obj +<< +/P 686 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [33] +/Pg 23 0 R +>> +endobj +686 0 obj +<< +/P 1052 0 R +/S /P +/Type /StructElem +/K [684 0 R 685 0 R 34] +/Pg 23 0 R +>> +endobj +687 0 obj +<< +/P 1053 0 R +/S /P +/Type /StructElem +/K [35] +/Pg 23 0 R +>> +endobj +688 0 obj +<< +/P 1054 0 R +/S /P +/Type /StructElem +/K [36 689 0 R] +/Pg 23 0 R +>> +endobj +689 0 obj +<< +/P 688 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [37] +/Pg 23 0 R +>> +endobj +690 0 obj +<< +/P 1055 0 R +/S /P +/Type /StructElem +/K [38 696 0 R 40] +/Pg 23 0 R +>> +endobj +691 0 obj +<< +/P 696 0 R +/S /Span +/Type /StructElem +/Pg 23 0 R +/K 39 +>> +endobj +692 0 obj +<< +/P 1056 0 R +/S /P +/Type /StructElem +/K [41] +/Pg 23 0 R +>> +endobj +693 0 obj +<< +/P 1057 0 R +/S /P +/Type /StructElem +/K [42] +/Pg 23 0 R +>> +endobj +694 0 obj +<< +/P 666 0 R +/S /Link +/Type /StructElem +/K [1058 0 R 667 0 R] +/Pg 23 0 R +>> +endobj +695 0 obj +<< +/P 680 0 R +/S /Link +/Type /StructElem +/K [1059 0 R 681 0 R] +/Pg 23 0 R +>> +endobj +696 0 obj +<< +/P 690 0 R +/S /Link +/Type /StructElem +/K [1060 0 R 691 0 R] +/Pg 23 0 R +>> +endobj +697 0 obj +<< +/P 1061 0 R +/S /P +/Type /StructElem +/K [0] +/Pg 24 0 R +>> +endobj +698 0 obj +<< +/P 1062 0 R +/S /P +/Type /StructElem +/K [1] +/Pg 24 0 R +>> +endobj +699 0 obj +<< +/P 1063 0 R +/S /P +/Type /StructElem +/K [2] +/Pg 24 0 R +>> +endobj +700 0 obj +<< +/P 1064 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 24 0 R +>> +endobj +701 0 obj +<< +/P 702 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [4] +/Pg 24 0 R +>> +endobj +702 0 obj +<< +/P 1065 0 R +/S /P +/Type /StructElem +/K [701 0 R 5] +/Pg 24 0 R +>> +endobj +703 0 obj +<< +/P 1066 0 R +/S /P +/Type /StructElem +/K [6 734 0 R 8 9] +/Pg 24 0 R +>> +endobj +704 0 obj +<< +/P 734 0 R +/S /Span +/Type /StructElem +/Pg 24 0 R +/K 7 +>> +endobj +705 0 obj +<< +/P 1067 0 R +/S /P +/Type /StructElem +/K [10 706 0 R] +/Pg 24 0 R +>> +endobj +706 0 obj +<< +/P 705 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [11] +/Pg 24 0 R +>> +endobj +707 0 obj +<< +/P 1068 0 R +/S /P +/Type /StructElem +/K [12 735 0 R 14 736 0 R 16 17] +/Pg 24 0 R +>> +endobj +708 0 obj +<< +/P 735 0 R +/S /Span +/Type /StructElem +/Pg 24 0 R +/K 13 +>> +endobj +709 0 obj +<< +/P 736 0 R +/S /Span +/Type /StructElem +/Pg 24 0 R +/K 15 +>> +endobj +710 0 obj +<< +/P 1069 0 R +/S /P +/Type /StructElem +/K [18] +/Pg 24 0 R +>> +endobj +711 0 obj +<< +/P 1070 0 R +/S /P +/Type /StructElem +/K [19] +/Pg 24 0 R +>> +endobj +712 0 obj +<< +/P 1071 0 R +/S /P +/Type /StructElem +/K [20] +/Pg 24 0 R +>> +endobj +713 0 obj +<< +/P 1072 0 R +/S /P +/Type /StructElem +/K [21] +/Pg 24 0 R +>> +endobj +714 0 obj +<< +/P 1073 0 R +/S /P +/Type /StructElem +/K [22] +/Pg 24 0 R +>> +endobj +715 0 obj +<< +/P 1074 0 R +/S /P +/Type /StructElem +/K [23] +/Pg 24 0 R +>> +endobj +716 0 obj +<< +/P 1075 0 R +/S /P +/Type /StructElem +/K [24] +/Pg 24 0 R +>> +endobj +717 0 obj +<< +/P 1076 0 R +/S /P +/Type /StructElem +/K [25] +/Pg 24 0 R +>> +endobj +718 0 obj +<< +/P 1077 0 R +/S /P +/Type /StructElem +/K [26] +/Pg 24 0 R +>> +endobj +719 0 obj +<< +/P 1078 0 R +/S /P +/Type /StructElem +/K [27] +/Pg 24 0 R +>> +endobj +720 0 obj +<< +/P 1079 0 R +/S /P +/Type /StructElem +/K [28 721 0 R 30] +/Pg 24 0 R +>> +endobj +721 0 obj +<< +/P 720 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [29] +/Pg 24 0 R +>> +endobj +722 0 obj +<< +/P 1080 0 R +/S /P +/Type /StructElem +/K [31 32 33 34 35] +/Pg 24 0 R +>> +endobj +723 0 obj +<< +/P 1081 0 R +/S /P +/Type /StructElem +/K [36 724 0 R 38] +/Pg 24 0 R +>> +endobj +724 0 obj +<< +/P 723 0 R +/S /Span +/Type /StructElem +/ActualText () +/Lang (nl) +/K [37] +/Pg 24 0 R +>> +endobj +725 0 obj +<< +/P 1082 0 R +/S /P +/Type /StructElem +/K [39 40 41 42 43] +/Pg 24 0 R +>> +endobj +726 0 obj +<< +/P 1083 0 R +/S /P +/Type /StructElem +/K [44] +/Pg 24 0 R +>> +endobj +727 0 obj +<< +/P 1084 0 R +/S /P +/Type /StructElem +/K [45 46] +/Pg 24 0 R +>> +endobj +728 0 obj +<< +/P 1085 0 R +/S /P +/Type /StructElem +/K [47] +/Pg 24 0 R +>> +endobj +729 0 obj +<< +/P 1086 0 R +/S /P +/Type /StructElem +/K [48] +/Pg 24 0 R +>> +endobj +730 0 obj +<< +/P 1087 0 R +/S /P +/Type /StructElem +/K [49] +/Pg 24 0 R +>> +endobj +731 0 obj +<< +/P 1088 0 R +/S /P +/Type /StructElem +/K [50] +/Pg 24 0 R +>> +endobj +732 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [51] +/Pg 24 0 R +>> +endobj +733 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [52] +/Pg 24 0 R +>> +endobj +734 0 obj +<< +/P 703 0 R +/S /Link +/Type /StructElem +/K [1089 0 R 704 0 R] +/Pg 24 0 R +>> +endobj +735 0 obj +<< +/P 707 0 R +/S /Link +/Type /StructElem +/K [1090 0 R 708 0 R] +/Pg 24 0 R +>> +endobj +736 0 obj +<< +/P 707 0 R +/S /Link +/Type /StructElem +/K [1091 0 R 709 0 R] +/Pg 24 0 R +>> +endobj +737 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0 1 2 3] +/Pg 26 0 R +>> +endobj +738 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 26 0 R +>> +endobj +739 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [5] +/Pg 26 0 R +>> +endobj +740 0 obj +<< +/P 1092 0 R +/S /LBody +/Type /StructElem +/K [6 1093 0 R] +/Pg 26 0 R +>> +endobj +741 0 obj +<< +/P 1094 0 R +/S /LBody +/Type /StructElem +/K [7] +/Pg 26 0 R +>> +endobj +742 0 obj +<< +/P 1095 0 R +/S /LBody +/Type /StructElem +/K [8 1096 0 R] +/Pg 26 0 R +>> +endobj +743 0 obj +<< +/P 1097 0 R +/S /LBody +/Type /StructElem +/K [9] +/Pg 26 0 R +>> +endobj +744 0 obj +<< +/P 1098 0 R +/S /LBody +/Type /StructElem +/K [10] +/Pg 26 0 R +>> +endobj +745 0 obj +<< +/P 1099 0 R +/S /LBody +/Type /StructElem +/K [11 1100 0 R] +/Pg 26 0 R +>> +endobj +746 0 obj +<< +/P 1101 0 R +/S /LBody +/Type /StructElem +/K [12 13 14] +/Pg 26 0 R +>> +endobj +747 0 obj +<< +/P 1102 0 R +/S /LBody +/Type /StructElem +/K [15 1103 0 R] +/Pg 26 0 R +>> +endobj +748 0 obj +<< +/P 1104 0 R +/S /LBody +/Type /StructElem +/K [16 17 18 19 20 21 22] +/Pg 26 0 R +>> +endobj +749 0 obj +<< +/P 1105 0 R +/S /LBody +/Type /StructElem +/K [23 1106 0 R] +/Pg 26 0 R +>> +endobj +750 0 obj +<< +/P 1107 0 R +/S /LBody +/Type /StructElem +/K [24] +/Pg 26 0 R +>> +endobj +751 0 obj +<< +/P 1108 0 R +/S /LBody +/Type /StructElem +/K [25] +/Pg 26 0 R +>> +endobj +752 0 obj +<< +/P 1109 0 R +/S /LBody +/Type /StructElem +/K [26 1110 0 R] +/Pg 26 0 R +>> +endobj +753 0 obj +<< +/P 1111 0 R +/S /LBody +/Type /StructElem +/K [27] +/Pg 26 0 R +>> +endobj +754 0 obj +<< +/P 1112 0 R +/S /LBody +/Type /StructElem +/K [28 1113 0 R] +/Pg 26 0 R +>> +endobj +755 0 obj +<< +/P 1114 0 R +/S /LBody +/Type /StructElem +/K [29] +/Pg 26 0 R +>> +endobj +756 0 obj +<< +/P 1115 0 R +/S /LBody +/Type /StructElem +/K [30 31 32 33 34] +/Pg 26 0 R +>> +endobj +757 0 obj +<< +/P 1116 0 R +/S /LBody +/Type /StructElem +/K [35] +/Pg 26 0 R +>> +endobj +758 0 obj +<< +/P 1117 0 R +/S /LBody +/Type /StructElem +/K [36 37 38] +/Pg 26 0 R +>> +endobj +759 0 obj +<< +/P 1118 0 R +/S /LBody +/Type /StructElem +/K [0 1119 0 R] +/Pg 27 0 R +>> +endobj +760 0 obj +<< +/P 1120 0 R +/S /LBody +/Type /StructElem +/K [1] +/Pg 27 0 R +>> +endobj +761 0 obj +<< +/P 1121 0 R +/S /LBody +/Type /StructElem +/K [2] +/Pg 27 0 R +>> +endobj +762 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [3] +/Pg 27 0 R +>> +endobj +763 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 27 0 R +>> +endobj +764 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [0 1 2 3] +/Pg 28 0 R +>> +endobj +765 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [4] +/Pg 28 0 R +>> +endobj +766 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [5 6] +/Pg 28 0 R +>> +endobj +767 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [7] +/Pg 28 0 R +>> +endobj +768 0 obj +<< +/P 1122 0 R +/S /LBody +/Type /StructElem +/K [8 1123 0 R] +/Pg 28 0 R +>> +endobj +769 0 obj +<< +/P 1124 0 R +/S /LBody +/Type /StructElem +/K [9] +/Pg 28 0 R +>> +endobj +770 0 obj +<< +/P 1125 0 R +/S /LBody +/Type /StructElem +/K [10] +/Pg 28 0 R +>> +endobj +771 0 obj +<< +/P 1126 0 R +/S /LBody +/Type /StructElem +/K [11] +/Pg 28 0 R +>> +endobj +772 0 obj +<< +/P 1127 0 R +/S /LBody +/Type /StructElem +/K [12 13 14 15 16] +/Pg 28 0 R +>> +endobj +773 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [17] +/Pg 28 0 R +>> +endobj +774 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [18] +/Pg 28 0 R +>> +endobj +775 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [19] +/Pg 28 0 R +>> +endobj +776 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [20] +/Pg 28 0 R +>> +endobj +777 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [196 0 R 197 0 R] +/Pg 7 0 R +>> +endobj +778 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [198 0 R 199 0 R] +/Pg 7 0 R +>> +endobj +779 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [200 0 R 201 0 R 202 0 R 203 0 R 204 0 R] +/Pg 7 0 R +>> +endobj +780 0 obj +<< +/P 31 0 R +/S /P +/Type /StructElem +/K [205 0 R] +/Pg 7 0 R +>> +endobj +781 0 obj +<< +/P 31 0 R +/S /TOC +/Type /StructElem +/K [217 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R 910 0 R 911 0 R 913 0 R +915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 920 0 R 921 0 R 922 0 R 284 0 R] +/Pg 8 0 R +>> +endobj +782 0 obj +<< +/P 31 0 R +/S /L +/A 1128 0 R +/Type /StructElem +/K [923 0 R 924 0 R 925 0 R 926 0 R 927 0 R] +/Pg 9 0 R +>> +endobj +783 0 obj +<< +/P 31 0 R +/S /L +/A 1129 0 R +/Type /StructElem +/K [928 0 R 929 0 R 930 0 R 931 0 R] +/Pg 9 0 R +>> +endobj +784 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [409 0 R 410 0 R 414 0 R 412 0 R] +/Pg 10 0 R +>> +endobj +785 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [421 0 R 439 0 R 423 0 R] +/Pg 11 0 R +>> +endobj +786 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [424 0 R 440 0 R 426 0 R] +/Pg 11 0 R +>> +endobj +787 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [462 0 R 473 0 R 464 0 R] +/Pg 14 0 R +>> +endobj +788 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [465 0 R 474 0 R 467 0 R] +/Pg 14 0 R +>> +endobj +789 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [468 0 R 475 0 R 470 0 R] +/Pg 14 0 R +>> +endobj +790 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [476 0 R 477 0 R 495 0 R 479 0 R] +/Pg 15 0 R +>> +endobj +791 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [485 0 R 486 0 R 496 0 R 488 0 R] +/Pg 15 0 R +>> +endobj +792 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [507 0 R 508 0 R 514 0 R 510 0 R] +/Pg 16 0 R +>> +endobj +793 0 obj +<< +/P 31 0 R +/S /H3 +/Type /StructElem +/K [339 0 R 515 0 R 341 0 R] +/Pg 17 0 R +>> +endobj +794 0 obj +<< +/P 31 0 R +/S /H2 +/Type /StructElem +/K [370 0 R 371 0 R 516 0 R 373 0 R 517 0 R 375 0 R 518 0 R 377 0 R] +/Pg 18 0 R +>> +endobj +795 0 obj +<< +/P 31 0 R +/S /Table +/Type /StructElem +/K [1130 0 R] +>> +endobj +796 0 obj +<< +/P 31 0 R +/S /Table +/Type /StructElem +/K [1131 0 R] +>> +endobj +797 0 obj +<< +/P 31 0 R +/S /Table +/Type /StructElem +/K [1132 0 R] +>> +endobj +798 0 obj +<< +/P 31 0 R +/S /Table +/Type /StructElem +/K [1133 0 R] +>> +endobj +799 0 obj +<< +/P 31 0 R +/S /Table +/Type /StructElem +/K [1134 0 R] +>> +endobj +800 0 obj +<< +/P 31 0 R +/S /L +/A 1135 0 R +/Type /StructElem +/K [1092 0 R 1095 0 R 1098 0 R 1099 0 R 1102 0 R 1105 0 R 1108 0 R 1109 0 R 1112 0 R 1117 0 R] +/Pg 26 0 R +>> +endobj +801 0 obj +<< +/P 31 0 R +/S /L +/A 1136 0 R +/Type /StructElem +/K [1118 0 R 1121 0 R] +/Pg 27 0 R +>> +endobj +802 0 obj +<< +/P 31 0 R +/S /L +/A 1137 0 R +/Type /StructElem +/K [1122 0 R 1126 0 R 1127 0 R] +/Pg 28 0 R +>> +endobj +803 0 obj +<< +/Type /FontDescriptor +/FontName /ArialMT +/Flags 32 +/ItalicAngle 0 +/Ascent 905 +/Descent -210 +/CapHeight 728 +/AvgWidth 441 +/MaxWidth 2665 +/FontWeight 400 +/XHeight 250 +/Leading 33 +/StemV 44 +/FontBBox [-665 -210 2000 728] +>> +endobj +804 0 obj +<< +/Type /FontDescriptor +/FontName /Arial-BoldMT +/Flags 32 +/ItalicAngle 0 +/Ascent 905 +/Descent -210 +/CapHeight 728 +/AvgWidth 479 +/MaxWidth 2628 +/FontWeight 700 +/XHeight 250 +/Leading 33 +/StemV 47 +/FontBBox [-628 -210 2000 728] +>> +endobj +805 0 obj +<< +/Type /FontDescriptor +/FontName /Arial-ItalicMT +/Flags 32 +/ItalicAngle -12 +/Ascent 905 +/Descent -208 +/CapHeight 728 +/AvgWidth 441 +/MaxWidth 1876 +/FontWeight 400 +/XHeight 250 +/Leading 33 +/StemV 44 +/FontBBox [-517 -208 1359 728] +>> +endobj +806 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 355 +/Colors 3 +>> +endobj +807 0 obj +<< +/Length 3533 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 355 +/Height 84 +/ColorSpace /DeviceGray +>> +stream +x[wx?IH' +-F F'b0Ƣэ@TL3=`lC5PbDM3 ѫBwfvgfvO/yoμyod2` 0` 0`t{)/nD*[[S7 omm7_gݍ2NsRg MnMzvoQ.,0?XYlHMs)N?K87ɩ6XլpO8TV| |򚦈)GH)XWqF$k ||p-H#b-GJ#f7hY}JsDȐ2>ra=$E=X.X%y*U[?ÂߓoI:{|u}+?\<\0y K:uqԾRd V&~V\f2εJt& 6nE> =4М"Ui +^aU*0o*'qv鏤ZeCA6CM0e :l][]=Z~`NƱMI_ڥ餵t;:S3O2{ }c`ȫueNص=TǙo[DQE;mӢ EVfOwJ=45>pְбk4쪟S10u|kF段9RǻSx3bFT{! SfCWxHm +G ְL#ŕe:;J`ťFPu!TIi1K; `;pL7+$58.rw괰XkA<` L`NLh:^pC +ʤ6\`~4)aQe4\|[x]}PyE먚&RQ{,؞_1;J}}*1lTegde<<7KF-4(y[4 ηSaizf9TJD@v\l.C=?v K4ŒY +_ JCZo5J^7GK֔ /e2owI8IZxL*)-/D kaZid؜7c2C#:ޅsԋ=HYXΖp0b!3>zԹ&jklOV7ZH% +<=Aq J/ +0 4Q|sHQT8ըd)CgOu.e@Of 'K)87RGc?P@M}@j* Cn'c͖ W}4RԌ0}ű$|MQEޛ}*ou8-f.* r2ӂ=DUP٣t[$ɋq)\`$~1#ɦBpJC Ǎ(nyǛĎ3bvY,/Jgg))}A<C0D첆s1/q5M9ψKAr|[aWxT1[UϡYY]Ҷ hw84 +聺c]k"|^%K +Dɷ.&?p1`YZM0 +Аb^ɣ>L4|Ũ%4Jv3A퍪.NF%p1;ma =t +tH}2Ш帻9J4J(Ғ"ZYKڬbwc v踵;c6#6] f7ζ)("1lX1#2.Vp@F T=#ǝo2$V +(O(a\@˂p%w%k\<y7bc598{SF %{y]F *O8_Uf\< b3$/p֏ TPnHE38QD 4J좤w`*P: v`mT8LqXSpw^J>c#A+$Pr!Nk)2fÄ v8HȌΤg ${XPi3-H&^)5;WKOdžx #U 6(U4d9k$k"}•1}*/!e%G\ 9>,GzT3WlT F꥙Lf1RQ..b(vԦP\\ ɻV;Z4-Ǟ += +p7QP; 8 8 0` 0`@0. +endstream +endobj +808 0 obj +<< +/Type /FontDescriptor +/FontName /BCDEEE+Calibri +/Flags 32 +/ItalicAngle 0 +/Ascent 750 +/Descent -250 +/CapHeight 750 +/AvgWidth 521 +/MaxWidth 1743 +/FontWeight 400 +/XHeight 250 +/StemV 52 +/FontBBox [-503 -250 1240 750] +/FontFile2 1138 0 R +>> +endobj +809 0 obj +<< +/Type /FontDescriptor +/FontName /Arial-BoldItalicMT +/Flags 32 +/ItalicAngle -12 +/Ascent 905 +/Descent -210 +/CapHeight 728 +/AvgWidth 479 +/MaxWidth 1950 +/FontWeight 700 +/XHeight 250 +/Leading 33 +/StemV 47 +/FontBBox [-560 -210 1390 728] +>> +endobj +810 0 obj +<< +/BaseFont /ArialMT +/Subtype /CIDFontType2 +/Type /Font +/CIDToGIDMap /Identity +/DW 1000 +/CIDSystemInfo 1139 0 R +/FontDescriptor 1140 0 R +/W [0 [750] + 3 [278] + 8 [889 667] + 11 [333 333] + 14 [584 278 333 278 278 556 556 556 556 556 +556 556 556 556 556 278 278] +32 [584] + 35 [1015 667 667 722 722 667 611 778 722 278 +500 667 556 833 722 778 667] + 53 [722 667 611 722 667 944] + 60 [667] + 62 [278] +64 [278] + 66 [556] + 68 [556 556 500 556 556 278 556 556 222 222 +500 222 833 556 556 556 556 333 500 278 +556 500 722 500 500 500] + 106 [556] + 112 [556] +177 [556] + 179 [333 333 222 222] + 188 [556] +] +>> +endobj +811 0 obj +<< +/Length 385 +/Filter /FlateDecode +>> +stream +xSn0>,I%$8tQi?!E*rk{5U%f,_:QHFV +pTW0B˺szqD㾪 +T#3+t^Z#N +j_kyכqZ cp3# +J'z$; uUZ|ʢ=f+[{DSͅ"0!zuDGEXf)l3OP l/ +vKPwG7[c "l}ݔi}]'Lp2gp(NS}̈́xג3JY)RRdJC\a,,ɮ+7f<[H1i$Mw27k- +endstream +endobj +812 0 obj +<< +/Length 114 +/Type /XObject +/Subtype /Image +/Width 31 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` lM?D8?6iwؤ^&-,l}Ҝ/' O2 +€EHw˜ ҩRO4 +endstream +endobj +813 0 obj +<< +/Length 238 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?k@7"Hء9ݱSsC?@..n"-]E)C L 5 .iq֊{bA 2"> H +0ft{3 +endstream +endobj +814 0 obj +<< +/Length 302 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?K@%ѭ(V"9ts#E.;$. -**1&6y\.|yyDf _rԲ/y&Zx]YےPXuq )vR i ^[YQo@QO>T=:1WB7u$/.}af5+Lg$]5Mgrj:CXRoÆ#)Ni-tlK:j:mo,SдMg d}Mg.L&6T &DKžD +endstream +endobj +815 0 obj +<< +/Length 270 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` TV,R300e6@a10_M1P Q>f8#sdi3{ T!j%1?9osax ?Gy0@ܟp*bgp*=*` ~OĦPއױ+ +Me 60@!kg6#Hlh\,p(`z!TL\E +**:9 +endstream +endobj +816 0 obj +<< +/Length 345 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xKBQ!*BXAd{MEFADkTTARA 8 XCKhxާs?šw}y!?ez̚e|* Aj$D=ƈ +fH| cV[Ya0h '*vMIr:NZSvAWʼ7kjwfhC }# c"pgyjqfT9֡ff j.f.F\PVc zliZVTP&D#M¾en!"G8 ɱ%_8 rȇT% MƝѨ`TMi} +endstream +endobj +817 0 obj +<< +/Length 375 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x/aƿwUzj~4JR&$lF`&d D0KFIVMZs}{/Jcͅ]|1Yؠl6sAi(>Q<'F8q$@`)dK!2\hͣC +i=Bd a^wj+;72e8W)'xQkf\ ձg^\)փ5fE:C#p&[#Dßv\ڗFӎ4D_նQm\ 5 lrp;iHp`D7uBOskj}l p|QwA}3.c1P-@ +endstream +endobj +818 0 obj +<< +/Length 318 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xѿKaPTtAS Qck6-M  QT Mf%')ƻ}}^p{ED&oowLvS=&ʴWDLУaӨSUǾ hP?$ {n13Wwmrr[;p]"5~\T6|B4{-q`2pdk=N'BHnA*a9oMIÜf !0T/ +endstream +endobj +819 0 obj +<< +/Length 368 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xR=Ha~/Ԑ lkp) +ʋ6dž!h@AQhh6(Ģ +xz?z{>AcT=ፙa +9L=])ʮD=ՔƣM(Ϫ)Mx29 c 4웨za~lWp^R>y7|nd2Tsǥ2dE f"<KqEC2Yzlyj0Ci%<40QIYǝ)W*"eO9Z~@ߵy}ITfs k>G@2pE .Uٙ#[V25Dw)炲lǒ&Ig$b@~= ?ӓ +endstream +endobj +820 0 obj +<< +/Length 384 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xM(Q\Wn"%r%{7,mdg#+%lE"JJYaK~JJRBO&sfN3g᫙o9w_]Z KU^kTֻ|ſ3cn!-B' óyy(4|eǘ,bg'^!xsD۰GΝ:g|a3)KlDrF ^N}{J©+ZHJx:"{trp懨 yۡ5pb$)q-I=Wg2~bV , +ܳR˚qT&ªX,$lrnAZ;'w .ɶ~H4~P}GHoU> +stream +x=H@/6t .Vp"n:N98bv)B)kS7ܽ߻!<2aM'Bdj]"We1~/ð$5/nyH= n5iwʭOh$ ן%QXݤm${>U&`ơ0;8H+t9E(fbmsUΜYGCkR*6 1[^VÎ@۠L҇J-p =_,v'7Td>ÂSHG7`6vBqcY3t'ɘy@ +endstream +endobj +822 0 obj +<< +/Length 167 +/Type /XObject +/Subtype /Image +/Width 34 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` ET?6L_*cS?\E,*42 +Ur+IeU=Lu*tT!" *`TPq2*dUjdMd<0Ϸ$?'U䧯 +endstream +endobj +823 0 obj +<< +/Length 265 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xOKAQIC XAXvC|)z ]#z zEH}~0;#&IT9mr((~RDW.Y^W!)A?.q)E? }ޠ%ƭ#lE'/+=Eu\ }CCDzwpthOsSچgs&)͙gVNaTީ %U/[zd CUuhF?&.H +endstream +endobj +824 0 obj +<< +/Length 255 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` t) +X +Qy@f30Ȁ>+(4ϙ߽)6/b}Rd@" YRܟ)S +R_ d+UcS _M<3U?7By_f_!)W7uW-U-hrc݆P1q&y +endstream +endobj +825 0 obj +<< +/Length 339 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x/aǟ6&څ6U'th HLE?&HHA0 BZwܝNSakӳ fe{U-PҨ,*ϲP]NC(.Pѕ"ǣ {etEnaEڿ!T=M2-y%{eͅC!F -ͿEdշV)7ڒSf}hAnyKҞj{d0k76͇P t f6di"¤e v`A0#JՔ/?P/Viyxl@4Z'D0j +endstream +endobj +826 0 obj +<< +/Length 366 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xKBQǯe)VX 48D-ʖ +Z[i- +ZAAd2>x :9}{_> +stream +xп/qD D䤱QD`Ifjd$l"zM.owm,=//xo@G`ԊBmuiDEE!UL|!PT"Pm\h2B*շ-՛Yv kxlD̉pH ݰ'59t׾I.>s1,R) e4dG^9Q/[nHcMӰ;*}vM$[.ZQ7I!Fz Þ +endstream +endobj +828 0 obj +<< +/Length 277 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` p,2I_Fg}R -Tgy)1g ,#k?@?APN@7@ A +ofl l3 *!o0 U`N>?]+(7bWo( Mo@CS/}!/Aq8lׇ"& W$xA +endstream +endobj +829 0 obj +<< +/Length 353 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=HBa?ʹLh rLhjA[-\hkp/]h Zh  +*5ӹ?&ѻ.*OeڜU^%2\HRMj}ʙOwأhg;6%aF^B: & F2 N4_YY;k]o2Ĺ%AR`D qB3,!n3PǬ\ShbRP4%ZE*N& 7>儒M왯6~2l[ֲP7}elPf.O55X,(a mWPºn g.WT., kp[>xQS +endstream +endobj +830 0 obj +<< +/Length 391 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?HBQƯOD^ШjH 4hkip jmj $"@C_=>%{{޹0%]G$7e*cMETf,ZEfSAq" = 7UV`10r!րrxAwT$oF?0şO6hKOQPZ~XMT=z:6XFSt!tkX <AKx/xл!O Hpɡ!SPW(ԿhX2B4 ]5$MýzI2?( + &nurY7Y$g"G ߔLs +8`T{Sr0h ѻi?E?& +endstream +endobj +831 0 obj +<< +/Length 187 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?ABDC(zGP9+FCd!N BOEimVF3>///ԿªC6HMRy̭ +7 YC|7; J8Aw0)rZ7DЁfEp%؊yvjbq +endstream +endobj +832 0 obj +<< +/Length 273 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x1OPF_&hH\.6u1qtr%?'LXL\MDcK_}4|_On<|p0vB}/ljU!ywCϔ lMqtqBzYӘǸ,þ<{i)?s SBDpmw&kl3J[ +l~S:%8Έ7S0Yd/E%ܥL1H:PsDpJE83T1o K_ > +stream +x/a\Ё +A"I%-b' ,`6 fb1X,n \pmݹk{py^S)?kG+d:n8Gw^ 2)qrwE11$X(dsWn~}H6.yi;m iw4Q*5YXNlJL=bv۞jtGEp.!aқWF>!|u 5XhG2ΐ.-J?5`=-:YaFt]!^D+#u ݫ1N  +endstream +endobj +834 0 obj +<< +/Length 214 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xѿ +Q@%[.¢ lV% Hr ebc0[\qy'q y3KIzgGFҔ5Ys sVyGצlRi&PlJJCΆ@ , )W:CX7! +td#m[3[%up +hN}M[f(W(WtI7s +endstream +endobj +835 0 obj +<< +/Length 321 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?H@϶HJ(BAtAp."Tp-n.8;8tWAJED',- |.isI|˽{wB'N3jЬ͵cM3,LEf 6j-C-f|=}.#If1pT;Y<'xSg'}v_|1Cߴ ERdš@`\%u$ )8 ~dW- +W){? uؔj0v KʥW*)8q%u6":3y|쁺|({,5S1tf*~/? +endstream +endobj +836 0 obj +<< +/Length 291 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+a[hZ5EAIQstrqq@ٜEl+fz{g1|k<3"T=;: { t6daW?,XO5h邜}/5aجBgPN=|h 0 黄1 W#`wa@&~`zM(˜ MoA`!nn uyɞ }2 xr-lƁlҮ% =s5΋_|y3 +endstream +endobj +837 0 obj +<< +/Length 365 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=,CQϽZ?MD,(JD- &b1F`Jj"I-j&}{zqK~| +Ou"j>fR3b621#\Ab52@M;$7*mMw,CFKTAJ^yZTvϚ2< Q¤+`Way/;UbvY@\-[i+iY^A@/%1fd\(Ì$=ѫXŬ@arb5Z"25aAVV9S0IX q0jX i }rke0dK2oQҾXP?v>@,\v?E}ߧ +endstream +endobj +838 0 obj +<< +/Length 292 +/Type /XObject +/Subtype /Image +/Width 33 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xK@&,TISc"AĩC "XĀg4[sw"*n2J vXk ^pvD0<+K6|ys^@OT|-E=4=@#ƘHVN:1oYlĀu^\~yDV,`TD)ypЏyB/ח+:/6x1cr|A}C;;J +endstream +endobj +839 0 obj +<< +/Length 357 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=HBa?E1Rvihpl*krAZݱI"["ZjZ*4+3ߧ^3t/Ϲ{@ֱ%5T̼ITXmb*.K&]`e)bµtQ5% (IRWEN.E:U .NӻW%{%߁K@s!fo;Av<'6>CUJN%̉ ]R#潙9g[\&/5iф &T?:.f|AD~%[ #WT^~YYY~K7c,;cC=nC7nc{ݛ +endstream +endobj +840 0 obj +<< +/Length 406 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=H[QK&H,BŒ +Q(]l[Cwrrf +nRj`St/""tP%!/ ϟڤ1Cps;߲Vk#P-?LXŒzu,鐶86)bDl²cxcO?,w7$*\?͋:hŷÂ6\KȃyK$ϙ=4C|Ut6k4yU>6Cj]+* +?*sk-$tS'- ɩa#;Yb I!exF/d1ܒ>/HPO`J`GdȽxC'CSlOশN b.$cۃ՗N5pګ޹p0 +endstream +endobj +841 0 obj +<< +/Length 335 +/Type /XObject +/Subtype /Image +/Width 37 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+DQmf0K +,dKYlQ6^ł`a&%%JHiƌ S|͝sו#h#joEq +i^-8D\(aA/=?(rUS }NS3 +]DY&+h.xvUNBfiTā¯KuV=ucvBZ/WX;'-H<ƫ16kC jG5CƝRFlB,MqÆ/`j[Tٟ8QA6)U?LJW~ƜѼIcm +Q\r^e|Aɥ.?ԯuH(s +endstream +endobj +842 0 obj +<< +/Length 315 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x1,CA{0c!b9 b`En2LB "H# iDRڴҒ~;/}٣k pAy|=:[P6 5J|w.u=%<{zt3*!{jxK7LWEJU&aZߺKJɏI@x0Ѧ?2&5TP41zX #TbiP1LbR-쫱7.> +stream +x?H[Q 1*hEDХ (A/(8PqPtRA28cQ*:9(8AI%_oK"Y{?x"9XvN_߿r̚Z4XZFUiY_Ρj83P=._j|6Θ#~b[ Rcl[q)ݪEl1m?;iɯRX2-$IJbJs.GO{Q|Х)bY/TDKsX缨ԹX|p].ybf m +mf:;I)$JҬ +\aB + + +N̕`$RZ/|"B.fG/!`JHYon0Cъ΅Mq.JڨVw]1 +endstream +endobj +844 0 obj +<< +/Length 442 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=hSQO&B15PNb\qqj!:"SAT88UTՊbҤibnWг9^}O`cL|~SWߪQ7DAA9~BgXOkQW3/F;b\$WWDS-'#Vy!xQhrЈ5}FVl>ިsK)'C2Ո(YD;_y17}7} 3U}K<^z{ðIYK ,q#0am*yW:tf>)Kjg4*EeȈ{K})}DN-ɮC./}H 35$>B 笴~m I(n4ltw:3x;oR + +endstream +endobj +845 0 obj +<< +/Length 349 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=H@U"$K@ Cĭ8ٽJA줋$EE:A?P mMrIj7{q"VʱvF*bV_YV 2R- )|j# bhHA*S"snX1OX",O +{nQ`S5fkI!XWHsW{ vDlm@׬ +-ɉ?4)2SOgO$rS.nq[8_p]£/n!>XlQ;>WTuCt}2̘iQzTWѣ(?C>-'lP}$_ +endstream +endobj +846 0 obj +<< +/Length 420 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xK(DQ145FQLxX (b{"yl,㭷 O;xDkPڏ)!ZN'SsФ?^_{c7Yp +endstream +endobj +847 0 obj +<< +/Length 166 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` /]_"tqfzQElfY5T< 3 B{C5\B$1TP9 He`%H5+jS 8 A)T0zߌ^B +endstream +endobj +848 0 obj +<< +/Length 277 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xбJA!16M5B^` KkJlB&ZHD,$lܝ b=|͈/z5>⾍!-f0 6Q_u]-Lԣӣx!jLFl¬/𐈥< ,q[)Zmpy_ۻ~鄤E{Z 'R3%?Ǹ sR1OQU> +stream +x?KPX h (PhqUD\]:urqrt'A +cNjE$ EcbRXϒ=WuI?2:kGby˲M͋,aX9~_$i W{cCd 1onXTr*G"2m{ؙtXtf|GE&%&[,M6xWdTa "ro&L%^XBd n8'^weRZ(BvS0Zt\kɉ7Jk1OP~ $팟zJ{GT]W|")Kv}{·ܲo +endstream +endobj +850 0 obj +<< +/Length 210 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` \/M0f`zaE:f`EG:Cu)BaDB:~#Mv20 XπMGP (:Xt@CORtp@0n$1:G$:se +endstream +endobj +851 0 obj +<< +/Length 304 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xc` σM8GG]4(:c0J0hؖG?o@T CWU5?yH`?#C| 5԰a c!RG&P׾K8aUg$U^P/d7yW1:?aω_(45q%~?ʀ_Gx{o( !)T +vOEjʼXW +endstream +endobj +852 0 obj +<< +/Length 325 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=H`36mlQ$ :tPqq 8wtԱvԡAT +MԦ \.nOċXhiI"rNJHSPVٷ1^ё' WN8yS?/fq1DSX )Y &nX ij8RlwiFwg +%'e!(Ir"čOUD)J";7ST"NH#ZҰ[^bsJ+Ck5!#O7nGtf}lfԽ9} +endstream +endobj +853 0 obj +<< +/Length 278 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xһNAq24T @-X6^{V16:h0C }݁eٙ s%? %ՙ +~»'ǥOD: ǓEsؒJo?Qu̦okT +ibځ͆WQU?wK eT]֖C#蠢7FtD2&ֲ:w`1.Xw] KuXO:WV o&j{<O(,_ 5 ?n +endstream +endobj +854 0 obj +<< +/Length 354 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+DQA! Q0 l?AYY&QURGb!JFA s~sߜls~|_Vqj VvJJ񼽟'`f a>A.kZ~G,fp=܌DM| G4v`& e +$s'Y22A[Lߧ0<ؒ$ _n翣|`K*D'`Uf!T(j D/vaLOӋXTw ":QsQ}AXt"XנKt?*X2I4N|ԫ \cZ &PA`T/,^́o_vNq/pc8"7~>g1 +endstream +endobj +855 0 obj +<< +/Length 311 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xӿK@K *Ђ.u]IpX88 .. +AHw) uq OIqrDy?Dc!hz?oEh@?cU€ͽak@aI:<ꧭD .|}H?$g(`oT:UqOú㺭(wA#[rHWaP϶&"3ʷ`{.unRgb*POE$m]5%>r+NvL3p$PbhnU?`>aeXG Zմ`ʮK%5-蒦ʞ +endstream +endobj +856 0 obj +<< +/Length 390 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xK(DQ!2yldcAYibc<{( YY(bMv,mXxn +"!383:6=~{ϹBO h[q<]̤Coe9)y +n"[ 2d\PfgUvPD 6~3T)Se?te HT" (Xix'="Dȳ߻ʄ5eDE4qX h". @ F*@oBdۜJ&[2e@ `{yήTkDS)+&bjg9 +#QZ1!+)愙4> +stream +x=H[QǏO1ŏEI]\"B ]$-PD898Cd` +(~(%P4&x?߽s5l%k׍cV & u"'P + b0֡ϹCdHd5lŸf&'6 gScEB"As 9⌨$^ZQZOrZ\-FlaMT~pϋ'ݝOVCbuu*ѭEy Q_p,JU:D`'9B +6"c[6Csj*8L3Xv셍sδꂞ|Ÿa#'t zߪh)1U E`I@=46w){pRYGo^i`2מ˂VW|iV}=. +endstream +endobj +858 0 obj +<< +/Length 349 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=K@ڂ/T; P q{AD.;:ͥ*tQbmph71ɥI|s/{B"Ƞ{ժ +R\C +{]͢$E)`[A dD)5+`2\b>7I46YLmX4痝"(pqrygϭ26^3.0JO +|M@Ėq(. +aĂFe鮢VɎB bE^78;0do4[yV4lR0-RMe7Z[¼j0 [B,YڊnE ;rvDDQq)$ +endstream +endobj +859 0 obj +<< +/Length 430 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=HA;yBŔ^T )hcH MA$QA,"AD] 0*FT! G!SԻܺk +,e7; x 1<Ӊ'03ykv`Q:ωt%a%^q{L.DNU$oOrҲ lk+A*~9-nK8~w׶ UBDĕsЛg+.!K7F]տP< !D5|ẅ́bt!B{kl:!.3SoTĸ{K8T#le :ytdj5K"c6:L[@6 rs4BUȝk^"ϫu1 5cQ:lPFBm +endstream +endobj +860 0 obj +<< +/Length 448 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xMHTQoqtjhn  D&Z8 \K7" +j%.t12E%~ :2z{79w q=ۢRۿWxb+|b2  >dD|rYxnM0sNjL,R|XYbB1i%xwz95\ĥ9 H=ՄUĻM 1[].!DmreKlӗ[PwoC{Xvw*J`@ӹ4NCE2# PjEQ= nqOH5 ^H5E됻2a<2y!֡T8(O*bh{j>/d[8/Pu)F[Z,J pd)κDF]䢵ַ$ ++͖/I*w'lzaxrZ.S,5Yi +endstream +endobj +861 0 obj +<< +/Length 358 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x=H@ZZ..E΂"]D'T:(BWq,EEԂ(Q&hBڿiHڳow!/Ĝ41j0q5U;ډ8=c8U; F3MNVOtĚݦ["4^fA;"MZk[ QcZ8:yQB ŗ- YcNHEqtBYrѸQ?0C1,zO㛨p߱YEhOBWa@&Tηgps3YWN$F:yPNMe8ZT+0{EHQnrw+JŹ_J6 +endstream +endobj +862 0 obj +<< +/Length 459 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?HA;⡇6 +6 j}V"؄ril$BXHtb"5 hD +) *ޙ]玳kǛ[!/z;E^r&*Y^@H-H|q{>X"Db~h@# 5c0μB#SbB:s.5"IN} 6e|Tb" U/Hy/r+g<,E \nY5MwMv"u9+Nl#L~0sqq;ޞL(X:OǡǕ>5g> +stream +xKTQǏ|@ڌh# +"-&\EADAee)R "h"\Umj? BDGL> +stream +xc` /_ S`:?T3:?lT3MZL"O@Y5ӽY*PU!la`@V-' լ (T-"@CIk0U3`Wm7;UoanR?2j 6L(R]T{ +endstream +endobj +865 0 obj +<< +/Length 301 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?KA1$6j*֔"i6 +j +M,l(!q^/'7+_3,+򿜠zз&~ү!! }-*)602:hQ^@EXu4q\-.hVXZlMtU5 툤LkU8hqKM26"%vyeϽbu'%Sð! +lHjAY qĝd ˅ +V7>{ּK̊)vH%P2.N18[ ~%\obٹ'EыS2L +endstream +endobj +866 0 obj +<< +/Length 362 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+aY&ZHip){qrqȝ %G'"h_)MZیe16\wW> +stream +xҭkBQGȍYf;V 2Y0`u0 &`ka_4l"4(o=2p8y'e@XO)*MK&£bgT+"f> +stream +xc` l/e ElPpկp~c,P6T/խ֟}_ +9kJUWMusTG20 TA ]]aP#T`f*S OXgx5HȈj? 砮SOCDH _q~ agljsP3|\ 8U/3ZP + BFZEW +endstream +endobj +869 0 obj +<< +/Length 396 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x?H@_liEbIATѥ_) +RѭPMtDQD]AEK{B?E4F W4bǒMwU| :mU ,8` 0/WL7 n3]1 4"`0NJސ+ l*F'Ԣ%8Bf͉{<:eQ9]lL@S?ed$&P*C2ޛybAti (ix?P:alH5"T7U*X&+b.GCÕuQq``  -Q1u+vgTKS%Za2`z*f.4l#>P ܆ +endstream +endobj +870 0 obj +<< +/Length 429 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xM(DQT9Cj K]!%dD#҈41=9c1'"r +q f]Kc؇f+@91 +ԛ +1 vܹnE+R*\j ctP]7` v;Pͯ$~x1")v|`YHd|P}O>Cgvpdk'^ʗ86gq|Z +endstream +endobj +871 0 obj +<< +/Length 347 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xұK@GQ"B8E.J"""b"8twGAp(n/TRBi(bkK$_ry R@ĩ3߶k!6!rWv Ghp 'E + +1`Į-<"c$%-lil0wd_h {—"@&S`}\gt^Pi`cXx];^)}8\7ɿI~R{jow(6 ϲI3pAg[jf8t:w.]k;5U, Iѫ7 +endstream +endobj +872 0 obj +<< +/Length 325 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xҿK@DP)dYpQ;N:8n."vw tptB 8TJ+ѶޥUMm[ޅ `4qySPItmFqD_6~fa?TE)y#a=NyMP>Ɠ-H2J9Ng m{3ѺLؓ2ŧeTuGN)/Fs.`-5K܄R7}͂4Nǻ(8l]kS@ꌗU ZVL- ;J +endstream +endobj +873 0 obj +<< +/Length 238 +/Type /XObject +/Subtype /Image +/Width 46 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xбJAH1MJAJAi)LNl%+!D s{&zLWvfEO@-AV[nֽUh?No%1<ϼlulj9?vtn6~i_c^9g"F}'#\}D/ݝ郄g :\pX\XՕMUdn_%wjnK  +endstream +endobj +874 0 obj +<< +/Length 313 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xҿ+q7t)m7Q6+`(2Q.L&e8Lr)`LLW'W~w߾wo)y_fNAl ݦZ}_q+;ܑ8-ڹtJ + +)az/uj~5^t/"zD JRb"c-z'aQAY1˺M`&/ȋ&, +_BbЀ Q$`}DT8(TD0pZGAWqFavs[DE`q!Q +endstream +endobj +875 0 obj +<< +/Length 369 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+agǮ"[Yf$Iŝ.N.('[[N䶛rr_)`1;cޑ\yμ;"3]r4h+̚fף!!/̅z [,# G +Q{mJŽce1ʜln2ͅ\.`Yׄ{䖴猈[xgJ\b<+Do7 iO1M;y\{E`MBdZT:W_[ j iSE @Kh7^ð"Rʽձy7˶+2" S0h.r {K2=5t?z,t=he;#, +endstream +endobj +876 0 obj +<< +/Length 271 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xұJBQSS4 /IA-HEcc`A :8dwSLMWzoo8ppsD;YJzW<-NY꽕Ghula牾,82E N JN*3Æ;- K䠤ӴdD>CEP9|| $؃D G383oǿ)ٺ+o%p؇G\7sOz +endstream +endobj +877 0 obj +<< +/Length 359 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +x+aw=hC\4))IɉR @r8X-IBmwf;3>;ϧ}!w$RQOp)L_S8^BxЪ5aFkNjKY8r]rQ~P>S!z*Lȵ7ˬU}-J$"F&T +[%—'eb^k.o Pl'!jǰexv ᘑC[h8q!ṅ6п /m⌑`%]7%pnd-Vok<~lBd,1 eʩ> +stream +x;H@3(>'A n$:t 8ઠCqPps"* +UkS'!E5xj+ƭb;_" $|f;EQXu 1 z!b%V+;'h4Q3G,gD{h2SPk[$r9cNTV B"NJ,:+a1vC+-$\ώyJQ;Kkܢ ,7:TŠI D-X*ҜIgPӒXmE @,(7C'4)/{?j( 1_)[tð1dLD q +ae]քW׋Fz-u=`#.{  +endstream +endobj +879 0 obj +<< +/Length 293 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xҿ+QNj+uea`QY J-bel6\IJ&˝Šc[{{}> +stream +x+Da ˆR:.KccQFR"eece6DQR X$d&`Ϝ˘39yl.3BB74:%3u4N"3PABlܚhw7ɑ`ABIxsD tfv:F_\s/ {jZAIsDTVix# +endstream +endobj +881 0 obj +<< +/Length 389 +/Type /XObject +/Subtype /Image +/Width 50 +/Height 21 +/ColorSpace /DeviceGray +/Matte [0 0 0] +/BitsPerComponent 8 +/Interpolate false +/Filter /FlateDecode +>> +stream +xӿ/qŵRrt2 &M$ M0ş`#"!1w1H_4RQi]׻&|k~w"|پI;7}L:[1Kfqx>Q"W)18pώlbj-Hse.PRM6Qa2VIX}flqh +Lɟ;B-ؕ|paTmcz~)*\P$'=XLMHS+Ho9tU@L,~H.)R!J׾<`qR"\kq#RPNka2Nhn?IϷ0*&b!{'[4yQr#5q>Qm +endstream +endobj +882 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 387 +/Colors 3 +>> +endobj +883 0 obj +<< +/Length 9054 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 387 +/Height 165 +/ColorSpace /DeviceGray +>> +stream +x8C/L@GWd*AH{{}>{qu~_w[foް wݵٓ/'s[J!ֺp:{GEX,;a}ZFRҗXm0տꦟVzr!J=,\#juZRy|ڱ%cqFqeBn$E^ kڇ=d}aY5',a% u;FkxJYg$``%&DKl&uʨ9\1?[&bO\]0{Z',8,+MRN [+ +Qo|ƠTiN s]X>-j4:8NUN6 +KI H2-0}L5EbI\q +Q4@ mhQ:Y UQllŪB!fD_8-xR~E?tqWL T(ld:YᆗMC x@> +3V2݌өԟ=tjZK)`lH {}[ [^VO} {RdT0|+bݪ=8Ag=8]B<^7BPˑ%q,1xVh61z1?=cEcfc"6C-(N]A,XV$sh-iR͞&Qr.8Oŷ {['$fBN7xfyaClԅcm +mdly0/%-EtC}Tp4mw^T`^e(B56^B2ʉMíE#P }1U3f_z3@ +9*TĬ:^4G3alΛWÕA!O iu3̉XuWIJ։[F5Itw XNb - >cY|z..X}J؁$!"+ !9t9dpGh. vf1 )Ӻ/_Tմko53,G Ԑܚ2n|zA(/ wyS~if땧Sլ ,Q9'):phXF13־md4hyb-|m +JH,_K_o6Zy +Yε8!Ɔ#*WJgUb14t>Ug*=KQ't%KGu09 ((go-7 {;K5y\Ѝ!{sA8[msjaʷYQ U1YZ7X`4sށJ7b)>N>9HE?6wphogq%H?vYc|bs#ԆYsBUmk?ܼ;PQPٟvB2meizHrF|jt۱eSg8ŕt@NbJ{t$›]Z.3jZuĠj5^4(=Pz0Ӑ5v[lhWPᐟQyP7c+_hRA@B'#4.aC{r0a{}H @Y&yȥ-H-|g'8NaC?DZH +ޓ1=-JD}ħȶ]Xnv|.y.vDmG=Tײ1Lz +Oƅ24føV>J2s{ɆaHR 곍^H"A(z'Q7&j: +:#-ߐdGt* ~EM+4M}v|!6].A$Hu! QF7\ڤW=Vy$9sOi^B*Cڸ0_0Wέn=s/G6ۖZ(! .`,c7`' ے:g)0(o ܈' #4fz6qŭ5uk p9ǰ³6Y:ܖ`-6 Ζ w'w&.h^8&"}Z-eEyBdW=6i @B@ڄ8GBs_ ?`N Wx(n;= +Y!rxս.,$O5?0Q:A.K¶1b—omL^u$}'vSPUfNQٚt/n^z]/eTC.WEXIr\| *T-''$7Ο=GYd6 B {9SٍMLuF?`9Ȝ(@16, z-v΃Ef.{)=pp!+s^4e_P7=&k1sMݯ}7F⽦u c5f#6io`#mF'xSJh˻UkG70fV,&HHb?sݞ3)}Hx#9ҎkcfTH9*ka§ϱ6K9`$L{ʆHk.!67I@`[2cs0BP[B-e#frQ_V!DGK㠿|αXC5=\خޠħto=>xyS{Ui贜./e,T6=ꁏT}D N;S <+0v"9}ͽ)xcqjG6~<.g׉]L] +vb_& xp V/ :_]Bt "uGD:PnjBǽ%!\zpTo6&K s:LT9<*:U^A}4)Pb.u-ǰ}ߊGFJ.?wZt44߱ ֙eYfC%/Faܳ * n}GpK;Fv?8uJW>\~?q 1axîgo)YhѱKlmސWOs4u5u"|c՘[7Flp͘s%e|zc>D/|orıcYFniwb\븞Vf%&zNE]?mOn};O="'.d` i}qb&o@Y"7fCE˭#ߎŜ$):o~AH.Z-QoZUt AN8l"kw6qsNbИMv +?F}MܛI;zn㇥"jRj\Gh4L1Wo\ V=zBZ|?4.rqPۑ24 샹#3|bm6uL(">v*R?3BjM&:|N^Bw6_AV4̇79Jj={ Q+!| B~n?zb{8>⼧O¸Gtݠu[(oIWVch]1nu7hMĿ׸t?n>C7֟0%igkf1$p @/',>QR:-;+[)X[ͬn;O+~;_8o7Z~ \Ğ u^F5$o{5/q~5j,Ym?X `rGZMl`(8$itLhJj\tݽg . L>٬:86[18wp_OF~/Tkˣwlo ^س|ʿ.Un(9/H8[ˁsm9ռTj<5CRW<{_Q0-4T ryI]\ xcsfUɿi5F9F0<zmQ8ڙ1bg^ڜwƯgiONzfK_m5'ҟ ;m,~xZ._^αѸzϵ_ag~I,zuA$ t3aO3kPunLv"oO1 +'3lƏ?f`?p?7^?6Z[Ԭ;xL1~1|j ˿c>Rz{= S[WfXl}IF%l]pSzd뿯)"#]S`"rk9|_O)/tmvI^3sYF +߃?T2įkĦ˶MnZ~[}U ڽ04xy"~Ys4z<;>4 u7~Ȉ{ji'L=(~In_Ϳ_o;~%D7zqsy04  F?=2Y{R񨏙URy?l3SL$n^Wsb[{@do /I}mʇAJj^u|{ה ؞ $l': #YȀ`e,'揉*ea^Zg{Z;Uwocb%>Mڜc5(Boÿ$a}AR)H-$h;Hu۲e/h|t4;CiJ`y:,m jɅp^]pa02c% Өw|C'܉mab`NP|:"dPԆ30 hNx^zJwjU9~0I*s&Q$ۺF^kMI"$^50oMEPK|[G7H-/D+-2v @ 7 zL[Ә%\!=|=̏" b f+Y_U!$].PI-@t# +4)˵Y2Ac9, d +xBySOelӨ {/YJo;]WDz/3zj+6m¢&x`9ԖC +&VnCs>FaZ%.! )W2nU!<6Bs݀jX k*ӦR]= +`EP\ËU_諺 %;h;cP3.wX]`я&6d=iTs8a"".Ek̐1I=QqtRar,rjn_$l,lS3Q^#HY۲1* f2Fӌ>>E릌ET 9պhUI[lXh4}fcy|PB+.$Iz "y3@ ?DJz?U>a(x6p NJu$t؃/>j*{ OUSy#6z 75!Pr](pbl !":iڌ}}ΆzV)a,1-EK0 藵~٧mcz[D%ɖmfGVVœւo刽U,.&|dx ć&3-/o\/ ax6p{16c Bն}Su.9(2@B?vdFp拁L_W})X4}3*SJKEn^4if)oTƺ-P(`0>F1xk4 +`fkwmSVv2'ri/Z#Kq+c}"/U3%Fm5ڱswipp^iOV?؎ŒF\0|,js%)K;L+~o}g=a. zeTFY2vX8hNw׫\Q!c>wۜ u άkiakV2gύ>2=ޛ~RΞèb!?G?ISaiɯm_t5M{[ LPƳq +{鯯IX  T^<.qu :5Șn`I +JqqT[muTC W.h ^Ih RT9N`*F;,+HX@ pj֍#-m΂S;?9ZttU>3?;SXJ|u1m@/bUöF68yR N' ud@2 k*"zOTؚٵ$7osmܼt~GSF:'jK8!Ң~,,xA6@$V^E&PX?U unT(ŤN0SZ\Uʅƒ/X?7}`܈I&'^b?z8' W#ʤ"o˹*=:D+C#Z:'ȢyJFg1_MIՃs)>I +hkt|p-XK\_ +endstream +endobj +884 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 512 +/Colors 3 +>> +endobj +885 0 obj +<< +/Length 4096 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 512 +/Height 200 +/ColorSpace /DeviceGray +>> +stream +xyOU,&EgFxDH- +lŨz:DGiуe'{5/2,9s7w7{=~{|{Y$(ܜ8yٺ/goqJ82SޔtrğejZpFiV-qNx- GEwMpkM5"7 +;4c^*n2>x%Mx~uhڲVQUB#Uh Ru~fIz^﵊\ytΩܑ"^)ODVTؙFl*a V|NkQz-(7埘hI%}*뵬BNyr^~;7k]zGV!5ܠT~ڬzJMg=U;%;Qme<*Gϔ_׵/-b9~\ :an:- ˣ}pI^x_C8LTL^u3 oyV:QJWW>Mizy}mi0ɻ%)DڗRi*p'V*?cA= \ /:Exn_3f%nFSASPgW=CóKnXv66j2 +ߍ}g96Z$÷WAnMDcFKo4( (u9.·\ݜF~BZS*?cV$O,1K;V8-QLbڗjr\P* XwAS;ʓlG[ho=4~~S݋'nvQW7fFhb)%blٟmr:袂/&>mYub^'w䩧.P3=鞂TSkiRKSPr^'#).x_v LqOϢV%{*d.5bPxC_ߓtvae]*<.;0ռ%D( f% Hcsoo ؛84+yߡo]n+U$B~x-*y˅I94e!޲s{=X,7эq;@|nUlhJvN0RfC"kz"i.>o\Li 3` 6d*Ӳ2lZ2c~:"\*~^#i'zL`=cM#U7G{:;VGCZKԂ VͤYGD+VXLJC3=3l]yLi7݇u(>̚] Ιy8{{1=r=5.=eY۾?tA|82U$g!%d,sFW=Ku'7^hOļvkLjı"sx 7MӼ57]ph/m*~AZXFiR8vV?1 z1{ %OZL?u,G^ ̻g87oWusgz:߱,"hTBmX7͛Q m*^D4QVR_[\bZ'<[]Vvn2s6y[JIv&ԣR7}#55A:X$Ҋ>S&>g7l3gcV!^LM}0jSMv"O`h8lYcg=S;c{G +_z#k:1t^YѥcmݡUƣ8YjmV4%͘ G6nHS|\Uʲƀ"]Lg$-n 96ć^86)Eo݂'z7kdMDYِyNs_tx}4jpӗxFfk'D]d~ȋsGh-1TCf 2fYqE3̹+R4B[cRkAQb:cIR)mMМu7Y1b漬;>E$27KqrcI׳>VgMOWJp}*/fgrl<#I/My[&4Mm[k*.cEriTVq5feN;=Udk)"va^(jn|<%}ރ=EGe +M]fPhߚls>Zh5OV'gA-s;-/Pg$ybxۄ|IO"|%^lf~z/?64ԭ4 Nj-"X숦].i&B r +-y}>1?Ϊ_vIQ|4,m}nڭoH})ds=|!֨nא> +endobj +887 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +888 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 1024 +/Colors 3 +>> +endobj +889 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +890 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 1024 +/Colors 3 +>> +endobj +891 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +892 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +893 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +894 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +895 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +896 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +897 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +898 0 obj +<< +/BaseFont /Arial-ItalicMT +/Subtype /CIDFontType2 +/Type /Font +/CIDToGIDMap /Identity +/DW 1000 +/CIDSystemInfo 1141 0 R +/FontDescriptor 1142 0 R +/W [0 [750] + 3 [278] + 16 [333] + 39 [722] + 49 [722] +53 [722 667 611] + 62 [278] + 64 [278] + 68 [556 556 500 556 556 278 556 556 222 222 +500 222 833 556 556 556] + 85 [333 500 278 556 500 722] +92 [500 500] + 179 [333 333] +] +>> +endobj +899 0 obj +<< +/Length 282 +/Filter /FlateDecode +>> +stream +x}QJ0}Wq}Xv[Wܪ/X4րMB>ͥ(h f9ҴgyR ^,(XH6/|bOԪA'ggW D+ՈwoMn1&PSTX =0&$yֽ|#^W8~ZlԸFįlD<ҜFϿPEaEeV1RJTf vR$hyT:.Of˰b^X[Tp^&cY +endstream +endobj +900 0 obj +<< +/BaseFont /Arial-BoldMT +/Subtype /CIDFontType2 +/Type /Font +/CIDToGIDMap /Identity +/DW 1000 +/CIDSystemInfo 1143 0 R +/FontDescriptor 1144 0 R +/W [0 [750] + 3 [278] + 9 [722] + 11 [333 333] + 14 [584 278 333 278] +19 [556 556 556 556 556 556 556 556 556 556 +333] + 36 [722 722 722 722 667 611 778 722 278] + 46 [722 611 833 722 778 667] + 53 [722 667 611 722 667 944] + 60 [667] +68 [556 611 556 611 556 333 611 611 278 278 +556 278 889 611 611 611 611 389 556 333 +611 556 778 556 556] + 112 [556] + 182 [278] +] +>> +endobj +901 0 obj +<< +/Length 321 +/Filter /FlateDecode +>> +stream +xRj0+tLjR}PHTPBVJ4%9$y7nm%x R t4REIA—b'تa8[FL{x7#Hu s;j#(KhTDAnKh ,I{W*NM;uJ\ TݛNRFkXPRD[D̑X@NQS-+#:ZAZ ;;̅a"%4ߒc2ٿ"ߘ7Va~Ry_ +endstream +endobj +902 0 obj +<< +/BaseFont /BCDFEE+Wingdings-Regular +/Subtype /CIDFontType2 +/Type /Font +/CIDToGIDMap /Identity +/DW 1000 +/CIDSystemInfo 1145 0 R +/FontDescriptor 1146 0 R +/W [0 [500] + 214 [891] +] +>> +endobj +903 0 obj +<< +/Length 224 +/Filter /FlateDecode +>> +stream +x]Mj0 >`O]@a дpl%chd8ܾP {x>wBa Cp +N|pyfߖsGcTMC%g|P=r _^~Mg F-xeЋMvF;v^0-!<EK҄1R-4WV!N Y.Sqp{Pne> +endobj +905 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [221 0 R 222 0 R 223 0 R] +/Pg 8 0 R +>> +endobj +906 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [224 0 R 225 0 R 226 0 R] +/Pg 8 0 R +>> +endobj +907 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [227 0 R 228 0 R 229 0 R] +/Pg 8 0 R +>> +endobj +908 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [230 0 R 231 0 R 232 0 R] +/Pg 8 0 R +>> +endobj +909 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [233 0 R 234 0 R 235 0 R] +/Pg 8 0 R +>> +endobj +910 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [236 0 R 237 0 R 238 0 R] +/Pg 8 0 R +>> +endobj +911 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 912 0 R 248 0 R] +/Pg 8 0 R +>> +endobj +912 0 obj +<< +/P 911 0 R +/S /Link +/Type /StructElem +/K [247 0 R] +/Pg 8 0 R +>> +endobj +913 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 914 0 R +259 0 R] +/Pg 8 0 R +>> +endobj +914 0 obj +<< +/P 913 0 R +/S /Link +/Type /StructElem +/K [258 0 R] +/Pg 8 0 R +>> +endobj +915 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [260 0 R 261 0 R 262 0 R] +/Pg 8 0 R +>> +endobj +916 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [263 0 R 264 0 R 265 0 R] +/Pg 8 0 R +>> +endobj +917 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [266 0 R 267 0 R 268 0 R] +/Pg 8 0 R +>> +endobj +918 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [269 0 R 270 0 R 271 0 R] +/Pg 8 0 R +>> +endobj +919 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [272 0 R 273 0 R 274 0 R] +/Pg 8 0 R +>> +endobj +920 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [275 0 R 276 0 R 277 0 R] +/Pg 8 0 R +>> +endobj +921 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [278 0 R 279 0 R 280 0 R] +/Pg 8 0 R +>> +endobj +922 0 obj +<< +/P 781 0 R +/S /TOCI +/Type /StructElem +/K [281 0 R 282 0 R 283 0 R] +/Pg 8 0 R +>> +endobj +923 0 obj +<< +/P 782 0 R +/S /LI +/Type /StructElem +/K [294 0 R] +/Pg 9 0 R +>> +endobj +924 0 obj +<< +/P 782 0 R +/S /LI +/Type /StructElem +/K [296 0 R] +/Pg 9 0 R +>> +endobj +925 0 obj +<< +/P 782 0 R +/S /LI +/Type /StructElem +/K [298 0 R] +/Pg 9 0 R +>> +endobj +926 0 obj +<< +/P 782 0 R +/S /LI +/Type /StructElem +/K [299 0 R] +/Pg 9 0 R +>> +endobj +927 0 obj +<< +/P 782 0 R +/S /LI +/Type /StructElem +/K [301 0 R] +/Pg 9 0 R +>> +endobj +928 0 obj +<< +/P 783 0 R +/S /LI +/Type /StructElem +/K [305 0 R] +/Pg 9 0 R +>> +endobj +929 0 obj +<< +/P 783 0 R +/S /LI +/Type /StructElem +/K [307 0 R] +/Pg 9 0 R +>> +endobj +930 0 obj +<< +/P 783 0 R +/S /LI +/Type /StructElem +/K [308 0 R] +/Pg 9 0 R +>> +endobj +931 0 obj +<< +/P 783 0 R +/S /LI +/Type /StructElem +/K [309 0 R] +/Pg 9 0 R +>> +endobj +932 0 obj +<< +/P 309 0 R +/S /L +/A 1147 0 R +/Type /StructElem +/K [938 0 R 939 0 R] +/Pg 13 0 R +>> +endobj +933 0 obj +<< +/Type /OBJR +/Obj 47 0 R +/Pg 9 0 R +>> +endobj +934 0 obj +<< +/Type /OBJR +/Obj 48 0 R +/Pg 9 0 R +>> +endobj +935 0 obj +<< +/Type /OBJR +/Obj 49 0 R +/Pg 9 0 R +>> +endobj +936 0 obj +<< +/Type /OBJR +/Obj 50 0 R +/Pg 9 0 R +>> +endobj +937 0 obj +<< +/Type /OBJR +/Obj 51 0 R +/Pg 9 0 R +>> +endobj +938 0 obj +<< +/P 932 0 R +/S /LI +/Type /StructElem +/K [334 0 R] +/Pg 13 0 R +>> +endobj +939 0 obj +<< +/P 932 0 R +/S /LI +/Type /StructElem +/K [335 0 R] +/Pg 13 0 R +>> +endobj +940 0 obj +<< +/P 335 0 R +/S /L +/A 1148 0 R +/Type /StructElem +/K [941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R] +/Pg 17 0 R +>> +endobj +941 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [351 0 R] +/Pg 17 0 R +>> +endobj +942 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [352 0 R] +/Pg 17 0 R +>> +endobj +943 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [353 0 R] +/Pg 17 0 R +>> +endobj +944 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [354 0 R] +/Pg 17 0 R +>> +endobj +945 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [360 0 R] +/Pg 18 0 R +>> +endobj +946 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [361 0 R] +/Pg 18 0 R +>> +endobj +947 0 obj +<< +/P 940 0 R +/S /LI +/Type /StructElem +/K [362 0 R] +/Pg 18 0 R +>> +endobj +948 0 obj +<< +/P 362 0 R +/S /L +/A 1149 0 R +/Type /StructElem +/K [949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R +959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R] +/Pg 25 0 R +>> +endobj +949 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [382 0 R] +/Pg 25 0 R +>> +endobj +950 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [383 0 R] +/Pg 25 0 R +>> +endobj +951 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [384 0 R] +/Pg 25 0 R +>> +endobj +952 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [385 0 R] +/Pg 25 0 R +>> +endobj +953 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [386 0 R] +/Pg 25 0 R +>> +endobj +954 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [387 0 R] +/Pg 25 0 R +>> +endobj +955 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [388 0 R] +/Pg 25 0 R +>> +endobj +956 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [389 0 R] +/Pg 25 0 R +>> +endobj +957 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [390 0 R] +/Pg 25 0 R +>> +endobj +958 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [391 0 R] +/Pg 25 0 R +>> +endobj +959 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [392 0 R] +/Pg 25 0 R +>> +endobj +960 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [393 0 R] +/Pg 25 0 R +>> +endobj +961 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [394 0 R] +/Pg 25 0 R +>> +endobj +962 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [395 0 R] +/Pg 25 0 R +>> +endobj +963 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [396 0 R] +/Pg 25 0 R +>> +endobj +964 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [397 0 R] +/Pg 25 0 R +>> +endobj +965 0 obj +<< +/P 948 0 R +/S /LI +/Type /StructElem +/K [398 0 R] +/Pg 25 0 R +>> +endobj +966 0 obj +<< +/Type /OBJR +/Obj 62 0 R +/Pg 10 0 R +>> +endobj +967 0 obj +<< +/Type /OBJR +/Obj 70 0 R +/Pg 11 0 R +>> +endobj +968 0 obj +<< +/Type /OBJR +/Obj 71 0 R +/Pg 11 0 R +>> +endobj +969 0 obj +<< +/Type /OBJR +/Obj 91 0 R +/Pg 14 0 R +>> +endobj +970 0 obj +<< +/Type /OBJR +/Obj 92 0 R +/Pg 14 0 R +>> +endobj +971 0 obj +<< +/Type /OBJR +/Obj 93 0 R +/Pg 14 0 R +>> +endobj +972 0 obj +<< +/Type /OBJR +/Obj 102 0 R +/Pg 15 0 R +>> +endobj +973 0 obj +<< +/Type /OBJR +/Obj 103 0 R +/Pg 15 0 R +>> +endobj +974 0 obj +<< +/Type /OBJR +/Obj 112 0 R +/Pg 16 0 R +>> +endobj +975 0 obj +<< +/Type /OBJR +/Obj 119 0 R +/Pg 17 0 R +>> +endobj +976 0 obj +<< +/Type /OBJR +/Obj 130 0 R +/Pg 18 0 R +>> +endobj +977 0 obj +<< +/Type /OBJR +/Obj 131 0 R +/Pg 18 0 R +>> +endobj +978 0 obj +<< +/Type /OBJR +/Obj 132 0 R +/Pg 18 0 R +>> +endobj +979 0 obj +<< +/P 1150 0 R +/S /TD +/Type /StructElem +/K [537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R] +/Pg 20 0 R +>> +endobj +980 0 obj +<< +/P 1150 0 R +/S /TD +/Type /StructElem +/K [543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R] +/Pg 20 0 R +>> +endobj +981 0 obj +<< +/P 1151 0 R +/S /TD +/Type /StructElem +/K [549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R] +/Pg 20 0 R +>> +endobj +982 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [555 0 R 556 0 R] +/Pg 20 0 R +>> +endobj +983 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [557 0 R 558 0 R 559 0 R 560 0 R] +/Pg 20 0 R +>> +endobj +984 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [561 0 R] +/Pg 20 0 R +>> +endobj +985 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [562 0 R 563 0 R] +/Pg 20 0 R +>> +endobj +986 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [564 0 R 565 0 R 566 0 R 567 0 R 568 0 R] +/Pg 20 0 R +>> +endobj +987 0 obj +<< +/P 1152 0 R +/S /P +/Type /StructElem +/K [569 0 R 570 0 R 571 0 R] +/Pg 20 0 R +>> +endobj +988 0 obj +<< +/P 1153 0 R +/S /TD +/Type /StructElem +/K [572 0 R 573 0 R 574 0 R 575 0 R 576 0 R] +/Pg 20 0 R +>> +endobj +989 0 obj +<< +/P 1153 0 R +/S /TD +/Type /StructElem +/K [577 0 R 578 0 R 579 0 R 580 0 R 581 0 R] +/Pg 20 0 R +>> +endobj +990 0 obj +<< +/P 1154 0 R +/S /TD +/Type /StructElem +/K [582 0 R 583 0 R 584 0 R 585 0 R 991 0 R 589 0 R] +/Pg 20 0 R +>> +endobj +991 0 obj +<< +/P 990 0 R +/S /P +/Type /StructElem +/K [586 0 R 587 0 R 588 0 R] +/Pg 20 0 R +>> +endobj +992 0 obj +<< +/P 1154 0 R +/S /TD +/Type /StructElem +/K [590 0 R 591 0 R 592 0 R 593 0 R 595 0 R 597 0 R] +/Pg 20 0 R +>> +endobj +993 0 obj +<< +/P 1155 0 R +/S /TD +/Type /StructElem +/K [603 0 R] +/Pg 21 0 R +>> +endobj +994 0 obj +<< +/P 1155 0 R +/S /TD +/Type /StructElem +/K [604 0 R] +/Pg 21 0 R +>> +endobj +995 0 obj +<< +/P 1156 0 R +/S /TD +/Type /StructElem +/K [605 0 R] +/Pg 21 0 R +>> +endobj +996 0 obj +<< +/P 1156 0 R +/S /TD +/Type /StructElem +/K [606 0 R] +/Pg 21 0 R +>> +endobj +997 0 obj +<< +/P 1157 0 R +/S /TD +/Type /StructElem +/K [607 0 R] +/Pg 21 0 R +>> +endobj +998 0 obj +<< +/P 1157 0 R +/S /TD +/Type /StructElem +/K [608 0 R] +/Pg 21 0 R +>> +endobj +999 0 obj +<< +/P 1158 0 R +/S /TD +/Type /StructElem +/K [609 0 R] +/Pg 21 0 R +>> +endobj +1000 0 obj +<< +/P 1158 0 R +/S /TD +/Type /StructElem +/K [610 0 R] +/Pg 21 0 R +>> +endobj +1001 0 obj +<< +/P 1159 0 R +/S /TD +/Type /StructElem +/K [611 0 R] +/Pg 21 0 R +>> +endobj +1002 0 obj +<< +/P 1159 0 R +/S /TD +/Type /StructElem +/K [612 0 R] +/Pg 21 0 R +>> +endobj +1003 0 obj +<< +/P 1160 0 R +/S /TD +/Type /StructElem +/K [613 0 R] +/Pg 21 0 R +>> +endobj +1004 0 obj +<< +/P 1160 0 R +/S /TD +/Type /StructElem +/K [614 0 R] +/Pg 21 0 R +>> +endobj +1005 0 obj +<< +/P 1161 0 R +/S /TD +/Type /StructElem +/K [617 0 R] +/Pg 21 0 R +>> +endobj +1006 0 obj +<< +/P 1161 0 R +/S /TD +/Type /StructElem +/K [618 0 R] +/Pg 21 0 R +>> +endobj +1007 0 obj +<< +/P 1162 0 R +/S /TD +/Type /StructElem +/K [619 0 R] +/Pg 21 0 R +>> +endobj +1008 0 obj +<< +/P 1162 0 R +/S /TD +/Type /StructElem +/K [620 0 R] +/Pg 21 0 R +>> +endobj +1009 0 obj +<< +/P 1163 0 R +/S /TD +/Type /StructElem +/K [621 0 R] +/Pg 21 0 R +>> +endobj +1010 0 obj +<< +/P 1163 0 R +/S /TD +/Type /StructElem +/K [622 0 R] +/Pg 21 0 R +>> +endobj +1011 0 obj +<< +/P 1164 0 R +/S /TD +/Type /StructElem +/K [623 0 R] +/Pg 21 0 R +>> +endobj +1012 0 obj +<< +/P 1164 0 R +/S /TD +/Type /StructElem +/K [624 0 R] +/Pg 21 0 R +>> +endobj +1013 0 obj +<< +/Type /OBJR +/Obj 170 0 R +/Pg 21 0 R +>> +endobj +1014 0 obj +<< +/P 1165 0 R +/S /TD +/Type /StructElem +/K [626 0 R] +/Pg 22 0 R +>> +endobj +1015 0 obj +<< +/P 1165 0 R +/S /TD +/Type /StructElem +/K [627 0 R] +/Pg 22 0 R +>> +endobj +1016 0 obj +<< +/P 1166 0 R +/S /TD +/Type /StructElem +/K [628 0 R] +/Pg 22 0 R +>> +endobj +1017 0 obj +<< +/P 1166 0 R +/S /TD +/Type /StructElem +/K [629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R] +/Pg 22 0 R +>> +endobj +1018 0 obj +<< +/P 1167 0 R +/S /TD +/Type /StructElem +/K [636 0 R] +/Pg 22 0 R +>> +endobj +1019 0 obj +<< +/P 1167 0 R +/S /TD +/Type /StructElem +/K [637 0 R] +/Pg 22 0 R +>> +endobj +1020 0 obj +<< +/P 1168 0 R +/S /TD +/Type /StructElem +/K [640 0 R] +/Pg 22 0 R +>> +endobj +1021 0 obj +<< +/P 1168 0 R +/S /TD +/Type /StructElem +/K [641 0 R] +/Pg 22 0 R +>> +endobj +1022 0 obj +<< +/P 1169 0 R +/S /TD +/Type /StructElem +/K [644 0 R] +/Pg 22 0 R +>> +endobj +1023 0 obj +<< +/P 1169 0 R +/S /TD +/Type /StructElem +/K [646 0 R] +/Pg 22 0 R +>> +endobj +1024 0 obj +<< +/P 1170 0 R +/S /TD +/Type /StructElem +/K [651 0 R] +/Pg 22 0 R +>> +endobj +1025 0 obj +<< +/P 1170 0 R +/S /TD +/Type /StructElem +/K [652 0 R] +/Pg 22 0 R +>> +endobj +1026 0 obj +<< +/P 1171 0 R +/S /P +/Type /StructElem +/K [653 0 R 654 0 R] +/Pg 22 0 R +>> +endobj +1027 0 obj +<< +/P 1172 0 R +/S /TD +/Type /StructElem +/K [655 0 R] +/Pg 22 0 R +>> +endobj +1028 0 obj +<< +/P 1173 0 R +/S /TD +/Type /StructElem +/K [657 0 R] +/Pg 23 0 R +>> +endobj +1029 0 obj +<< +/P 1173 0 R +/S /TD +/Type /StructElem +/K [658 0 R] +/Pg 23 0 R +>> +endobj +1030 0 obj +<< +/P 1174 0 R +/S /TD +/Type /StructElem +/K [659 0 R] +/Pg 23 0 R +>> +endobj +1031 0 obj +<< +/P 1174 0 R +/S /TD +/Type /StructElem +/K [660 0 R] +/Pg 23 0 R +>> +endobj +1032 0 obj +<< +/P 1175 0 R +/S /TD +/Type /StructElem +/K [661 0 R] +/Pg 23 0 R +>> +endobj +1033 0 obj +<< +/P 1175 0 R +/S /TD +/Type /StructElem +/K [662 0 R] +/Pg 23 0 R +>> +endobj +1034 0 obj +<< +/P 1176 0 R +/S /TD +/Type /StructElem +/K [663 0 R] +/Pg 23 0 R +>> +endobj +1035 0 obj +<< +/P 1176 0 R +/S /TD +/Type /StructElem +/K [664 0 R] +/Pg 23 0 R +>> +endobj +1036 0 obj +<< +/P 1177 0 R +/S /TD +/Type /StructElem +/K [665 0 R] +/Pg 23 0 R +>> +endobj +1037 0 obj +<< +/P 1177 0 R +/S /TD +/Type /StructElem +/K [666 0 R] +/Pg 23 0 R +>> +endobj +1038 0 obj +<< +/P 1178 0 R +/S /TD +/Type /StructElem +/K [668 0 R] +/Pg 23 0 R +>> +endobj +1039 0 obj +<< +/P 1178 0 R +/S /TD +/Type /StructElem +/K [669 0 R] +/Pg 23 0 R +>> +endobj +1040 0 obj +<< +/P 1179 0 R +/S /TD +/Type /StructElem +/K [670 0 R] +/Pg 23 0 R +>> +endobj +1041 0 obj +<< +/P 1179 0 R +/S /TD +/Type /StructElem +/K [671 0 R] +/Pg 23 0 R +>> +endobj +1042 0 obj +<< +/P 1180 0 R +/S /TD +/Type /StructElem +/K [672 0 R] +/Pg 23 0 R +>> +endobj +1043 0 obj +<< +/P 1180 0 R +/S /TD +/Type /StructElem +/K [673 0 R] +/Pg 23 0 R +>> +endobj +1044 0 obj +<< +/P 1181 0 R +/S /TD +/Type /StructElem +/K [675 0 R] +/Pg 23 0 R +>> +endobj +1045 0 obj +<< +/P 1181 0 R +/S /TD +/Type /StructElem +/K [676 0 R] +/Pg 23 0 R +>> +endobj +1046 0 obj +<< +/P 1182 0 R +/S /TD +/Type /StructElem +/K [677 0 R] +/Pg 23 0 R +>> +endobj +1047 0 obj +<< +/P 1182 0 R +/S /TD +/Type /StructElem +/K [678 0 R] +/Pg 23 0 R +>> +endobj +1048 0 obj +<< +/P 1183 0 R +/S /TD +/Type /StructElem +/K [679 0 R] +/Pg 23 0 R +>> +endobj +1049 0 obj +<< +/P 1183 0 R +/S /TD +/Type /StructElem +/K [680 0 R] +/Pg 23 0 R +>> +endobj +1050 0 obj +<< +/P 1184 0 R +/S /TD +/Type /StructElem +/K [682 0 R] +/Pg 23 0 R +>> +endobj +1051 0 obj +<< +/P 1184 0 R +/S /TD +/Type /StructElem +/K [683 0 R] +/Pg 23 0 R +>> +endobj +1052 0 obj +<< +/P 1185 0 R +/S /TD +/Type /StructElem +/K [686 0 R] +/Pg 23 0 R +>> +endobj +1053 0 obj +<< +/P 1185 0 R +/S /TD +/Type /StructElem +/K [687 0 R] +/Pg 23 0 R +>> +endobj +1054 0 obj +<< +/P 1186 0 R +/S /TD +/Type /StructElem +/K [688 0 R] +/Pg 23 0 R +>> +endobj +1055 0 obj +<< +/P 1186 0 R +/S /TD +/Type /StructElem +/K [690 0 R] +/Pg 23 0 R +>> +endobj +1056 0 obj +<< +/P 1187 0 R +/S /TD +/Type /StructElem +/K [692 0 R] +/Pg 23 0 R +>> +endobj +1057 0 obj +<< +/P 1187 0 R +/S /TD +/Type /StructElem +/K [693 0 R] +/Pg 23 0 R +>> +endobj +1058 0 obj +<< +/Type /OBJR +/Obj 173 0 R +/Pg 23 0 R +>> +endobj +1059 0 obj +<< +/Type /OBJR +/Obj 174 0 R +/Pg 23 0 R +>> +endobj +1060 0 obj +<< +/Type /OBJR +/Obj 175 0 R +/Pg 23 0 R +>> +endobj +1061 0 obj +<< +/P 1188 0 R +/S /TD +/Type /StructElem +/K [697 0 R] +/Pg 24 0 R +>> +endobj +1062 0 obj +<< +/P 1188 0 R +/S /TD +/Type /StructElem +/K [698 0 R] +/Pg 24 0 R +>> +endobj +1063 0 obj +<< +/P 1189 0 R +/S /TD +/Type /StructElem +/K [699 0 R] +/Pg 24 0 R +>> +endobj +1064 0 obj +<< +/P 1189 0 R +/S /TD +/Type /StructElem +/K [700 0 R] +/Pg 24 0 R +>> +endobj +1065 0 obj +<< +/P 1190 0 R +/S /TD +/Type /StructElem +/K [702 0 R] +/Pg 24 0 R +>> +endobj +1066 0 obj +<< +/P 1190 0 R +/S /TD +/Type /StructElem +/K [703 0 R] +/Pg 24 0 R +>> +endobj +1067 0 obj +<< +/P 1191 0 R +/S /TD +/Type /StructElem +/K [705 0 R] +/Pg 24 0 R +>> +endobj +1068 0 obj +<< +/P 1191 0 R +/S /TD +/Type /StructElem +/K [707 0 R] +/Pg 24 0 R +>> +endobj +1069 0 obj +<< +/P 1192 0 R +/S /TD +/Type /StructElem +/K [710 0 R] +/Pg 24 0 R +>> +endobj +1070 0 obj +<< +/P 1192 0 R +/S /TD +/Type /StructElem +/K [711 0 R] +/Pg 24 0 R +>> +endobj +1071 0 obj +<< +/P 1193 0 R +/S /TD +/Type /StructElem +/K [712 0 R] +/Pg 24 0 R +>> +endobj +1072 0 obj +<< +/P 1193 0 R +/S /TD +/Type /StructElem +/K [713 0 R] +/Pg 24 0 R +>> +endobj +1073 0 obj +<< +/P 1194 0 R +/S /TD +/Type /StructElem +/K [714 0 R] +/Pg 24 0 R +>> +endobj +1074 0 obj +<< +/P 1194 0 R +/S /TD +/Type /StructElem +/K [715 0 R] +/Pg 24 0 R +>> +endobj +1075 0 obj +<< +/P 1195 0 R +/S /TD +/Type /StructElem +/K [716 0 R] +/Pg 24 0 R +>> +endobj +1076 0 obj +<< +/P 1195 0 R +/S /TD +/Type /StructElem +/K [717 0 R] +/Pg 24 0 R +>> +endobj +1077 0 obj +<< +/P 1196 0 R +/S /TD +/Type /StructElem +/K [718 0 R] +/Pg 24 0 R +>> +endobj +1078 0 obj +<< +/P 1196 0 R +/S /TD +/Type /StructElem +/K [719 0 R] +/Pg 24 0 R +>> +endobj +1079 0 obj +<< +/P 1197 0 R +/S /TD +/Type /StructElem +/K [720 0 R] +/Pg 24 0 R +>> +endobj +1080 0 obj +<< +/P 1197 0 R +/S /TD +/Type /StructElem +/K [722 0 R] +/Pg 24 0 R +>> +endobj +1081 0 obj +<< +/P 1198 0 R +/S /TD +/Type /StructElem +/K [723 0 R] +/Pg 24 0 R +>> +endobj +1082 0 obj +<< +/P 1198 0 R +/S /TD +/Type /StructElem +/K [725 0 R] +/Pg 24 0 R +>> +endobj +1083 0 obj +<< +/P 1199 0 R +/S /TD +/Type /StructElem +/K [726 0 R] +/Pg 24 0 R +>> +endobj +1084 0 obj +<< +/P 1199 0 R +/S /TD +/Type /StructElem +/K [727 0 R] +/Pg 24 0 R +>> +endobj +1085 0 obj +<< +/P 1200 0 R +/S /TD +/Type /StructElem +/K [728 0 R] +/Pg 24 0 R +>> +endobj +1086 0 obj +<< +/P 1200 0 R +/S /TD +/Type /StructElem +/K [729 0 R] +/Pg 24 0 R +>> +endobj +1087 0 obj +<< +/P 1201 0 R +/S /TD +/Type /StructElem +/K [730 0 R] +/Pg 24 0 R +>> +endobj +1088 0 obj +<< +/P 1201 0 R +/S /TD +/Type /StructElem +/K [731 0 R] +/Pg 24 0 R +>> +endobj +1089 0 obj +<< +/Type /OBJR +/Obj 178 0 R +/Pg 24 0 R +>> +endobj +1090 0 obj +<< +/Type /OBJR +/Obj 179 0 R +/Pg 24 0 R +>> +endobj +1091 0 obj +<< +/Type /OBJR +/Obj 180 0 R +/Pg 24 0 R +>> +endobj +1092 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [740 0 R] +/Pg 26 0 R +>> +endobj +1093 0 obj +<< +/P 740 0 R +/S /L +/A 1202 0 R +/Type /StructElem +/K [1094 0 R] +/Pg 26 0 R +>> +endobj +1094 0 obj +<< +/P 1093 0 R +/S /LI +/Type /StructElem +/K [741 0 R] +/Pg 26 0 R +>> +endobj +1095 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [742 0 R] +/Pg 26 0 R +>> +endobj +1096 0 obj +<< +/P 742 0 R +/S /L +/A 1203 0 R +/Type /StructElem +/K [1097 0 R] +/Pg 26 0 R +>> +endobj +1097 0 obj +<< +/P 1096 0 R +/S /LI +/Type /StructElem +/K [743 0 R] +/Pg 26 0 R +>> +endobj +1098 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [744 0 R] +/Pg 26 0 R +>> +endobj +1099 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [745 0 R] +/Pg 26 0 R +>> +endobj +1100 0 obj +<< +/P 745 0 R +/S /L +/A 1204 0 R +/Type /StructElem +/K [1101 0 R] +/Pg 26 0 R +>> +endobj +1101 0 obj +<< +/P 1100 0 R +/S /LI +/Type /StructElem +/K [746 0 R] +/Pg 26 0 R +>> +endobj +1102 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [747 0 R] +/Pg 26 0 R +>> +endobj +1103 0 obj +<< +/P 747 0 R +/S /L +/A 1205 0 R +/Type /StructElem +/K [1104 0 R] +/Pg 26 0 R +>> +endobj +1104 0 obj +<< +/P 1103 0 R +/S /LI +/Type /StructElem +/K [748 0 R] +/Pg 26 0 R +>> +endobj +1105 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [749 0 R] +/Pg 26 0 R +>> +endobj +1106 0 obj +<< +/P 749 0 R +/S /L +/A 1206 0 R +/Type /StructElem +/K [1107 0 R] +/Pg 26 0 R +>> +endobj +1107 0 obj +<< +/P 1106 0 R +/S /LI +/Type /StructElem +/K [750 0 R] +/Pg 26 0 R +>> +endobj +1108 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [751 0 R] +/Pg 26 0 R +>> +endobj +1109 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [752 0 R] +/Pg 26 0 R +>> +endobj +1110 0 obj +<< +/P 752 0 R +/S /L +/A 1207 0 R +/Type /StructElem +/K [1111 0 R] +/Pg 26 0 R +>> +endobj +1111 0 obj +<< +/P 1110 0 R +/S /LI +/Type /StructElem +/K [753 0 R] +/Pg 26 0 R +>> +endobj +1112 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [754 0 R] +/Pg 26 0 R +>> +endobj +1113 0 obj +<< +/P 754 0 R +/S /L +/A 1208 0 R +/Type /StructElem +/K [1114 0 R 1115 0 R 1116 0 R] +/Pg 26 0 R +>> +endobj +1114 0 obj +<< +/P 1113 0 R +/S /LI +/Type /StructElem +/K [755 0 R] +/Pg 26 0 R +>> +endobj +1115 0 obj +<< +/P 1113 0 R +/S /LI +/Type /StructElem +/K [756 0 R] +/Pg 26 0 R +>> +endobj +1116 0 obj +<< +/P 1113 0 R +/S /LI +/Type /StructElem +/K [757 0 R] +/Pg 26 0 R +>> +endobj +1117 0 obj +<< +/P 800 0 R +/S /LI +/Type /StructElem +/K [758 0 R] +/Pg 26 0 R +>> +endobj +1118 0 obj +<< +/P 801 0 R +/S /LI +/Type /StructElem +/K [759 0 R] +/Pg 27 0 R +>> +endobj +1119 0 obj +<< +/P 759 0 R +/S /L +/A 1209 0 R +/Type /StructElem +/K [1120 0 R] +/Pg 27 0 R +>> +endobj +1120 0 obj +<< +/P 1119 0 R +/S /LI +/Type /StructElem +/K [760 0 R] +/Pg 27 0 R +>> +endobj +1121 0 obj +<< +/P 801 0 R +/S /LI +/Type /StructElem +/K [761 0 R] +/Pg 27 0 R +>> +endobj +1122 0 obj +<< +/P 802 0 R +/S /LI +/Type /StructElem +/K [768 0 R] +/Pg 28 0 R +>> +endobj +1123 0 obj +<< +/P 768 0 R +/S /L +/A 1210 0 R +/Type /StructElem +/K [1124 0 R 1125 0 R] +/Pg 28 0 R +>> +endobj +1124 0 obj +<< +/P 1123 0 R +/S /LI +/Type /StructElem +/K [769 0 R] +/Pg 28 0 R +>> +endobj +1125 0 obj +<< +/P 1123 0 R +/S /LI +/Type /StructElem +/K [770 0 R] +/Pg 28 0 R +>> +endobj +1126 0 obj +<< +/P 802 0 R +/S /LI +/Type /StructElem +/K [771 0 R] +/Pg 28 0 R +>> +endobj +1127 0 obj +<< +/P 802 0 R +/S /LI +/Type /StructElem +/K [772 0 R] +/Pg 28 0 R +>> +endobj +1128 0 obj +<< +/O /List +/ListNumbering /Decimal +>> +endobj +1129 0 obj +<< +/O /List +/ListNumbering /UpperAlpha +>> +endobj +1130 0 obj +<< +/P 795 0 R +/S /TBody +/Type /StructElem +/K [1150 0 R 1151 0 R 1153 0 R 1154 0 R] +/Pg 20 0 R +>> +endobj +1131 0 obj +<< +/P 796 0 R +/S /TBody +/Type /StructElem +/K [1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R] +/Pg 21 0 R +>> +endobj +1132 0 obj +<< +/P 797 0 R +/S /TBody +/Type /StructElem +/K [1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1172 0 R] +/Pg 22 0 R +>> +endobj +1133 0 obj +<< +/P 798 0 R +/S /TBody +/Type /StructElem +/K [1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R +1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R] +/Pg 23 0 R +>> +endobj +1134 0 obj +<< +/P 799 0 R +/S /TBody +/Type /StructElem +/K [1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R +1198 0 R 1199 0 R 1200 0 R 1201 0 R] +/Pg 24 0 R +>> +endobj +1135 0 obj +<< +/O /List +/ListNumbering /LowerAlpha +>> +endobj +1136 0 obj +<< +/O /List +/ListNumbering /LowerAlpha +>> +endobj +1137 0 obj +<< +/O /List +/ListNumbering /LowerAlpha +>> +endobj +1138 0 obj +<< +/Length 19275 +/Filter /FlateDecode +/Length1 83164 +>> +stream +x}|U97-S23!6IfIB`H$d LBKHCO0FW,%`CZյ뺺ewuCݽMy~'?3бڊS zaccˮo1,cJ)}ozA]Z 8}C3\ΘYŻkucG.p@70f k>sۋ:1GMu GڳMpK?4cYM [V m<'-Ѽٛu/P޻s`[Tq+c_-K/or ݢeK<41\}\_sKfۇ|RMLßyA{G>7 @2) ({[<%s,^qژ Vl#c ôrRg&u~h2X}mP)v(:U}dYgi= c/P7+9^ƻDS/Fu{_bߛ-vO݇+kd}G`W=XO݇My]S`5,f1M0ObjvO݇,f1?o'3όYb,f1Ybߵϙ1Yb,f1Yb,f~=f1Yb,f1Yb,f1Yb,f1Yb,f1Yb,f1Ybu{2YrV1eJ,B:91@Xw65elKF7..7~ _C<z|pZ9 U^ s-oۥ7~B{+G +?ikVsKVіRdbmQF!# :BNAemDv2J=h:`+Atf-˗-]x3o7aY3gL +M2y Ǎ3zeÇK6dw$:vg2:UwΩ r#G扴a/\' {kbޓKQr)%T2x$wx!y~orL\hzu9Z†χފroz+•++j^\/k4ff *_srM(:fdž슺IUnZ2,l}fy;zi`sjC݌ZJjE{ư3/\Q +/hlca}m쩋z َobǦ R3 =|>ї:lIU9 J#s\!&sURUFW4xzcl|#Vsj7 klӼM +!uѱVt|]-1_LäpI8? +k0JV%Z-XfZႊr/oE{m9uPTޏjяpR%anSnrjL_Z!ӞN)- M*ŭVՂ[!p`XCUd1<%ZBAB.)TQlW#.}gM'X9?5*-:[X~BOjT`OEEa9Rf8)hFsULDo_ +Ncs)1jՎ'(RaCL(e؃\V-=BKK<%{~7t05[lewׄ@?<'~01ojmj%ux+:wK*j\G5T qk\ֽZ<;cGS +L Tr _0*pvxuGvԼ +HxEB4 V޽+XZ3g>;9A9ڃxw('(K3JFK9^$L$`bf} Z)\;!<:>PMv+C'J ]҄=IA5M"z$U|0ea?=6Xf?\K7b$A֏@SܜΚ*vvuM>PYTxGZGD?XJ5fƹ ȨpZZqP{ίI:ڪЪyuH!T'jgݜQPƦTǍ$VMd~dziLYMF|]N;İlGڒ/b>X]MRlG؂0 +d}FtU}B43MBZ2";lUշ/M"Zm%Q܊yGH?w!v̽ UO6ivW2َT[,6߼Uݡh5nDEGyE)ty~?xMk;h1NN6KV +2Ow EZp3v,"VuŇVy@-رǮ[5 VֶW+j}]tڢO +/ +$ACb8ᶉjo-|Ri{45U]lqJ;lċin]߇7HXD }G]0w{=JF98v{I_(s Q[j#ZsWq7G|Է fٞ-iG.~Z-^UՖ΍&aHU!*- +Yi>ѾIk=\(hI\L1x>J)Udܢ7L.V F!um#C3ܘ<<͊Gy&bR~ ~ v~U+?BLˊzL5wzvẐ%*Orh(@yvĥXR+9RIqX+)ΒbgJJRU)KT%R,b h )H1_&)I1WF)buRJ1[YR̔bӥZ*)Nb!)J1ERLb/8)J1FRb#Br)ʤ.0)RJ1TӤ"`)IQ"E E)'E_)HQ(ERI[)E=ȑ"[,)Rt'W +RdH.[4)RH"Y$)\R$JM)R8K/M +)RIa(A +:)T)),*xG8"a)IqPNJH),şZR/8 R|&TOK{)>wRVR|(R/{RFwxG_KoIoHIH/IOxAxN_IHOIW_JOHGǥxLGxD-.):)CR<()KCHqIqۤG_Hq[K;CۥM["-R,MR( R\/uR\+5R\-UR\)R\.eR\*%R\,f)6IqR\(RlbK!=\^{py嵇k.=\^{py嵇k.=\^{2).?\py.?\py.?\py.?\py嵇k.o;\vpym.o;ly̡ܙ#.й:'9FE2ZCtj3#@"eD+Z)Rˉsi$c8h bETd!Q3 +DMDFAj 'CTGTK4h՛IDӉjN'F"J4h2$D#K4ht= +4hd=42ǂʉʈS0$*zCN#B% %DDƊQ+}RcDT/7QQO\tQ6E'NMTCIAN&JD&"J$g7"'9'Y)Bd&<IGR'tD*9Jq"":G(uAR[o")SALR"+R_ >##9?%DSS#JR%O!}@>9# ѻDP_Sm"ɧތ$OA:9_#zKD" D=GE~E,9!z)DOR =DScDv"ꤒ;)уD;GJAHtPQ#h=$k jnwѝDwNtѭD[nnVn"n :k5*+) +jr(RK.&LJ^Dv . H!qG> :蜈+j:T} ;hu:"ZIh95/%ZqՃScBf3ͧzMDgsz#Q'CTGTK4h z&ltt 5]M":;VM!L4)M$'L$=>4.KE$^GQj$rVFׁ*"AijAe6HB%hQhh$w~DՠD"N5J#gh@YOyED"ޠTO)VqY@O X/X.QSRNm1/!ʤzDDn4Ԉc&(%J8f\DD݈*8i''YJGd"2Jȩ)Ds<G#aCA{7_3'}W?>Cq<<~ C{H.kml}4qcBc .mdhDqet!2>bn>tʭc{[MyҔT^6!/N=;T՞RLٻҞR_&{W$G7Iua&Zqi9qڰ=IJ]Ro`*rθPfwy*G==R650& &N SgpRMpAjWup~q D%Z͛Y1)Uu˖cmBHu`偪i+zC۹eWvtWGW3neS6xzX'N[<%Tj`QҲʠ%oƹ]hY[7RռU$+ -Z4 d'Za-Y;7a]yAY g뀵,`5p& +X Z`9X, f `0hsFu@-0fӁN!`*0 L&8`,0 F#J(ʀ0 CӀ!``P@@ = @wx dHR H\@" H  &=օOP0G#ap+- //gOO?>~||xx56&:* +2xxxx, 4%$xx xxx :C`;:0p?pp/ p7   \\\ \\ \\ \\\\ +\\ l6F`p>kq9?8sq9?8sq9?_ p8bG 1#p8bG 1#p8bG 1#p8bG 1sq9>8gs}q9OVSwgnl.fRf`x3cG8[&l9k]g9l=ul Wf~܎_ȬNf`:u]@>Huy{]_]fڔW3?u/]ڮxn=e&6`3Y-X95lZylBR`kal@/DR-Vk;fg5lmsYZz9)Ycc6 ؅?jgMX%?7_˱dWٵ7O^g7[gDUܢ){=gǬьyp =[ylablёjΣ(%ZSfRQ*mǽ'ʏy|xܠ:CjvN*mФnݢogw;[5%;¼ŘeANLK+oج:Gu͸yȾ#H()8 ~%O;fٌ;ͪT5f4RHW@3>sjHWD{ҿG΀~U+hj(=C꫇k G :~4{͠WSd;LaTUo2}LsEw WRFɔp?'}2]+UYf3:3SR{ fY9I&cӚ[>Wh#墶cuaoY:j. + +))i]lwq௶ۣlV?n8Y}Vs +vf3JSPļ?x=T$XրId[AJ|'w'҇X),!ٯد:9)gi9)emo-P=yY$V/SI8LH!`J&T+#ѕhQDoj[WK''u͚fzդwJ٨fczeYr݇OWj–10 ÆKSqq)7cJ[}s|}3YK-* ̇pCYYpnhceP[lzað z/M4o/4^#֮F-ە#w +yy݋"d7%YԌ&GI.X}t %%}%%bS˕;u %nToQ9zΟN1&xSS= ƜfOozMJ6Z:>ԕϳZUCA]scg{ł)RfvPo|cA fd3+}gN==xo "R 1ojK%%6GˊN sѣG?yDJDL(y^*`S 6[~`4wUZJzu?O.c18!(`%Z0ˊ)f2fgןdg4-ܻ31DaG\7~}\6{1ѓ=wWҪi|+{"(`Z㦍[1FT)M +HŔӇY,?^e}p.s8lNvkj{'.sN|xdi8;%Q/mִ9hKPc#fx¶ΑK{ !dJr7%P5$''e8d|YV9Iθ8Sb؁G&IÇzMi1Pîx7vH)eɲXV#f%a^M/ :qjn8ii-)irIK}oh +FCxm*S}$n%iaKL5 rGfy̾9Y򕏬6ϰ>\>!&LSEe@+z7cbۻ1Akyo%W (m={7q:3MiOLߟ+-ޗdqݫΔxޠf҉))VOnIg2'3'xPDۇ>jit4}'tnޯ5MzM.2ǥz<=S"VU*ImM VP/X//bIq@nbz/') \JCG/w>Cg{[! ›"{B{E?髌v+0p[V;"p\RVFzNr\\rNzFVR/.*>.ì[ތ)KJT95}H\o=qV9##0/fbV_{ҬFc<œR )vC9їwH?$_aAN+I}N993qnnB ~8c +]@g1CXŹgC=zVܫ\ ZΑD}GˣsB'NζVr uÂN>=K/:,-lx-D| JU 'H386@ +$&.M"yߍ>˂1{;[􏀲xAB; fwE| X_`7#cH0`3 Ι f0`3'3 f0`3 f0`3 f0`<1OoZK- Lp,8n[lҤ],x͖ElيCٲ5ĈoI.a˶Klgo)2iωq`\U̖y[[sƲe ֭-[ 9ֲeǥ?[8e$# lqɖ!lٞ p +sаeL3Sf̔&8I;cgؙ)3vfʌ2cgؙ)ٻ2cU!O xF1-G_GmaMl(hCIPH-}:\N`ӎ Lh9h)% n樀R6?5~ȃ0LrX bP.|)hH9,n,r|:>)j:,v 8ݠ =V#CGjJ`.y+c%djxN Ȅ#Tخxc%DV+Jd%pTW׃r+amXQ +0ч<rRh@-JzL(+LZl /z`6k)TaXR~^ɂ +Nu$BBT)6^4l(}4*hQb MTbxW!c[Fv 9l"{¾65c3 G6cVKl<:~xzSSb +y,5!Tl$#hq4bƾF1jȘ6- 6z1f^#I(_% +|u9oTHc2K3<Ƶƈ" +i;9c2nH"%OppTdzsdضhcc8q!@+z#+ccUˀ$2y8`+!f`L)f,7zۀm R6wYm4lTi  SlNqFc 2/ď,(0 TϮ>dրɢ]s>a|VS9i +<fei-kDǩ325N{NZcAX[&14atav \5)p嘬ԙX]4%Y,Qe0뚱ǭj3Z45c؎Џ .&@La +^Yٍ Ux023:Rs +W_sOxTk^T3Ó-{9PKR[b,*4Ck8xF2=סhKkCCg!pպ~Bc#8=11%v<=C# % /F1gvMd$Mv¨aMb0GdPh7h`zH~?rFb!ʈfHk5Ibi%@X]<I!RZ;:&he&-2B2Z'5H=CF)BgF)Z9bBJ5PFJd,"RD\C2 +Ъ\ RVH ,UZ'hJu5z!:%R(!<^<%LtFw qB'r\zB"  %UKEdʳ1a\ڏ`JJU@H~*]r2)M)< bE' +z5(4D% E4҂`OBg)(1XG&B>hЦZJF+)m.`q jA}I[PF"JVszL-) #`@R* "OJ*08`U3i4 +9D#2y`"bH5#CHzڗu`ơzBÝ7Z\rX+C< nZC! qPwYTq0Ec ?9ridT* W RZ[2(4XZ HZZȁ Kh*մŘ +" B^i@F#5NԴ($&]9DIK$ِGpE&ˆЭC2--T<(˳НB9_(0>kp9v܉w~,`@{ZMp])FGDn +6Z'LpnK hO ո pF,'U6\ОE$⊬XsE\P$2>C,\KBq".r +|ȢDd+W`X+ P0p--E㬸\+C +ѰZ⮋N0ڒk-F +BL5gmaS(p-چkmw@d*10 +ƒ%fl05;^n%-JZL--* +V<,Od{+d ry5I +I[{͆7%%ő'N~v"5>OvlK72;rٻ’k':>8 q=OPee?SNCP-Kj*_"@%hu.j᪥d%(acXkRHM +&yV>cǼ +y%M)H;Kc4_ZpA֭,nq+(kpGaClH)h )EP@mq0ړ#ie쬟MlL*#FI@X,_)cQKewX;K9%|T*ά\u z=[i3CrYݞ}rSYU-ua,-(Igef[R!na!F^POP7vmi.^^aEJ:x{i %nMBqvHV'qCOihY[8 n*MHPH0Qm*p#ֽ [67 SLC$0.)>jjr՟}^ !!xmM&ˠ9+H XC̲ Z-*Ԛ|+ЯZmPD_MWnN_6"m?uǻ3VNjXޑ/ 8kl?윶=Uk;#^[|pfU9P5IhǟBU~!ٶz]~GrV#ZmYkd>׬ w5:}te3iQxE-swd|s‡U +㜖~ 6FGw~_& lmg>4m?ܽ:x̒~<=!EnV@rLGP}〺<5lxW#aPt 2cHܷ p?O;>ޒ>9efL}< q Q f62'hɢHhBP4,FM6ǏO xzOJ/g:Usz#A~,vՃlz]ň?t2dN\#"[Tޥh#.hIˊe=Ϲ8*Iڽ|:wCx+3S>B)ג_qڿ57sϼy(8mXw{W /Ѭm Ky1|tF8# urP&燽5m}(FqGUnX0g*#.K.:z?v񛔍{W;<;Ε& ]v5o/J5~.'֝Oz"m?K[$>|Gݬ7Mټc&V7=JT`ңSn}^&7l=rȸq>.Rg T^[R n&'5j;sGVw;!_9pgެцsq祖^v6vO[ǫog]]7cpXAk,fb6$ߜ?79AGi d+Tli _=P >3Ӄ7C.|W[~   7n+nC-tↅ_0k@b.gˣ!wo*ZRgϖ̘4z^}Du^t) СxS^;e z#g8XB@bF_.y[_2[?;[iJߪn+кw>#~yÑI*qX$nŜb,.lx%|\d/pb˷jEuVw;MIe^ZެzIi~uswWSznzWM)TpAЇmn=ھA~ͻ=j=G)ZBEI'ƔV<<=wMVq{Oy|@@xnwla9_Έ<}mY=Zv=[9ꬩە6e/u?'ZƵ "&=^~漟>;`wciݨ}) ,^(WL,ڍ~vG}4G4qIyEJe-^ܽRRpޢ:vN J7h)M4wk\2]Se|'c[=;=S m>:Uo~\]pјW~s.~N[7k|[гgָ㖍<]G izOw)ZQ|B㩧JT +_R䋿o4rЖ=B__X72E*G-R wۺrp/p*p?. 6¡sj2ժFv;oO<|<ˬ9ţ<,oC*ժ.q3rEfl ;*%bMݮM_{AG7/^aw{gԘQz*{j Mwpy2Y1;nPo#y7vҺ7l\R憾w5=o(sX`9{ijY+twl'C}ſ^Iu(ސ{]V<*UGXMrνGkoTw"~d>8#8Rt +s wZtqO<>mqkCv}rQW;妤Z(wz=y≧>ѵk}\<+u{F$^]>[;UYA}yՖߟz~l(Gݝ x٬-wn}'IU@uVL +ܑޏ]~|jn֔U3G\;k3v.Dy`%_|)C+Um/xzx1#6rۖm-*d_<3\a_K0wԊ:]Wxg*?OY諟)OPz]tztԐ{/WFyq];U*:jmTY{moIi#vs~ 3/o9|?Żɋ#kضaՏ67Ǽ򙷴Nyn> gs7ɺ-\ 8;ig˯+N}wN=}^Q=-*JTZy7]&޾{݇ DE^TT張uEvX=lAMl˸a=1qg㪹rPq1ΐV8bn,nՒ]>0/ԭ5~^*[캧I7U/Zɢ&xd]6YK@Z;b: yjrW[_\Oo'L߾O~O-1]uߒ9}h^z=s7 xvFuF©c]ӳ_{ԲɄAݷ?7WU'Lɿ٩7OqUCOs·>Ăn_+x،v+WIR uYjx׬)=vw}8w+r/&ZYPuiUWW?o=ݐ5Z|X#A6`sQ +endstream +endobj +1139 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1140 0 obj +<< +/Type /FontDescriptor +/FontName /ArialMT +/Flags 32 +/ItalicAngle 0 +/Ascent 905 +/Descent -210 +/CapHeight 728 +/AvgWidth 441 +/MaxWidth 2665 +/FontWeight 400 +/XHeight 250 +/Leading 33 +/StemV 44 +/FontBBox [-665 -210 2000 728] +/FontFile2 1211 0 R +>> +endobj +1141 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1142 0 obj +<< +/Type /FontDescriptor +/FontName /Arial-ItalicMT +/Flags 32 +/ItalicAngle -12 +/Ascent 905 +/Descent -208 +/CapHeight 728 +/AvgWidth 441 +/MaxWidth 1876 +/FontWeight 400 +/XHeight 250 +/Leading 33 +/StemV 44 +/FontBBox [-517 -208 1359 728] +/FontFile2 1212 0 R +>> +endobj +1143 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1144 0 obj +<< +/Type /FontDescriptor +/FontName /Arial-BoldMT +/Flags 32 +/ItalicAngle 0 +/Ascent 905 +/Descent -210 +/CapHeight 728 +/AvgWidth 479 +/MaxWidth 2628 +/FontWeight 700 +/XHeight 250 +/Leading 33 +/StemV 47 +/FontBBox [-628 -210 2000 728] +/FontFile2 1213 0 R +>> +endobj +1145 0 obj +<< +/Ordering (Identity) +/Registry (Adobe) +/Supplement 0 +>> +endobj +1146 0 obj +<< +/Type /FontDescriptor +/FontName /BCDFEE+Wingdings-Regular +/Flags 32 +/ItalicAngle 0 +/Ascent 899 +/Descent 205 +/CapHeight 771 +/AvgWidth 890 +/MaxWidth 1359 +/FontWeight 400 +/XHeight 250 +/StemV 89 +/FontBBox [0 205 1359 771] +/FontFile2 1214 0 R +>> +endobj +1147 0 obj +<< +/O /List +/ListNumbering /Decimal +>> +endobj +1148 0 obj +<< +/O /List +/ListNumbering /Decimal +>> +endobj +1149 0 obj +<< +/O /List +/ListNumbering /LowerAlpha +>> +endobj +1150 0 obj +<< +/P 1130 0 R +/S /TR +/Type /StructElem +/K [979 0 R 980 0 R] +/Pg 20 0 R +>> +endobj +1151 0 obj +<< +/P 1130 0 R +/S /TR +/Type /StructElem +/K [981 0 R 1152 0 R] +/Pg 20 0 R +>> +endobj +1152 0 obj +<< +/P 1151 0 R +/S /TD +/Type /StructElem +/K [982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R] +/Pg 20 0 R +>> +endobj +1153 0 obj +<< +/P 1130 0 R +/S /TR +/Type /StructElem +/K [988 0 R 989 0 R] +/Pg 20 0 R +>> +endobj +1154 0 obj +<< +/P 1130 0 R +/S /TR +/Type /StructElem +/K [990 0 R 992 0 R] +/Pg 20 0 R +>> +endobj +1155 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [993 0 R 994 0 R] +/Pg 21 0 R +>> +endobj +1156 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [995 0 R 996 0 R] +/Pg 21 0 R +>> +endobj +1157 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [997 0 R 998 0 R] +/Pg 21 0 R +>> +endobj +1158 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [999 0 R 1000 0 R] +/Pg 21 0 R +>> +endobj +1159 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1001 0 R 1002 0 R] +/Pg 21 0 R +>> +endobj +1160 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1003 0 R 1004 0 R] +/Pg 21 0 R +>> +endobj +1161 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1005 0 R 1006 0 R] +/Pg 21 0 R +>> +endobj +1162 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1007 0 R 1008 0 R] +/Pg 21 0 R +>> +endobj +1163 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1009 0 R 1010 0 R] +/Pg 21 0 R +>> +endobj +1164 0 obj +<< +/P 1131 0 R +/S /TR +/Type /StructElem +/K [1011 0 R 1012 0 R] +/Pg 21 0 R +>> +endobj +1165 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1014 0 R 1015 0 R] +/Pg 22 0 R +>> +endobj +1166 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1016 0 R 1017 0 R] +/Pg 22 0 R +>> +endobj +1167 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1018 0 R 1019 0 R] +/Pg 22 0 R +>> +endobj +1168 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1020 0 R 1021 0 R] +/Pg 22 0 R +>> +endobj +1169 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1022 0 R 1023 0 R] +/Pg 22 0 R +>> +endobj +1170 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1024 0 R 1025 0 R] +/Pg 22 0 R +>> +endobj +1171 0 obj +<< +/P 1172 0 R +/S /TD +/Type /StructElem +/K [1026 0 R] +/Pg 22 0 R +>> +endobj +1172 0 obj +<< +/P 1132 0 R +/S /TR +/Type /StructElem +/K [1171 0 R 1027 0 R] +/Pg 22 0 R +>> +endobj +1173 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1028 0 R 1029 0 R] +/Pg 23 0 R +>> +endobj +1174 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1030 0 R 1031 0 R] +/Pg 23 0 R +>> +endobj +1175 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1032 0 R 1033 0 R] +/Pg 23 0 R +>> +endobj +1176 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1034 0 R 1035 0 R] +/Pg 23 0 R +>> +endobj +1177 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1036 0 R 1037 0 R] +/Pg 23 0 R +>> +endobj +1178 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1038 0 R 1039 0 R] +/Pg 23 0 R +>> +endobj +1179 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1040 0 R 1041 0 R] +/Pg 23 0 R +>> +endobj +1180 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1042 0 R 1043 0 R] +/Pg 23 0 R +>> +endobj +1181 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1044 0 R 1045 0 R] +/Pg 23 0 R +>> +endobj +1182 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1046 0 R 1047 0 R] +/Pg 23 0 R +>> +endobj +1183 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1048 0 R 1049 0 R] +/Pg 23 0 R +>> +endobj +1184 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1050 0 R 1051 0 R] +/Pg 23 0 R +>> +endobj +1185 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1052 0 R 1053 0 R] +/Pg 23 0 R +>> +endobj +1186 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1054 0 R 1055 0 R] +/Pg 23 0 R +>> +endobj +1187 0 obj +<< +/P 1133 0 R +/S /TR +/Type /StructElem +/K [1056 0 R 1057 0 R] +/Pg 23 0 R +>> +endobj +1188 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1061 0 R 1062 0 R] +/Pg 24 0 R +>> +endobj +1189 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1063 0 R 1064 0 R] +/Pg 24 0 R +>> +endobj +1190 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1065 0 R 1066 0 R] +/Pg 24 0 R +>> +endobj +1191 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1067 0 R 1068 0 R] +/Pg 24 0 R +>> +endobj +1192 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1069 0 R 1070 0 R] +/Pg 24 0 R +>> +endobj +1193 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1071 0 R 1072 0 R] +/Pg 24 0 R +>> +endobj +1194 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1073 0 R 1074 0 R] +/Pg 24 0 R +>> +endobj +1195 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1075 0 R 1076 0 R] +/Pg 24 0 R +>> +endobj +1196 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1077 0 R 1078 0 R] +/Pg 24 0 R +>> +endobj +1197 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1079 0 R 1080 0 R] +/Pg 24 0 R +>> +endobj +1198 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1081 0 R 1082 0 R] +/Pg 24 0 R +>> +endobj +1199 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1083 0 R 1084 0 R] +/Pg 24 0 R +>> +endobj +1200 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1085 0 R 1086 0 R] +/Pg 24 0 R +>> +endobj +1201 0 obj +<< +/P 1134 0 R +/S /TR +/Type /StructElem +/K [1087 0 R 1088 0 R] +/Pg 24 0 R +>> +endobj +1202 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1203 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1204 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1205 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1206 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1207 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1208 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1209 0 obj +<< +/O /List +/ListNumbering /LowerRoman +>> +endobj +1210 0 obj +<< +/O /List +/ListNumbering /UpperRoman +>> +endobj +1211 0 obj +<< +/Length 53020 +/Filter /FlateDecode +/Length1 113632 +>> +stream +x} |T7[ɾLy!2@B !f@B b(8*Pm- Vm]Vmei?֝{L"X_w>9o={w^2 1"F"Ӷ sƬ!bs!o\2X| ufLџM6 x}/]JȚu}Q]J_bzJB}\HbS+Yjzh#~9J%i3F +J> L +0\| jƕhK~Qyk"7bb@7ͥ#DC$>5+m1V*SVKk +^~Aw/%D]OSi!8`pCNw_&;-Q.ʳ4x?ha8-BwT&*:hka/(o~Z?xJh/ڹ-4޺-w0/ ܈>A+UЉ-nbflAzIȁ!zـbzit?®"GԿϿwb^ &G㾴~SMݳj{pߟ ^? +tC0! { Obck0'Q h0! aC0! aC0! aCOМo߃w0_?mA0 ]'2ׁoGL Bӥ8**F"?H&%\|jՈNI4W߯Z \ҿ_u#MQʫԨ|FCߗ8PJ臆T//J,*}FnE񼚢hEL|I^ +oqhJ.i=ZБ!:BMX +\2LB`4>M{jچ0塞˿LCyA!:c=oG~/P=E#ѳE?/sQ( +LcOHLJNIMgdݧo?w2`E#GGe3q'TO4fkjӮ^wEWS{QG;|䯪R$op|[s-˖6/Yh^7iV]5SL_)5hDaC ; _>]ٽY՞nKKMINJLDGEFX&A%Ψ^\r^uU; hLPU^zs jzz4U-jSN;U?6Nq:M;V-W5VVhUԗKɒӟ,`#i6< O(ldQZBKu 4)aV=pxsk9K#gULF3iFu ݦ?oY k5+ur-yٔh&ryPZꫩu:bPޖ@I:R=j%9۬AǶEDŽȨ˙2W5dzLXF:1a"iFaPxjiqGizPE}Mɶ:Uߟ <ѕĐm3 VIOn_?"2S8J;Vj[ ;,d։Jlu{5^/Ju$N%%=띈N}HLO5)bnƒFqSjjZWmU`ŗJ6MK{E6R1A=o4!*u S+5kUkq8JEQK'_W ̏"y> .^U3\QP v8&DTSP4?pl@MeeBW(B 3%:ҩV} @,ju'f*oWsYaN(fn<63ey nSv:MK[!E:jq*ms^iZLE럎Zn][:bl$qՑ.֐nmz;[{VG7m(9cvxthF{`oN8sII6>ޭSSXglhĦ;7ˡ +-4"LIl$z> ק]wevnOR (ƢOY6ߦ-{TĘ}ۅbG Ƕ3Zkmlo4:! Z;+AQɩՄC=iW45aBCb8ZkZU뱆pMPuOnTS7uI6fz6)WM{FZl>1+]5F|Ά&q#vM#ս#ZU8^lݗp&,4Ĺ O|p&|UƩXTZ귺0Fh(h\"w[1kY*VCVݭb?`5< bl4}_SDM, mcDU[ V۽ ۲WZ\դkmplN[͆xe]rK_!tR/ 3RF/9;bJr$KpHJ!i V>Q@8'ׄpHm/%1|%^Z /$}. mqgokZdMu-k]ZX f5zXa6 he+=)ykma.֚Z{Vx>&_':(t(>1: GJjVP95SЬ~¼%>Q8nq: q#h i1p&04@; obL @n %! sCO8,\dXӭnUt&d2y%%9+.gQ>(2U,|[nmK7:l/IdwScŲAQB&AS:4=}*ŴhQR2kG_K\RuՃ=CvZAoJm_4 f 牱OrM_g=-h8}(5D9`A훮w̄>dʔ?on5N05F1h3&LVS)d1Ll&2%g%/Rr)r^٨f멮_t} lu{ts\]Ke6݈k-=Y'zy>g%Ƕ ܆8Q92Z'q?KRvHEWZ6Ipޑr~S+=#ʓEC;80.t6wmj C؃ WpގGH.cL6-e7G폳#үu!O578; (EH1RO-IMri]ҤwOpdldG3taao#HƉ:VkzDqO?~쌴N/%L-Tm7NK0`삯'|4U4 +fH(9Z Hjg&`OKe!fFzSdvXFTԒC>=.-e7~^Adt;x<ۋuϤ# +h=-࿦sǛn6[P>[CC}ņ~D'x<$.?,;$%nauNZA'e '82 6:ZʯHbS)[>m';@oƪ2kCXJq rF\L +2"h5X^NC uJ4êC$5{`S` ZCm躑tJ~R p ̷_ylBr|h2n+=4 ߳ypt@Ԍ񞦉Bs ij0q5 +{#5IRS.鶼9o:1P`/v}L _xްKycH&L&lKݖl6!&%5!%%5Ŗ6wB4Q$剐RS%fKI#v]GNr#Y1|"1h,a|4Cu>>g tNU1nԠ)e=IIڛFoIo+Җ +1É'>, 3'mP3 |CI|^rS>oeS|\RLn.[/SNNflIIjR$X,9V6ofaۘQ;^ʍ2?IOL`Æ;E4C52;B1UwKُՁ:r\Mш%ctѦhAE: U@!j,d%dX$&d~iP' //qJ;ZJrcsl"k.AcRņ(q̘!9 +߹eKO޷h1'IMue9zLusΖL|ke[Jo9_j9f[+ sf(ϪwiFk&zĐW1qFg+5AUR%Iz4u_DLi,]E³1 +cc -7q%Z;M;nUNLGg,|~].J-Xw9a%1N%͈.vZ| +:cbtlgT|䉱Xh{4~4.da91w[]򓒓:Y#{^wdڸ]Α}^ev/](:b3$-Vbl\aq <5Rbqѹ"٢"VMb_o[(QJ;?//?WlYٱ!Ė#YRu/ڵs{ Kvbe’l7QfaEd2df,3vbce2Ke\a~ sO|? cC &o8\R5%EXF~Im'4Jr#g묿q -]Mq$̿?*@7a警p1@o+0-?\&Ħ;z }6zN2>;HRT{p vI$.]O,A&EŇ$ٱ}Yj2]wSp.ށݴ;~T/O /*K?-HeJBfTT2-Ops,E + %EF"2Ep@r#zě1i=&XS$EL0"BgEQ㉝b8b8[XP[ mH?tN2(0Sc[H"ђGoURꁩ-D`usH[TgC`uKNeӠZӱ s5g3 `@kkJҹ0*JNӷY n%"̭qbH£VZG S_}U=5?v:*Ggvt:؎peۈ?c1 ay7cu3/zqLv|31ɏLKfErEE'bg0ᚮk'UcwїxpjVD[Ѣ-GJj!V6PpX#: |>)NbzIGhYY۴mg`+Yj.ogb EFx.IcFD 3=f\f)&jP(Ɍ#ðɒڭxsk +],ҧ=FqC9&wsϧd&hI(ʻy3{e7\bB ,"X$Y +TBV< Z''hHBԳV[}/R}R*癙ey矰3ݙy 1`2~ [5>>9Y1nVx>ORZs%Js{(QhPyJQ8pp! jvNsW/tuHC]*2w`jVj<bFeWX8^ WA +En~i5u"ga-Jhy1d3b#jpOxdZV*r+UC<(r]KQzlŴ )x )są8O4A+VëFw׼Շ>Z{6_~ӝ G<&րE^B. d&S PU.G% 3Ѫ0[J0ƧSCGF1&cf11ơzQǪ>uVe&f. y]^Yn=Jj VVD +Ft) xAFDWǢS!zaYyc0v|/_!=E|G +P)#]ۃ?4, F.yQϰ^p\5$zuXMc3B뚥jhdHZ16DLҝbgibhThT}mV*h wώ+7h*a BQh%)Sn]{х=]O,:ǯ?= ܹn+y_`5g>=FsӁ?lN!!F0ּ25]YxĂoq-#o`,8xgA(c&XGAtۏe,.eN`hAp4J2#o/ЌZ2<CbtE{XVDJ%I"zASF3e|G|IFeHA "3H8܃?^b1#qrƱͮty!♊諙F~O!M KL$LJOH1JGKZɤJYT!?RCՄzFh%{0uq5 /E +hp5x] kཷ=LW~s⬇r>fqaWyH܎V6Sj"a/6t R5)MdeaaU@Ph"6dtak4rrȆf#R^W ;Ui54ݣ="˸3Vojz أ3Uf\\󌋍Uc|o  (aM1s?AvtZaYP,f9!"cCHu©5,R+avul܇$Mp #[[4EQaխ!x-z0CnXM9w/aW6!Ls8FFy=<ΫΥvnrM=rxalw6es-?D?iU >):( Bь +Tѩ[RPI-kQUOZ~;0zO/uT(oaggmϟ/\dD4|6'9 Q\Kq W1ӹH}՝?"IO c@P̹M u.p>=QΨcWaFW}0YS,_Yo$ XAbU+{"ZYnXI$:!O)b 'u&*H;~Q. J)5)d q^Y{󽁦i7X(3]njqC`2xzmr㏣Y:KHvB;#"FTvxZVKà.CMCZ9cb +v%m8kztNa^'Xް t\E~XiJ.:N<^8N.:N2dk)v#_XAұcvW +\tmb`rt +ĭ?ǸhVY "8 QpX=ZSHM,SvB|_2ܷWow\y60X)\K+w)ClD^k4J1+pfn#fD)sІ}YaU $YFpc2@WKtK/xI̓Q#gmo,Ҕ$MB[˒+91 Gf\5r|3#GXlӝ m>vb0mؗNc7Lh 푥!7P[| KvĹxkƌf82`9"A|a$"!OTP%U_:lSиkk&FD,bqI23(9}>#55Lj&Ag&7bx<9Bm&hg'&&N:3{J%@JFG'Ȝx*;500Ȋu5R%ѢQtL$NnRp_ѴT VTSÄ^эP s3#vP!k:^ᖌF̚Ѯ(lMn!,;ml0Ta`(W>},FO/ZPX3֪ vC + y7! #(zm<\wM K  ȔqQFqϺSdmuCCֱ]ɻ?mٳ+rߒ*^zxFY*@`,(Z=L4r:Nti8ǝ lߗp6ؼg7ހx3>A"Y1RL2lvq]]."^+s>TTG}o33(huuUDF.J 1b5 + 8W\L9D"pRjɝCs dJ U$m +Vf<]7&HQ0fW~IeZKDj1sz_yC&Ss^h~TWg4 yR j&%5â7 Eu xUI#WYDɛaj_w̎7o]3Woɿ85~soߘ]*w,~bpoIW}WF-xڳheTԒ>r$&cqfbTZN]D6Qw{.YpK3#H*]Xj3ӛ-]¼S+<^ܔ +#ݕiP*ӆ (*t(ʈFJ?J`ߙt3~{ҥ?ef)BIt\ &G&%o5?p}e$kn +뻖2F +m͕yE$O'3р&TULvw?|2橆ˎ}/WO#0_e_ 1#ۂ|ld:ۚR0^eDuJ A))݉$DtxbTCK#3d +AFe|ocT_8F7sC,ix3#/p+0Õ Q\ǁE@ǁOr)qY~H%e|V}%v Yf_zI+oy }C'Lҳwy#S~#w>ᓇ:{G~2_^ +S4L2%X=ȟKb**#‚wU00@5e +)[n@2LYJtjYۯĉ-t͉5l_՝xlHJƦ͈F;ÃV _o4fwa+ω!#׆l;5Ђ~΁EJ!|݋5 ! yB^8XpN$I* + zr"db',=Qt54Êw !vm)j,pEG8q;RH*&II%sT#wI %<)NܦJi ?)0))#M$*OH8:hMAXFqETǩ= D ? 3D\#h8SWg)'n'C.ҭq}D5}~T ݜe:A;pkOz.xG + |}/񛯃Ž[1Gk]ߡ5ґڗa-"M𹽍 +XeUTApT;+xõaBƐ +ddBH]/!e\ +T(;z ;z [z'+. ]0>6"_ೡ(ڢW̘@M^U :4[DӹZ ڴf5.i + -ؓ\p k9Z>x~y < g9vLEwkИӠԅs#@ T;wa)GF0i$ʚr-d1At94|hY*k]֑fjhYdLmvQL-ZkMZMxn3gsxư82g39sg@ZmE@!:N<ţA͠qn+}`@ ?c!\]/Wwq"A.^/v1Q]XIS=l3+dcƷ/;%yr Dx.ޓ!E9s;nqw3nHc?u]ۙL6{7rm  +@kX uQuRtdj6܌Sc/tQ֧W?~NpاȐ=c|*F03 3ocxx6N-k#d}gƗs& bIiLu p: +xQ&JE[8%IXdZn%ʀbz^ǂ.!˰g x\ǃ +w4 v~'B!$Ӑﳓh;N'Ԝ~'ƎOs3~!l9߇ F & +L+t27GZqSq=#34W`hF%@&m?9ZsҰp K,Cc|JIP=>$L e4t'M&Z7 +'1B+9TdgD a| ;AjQU_4XTgy.p>>NGo{mőEi1}hZ&x/?"0;( jt!@Z,''h)H`q_n% +-R +Q%#de \!}<Wֿ[E(ヤ'͑%M Yd)`m/$.LA,y'q(.%,Pb٨`8 &=F%`2)f3M9gR]s IY7+$2( ˔sh(I$b),zssm*ȐHmLgtoӏ uMc!"((Z +Hss@@($#'if >٘ w+$mlFJJrm X؋V:IEE?")*/7 {b|EntaT5L,qBz!2SXs +O!;KqE[^p2?seGrIH(A7#qA5SF*/Ǻ=O]-Ͽ_A~ks`_ YOfٺJ]Z⁓ɞ9#+Q?`!Y3%CcU9@* a;c ΈΈoJB5%t8y8TBPPoO@K>29k)&N5ҩII ', Htflfم"7 *|P}u4,i_%W>;BAhTbp&XT +g&MYE²RF$ dɓe'D尠8f_:`#Z,htHEau{3GvVtynxYxsr:zWXn ,t˥tE4C0IcK'mX9 MԄڤYHDS=/ IGXby#A' |_㾓yvصtC7HגE?0L$!uc)h#VCL$Xv!b "eU b Ng%%e0l|_+}~w9}*D[NЖpƷ ~WVΘ2xgg|7y=L}i _q\J74]~ٹe}ǑUQ-* h {K!q8֯r.Cb%d* L;} $+Fxz?%2Ċt+?72r[+Dž< GH:B*u%$!8S9Kj*tErX~FrBX|Fr|D[Y\^ԯ2.M'Fĵ[foSf(SU EQUA"Q]ZOH$c R6:LF}4Nlx#[̰dBSe6DC14@2Qql44,6t3>j)1`@/ؕQEcn3Yl*—,qHДi[LQU +NM3 +Ǖox,7H820 ?(JE$jWOFJ`c W;jBF=hiҶ67Ň +ɾ(aC>کH"sZR.&*H36yrѮ{=~'[jusW]cKt?^;wږޚձrW>Ng~ƄjXx_knfδ%c/K>y:jp/s wΩ2gs Qe@(R6gLb/lYU{n`u>?smqy+Q蹳8J1p8w c])(#p_4G x춡xW<`WcR,fzX#3FȜ%\?~ +]tN q", xRЉa!]%Њa.1_-uhwF =YL|ִ؎T/e;[2d&IX\MMt$T "Z*USiWpyֺHR5RiK[ĕQH&; 37˽;dC\)%t9fWd('o&H[\K3ٶZ^(4XlsKK_c ovw##fgw\pPf\4`]刣125*%i>/bzyHE9i>弞䤏yݜ(WvCf)S$r~|erQ2TkP#Ufuڭ..aUɪU-$*;wvB!mY"E‹"4I>ʔ(-2Z]}|m{E!G itirr9zravӷ+ݏPba L|1^O$itGX O +!$FV=qb#p@> {'G䐜 +``+ c3c]=OV_6@:tg _+S=eP̨wft|P?G:i8`u55"NkBvj"US3C3QZ΍'e4HDD!ƵӸiѥRuet-V.jpQ·pkp;]̆h_%r Xdl~$M7 5ȆqWwsTwid#[|!OX- I^бחX V`Qd2,.]zN#-Or;Cҧsc3خf~gO++̜BrEܽP8T&qi,3b +jOFdi6ECaR+Dks@"_þ]еlP4굡qB>qx6%.Qg.CJe,t m ׆ odcwBϳ/bS|S#~0͐j8=F1"XJv911IDR9z ЈWDO* yaPݫCCtpLh>Nt5E9%0^)ިX$Z B4ʗ!UXN {@|v,Ij߀'/'yU) {olf?pt, mqX霄?*f]_ód} 3欬DdY^bP#G,pxUN9N8,%<}7w$U:ˑ74^;MQ,Ŝ5E|Q AR^Dwj` 8'!2G\PƞjBA)DDQL0{H:0">Nja5 k-FMRxwɫ h,p@*6}ЋO:SqW~@rn#1Z ?pj54m)ΒYT$/Vvt5T88uY,̊\[QV//qE,KX^I!@?D(RiE6Q~fG%`v*HITB#y-=ƍtw9a0;v@CnzÚE;]]ՎU\#NWM*÷=0'ٷB pGHrhYMa3zptYZNa2Ȕ ,S@Ja]_\QۜII=RB y{?`Iss*Dh}7K˅}}#J X+f ]),H##<)x1_}) NKjLB|}>_J;JP u#uP*650 +B22KT9W''(d;F;F*);Xm>3h }h#lϯP3* u({ s3C3?d)T=5i41%vmbtRjJ]ZW +myc; ?8 -Z78'M<^3tľ?F߮P%-AB#H`5H;/45M¥:ueԆlε-U W5 fSG߬f}O.eWQW=.ݏ}v#N0>@oiM?wRhSωInyjzܒf̋樞/^W V=_#_C9ktƐ'#ݠ +9pGr!lpq[kvR"8j7\i?/֎oʚqvn&xuO:짨ͮubsY~OgN#>Z)󖹟3P(oǡB\(3+sfݓܞ3?\]Oѿ<{Ν/?!s$}Çh_G%_0|rh~ b>SgdCiEYQA$Zk-{`k-Tfj!ERQ&}Z4{axLHR^άQWkGNyԍhFиʸ` ݀S;&iR[ÔDBc:P9@E#oSn FBg!G/EQgxW Mtp=s@fj%ANOG}U;b4O@Sdxe%ToSm{EW 4kmƁp"5GH8 NjoXaɌ$l{ bL"yME6bc{g|5e&n\|ܲntk@򓈾i냩~}[Xsug0XeZ6M&D&ϥϖϊ,L_F/IDӃ׸o'$>XX&SH3:;Il0iccS lz6#rz\];&2bR*EaS}Ty,B[HC-cU5QrE#o-dZmm]%KŵV/ "bg-,, %*Nt-z?;lX׆2xjb('ohIg}»°'0B%,a JwiFBp&$A#mv #P*F8`{q+Z#3H&Edŵ`5ՄQ&dP!H5y_fk7wKsPkc׭p͈cTZ?6{<Jl+XbnޒQQ1+eu}k~9HiV MCSSCsS BKg/ +](_=JT mϏr"K6M6j8YtVv|mG!)T5 Vg1۶iHKfH6m#ϻHؙA~@k-pfNprmj)P$c eJ +F- #DFڮ4 +ǰ:/w4Ϫcp`%TP6`oAj?AX3FtL[eR83̆=&ɂ?]'`ܞ׈PTT 18s6BT1tڐWU9mͷ #1W~cwl E&B6x!lBw~z!.y!۝Zv6j^k 0up@HHJѝ06Z~춉mbcؖضp_"D|AaO/(=Lc5c171h0_4s3ǃ1vOZ)U>MB^Dl(DF"L -׸U$v ԅZ3Y9{8ޮG~2t!}j݆LS-#dX +9وd֗ l. /XHkD2[&>ϓz-6iPzW:, VKޡaIH8XxAws<+Bv;Ⱦa,bYga˪Ƃ29&;Mc *!c'*ɑU!cך`Yr.Vx S;HR U-~M} gv}A-=V~h_P}A|Il+lY.L!MZ"I Җыc ~@r2J2Oaԭ3o +`!@O+E +Gy!HP\{9)IXLѥ4EӨM9$]HQ?=wUoUW݉4rƍ˫'f&MhzGu?O]Ֆsbs=a`B^Jԃϖ6NȻ) _Kwg$Ν}A29̵2a(Ց4wvnGxX~4?F>OF~/<ʣVȋdS-b oq?Ⱦ?)FC1 KzI/$Q̻ ]/stiRJfw#Ñ8""y>cz8a$XQ=rF%OOY2Gڝla5U`+j%nah)ЮE,5UKbEE 4ei{LP^[?V\lR13G̈́V@\t@Nd@pǦr* 'hkf@d+ z0Xd+ kآ/g/YuhlOe%LQa I&LyL?f6|> ,~DŇlVXgiV|¦z.kWVV*`jx5!`+r^;@j 27=#$ӫ[q6Эј{1_c~ }t<2oL]RW+=tB'sm0Mf@:; +$:1ޒdQd7k-^O!CyjGzHr$Mabc%eu]5ow?8ߔWκl[r+zKC`'5mCkF%0їѸ7!H AHL~XE͜n͎M/Hg]Y+++bKעs*fL^v,l!#H)cof1KΖuʛ +PJ~IFƣasqS +Pn'!wicY^q*^t)RiP*=ƛ4_M"MɑnUDOx6IfO ] %!h[-..X恡ڮXneHamwc[!@Q1 6g;-Uߦ}nèu wQ%^zW~?iSi9[*DU +U1lnҙlZSm8bu7+NΰH-WKR+ĕr +{ej0jW+DTj؂YN`33'%St&&m|,+PB% +.&redʎ-o,UF]r=2}۲!UbZn[G +I*NS7w`fxq h6þ +/23'Ѩ΋rE1rF-n1gu>SbAbURg1Ȕ{/mk޽n=cG׭k^Z ~Ww9e+摗֚Y{XkL*~ZJ tc$z6-v&f'z+TrmTg%KRݕ*__?R? tZbz9b%bH2:IXUl-ԨF"hct J H#wpY1x0h|9q{l.Z՘OhpBBMjaE剰 }?upPVyMIz(Y^SDUenj_>硡'_u<\ZN'Ectw;y=kn(y(dQ ƞ.d/eײd(iaK(FD +J{E$Vg(LWxjw9±6~T|k`fב54\vP|a\d]kPWj *q,f&b`o}_pʩtA}g֔^325VB6^.os&@pQ[ȹ\rU@Ζluzt4-W^V}ttKM1d'Mo\>$ǗK%eD[!V+ +mv c빆"ei5ksr?[}>\H}jc~2W 5zC_B U/&QV[$D$:&&%x#I\x7f$įEC!o7 Þ#&@C$ K*VU N"d(K8x[ (NGb&1Ή,DVN\I?2܏ N#|5FG7r.y,oz1 RU2Bwlh[HF!,{W&9C""'c( Y#)$+q=U4x>8(Z3o-zH7E IlrßӍ)] Uv"dBl|aaCQHdP1S*20j}CQWVMEÂ8]-6KaM ]n=Iv  a'('c* +-|(!b!H``բoUV>ժ߲*$MӢis9gΜ9=ߦ[N{6'OKM&s<~pI~tA^AJ)|Mܳvl5Hl\j79A͈`ψIUI1ѵ4WyD6y6`Qbᷰ*31uCA6g־woƫv喉PǗ=wL\~C"iԏHd[? +@ؙo}mK'"Yԃ>BG#(űR,KL[m\rZKD:LtWJPٰ~[dC>+(A~Qa'rT*B5r4Bq +U\%۠ o wۥ_QytL8($ޓB/K@Rٍr!ǣ,bVgqIrIzjRqW +bcCׄ*W tiɹ|B=*ERPe l$qj:YFGdC%b1i6谎b ܝ7#S3kxB䲖O xEI,LwW曚'w0kzHVJ"h9蘒s`>3L/N'wTSJ%%R?.sb +k+ľ+hЛj^ =U{c +k?d + +`ߛ&~W|o9n Irډf9d,BS;- #^!j2F `^-rrZEk-4,)S '<9ɤ~r*ve<2rroHx7a (Q3iر̜^olzx ,ZUdB5dsP0@7Ra8<DŽb:2:CH'dmկQ?<%B<%d؇2Jq8<0xw_ }|fAJ70@C#۪zmɠfQޤZf"(kCWf31~6c&)mz` LbZvly+(;4_%)f:o1A'ɲh0eb!DaX/[/X|`3sl7̢EQeNn`,IM0V^T,FeJls6Brew h &H1?^fy=]ĤhP)1lz##F֩&O`XZ¶`V+-I&я@:H?ӎ +j_gK&a=g +~L}6EpPk'W|g.y!ii +k!S{}ꍩ]o\8,y?瓎VV{ַB_5_wj^ uQäzp!P`sb }`᳉aǹ&y16h2HL&2Fz=vSz'?{ + fkͽgM cԄO| iQ)6H3dtbUbFR=siSip'kbtP([ubDy%*F4!C2 66Y y<(tttBBBG~ղھڱŴݲӺӶ;W~zi'g8fHe)T!AYk +LQ*i]-lVN#i>r `mtAOtI!w# +Hށ' U֘ϲ`YhWb~cq`aC(B_KB8 Kp.zԋ Kj7K +b75ZpBϚvmT :L{-+DMq[i?I?={CEeFMfks!͛As%ubz\ΐsYmO,&pm]I'ռ"%ϋ[~x\;}%yD3Kjf~"fvElb CDPc/ƐDIPxu&LƓzibkE&}#!,Koų PqLu`xIj=Zx$cQs P:(UtGsrT4q1RtB" [W싩d"#at,ZHiI^:FHI\2P!AhϏy%NCr60";˱|Ӝ} +z!!YLzImNh0/l ep4ÏLK_lnm/p~k{z44K8FuBZǒSQʏ,#% 7FDOu!mdD +Hy) ~%u:,^b;(nQ1 N}& +0ALElza `b0)ggmQQ#FUՆx8)IK6J=L C!cT`V*!s5(d'EqU&:R1ݻ)J.YB(IVvфS.vA/.KO}13_z M 8gMK;Ldy/5ND p^F "p` 4zE0y#B +K>"o-woIG!%6?ds1 g!g>(,Egy$*ys?'Y4zaPA(gfE߭P߯ЦXdsuw",@:CCSMZJ*dȮLL =b4 EZ]mYd4 wt^؊2>Ce -% iz{dJ(]VŴP?, D +uk2UVAOʆ\yy;p~ae:y)k id&Jʟ[EՖUBH1uaBgc'4+9 WA-ߓö?$#O8-aKn +K K)5hP_^ 41U`PU.L~,#C4NFb*\*eF/X Y?XMݨFYtN6ʵ+|۪ݛj>{v=T8}ʊUt T jhBY9DfE;!#AD{P(6HXk}&yGanN==%:?GDݣNUGECRB(PAT4 D:Q+zZl&O9m!.8{^Dϩ3^RhWUw1+.EcV.꼡V֑}iVsYy@AA0EΟ*:s@D3S)eAD۫ok\O(`*-{[rJ{ ?:|{^g(ZCSbC(oxoJ]] stOz4WLEhcrD}#Q$O^Hsz%%$A%%mj6y@4R: =8)PdH 9% +&~&>EDPDEf̣(lԇsDMh,Q"FՏ qi[I5/Y:jo:i}MlL,r;H_}Օ#V-5n{+۪Dh5ᱍZDBH¼$yD3DV[ Ymt(spp dNH\LB\}R|Rv&vT́dN{8gNO7bRP҂Oߣگȉ_кvu0(jذҜ׵'m8<4VlDG.BDB|u-]r2Z +(vlJވ" EdA^qvĶ^_o݉W^5p++Zܳgw﹛^{ۛ7ӛ6}W3v믞a$32]roH:7A#nA0 Dގ-g{e˹Q +6'B=68:V;;v:`, 0ZQMZCIh'"cot ҨzdOG O @hYVɕ`*hЂWfe=yHa,oʦc>4uQk +3.w*,j1`E<.AhSA,5[2<ö";e 5aa5@Z0 +SPmm&fFeD-_ Zn&-PINT@V| E-T!CPm"dm>ٜ$V=,n:/NF(>!Skjdsh%BYtzkɭrdG[7I۽*x  ci\5+TM.jnkNX~ϛb7.{瞻Lfeמ򆑃 ˼cc`] +KgA&%(o3yM$ܼŌIL7aiD" z;FLhSEZЮ()cT1i?Ou]Ŭd[f4`~+[تK&qw^i07"KwjWyw3>H}MmНvJ輰EbgJGdoЖ+= mЦ +)CMcLxy$X jX}>p}f'z+|b2d +JNjHy-O{ͧW~xωĺA}n/zu۫P}۾}V>R$q^v<K2e)bak#Fi׍\ /<('el9*swш)1ePmE.Mv\ޏQQLz\#\.8Q*@OĖ+)xQρY0ҡ [[mk*^mn­6 2[pXo1d Ļ|pvϢR,vC$GRϰx'L^[CҿD%g^vol1oS޶'8ϴ<.O9ڶ̼y}ئMOh#қբ<>qbI{JdSRg(0#E^NբO٥7'y +‰o=xkCY' R{3r5ђXuD@>O߳Y:7HEw)#9FTTIdT +;wc';.&t}b@;S-1^ML^͙hWwxCf+#kYvĆ0$[̛j7(My_ SNڧ_w`dwnTzpi3~ebVÐสаSyQYP]wSKVuvO5v8x J7-FB= }(ny rqSy@@jlpM Eh1:>|0}@tGU?ÙNdR3e,#ٛS8O'TSD[3@ZMD)AIX dX_Kh̿S.?/Y䂇][n{ļGVwV[kz? UaP;t3 uѐX`U[DʃO'qO1Mə12"v*l%) ) @d9:yT̜zU=vx/tc]krcS܈ϐܔ؈-EdCu6ԤA΃G.J !A9 g" s]깮Bw^_駺g.?3iMc- ETcYRod$ +. E; )$ڤcNɈt0l'@FyICP\%w[-_E/р$&0JۺU@(-ĥǀ|)nuƯ gֻ\Qݹ)u(fA& uy}Lρr`T6fBS&g4`a\nT`!iLy؊te2^NOO.-j_EtCDDh|/.>ź~tokwJIL(@6qQW_I;.`oYvvm5[4->ve懎EE [|}i{ܼIT~c׹WI m3cb8P-} xU{ͽi&]6mߴIoIӴzۥIYK/kǺ-m&]IR lcc@0NT.>|qœ"CD'|7%ϷXSd1>^X;׷S#=̟>53ukG7OƫJڴ,my0I =1=- t?8wԩS1[4<#}bOöJވ5rr#5$4)AB#L 6s|K(11l,gv͟`"Ոywbt›Dfѻlه.߰lY2hKCT?iJ*R0U3 Uc൙Ӫ++Ku<S0MĜJ+Yr`O:jX[^KVWu§'h4Hh(+K7VRZ +WiyjĘH6D7΂n,x'UYBI vf! +jSYT(s|soPWجEmJDK蜒5bVPP9:R~.//ЛRN3e_-0) 4 +b:9%/ooyiz|2J'P%dL-l;ƪ~:mέZ\4RJX4EoWmlWBCF$h 2h톌 pp𐁩4 ʠ6p`(T2d@gT\)O 7-nfHRTߚZvO'9 G+ܳ_m>vz}C=5q>mթigƣWp5h2!4VPZĨFATJarTZ+u"#E܁N†Am쭘;Sjr6~>>[?pRmI!`mRem +T@B :(H))Ax)1dHdM(F:YY  --E3)J.ɌrF+g sxC8-bWNlZr~+5SBeT {{&$o&N>M99NzU,Osl"Ԗ.Y1 0KĂ@4̡9_U -whѼ kCFѲL:{Pqީ@ +4@_"4CEhV&Hәbe1Zj2XTX[H|1Ći4Q\(a73 5%QIqb'ٓC#y(s8ƸɵkA0B `@HK%Z)lF dJ:.iEӴ_ڶ"4 +7Q' L_ԫu?v౅G؇Io`f6q` +ECSm֡C+PCt35&)Z jj T:b`Soy_.#뤸>vo?z[/ѵ?<0xD}wKFͿ:<Ϯ L\S?:auS,V|eUihҨ!Ҥ椨T*JL +RX,>8 /TgqO4֙3.gga_ӹ7`J#">p:7mT! :TVgfӵYY S굨A j# SϪ) +G6YEI mLQQՐ24<:UȧWѣ*ԩB *T +ʤH!=B!䏹] ՏK꣉HFAkt߫_UTBIKSq`mZSܱ\ +׿UlrEȵK+<x"vWör +F@ܢghr:Fygծ4I$2Τ ,DdïTaW.Dx +2gO7T}ֹOv,lEku(i7 l13%ϳlkZC}YfU+CeFtȀqáG,4FjttCE +32S#Lqq\N'5P\%]ܼHQJFYSrչtnjpZˌۼ0y9vTTF3J $BWQv蚺mmźm=1 {<}ۼPĭ[LkCw{e3JU%3;aHU桔ykifu-أ_-١dd55q@x6[xm +=خӱǘW0/0n)|jf$ۗMoʘ̠o#زЬ]Ǣ,7 +<֫ Jb1x=2]b.4MίOHp\L !@"r.`-X \ !؁(b4k C+UR"pHK>l8hBa!ZR `W\,#|$jع+-=Vغji\*ZjagIXQk [<܍vXԩuJQU|JʔC)țSPL&*DٙHn!|̒)22cV6+Su =:LVB! eeمHCXT"]6KG:m>N2N4jiTB#z2{.`6S=MgSTV4JK`` C>fI\u{&E3=y0[6.pхA4zCF&ԗcSRci3ŀ*U?LY&GX>exWקO@8T_AMdٔniS4X$J4JIW42ehZFeLɄQLR(a)HsTB!jRH(Elnri?8{V QYDXB' U*3uz,Occ/6O!-CbèbVMй:K /Lo*֖'6X9Rx\$&8;S^ŮU* pXwLZӔX>z>U^^Ө6Z², 0QBFWjԲ[{%6sUUO` xx9V2ӯFΑSiyzz8Ȕb| kK{/ZOXYQ^p?ECOS} +VH4:c柣^ ~!?RT4cG(eIkB2rbꕻ{ެf.'zm$Q֡ (W# GZ($S3 a_Oo6 mFV2aaƵya?%G +H+̉@ۍdz4*T%puوG&p-W64mS4d(iN&rF~Q,?/=FZ5LZ&0VhMK@+nd5:x]pt.8NE !w +p&޿ĤRA%ɵIܾrk#M&쯦jӅWٻ *Qwlu:9 lC2Zju^_f[ R(}㬑L}yh ϝc5Ƽc5 +:jo',ȢezG.G:d"]$䷯.NT~.<P(|#5P!Hᛋ;h Ttշȴ[Kr}]*{^)ŨYUW=kn/˗;jj;eYoޮwZ7;mt]j~E[m,/纎TU7nX欚USEu-֜b7I7 [*gH+ h*-h~6 %,ڈe o_zCg`ob].˕w(|M2Iju@{/e|aLy+e dKO|"(^-07,2Ub(}t3/X,Yo<[_y]5'Ɪɵu5z[m{Cқoh$-t"=צAUi9-$rZNiGrZNi9-崜rZNi95ii8}9S崜Sߧ0yys2xoKݖFWʶ޼mw[Om}~϶r5Uۇvƫǧ۝u7/OvN|KyCyO{jbԯwRJ+eaX+SYёwRi!(B$ׅ"*ES}%TeZK˨VkRBgtA ̕!yպ$/&H^JI^o y|!y٤></tDŽ+S$/O_q3I>%>Mɫ1n&+k nZOڤF>">#237O~R@,#y?ɗ<4 i\)I)qZ8RT-(/n*H/JS!R 0 }ZG9nG)yw§TBz9%0o|.>gpGC~!h '[j%J!.v}7@ up$h|:G5Ay Zppb)<@)GfqB/.M9&5M8A}\ sGoאCMÜn r>5Q##;SEp&3bw&.gÒYM?d*>BA0Rj*b}^ c\Nu_E/ՃE)M$@S9}zHj07#D6}D¤Gl>i<:\BJ oo#8Ox k7 8y~n/$L<@ Pv!B46xIL OKab=Dop}(hoAᓧc<6.8Qk,B[OrF [W b~BeKL$"yz-xvLgUC<2c["UaMBx[sE^TEoIp,߲~]+Mhrk~aXZZ\_r"I/o^ <\D̈́氰{?/z<8?^u%_>Y$8"5'?ܤfxbÑU/LI-ױ%+:H4GnKixȸx{7E-Gc48^֢,DqY&eO`K(WX1GXfL% +G8z.\M^y*W:ȉ9SG3$ Ϲȗ)1vD?M(x K ǹ||Uf?lG>e/>D"~M^^ oT+iڠ VK'q@[2mb/Im"P$k =P!>H:c[a2G+@'=v7vwhA(|;|=0-85tKruC ;V;vx<$l0af3`EJv_?Nh!4A;OK+lha -XF.HT :6k>oBBi?^3Lm)-RKPynkOI>y\IЖni_g> zIF3) YV K'Y7Ml%屏k'?Go&|XɸĵI_u; ƫ?1AUY+kkC+ ,眾Io49=OxmX3<<5rox ["Uk.uP! pipd80]~NaR. {k": +{ـ梘"5\b`"E.g'>;~39wnx8Q+#xZtH@"k |Iwb9gpz|ޠ1s}h7sq.BcJEfC!n$8MY39h{\Qs"!ಙs\(qoW yӾhny`}837yP89+0֌'@Yfs0/0ucŊc _)/ᣰED0߰'`g4Y?r/型gs6Uu{0-(O`^?^ߘp(X&~j37@BB(F +O2 y>% +MPR/QF ^~,=^l +M5?XaR[Ƭ\bJeNh? ,ɰ 86saLОq+< 4c@0 E0S\ě쯧#D`9X?i7z8S!.ɋ#^^\nfA0f +f F)4sAo{CB@PK @bJAK + < .]UaJhN$鏠l8xw.e3+آ}xwwzVd>B"4E.j̳r]I((v`urmV9{--\fncwpN{{FNGOkssNh:GOs`kq=8@/'@9Z1VgsM.ks `mٝ.t-YZ[{,0+qCP;]]d* `$58\GoWK+T6fV~* 6s-n{{+ PݦVR󀣷3t$nr9я0q=<jnD ..jXxprg 5AGًQH ;)(M$n[̷%W>Ogggܗܗܗ/KY>{_>{_>{';{O/Nv%;\ϒ=,Ųyl%ɶz8W^tQ'/|>Yk/_7,2wwGrwc!{R}H„2$Vȱo,EfkA(R(}}?1u/u{=3 hĤ0IȤ33HY*;022# @ y$(aFsx HfPZBRB^Z^XJFVJV +&H<00TYz.`Hf +p@IJkܳ:-ۭY74!W|疑88*~A ׆`( #Vvg ]@{7 @GvYl @E3D?]]DeQ'?UÔD6%"+yg_>/O3dD; ݬ3qڿ_18)ft)R؂%7./8ԇG &_ˈhXI^dEVיG1)xr>S\U+$qpKpϞp$gAԳF< +=?6?$${x@ݢ(#B 9oY@F1Oz;)MHW7E`x޹9f.:, \px-$ke7B6.r<&lDLt3ZnL];YyզŎJ:6yHÙlDI+ $4t$ol+&a"MSIn--G{H{_{>FǞɢIߘd@׼xv-9EAFIʹh/:Viϲ"=?{N=پ}Q~NހN&”u^3L#>':M_ կ-I!ϴXӵ6!+j__)5ٰ΁sa)kPGG&Δ|.=^`C; n/O-5\zJI3ȑW@QsaѰ>MIg$m<NGpھrY%Jᆋ LX#)& 9Ⓓ$Y.ɴ?)ZR4)D) +..kuDYMGVoRwz|Kw_ݍ(~O$=C5 qLV tlfS7{H`gǐaHɷ%[kGPm_uV%pCe^OQC*p6_-d}eC8Mr}Y$姈;C7h I%\XV_o7o1zmқP=@ߢdKOԗ C2hb<Zib:&x;~gD2ڝє7CVٛtO.gvԶמ=>AW`^ΒK@QKCni8w~`$kWYP쏼1"U'HMqepm9ОwDZR ?ᠩCZ-qϰYמ73Zu(W<uC~ сYЧ}YIIi+,bg`ldyǷrwG/'v5NSSa )Q II QY9숃gvw5"L$Kȃ>ȼ_ce-t߃?:# 33OGY6y7Ae)C;|!BڈMx[zaN.+NKŢ4n69,m f?XLq6mDלH!J %H2Ƞ%1 3|ny uJŕ5J;b֧,6oRң1Pr di%x&i+t$ @QZbZ2dӴz/NFfq[v%GX?7XoWY?,"X>׵~r@*oFzґ$-;",{WH~j-^:"v+0B@([^ad' G$]܏^(?P{qa ?4~F(#fw C2-#q8O0{zQqhVKCԩ΂ĤW(훙\jT0:hc[(Jv適MWzaXJ sT4g{c +у˂#L%?i%!V 6^*CO]U++漹NJ灾Jk+=;]QtGtcUkc3߉RT +B¸SD,3Y!NDgb"@ .& +mORFZz|I)BoBlN*} 7V70tw)pak/4<Cq>1d"Grq3D]@:mxK +9b7/s Kض>[ ۣ-4\5iaG'';Q g6C*PG9x"u.V7?[lIBr9xɩ4\gXRs὏B>}kedғ~Sm +3 uXg'O1@ xvj\wzzGSބiop#w JXO;i<3KG7WYgCK~OYzfjN&lS_{`ٺhKӪ<`ͲerE:L3Jה_Q6JcykDr,K籎KFn'x:G[*ۀ=|Ͳ(J;~s婅D-W7 ڔϲj{ +qr']a5805/ӽm +ܫw)շ+JCycˋ5Ab>9$$L +ixޖ|._<ɇNbxP}\ o&5&;vy+ᛍm"ϕmly+j\p_2/:D} mpP=:~) 0 c"!$}{KTޅ%b/ؐڳ?DcJ~]FHr;8l!H@@@rrP2՝}ۥʩaR=mXטBS)2B3i"mOa0, l6p|voF "ǫ{c~{l(iӭ'yU/64!|_w7]fx85!7>?>-9*YV3D>VeX.7sɿW_#qT Qđws{uo( f%QPC᫉Y\T-ۧ4?2hX=H48yo7kc-c\WL +m˼F)`|T`/,[`q*뙠Z G2G~8QƒUQ03GFf[&#!L1%#KTF Vч]@ +仡9jX<^Tybse?c +Z+oЄZCڭNbBB^Jɍ"B=7نJbM`P!~on9%榄t9x*&g9zl -cEYi6Fu& %?7C5"ذ"{m4#v|%&> +stream +x| xTy߻͝Ζ3$a$$$! r! KH1 DEd,.%kUHuN +njVu-/.U#պCfޙ{ϗsϽy{yϹ 0cÖss-Y]eyׯP\ˇ`8|- +\zn¹ ΤSLEK,>[wtۅs31Ukӏ ᬟQdTX/+45_$v%oH.ͳtUwe`````````````O=w2_r³@4£·P/ςKhSaLzkrzT% f Hy=i)InWaYd4e$ +sc!/vU_6khދ1U\L5c[e9*7b&S~kZ&l|xʽ"ުP%-U͕6_P mzV X +ۈk4*U5΄TUD%#!eT]22ky! Y +ThӄĊM]ʖx۲Ol+09h\_0wN}qʐkS|nzh2R^e͖XЀ{iFusK5Nqѝ0RbZb=?dX5$`F_{R= IUޖ~_<02-6v$ċGrkmfKb4]XY?4tVN(O@1y{z?.e Ke~ !4+aiHhnQF~vHPޖ=s=b*~z( ee1*p#Z{xN0-TX `J=0"y]%%6Q60Qyİql(l Д6f**f_(5|1 . aS=yPK 0ߡ8Y.:kX>xqLg0dLa};˴njVNX7JyD+`x{;6ގvְX;=W^[0TLd\6N CFz@I12]<ݘ՞'nD=gsdV{OXG=y”vϷn7c<=:D=aOGYazPxnLC=<{jCP xScV-,RfT`eVs G5z3̳3ԣMnH+zdY<3MI.n}Gj/ZZH#"uԚ'JA5CjM:NљuF^Ӊ:^Gus  +g9r*3e#: +!djh&tb>󆾞=/?l5P3c;T Ki`MH27DyQ&dt&xk2+7 5yp/);q;$( ӱʚN Y3>t !*Ԇ9ar<ĊN.<\5sٕ 55 aV u(gxP{]I ϯ ދC /: i^xm]6Y]NWY2 AGCAUh(B5(9q(C8r1ypLl UKLo<<2AY9ZwS0G RFrEcH. s_ٯa3 !3dCGV:׮]5qX/BM(kzM6IB箲 pDs(vNG8"rl2C$'kh9#V#/B$ji$~#VFF?cc{G)q6P 0'chvr` t%4pad4.2 DoEo v0@"T`<=1&WHr>7OG naM4"t[ 0` ,MBE +qp{焙ѻ8 _Ĉt)bn\'v$ysD|݋+ 0`xބ[2,A:[ hB0Ҝ +h&B-̄fA mt=L;x 0߈z"VH2`2L'KnrJ^Ko8 Upr DkKǣFz sRY<~-\p^Q*< +|C$$edl@{tFEz)2RX dt:ҍK YBK<:j_,F%AR',A47[D߽y&` j4 +{+r `,d?: #rm}\PħDC /GP}YLQ/D]2A@ P^hdj\Rjȥ"::1WtH@i0Gůf"S/\(9-n9Kr@N8Ttȳ޲:˲2(Ǻray>ϚzYp˝8 +p Vr fW gV2!<<_CE*s<ޯJojJJre"'&Glsqn[ineJZm4,45%-._QvkmRHvعm/(qr'V  g!"IͣkS@0/\iRT+Еx!@ 9sO$ΑV5 J(ξQ]tCy ޲ҭ^J6WVРpLЪu"v\ GxcK×rWϴ&LqB6}[ @"~ƥnng/Ie@ 9ve`)h*B'J-uL9)L 1)i@P >9GףGvDO?ɑ9v}]y){ilv, x'D2pxyO b|!)o.JU|y>BK_,AJH5&;վ0AAi"ISH7ꗂB"lՄcX.iBAEQEbr1a6"]fl80kC_;oGݻiRѸf_N}hF&:aQAPx)Uy-[w zƁe40FbC[aEwSĴ&.q0ҧ*M US:?{`$ŸEʶ~Jze0k2Qm&cbp$;)#ՊdPԀI㨃'^j M1s9lϲQ*\V]$WOH8Y 231 H}3- ?!ASA<*C]12{!vE>}K=8=n?wE&g/z: R'N'pz<Ǜ`IJ <.UO P50AAEY6dAi7ɔf@#o\2AU>DPfec43vf{˄_2}:%J +RoqHoy&3BW.:j[˸ 2 +w"].PȎ̬BtRpRC^9nnPmrkMT澟]pb묽h,5,oԢ%D^'VF?' NثWHEL4[V[& 4a0I3v5Q4R1*Lٜe+h je:1ː0*!A_T`jo"NpES:0z{ 13pA U6q'w"M3S{OyY4VĆ ڒdN8@ϋ/zqOAK&* +`2q s@'bdZ}U$ŀ6)f?@U(+C9ӄM6X&:,(J2ʡMdU6Z e/f\8jF$mBeu;4X]10 I 3O'3;яt^Bv!ރ~A?24<5OqXdQBz,i{ڊ1 E?Yvu;DE OF0~Ո{Mk]I+"e4NV&ٶ˹R2yqim}EF5I7s7Z[la;+Tqf&/Ix +CJSLp9 t u"l5+ W|,zLs7"8C4uEŤ09rfY\)nEq)Lk ?+?(Fx~<6.-||)14.صkUk]ЏJ&tMhbcF[|k?;4vA:Q@7fIp vYd]mX60gz 6|SBrۇ:e XKt;6Ѯɐ=Y^1ObE&;>wTN + +?qyV[y?#1CfIBLS,Ϡ`ٙC6KcG[q!sJVtBu~E,nĥ"Qt|YzmKSbu\`az vF?.C=+7;!ud-bƊ|"HW"³B2rr0p!+{0<4JIjj!9 3\&~Y^[Zl+m%r0zjԬT +)y)47)\JQni_~ i'J͘Ș1^,4sxLvZTTqY +Emo.{;|esX_z;;^A78f윽dBMu{.,yV0ڻW45o ͖Q3 +.9$uVu`Ϛ+d܏E9`ZLR#"G,I@} P^=*̘j1%0 ľ&i>/.A?δG|{bxu?`{J"VJRIg;_ +5(ދOСKBҨm9Ozt6TӺ.~/٬co|IJˤ,{݉=$*ׂ:$8luG>x@yHjx;BO;b3V[w5'Q!q),M͉9x=7!V0@Vub%YedV7FmE:nkSmUk^Rb6Ft6R4crZZlRδ ++-YvydE4Kܬ&U&;>ň/0y|,r$Ӄ,Uʗhzz{𓔨&{bԖJ~zf JM(qz}'$GOUirsEg!+8U@=d{mMӜ>BO$J6'lC'&2LG @ ?PӾ_M:,S͍@gb}ԞϤ Jg.W-):yh Ѡ7.1EN&kQ$Ti':8NEfA$(s4.f԰0y ^G7g"/{܌ehYCi1 +Udytї;RbԱxcya鳟szq{+bȌjQ$p*G0@DB*p lK&%MDkULP5|5a;!;wb9G[axƄu{k=-َP?0r靳uğuydəPVW09cVX)s*ײ"Zsj'͟eA4oGt-(=tde5Pd4[xՉ/E2E7KuHiBeѨ&"^b4hi1}sq)BPP i9~h +0{6 Fg?E-Esj a'z߮}g /J#&lX}˗;t'oGΒ?2cK?lzdȮO-yYw\fDF** wkufԞtfBLxofg&(+16lsPu + +,ʌXd;yM4GY +WdE^%_I #.M9hC2vIy`)QHh@YTNc.,J(o/~oڟ؝<`;>ÊcӽOM;+( pVhr.U `lg2h:āX'bD;Hex}ʬVVgdG  & n@AA%h2{Y_~* _*‰6c(j 1!$=A+U/r~q9`ۂ9?vUᄊjPe +b8t*T)beuՊ3B C[*`mzTe!8.0ߐ<^UЂ/%ޛ#\%:7;unq~d:1M'ĀΏķP-i8)UHj=65ίZI$ڵ`?v9F.it}F %dנCfaYtu]mq-di,ܸh|6s[?ضg 3_YwWϳnų=۴.y❣W%#7OwVT7Nۈ{|r_P7`z(H`5~X5yDAxhGAW`4|C횅G9F?h.gj9|<;bwS5H*q2ibRbEXdbT<,ϊEq,%"L+-B+nVT4tna?f Cf4شB *,pl^5>TƇW]CY?U `c o쨾w/UziN_S̿4Pmߠ Bp cpCD85˓_}_XR$ֆqTm6d$̘f±T3 +lHXhR4*f$"$bH"R\ 0HQ^"R( 0 5>L =Ow:[sǵaBe:nȬp4٫+6jzLk4aB +'! 'L>o[YW}4qXl]g ztxQqqn6>2`"qKŭA<æ bV@n`Yn7 `FȀbl&ꅕp9:Z&+>,f\m$,1A^ d*<]X nlġsűVnKlkz I3}7LpMA{d%AiڶĻFE{pi?/nCL +m71oPl{v[jurzn(nym>rQ0w;]05bMr iCgGlAč.-d.uCGq:dW+0pCˍV{0lo؈v Ool7[;88{,o4fXm,#s JC2GO1+La!EETاԮyJ>GOm]UUzBvnɤy2b2nVe֢*Ȯ ąfoiUKxQZn0LO񪊝 }c = 6pԋVU'vރJXy ?, .&hnQ_ .س)).ja.\716Ճ8՟v5'xCw1Nmܓ.3l*|}?DR%7E=eOzzՔ њbCm1T_`w +tX$[+?=W-O2z~k +.pzì302E<nLF&<YsL< 3vsRe5䈈[|zDqf3PP w29;Ε4M-x%>Mi=˾7yzї =㖡^?7?4dMkSV0j{'gUv˚9K=?jˍ3oDhpM'zj*/eVͪ)Ϟ=[=<ʽ2юxy!wʏ[ f7vp)Anٌ 3c8)d'Y]jh&Yͫ?'YYH!"Gdn+f+}ٷd]UKP +8++i^дM¿vW4=9{?vgncʂ&t766N\^u!B-7NI3r {ŭ~e槼!_vujQ:f]np3LM#gP  V nhp.,p lqP'ZXqOqutn©6J91;;r\Ts. 6]ZG[Et_VtRM5lXHg2&]Dлc{n9mI{9N~›QD&gΈ֍!>_]2|g#MSM;OiL۷%/ 0Ę c3^ E 2(r孿J|x7jejRɿ$n)4|MMzV+-G_-;*ֳ#l(yzgmxd}rlR׾bnz͵%kݒ +dxlX&ђp:U;3IC)^J<,v[:[%niUL5I3dRәNgz #Y&ݸ` hO7>epwkoZI~Hw%ݓը|G2KO]2i) '7$U{\mYyNXOQI퀁]: XRX̆RE+dߺ_l#W?'+1iFs㦸SDR b@vl`dE V-f$(җ$7H^R`H-">CEy\Ed@#洀vFa{ uJYәCM@(k*s#C^=>eſ}=9{E/)n%laLW( b0J+ON2޸ofKh@ھ +>WZs s\P%A}mT{.7X)Q5ƪ1`*_䐡&_Zc*]7؞\W=O< _/ܯa-M3V~Gࠈ/TVI୊]2ac%Dn@kǨ 1h1[]>]ܦeLl.&u?ڍ@5 #F _ܩ)h}ga\2o0 m\= T*n7K"lQ$`ek%fr(R`ɂW }>%)":+J,fq6I0| `T6l+KsL}m*͊S8D17P}ు#/si<-2}i: +4A;o' ҆8܎pn9L}:u.yf ?8|w#;jTV +jĹmz, (4I?aX pX|۫[,$5EFځK3D/=/M_fH(z5؛!&^V{f^u]SoԭZ] o8atE@5P/.cZ+JUEqeO>јW߽D!Û_YY͚l=(Wrk?>O"*Wyz8GGrAzȥOO3_[߿u{'bey(U]_?tMfkGK+˵{t_s6*X"᠉~ˣqp8g%p@;j f|,HFq?"$`U,=Ǻ̛̚  'XM?,uVS=_s }KYAi:uV32e>^㋗N[' xM.^;x]^kq *Hhl.Luӆ:]S q +xTmyE"y-.bVM*^\_XPCEh=>f^N_t&}jYⴡZ?k P=D˩p/L銭.oC?/~pdzնJEQ=(Vn7il߰bSOT}ymѬUVgL)m L\3=;vͮ8.,+l nS2S90_3b3>kq̐ %dG>Ý^6dŵf\+?go'qA>GȭF +2sZR_2[̉Zl +e^^i*֛T%Ntp|C"o኷gn0w&YL~Iu!-B viv-vm2Η.0JY]FPF)K"MmUUuR%U5S`(vUYŒ(  0b̯1Y ,ӊ%mU,BWir21e{圫9^F̡]ؐ+GTy-GOěf9M9dggfeDef7v]eB_A0h0:`Y7'g_X`z %y\h8wvLhVdV7F_dgy'p\)7ns&8N~1 a絎h5GΌ5B8K"v4bHDdD"7"uW|~v_;`ЗAHi,a~_'h?3w1~х{D6&nٔЩ?Ŷ9kG3sY[gmYµjj 2(FlGCATA crqsvd7e.݆Y:3^&22*0!IbK>$9p҉mBKAM@'Rf!m62( +"։ATDQd*3 + zAEx>'iZwm׼' 2*Y epx/uh\?'=ݟ>O}6 (.$^i y:ٰ MKY_jG*H2yTÎt)%3#qŠlmk4hǥyQ5BBp2kF5LF`49Kt,[%$t: @Š0 +JtV)da* +4N 08n#-Zjgz.CsT˾gg\C<3}c}NҐ'v@NMM$}CBbL$!Z +AR$R,e*k7LWc~)jO5x,<}}M=z)vC(|Aqjo$J/$kED"/9^dǻ5C q1{u}OL +sM=XQ R%'@XFYѨ!M F Ah +z1P\``\l˱qظ8*&Er~$ LPF{9)G.s ?ql5n|SîN_:,/!fQX +Ua]m<#gK,x*o޶>hUWN/Ί\sȶaK׈]玦296dJ$sp|țx^,G?HU4È2w ̇qh&#-+ֽvҁYtvvOz2Tfn( LÁ f`ʉPBdL$DC<P(rG +L7(D.d@LpX&) ‡F2 XٞCuKJ{o +g ="j_35=kT`‚܉j +vH56$4S(eTT K˕%UF7"o ֋#^9ނ@9,8b/YN ` W{@bfs\~Am:'烩>D-"] yݬV| s`r}/xBAW(Q%)ц ruQ)HFdC$+CD7GD!9YT"W&-LkFL15s~놰 b8޾~iR7}H\K\pgncx 9~/\t}Q"U~sJň^aʬjnϹv߉ʭ$y^F6 +)}$#cq&6 %z I#%M#4c @3.+tGHMB+AҶ"C$%f mdb^6_^ Q=J:r7 76MMnH^L*9dn^TFQ(2UȤDY%e(Gѡ D>H{ysՉ+!̻p!Qwyhumӓ@"u/‚9ѩm?Q2qLm(<⺶mewZ0oPjݶ>hz~>{㕠cU&f̑tJh1xNF|)|üqBC)}9_C0oGo1BZOFgd iI.zY=z+zve_ݲ1`fs wՍ詢n:6=C wL{؊0 + + R/7 $DK8\) hY + dD"Vɱa oHylJ#%hⰉOф`a\qxc?/um4* 4-ֹ=;QvVa;% cCͥ2`9ԋ(;%dh`$9cPULm Ah`Poo/+Sr9phP!jVQ~tbfd4%ltkh4&O|cUa* +Eg:6:̕^䐣6v73 GK{S(hL81;8ؕ&i$!r4(gjhK*rlCaeuvޢmvZYS`+I4cĤ;yKDg %>fj_8<˼jb\VQbųF3 y3`AwxqDr/᯸l3)ƏbU8$"ĵ)S03,Kг0y9v59 ǰf UVA~sOh QH_jo h{?̓!@хG!=3Oo ɣl>%}MΫ[2Aw_a[xհi3ݫSR +2#4So/t/p%{e, L말޾1?З"dFK-/K1X7V ]ݟ D@%s?p'#bh7.;׏(I6A8z'u<`ȤY؛p]86vL7RZxXH\!eբ9Ni0TO0ZPz+Q|d\8)+VćxSa8i~݌tw.cOEBBv&bjI0 vz H8.Gos~ҢAQ,7Fr,:~X>&H2 KGG=+ialzX 1jqrřOR8w"Ԇe%p/(B%QX$b|ĔûzR{Fh[G9y7jo9tt@AKO4gMJq\dpL!r4jXof3J7 {5&J?G7-HʽTRG_E<h&2Sx|=cS,V3lJ%3漫c3\ZVP7 Kl243(,| 9*9-`ӦԀ`kxE_ $aSFŲ4aEJ|[,No3 Rv~2HR$;Cm3P(ޏA/>+;_p9pRD ͂r4leؕ̓vĨȤȧ%s܁2P@(e 2P@(ߩD(zY=P?SJb̄Xq3vw?||))wǟ?PVMJKڑ,JNIv$"%%,S~TUKݙ&M{.tAY0P@(*oWɿ~NaDH 4 0CR,kS erPjfKÊo`D'APAbf)EP)b'P( + |_.h{{Af2OSR ,"#'D|@`/ ,JH d!y?a^<˟yU 0/>L3q-U$6X:-j~n,ԍw F9IUMp鳿n R׵ԺyP뽶qtZHsj#ʽNx9ϹN-ħ<&%>zc< l==evb.{s8p~=]#=ls$bxO;EV17唷=c=&\0A-B$ԺƒGxG6Gm^.Rh!>t.QKpr_V lHd|ҡIDk4e&Z5BPp 8gɂF [b.jO0spppnkn6^O.1=I/z2U|?Ú+w{#O[YXزUлl>`$cޮZί~_-Hٟ w⇉lxq85 6溥>gGm'{Dv>qz25M/d6O=v՛mzMNҡ{Y]7{X[w婮&խKX0]иxI_\;<ϥNצ{%FOѵl*HA5{#j<c>oD(n6qn_k镏k'땑gL;AbjƛhAJ^>;?kґ2j`4==UPˇ|hIB"$dqSH+8Rǵ0p:j2YC*H]y2.$Q_f'VB;/UzЫzӏ/ pR-ƌqEŤ['{9 k <y +i8,*W +-AW~y^c[Iv2O8 2Z/W7XX_[vbWvH(?G$WFj6H +]WD,QGFi n ) SN~2Jn=iqY5>cqO4}\ԵD& +7ÜPkz3Wbڜ-f.foٍN͚i8 f>lJ㼽vsWbV9v[kYj[K0zu&߲UR5FhgrE&^j МMd#& ZU@6tΖfkZb6Yi6{]:șK$zY80a͍}Fw\QGbnOX49&K"^EϽ˱r ofٍ ςu31 +4 +9[5 Hq.0AFdimp`i$a}*@s"Pd2H67{J07LvʯqP +'fRD -8,n 0`] R!Ò&DۚGv+c&L6Ȅse`v o6_@.CNk)B\UxуQ;^c!w?"WQVP9Ikq +PVs +'Iʢ0hK+pet +7^_t +Kʋ:hӗOחrca^ilKzD@ZYTz]FV3AU;V_ +g rZC>obO4U`|@[/-0*]ie +m +*\E,}yeS ¢J8_cu@vl_ ++KT\D[# T#Mϫԗb6J+ PUJI +X 2@ 3W`Qs}4Cp}b|pUɞ>#@|-=gMz9=mlb^d1 o'77nnnnG7. ?vO16Gl8 mxpq;WLا`c<6ղٌyݜ4QNِ~[I|PȳGi/pgKnޓLM:vhڛ*.ޤ +FWltZo7| J~ꎘyb΢_#h4jotVg23,DzX"F,ȦFmTLQ}mK6XLbm[;?~l_cMʣݿ|Џ˕0S}S2i?/o%g~tԪK⮥Ǯ]:$ҹ586"՗{f͇.oߑ;gKW*F^yһo :JK KҼrdy'| +S}u\_9;6|OZ7u"Ò~kR;w3OٓoĻ[fn]st 5O)sȂ׾'e 7]8qW J0gVd_yM#fMʚ~CQo2dFX@?%d|$I7l0tkfNꬷ-vw̃luVzy0\.T^n)UmV'm}bmͺ'rݳ9__ݝ^yQĥo\HKyJc sǎZ5.g̻wj oڣ cg胓NFkHe/Ns=)KoYpWCj+ߊx)Iu/sCD׭$-z䮍5'v)|͕ ) a[^6L-g?S^vjYI|w6:gȴq3u•Qw25(yfړ]HO, ĂRq(=AI($Gir<ӗh:վnxNR^]l}L;}v V *DԌwN h]ܥ^|zjpQhR&[#="d569\tZ=4* g3q*Pn;4. +w8,yes*ݰC Q=p\慡[?^(l;..ljHx3F 2>vhj\zzNra-Qk/OޒSVaz\eO^]pLg_ք\r-=嗿f. +B|zdqk9Yfϭ_x5v~5–sh_lr [W26t`Ug5߳uGNZv_Wߵ.=?xbﭖ+Y:%eΉ %?ʖ9#cs.U͍Mz>Ųի7&sߊzlLʈYeЮ{x} ?*|hӢ^iEhxyuQ9!sg-}mUXӋˍWu4{ܱ~CU1~[_tAVH`p}4iNvC2(5>j uzDVr{&_s s~Y*Q4&:cBI(GF, +]OہDy_I=,{|#UM&|z骤=qG3w+߽g%gx`WADc3vՌIhFKq(طΖ%Qbs?>Xo*;n{J]~ugǎcډis2ҬCg7,#d5WVSUmkw}uj]ngt^PݑO2g?pE[ 4_B}Υ'}1ןK;ܥN?8v"m>t= N1gPaK=œ?6*м+= kOy Ujؕ9h340Nt_644҆fjE4y3T/>xM:?G M+bI7UVTpCtcxuh+- +?:Gop;':rퟘB !}!5 !<_Z.+|ΗV\=f-|Gt,z_l~5#~Jra:󙝃3Zl=Ծ獮dCLұܺnCdiw@A6usǭ?4Ass>d:`w'LUxyUų5HЯ~VtwlZ[Tм:80mA罩rN:B/fwj6 ix0=*pvj՚JiCRUl~7lJ74,~$`GsξUNfh3а|{1|#'p6/:0@NJ͟绽, Y9yeO=yh{ mO˝xt˓ۦ[ϖ[/Aq_sŒ?nh9i>xѭxHwĎ7,߮٬S69u7Ct代7X +D+,8z½_ ɗii;}M-]v1gVyY|tƇoֿYy%*7^m  HXgQ rt4d?T=b{fsh6sKPWwb7]I?F|Y51aWԛ+f?9~۩*|o%oNܳ/ÂF^CxwR/?6VRݣ^Y*L[{xE6keMX{ᜟ,nLrl)״%{IcqjޱaVէ)o__g^p[خ傧gsp6xh]y?dG r{?>dܐ}d/~X^Q]bv~9X~s-Egehek-ݩb) ЙUf}`'~kniظM˝ʹ\{u5[d/|:3K=)^HHN`ߓ_r~\b>_IMZE@Mx^>ۖGN~7ῦq/wlXdR9Dؘ_|%{?N}] +Cɮs_úmm][/Kpx5+3q{k; +endstream +endobj +1213 0 obj +<< +/Length 40186 +/Filter /FlateDecode +/Length1 89628 +>> +stream +x} |Tյ3$'L&@BHH "9y!4S +> R0`U|1$mjŢmW|UVzo N^^{}Ι#i9y.!bsP8늦WCpxq%WΈD{cDї\~]V:>3igލ>AEԢU? 9W^Y(?GTYM{*{)6"ϊ+mqEAXW46IJbaߕMW4S`3hj^k0~rMs4 Z"J1 h;)BӍ_}O%5е SJ_*j& -!D2Wq9Z%U)+ )$WbeSxU^kg[{JpLdo X4[̔b-&~J/t+_tSg+]y1 +(σӬG`/x~ .y7R;tfz +}xZߋzkJF}(w*ӂAj[cap!BN7̿C?s%A1DޚBPxx%xbsP^|C:7K¾d¼{ ks8n+g+} п.u? ]uh$F6J!]]mw!vm rșÑ](]Ge ++Or._.0nj W4f%Lizʃo(1h*^y3i*)F)}2Z*RRk) }\)E[ޒDʿ@۟! B*gӅJ !"GP2mN_9K@n}Dk埐2b%wCX5>m.TphC9eSc}a5_qO[ s~(hh_~NZ/QB Dyȅ F{㴃vчl8/oX ݮE.E} @yi0eQ.SNV|kVpz( .v$N>Um99ѻg7JssgZt[4,~17ǿBQ_,5cb܉I)!to!YCQPXT\2rTiUc;ܚƟ?vSN~ Ԗ[Z~H Q1uQ6Q#K +F =4+s ozgPNT#]0f( i}F-ʞ&T4VQ5Lhgjм4qJz)fի=*ͦOC~u^3Z3B>5:aNczô9mՍU3QlvdNGa=-,~433JXҫfj'UW%gY>T"L4Y*}Vs} ;VifcsgvӅu>^q|MΣ*떟ޚ$U'EmXwzkH<}Lc +Nc4ǖaH]D*4fOiT=9m6bi|4Tb+Kz۔:O,STCmr̖졝jdȱL63g\ͤSe"8OÒ:T,bjU 5P=7+2gllSGz)GocY_cIW qr*~2efVbMah\=tA7/:GmS?5U,nf[2.Tifzo-='[b%'[N= yODqsFX47k&{j&Nӫ}[3RT[]Y'%OV內Ec1zOBPLSdžzGjt[m +)[ufy3sIW)g6ƣiklk.UO.onkn<+|cVcsH+N[1`+&Oۥ_1lLC[.gYE]!f'2Yagu32l':54zVj1Nj˨ꖄkТ݄3CrJ`l [4E..^@)IOHS)]mIKz9Hup;X"Cz3!bLAfdY}Wޒ6Q?UTo2L?*$so 5[cDr"skEM(v,kyTS.Nj[l}rmX6TV F!H -A'GZyV~8tIKrK pdM첇 QѦZB3}RkW|BU{Ls*Cŏp'Ň8$d8B8&E:5E kxNkb( ~RUH{Ц<.o8aXona2#(φ۟ͻ `z+NLggL|R&*.<y]! {x+=$NQ;3|qIŐ]paob"~ +js ߛ-]4-bc|ohQ0cǡNG(_$:Y߫kZH(2ҍlCMt=[/;rߎd+=`旋|}%H\#3GHS2&9X^ ^Y|s#|FMfM+x>x!N ZhDD -&}>X hFD#@4ao#&Z j5@Q DZaaaaD@@&"\ r5@ D"\D@@&BBBB5***P^ zD D/&^ zNP L!@rC& 9?Va,=l1k>X`}@3> |@> |&v ځh7@Dh7w>X l%l)Ǧ\DGLyuF0 ԔS)הϔ٘_+(0|*xHo$GX'X7X[[^+Lll(-'qyh5f'`D2>9[kaD?d/gl{&[&'NExX֎q2ݾx-ԺސbdA~ wylp:X32_g r/8 +WHXG׳.q2ǟ Ϙ?cVng;)C<'r h~<$k{  a3/i.64Y@ɘ4MkC ^:Q~TZh$_1ȯmeg6SBJ]0]NfFvLSXz rz7f8A\;>'ZGmzwjiô۳m^ o3kK͈֖hZkQmv֤MQ. +3m;Zt8Hkw&Ѯ -C+ +Rqߢ}(-b|jQ742ZZgX+ Yk-ʦmNfYl5'1U,R̫\El%_Tk&W_,f) +拪)⬚nkp(gQxYR͂jYؤѲI1,,jtdɘHӬo)lo]:֔z_Sk|7UvÅ%I^nQS 5j +҅Γ +5 +y^sky.SOfB^]թN:SH:5<:ZΣ 1;4dk +sّ|9ߪR)0ǒط:ZH'fIRsE>A9U[`NoL]\4,oYslj4Wyh꤃S:UjOSU}WYi]cvjTtV'*+r\&*cʌ2s"k:mTQ_yaHv0b1)"Nm-zרԄEIeb[(,T\`є]].DS0)aѨԤlKHOt- __u"T|Fw !M?VWcПJ.'-0MbqD6IwW5R* ʤUZI0KpVp.Q +|TOc)c).et/sK?Gn)7H~4ѕh+XrD4xC}Dc4 MsCVM38:&͠]+yY( >ŸbPn>|g8ƙIzL4&cgY +ә"H:L0X;6+>Ke33ziGoGvҋj٥*v{rEɷ}7&x~ {'yt=-o.A3d*+fsz [@/_T~6Y':w|* +b'{i <$q>u:c6{fJcnN&2Hz g8A.L;حE)}FDU$}?0W~H~'X.-wsw%P 8Kki:ͦp.xدP5kǎõ`+y- +̦#K`,ᘲ@YlUv(O+/Y۷zD`B0MCi-ut9Q%K8+g2,~އ)Ή i:8njfa|/vVօ83#;|(iN;zv ŹPŦ4#R- +UҋwS b?;4RDyq8?XJp w$:] +"0>e 0 6fc67K /Q!/Vo d,n^fD"$rX#͢yɎ3/KJW+2HFF#ХBߐ.эXltnOa7.̡s%rʡ# ,6vƼ#Jc%n3e)!ϝu9W沈Mq5ky@9k5֞.9>Cy+  K*aaZ2HK%{f%j(UDM;l+šK>wLcGK#cR䪑߶5&bOKay*Xm\+2}hiqt󍆪%v쏨8wRN񾆣!S#SO]90nVvSncbxj({n 8"p,0浦EF:4s;/Y?>{},"ŶNEYEU̝9zԱ|s?5yT1<ػyFj.3ps)NV%]ʕdJQͱ$r˛.cm9ր!0y|0D(͈ӬOY'lq_9M /+=tQscc3jj9mZd}\}49qs/l%Rh/t,1_-؟qky+RMxxUMasi9<@)#t8(H;L(p豬PZ-AX-j_ #Uv횵 _{=5ڸCBwG@u8;C;}X>Q>r(7^N e%w!])L?zfǹ N_Xp)$k.dYv;vx 9t'w JęiKr%Ge`?kL',HaeEO&LܕC ܇mIɕ)6KN-EcʄJwe--!͝(yV$<@)[آ(EMS,H5em).q1#RHE )ֈ]9#͙NvΎh~EQrY'𸹂b>ǁKqCcY J #K SjlSK[$ddI>ta$wOfGfb>J +R28%[\\\Ϯn@DF<߭iEXe 㧳F6ͱ>p3/ωcJeLQ7$5xWx$z[|,!ye2U6v+;cLxmaVTdT' 3\k\bar#BΉ½I +˟TW?8'rG8#5m_S^ i,-1+HBvܙ6,i_ģ8L +©p5D{(G} ΕWmĩJN39yN1qr<55õ.;6rZ\V沒ru' q2tg;;_rT(ponF,?2?"_ԷΝOYƗ#'~,E 7Wt\P!pYU5}{ GEFGFz'Eu?W6&ِ$$B Q0@HDyVIAUy(~AAIIEPOQkE[(;wv_?Νv;~Y#J`ޅ 4MuH.9 DOD!]*dKv$®b]]h۳"UzNR|fpe˗ݺz|&>GQhYhG֯Yh~}y·|X/,z(u@^,6w;絝nmfG=]?@Aϡ 3D65+Rb*qO.T۱!D֘Yp̓ +Rοs { ΘTڗjͳ\\(.ۍclYiʨ-{.9*Ϭ4a~ӔIM)ۓ?7Ͻyաu1tK_{b^(T[72 I#vS~E~[P"hʒd\$Wɵ2-=c^Pp͎"m04\K#:UV$1iYׂ{8q8ʧѯ=<g:b{//KPH,BY OaY/qݯyT2TS7(w2 -5&6y;b?_؟mq9\kbFǍ`M~.]H^UX[ {ÐǗhh(#spYqÆPkq6LcN-6d O-'=;X*Y׭<ﭏ[f#/ ;L@5hv"qf[9B}4۾xg4,_e&?꧗tϪ0k¤@KݴEw͛C{ ivĶ[ fOC2kJUwݻbɼvz +Ǎ#59ra<]줺N{9USgot689?Dwsf9cz$ I[Y,ZSl9S9 #SN:#Sed7p:Ce pMlx e ΀ 4&FblQe"e8UV) x=/̓m8D$1-"Ë)EQ<'2L\, ]-Yi*JH904, JPp[ 9 YVcY"*[E,+00}|mbIʗ@Gf(U{a+IZZ5>ze_O߈ QMPqkȓkdN3 +g.1ÇykF"4WWZGHTQQ4`{.=S,?,>:iT҂/ #F"?8qdkݸؽۍnW4;®\D`k0W 1PQNx4iQ8p}a{., Sag1.`ǐOH}xpZu@BE}{CnBi}I~\4+RIV) v!t4R(k()F"N,/J#郼<]kf,ն%/Lyi5a'rǯl,{ ݼyּⱃn?Ԭ +9jȊӮ}&ͥR?ڛ 翵 { Nuu&>/Z|ukg1Xlc{Nw.sY>nߤߐ*T FB +&V+^ 9Z,"pl}M +Cpydb0z/3 :ğ4Y89td>U+rL4LBO$xS6 +e]k7OZ%%ǁgk_g=f;[oSooĆBu*Ze惻_Qow3Vx7d6N`ttM +W5‘bvP/ֱNP( AfD`X)ES ǡ t5 );ےO~^>fVeO'_d1w}d1G.ioܹoC#yYL7X 0#EnH3aI̕)jh=<{; $o\ye_X*#0'f_PxL=7{`6 '4|)c#QB-HJ>C'KC}CzO +O7y)g\*9/zYIRogŻ8k@Ag<>{/$/&i>m.14{҅D\/ vh1r9g<\UӨNٽN~1 +g_3q*Yz Ah (q'y4L֪mv油a02=I^*./ BqM-~ZXU\:ujpE#i7%hTX;;nMSQ9{ c4]K֏ъ Y,^IW]QGG7cV,0Ģ)̭ *k Sֽ~1m9UIn'LvL%~:.J%jg=2ڿuVdy7:qPÎ +zȹ Msj#/gO0/$pFee`DZvlJ-#˳1,1G)ΓebBC5pdUQ@NQ;Z`Cn +q8Xl2A;/~gA +w"ZC6 ؈adC󑟯l {N+]!'_>y^LGn}ꦕW)?iRMsTX`J`Dp2, Kٍhlb52W$ OyAT7HcF 7% 6dp[ɯ0h ZŴ22B![OS W; +=H0(Fsa|J#=ܡXl') s- +k2 +T*UIS,'ϡk H[ ^y$8r̀!e Zz@_!9?l#$yB & (83ww +{}S:|D (b~U0S#2lVbcP쌀4<2աERC~r[:Rp& +vr$s4xƪZ>3@Z(#2Æ;8]}%4 @XD\,χ%"#+JZ.— +Ь$ <ϦAb GHE P!C!t8Td #ڏ|>K&d+ +=g=Yt\ZBxIK648*N 2h+T R Pq(d}c 9Fv>lœK98ZXWY'} RʀDbꦈaA6@"҅dxEhY-mp`0\rZ,B/6^_h6֓Rm7nf +e79Gp]. |n~7dkgG麑滎_rԒ9`5-}A=M9.CAMz22f:YQk7AQ]wpʲ!Д2AγPPEVbCU){7WMV~9t{JvcIT?j!Js=s}l}fR%+RKDbn㺛5#H]V洱=ɳgͳG3gk֊{{x̘4V̷5:=+|F~~5k99=1SS~S[Ͷc۱#jB ͢-V3̄Vjb( l˔R\G@d୰G,PE*Q#@&A>_㊸qdt<5 m*J6΃.cnm\'纑+~Ϳ"O/J&Oyt-3rB*x)`[ӸYo qquR#M ؔٚG e;GVƹG7˂LPch2`($ MC)6x`'"C+/ +X#U4/`EmFG +-\}]$RkPan5/^E{?(ֵϻ}͖u(OCDZ~i w>m3[uX_11@tjbA!]Ap1zZ|N ~N*T5Ö6 B ͞_u2VBa(61QkаsLRP"N-jCR/j v,tYy>b"ȝQQ̅[3L[D0T[ +VN]>#U32m#UIK:& +9ҡ{/=M? G^k"U;M"hVȗj5br$@J-m):b)%gJz7_W7"{% [N|O qyhŃcO5g$ndߣ$ÐeE 5y!0X@H:d% j&R VŒeFn +y :<2 eHTiN/}Υޫ'O'@|/  EZ:5[qj̝7hn#YZV/Ŧ2P@.=]BS,u+X1WhEM1=vcݙ-O/>q= *}?=4A\P{ e +2ZHYYew8iF6b͋rK:3)R6WQ Kٗ o +4B:ײ͚,* G_adR6^q f?ۯh3[@0l>zFx ͒Tp!PO%7Tdq[COx/9 ࢽm&` #?K@{J8[~)VKpnǃ + LSbb9슈 +kj+v^h2+31 ydDӎ#rz;6y=1:l꾀k.[.7 2Z3-3-νhOWgF"KZ)yzC_"b``d`(U vL#HC%[`M 鱫jZ[Ǐ95BI|SÅoqɊg'ؘiM9əq*mxi*B)^W AznR :3X*WA xQ$2T.!3QH;u,,P_[ +%(@ʵDOC6WZ A&T[qACl) uP\AҾp4+]n-eU:X = +`QGn@mGEI6v 'x3w[a')xiJ_ h8H#]~CuH򸃬9;<58]1-M7J8$$FBզ<5' xWuU GD +rmp#P8Ng^T'9DgBys lϕ/ZyB-~):#٬ꙏ%c^ga@^gzyϊg<FgOԷ8 8) 8+t:)8ImN;( HA2i6RVI/jTR +93lIKVizzJiqpP?\H%+:p8毪~yERK _ګ鵋e +NlmN9&6 Ot.2iS߾ycSƕ<߻wc|KitkHOHf2ӣ ų. +UQs)6ځ`ZXC6 RoW$uГx͐5PM[uA?J q[yɕ?]IЕ55Yמ]f,켰dd^xN-gc80C1H#l4dMx>we|? YJLyE7"틒=6kRi߲u,-iaL%Vy +&.9=q.K u($F%1*iiTt#MѧPAL#%vL; }Jm%Ujq. `tu`0V2^2^T*Nyl8GR ƬX$p K7g彂IlmUQu>j 1 +4мV 팕w 6Qt)sXʙjG:ntC .~S|@w3B"߂oKpI,ϧ6IkdԆyw7R\"f4I # +KuUeӞ{q7<@1`^9#,WJ""֔cI. tvaOQE> Mo߁6ǏaʨC' 30mZ~'ޢ>$<:Fùi'˖:u\jDn +{s/Ja,=YxL-bf&?\ ` +] +HPrаH6)n>xz,i]Q:|bZP4-ƿmJa(e`xhpQ18 .($[ Ǡ2 '=lDaP ' )T<?fe q]gsdÒ c!52ΰ,Y# SYo + ]D |FOEC +ŕQH +Jr۔8# "-3,vg5HC5cu/Yċ\+(\镵DL6 OGh#85Gk˔*/$Δ-.1; !3 #NQS& ++H=,l9c5MX8υJ~L-0T{ux08=D2 >5Gʼ7}ܺ}'Q) O|~u2+YlCVr(d` H<> тp5pџm,"ŝ̓MA{H~CMz ȼJqeW Gz1TLDP'eeՊw(KYwԘ_\,_8C @X (: 7 hAۦD3ЊKyOMyH8fxnT!jv MJ[dZXCwi^H.Ec%kb7*U5lmc˟P܏hUdi7;{$#4Cݛ zyy)^H8b$A{| M }ܷ z7"'Y#z ?T`M#,贞}2yk`V)A{M BM! EC(tgy=,`7l8pB-diYOa.0WD((FMv{-ח'pX=TU{G9#]yy#I;<`Dǎ{ky*Z0 td3se5[BLgzC[Il)OOE3$_f`5P2_Hϣr9ШC3 hS{^9#58#X +fsɀH"a ƃF e` ؀-i򛚦O;cˈ.N55 4 VU,ON{+JV)4D[";#}7}&O _  vrW +?4X᧒z{5Rhu:c!CMa7]A4j{iHG]]S0uL{)R0*ۖPV'>JqyGs(5x\)(@&b6kyulhuH&arijR#֗R„c4bob}XR.RplJ8FSnhenuew_&O7OKTuvYO5j0zpc KNhvx4Zk6.'~"R 74_0_4ӢY4=W}^'pSm)S n"}}$la]Y)&]$00c^rP\W6W,rf&fxגf+{/0Lb#<`|/TȻgqoXK[ܟ3O0g}c};`ס'` cH\@zKIδð>N vh>k }T ^6H%ʊ4>&[!Bi(ɧld8MeOpa֎W0kss̞k꒕pf-G,[\VTTlNe&N JFFvaYVn+ k%Kq@6JdEV5kLj"y•I/̡h@ gȈ.Y/ʛἌW]{6wsz<= +5 D :$p3{|8A`$GBvIoBJ$O%R:Tێl}}k6m1^xKۚmm=gwޞ=ݱӇ=CD^%1 +ߠG`*; DZ7#hD܋XK ܗwc#~IOa T~C&уcA4BhӕEQDVlZ!k rn>vDef֡WÕ7m4~bR볖0vYh(疿[TGKMy|DPJLm%O$_2P y3H;a[6duPGii( 'GK*b)uK$)#3T~}ѻU7;/Qv]7-t_+h'|;>K*œ,p1G,çsIC:tY$wkw'"dIb:BW= C +GT(V&o!m‚?WH +MiJۮK&IIyߐB^*9ҒvRWwwn*{d>ba1 +ƂFdرq0a7 SPP]du&MACKKϖ#⌴Jc$2RMYV/rC0YPydq$]O5jfm?@27FMpV# 9N4ay',k G5Р"/xsl6:P$R">;)֌)E͉B%qm6]$Q YrOxړ;jc< :➛6~Q߭YY8[߹y|X]TaJ-E20l !exPe4>>GzWd &}1JtQx1"Rc7 5{[C@欩Z~뚅%wNUzhיS+k巖LZ7po`ĽɈ`ؗIg0RGRzI'u@dV-}CtM2rO-&HoM˷7DWZ~״ϓ{ +&,~R;lVuKB4 |e^8I\Cb2(5:7!P$4( +Љ{a aaf^z`0iJ]dEOFK>w0Q#,e- ?1?3D_u{5q2HW:(6ix +p/Xy^X /%va(/vgiWy F$ea57~!NcNm(EQhJWdaȷ?a4n1')\zjT z`  3DμC,σCyj(0b=߬Zdyc\٠2dÕS !jƎ5ڑ˟ZY6zOn^w|Ge˲ K+̩Sv/d&tx'%ӳtwиEҼjzvC 2^*,Bopǃ=5EAF0pD&WSYBaL@o^=>ݪ)wdn[?o˦? -5|b8m`Me>ݩ1rҕst;6G8Rz?:D< bwȢ< X" l&2pCEX:F!Ub6cy;X$U"P]LW \j9TcXs[Z=1v1ZP =~nz +!'Q&aİ$ F٣v~?)K@CP,LQA)t+ v"DKO :dS^] eSt]gCF" +;l-‘"+^F4G#f㉲qk'y9Iزp8 $7TN^gvpp1Ek9XF*kmٻ隶/-M}iiCٚЦmkQ!m6mjR+(PA@A@EGQ\pD?E`pTTpg@gݖ^Ҕ,M49w;=wyrBM2hCԡ7jҨUߢ[cz\ߨCT? l r(cB')`T]ut虥]uXI醏:'5i4%s +Xw/n#l'G ϲBDZOP =S?2ܐC&@Yh>ٍ>b<+P̧6StʍM'n9 +ثgVk5irC$İV3-7w}ǬGͫhH[4ge60 ox %0i?j%c\(qߙWn"Y JO?&?N&x@&b 2D -X8׏QgiQ4)5JUJe j\FDoyAԔOHL4gd(LN͎3-9*ύ+xfZP&02F,ER#cD2؋P4[C4Ԍ&vLLS"D*h5\<~[9gЖo@V{/f_оDGB#u+5R~rxO6;|e`h&m #{^Db1e(~Hh~hMJtaqZЈ01Ġ:RY +X6  +$1)&'+TT,*-'d^xq8N BP*4F(D!pY0 'Ph3y2V 7BIH:f$ gArSW?Ϗdx-o4_#%gHI4 4d (]tF +o]>ś3y^X&2|&C? 3ԏ .=˜vu ))^]&QfHru-,TvGИV$'~~dцN+j7sÊwoز޽BfUuNf̘o(_npSn\ڍnn^֔ٴ|v i˼sDQlP!*f6Z"Ek}nwXX\yٰ͇a n̑&ǦBe"WiV/j]ɜQ3qI"¦ַMh9O. U߄4)Z_-bAqDq#dii +'$R1>=R1;4'kfQ,Ⲩ *5PHPzAD *#Y,pHcq xk~暃&9J`D_?MFxM*b,NUȜ^2M[5jVJym\k;+U`^S_{pFb͙,)ə^>fېTj"""B#"j254JM%t9|"Pd~^O<0 rsŒ8>"H+P%M kpUkrXWZSgu%6(M _[M 7θiiWek2G1J[漢C25\HO3i b#m +'V̮T25)K-ST[ 9 "!RVj2Rix!*0 :h|b\65h4HD +=+WOg{x1GtZ0)l { +֚WqФ-{fZyE*V躿뭳'Bk㛦5.hlOPrk5ysuIj.X9mYUrusG.#<>6&8"]ԭP4 g_gHFq %r1thks/T^7ӧLk!Z^R I%F +B))ThU ?$ޓ MZE%kZf4#42%> +W5L V@@dA% &LHQD85mlty91L!CjLD꜀"8в($%ᕒ_\ ȱC<ï48v27o17ayK Lp0O y-R#F?$H&c !ߠVs`<]IEC!&j5 z3^1t +J&+l"BЋ(H!}\ FJGH ѭk2B!(ZXbx,߀?0LmBM7eG Më~9JEV zt oD|J-7{4^8@S$~> @J#~yϻ\Ftdũ"7rY uZ?L?9<8.T5DAN$e ɀgG@ɧa D{Gt|kF[3Zꣾ"%Ȇ+SqJ}=0%9J'$$u5[GyR+ +RP]BSdr&L 1N'x]yJxe|A3-"g{ў?G]K} urBv9yc6Mi!zZ,zKYqPRT ᾠ_W;K}D֢ԌE>CӜ̵JL'2,M" Z$hͤH6"LEp:R:$hئ%%&-53 5!0M%#SS#i ]xRco/2Mܳ0('?ZxB0|< >;b+C ! ë0Oh4#1 ,QA$&#|=g?Ϛ:jhԩWQ29``eY}AJűظm~#YY S&673UyKQeSi@?Jz\Iw,3%-+ PPez6#7;)";~L}Om=2U+|Lq-2upJ$)'=:T+e" YYܨ|"]qb(`F[z#h8$-45EU*}gtY}Ƹ`R!zN'ؘmcWש'Ykm|259-(_qw%/ӁʌOXK FKc0gVg:XKci,4XKci,ҿUze, d}(ߗrrs~+\0q\7+fpulϹ:n@Bnf+wKټ};<~Y>SVƂR LY_X[ 'xveҎ'.^ X" ^I8D/.) `jrn 5F KX{7 T(PR]/ +> xA +p/Թ|tXƗZ̃0B[ZJN\> ,?mX,1 -PJXe8IYLj[( A+ ^{'׃u; vh"M++pmr7 ,8"-qK^"Vxk–GQ5]X4h;}K'>Iy,Jߘ~0b ж!Ȕu~Bg65ؓ\ƁQȎt# + ޑ|b)yy0lfcS^]Q{>Ɏvx`:ko.w/ZypՂBx.*iɠG|b B^+ <]΅zj#R:$u1ՅGw_{ԧ Ci>}^;ߪ[O}y}Rx_$?@x0=olt3݃#gUw +T`cޯzS@?Y+ϋh5V|Fkxk\= +`9.ڄ=ф[u>)sNF'<=d[^^xK_u# GrwNwJg3kg^q8{YcWkqwxܬml``eg{=OuaV;B}Xc5Me-֮lӝ=ly͍(w8l?6hrZX"qQsouپzzjq'nwm6KYr"1 cut. +VV|vyx '=9llZD|7]nDCp,Ԣއ ewmmZ-첺lr:lKfur}dXw_ooksxfgm`@R)*f=NezZpP +MnuvWt-X^ymcu9m}-jQ/$:zZlȵ;{4G:o=卍鲻ސF>\@cFVu9Fkʫ + q)xHLԦ;Z0z hqفȵڜ]]Nl :{|5BZ;1'ޓl=r\-܈1cRcТx 2!ػ`auHs`` 2T`^.+hƦe\06{Z;vtdRr)CV # ICGI t͎̑"oKcTnZ.)Or!(A$ԲN ۱Bz@ w ^7*$vрZ%Y<iDgdDà1/:؈xM]\` !AwS*wjV?A]΄B/ ^~x+7uեMF5ױ5FsM5A>U6˫Yha1V7եa*Ѳ5S][ma͕5f+JUe4WU ӏF" fATU,5N3W뛵l +,Fh77T-lMKmTLl +e2l]26_quM\V^ϖWWp 83N0@ +R˖+e&ܫXp3r.zF_\oBbWW[ )-M:5ZuH!j@ =1We U,MP4KXPgƣUN7NƿC9= KJq_}#<jzJ5v?v?v?矩g;;;;0͏>jg|~|~||{\E{\ +Dg^cwTm^߸qt4'ާܿ/) ytM 3.4pYGq$2SIL1SL` fS8g%w3;ѥ(R0 >)8n`TC. Eip{=.J%c%p*T"WI)6] +\݄~ds!ŸPO_$` I{[_uͼv؟mQ=pw_z+3﮶(ziynâ}s}H<᦮CC|k9m?}`6Ŧ' *ڧKRlWf5|%ްO,_ww$}d߉v|԰VKBo2MaW|Gl \֙ءO򧥋_(9a io_Et?dhOYoD$OdjNMyX(c'7|az8pe| +RpqHB\<* b"{%0ՒIG?Aա+ҹTdEӫ^;o7[gwyEr(<07/00s|~~<0&3\䒈O~$bǮ'$~ra5HdJn6& N+K6ٝ;߁Jsh +w.r,NdC#nWjd +n7Q+ +$/E9.N#.4-YJ4 +B9!t=璾KqeKB坟>ҭ:~gۆo>Idﻶ^KΑ7Mo~檙Omswܲ +maG-JxZҧOʘq_|>7WްJcxzs;;-\8tkoٻnof5oޤ'4q9gظ0v~DuEFwc?YKKn.~Jufy{s^z3'X*]O$Gz 6Gcg}`̌~=JGLjkO,Q;xt~ގcfWF˟k.n=||R/K/Fտz>~_CKgRloÕ-y]wh}sWޤ7/|Й%aak>C9كgՙ%bށ&NF$8-\Yζ֫o}{}C7B2a^WQ B%PC$ajńS B }Gۨ7+Z:OYvCUBYywniY[[Ƨl[%E˒aα9[95u96{˓ 7>!&ZU\NO{ W'C}qlE1 9Tp_򫟮y3'nn a>[O@HS6w^J޳wVr엫h5KOMN;nyBcAOwcUҭz6}zwY~!s,>v;o:V,Rnɇu1Ժw([667+޻Sc;}uͽ>s֨g?=R]ߕ&~O%g7'`Ƕ.)i>\7p;>w_&e)| GVw{~/?A7մ|׬ڒĕdǵ_~q5ߞT_T;V&;drIU=5|Kܫ n4uMyWWfDN^1rhۖ*OQ]tlM [S PKsw}=ɏNN8N{H?kaƭ{ͩ8{/_-YrUCO:p"ym}uYܠ8\_v{ض7(,ud$qJ.g#Kbi/3}9-bUد+0]ycgv9{\_]7~[ĒޭZF f f$6=|ko9tGY&zﱔ\mw7?ۏ,۴O k칱i]?>`]C/_9-77cΪkjN)_z]oTqr;xi{_nm ;PNm<8u( (H HR)̈0 +HqI U(MJP% A$Ac^>w?sν{ݳ={u]K=+ZѤG +2->A> F|n6QCAہ1jp1dG[1$_(Ȥ#ҳٞ!Ggz^@L"+:N-4 ]r4 sV[+tV4 ۅ1Yd{'o9^`n-Kqu +knf6“H75Xu'mW"krOo{0qg~]`P&" +yq! +31c%Y+iEe-S IXJ$jJ<9R?zOP<±OfETAUQOU9jA<ҎW]MSJ%z0⿥BKmH=U6V-} P Kyul~\ûBѽަ5j~:2n-jd(q:jPK"&esZ}mc[R:3MYPk f%}"=`oZa!P58Eߢxt԰RCV^~ +~NrPkSՖZQոOB=G)OZ܃oJN/NrL5yw P[.h2W7uŬ[1M+q=tXqX;M]0Öm"jBKU_xf Wd-\W͕3ZRa|ޘ 8XƖ,> ۱61;FK"]H}-ç|k F}o. ![nsV# h+"x璺g%իWג@t~]j-JT3L[bj?z3Ϳ}0blOTyBNHp/}IFL0sJZڝȳK~rR^YpAAEl:Wm;Un??DZ}2QT{QqQ}h[` %ޕ$odadIrGo:uu#= _TlQOxܕ2)|_1turwͨmg: “r\:vw\S27Boe>Hy ';xk->>T]HzA9Yri;s!Xt{XWUl'ɃZޮ+K +tcމGb{,)V~ߏ9ykB0.'trmOe.-5A-"8`؃#%٪=\*o'g:Rcv$$#" (giO[M^:5 [3Lswd%kzH,2QE:JC|Ъa~'|}p"(=ejhiD!`n!SIg 莱^svN_#qWW' jZɠ8 ?rҲt~_a drJʡQЏ'QeΨ̾{;_j; +&Н AϞQEx*W7'|rOe1uQ̌fێh[`Ej*RބI,2ă t(<0tKHx;ƺ S% 9UD0Q׆wu) ג>)(\knqF=S)7kjPGm3D^Y7jG2QR},z ^CE,Z \:(;XgN޾w-TkaíMN+#q7>v\{B7:bx6WzB<> +stream +x; tŕU=ӣӺ%Kny,YFI$KCd3cIx\lJp `.؆DcqlvIHL,lX-.X2dwyo\]~wUFeK@5Ww9j_;w Bxrw,aZ`A+52u s!;o5w6` '7N|к!><ߎ@3naΪl%6D7E5YTg/ZS|@+Nu"">c>oБ_ e"Jr&XpA1dA655larϖ.IBJkql$>+ D;Vo[6T%W~?K} qFCW鎎#mN-% Z] +\KDmT $#b2{Q}7GchpͮӿDۤ{ző<4m&iLHV69 (9 +Qtצ1Ⱦ \$&y$VzV<=4zG!,eYvi`xwlX˲>@$w97XeelR)b 8[CUݱ{(KuPg7,ivKK:ݬ/!wQrVĸ^29̌3vph ls +r|1\) +iryt_Iy0M;h]jǧGv)>zc4k4>ʾkRc˘6b-| Btd\q:h ~5ϰ)<ɚ櫬y5fk6fkֳŚ5YŚ&XY#g v] PBԟ@6ԯC}PC}PaA}~w@@|>̚Ykgcy5YǚլY5pA.?:3P4SPǠ>/@X86w6cccc81E%]+c"BdoVl+l9,[-ݖj٬6\Gz{Ń:R.8Nzmb_c9c؊fq<}㿹$-1ڞTPyS49Zed FEh'CN V*y7`v yŔA;cI$] t7 Vc30N݁Co0F`8!Y#\e-:a`~~ 5x89CJ-؏5sUbIGXc9cͱ6~ m7$$ԮB]0؇*n-h/Be(36+жGl1PZR[g/L-P> ܃F#)t@"{-hg"W#n;@mNǾr/ +>Oïs @jV ={?rq#>waqi!MM ĨrySNSQ!6 0HYRz;"iCRp+n;ka<1~ | +GG+*ur]Nnw?cK[ 91|e;?Og [ZX#O wY-P|6>C k:J5׺za1ObX .R-֊]_->-߶=.EMSiE"xNTς7,.STN`!F;wѓ8,܎ѳqq7~'-e֕L+ gxe~[ C ᖢsh/ A۳8b<m` GmT[ۑ| r~# ?_oid"䜚Ț@k߃wmͲMph +Y|bD8C~<}V|2Ӏ~11W`Ӹ|Sar"-*+V=ɗ9]. Y8}Q$TDWegE, q,Mɉ&Zs +M-lsM5B-,+_|O>-,k_^n_(l6͖A>eۿIvvZWJ9%ܜ ~Uz'spckF +7MϨZV? +7L}ɿ}{z,z Ne ~fuLWS'SfxA9_r q]*~)gpW +㳬]'pWdKDX"<$* DHD58\-Cm0š}{$;'=r򮻿uA}-Lo98{Η_y* F4)h+=h`4ٕa@w@HAq2 ښ\14[l$mUz|_QX$=K^2`rR* Cy G yC,$XPQslE NQ;lC&֝"pdp BT N#|R8=i٣:UP }.u8$jDҀ2dKH˞7ADJ^] ^5xd'OT`0"#akD8Bn)ɐ,I1 ̔8 fm.`"x"" 4%Quӱ:51&Xӕ$FA-1K&9Ӓ$e0D Cn"d)U>ЙLs!~~WfAd=ʺW%+^UW nD82'¶uU 3Y!!rG~% nl$PI4CXL00OP"ꑘVnCHl7$)Q7K[iʿ6"UhIVa*#nd}dng Q5* +v48F7h IT }8QE"fspp:`NWC:#zTRAwgJ8 +B JԣE! L?a,䗇*i'Ԭ5a'ʯz ah„`%؁3Dp$hz|P D/A9 #I Iī?[N38*3RT* 1NOHA&{gjO6S@ӎIp|?4Sp *=3}8J5 +" (dG](my)$-J@[<00>P ]oFT/u@6G> Ӟػ0N h vVUKiAJCBn4 W)FXc^}T.1Pu+Z&iReTZMgPS2+QtRMKhN9tAoӽ"0/U>PRD f!:oL ‘jǴh^oaɄDO";r3:նdQe#Ԣ}[NL} 3<1}(m?F7dU3%v)'P#^m~!"3Q#@S%*aذ9M9Qy@bG&lј1}OF7< #.a &L$D'CTJ-{Lݙvb$HTWfNv\&5ăf̀iˆg.)jC1=u4KhҨ}g@xޑ2ǽ`&Cq0͌as܆x$Jlv PʧhJ>oR (,]~taQrCO,Bs9b&5ZBLh/=tIB?Մ)cdjoeJM/vvˊqx8}dNUgd>&gu#I{PVDvLih=ΖIkuǤyFyrz]"Hw)fW͠gt09!%&' yKhK8Ef㔋tk ;l҈eۍ<7<îdJ͌!7Oq#B1fࢻ$θϘZMsa .9ӻQkqg +?ٸU8 IgȖМlfm4¢4?Vm[5D]J"j-,դl&9F &eKfG[-f>|^m㮢$ݯ#(ip%I'hXٸ kabjz 8Gt$:birʄh5=ԤB2 -v;cRgķnS^I"qKW\5nmo:R~*BcV>2s/.#7iͦ'qĈEo*Z04et6M&߶Ɡa#FPNn?O ;@fL 9f2$LcF̯Ov ]r޴NrjδIGOЧ(-#hX&A݌2¯;QU(ۊԓ?'&Ư`>HWT"+ 8Yl䯂^߀06< ?9|i +endstream +endobj +xref +0 1215 +0000000000 65535 f +0000000015 00000 n +0000000642 00000 n +0000000845 00000 n +0000000957 00000 n +0000004256 00000 n +0000000167 00000 n +0000004299 00000 n +0000004685 00000 n +0000005034 00000 n +0000005448 00000 n +0000005964 00000 n +0000006428 00000 n +0000006836 00000 n +0000007307 00000 n +0000007750 00000 n +0000008253 00000 n +0000008753 00000 n +0000009216 00000 n +0000009757 00000 n +0000010282 00000 n +0000010850 00000 n +0000011187 00000 n +0000011528 00000 n +0000011903 00000 n +0000012290 00000 n +0000012631 00000 n +0000012985 00000 n +0000013315 00000 n +0000013634 00000 n +0000013929 00000 n +0000020737 00000 n +0000022524 00000 n +0000023256 00000 n +0000023970 00000 n +0000024396 00000 n +0000024453 00000 n +0000024510 00000 n +0000036191 00000 n +0000036507 00000 n +0000036591 00000 n +0000037951 00000 n +0000038078 00000 n +0000038259 00000 n +0000038444 00000 n +0000041559 00000 n +0000041696 00000 n +0000041922 00000 n +0000042094 00000 n +0000042258 00000 n +0000042424 00000 n +0000042592 00000 n +0000042769 00000 n +0000048813 00000 n +0000049040 00000 n +0000049268 00000 n +0000049495 00000 n +0000049723 00000 n +0000049951 00000 n +0000050179 00000 n +0000050407 00000 n +0000050635 00000 n +0000050863 00000 n +0000051002 00000 n +0000058628 00000 n +0000058856 00000 n +0000059084 00000 n +0000059311 00000 n +0000059539 00000 n +0000059767 00000 n +0000059995 00000 n +0000060134 00000 n +0000060273 00000 n +0000066440 00000 n +0000066667 00000 n +0000066895 00000 n +0000067123 00000 n +0000067350 00000 n +0000073897 00000 n +0000074125 00000 n +0000074353 00000 n +0000074581 00000 n +0000074809 00000 n +0000075036 00000 n +0000075264 00000 n +0000075491 00000 n +0000075719 00000 n +0000081811 00000 n +0000082039 00000 n +0000082267 00000 n +0000082496 00000 n +0000082725 00000 n +0000082864 00000 n +0000083003 00000 n +0000083142 00000 n +0000089410 00000 n +0000089639 00000 n +0000089868 00000 n +0000090097 00000 n +0000090326 00000 n +0000090555 00000 n +0000090785 00000 n +0000091015 00000 n +0000091154 00000 n +0000091294 00000 n +0000097384 00000 n +0000097614 00000 n +0000097844 00000 n +0000098074 00000 n +0000098304 00000 n +0000098534 00000 n +0000098764 00000 n +0000098994 00000 n +0000099134 00000 n +0000105579 00000 n +0000105809 00000 n +0000106039 00000 n +0000106269 00000 n +0000106499 00000 n +0000106729 00000 n +0000106868 00000 n +0000113415 00000 n +0000113645 00000 n +0000113875 00000 n +0000114105 00000 n +0000114335 00000 n +0000114565 00000 n +0000114795 00000 n +0000115025 00000 n +0000115255 00000 n +0000115485 00000 n +0000115625 00000 n +0000115765 00000 n +0000115904 00000 n +0000121816 00000 n +0000122046 00000 n +0000122276 00000 n +0000122506 00000 n +0000122736 00000 n +0000122966 00000 n +0000123196 00000 n +0000123426 00000 n +0000123656 00000 n +0000123886 00000 n +0000124116 00000 n +0000130075 00000 n +0000197104 00000 n +0000203420 00000 n +0000221461 00000 n +0000239502 00000 n +0000257543 00000 n +0000291359 00000 n +0000325175 00000 n +0000358991 00000 n +0000359076 00000 n +0000359161 00000 n +0000359246 00000 n +0000359331 00000 n +0000359416 00000 n +0000359501 00000 n +0000359586 00000 n +0000359671 00000 n +0000362744 00000 n +0000362871 00000 n +0000362998 00000 n +0000363125 00000 n +0000363253 00000 n +0000363381 00000 n +0000363509 00000 n +0000363637 00000 n +0000363764 00000 n +0000363903 00000 n +0000368049 00000 n +0000373088 00000 n +0000373226 00000 n +0000373365 00000 n +0000373504 00000 n +0000378279 00000 n +0000378424 00000 n +0000378563 00000 n +0000378702 00000 n +0000378840 00000 n +0000382121 00000 n +0000387985 00000 n +0000388128 00000 n +0000388283 00000 n +0000394390 00000 n +0000395998 00000 n +0000398580 00000 n +0000398654 00000 n +0000398728 00000 n +0000398802 00000 n +0000398876 00000 n +0000398950 00000 n +0000399024 00000 n +0000399099 00000 n +0000399174 00000 n +0000399278 00000 n +0000399382 00000 n +0000399487 00000 n +0000399592 00000 n +0000399697 00000 n +0000399802 00000 n +0000399907 00000 n +0000400012 00000 n +0000400117 00000 n +0000400222 00000 n +0000400297 00000 n +0000400372 00000 n +0000400447 00000 n +0000400522 00000 n +0000400597 00000 n +0000400672 00000 n +0000400747 00000 n +0000400822 00000 n +0000400897 00000 n +0000400972 00000 n +0000401052 00000 n +0000401130 00000 n +0000401206 00000 n +0000401284 00000 n +0000401360 00000 n +0000401436 00000 n +0000401514 00000 n +0000401590 00000 n +0000401666 00000 n +0000401744 00000 n +0000401820 00000 n +0000401897 00000 n +0000401976 00000 n +0000402053 00000 n +0000402130 00000 n +0000402209 00000 n +0000402286 00000 n +0000402363 00000 n +0000402442 00000 n +0000402519 00000 n +0000402596 00000 n +0000402675 00000 n +0000402752 00000 n +0000402857 00000 n +0000402962 00000 n +0000403067 00000 n +0000403172 00000 n +0000403277 00000 n +0000403382 00000 n +0000403487 00000 n +0000403592 00000 n +0000403697 00000 n +0000403802 00000 n +0000403907 00000 n +0000404012 00000 n +0000404117 00000 n +0000404222 00000 n +0000404327 00000 n +0000404432 00000 n +0000404537 00000 n +0000404642 00000 n +0000404747 00000 n +0000404852 00000 n +0000404957 00000 n +0000405034 00000 n +0000405113 00000 n +0000405190 00000 n +0000405267 00000 n +0000405346 00000 n +0000405423 00000 n +0000405500 00000 n +0000405579 00000 n +0000405656 00000 n +0000405733 00000 n +0000405812 00000 n +0000405889 00000 n +0000405966 00000 n +0000406045 00000 n +0000406122 00000 n +0000406199 00000 n +0000406278 00000 n +0000406355 00000 n +0000406432 00000 n +0000406511 00000 n +0000406588 00000 n +0000406665 00000 n +0000406744 00000 n +0000406821 00000 n +0000406900 00000 n +0000406975 00000 n +0000407056 00000 n +0000407131 00000 n +0000407212 00000 n +0000407299 00000 n +0000407374 00000 n +0000407449 00000 n +0000407523 00000 n +0000407597 00000 n +0000407722 00000 n +0000407799 00000 n +0000407902 00000 n +0000407979 00000 n +0000408065 00000 n +0000408183 00000 n +0000408260 00000 n +0000408378 00000 n +0000408455 00000 n +0000408530 00000 n +0000408605 00000 n +0000408702 00000 n +0000408779 00000 n +0000408865 00000 n +0000408945 00000 n +0000409033 00000 n +0000409108 00000 n +0000409183 00000 n +0000409258 00000 n +0000409334 00000 n +0000409413 00000 n +0000409488 00000 n +0000409580 00000 n +0000409672 00000 n +0000409764 00000 n +0000409856 00000 n +0000409948 00000 n +0000410024 00000 n +0000410102 00000 n +0000410180 00000 n +0000410258 00000 n +0000410336 00000 n +0000410411 00000 n +0000410487 00000 n +0000410564 00000 n +0000410644 00000 n +0000410724 00000 n +0000410801 00000 n +0000410878 00000 n +0000410958 00000 n +0000411045 00000 n +0000411134 00000 n +0000411214 00000 n +0000411290 00000 n +0000411366 00000 n +0000411443 00000 n +0000411520 00000 n +0000411597 00000 n +0000411675 00000 n +0000411753 00000 n +0000411829 00000 n +0000411906 00000 n +0000411986 00000 n +0000412063 00000 n +0000412143 00000 n +0000412219 00000 n +0000412299 00000 n +0000412380 00000 n +0000412461 00000 n +0000412542 00000 n +0000412623 00000 n +0000412705 00000 n +0000412780 00000 n +0000412856 00000 n +0000412934 00000 n +0000413012 00000 n +0000413093 00000 n +0000413174 00000 n +0000413263 00000 n +0000413343 00000 n +0000413423 00000 n +0000413499 00000 n +0000413576 00000 n +0000413662 00000 n +0000413748 00000 n +0000413834 00000 n +0000413912 00000 n +0000413990 00000 n +0000414068 00000 n +0000414146 00000 n +0000414224 00000 n +0000414302 00000 n +0000414380 00000 n +0000414458 00000 n +0000414534 00000 n +0000414613 00000 n +0000414688 00000 n +0000414763 00000 n +0000414843 00000 n +0000414923 00000 n +0000415003 00000 n +0000415088 00000 n +0000415181 00000 n +0000415262 00000 n +0000415343 00000 n +0000415424 00000 n +0000415511 00000 n +0000415592 00000 n +0000415673 00000 n +0000415760 00000 n +0000415841 00000 n +0000415922 00000 n +0000416003 00000 n +0000416084 00000 n +0000416165 00000 n +0000416241 00000 n +0000416319 00000 n +0000416397 00000 n +0000416472 00000 n +0000416548 00000 n +0000416626 00000 n +0000416705 00000 n +0000416785 00000 n +0000416865 00000 n +0000416945 00000 n +0000417023 00000 n +0000417101 00000 n +0000417179 00000 n +0000417257 00000 n +0000417343 00000 n +0000417436 00000 n +0000417512 00000 n +0000417587 00000 n +0000417663 00000 n +0000417741 00000 n +0000417817 00000 n +0000417893 00000 n +0000417970 00000 n +0000418047 00000 n +0000418124 00000 n +0000418202 00000 n +0000418280 00000 n +0000418358 00000 n +0000418435 00000 n +0000418515 00000 n +0000418591 00000 n +0000418668 00000 n +0000418748 00000 n +0000418828 00000 n +0000418905 00000 n +0000418982 00000 n +0000419059 00000 n +0000419136 00000 n +0000419216 00000 n +0000419296 00000 n +0000419389 00000 n +0000419482 00000 n +0000419557 00000 n +0000419633 00000 n +0000419711 00000 n +0000419789 00000 n +0000419867 00000 n +0000419943 00000 n +0000420019 00000 n +0000420096 00000 n +0000420173 00000 n +0000420250 00000 n +0000420327 00000 n +0000420404 00000 n +0000420480 00000 n +0000420557 00000 n +0000420637 00000 n +0000420715 00000 n +0000420797 00000 n +0000420872 00000 n +0000420948 00000 n +0000421026 00000 n +0000421106 00000 n +0000421184 00000 n +0000421262 00000 n +0000421340 00000 n +0000421418 00000 n +0000421496 00000 n +0000421574 00000 n +0000421652 00000 n +0000421730 00000 n +0000421808 00000 n +0000421885 00000 n +0000421962 00000 n +0000422055 00000 n +0000422148 00000 n +0000422241 00000 n +0000422318 00000 n +0000422395 00000 n +0000422472 00000 n +0000422549 00000 n +0000422627 00000 n +0000422705 00000 n +0000422781 00000 n +0000422857 00000 n +0000422934 00000 n +0000423012 00000 n +0000423090 00000 n +0000423168 00000 n +0000423246 00000 n +0000423326 00000 n +0000423406 00000 n +0000423486 00000 n +0000423563 00000 n +0000423640 00000 n +0000423717 00000 n +0000423810 00000 n +0000423903 00000 n +0000423979 00000 n +0000424069 00000 n +0000424145 00000 n +0000424225 00000 n +0000424301 00000 n +0000424378 00000 n +0000424458 00000 n +0000424538 00000 n +0000424614 00000 n +0000424691 00000 n +0000424769 00000 n +0000424847 00000 n +0000424925 00000 n +0000425003 00000 n +0000425083 00000 n +0000425163 00000 n +0000425240 00000 n +0000425333 00000 n +0000425426 00000 n +0000425519 00000 n +0000425612 00000 n +0000425705 00000 n +0000425781 00000 n +0000425859 00000 n +0000425934 00000 n +0000426010 00000 n +0000426088 00000 n +0000426166 00000 n +0000426245 00000 n +0000426331 00000 n +0000426417 00000 n +0000426497 00000 n +0000426583 00000 n +0000426669 00000 n +0000426749 00000 n +0000426825 00000 n +0000426901 00000 n +0000426980 00000 n +0000427055 00000 n +0000427130 00000 n +0000427206 00000 n +0000427284 00000 n +0000427360 00000 n +0000427436 00000 n +0000427516 00000 n +0000427593 00000 n +0000427670 00000 n +0000427750 00000 n +0000427827 00000 n +0000427904 00000 n +0000427984 00000 n +0000428061 00000 n +0000428138 00000 n +0000428215 00000 n +0000428292 00000 n +0000428369 00000 n +0000428446 00000 n +0000428523 00000 n +0000428629 00000 n +0000428735 00000 n +0000428841 00000 n +0000428947 00000 n +0000429053 00000 n +0000429159 00000 n +0000429265 00000 n +0000429371 00000 n +0000429477 00000 n +0000429583 00000 n +0000429689 00000 n +0000429795 00000 n +0000429901 00000 n +0000430007 00000 n +0000430113 00000 n +0000430219 00000 n +0000430325 00000 n +0000430405 00000 n +0000430482 00000 n +0000430559 00000 n +0000430636 00000 n +0000430713 00000 n +0000430793 00000 n +0000430870 00000 n +0000430947 00000 n +0000431024 00000 n +0000431101 00000 n +0000431178 00000 n +0000431255 00000 n +0000431332 00000 n +0000431409 00000 n +0000431515 00000 n +0000431621 00000 n +0000431727 00000 n +0000431804 00000 n +0000431881 00000 n +0000431958 00000 n +0000432035 00000 n +0000432112 00000 n +0000432218 00000 n +0000432311 00000 n +0000432417 00000 n +0000432494 00000 n +0000432570 00000 n +0000432646 00000 n +0000432739 00000 n +0000432844 00000 n +0000432949 00000 n +0000433025 00000 n +0000433101 00000 n +0000433177 00000 n +0000433253 00000 n +0000433329 00000 n +0000433405 00000 n +0000433482 00000 n +0000433560 00000 n +0000433638 00000 n +0000433716 00000 n +0000433794 00000 n +0000433891 00000 n +0000433997 00000 n +0000434103 00000 n +0000434181 00000 n +0000434259 00000 n +0000434337 00000 n +0000434415 00000 n +0000434493 00000 n +0000434571 00000 n +0000434649 00000 n +0000434727 00000 n +0000434821 00000 n +0000434898 00000 n +0000434979 00000 n +0000435056 00000 n +0000435133 00000 n +0000435210 00000 n +0000435287 00000 n +0000435364 00000 n +0000435441 00000 n +0000435519 00000 n +0000435597 00000 n +0000435675 00000 n +0000435753 00000 n +0000435859 00000 n +0000435965 00000 n +0000436059 00000 n +0000436149 00000 n +0000436255 00000 n +0000436361 00000 n +0000436463 00000 n +0000436569 00000 n +0000436659 00000 n +0000436765 00000 n +0000436871 00000 n +0000436977 00000 n +0000437083 00000 n +0000437193 00000 n +0000437283 00000 n +0000437390 00000 n +0000437497 00000 n +0000437587 00000 n +0000437692 00000 n +0000437777 00000 n +0000437854 00000 n +0000437931 00000 n +0000438008 00000 n +0000438085 00000 n +0000438162 00000 n +0000438239 00000 n +0000438316 00000 n +0000438393 00000 n +0000438482 00000 n +0000438560 00000 n +0000438638 00000 n +0000438716 00000 n +0000438794 00000 n +0000438872 00000 n +0000438950 00000 n +0000439039 00000 n +0000439145 00000 n +0000439223 00000 n +0000439304 00000 n +0000439382 00000 n +0000439460 00000 n +0000439538 00000 n +0000439627 00000 n +0000439705 00000 n +0000439783 00000 n +0000439861 00000 n +0000439967 00000 n +0000440073 00000 n +0000440167 00000 n +0000440245 00000 n +0000440331 00000 n +0000440437 00000 n +0000440526 00000 n +0000440604 00000 n +0000440682 00000 n +0000440760 00000 n +0000440854 00000 n +0000440948 00000 n +0000441042 00000 n +0000441119 00000 n +0000441196 00000 n +0000441273 00000 n +0000441350 00000 n +0000441455 00000 n +0000441540 00000 n +0000441629 00000 n +0000441706 00000 n +0000441792 00000 n +0000441898 00000 n +0000442001 00000 n +0000442079 00000 n +0000442157 00000 n +0000442235 00000 n +0000442313 00000 n +0000442391 00000 n +0000442469 00000 n +0000442547 00000 n +0000442625 00000 n +0000442703 00000 n +0000442781 00000 n +0000442859 00000 n +0000442937 00000 n +0000443026 00000 n +0000443132 00000 n +0000443222 00000 n +0000443311 00000 n +0000443417 00000 n +0000443507 00000 n +0000443585 00000 n +0000443666 00000 n +0000443744 00000 n +0000443822 00000 n +0000443900 00000 n +0000443978 00000 n +0000444054 00000 n +0000444130 00000 n +0000444224 00000 n +0000444318 00000 n +0000444412 00000 n +0000444493 00000 n +0000444568 00000 n +0000444643 00000 n +0000444733 00000 n +0000444814 00000 n +0000444904 00000 n +0000444985 00000 n +0000445067 00000 n +0000445158 00000 n +0000445246 00000 n +0000445337 00000 n +0000445437 00000 n +0000445528 00000 n +0000445610 00000 n +0000445692 00000 n +0000445783 00000 n +0000445865 00000 n +0000445956 00000 n +0000446038 00000 n +0000446132 00000 n +0000446214 00000 n +0000446302 00000 n +0000446392 00000 n +0000446473 00000 n +0000446554 00000 n +0000446629 00000 n +0000446704 00000 n +0000446785 00000 n +0000446860 00000 n +0000446937 00000 n +0000447012 00000 n +0000447102 00000 n +0000447183 00000 n +0000447265 00000 n +0000447347 00000 n +0000447441 00000 n +0000447517 00000 n +0000447593 00000 n +0000447669 00000 n +0000447745 00000 n +0000447834 00000 n +0000447923 00000 n +0000448036 00000 n +0000448116 00000 n +0000448342 00000 n +0000448466 00000 n +0000448582 00000 n +0000448688 00000 n +0000448786 00000 n +0000448884 00000 n +0000448982 00000 n +0000449080 00000 n +0000449178 00000 n +0000449284 00000 n +0000449390 00000 n +0000449496 00000 n +0000449594 00000 n +0000449732 00000 n +0000449807 00000 n +0000449882 00000 n +0000449957 00000 n +0000450032 00000 n +0000450107 00000 n +0000450282 00000 n +0000450385 00000 n +0000450497 00000 n +0000450738 00000 n +0000450984 00000 n +0000451234 00000 n +0000451314 00000 n +0000455021 00000 n +0000455277 00000 n +0000455531 00000 n +0000456142 00000 n +0000456603 00000 n +0000456923 00000 n +0000457367 00000 n +0000457875 00000 n +0000458351 00000 n +0000458902 00000 n +0000459483 00000 n +0000460007 00000 n +0000460581 00000 n +0000461171 00000 n +0000461693 00000 n +0000462066 00000 n +0000462537 00000 n +0000462998 00000 n +0000463543 00000 n +0000464115 00000 n +0000464624 00000 n +0000465107 00000 n +0000465666 00000 n +0000466263 00000 n +0000466656 00000 n +0000467135 00000 n +0000467661 00000 n +0000468081 00000 n +0000468608 00000 n +0000469105 00000 n +0000469676 00000 n +0000470174 00000 n +0000470737 00000 n +0000471349 00000 n +0000471890 00000 n +0000472411 00000 n +0000473014 00000 n +0000473662 00000 n +0000474217 00000 n +0000474843 00000 n +0000475215 00000 n +0000475698 00000 n +0000476221 00000 n +0000476637 00000 n +0000477147 00000 n +0000477678 00000 n +0000478162 00000 n +0000478722 00000 n +0000479239 00000 n +0000479835 00000 n +0000480481 00000 n +0000481036 00000 n +0000481672 00000 n +0000482326 00000 n +0000482890 00000 n +0000483555 00000 n +0000484217 00000 n +0000484639 00000 n +0000485146 00000 n +0000485714 00000 n +0000486168 00000 n +0000486670 00000 n +0000487272 00000 n +0000487907 00000 n +0000488460 00000 n +0000488991 00000 n +0000489435 00000 n +0000489954 00000 n +0000490529 00000 n +0000491006 00000 n +0000491571 00000 n +0000492155 00000 n +0000492654 00000 n +0000493243 00000 n +0000493838 00000 n +0000493918 00000 n +0000503147 00000 n +0000503227 00000 n +0000507498 00000 n +0000507579 00000 n +0000518339 00000 n +0000518420 00000 n +0000529180 00000 n +0000529261 00000 n +0000540021 00000 n +0000540101 00000 n +0000550049 00000 n +0000550129 00000 n +0000560077 00000 n +0000560157 00000 n +0000570105 00000 n +0000570488 00000 n +0000570846 00000 n +0000571365 00000 n +0000571762 00000 n +0000571962 00000 n +0000572262 00000 n +0000572362 00000 n +0000572462 00000 n +0000572562 00000 n +0000572662 00000 n +0000572762 00000 n +0000572862 00000 n +0000572962 00000 n +0000573118 00000 n +0000573202 00000 n +0000573366 00000 n +0000573450 00000 n +0000573550 00000 n +0000573650 00000 n +0000573750 00000 n +0000573850 00000 n +0000573950 00000 n +0000574050 00000 n +0000574150 00000 n +0000574250 00000 n +0000574332 00000 n +0000574414 00000 n +0000574496 00000 n +0000574578 00000 n +0000574660 00000 n +0000574742 00000 n +0000574824 00000 n +0000574906 00000 n +0000574988 00000 n +0000575090 00000 n +0000575147 00000 n +0000575204 00000 n +0000575261 00000 n +0000575318 00000 n +0000575375 00000 n +0000575458 00000 n +0000575541 00000 n +0000575683 00000 n +0000575766 00000 n +0000575849 00000 n +0000575932 00000 n +0000576015 00000 n +0000576098 00000 n +0000576181 00000 n +0000576264 00000 n +0000576486 00000 n +0000576569 00000 n +0000576652 00000 n +0000576735 00000 n +0000576818 00000 n +0000576901 00000 n +0000576984 00000 n +0000577067 00000 n +0000577150 00000 n +0000577233 00000 n +0000577316 00000 n +0000577399 00000 n +0000577482 00000 n +0000577565 00000 n +0000577648 00000 n +0000577731 00000 n +0000577814 00000 n +0000577897 00000 n +0000577955 00000 n +0000578013 00000 n +0000578071 00000 n +0000578129 00000 n +0000578187 00000 n +0000578245 00000 n +0000578304 00000 n +0000578363 00000 n +0000578422 00000 n +0000578481 00000 n +0000578540 00000 n +0000578599 00000 n +0000578658 00000 n +0000578782 00000 n +0000578906 00000 n +0000579030 00000 n +0000579121 00000 n +0000579228 00000 n +0000579311 00000 n +0000579402 00000 n +0000579517 00000 n +0000579616 00000 n +0000579732 00000 n +0000579848 00000 n +0000579972 00000 n +0000580070 00000 n +0000580194 00000 n +0000580278 00000 n +0000580362 00000 n +0000580446 00000 n +0000580530 00000 n +0000580614 00000 n +0000580698 00000 n +0000580782 00000 n +0000580867 00000 n +0000580952 00000 n +0000581037 00000 n +0000581122 00000 n +0000581207 00000 n +0000581292 00000 n +0000581377 00000 n +0000581462 00000 n +0000581547 00000 n +0000581632 00000 n +0000581717 00000 n +0000581802 00000 n +0000581887 00000 n +0000581947 00000 n +0000582032 00000 n +0000582117 00000 n +0000582202 00000 n +0000582335 00000 n +0000582420 00000 n +0000582505 00000 n +0000582590 00000 n +0000582675 00000 n +0000582760 00000 n +0000582845 00000 n +0000582930 00000 n +0000583015 00000 n +0000583107 00000 n +0000583192 00000 n +0000583277 00000 n +0000583362 00000 n +0000583447 00000 n +0000583532 00000 n +0000583617 00000 n +0000583702 00000 n +0000583787 00000 n +0000583872 00000 n +0000583957 00000 n +0000584042 00000 n +0000584127 00000 n +0000584212 00000 n +0000584297 00000 n +0000584382 00000 n +0000584467 00000 n +0000584552 00000 n +0000584637 00000 n +0000584722 00000 n +0000584807 00000 n +0000584892 00000 n +0000584977 00000 n +0000585062 00000 n +0000585147 00000 n +0000585232 00000 n +0000585317 00000 n +0000585402 00000 n +0000585487 00000 n +0000585572 00000 n +0000585657 00000 n +0000585742 00000 n +0000585802 00000 n +0000585862 00000 n +0000585922 00000 n +0000586007 00000 n +0000586092 00000 n +0000586177 00000 n +0000586262 00000 n +0000586347 00000 n +0000586432 00000 n +0000586517 00000 n +0000586602 00000 n +0000586687 00000 n +0000586772 00000 n +0000586857 00000 n +0000586942 00000 n +0000587027 00000 n +0000587112 00000 n +0000587197 00000 n +0000587282 00000 n +0000587367 00000 n +0000587452 00000 n +0000587537 00000 n +0000587622 00000 n +0000587707 00000 n +0000587792 00000 n +0000587877 00000 n +0000587962 00000 n +0000588047 00000 n +0000588132 00000 n +0000588217 00000 n +0000588302 00000 n +0000588362 00000 n +0000588422 00000 n +0000588482 00000 n +0000588566 00000 n +0000588662 00000 n +0000588747 00000 n +0000588831 00000 n +0000588927 00000 n +0000589012 00000 n +0000589096 00000 n +0000589180 00000 n +0000589276 00000 n +0000589361 00000 n +0000589445 00000 n +0000589541 00000 n +0000589626 00000 n +0000589710 00000 n +0000589806 00000 n +0000589891 00000 n +0000589975 00000 n +0000590059 00000 n +0000590155 00000 n +0000590240 00000 n +0000590324 00000 n +0000590438 00000 n +0000590523 00000 n +0000590608 00000 n +0000590693 00000 n +0000590777 00000 n +0000590861 00000 n +0000590957 00000 n +0000591042 00000 n +0000591126 00000 n +0000591210 00000 n +0000591315 00000 n +0000591400 00000 n +0000591485 00000 n +0000591569 00000 n +0000591653 00000 n +0000591710 00000 n +0000591770 00000 n +0000591885 00000 n +0000592054 00000 n +0000592196 00000 n +0000592410 00000 n +0000592615 00000 n +0000592675 00000 n +0000592735 00000 n +0000592795 00000 n +0000612164 00000 n +0000612241 00000 n +0000612503 00000 n +0000612580 00000 n +0000612851 00000 n +0000612928 00000 n +0000613195 00000 n +0000613272 00000 n +0000613534 00000 n +0000613591 00000 n +0000613648 00000 n +0000613708 00000 n +0000613801 00000 n +0000613895 00000 n +0000614020 00000 n +0000614113 00000 n +0000614206 00000 n +0000614299 00000 n +0000614392 00000 n +0000614485 00000 n +0000614579 00000 n +0000614674 00000 n +0000614769 00000 n +0000614864 00000 n +0000614959 00000 n +0000615054 00000 n +0000615149 00000 n +0000615244 00000 n +0000615339 00000 n +0000615434 00000 n +0000615529 00000 n +0000615624 00000 n +0000615719 00000 n +0000615805 00000 n +0000615900 00000 n +0000615995 00000 n +0000616090 00000 n +0000616185 00000 n +0000616280 00000 n +0000616375 00000 n +0000616470 00000 n +0000616565 00000 n +0000616660 00000 n +0000616755 00000 n +0000616850 00000 n +0000616945 00000 n +0000617040 00000 n +0000617135 00000 n +0000617230 00000 n +0000617325 00000 n +0000617420 00000 n +0000617515 00000 n +0000617610 00000 n +0000617705 00000 n +0000617800 00000 n +0000617895 00000 n +0000617990 00000 n +0000618085 00000 n +0000618180 00000 n +0000618275 00000 n +0000618370 00000 n +0000618465 00000 n +0000618560 00000 n +0000618655 00000 n +0000618715 00000 n +0000618775 00000 n +0000618835 00000 n +0000618895 00000 n +0000618955 00000 n +0000619015 00000 n +0000619075 00000 n +0000619135 00000 n +0000619195 00000 n +0000672310 00000 n +0000702894 00000 n +0000743174 00000 n +trailer +<< +/Size 1215 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +>> +startxref +750323 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R] +/SigFlags 3 +>> +>> +endobj +1215 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature1) +/V 1216 0 R +/P 20 0 R +/Rect [79.658356 357.63116 187.65836 411.63116] +/AP << +/N 1217 0 R +>> +>> +endobj +1216 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (neil@alkem.io) +/Location (Leidschendam) +/Reason (Signed with SignRequest.com on behalf of neil@alkem.io) +/M (D:20230907135734+00'00') +/Contents <308229CF06092A864886F70D010702A08229C0308229BC020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198E3082198A0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420B23C1840D0F987A09801A91AF553BF71501FE469B5407AD24DAB909AD767B4E930820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B0500048202005F33CF9B851AB10C07F2B0792DB31D75AA0407F666F0AD69D7CB2E9BA2D9AC8C690AD914313C84B18D63F3403DA7050D18D89256C08FD32BEE3373077EAAD9A05FA3930CBFB1E85A782E56F5E645E7C2C264D693DD04B09D050D84D3C49D1C0A28AB2007472F512FF6A0466B6A80762C3C43842AD860FD96F34003D5F20375C24EFCB460F61205BEF47CBC05A1B0DDD5F2EF4AFDCA6A98901AE059D3435413218A02FC8F87A4865B746D569E04895D13F3A00E86D8532A15DE0444429BDEC370423977E1F70E9177BA8CE5C50EAC145ADFDEED73FB2510D7F945D50F16217FDAF962F10432DB6356B64FB5691364F74529E6F2DC6FE50D432C60C3CD74EA58995C4AF20E04AA857AE777429F8058AB4679F3721D7855641B151296D957D5892371FF516823EED3D3E5E2034E3CD559DEDDBF906A54D2AFE02F2EF9A041A6D927066D6DC62E2610401A65CCBBF08D25A596BEE036C193AF237F5AFD7C09B3718CD6CDEBB3C7F408863A259DFC20A9F2E9462870F4E2278D84770AC7D6C0669232E46B6D3039E67DB419CE04D153F3CB72E45FA105D5D713B8DF89E2AD9A632A6E93983C10D5017AE80FEE85157445596EBAF95D7472E7A42B018C1C129509C0D54E1A833BB8A8939F99F08575F14535514DB5A2470A26480F5AD5D214D98AA1EB8E36DD273F36B7CC8EA519481D96AACEDBBC51E88D85DE09C81F2DCDFD76EBDDA182152E3082152A060B2A864886F70D010910020E318215193082151506092A864886F70D010702A082150630821502020103310F300D060960864801650304020105003081F3060B2A864886F70D0109100104A081E30481E03081DD020101060A6086480186FA6C0A03053031300D060960864801650304020105000420E90EDCD44A4CEF2810BEE981AB54CE472B5829093B05CE395BE3F2BB091FD48E020830D3054F9D9E4E4C180F32303233303930373133353733355A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353733355A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D010904312204205F03CE86EA391827E74C82E4546F10BB33CC7A1ABFC6128801F7B2DD26E183113082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B0482020014682E0A5B64ED63632B9897E3E5BE3D568DC77282D07B057B9E0BFA80F34632D05DA9281D8CFC5CA0DA8CC25969D577F9205DC8F40A9CE4026321A22C520F64002589F231FE363CE526689A18951C83985604B87EC1AD9BC8C34D29E0EC471701511674D7F351D45EE86750AA657A6EC346E3BFC9ABE52F733E68D6C69B069FAE01CEDC3525642C5E4A2CDAD8E050E0DB0A747D6FA020E4554A05ECDB2BE31215FC812F31DB5AD40E3C76EB9172C67A74044AA41DF2CD6588846D711F35B3F10FAB6F8980CA3EA2D00C141D9A6D6C30EF4BC3F225246CE03F57B4474BFCAF36D9EEF3125B1C4C17A7E56F01BE8F2514217CEB91F668A42E3E6C7F086E49C88D2D88F56804D06507A09E0D7F5414D9B43BE33B6E1A84415E9B55121A2902C6BE36B194E3269350EC8FAE219988065958826410A93D46A3D362B8469029F93C3AD93767B683C723B6221E995EEA32A96FB7F19382E9B536886564AC7CF9ABFE6F17CC183A415B3A9E80D1CE403087B22F6964C5E7FA1C2148343A7458732FF3B3398CCB1EBDDFAEBDF109A8800DE16CDA212FB9AF625FE72225C9DD091C940BE26FD510F56DC6AB1B420D1780EF3F44DE5783F4080F5A091505D6B5A839BC32C813A2FA9AB2666B6E13FAFAFC9AA4B05BF9819667850A270B0B281E6D83F3461F3CC8B0954F5A975D8B685D6463BC8F35C521655A234533ACB3B7C3DAED14C97100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 775400 851178 45079] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R] +>> +endobj +1217 0 obj +<< +/Length 52 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1218 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 108.0 54.0] +>> +stream +q +q +108 0 0 54 0 0 cm +/Im1 Do +Q +1 0 0 1 108 54 cm +Q + +endstream +endobj +1218 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 1219 0 R +/SMask 1220 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +1219 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +1220 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +xref +0 2 +0000000000 65535 f +0000774785 00000 n +20 1 +0000851237 00000 n +1215 6 +0000774984 00000 n +0000775162 00000 n +0000851824 00000 n +0000852046 00000 n +0000885865 00000 n +0000885946 00000 n +trailer +<< +/Size 1221 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 750323 +>> +startxref +895895 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R] +/SigFlags 3 +>> +/DSS 1221 0 R +>> +endobj +1221 0 obj +<< +/VRI 1222 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1222 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +1223 0 obj +<< +/Length 1050 +>> +stream +00mv:'>Y\lV0  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1+0)U"Entrust Class 3 Client CA - SHA2560 221028155008Z 251027155007Z0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority0"0  *H 0 +k_KYDz^#ib7B.j2m\ h)qM!1lv']k!8+U~cI’dt|8Va5lo429\7D֬~l؛vV]p ST{=YiSvH] 4?egUx3ߵt E"c P~{$6ݎ ggc00 U00UpXv`5ߍwz0U#0oN)N Fﭸ;r0U0U% 0 ++ 0 +00  *H  /QqգKX־s?/&~3;V:vVe~\T:Qn@)PKHiKn{Uvx9w +AOu)]bkƯ +jL%E{lXg `.t!7MO~v,6LequLc/C*(m qEUG"-ɂQf/9Sw{3.JJXB'`JP/`|{ +endstream +endobj +1224 0 obj +<< +/Length 1070 +>> +stream +0*08c0  *H 010U + Entrust.net1@0>U 7www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)1%0#U (c) 1999 Entrust.net Limited1301U*Entrust.net Certification Authority (2048)0 991224175051Z 290724141512Z010U + Entrust.net1@0>U 7www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)1%0#U (c) 1999 Entrust.net Limited1301U*Entrust.net Certification Authority (2048)0"0  *H 0 +MK d*+Kѿ JMvgx@sBhS+^v5|:[$}kK ܫ@$t) wU~jd[2Po=Ⱥf IvIg/Ɵq`-,ɐvf{xeS]<֜)/PH2UdLu߹U`0){Hi5?]zz"T&IhGӝBMo&!bfCpB0@0U0U00UU؉1$ p0  *H ;V0S|zyM3|Fcf$@!'rsO1 LhSƀ]=n ?/W,ɻDO}W/ Zn:֞ly^yL;e<=õý^[#h'\-o0ZѪ'yy3WBlVm ~ט!> +stream +00Uf)"X0  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1&0$UEntrust Timestamping CA - TS10 221028155214Z 251027155213Z0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority0"0  *H 0 +=jM|IT7`%- m2ɩ8,tǫP.@I:x=/ 7C"N잃h5ܢGyA"g7V<4gEK[I1 Ʋ%9ʯp姀ˌwNwIp$hVdc$<OAėt?X\^2A"+"N*/БadL{@2n(SyIuЪY?00 U00Utf?2T;_tљ0U#0q{h;94% bWh0U0U% 0 ++ 0 +00  *H  q k[Pcfn +g/mnK#s[M=턱j% Y!P!ZFUɆΦIlA_qٮurJJ鐵[r5"D4J,Br?)čx!,0KO:"YGG0(8aMe9EO@Zxqnڡ QCanQƌBi--X\Q 2 U2)~$> +stream +00Vu( 0  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1&0$UEntrust Timestamping CA - TS10 221004172103Z 290101000000Z0u1 0 UCA10UOntario10 UOttawa10U + Entrust, Inc.1+0)U"Entrust Timestamp Authority - TSA10"0  *H 0 +%E4 NrvPXFwTiq_Xg>gXNPn3îFgNmC7bCTʷJ*bЭg\XLIj_ewR_ugY.JcwZocM"/ +L%+dtúL MmgW/~|+zmR21P&O0 +8êtH/Fwȧ`ن ܩ?KT}.A PEA.61( +/:>ITJ~IJ\gH?$bK6TktK''O}'f'xsm}Ɏ8KW@xl/ʂ@}p>Xd+koh%g>zcQZt)/$nK ޑ5撅-\y(:xc!2uFƩvsW 0ou 3doR4H; dĪʭ{Go1(.G5xc%c 료A)TT(3ȏ D [&ZLi@D]An?7xʄ+_yٚ?]Bs yWklK*ήUϱ뱡`m/&S=s.r)ȅP_zʰ@3"w~"H?ҶI +endstream +endobj +1227 0 obj +<< +/Length 1690 +>> +stream +00~oc_Sڎ590  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1+0)U"Entrust Class 3 Client CA - SHA2560 201224124841Z 240323124841Z01 0 UNL10U Noord Holland10U Amsterdam10U + SignRequest10U SignRequest1&0$ *H  support@signrequest.com0"0  *H 0 +d3Ĭe&hGzON$oӰqo8. U$IyzI +Df6}`l݂ כ7!ѡEЛk2Z-L^bXu1C7FCn%5(!t,H0N8bY)cAL} Oށ7ߌ m 'vɑf(D @ahONr1%x FC)QGJ09MFz")#<C^HB$^JT͉]+{-D𑃽3\yo3˄iRp4.&QrEUڞ7Db$1H§"WS1CiqZ(8clL >!K_ ͈\#҅;G&gEglה;[i( +/BY8~jMHaӃ*m +[EX^]@I00 U00UzQh^ +>0U#0oN)N Fﭸ;r0g+[0Y0#+0http://ocsp.entrust.net02+0&http://aia.entrust.net/class3-2048.cer07U00.0,*(&http://crl.entrust.net/class3-sha2.crl0U0 U%0 `Hk(  ++7 + 0C +*H/ 503.http://timestamp.entrust.net/TSS/RFC3161sha2TS0 +*H/ 00BU ;0907 +`Hl +0)0'+https://www.entrust.net/rpa0  *H  )W[o>6ye3RQVTİzx }E,epZqd'egf;觚Q0 !?"ky uU]MOpD}䥫.U_Jlē[TI܀OHԃ_T1D<hn{d$&Hg= +J@ʬ)N3١_ ebib! )K?N΢k#I%k +endstream +endobj +1228 0 obj +<< +/Length 1341 +>> +stream +090! UQ0  *H  010U + Entrust.net1@0>U 7www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)1%0#U (c) 1999 Entrust.net Limited1301U*Entrust.net Certification Authority (2048)0 160225180816Z 290625183816Z01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1+0)U"Entrust Class 3 Client CA - SHA2560"0  *H 0 +ƜKOJ};Wv- /,1 =C.ԞU`˃._(:d?ˮ0`!fXNbgvNR{D-P!ͯ!%ϺGNqi#m5Vb!^"B2+'o ^iR~uE r+@nCBdDԦ E:dV(8#.82-7?}$젪#{)fnd*pX D0@0U04U%-0+++ ++7 +  `Hk( 0;U 40200U 0(0&+http://www.entrust.net/rpa0U003+'0%0#+0http://ocsp.entrust.net02U+0)0'%#!http://crl.entrust.net/2048ca.crl0UoN)N Fﭸ;r0U#0U؉1$ p0  *H  |xr!O*<ٞ7wӛ)҉@(LN}cN7`2ԓ[݊ KK[ >Xo}Yl;6> +stream +00 XQ 0  *H  010U + Entrust.net1@0>U 7www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)1%0#U (c) 1999 Entrust.net Limited1301U*Entrust.net Certification Authority (2048)0 150722190254Z 290622193254Z01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1&0$UEntrust Timestamping CA - TS10"0  *H 0 +#|KqXr]FÈ8ЊnV0dP}9fڄ(v`PiO>2^D":I`tT=A^C_(F+"[M[e,wЃGW|pbE'1 +UR`Kh2n4xd"4ZeˊEPtߓ4L;7IRSN.g\tQ㪎ٱ/_P0Q`"kT;D89#iG> +stream +0- +&0" +000֡N0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority20230907024500Z0s0q0I0 +PXTe1 J8(֖, oN)N Fﭸ;roc_Sڎ5920230907020000Z20230914015959Z0  *H  -ׂ'ajZ! MmtNb(#"/~GADtWZPepbY\)Ƌam6t8私E*3E~vbOg߬?h8Ug 䴑CyyP?LbJALܟ?*?ߙ ꑳ;PṽY6rӜ=,2-״20ٱ "?Ej@ޔ000mv:'>Y\lV0  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1+0)U"Entrust Class 3 Client CA - SHA2560 221028155008Z 251027155007Z0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority0"0  *H 0 +k_KYDz^#ib7B.j2m\ h)qM!1lv']k!8+U~cI’dt|8Va5lo429\7D֬~l؛vV]p ST{=YiSvH] 4?egUx3ߵt E"c P~{$6ݎ ggc00 U00UpXv`5ߍwz0U#0oN)N Fﭸ;r0U0U% 0 ++ 0 +00  *H  /QqգKX־s?/&~3;V:vVe~\T:Qn@)PKHiKn{Uvx9w +AOu)]bkƯ +jL%E{lXg `.t!7MO~v,6LequLc/C*(m qEUG"-ɂQf/9Sw{3.JJXB'`JP/`|{ +endstream +endobj +1231 0 obj +<< +/Length 1580 +>> +stream +0( +!0 +00 +0֡N0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority20230907060000Z0s0q0I0 +s9)"rd),vq{h;94% bWhVu( 20230907060000Z20230914055959Z0  *H  k+רq";PLE9b:tHՎӠ^D(RX%GC$<0kBK!6͹lJm2sSK7ϓc=h!{ C,P8S/R9'՜% \E!fMRĐ\A(n7J~>^_*A^M! <\8N[iXkF9nUY0 FD\'[R?{͕l?AuY4Fg |000Uf)"X0  *H  01 0 UUS10U + Entrust, Inc.1(0&U See www.entrust.net/legal-terms1907U 0(c) 2015 Entrust, Inc. - for authorized use only1&0$UEntrust Timestamping CA - TS10 221028155214Z 251027155213Z0L1 0 UUS10U + Entrust, Inc.1%0#UEntrust Validation Authority0"0  *H 0 +=jM|IT7`%- m2ɩ8,tǫP.@I:x=/ 7C"N잃h5ܢGyA"g7V<4gEK[I1 Ʋ%9ʯp姀ˌwNwIp$hVdc$<OAėt?X\^2A"+"N*/БadL{@2n(SyIuЪY?00 U00Utf?2T;_tљ0U#0q{h;94% bWh0U0U% 0 ++ 0 +00  *H  q k[Pcfn +g/mnK#s[M=턱j% Y!P!ZFUɆΦIlA_qٮurJJ鐵[r5"D4J,Br?)čx!,0KO:"YGG0(8aMe9EO@Zxqnڡ QCanQƌBi--X\Q 2 U2)~$ <6F900EFB411C9994EF19F61F86E66003>] +/Prev 895895 +>> +startxref +909510 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 909510 +>> +startxref +909950 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R] +/SigFlags 3 +>> +/DSS 1221 0 R +>> +endobj +1232 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature2) +/V 1233 0 R +/P 20 0 R +/Rect [80.65711 245.18927 169.6571 279.18927] +/AP << +/N 1234 0 R +>> +>> +endobj +1233 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (jennifer@jenniferbenson.nl) +/Location (Amsterdam) +/Reason (Signed with SignRequest.com on behalf of jennifer@jenniferbenson.nl) +/M (D:20230907135736+00'00') +/Contents <308229D006092A864886F70D010702A08229C1308229BD020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198F3082198B0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D0109043122042050B9CBA2BB72727D3B44DDA2E69438599E4F87EF01BBB3212D5A682D3F5F143530820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05000482020000A2FEB83E8438CB055FD5D8AE6EC4B2286E43E1DFC5222D03FCA8BF924E00B9920C5077AF4B303A4388086294531693B2A5D75295F11F3169AF3257A03DB0495956546F23981CCCF279A1886FAF60D32FC7DB5C18CE1482AFE8FCF0823B6F118178D170A89AD42103218029AA3F23D9472C1D064715040C9803517C3D0637AE6727CF670F55255BE3BEC1576F209F20C2A39AA8B7177370429F0F78333E627E0B4D8CD6F3D61ED0C006C4016E1A2278FEFCB27A9C7E03E788C69C5BDC2BC2C66AC7C1112EA8AB609C416CFCC35FAA4ECA6764198B438CE8F0C2F05801804E89369B2059413630D419FA895D937E12628D9E1346B9C8448307CDB41BE177DF15443B117562296DE1045AB818709F1628949680C9BA519A1503645386FFD0A53C2903209830D4A26374DDB48FACFE5C2A14B1B2A1BA643B54274787C3D8F040330118F73C7201B7675E0742CC30600B0E835F0EF7489D9F66B8AEF72ACFE1A976086EA30B5C1172C33A8564BB7FBD3A35C2DE731B6C217E8EF311C79F191746BD61635EAE6B2769B9551102835C4DC30CB47AAD87C5AD6E73CADCCAB83294FB19A63F9DF9852AF4D3F84E2E6D4EAE53A36A3B1A0DE5D8213DD4FA5A6E274D0C217CE836337FDAF6F82AD813E0D5D0EC09ED71C4DF16FE8313164365615872FDA856C49338CD409B3DA747C06FEED0281901DB4B5203B08AFFA9A21618D7BD78E4A182152F3082152B060B2A864886F70D010910020E3182151A3082151606092A864886F70D010702A082150730821503020103310F300D060960864801650304020105003081F4060B2A864886F70D0109100104A081E40481E13081DE020101060A6086480186FA6C0A03053031300D060960864801650304020105000420B91F2495D92B2CD17060F2A7EAFE5C33DDF113AF8A304FF91F49619324F1C38E02090080F810F30709DE30180F32303233303930373133353733375A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353733375A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D010904312204207F258EBA2604A2ED7694389CF6DC687DAD8E0BE6ED3E3A09906DD28719B719A93082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B048202008DD2CF071DE23F3B0C660CFA1BD8204C452D4D491A45F4EBB66D667BC0EB9ED25871CF639E713DE637E0AAD46CAEA74CC076706159ACE5CA8D3421E2810332443B26E71D275192F178DC8B50A265F77CB29A11FD49ECAD6F61609AAFFBE872AC1067FE8613B31212EEAA92793ABDE422F191872561E4D0FAE2778DA5803FE6497CDD13090A1CF50ECD8A07776546C59E241AB1460509D57AEA1E5F7586BE74FCD075D7D2DC32F7ECC26EC470FC7E57417A93D66807F009B616CB4F687408363EDE983F39F13E6830A2C33F5CEF5578DA0B8D057E885A456B8CB28438882F0BC556552A5411F43A7DF48107704071FFAD397CAFDBABDC49FF28CBBBC479DDA7EA59A4AD8DBB32249BA86DD4BB178D3BAB7E5C0E66DCBB8545CF0B9F1E7D68C7475D28EDE2D4ABFA2770F8483C841C2BCF9906184EC1E685F3F02067D391048DBA70BF0A3F3C26830834CD5C42C6D3D9790DD233FF7B3AC8C4C784A0159364C70061257CB73FBC9A9B3E3F4FEC151EDF46A2039E284C8E6E2D01C4486889114789C3F71441B808895CF5492B6C439C794FB2271A26AC0A8F3B101EEB15D0F74CACA5CCE6CE232BF7CA639185E2E9CE4E91AF334220088DAF0CE2AB3FD3FB103200FC95493F7FFED0949E11CA28F534C51B071BB088B0AFBD3ADE55117CEF04D66AB9E54E59AF19454E6B537CEE0C0779DBBE661C321773D3450E40AC04ACC763EE000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 910798 986576 11912] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R] +>> +endobj +1234 0 obj +<< +/Length 50 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1235 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 88.99999 34.0] +>> +stream +q +q +89 0 0 34 0 0 cm +/Im1 Do +Q +1 0 0 1 89 34 cm +Q + +endstream +endobj +1235 0 obj +<< +/Length 6106 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 512 +/Height 200 +/ColorSpace /DeviceRGB +/DecodeParms 1236 0 R +/SMask 1237 0 R +>> +stream +x[U۽l3 +!H0 # 2O% mw ; 鋂ya yXYqYAU{|.TʮJ>]S~3 P/v϶OgҔϋmew:;w^4M/8fץ$Zai](> @Z2CWm=ܼy}-xM=EJ. ]g^4f{@P`PmebOىL^[VtBNbQ``}^;甙Y֟$T0Q_2Z4?/rPmp|8Ny$./}7LnLD*dU7zdſm" +Ww),{4I04 __%I1`϶*,΅ >+;E`Z@t}zsֿzx̭X^> z~8}ky38/T[Y9,[~dKeYxG7ͺh{-\5qG~ۿN} W9EEsr:5죟|mQ$F#ēgFwHLgi2g|ޅP;:|< oz-ē|ϲj +ln(ʽZ$@l]|&]r$+X]OVjbr݆Qq$.ȳw"r9ҫ m%ꑇGfXޏP"% +fk}782ON + ?Ƕkv{ߝvR1tv>oۯ>iPO6ܲĿzF٬|z++,g=z+ecaZUNT A61i;aDuޞ8jh^j޷~KWUe L _YyO?f̌%Ϥe (sToAר+3..AB6=@<\W3ej\ܛnV3MUv{ro\n+EH\&ӝйjVnv}7rd6UR<:SyT(2f"s ,V3wliYlsSVظ MUjD{qGY|!)/4m_$y{{骖jLh,'R-"M;yi Cp'./6F٭<_.]A6s[hj݂/NGZ7Ϲx弶^ 9?|0֋ز5O.ԮKA)r'm$.,ѣmє cɪToy$ncLԦn)v[79w'7{miny9OsuuQ=\p0M<~_:aɽ2P0[?ZZV|O~;rIݞ+ޙ3]7w+=<8NmOrf{ڥ8["_zv11m2K9afC8묬&nWY[S3c# +)qJ\=di+:> >f}$lrGUޏΝQ'LvI7n;>>dixƄd STY&$ӲbC^3ʪ)нK Nl%7d`w[#j `09>ʥ&(NF[SpDM4% L?>yyS + m/HE|e_;nr6bf[_\:*unog2 T|VVڮ2VCS\ W4_|gS+߷ĕFk_ٹ&&`9E;=99 azzoAǶK>Im.-?ȹ,3%ė;D˟~: ?d?Cds2'Mkݽ&,T}3(2/t{F]"/ݮ!iך*(>{}SWėMMeTk*tgwmQhA) +k +Q|X}3C{rs+udy:EFPu#4O= <7O=5~=/ۍ:+(0]f: QqdDK3_SxWWVUhjrmn:E&.^ +Y} -]RWDmf +z{8xx9ڽtanNg? by~y>oT85 kܭabwfSS*Z,9Lƍ[o3 !+ % 7rOUwE$jU4). +ϳ.OVpv|eeSӐz%s)vE=W2.cp1G'SOD-i\ hGv0StڹOHR`_2Da)kEEX_e'G"rJ&֕ȏ)rVk_;_*fN>4Ulo>@˻%J#_}ToBys=O`h]EFPc*zչh:#ekWR䳽}Ų;,[A|ًݘ1%qSgV?Ϧ(! .?wlWW?(Gga|)Z)B#(phE9[+rѪ!9a_k\"Wx)g$/* Rf)]:7)ަz6mFY?W |'d.U٩Aßi:s"Z>|1m'wG^IRӤ)>m/Dj(&S +Rb<>uj+I+|?jfs d_.w+I1堸nghuuFB:Pq]L=~|F}hd qo/wwSV45(j fyAºVCSRx_[VTwbޭ)v +C{D33TL9X[7neƁzlZ[[WYA#0՛S} ~rx~lJX)5;o<ܼAͲK1T/U^Go<4L`C߯P" +VkrFbf EEK/<'oc!8_ᬭIӨ t_g&HӉ `d@KԉPW'ZXx*˓ruBx\T.Fwjq[&,Q Z"S,&ҋȘSԔ2'= j>IAב:+$5[ҭGM^"5|,ѸQglmF-+8=ɡ*XG駺}E"EVbRwF7]lj(!T/5I~{uP%p&O7pMjWUA+#ᵕa|,fRive}+4p#0`La44}6wm.K+:sZS|r3_ pVK|X@Ql2,[N1OGI ;^嶏@0Sx"(^TwR<qJw~Slj7BQ X7 <USL_Xpn*ׁv%4.A1dp _h@z}bu>n٢};KQTl9<58NnK1 "܅Pή3G+eVxF)Z܉A|sFܓESy)e:9zbքhm^@թ]KKu"wX:/ +eky^גQ&(¬M_|ܹ8sKdR 63XY𷿽XYշmSY :K;k +(ŋ " R8 +endstream +endobj +1236 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 512 +/Colors 3 +>> +endobj +1237 0 obj +<< +/Length 4096 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 512 +/Height 200 +/ColorSpace /DeviceGray +>> +stream +xyOU,&EgFxDH- +lŨz:DGiуe'{5/2,9s7w7{=~{|{Y$(ܜ8yٺ/goqJ82SޔtrğejZpFiV-qNx- GEwMpkM5"7 +;4c^*n2>x%Mx~uhڲVQUB#Uh Ru~fIz^﵊\ytΩܑ"^)ODVTؙFl*a V|NkQz-(7埘hI%}*뵬BNyr^~;7k]zGV!5ܠT~ڬzJMg=U;%;Qme<*Gϔ_׵/-b9~\ :an:- ˣ}pI^x_C8LTL^u3 oyV:QJWW>Mizy}mi0ɻ%)DڗRi*p'V*?cA= \ /:Exn_3f%nFSASPgW=CóKnXv66j2 +ߍ}g96Z$÷WAnMDcFKo4( (u9.·\ݜF~BZS*?cV$O,1K;V8-QLbڗjr\P* XwAS;ʓlG[ho=4~~S݋'nvQW7fFhb)%blٟmr:袂/&>mYub^'w䩧.P3=鞂TSkiRKSPr^'#).x_v LqOϢV%{*d.5bPxC_ߓtvae]*<.;0ռ%D( f% Hcsoo ؛84+yߡo]n+U$B~x-*y˅I94e!޲s{=X,7эq;@|nUlhJvN0RfC"kz"i.>o\Li 3` 6d*Ӳ2lZ2c~:"\*~^#i'zL`=cM#U7G{:;VGCZKԂ VͤYGD+VXLJC3=3l]yLi7݇u(>̚] Ιy8{{1=r=5.=eY۾?tA|82U$g!%d,sFW=Ku'7^hOļvkLjı"sx 7MӼ57]ph/m*~AZXFiR8vV?1 z1{ %OZL?u,G^ ̻g87oWusgz:߱,"hTBmX7͛Q m*^D4QVR_[\bZ'<[]Vvn2s6y[JIv&ԣR7}#55A:X$Ҋ>S&>g7l3gcV!^LM}0jSMv"O`h8lYcg=S;c{G +_z#k:1t^YѥcmݡUƣ8YjmV4%͘ G6nHS|\Uʲƀ"]Lg$-n 96ć^86)Eo݂'z7kdMDYِyNs_tx}4jpӗxFfk'D]d~ȋsGh-1TCf 2fYqE3̹+R4B[cRkAQb:cIR)mMМu7Y1b漬;>E$27KqrcI׳>VgMOWJp}*/fgrl<#I/My[&4Mm[k*.cEriTVq5feN;=Udk)"va^(jn|<%}ރ=EGe +M]fPhߚls>Zh5OV'gA-s;-/Pg$ybxۄ|IO"|%^lf~z/?64ԭ4 Nj-"X숦].i&B r +-y}>1?Ϊ_vIQ|4,m}nڭoH})ds=|!֨nא ] +/Prev 909950 +>> +startxref +998126 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R] +/SigFlags 3 +>> +/DSS 1238 0 R +>> +endobj +1238 0 obj +<< +/VRI 1239 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1239 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0000998490 00000 n +1238 2 +0000998712 00000 n +0000998849 00000 n +trailer +<< +/Size 1240 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 998126 +>> +startxref +999163 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ <1BBFF1B97FDF3CD7A0CCE8822B23E959>] +/Prev 999163 +>> +startxref +999422 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R] +/SigFlags 3 +>> +/DSS 1238 0 R +>> +endobj +1240 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature3) +/V 1241 0 R +/P 20 0 R +/Rect [81.159164 627.5022 208.15916 692.5022] +/AP << +/N 1242 0 R +>> +>> +endobj +1241 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (neil@alkem.io) +/Location (Leidschendam) +/Reason (Signed with SignRequest.com on behalf of neil@alkem.io) +/M (D:20230907135739+00'00') +/Contents <308229CF06092A864886F70D010702A08229C0308229BC020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198E3082198A0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420ED5B3B8A67F95F3A1CE1CC5ECB04EDB363BDC3E97DC497DB134FA7CB1BFC076A30820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B0500048202007DBE681307557319CB8B4F80EB4CF0980F9D1EAB33E1730955CF6044F2AB1F65CA60F649D73E61E6F01814F033E14C62D5ED24253D7D318393656D1B85CA22E78EA08AF1792DF757967DB4F8131ABA55AC7F2891EBA547C4590FDC2C5D3F5584C62033934E16F20637D50C5ED4F9B0EF59EEA966C5CDDBB37302DBD93217599A3F6E94D4B06F1DD497699512AE0DABB2DC155DAD5586AA2B696BA94F89538D2D36E203641F75896D93495D5966692C6FB381F8163E118C6BA8C2A7FE7C5F93A5FA6BDB58EEF8AFF3629BFF521FE81A9A373A277B8688E20EA6DD96A48474F0B2D87E5D894388129F56B85B1EA8B01B767829D30A2D541F44493822212D0550C6DDED79F989F0A88A4BD37429749943547EA3116A8C29D2921C508EADE474B2595F808FCD177DFEA6685E84F4AC7BED478EDDEC3330BFFB536973DDDD0D70FBA8D47FF3B11454F2F69D3FD4E61CC3399A0D2D1302D5E096D159D68760CBF3865C8E871D41C53690C5B21A8DC22AD37E79E9717080303A64A9A18A8D15F947D8B1BA42780B651E90C8D14A74DD1A3526D419EA02970046929064ECB315118AD00CFCF2F20D0A67A38B1F9C5E49B6D4A50361A3DC7170DE1C81427C44895743532C8F48E87A88093BFECD91F3734A07BA1681CA13F8CD104636D396EC894495DCB355A406EFA7FEB722088A782A6AFEAF0295B0D7750114060F6EC6BBF5408FB54FA182152E3082152A060B2A864886F70D010910020E318215193082151506092A864886F70D010702A082150630821502020103310F300D060960864801650304020105003081F3060B2A864886F70D0109100104A081E30481E03081DD020101060A6086480186FA6C0A03053031300D0609608648016503040201050004203EE3B743BD14CF5267ECE6A33AEE654E562872BA46DCAEDEC49B4E551124CD7102081B5BB01AEFF02731180F32303233303930373133353733395A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353733395A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D01090431220420DAAB7CAFD5532AAD7D0B0EB06EAD2E98C20F0588084A3BF6FEA34C996298D4063082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B0482020037D36B0D5DF0436B8DEA3DC1800E6510A30E129DD3A4483783997C8D4E74AAB4DD47C15CB3DC7131CEEF6D1B61D87228932D3176981F34A47B5E4A592D5E7280E3708DF312180A8F884F880661EE1CC00289A411BA6F376D81D78F7DF1C441AE836297AB335EC235FD4F553CCE6DE7F141523230CABB86AE42C64C0B584F42D7B552F6EE3810C5B5BCDB58143AA0746373C0ED1C9F91664B0D946563CE8884CA2216116F05A8C5823F20309E7D840E6C1BB4DCE83887AA3EC5960D67321CC4C1271849D02E792950F205455EDCAE16E6223603A7455FEA9E4CFE8ECAEDD55BF3756A4552CD28E4399802B5B45308C1DDAD3978082570FD5143D7B4C168ACAF37A0841FBFDBFABF990B998614571A54BF94BD5FB12E153E7C60E79765806A72041E496007A6BC4AFC42BF93E5EE2B0ED7513C97DA31CD51C7A81CD44A10BDBB78EBDD60B1F6E73DF19615A45B51AFF026E2D75CC8D5E8E66412C4679AE886E7F882539F56D0969244955EF57A262E22E88E60AC388AF2E87AC75D6843DF0883B5607B6A200109B29729CDC434D969471C9BCF4F386BE9BB74B8109D76BB62DD9431DD0D9C71A75610C15AE68BB672180EDA3F7D2E4FC1854C38FF161888355C042E621E37DF62C735029599FCB59E16ED52048AF53152631D6662151A025E190065F2418E4EE4E77CEDC735241812FA58EBBB952BF3B8925238CE80B4367DA36F00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1000256 1076034 45098] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R] +>> +endobj +1242 0 obj +<< +/Length 52 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1243 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 127.0 65.0] +>> +stream +q +q +127 0 0 65 0 0 cm +/Im1 Do +Q +1 0 0 1 127 65 cm +Q + +endstream +endobj +1243 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 1244 0 R +/SMask 1245 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +1244 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +1245 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +xref +0 2 +0000000000 65535 f +0000999611 00000 n +20 1 +0001076093 00000 n +1240 6 +0000999842 00000 n +0001000018 00000 n +0001076698 00000 n +0001076920 00000 n +0001110739 00000 n +0001110820 00000 n +trailer +<< +/Size 1246 +/Root 1 0 R +/Info 6 0 R +/ID [ <99918E8B3CA80A2F2002D5DC8E7765CA>] +/Prev 999422 +>> +startxref +1120769 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R] +/SigFlags 3 +>> +/DSS 1246 0 R +>> +endobj +1246 0 obj +<< +/VRI 1247 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1247 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001121134 00000 n +1246 2 +0001121365 00000 n +0001121502 00000 n +trailer +<< +/Size 1248 +/Root 1 0 R +/Info 6 0 R +/ID [ <67B7D237ADDA5EE0854F1DCEFC842A59>] +/Prev 1120769 +>> +startxref +1121961 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 1121961 +>> +startxref +1122222 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R] +/SigFlags 3 +>> +/DSS 1246 0 R +>> +endobj +1248 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature4) +/V 1249 0 R +/P 20 0 R +/Rect [81.66641 456.58716 212.66641 523.58716] +/AP << +/N 1250 0 R +>> +>> +endobj +1249 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (neil@alkem.io) +/Location (Leidschendam) +/Reason (Signed with SignRequest.com on behalf of neil@alkem.io) +/M (D:20230907135741+00'00') +/Contents <308229CF06092A864886F70D010702A08229C0308229BC020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198E3082198A0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420DB5EDF631ED9F07805206054487ABE60DB10F5E1B7289B7AF3DC43D2028CEFF130820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B050004820200844C0DEC9FBEF86A5E94FDACAD133123E0A0E55DB14FF1B5AD9A48587ABA08A5DB20F3039E116ED760A689C56ABD5C43BEDBFD0D7FDB8FD01FF46A6C629BBB5C672992E83B6B552D369AFC93CC5F26AA5FF3F6A2AAA4A799D190FECFD4A1DD25F6F585341DC797D25283F4CADC233A57C8C0235B9D632F8DE9BFD9BB8E5D6CD9A55D87BDDDC6DE79DF6B1CB62E9884E6ABFB435A9854FE2CA2A28261707715447114C6EFB9BA98EBBC441B903AB160E6F5A66DDD624E034C83A764B3ADD93C448D8F97B3CC656576A16104E23B55E8C8BEE51705502DA4221E18AFD4CADA87D9156975A2BA45F89CC7CD24900A035882133546081AFDD4D0507342D0B59B956332574A9CC55E405A375A5A9DB6970D73D0A281080350652B0B89B387FB2C45DC7483723C0E1A95866B847B7510E3B4D45CF90382BDFC2EE2D501F15932CC51D18F3E6127F2CCE1564AF3FA1B88980166CC78C80BDA7CB1606E1C5E25E690ACD07DBD970574EABF10625EFBBD890C342B4BE19CD9B9BE45413F15CB16AFED7125892E461EA6FB4D1DF0800AF6911B133DC2C229AD14343A9CE9D8C86205E09DF3E186C1EAAEEDB711EC1A8C6D5BAE0FF403004F3401CB751E15EF4E71BF9904641B4B3B140ADCD182F362F20E84EF427C3EB1F65838BDFBF23904C6BD7F951C00DF38D83045C86AD93F62835EB25A51D20DF4DDEEA0508F5E039B49278440FBFCA182152E3082152A060B2A864886F70D010910020E318215193082151506092A864886F70D010702A082150630821502020103310F300D060960864801650304020105003081F3060B2A864886F70D0109100104A081E30481E03081DD020101060A6086480186FA6C0A03053031300D0609608648016503040201050004208AC20F1BB5B7F38D79F2725273735143FF40E8754B938F656A3AAAF1A9317B5E020818E7B4D0C8F69990180F32303233303930373133353734325A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353734325A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D01090431220420F39B266671C840E1E56440EE4E00416972D8C558B6540C0223AC8CFED4E9795B3082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B04820200495BEE6AF5C944E20B1EC780A9B7FC502F62CDF0B0659F449E1F03C8FC0DE0FDFD83D2E7ACC3DF3C8307911E73711AB21A5E397BA7DC0ED85200F78CFC0223E41A533EDE48AE6D10D3FD9A7FBDB25B7B64D23ED8E5B30856E9B102AB221931022B8B5253987C970CE9DC4522B03DBB1C5A30A1F6E25CF5D73323D089826009CE3ADCA5AF2B1E8EB447ECEDD748E4D31D1403AB217F80B7FEDD46405B9D9519F8220196F91266A8FDF304C6DA95D3015EF89E31B58CFBE5014F3EA84B52F16769004F155D2F2C7F5B6AB09AAC4C8246C72AB0B1D13E357A6C3641299B05549BC1BCFD848504603EA59094199165F8D9C9A72A7356610EACFDC2B92FD0231C32B28CB12765E763B09DA92C85B6118D7A0D21E188FD92C394D810A039CFD34A4461E8CFB7F2E16D395FA11D2381A17AB9EFF03D00AA3602812690861D08BAAA6759889B152A4776396A05FB880A313C991945878149155EA5290764F77366755A4D905F72E7BB2810A601E5A839F124A50124021AC68987397A6F8CC3A8E4142DE26B51186B8C68E93753394CD2A9F15F67D8FF544841F3779BEB2CCE8C130404C43183875219AC4C029585731C5EB0A397FEBF1F0E4B2D430F5D98A3B6C746D4DFB08F90417104271D47424203BF10029DB00B35293E5D744118E1D5309EBA0104C8CB63397B83495F2787BDEFD782C97DF748B7F31AC3D93829626CAA4F9BF31A00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1123068 1198846 45108] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R 1248 0 R] +>> +endobj +1250 0 obj +<< +/Length 52 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1251 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 131.0 67.0] +>> +stream +q +q +131 0 0 67 0 0 cm +/Im1 Do +Q +1 0 0 1 131 67 cm +Q + +endstream +endobj +1251 0 obj +<< +/Length 33605 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceRGB +/DecodeParms 1252 0 R +/SMask 1253 0 R +>> +stream +x`ellMRB +')W;=ĂAiHBI !d7ffwѼ9@󉬛3}<0@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ Ι\R S]q]Dp|OT:Rv:)b8&-#cկ.o90]qlٲǏ +3r̾^jg}C&Ilyy.2 ! +>#X;*sZH彤ZJa67~_ zhkfM}9+S"AyĉW_}79^pДd{vd ÄBNbAHŴZi֌G.DIMTONN޼y+kO\dɒx$3\ڢ!w^7n۵kg]C}WGPbp GBAkٹ&NTkՏta_@x ~嫫k}\8Lb"j2,8doBC{@4P5SO=l1[ʶ)).~ j[oܥC\ozvV\ju͑  bIe?fXJ.ỗ{Ο3 Ïpin&(^zOrp8h./{\(_h4;wVر> WP^;Zj|a/ӒԔ +RLQXJ;J,>(u0בYD\Ns-O5n+^dk[+ӔD*KTA+**J>rDaae,i6\ezYa9CaGTV> S"JB~q+RRqA"Z,.ZZXTtm].ABxPRRRYY_{"\dtZ E<ƱX%E"2#-UCߴ6>@l{>z#GjZ{mm>MiG~ ,vNbbN +SPP0+a_ 6®\N #`#@<(`80geR)N  IBTgeVQUkt:do~si:5^;< r\!W;Hۃ6u1!6 ADb1J[CPFFܹs˿,|UUU3gδZ(%bnyyy1Hl~7@9Zus?'*wlni +\g07֔g&.KaU*ԩS +*|gww+Gbt,2 {gEU7 y=4/j6pc\ pW.OMKS("J$c` qBJ;Fp?@Uҋ :&xr4]N/bVbL&&p,d8.JKq&ݮժEn~WB7'|Dwpڝ2uadKJL3fZ_r +&;wloj%HODvt:!)NFdžX!p"G. EB$!1A.bDj4RRDb+0,k&jǍw1t ?^z m#5 Xz755x$T>+XxҒlioX&F)4yrR_k^>ph1 .upn"jGg'a*?`(0LvSs~dIIIIii)vɟLUUUYYna'|BdgWGwgwL0OZTlÜc>0`g1~ RJBeULBibZql  R"JRhiNKNIŧgIEbEX* ] !693<\scl q!CM#pt?@0ɤxx497$^=YxiE qqw.Xꩧ\Z>|ɓ=]ݧ;:pYI˭dʔNMJJu6g2a C0ٳQRuuunY60A6F"$NfØjV"Ch2)r}i AܹsO+ɒ%K + + + ,fW~ 5˲eˠB +noJTCQ!"I.}Z"d2)-(%?~x6iZTJSf0~Wo&4᨞ӵ}@#@ +W1X>*82mp#@&KLHdBiazׄÑJJx≌[D'j=v677;|J%؂ft.cDFƤoHNFdkkkGGG[kkSSlp9Lc6wY07R(%99##oQTqy6F: xÇ +p \ =.Re՚KwZlϫ>x/nѨ\~ 믿u+?Yɲ ~`1.sɒ%ן갍-A ^')1f( @J,-==95tccg̘vp-{t (WO@H ljbjmmPκ',== p;~9-SXJ"Fip$\\OEdҤsƅB7Ao8~+n :ue7CǍxW/MOK#f %4GRi0α!AWQ{hI \uuuWH%acSSkcٳ3EsTooh8D*¡>m0 0b0Fg'wqp\p'O[-V'@1jY9ٓorȱNsa%VNA ZQiΐ&U(B &S(JݟhYf]lSH+gϞ*>߸OWQ";>h_3cAovשׁڹ EpD$ALIKHMU\<~Ҥӧ _3m޶lg[``Xk "1j@$DjBDAryQ(R,*1tvҥ(Xt0}{=^h<CCnL1Ir (SwgO[G[{wg0z#D +<)|'«xpYaA~LOd0!VӋi1L8TA>I^.24>.>//WRXc3n.L9tѸ4mH+;vL:uŊݾ}[m݉~>c5IvkeJ"ްY𑜔dũ؅ϭ־N( +Sl\њ_ ?`!H8LsWcE8ZD=FU ^eNE"!@9k',E87"A8_ XLdrZ-İ,RN^N{g0"d~ Z~<+p` ޠĉ]P>5x^9)i428)2ZJKeR*FT cMR00wXi\N.x[ܰf} \. %Itp ( ( q2Z"o@Z(N hXd~oR$AL+S@ Sr&&J\$ jIQ"$N2?q f!ND0 1_}'? DP(ϼJ rtHՌ;NgfeyI+V ѮTOs CClsR}mn0:&%%yҔ);&L5:f\]UX]QUW/yc%BD s2$)9j0*L%0E#󓓓Op)[>s֝ݴib>rwf͕f6#IL.3bMR +&tp~6_H;ոqa.<;XBJՇkt1ltoԔ)ڳwXUPK=W?*:@0w;]0IpVsvjy<.#ZDIRX ˰[ju= +~?YY-xC5#D hK[>?=tW_}׉E1?ӮlDnښFФ46LCFzZvnν~[}UWW5bCD`zt89PPԞ? B}>eJ !+jvcB.'OH(o+9 j +=o֯_on `w@Fz^ju9ݰTDhx K@D kؼ( +EX=H#?I!ŠN* qBc 8EXeڬV(` TUZZ]ߨ +BȆ|T36胝es\Y 2`ِ=|Q.߷hQfVV+1ͳ +9_|kدMN557ۻr +|8U~vԒ䤔sgO>].FOfͧpǽo>o4]-`B'PDedgedkseGԙt'>Zo--]}fKGk[w}]{LY&MXEF=%2Ill`hM0^R} mª~ȏg߾--NK$@r,+jZ"[cyc{ϟj "W4ϟ?gάiS 0ƸX8gz?zH_o/&"ȘrLqqqF!0%mcc@[[h>4mV_UTT~>ىB\ 1BNTj^7{lMpfFvjZ=3~3??$9+ X9$p|[gGNQnOGa?^Iā,fK7`20RiR3GdOHN9v c P Ml|^%zy})[]-8$ZW .?S~&;1m&Nd?vX "s윬~X B*СCOA$mk gg͚ub7|q׮]{쁪7|?0 % <:D,';gTȑFM,:"⻎:maq]]M-ǀm`{YL\*% R"KUXd7hƎ>pɉJA<O,ڼy͍ +bB Ba8&\:RE*\EdBbDPZ!0F#&EyϿY gᴡ1߲/fƖ;BU |aUUUff&T/n#sko{ZZD4̅+A3n_zF=w\w9.80oa4 o\9[ +,;"P%K^GYtn J$#/> +E\I#G`WsˠX_q:Gu]+y$ ሄ"Lljax쬹n)Ij3}tam---SZ ̵CG|bcGjzz?p kڬ6~~2,J i<8 111**99`ل+ʄ(2o;vh)Tt.ˎ@5ZZʶl*Q)^?\N"hi:< qGBl]ڲ7m&%L*oa0l޼X3WUlj:p:lF"Zo2eXpBQьoй ҇Ek{ݑtw8~_LRx W*1괌4cZLt7N3vmB͡:8Ta Pfxs8$,`22jkj;U $)xtjj +zpÈ$ 44LϞ1WOG͕r'Ճy'1Mf3 ^|q՘1q[+vF+d7llnnܔH*a̘1ӳ>TI3XA{y*k5nZp˶՝XaPTyvqh١Y?,Vβ`iͭfrq,+}`99cGph=zi?F_~YV׶ֶuvup( S&:=3x^ȣ ++Oκ |qƍmoholr\!ݒS`XQLPTqN.*T >GAGIhQrJq ds۸ncGkGo|ȁngÝ.Ojz*ğ)$$͞=5Yt) W͟ʘ3o޼/_g,F,j4z)蛦7Fɉ `hOW*++~{-(?c$f0o3&sر:8³2BpO>䲿/s֮I.۲φ8)Jm3S:j ɾ}%%%GP|fOa$s2D ё,Hkmm6ĆvVpXDNZ 1)0-=豴4$z{1\iF=-u?xcaBivRb Ζ#66|kX.5  ^\"ٳl3ą>7d.r˼[H=f1*x^Ggb5,H<d?)H2|CygqKnܴKR1bE%ф֬ΎJCQ`%)Stɓo&a2"̎RtÆ e[,ʪJJAQ  zOe榦zAB.oJR]>[,涎v +tEg +KR0y险))2r,#iicKOlj4gikZoaa  Fk;\5'Tpp^w8t~&6wNٔGo!!Ez.8$ ƖuuII _/mɒ%0 +G[ֻ\n\nmw?r:BH4׿M;wV -^㏽m?=vTé/@x'huҒ^oZH666SrGgw8` CAՈŴRz;:2RRZ=cC/K.{nK̹4ooi$A c6[N;ñ +"F1'D'\88Kϙ'١D"1>aB)`"1+Wux-\LHϓd2DW<~k +V>ؿ{u",iFj.`>ķ u;vNuj99Շ54|M_zuPkRiSrؠ6&ho95- $\d|3UgezWA.>DbJ*>oXcaU-ݞRRٍضe޽nw4忼"cY~>vy 8PO.HX'%0WL ȅ_P;I%iرjKII  1ii[.mABx q,Q)kEnp ǎ۸qA.4cƍH_^O?tӗ_(j~7ø\V;+?E r\\1Ǝ-6oƾ֘-BJ=\?,n~/1ö@u<>/lE"L*Q)XcbR2Fqq8~AqV_en7÷ UUU#i]/f $2iMJ 5QآJ ;jH\` O^-&i$2a?ZvY$ ?.r|.˽ށ$=8AP8&Ⱥn)$@ IXp"!OBFPKJ$)JMMd8yN+ +Eff)!~у^^xW5qYn]_7Z,ݹ9YzӋ;M_|qHMx$ fP;jS"8C rc8S\NnT)k GdcG|0%"$F)|DU +8K_^S+*7'Ә\2ʨ}j}~Z$bF/^¦tէv]@=$E/';sΜ9ii.)W{1?X}59NA4Et":}(J2';[n1twuao+GT[z{ֶG',k2%&A3a|qq%>jM$o֮U--=}߁`ⵞOG܆R)IZi^i”+|\tu9\>%8kLq9]6t.'4]NL&'͘a, *KIRq4G(1EQ4g培{X'H&EKSr05h!9NTk4Ys^]#<bb!uCьn{^pBu}yӀID +\PҒx5~W}蹒# ﯾg֝Z^Vm E0RL(0')vZ-ҥK(E&}p:Doq!>DZ!/h4ěⳲ2Nk9x'%79~G ^;oo>/Ga~nS/W5k`8zIeʘl z]ss@.Fk2vnx<1 cpr5g8m|#3`X^@ 0~>Si1Xqb9._AD_P8TFL&))Ip>D#I1)@01a KS\,\xz ' pC?e4b''6lp{vٷooWGJ!} +F7o (C  ӱٵk7Quo5l}*ª>xU}ͱ&FTG=,7&Ih;DksS}~et8AMJL,6555r…Vu\x|sʷmx^2gK=. BxHB.Ϛ=e0 ghQN+9y;]pB0`Ffq:(yǢ +2\vhuaK/<.0P#`r( o뷹=3fF0 -Qz*E"D-@ pWSp)1c` c&A޻=raxd|.jW<<|LJk%'>В$ ++UbV!4ĤD?uR̒4%eo?oRk /LY'OYZUYYqF[Ҟgmk0t[<^/ǰ`h1{sJ"7/7 3'УGچ1(f[?^gώ>'Mc i~ZII_ooKK+`WO7 +7 RFG"M;cgk/!ó>OL?,J6@{{j,|U +E\kNBJ->otz!p\&kpE8?єΚ%ܓ2\d(Agòe ZÊ+l6d2 Q!Hm޼a綪v{ +Z$?_VOpB;Ҳ>XҨh12 EE?^aa8ƍs:;*KT*)? 4B!.ĩTinŒ>(|Tp׮]-'[N5>w54Vo4M==]=f]iL&KIJɞr zqͼ?ذ3җ||oꎎ.p\l`SpV~ ׌DgKKMMHHeaBs pN8cǶ={vu{ٝT`0)Ur/c)N7$дVMKI)sy$Ei4ZTisߥlAH !7]ݎ0jJZYR/, Z^wo|NVөu`A?bL$%F$& 93u+p0/1Hx\9 +JZ*ˑʕo&?mil>\})oVKDb_ùJG75k.Jgn 1Q:A35[b tŢƮ` \WA壓n" 8}ڰab{oѢE"^wwoOOOfEL "J?`Q|lQDӰS7-mݴ$b9׫ +9C6qxTtz%fD_yq^ii_8w 0q7%hs:~P^.!׏7Ycy dS?493曞 :+ڵUwڽ8*&={)~桇(ARrإ .#i))ɩX(.{omw|ޓu'LH" h1=hdnnv쪬Ywe④<_oo_ cX^))ɩSJǏKNNo--]]_"ñ\|\`>cG3j5M9n)t:;]ag…^)7( YXV#ceYGuz~Of8x]$z=viIIIp_~%_|f^v-[4>>eJn977Y>},:1b[NMI{໏C_>{d2\*D1Z"|Zf֜YI?OׯkժOZL0񓼌>\V;veI<VbŊ<ikkkiip{P,TJ}s0."\W0ryY1bꩧ6^q#ҥK/^nݺS<9ǍqͫW5,>W閲v +&%'sm޼y‚4~ ZZ*0;ݻ17_~Yj`7zŞxsG-#庺5kZ 1bԩ%Ç&<h )PJ Ʋj׮F,ɥ2|E2))J$Xc)!Ѡ7NN\.OII 9FVkŴ756՝GU(==fC \ɤN6'O:u٫/B u>ITl۶mx9cSSR_0|X_~偁Xc<Ԧׯ_gE<#-#wCm~Pd2'Np\ ߞ{H֭c +*byF㞻Xv@Q#FVz{ǟye}ƎT*Nl4 6V(Rw=qnw$'&*-"u ˁz'ze`OB]8@^z?uiZz +F8!>!AZo@nzPα]=s)//g]ɲ[˷}T)X1*x oyc?S + + hYp7놙7N *x JII\b 6iu:XJU!trA,,(V0l5B`)``Ñu@҈R 4vBĄۀ qX +f lek\UiU +1JYvNNBbܽc{}2H W.]W_sϝjh=~\V|^B21MC w%(=U{/+Ν+0yF@ȫ>r2HDĨUI2*--*wssg*Q1yҤbƞyZ^|׀L&6iJ5p.YJ++ DX,Hz1lP /tvu}g>I=7L-Yvxm-T"UhN3O07a2BNXmF jt+8~2n~H,,J=LpmAh12 V;y{P: 3QS:jBA-~皛[6lXOHL1A&F?$B5 Lرr +B8../P)<F(MoqUwuLNϲ'@Llih?~U+ihhxVDDFPQQy箧ƾK`;lB!,X Ӧ$d5޽7׭jm6{`tVzڔn _lظua(B9(11:Ѵ.orCIIi|R)S**CH_o? MCbXg?9A0g:5f#OJ!op~WUID===js´UmD"ڄȚ2^+ʂ?Ξ0~z|\BgM2Zr?474+e +YJNm>QqX\0}lͭXTM$ӌfgРǑ" ߴiSSSӬY,uBǎUk} B!/-)6|Xk̬,\^^v}}]}  3f̿s~G{ѣG$Hĸ,..7k쀟Yp7ߖ0sR 0!̚5{lxy"gr6o~^^-(2'BHcG6s7 +U/lljiT(nS~Æ g@,ݽ{ަfcitcƌ?yc=";ceZV__f>EPȤ2T6~9n5jyl]v^_ L 硂hogG+>uPHBh~p{zfɓa^GKK;+VDae3޻ZՇ=n'TV/,9̊3%N6M%L1cZ rAn\MPLofWWז6JD|^SbNolomXN,/ƦׯY ZJ u?/!0 `L +;VU\dI||&$7OwwuWo__sssi4 #ǎ?hdTt\Tb%l:PW_G4448T>bFo% + +s'nB1!p]_yykuvt֛m}" ܽ%'''& +g?H$UnzÜ9sGqK\BӔ:.srrRfϝP\5BN矇@P]]} c%b13=ԷF :Kh}0}G-vp|"7Sܹ@w=cs 7bhQo:sޝCmIyy9y7'[wU__o(UFE +6bz{!V>mV}x,.ną~i"e+TD6nG^WNFF#_Rwn-)ʬ 8vXVsG?(|7=^J=8%-?9|KTYe8!QVuı>|_RquUO-X A̙S{>w17MQW_'hk{"'Ի7mX_w2s,b8IZ.? OZ=EQ.SD#ƍ74,k8A>N,"!z,3z̘TAcyxf'0޹ZČ7:##?4DRWoذ޻rݻz,i.KgTw]QQQ_{C~Q͙4yhO I㾣|Ǒ#I)yp_y,Z1*Ɗ?|C&߲yB) q7V3gޭOc? q +0:G>>ܹҲzccc1-fanaDb,˅.Z `A9^<{H2T +uk_'[{ǹqn߻{Qtqѱb\t".EBP +* +%Va訨gUD RQ^ngccbj܀@Pޜ6('#3]213A)g֯Z3cťUٻ!~̔Tt--VVy’}y_) +~`1gb!" 3_(`sW.]IzUIl&#`LٯwThh)M%P}r5+*)dTIr9f8./oْ(Caf6z7IATj/r9+wY,F#[o bL h4Z<-+-ފ115uOxj1cG19dG&$$\pä{))d +4ן;w)SNGGcm#Vɓ Iɩ)ii-*㪵k/w`@G...'ҩgVVMdm]]:Au<}222960ח?|(gΜၞۻCyY P{{ tWc/^8bkZuKkW0LfnnJ b>=5aRH,j N702(C#`ٲe<훹5(ݜz:y dogD*cŋ'54ZZF!_x办_{ $NT4IDi3f؜?i4Pdjfg ^x%W<=={׋ + n +'o Gm۶₂;w467Sd>;fLXZj4|!ފAoݽvZ֣&jٳg/CD_w~<ƌ񭭩V1h ?KBʀ~wNVVvKfO󳶱E> :4lݺhZ)rCymm->П;p;wXj8\>nm$ml^V:|L&* +}C06 +Z-Q=|TPXX]]PWcsmnnadbܯcϞ={W=~jl^ +* TƜ;w'.uPJ/.'l{wI25ڋM---KJJB[E& 9a[_OQIINW?d(\N}{:p6ʕ+ׯ^L$4:9'wO#碗ɌFq; @wE+BY1bÆ 7o"h : Iakg~n?_ʊK1}Uww ۷OKԳ'zg֎9ُؾ>ʦ@D kkѫ%X*I $J%RJE5,97[rrs+++U*Jdr#M9;D(-*J|@٬Zhΐ>y}**]QQHԄnаat][ jQzVK&RTϛ>,/HhP6Hb;ACx\ԏ]k>ɳ繏7765j6ˮGcSX{}'٥{qMjL%"I-OHHxU1^~9+!~Aƍ=MKMitlԵ Dz9ۡ,_>}z/^̙3ǣ43̭?ʪ‚2]9y--*jHUXF +Lߣ;A+(464yYҒ򶩩L|ww +L4BP'ͦWDq"99F?׼̼Ҧݡcz"`wU>zE"S rggg#Ŭ9sߊl6G577UJo{U{Bwd?~p?^T"cXG2귯/onsnco@{#;3n9N*Bʚ5MϫPF)rބID)J7EXF[4Or([~wIbT tL"Z} +pP$zdW_FF_ht2@&4[Tr@>qbsCO~ x@Љߋ0JҙܜҲ҆&bkU +&&}-(,D"lϞ=ko⫕dʆƑ}SVQP٨:s3PzɓY +o޼MhzrG/N< D g''#kf[,LU5u>y̹sRda4 +U_`{&@Wе*Bի׮^}"լl3f̨1c'M}q훷 +3CCT#JRX㚚YP(Agnir:y{{ɱ/n*TU[S[U,P$trv;W~%o8'W*:@^W^(+ijhNKIMNNy!qul[;LMp|Γ<0kmb]0*:Fwťw j]+qK.*)+yfuu5` 6`IF::LÌ ==9vm[!|N>ރt*m!<=ȑ#QzcF SL6|ذ}pȍA9t\Cx&?mޛ + +=;B]COOReziS&qCɓZ|A<N&&z\Œ};ׯƇ۵mI~A=Xdݺ5q7n l2Ys|Lf2GW_!QGxQt\__jk=Vff߬KF]ksQQQ Μ=SXTHg͌}|FZXZh.>b_g"u~EFV?>SVZP9aЏCHIqŋ +1"dIDB UIaAa̹s|IstZ0~X33t1bb.R̬̅ge-׀N=֮1+:3w*&ɒF"T]ѱ@/'1op|;Cܿ)F 1 H02|?n mJK:4/7/>>U5C^N>Fs9%K{m ,&#**qvvQ'1rIpxtAۧO_a=,_sk״y8o;VzׯYgaf. 21߯Og]pkk>I['E-\bn`3ɤgP/2xu2vUkowjVU*c>i tωy|@ l۶mƍF?E$Q*O8L][;|pūzFEN^0uߥ$%ݹ[U]Ҩ fLag3u8xggg&BCůfggs{k|!D ^ܬJ*;&x8ӯ׮JOÇ ;d711={փtR݄#S,.s}\]Tqq%rh# +[*Biii9#9J$ ecC}c=Wt'$𐐐̌X2xF +Ecc#ϐ G)xԇ/^x^ގz=z>+]:hAA-ju P|N=m#FFnr-&%]x!?/_$::8{x|6?G +<-|z#h[X.?\ھ}SH"hgvʟZo M։c֯[7tcΠ͙а[nzmmڸiԩFFbHqw#ۭ3+B '={na"I~͛7oܸM_xZT:acm5`xzzdPWxVK.V=҇fcglٲn7ӵ!?:wݤ?чj}\ )_f1W,_c{8wÚ >?x .#l/͛C : >{SOOM|*JwtBEóg~ AWu:[{ۡC BO>5#$S23222i4*N5iツRO|N?ܰ~BQ2dͪvNVʸׯd>Ir З)To A[( 7y~ʠ~}xL͑ ţ ^M5 > @Wgʹo>=KSS}N7V(XxcLمٳgQggc+$1=|ĆUN:5|9i?-666%%egVx'4TVSH$ ___… ߤV\j*&u{LեO>77kCvA O"##ßUT\MO`Uĉɬ9sް)2> ittE))* Ef|~jj*)O +۹c4 +YYV2&̥KK{6Wqcm?K]xq=3ޟ*ӣR<uN@y:nϞ>d[X-cG#cbb0@ўm灁}BBaޞsgϾy}tXdWKIXTToa?lOQQ/H*Gx=T"?9RZYI%BP__k 4Ň1߻wo~nkI)$ӱ'* +x:z4 5A(P ]t(?\{wHfbh8d0˱7 )㋋##ntG$?/ s*|(vMmp8LuٳؼkK?侥 zr`_0:bĉkV._|/^NNlrY^!ބ/&b߷EKdz2Cgݻ.KomڴIӬ{0#3D$G88HD l޼yADfed߻u*esLMMGΙZB + + +o>r!_@A G>~Z0::zmNT2KFq֖8PlC!Ӂ3fpwwgX+(ǎoqT5xYZdzluhȶ׮ap9 Zā.fhh-x鲲2gaeihh;`GM:Zjn_v!HPu ocż I:n'] !*ڃ-Ԍׯ^jTiT~틽AEڿLҲ&USsJu4tݨo8)e@AƆGQREs>z/DB)yJA'Qڲe'ORS/Q|M<>E)4Rnt>| +$xw)(j(l--6uZCCF\q# 0a>%lXfN,ss9fu ׎,((<dbWw' V֫W9{= K@ɄgO?`O O&hT˲eK7nxq}ǝt'CKC&׮[{ׯНQ BٳQf慘L\hРAg^@E@ +9Z0kY2dϗ) +sS3 +@G{,dڱmKZZFTTtmMV~Mg?111YIIwn52XN={yYXZN1CB^C-?mƣ,LK<{Ϲ, o*"(8000$$UkoveffeUTߺ}AIP{:;sAE) <|xOm-\.ÑE&… 2kT 42v0{ӺǗ ptgf=͛X=P:pFs+/W6F +ILLbR__U ޸fmΟ/|Z@"*e>GId=Э5 +^9r)IIϟ?'Q&&>G͛NC˗=zGK)dX<{~,- A ]SXX؊ +:a}RҲ33ϟPjncƏ35332R7US q'/BLCc#F8h_ Kgܲe˂ w;|/e?T.l=PL2ewXW xiǽz:clٲg]Ed[E<kaC hT*JE_.Zs;̙3_a .DK,/{dId\jX```So]|sfNWЩT>k0;vm~޽{ +<ЩGO݉^"ܹsCn_~ߟ9wܜZfkm=n8s ˭۶ߋO&>|hHHIyš2//X0|{ڌ?w0 zNF&F ŋ#""~wy .]__mZ{ +Mށ~cKɓ>5O>uB?SC〹s7[w{k//#Mmi "<|gKD"A%/ZR, "gNo\vA2'rF~&<~ʕ+L(Ãjт~2WZ矣7oKhD5[Z l 2ݥO WtQx޽{ܹBF$YLg'/VB$[j1BP(̍(}A +SjӧM07cR)D p-~/[}4Hg4>_hѿׯ]EPĉ6m D\,Ka===S'O)l@}_Luԍ7~ܽ{rd2(^nv(<|ƍV6&F"6O;~pxٓ'!i@di""""⒢^rQ*zyΞ=;>X̖͛Q+WS$I$ +C=aE[߾f(XRm[0._ VcPXY[::,00% Z8QMOrJBBZaH$t.y5EE{eDc0tbɢEvUUwUA+m%\L(250@n.*B"/---d磻$74c:s/X, ޽{΍ H$K%l:=#Bhs_X??GnٲB$:yn\266.|K#RSSK+TJH rX_{oo>[W~z1LcǏ۹=$&&{7EII騨֖V +}CL Co~,4 +PЁn^.;3+A|ܝ;bu6P >'O޸qO?sgID>ϳ@klnF^B! oqa|c0D&uwCR_R֖'N*(,S(be!{ZY;o  Ғ޽ؤyFpܹ(P +gee\tBuU5 XG'G+;;F1xv'm_ZYX D'~G|2ȑ#ѣ+07rsvΝw;\[rxID)2JA2RIDX,a7lp>}@P)V;s(ۗ8իYYdHD iuqy<==koX<~P' ݹ3-#uQHDN755sq#׬_[ [d?`in^QYq\̳JLG**U*Y">Tab*락Й>͛Obi5L!tEell#G"僂~wyPeBCCKJJ&Ow +bΞS5)4EQ3LgH,2eZff6zUpvio\@ qB/2]J5PhbbPSu뱱E4NDecD":eT"0i#t@%/җH%|ah3M~YO A>hhN?$/iSVG%Id"Z@Dg0>M1#dG bgoUUOfe?~ZP@PLBhjL;8(LMlٛ o=|8m[]t%';I(5446贘ZfO󽼼^x[ Rgo@w=p}>L}'=-BIFeF" M͌F&N0V(Pub -C}gj4tߑ''=,.Yvrr}Qgo2khD)㏑L{SܻOdBAբhBb⅝nsO41iONNW7 6RB5{3?~2CoA +Daii/\loQ($E!0 +7ٳF1r䂐nKEEE@`\GO*56Qd2k+T2ccc,a + ps3Tl6C(t'-OtTfddޏ[TXDcХRŒIEJ %#ъǹ9Ft:5-+kkKq&w@AAce-*-#3Ɔ>R#}yfh  v~ljj&H$EBgljkjF[T!44< "ɕ*LLMz8:,fgo#tSyuuuMMSNYթ}l̙a0<tŽPRRi4% z;|0WYfu@AAPx<&oةSD3fڦa~~~믿ݵ7 +vv%66=;v@hR@O4{+ +endstream +endobj +1252 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 600 +/Colors 3 +>> +endobj +1253 0 obj +<< +/Length 9773 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 600 +/Height 303 +/ColorSpace /DeviceGray +>> +stream +x `ߜ r( 7ٿ֣r(zYkV9D"V +T "GH;ߙ,i#}{_                                        DTO8@'A-zߞѣ$էC44e&(WP ҃ xEKi[ǿ+ۈ@;|rʈcM4MMde E)&WUe:ɜg&KPߢhRO~Po1XYIA cE?bA1Hz$oMު@rYOY:Ph)m&L>R똷J _{RiXvY3jvA1#ʻ[E u96z4M=0)V)8n1?%.w۵PK 1:A[.%b'AUyu7rq6ٝ0Fqqq$D='|VSmx +4шTd6ѵ,a_,)QSVy]jIfBNؖоo}CW:]2`A>=̳8%)p;?e˺@zb貪\ |K?=AO(%地wO^ /W>[k6*`pI8![BV}qkIry?KT'a8a$:.܂\L W$f~p; #抣0j$k x{qxH2E,'5?dGXBȟ=b 0++YO>ye</ ƱMc֭[8~ $$ K{u~FS-/V{VO,4rGr%rz.c?.i[nYꟅ/J8iC\rCM. +,ywɒ%xx>iQN +3bL;rPb0\7Q_aQ+.n~u,1Əކ^583uXP>C֊{6텩{#`g\mC|E +CM ^|F=<1ńg,-!zpSIPTˋ˿}[I(A>k4F)WICGp t^Z~]p9]%Z0hEQO{ g7$\?,xg;6ʻzЀAr/;j +Woύ6NJ1\#$Oq#˹p)} 9qg*.gXk +W}I )k|r%p{֧.<*򰸫}O>]}R@Jtx@xpώBN=ܬ,y'^"1f=Q,9<1#3 waT xg.50.h~CR,WLx [/_MA~wep֥uIw\>ZUzV%R1W[nݺw}Ke_YN{䠻HJ4vgeQ!1h1S=rs\c,޻ok۳٭KU{so멥$+2 sS -Ƭ u Lڌ|RɀF~kS2ɫRǍG`1ۉL9yP5f-\aȑ#GŌ>{[Q3,y}؈t2*<pAn;h9Xw@r`W9O|Gi*"_ mxs՝˜WTYD<ŽFfVy) -wy_ c&ݱSW!XϺW-wxP=y_1H+0;s]X8+4px )' x+=x ބ\+çz){ +ϑn +5xN<6.:lQצ7a93 fʆETNmywE޽{X?;Uy̗ +fW֚4k2t6|ىZFx}FLT3ȰxSI(vrW,,'kLj)><ڽ/ E]{v.6M֭%^N:W"vܵ˅1Tߘu&դ]++#Lv/:JApZ7a+c)H!2췽 Bf>Gw?gocǏĬ^`i֔~?Z6cSMY| N}; 5pUeQ^B/ J/{ͣnHqI8+3p-#<ƌXgJX )/!?qNHCfVuJ {B( +)rNK#EpΫϊ3N8o-ղُǼfc_I ]'F+8>VL8þdP"D^U,FSt^XQŌ 3rӇ No̟?0pQ=7xؙ",0~ /HEP=;dؐ32R祬q>o_a:#C5EEW-@zϟ쟕+'g/lѠ8ͦ73.zoMۊ ʧ̷>YG|byڟY7Cb?| j쬨 +"f+HV*Y٩ pe$t ؐ}8k ^T@g)(/{2yji_ÅJmַ`[cPDC-_v91[IN/J )hPđ +/ε?c:mpDF{Æ y9& ?lh?j [:1:?y :U5FH>?#W2(dI_N$s v"+WygYο̒GwAD_+ +.A'CYk>BʣG2"C˕.!J.@1/J*\3A E}: +LRX;sG]Loubf_9sAC6Gjaq1fƘ6W%K49*`tO=\T>3uoD=;T`y㥾XYM@C\QؗX&0C/3o +'̝xG:YK5ۡwѥ<iB̺p:[YN9Cal.yflö?0m1F .gӡ훯} FK#8ua8$vPYUD]yFTzZ˖r/}v@{}; 8 s9sO|o68B螏]I#]A%عe]FQwW)cպlk΃L,\Q޹OŗVc!wbgf&Խ +ؙ(=U֪Oճ76JM\r1$yRI!s2nMz +mr&h!k /p[JߦeTJag.<'N- +fxf7nX5'õa޸EWoLԤ]#Al+˿]X"EE_a&֏ ⸞=d?xG'<=UfmֶLrӛ>ګ7!]:G D/a7H\Ѷ x~sś)MK0bF ~ wb̜w(n\vaN."xɴ\aC,\۹=*wMU}Ԣ'|cAR4+ΖcX1bIœ&Nb[#QhARWKԐ3RJ;V&qf答$dM{m׵f<_w&S +. >{1AaHlRG-VPR|@O 1:w&߄*폞ȽS1>E~"?]`_iwֽt;PSM؁_۹5]s/2az|fzqXk +\*'4ˇ{{1T4MV;z˾?,؈޲+YČnci;,;&+78h<>~۞g+x\$F:܄FϿBd'5bAA>-PM" (9"_SzٌE|c_F: =l!^ T'AFeؙ|ʅ{\>I>BG(kpgx`BgzFK,xfKв_'CMC3c{iqJ. +'fs/ yL\;dX=Z3x}K\ +ƭ4SL;!cNçX#EOR.VwH+à+$g͎3;@Yj +KJ{K#8{k,/s +k0kQNIg15Ȯmğ; U=#03e+ ,S9U'KA*uMq zE"<9/XG<"f#|]T|9^D9$x7#*+=D_uߪz%[> PW_o0tSwuscL04Fl,F,^bv ݳعL |I +DP`p8n9~dFE_++UӭB9M@q/bZR^gFWB{[|J_lЬ&ɖX5pj;E +R[ !mOw0%ʏdq;)42ͨ~pVW482Yy*ģR*70o~z=2˒IqX7ym k7:[mDCIZ9hNғǔ;4$jP eFMxhH\|?% kt孨~iv7M+lrxOn@4ztfk|KY/\O H\Q«|2i^Pk㵹cc s.-y{ǥ%H\bjdS| +뺶ۦ%2qKoH(z|c ''d]%RpΊ R:Ҷm>7)8 + kY b.f0A`ŃSn4d^,`MdC[F|%£WAv&0enVIKYh-%|dQ]["<γ\$"jAPM,q *Ai#"j6|IQ||-4o;Q#dX9[OK4Z.oJDH<_,k <\k]^ w$9 + hZv b@93L/ $$sR%C~ 46D!)/I%G0 ZNȳ"j/!o^_ Ac͖U* j44\ǰGAP^[\e5%/5E+8.!I!,+­s)$UD Obđ T?,2DA m8PVa"u0y!]'"j +UMTt[<`yH_x#c=&?lFñTEUJ2>1[h:/%;Q^(Q ~MW([^4]D+1@C L\H\th$ڼۨ41 +@!t,ʻ |>J] jC_!j +c4j#.@xoMAE<q'сt *{/ڈ.N@hpmW$k+IUe]}k5!j+>7p)PDpS6TA /RA=Xu6`P}[A9o7qiچ:\1\nxT R1siچ\rm\Vh&a+fO0Q \pab< fG9H6 +YgnqSȾ"F.yV0|@ YvybQ6R[߅yc Fs落Q;4kي2&mzHYCۯJ};J t#8m$(2d,\&\ d'j ?hBqכ_W[+(Ь@Aygyg 7dEۙXYSP$u̗IZAP~}'6k:chڷTF:ft .iSQBrLAENbz\u)s2Ԉ#2X9X(K8 $j"xDׅAȐ+LwT3RVDPormtn ;QT%fm{MCu.(ZΌ/|Ffb:z0󹶱(.uBw :LyY|G&># C{ *m9MS}Jđ"L[9[ے$JQXwS3QWtho.mh0y)oamB:Qg`DgE 塙 V,QWTMzV4еoN;QW4Gp<2 D]ᒇc@;K'cE n@k@Swo:uF0&n"HbwB-EIzR[3<F+q4?A- c̍Q;H(A/ b%@AP7@׊՘yB PL9]YjEtX$VD N)Ak+Qtr DD/+G+"$xNAQĊYR? D(p~GDHhXn:#煺h]Aa+H6?k"O91D(s +ďftƁ5y[ByB.VD0.^U@)cDNʊr祩T Hѫ<5|D0ȡz>{ JDƚ#5_ BU.[kq3h[ONy1D@EohS !x1]MR}2D!N1Q'BsD@h0AJ(Zg" J(ޡRYAD(y_sE +825!jHAAAAAAAAAAAAAAAAAAAQb +endstream +endobj +xref +0 2 +0000000000 65535 f +0001122413 00000 n +20 1 +0001198905 00000 n +1248 6 +0001122653 00000 n +0001122830 00000 n +0001199519 00000 n +0001199741 00000 n +0001233560 00000 n +0001233641 00000 n +trailer +<< +/Size 1254 +/Root 1 0 R +/Info 6 0 R +/ID [ <9BB96C439383EC6F4DB07303D67B4FBE>] +/Prev 1122222 +>> +startxref +1243590 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R] +/SigFlags 3 +>> +/DSS 1254 0 R +>> +endobj +1254 0 obj +<< +/VRI 1255 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1255 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/016E924DD14D903239ACAEFBF8A1F1A2DA1A1D49 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001243956 00000 n +1254 2 +0001244196 00000 n +0001244333 00000 n +trailer +<< +/Size 1256 +/Root 1 0 R +/Info 6 0 R +/ID [ <81B46DB4A36985EC506D55C3666E4FBE>] +/Prev 1243590 +>> +startxref +1244937 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ <863B8B5378CF06C302145DFB37307CC9>] +/Prev 1244937 +>> +startxref +1245198 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R] +/SigFlags 3 +>> +/DSS 1254 0 R +>> +endobj +1256 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature5) +/V 1257 0 R +/P 20 0 R +/Rect [305.16074 245.1919 387.16074 279.1919] +/AP << +/N 1258 0 R +>> +>> +endobj +1257 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (gijsbert@wearestewards.nl) +/Location (Warnsveld) +/Reason (Signed with SignRequest.com on behalf of gijsbert@wearestewards.nl) +/M (D:20230907135744+00'00') +/Contents <308229D006092A864886F70D010702A08229C1308229BD020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198F3082198B0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420630003EE7DE47D1897F46843B433D54E858EACD93C2CD67E19FB8D5A53555CB130820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B0500048202008226ACC37BFDDB4B4EC24C223F505BD4FF9803EA62F69376BF8839EC94D3F109F2F26FE4BA6F38F6470E395F3BE00121289E51D0AB5D3B27B9ED7CAF34EF2587B46A45744E9A6324D4E36BB41CF9B2E7A3692E3A61A1FDE96E90D90A9A0F1E85F2114667221A8200D6AD9E057A1B18A898102E3ED65E7B37B204455A05AD77C7C10DEAB3BCE268E6A4D94054318BE4AAE352D2DC47EED8D4836B14D426DAB390BD8BD723C4AC9C18611072FBB7984F516B4ABFBA1C0E1A1C46A2D8E54225236E4B08F6AD240553ABC6C828B7BFA2D9618AEE59BCE248B308D5709E0288348F43D57C4EA77860656E0CE634F966A747CBD0A02D44DC49EDF47FA08B9E42019D99818EF606BCC1E8C84D9D4B6199680633260B22F4485C834C15AFF5B45908B32050B7AFCAB2D69F9E2D8B97E46F21FCBB55047ED53F365C88B53AF79506E2A2C67169C4C4BEEFF5466B9D35F3527802967F1EF2E8F77B5C512CFCA23C3B5DF102C863D8AE2D3FD12879F24E406C9E9D6F9E74349BACA2177F2220DDF2F1A224BBADEDC89CD041E92AC2E5D84EE0E8DB130E536ED5D69C43605E86DB747941CD0DDE468753F0204E8A0D4EF52D3BCEC7E8130417D2DEC3915747BDD2DF561DD1393644D11B4FFD3B0EA2D40957492B583F88787A670B554185F4AAA546A00005BBC7000D6A54CDAE02D90FFFDC2ED8E84B380001799CA8ED84341233F315486B9AA182152F3082152B060B2A864886F70D010910020E3182151A3082151606092A864886F70D010702A082150730821503020103310F300D060960864801650304020105003081F4060B2A864886F70D0109100104A081E40481E13081DE020101060A6086480186FA6C0A03053031300D060960864801650304020105000420F123AC9891187B13BD375AB78AF65B6232AE8C4490999AA1A5F472201CA855B302090099A57645FCBC9932180F32303233303930373133353734355A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353734355A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D01090431220420E7F313CB85F85B2EAA142D33915DC00BA9EC3BBD3FD591AFBF275A4614D302AF3082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B048202007D6F7B4F74FB9317F72BA684DA014527203E0C82EB6EFF6E25BD3612A7AD284A72ADBDA75C56AE9FF482D2ADF479DA07441479DB878B1D9CBD1481F32E4C6CE73CEAB87F9699D453B617D5653E4716B4B6599D2183C34857C2116C5AD31F3798C2DB1FBE31E7AD496FAFDCD5A812288F237B7194B0C8F05789723B9CCF3FE5533B6689D39B2E5BE7E983D191C782FF37735DF2C398C0F3551E617DDB898123C625A5E94CC8C30580E2CF95BF9B5A0EDEC65195F0D01D8136C90A9064E0A7217E62BA3F65BAC67AC42F9FD5F9091A1B960571BB3DCB8170B1DF99CDA9AE3132CBD12FE801C54F77BCEE84AAEB1871B2D6F6FE5787A061E24226414D139344A04D5922EAD0A473493C8A783CA9CC8E6DD88C645BAFD70813F455C8AB833374558BAE986B95C6AF02AD9F940E82638BCE248BEC7C21F63D259C3CB34452054EC0D37A3DCCC429709F17911B6F8723CD22201CBF30A5240114F4C4DF8D8153BE4D0F0F1CCE1B417F76FF8E097D079E2C74ADED4CE7A80649B8C5355778A6C402BA85383629A3045A10B33003DE34D9B0B637A450C2F3C3AAE3565B4561EEDD19FE92C39DE17CB97A55FE42C7FD61F8E073DA73A75100327E7972E549B1AA96F2988563749B3BC1FF4CD6FA3122D8A76216F16AA47B282609A7F683522A1A9C68533AD2B2AC1C711AE2ED50E63FEC51ACF9E0A16D8ECE2F7751F375EC8D4D085D417D000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1246073 1321851 77608] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R] +>> +endobj +1258 0 obj +<< +/Length 50 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1259 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 82.0 34.0] +>> +stream +q +q +82 0 0 34 0 0 cm +/Im1 Do +Q +1 0 0 1 82 34 cm +Q + +endstream +endobj +1259 0 obj +<< +/Length 66818 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 387 +/Height 165 +/ColorSpace /DeviceRGB +/DecodeParms 1260 0 R +/SMask 1261 0 R +>> +stream +x}Ej{y//@ HB AEz'T#M@DAPAB) Cz#=ݶ3;ޛ~{wgg̜>g X _q +u[xXg}ĂQ, ba/ 1lT3M9Lv v\ 1fM(-Y \䄖12BDu~B M'Y vl>zl15R=/Ր]ҸVY,s-.B[,ߝ΃!e%Gp"|A+Oʳ$*Z:)c$jqoӅC=6O chD0& d_6,10t(0>0,+o0dE> P +a1sƔhB +T?bVڭɹ$YұPKa@,~l+Ce2L2ep;[!*[86ҭ0B!Ul:gQa(*T;b[B%5wE,K KUw O"X]VC=aSb!թ xQ(mfQЂٟXr- ڨXwo[ԅ5Oe"z]>vX[s>ܽ\>k$J ǖdd|()#,CǶF R\u]m0eRG0MxH1YJ' +A,/6ؖb +H}ĨY+EdX]6a&xO +1߈. *<_GpyHLƑVm~e$(2VXYZ9 +03ءj U {hWPi-Ô+~c)4KZQ/0ƬTt1mh'Z!%{]~ i!_e4vaOr? ժ&/4(- cCrB)\ tfȊ܄蔼N2BL o=ЀYjA!Ė]e(?CJ/ؐU3K|O#+gQʄgP x+?d(9A VtjKcFy :% nk <2fFX@ŃM& s JM(X!!|V>,%)9J&\$À%rfKqwz +cEU/M伴f+f؆Vih ?mVvJ7PGSlHv[YIDg%& {*3vgYtN/, m^B+x2@y 6}.tLX3r!vK!1`O K J&4`NFv 9qM7*2IXH˜K$J`\s{*:=+-e?K~oK0b0P^+G7b O52:Y<Νi(YI,gJmW8Z2;aU Ms!&&jvR'/#퇥*1WfFµ0_iǂEQ +`C/TaVƛg$)`_ΝۿhnwDc JA5iPtB(n_\ +Yy4M C?.I`\v[V;).wKM]-/+fЅ݊ t3n!bdeQ:^p&Aeω, VY3?4hЌcqWyVbe 'v5V!=J)eQ!ggfz^v_ʼݱY^ 8ߔ n}# ǡTU<#!wQ=5e ]R$WEAWřlmQ),x5PN)Q7#%+I9v#ˋ/؍+[!AMpY>%SgOo+VTT_˗.^hKӷ;,\+S_W(˷ۊGT)pKr +L'2lq%kߴBrF"w0KO.j|j@0*{XbfAd +hHx  ,nRkGƍgIg#1c䅭ÍQ32tG` +vqԒ$h= ЍU[[ ۾}{}CMOקob ZWPҵiuoRQo8uFDlo +wבr$ahDs`c|Cy)xX(~5w[/z]CcP38@S(9/jFGA0KS-$"O#$ETMX4K҅PdA,ⲰdG}Z拯9/x}0{̢2hgۼ Qиbv)؈NGAJU,n)/S.@&twbk.t<ꇱ7߈+:p |Bu2!2QN]AńwMyZ2#+4`xMvà¥K69y1謅r]dCb@.RTh2J8S|_x٧;a„sVWU=Ə?DV+ի0#sP~&h`LNL@Pjw,$6rwVhuUsuj+9ܙjY8UZw ]Q?n+E0pv X)7˃mfCWzG qE9%^)B@kiןz1r\Z/iO&P<{^hm/,M΀VZ_~ '6XW &n$r4vK2jY&(Mv-_PZQ+:B> +m,HldbqZI id:eA ,:/txisl׌|SVhc`WɪBmdg!/Ycc֐#h1qil̩!h[vmNl!v&.Xs/xIQ90%'?9qI2k"XNDug8Ň~ w;δ,Fti W,+' YF0aGvpvC*ru׀lRkRF=\)7-oK7Vusg)vB"i(LhHeXfĭ]iR3U rk*/0T<fpӮʡC~~lݾē&xd W* =lE@*{l)J8p3a)H3nhٓTBݐAT!MZ^FaҘW +ƘSs24EhD"D )V;b#\H?;ZM78 /p&ȝ"/ |Xt-!t"U-^Z2-~nSyp.xH*úC>QKѷL;,>˷qA3gw +6mz_=B!N864* 3 (7oZc4S2ӕg\d~^jbpVW^,u;::t"ceN\K0 ChQstA*yJEc,L1BJT+QՏo(vI硍>;߆?#S0\<4x+5#xܢUz0ˀG kYgΞfRL&S(H۾$f&C%X) +d4@#ps ,6ȼ[om M7-/%$l@ubi9Qqy=4k4}#mHSN/#b _|wAbcsw=I%UH8E4i /eQWqnc,Q¥'| p3V;R(,#ފ]bмj*hHEG55 =NÇPzg4˂b=L(9oO~ŗ56CD"5twzqN؛Xr%IV_ir:yR XxuɵE1q1dDXʊ7Ў|*<(rDRbGPKV*p?Z2) +y, KoJ˳lj?)`-w*͕ž3n!6ؘRA !9z6Ɍim:4yP׀GȯB .&bp19^%*++vZzYy{u}iuWׯeU +/UUUȠdC)Zѳn?g% {~ArEw =:p(0RѾt +MԒ\h,TfVihQ]^t@D iaÆ=zPT"B(6WP3*tb?h"6W*UU`h(;Ϲ2bei1PU*43Yn$o,*SL1r2uăf49UH%2`\}%́uCtQΤނܢB 3DO+꫕>}~ߘfO?{衇{}x/0U.(qR%n1xRckB~ d˛hYH't!Lyv¦hY%$gV _ Fsо|#D?.F !Έ ުYHxAux!/< s憜 PU+h룏>\}յkׁ+7?GvPk,pBo^ g1ecE6m^C<ē`Xu6nܸ/|i4n^yS.::lĉ/_[ěL&CpQS^ f'{g\~-`?73@nmOpKfNҭkc[$2QUp:S/RS_HQ +4^_UzCY@ [_"?|7P]sE D`}a=1bDss3 LSS;SeW!0IFsJ=Ʀ;[SϿ<7,GW_wG5yokpI.h pSM)88GVǢTX)X\lmm }쁡{駣WCht=v}?_~6m:S3m0 UXz{ckʆ( C2~!6\!+} m"ӭM_vv)''4[bzhaVy|Oڋ"k+B;U*555^1`Fpwjs@]DC9cΝ-w}O}&~^__TBw=i +U+/N%A3:HW!vKwEeѢE?;~ .; /!\.➛faXn7"ɶ0fk-,4їVr b ΰ\}g^,-;1o=xa;2 !B<OyY7>0 6I"(EuH/hʚ5_N,~kN3釔8N$N1'K*qcBu-">+{H Bm疒yخeАmY_Y}XW-P醍y=ө +7niG{z_ +gl\>k;soV+s"a$0*@Z~;;PI%\u(Ie|%tЄq>G}SO®SO=u~D.6(S1JcDŽ8, 'f]YD8(s# sorIz#>2"/[5 }֛[Ii 'VPS`;O>{y/Y +UBAV FLf9GMi,JeDqQ/v%]^6;6i4q+C?gd5V%1n4FBA~ԧt˨?$}$/)Z_\SLʴ̭oÇ+{PUep + X!x\bŪƃl2T޽{O<p̘п!5z-hI U^"4Cۺ7dh Iw֭׭]&MشK.+)j6r"0lXFi2 #R>sfB8.PryWyLLs!"Af$i.@-8t:&ԉ|(y"UWWCsVZw78Pn +I cP~J?ɦo!Yvc;Y=@cH ǝ$a|KMy`B_Q5~HuRNUL.kÕ{T.[?|烦M֯m۹kРA˗/ohhܴ~c}vرhђ+w79cQ@Za;kw2]~~.,=D^6 Jl@ZR|=B;bLj'G.<ȧjEGL6|ȶm;^vwoѣG30&ACZ0%A)<9p/L\3CEqRZb0 {~ءG ISSW̓.0O0OpW.0Yr?(GA>[Idg::WSN:b ] |77 ~| =WzLmq#TyDA4~BOgZM/TQ4 uUH'/y˽zbL6]^ne[P2- kCgٳ+7 '1$CP@XNBo"o9bO,@9i?E(`FyND{}cݸ|Ok3PоlPˌsp\6>r(40kq ?ڸy#( |Us_g*^&Or>>W|>u%KM +l: +U ©6I׉;]Tn )W| B 7' +cǮ#8G2&lXk׮n* 뀀' ^< @Ӓe%'zNq,~wУ!(E뢭"[=!♧=޽oֳgwz#W~0\FUA`BR,W][nm˖m%!Li/v2I8,ybYEsu}ψɢlsʀ+Ck՞oE6 sbQ~J.o+Vyi_ᢎ9:f6zäW]?&QvEIX %qwO?=hOKUﵶ6$"u#۞+d}V|Yn`A]wA\QQյO? ]3Xf_|ѭ[ʪBP/h* :2XjS(MT0` +),aȩ~'|hܸqo'ή!"bHMSrS䡻qLc(8^Xƞ@Yjns?rRKE6ʲp-cƌm7aZ&|K%J+f}[:TDF1,?q})UT;ZRoQ'5VJJ!WzG̨믷q[nӧ;޾`ʅ=t?ǡ1y9)r9,Q68ɭ#?x  =G 2b;ey.q块#ߜ/ \S\ `WUUܾkKPCifMC8ͨOI2tR%%؉Su}gZEDP9իWB0aCV+$.&6JEK(S~Gm۶|>3F p/i8}X/_-cψ$+5* ?Ltb"K$\&7\@>6[_QQi v5zvGu)dY/`W32Oʨ36Ҭ' Juv],BRVn`͘b{dsLm<閮B*Vh[dT +y`wgsu]jnښJA +PGYfCo{>Kv޴aÆaÆzڻ B·$A/$UiPL~*7a0APa^D>Ó +ٰn)'soW{]4>ZzzI_ʟvi/2c/^4҉`7k ΡN~H"w 2=*Ad_uQGn޼y=\g?˦ lG{vXt$ +mIGvx0ϡgyNsmS lOl $Ι3^>|BAYëqVW8˦ǝ2y?Ե~fє+*Gaھ`q c BҿzQb'R%jCWI%X)J k1XQ}NQXm)Rx\N?s{o ]/ oO04QlH9s6mUzٍ:P{ƌU]`_XN%)M>Ds\ ټ8r"!ͷz5kA k׮޽QGC;:AS0TMƒbD(A1 9TژY-2ZE?r2> ydSy@;\0 ,ܝh(z[[7mGGa8-0%T8a$w:zEf^^6f]ZJorQJ1pHXJv>7.#@G@CZPvFH$L(E@e2ܡpBOt>ѽ\18P\@++V\pWp^|Ṧn]ytݺJ69h9f̘S\F ̌AX-i- +w`YC}^O>^7VUE*k}ÌBȜg•"`Jb +h"ՌMh)k.;Eʺd%Pu*g5oХK/I<(ĤC̫g1($FJ |sN7n0rSQ+֘ |q(kUXF| %k}erlSsWg.C=14 (YX[[S%yA͸]F#"8H(3%'9qc}}ֶڕׯܥ%m84(Pܙ ̜bE.8*;Sijh [lw2iGᙗ1n=OsO>dMMMBJqy&=6 ,9(=VK/C(G +)7x?&+A|(Aİ(Pvaf61jQڵqv$C6`y\B"y\d(K#0М7(-`0ơbSؾ&fzK&ڑ6gеz۶rH kmX~G'>ؾu[K.Ï>b^H# ,?D]رz !5)c8,%ĦPxp%gYu[f͖-[N9'tw&U|K 2&eL(\񊤁h#4NX,u2֏x˟@ۑʱ#4KG7}IW 믽~UVܕgnݺ`_>OI~ Œ&|BlWEZ[[/tb 7L Y "tDp۸{]mKo]nؽ{gj%_aFRV !O#쩸M?0fVԱ:+^BoB7)UO>裏i+N9E,bD聏lw)r8E/;dS:8瞃q,`4D|PzLN'˕V\3|pK.5B!?{&\ED QQ6jP/騖K)E̠R1›3vX pШDq&,,|"3:knlݻz돹_zKRB =ɐĦH7CGb/9X&@\҉oCH%1zAs% +NG{!]T0/fM=w燌;gR@ÆsW{ s`!s}{C3S#I D*Ehƽnb<ecd\Ǚ*{ o)碰OD;DBxCWEt;q9vU1"d*%v]UGHCy˶w}W^h,Ԯׯomm6boaTOO9i SjQ2t Euʣv87bvRoWNs2[Ѱ8ed*¦ۥO/BOXʋ ae?@wy0555͍"ȕ:tSӦ l/tXX;ʆD)T%8 gJcFXXToȆ ?V.s㡟 t:ᡔF}aZUR Qk#\$݃둺~aںl [=-YtW׿N0/b,G|%(fC H,vϊ* x(UpRhi0Ok/ig  JS#[U ,"{4Q!3]g*nk橧9sI3`.]j(ES?Ҩ~SrN-uȔx"k+-i,MZ2ݎI/-QXQ@ ƽMB6]; tafδK-TT\cPҠ&>TR$KX`є)]4@UqRmnBIA#Qc l&LΝˤWK2]@M.#ge#Pуy ;AWQÇպ}[Y_Ѳ}>aV_maF0RdOJfyim >`}WIXՀI 5zp0 "<@E(v(FjuQ/~/|1-m%1bI"R q˹r41~3I-ⲷ/\r%_}UR?n'| 'wެ|YC/vqRPTȉ}eF|0TJgN8O Xd=Ɣku#(t\Tϱ0(JqbNf=w*Ih袕k<$,;!t2cFab-W8y|h%Q1O4M\ҕ[m-ڼys߾}1}+LB'RY nxrs3{{׻O_.ۮe p5VUTkag ')hG@+x=&S,$mB+V$srEb:KBepxk1tG1%oW\qEڥ!RaxZ#FY3 {s4  +R;fw!< Ugq6`@:RyeMƥ]ܣ`C`'cu`{@گ_烡'2e ;P3Q%e*J*32,'NȘyrl +n/ GYjLk'\BX>IOfsm+ X`d_H,k EAeR!, 3%32\/GFcNUhwdp"n߯_C:1tv;6I% @h$EsPrymq‰gtdǜ_]qe-/Oz2S ĝ"[Q2iž3/R-Q32X3A[7JMbYڍE87o=W^3OrXq!`9؋\bE%iqd&5'm*$%7U/^hp0zG9>|3:bw1醇 $tɂ8f8PRAG/өJu4al۶;vw 9؂ 쑪6ܘQAE=Ή Z~H5{)*s;S~b3XlZACޗ, `FZ0B4;W-4# +ˁO^$~V;z.SA(˶wyΤ(ҽ-Oex4f:ykw@_0m.O̶twds~P{αǏ=h }w#d@8RS/{w^/weS2j[ P c8*sDxA|A-{\ 7wx82ˤW' +mġ!*Ց/?/s*2oYЄq*ktDߞ9c aÆ~C An 0Gq^^>>ښ*Ld)0)n Fqn^$ծ@mȑ U+'NtRtJaÆ91Dc>(G,1Rn`)̂6bQcr3g@!ste 8tNr!!q3 +Ꚛ)e+O"9npT0)p2@\.2bAd>xɬۊD +eSiRT:o}.[>gmCvAl0o Lᅋ"ϙt`i*w\2$FVX V&Skf_ӐCY@\I >CTܳAd1R>&so'RmlA)DR&8_ ِƆ<\6[rĉGyO?-R꾟KiG;2yjh#C2nQQokkn"IcЅMK^__f]{c׮]6nܸ;nԨQ28$:3dkI󨕧0b# 򳅕J(& iY|tnd)O]2ա52MZR ӕֆpt}WʢG׿[v(Gt&) /l42H9;WI.*7l> ar??YjݤG;<0nEg#ǟ,EKyQ<١G]>97:tB1ܠ6<i=ZΖ"帋gwYgruLMpÙ$ա1Nن(.Z`sL.[|EScs[[In-J$[I`2LtړpuLW ?@ +9VY)"b# $M={5O?̊ӧWUU}0C@>*0\V +dCM3ZwёTiI*-%6]:i{!N6P:{M]Ej/Vh8>Q6#K\6*4PwRX T,Ɖn<96P/\ͻ Љ@$y33hMHD†+艦*Q2LѣwZ=g`s={=rcf\-L*i.&I3 +*dˠ?nѣ_Gvu;䪪Yl`'[Pc-YBf.FnoϬZ',<͓'O1bğguV$mAT- %fQ'3O%A4L_;\J'"_;iONIEE]@G3a%٩K/t쿿xKee%0J&-כ\d %:"KU2B7|Պ.-w]/%8#.I6y2OJ!'춝F3nD/!$`r^9}`@8cƏvkn:fȶ \Y >xK?jM01f&v/Hb"0[b +""6p}\­moݚ'v|W^u_C?Y!z7ul5z8ܯQ+ (2YtWj#Ti Ңz ==8x4ϊ-va~pÏRl/X 9keJ.TCBkbM\52">38w>'N9Pʼnt~.Jdz=3,s֏gwxm޶e?wu7`P?H_}N@/2i$WÍ.;\AUr? 7+qjk@YD\P$&kEmzF8QIa eveyK [Qm;ܾ_~t.~1|Qb&*"i%8P;d,rQV\Ѓ=7I<.~edO>gYyн.j%ϽmKkڵK}SwT{a@f+gN' m0"PN44"<Ţ8Cǟ>AfVvMǐC9D-L2 6 >%L9DƊ>e$^ 砯+c{/_{ifX(z|#{PƑ + +8|Xv5d_vY@"#csg[|(YE5E9{$5Nb^hSL=/|0j~W}ͥ2bG#uF3 +ͺHA_f6._ 1ǜ|ڙ>l8 5(JDIL tR&'Q<\lc=6xwn۶aڧo[$ȭFj7!F_-T:y +U£xƂpyE.7DK6J?i1GP,j*jjeX +1@I{XUxH$uU?r=Sݻwߵk`+/7%K?aCQ**nkReh' Du̙=˖- #G/ ,g`AugS +2Z[)S,YTE ;B K_936߫wê5K<~zx,\N +v^K`LzM՞;FcB1J;!˴:. B GC Y=eڌ֭лwo@4%HSQ-j1( 0[PI5>f!]}:5Fmoun^+S*+֭[wͷ`=ؤIED&#ԓ +DE2S%`a6s&yOn-‹?J~@kQ' PY`@RyU)Nc +TfLȈŠdtgD".Bc$׮]{ȭ+ SĪҁp +u9)ժ=jɂ/o />WLL ::)E'o7+S_o|}3g5[tjW+GmӧO4` &E0n./w{]G`HE"H+dC,\w ȕq2lbb=Th20ŠĬ\ ZѷLg_ ֈ'%GP[[l;r +"dFCQKːTlKRlq*}9eÆ b>e+V.W簣lPkI%۱=;yq[l=s9;oe +yhw7~=j̷mԨ}cQCFQG<p7P8阸B0fc{@gRP9'R2Kj͚a#/?)Tl2 y|KT UFD/$rlsSNG)rizCRsLuEEPHnYMb|𐲇~x7]1&r.[!>*H TL!L'SRiwN;3gwml>@ <6L5kmuDS@u Ԥj6ݺiu׿; }uhR[[$vlmuյ}9d, !+eLHftJd{J {x,xjd7Vv2N0@J%Ƚd2 jlhLWͣ7$`ah[,LԈT&j+V (!EեosY}y.!j={5ܵK.08) i35sa*R[|N%?9JE }D5")M6w/YRTgm>wt49kgpV566~}ANNFť~qcTW_ӧoϽՑݑJ&?*Acx֐ zƊW0T{nbdF9Q,ZR0ƥL@GLƍ/Y6lذ_=04>ӄ]8HbCU9UU5ab:BdŠ__|h3իdvT{GcnK.ڵO_uֿ/G2 b`orХ 9lZO^H&qSR c.id nC>[Q +k~"+ ԟlygܻT5tKT+Tʹy Oyh\at-.9ՎbTH22g?2EXRuyP0?<؏V܁$*-$ Ub׹]x^k[GEeoܲﯼ4j_x焳Y`b s=ɠe3M=v; |c}֔m7pQtHᤳAS (?WITs$-S`j]yhHSWD%"n+h-k8[2etǯ_ +,;K*4,E<̌Q+; mPt,tݣQCN:U)EuO>9S>x+Ͽ%mm=WTT-\x=Gto5p_ 6}FNw%}e"sƞyWɓOF$ ^0ro pSf tsyԋ.ã W/S:ǐ=1͛eՔ|dkޡB3U]8~ ^&…7Ĉd=dZUUU]Uk׮kbmmm!vtd1Cn QulYU dCCUliokhF,mP'y8DW0kW^gMMv7ȴca)a=MO;w߿?.Bjiۘ8c_|w9[{ >xɄ~rSO2q2x"NgBΞD?Qρ 5G%<a"(NJ3"n"*O7s@Iի#gI h]f5Yyj+;2Ro0aA?];[~Gخ~ݫ{ߏ?hҥ~„ !fE.>K&S YMfVִbt̚/CPk|] *KcxRzȹfOȝ-1BF)kE6n >dfHMKTʆz?8*?neXGUNx~[H~"^ޞ#<"xT}0r$[t_q<3Tns={42m_=1qZw#H={KӞ$Cc>ҥȑ#1&U@F9Z55xa"Q*Ŕ1%ʔc7o6442˗vI̼neNQ#%& 6!/cR۲+v9d*XRՠqu +7^W\f#V-Ƨ#rjX!@SUP&3m>|ГO>y]wA%p %$ S!:ע(4ՙJy(};o;}u4P]lML+6uVGky~GHH䢭us#'A^z{K&{ +xfnnw , Rb` (k(b"((aR +Hw&vݞNsܥ|~PЮS1slKvRHg .`JRK,CRA~~MubH)lTHU6 ptk+UeR,!I!^&O RߏmÖ9<<~3-m9a)zqkSAx~0c {I(ibARk2_ Aq=Ͱub@NPTŨmݱ=99aA)z~ౠy +2;SC^@ HG? + ++*[i)e:tsfOk7%h&cGPbܙ|~p)*ҥ+&T+Be̓t,.Y꺌˥3S\ hm CZΊ *ƆMIfr_[i~[6&iralvh (a+  + uθ^1&%J<+Q2'Ve *c?9mV +( +6+?SEϖ ~; +c!Z| &mۚDT&P7" <~4) +90M˖-k8Ε叿BBB + ~w&a +CS% bu1M I R&pJonS0_)sw[e*S7d#4w?|wKJIp,aIIImm}hx!?EI,++08]AԴJdhMP]cqi>f&/AYXB-C=|T[_O<믿vӍ|vB>5o +Ưt`C@|b<~lZzjsՉZ[Aȸ5"Rcd[yEM%I"rm +c7l(V"'YVV YfM,1H+؍4H+Tq (DJDY]`<۱bJ)9)HjZK\a˖-uܙOFUǹm=N]6O3(M:MsŷXBs@"!/;G㭷@nU_ۦuXEi\IS' U`j5}N2q,<v9lPLQ-zN.kqN?6k֢u̬KtRSSXf~h~~ʕ?~r555 ;N<PQQQTTCu-::z!b2v֢DaP$/D뫪Th 48C!gaDBB않17o$M1tj ~[ >#t|>5DELjflɦ4ߚ)FVo2O,]K`Vl;v7n,"kR RElޛ3v'~lk(4,6aqDvE')E(D k5p= + +.]\.T㧪0K&|~-3sK;Tn/Ǫ>Y]Zre֓O>p}ǵ}֖ڸ~y32F8Dēd6"Kf8HkU&{*5u+M2grL ɓvgRR}bl$kv˗[i46# +bcciÆ k۶7ߨ0G-NfɷW͋T?(ʁ^.Kzg?#7tӿ{v}Y`CWN(3ڽ7$gIov6닎;GD:C#<bL +oɢ`%f+)FNZt v#fί?1&֌k^L?f=H wNNNbb"kn/j4&lniKDBn(nm/% +2b*wDJ;ojx Nz,6ja9sLXXXFFsng +Nk&Ӳh524H);IypdXYa)c-(*n7w3œ7"-'&3ϫRȟ_@Ũ ma)A3jP$) u5f:B=8SVNΤ;r ~g5c_}pwsСҒwYl+999U>0⒒˗/'&%-Z[n{A3֌m> !N35]1)} R *־}vRv +C )e۶sH9عꣴu;vݡC X{V9!!a׏hWdRcsMqe|E,\8i8p]^ nʖns: =zO>Iq͞vGꨬi,u˅rZ < tvvvh8+Ke[lX9d m -,B=4*@8fщ͛ZN]:Lu@L5حEvt;﹧& +i9g;H$g:t0MIwTD$#zF +:%R0j",E4㬉:ejgEc1iF#23O.Fivj޼iOr~M:'5Fw[gc +K3>?Yibs#V'p :Pd.ց$?rÇ'@b-wrW50fڈ n9w6S.V(i4V}WހFv 5:ϒٷرc1ݻu}A|Z ikyoT v֘ejX u%5U`B3SЮ05o<86zdcMGdC3JSbKšu\WN>_}/~a؟.wj|st!h'jL8QZ [1F ~eyZ@`p3mX7YAɿZ Sǟ#?zDĆG)⬭UaMdF_#gc^} $lqW8cxͪ7EVX$ânЌfTH Vos؁Z$Ig + C^"Ŕg?KzA{IyŚ'语y$ . +鳟~szRѣjh5%zR8UEEIJ 412?f./B` fa: sF&s1["1Afj_VVFyL,lz.#'h/_-.$x3*H\uٵ3g&&&j&X 0K{y;h4Tj;E˓`b+C۲eѣ P4y|YESLKCa̱ +`@LF:xӠF/h?NNeDHk`6d*|nhR|(-|Ի,Y\__7lV-cbb + +*^|i ZPjcfϝ͏gFuu>b6DXa,^Q ܝXX?9JxŒB#C'N xxqfϞ;k֬sO:~⥋)I'N+Z8뉙 #U ݼӦ9Cnu뜸=:b΢p ;1AS +r҈8y_"_"1@ ?%ˁl,1 D aR &b*e=~kQ&-S"$ Sa?‹/>4΅iۖuQAF'~U!6M_fK/{}Z o8&c~bѳL K7͝ AnݺGh"'# brR>@ښ-rsY Rĉn^QAr;{b^*iV%#" 6GI1y|qSRbz>CzܹC9"!aaW@O+*|k.]?0{\|tA%`FE)X>qxX8hv'r .ȗH(,dyEb*P*43KEHNg( KvZ_P\|eܸqx:W% ulY^Ypsn&Bj /{twjypOuu5S*wbƅ5yOMF4]Z4Iiz&BU5㞲^jY˗2kiKSmq#0_4Q3=1OM:j EmCjI꧎BFR(Dd\3©9eIC i5 pj +`zNqlhh䓏7ϢbF:Үw%'%$])HF 8h:WEi!vM6e%oeSS+tuU7` ѧpO16=++۠\* wF=}N hE4l`г΍sty ,C?c,%` ꪗCU9ODfȲ!̦1I'D&fMi '"{Zh֦M.HWؽW]|B?x\YYY)d^ZP +T?5-f< $tS1n@XidqKt֬hXJ%}02Mߝ2Ҋ_~Ύ]t˹Ғc|ښV-7I)..ͪU3ct 5'G ȗN1x+.r񌈊&d0J fğ x][xM7X?K _]־]75jq?;.KW~ufQq:"`i1H hiR7VI] p:'T$IrP l4>w*T!KbsߍhA/{$ <ڂD/M%*IS,X+ҷs([GZXsc,`J21)4Āt]҈‚E1C4؁$BdN@8x`}^ҥK؏=Z<e;7#))mo-ݯb/sbڀ` +p駟~ӗ/_~uQ7eX(+-_} O>8%%IS \zNiu2MD3Xw1a`w>o _q9ecYmTF w no`B^z(--G%\?3(>},qM,9I rX70+I&۹A{LF_$8`u!umڢ`f=( +Ν?qhܸc%rrSܞPIf_[l](+Qt|Z#3ԮҢf br ,ꢊ/ +EB0nwƎ̦C08VMs0vWD^pIÕfyVMM-,X5l؈}âApc5k6f7/X]惎CBaUL]X8jѴJA4T}] j}rAGBL_XQŇ!Q /.eO7}jjlV8$FVQY][[[WWm7<^FJWċ2NxJ+CZ?$Daf~T= 4T3@5sfO״M( &%{^JJZZ1|T> 2)\$CǴll,U=^ʯȌ\EchMd3B-5[e5uA N9~-{y7Zŧ*ϑ'JOj$ x~dP[ mދcSCn*կ|An(֒4 ZUnfc Edip/4?j;h|OE&U,ox0ʪn{vs#QxÀ&F7^ii)555MHb5] wɏ7JС&i|ܰɠ3=x8>3{8Ж|TU( |fs9͚gGFŴm%Y} CDJ|+ܣ?/$DF;l0J4C OJJġ k 3lxd)2ҵ?KjsC2*!}GnSMe17b 7џhb mV*E;-|DcR2X%i5 -¤m_J,)Y!I + hˠjpo1bğ[k׎ƉepiI[_&w.m[^^;W7|҂FO6w?d OGc6EjMRx+IAs-VYY/~f*ݢe=jZtA f]E;۱aWbWeW^H/,ܷqC'W^YW5HԄcjj inn. E<4LljA˝IɒbFX!Z¨s&cXo 1q!=HlAc] {}T_r:íͯx;h~ofu(uJGj}X2j_$ML +G(ĦOC ZdC+P*-ۯ̝; Wt閕qy8ހiӾCyΝ8d莭[^ H7F^M?6T7z|0Ia+`*/$+0C6 9.jɤqIfb5I{Qа»Q-Z٧wW0I.zdT7M?qiv5>׈ n3֞!*UIس.0ΑGS3bƌA!c:tQBBBbN<9qje(TRX` Ѹ|Ma~AQa!@(L._.8|YO_)ܵS޽ɒ v9 +-Y-*q>c-\:-͛b\18(UVm̎rC%&y q׻|<{d>r/?_WZ0a}=o7nnߦ ."2<&.2? +Na}@F]]r4jdD6j$1cX& ҂h$ I8Y^wfsʒKp8acJJ#"B?]1( +VL+<<-Mdq{H* +gDt&A}g>D?6}f{oFF*틍n*瞛XCHr 7кڪGTӡ'X5@}d-Z|>B0]`}e=b_2q{ ',uTrMsҝg.\㰆g6x2hjEe._<Ȋ50-0>ʕdD@a!%n%h{ed511΀[IVBvhejմifgp_MII'\y u }D3СC9,$ bu'SS4`Ltxy;v*==FJjE銦Y\RBn LOψpXT'.C?"Sۈ2@D +アxϛvfr _^n<^VVvĿ0ϛo~AngΜ:t8QA1cV՜R3#} *;XX$U%~9sgUTkiR$`^P3١!Qё6En2ݲi{",,4) @&ngO UdcQ= &SvlH ;pyhHjwk4# 3YRJ?~-22}^UWWD}ev3v7..d߾}:'2#iD_ul@-"XXn$jp_xjibBaҵ'[f2$BXiw CbC UTt .jV__`1*d#ҕ5&`0=OPw;v^3&n ;f\&KXLuMtYy|bBCCǓX>_Vq3pR`C&@;>rXEY +ltAt̘1iʔϟ?ԩK۶m0v3b:EB z t* 7=rcwCLL$W# Λߨ8QdTB4(Y_@[TEY·o/_Ѻm#c >pM2z䘲>/ +/;X5kchP}VbFʣΌ"p,a*ԛF _w}pF6o!!!t,'X6;(wĤg 2>{ +& R3]8φƩƴJ VXѣGڷo^Zhz9 3;/GBqlQ[uc{PY.,,iwoqlYpy6ZObߚ+ٰ۷w|S^5Ri3Zm;ulg֭s@:tJFHx=,!uFI%% +U1;o'|xi߮#XOmղMm\Y֭S'~fފ?j*7YG\l;hV ,WZU]Y CL |zWp̙,jNDžV(p"s\Pp޽9JD +a^E HPq*.C4݈}=:#aÆ {ٹd=ungϞ +lZ6ޔ r|~뭷.i!Q,N"O_ƼxATU 8K)cdI&;~y D+Ģ5 +I[9rJMII@Re<x\^Kj\\kZ9OQ'qdZں]z]efzE2nƊ^aehFgh(R%Yz<}0ذSVV5ySSn=fwW?C7R 7?>IXg.jٮSVAN:lJ=a(> 8^kC70 Xq_x=A'6b]3]䰨o[ax_޳CVf;'LIvЇ(ˀvsUR-JYbDŽ+(nL^;b(U?btDBul-44|||z~5|@e;~:6.aiĽ Ξ:=yDᗨ +BԶmAծ}[s~4=4VEX+V\y1ƠAڽ{wy:@aR34 Cz'9kt@pZ^-JNL᱉ *Ȓ#+mw=ܮPg6deedf߻2S' =.ݥ _I6z\9SX ҊG' niW^5S6mU)`5Up rssuL +PGk<语5VQQImm]f͸O9  kԗ02 ȁhg'8%%EŰ@]w]nݎ8cS~ش2{ +?O<> ;ؐޢMT%cg& "ӒE π W͚e'Z a@lu:lGVZm{ҤΞKKN8-[dŨhn+B$_mmmzYYY3ve_{o8C`P[=n2+REyͽ]N]kNl;vX %O=vcuJkfլ/=3$aUЂS@;gd$#Ko֌DNKP黊^q;6f8l10?vulFEV=Ԝ_2安ev-|l߇4FuX5 +o٪lxpNNr:B2r!0eW+=L'sݬ nQ*x3}%73d ۵PI~ՅwZIݖ/_ޮ}K)Er8 pOB™Z$TIKFpy\7밳H 0DcYhX-4\G-| +Y}|8}lUm͕̌f#"'{<Ț5_~YY 'm%lD$L`(BQSSW^^i)vϬnuXee){^~y~RR*HqD#Fg Q,?զ֥۞={##BdrYh%y],C! KĉC\zFq Ԫe3S4cG +TqI)#X)Izvw؁JMKƀK M e.c՗ϯ‚4d f@#q,荂l1,AsZ<'֒hp ">}.9x5氠&Vj񇁒8Q +dIPl2b8o+m~޽'`H 'ܹaVͩ~ݷp$4;thO}1qO5wyH 64- +b?P7Q UqMVb? +ȏ>K2K,TR\h^^C<5bĈ{OL1 r`>99!2s8j s|@uu핒-\}}<0*&C_y?*N'%)UR;ѩC׆h񱱀CVT΢UIkkgzttwO۴iSDDCر&~%XsXA~GX1cT x)V[5_|BÜ2/\P__;cƽ/,1?Җbg雽:RsWU(dî@U>l_To`z돛|tWQ}yА^~\6;VrU?C@3EDZb6l w矟ct^TKq3#8P>س,7/΋MrA;ox]'JFUWMjS +[xRtߓl p6F_W~7Ò'm Skh;h6nK{:ը*@;j Fh4dυǁP OLrVllvQ+PVZe=->p8LҩSݏ6_to_2VI1Q^xy!Yg}V#X:Ugm2 Lɩ_}n4h@bb?s?CG()'Ok"l)hauZ']^^>ÿ/?@.W|qW7pǎwԩCڹs{ll,s={Έ"#8l|>k_~ ں/PFIćJ>gݺuU.???"2mccWnll >$j@l%ƭ8|L84͈00j#/Û#hA쑺XIp a Y%KXDͨ74{+GHkݮu4 |ǭ3r:Trr010)'訖ۼ|X,M//7 lv-#uC$9v,$4=|||1b0ύ7y7($$Id31|xUuÇJ{=[%M\0~a#,~שSqjt:4JlbDeTEb]J:} ?S,*.]p Ā1mZڜO?fۀml09u3Mo!A.vD0ORTW[?}ڽ7t޽ڂݻwc?)_'rS[6o%\nPs[ZtM, +)1)JI ;\8 +Nr+W~CUeL +P*Fmh݀Vd7$:Zzv줤$XW]]Cjl۶M;p򍭡ߢN@Xa#Gp|TDTJJ@E혤ꪸxbh(Z>ueW+:vwߞP_u1`C +ڴi5$%P-j4z#Uߐ _\9۷uQXڼ?rWGȊ4gg{JljJb~z]`N5;Rh> rȕyΝ>v;o1b;&Ln C2h5#D&'F1!=s}nC f|Uc@m@>ؗ-:xhXXhV[ZZx(7/мМf͚BT +gܳGА۽W@;1>G-\Z:z;!8EDw4L2}h"mD.?~<22 +Ջ/xۦba>/M`ZdqiaqzfƊ +X=ωFrN9dTخƴYzPIJl5M[ #G,\]wMS (\RV`ݷI +((A  :S &!!aπuP=z,ȄZϜ9Nt0)8j"F5xhm]-\SR~ejvTj*T!a蠃alQQ# }XoyCڷؿW:6V\2"8?_eqej,](j vNJfz]tpݻ' N:ˇ~g,`Oa!\v=?CΝw%]^/Vt=u?;vT_)|y[`y;MnjVgdE<`FfӳR&9Ҫ\bo۶YVV^x9p vԇ8ӡC{+=v@RD𓞅GkLl>7 ˯P[Y23< zXzQ4(,C +r}aAo8vX%Uuu:6|k__s2#QQv/?9vS玘DQ@nxSRbJRBmG?~Mf;"WLʓSznnӧa79rm۶} + _٭!a9 +CC#/_* 1~8c$QUV8?arˆ]iΝ}6mc۶퀫Z'Of#(V,UegϮdu~ (_r߷8UcO?K$zS.ݛ7ߠ&ZLe  a÷n84<<>6 #  QE#JK.kRE;u@S6mw:¯\)߹P`9T\Tн[M6f]"geZ }ruXH7h, ?ի=QS@f-֯n̘ǖ33^o֛X_ްqCUU{"vt9hÇM0aK3UC4P~k +BDop۱(੹~ + ZF%]ӻ6 +뼺d$Z(bYw793_{stNX  t]RJt^}C#G } y Pa/0JfoX9V:f2i%w5**j}Nt*=k< w\lHgyС#psНAy5Hrs4Իa5R0V9-g5CGތi:vJLd[ݺtq헟_w]o  +t +r[8_sT`)Gnذ`֭H}v{1rԈ_w3gOZC3tc˜sԬE }s̙=N;r|Wǃ-IKtYH:lٲ8`Ϟ\lِ!CRXsp CAC6T\TֳWW8t| DsaE9z8 ixҥKBZh?xzrvZZZRJjX(Hdɒz٢LU#Z]-7!a:tj}G~- PgXxXHw +|`t͙FŪ,O*ޣ/\afD.lڀ׎{C@:ǒ1r.NKDNt* qP-n +gpWLv0چr_XnE-ч0BMQH=w[~姈̴48 =;'gFGEc9=łXׅc "X o%'~/&B+ AywSS8qLH@+vRH$YT(%U,\˅zyA#n篿ڷ@]njE }\#VޱcAÀ +.y}@-0_JJĦF4oaI>.W:ͫ.?q7߸dRqK# H}ki۷\t u![5S0Vej <(ׂKۋI +.!a-Aֹkڳz# V@bB>y ǴӏI`%!!J@ MKIxBVzoIEH3Jiq>C;ұc+6oHOK 3զr~>,~px}UBB ;,s[ly=AƸ}^lPmu{]w&h1l[6=rs<1(˗/{\nزnݺOSNL`X=cT2dWf!Ձf0}\۳/3=>*}brƢӅzJuEoa*G=8&:nЁeU+Z ?0WWr&TBNCJo.t՚!_͙aO=M +jܧs |Te o[a`G"‹*+tҁ<^Jsν瞩u$'(V-n^c-=aC ,އ)PK<h A,--}YfjjZΝghY>svzunB5C?½"H7-Uƍz_^-ڵk+vS0?}}MKKvҳ뫯֎3F$$,[N +t]5l:u*"<:<4O^l{P)cݭ[ٔ99{^C]_TXڼE&\gѽ;lbegϞ4ZJ,v!s pl=bh#mں-]n3RsҡC23nF.X2jA๞auT`Q$rItj}$NrA{rܷϙ3g`֬YUGH~eK'N:pj\R[[ 1+CkE #n5YSSSubbbaqڶcDTNN"1x>#D9i$:%u.hgy#iK \QP/zňxD"QLURHgĩ+W~9;W_{`I簇T_MlO4 cYV 0CY?ģW߸yfF=*++rԻv + ?)SDޭlOرCYU-sgx>0ʊMoƴ{gMOǵDBls^/E9io?}^{(<&2>.`H.߸q3k?#9. 0PtYϛ*99->.(U\l鳧"#^(%%8qѢ@>=ՒңG|‰b85, z8999mQ׏ɯ/\{K~kb$hA=;@;J*i +P~FqȐ@0pblkr'#ݰaB}***^xᅻχlcn^x_[ᆡC^p& !J6Ϗv1/y_nWSW JqI||رczbXeG{@ #K ,iQE6fQudMII"=B$jS,8#FXhr& 4cdd.[] YO>v`.ݺŴ2dHT4>(ܝ_5b EAZ9xF])%%EI {=x \޽7aO΀Cϝмy8dggi;ݧ;9(dLW9 +< hNǻw>zȒ¢Bu) d\X0WU"jjk0iܸq-3M/4g8;L6`ܡfcߓ&N(**Ҳe˲2 A`Cz8..ܹsm]Uw ro`zQXLZ!4mb`)n튣s~az߯jnTK(m 1$!G.""S倃yM\p!..aÆ{Dӭk"8ǠmNiiQQQ^kNϟ?yҥ'N?]7\$ A*llZqoMPE/YbJ z~ ;,^Ok)Aco]j#2G 3@Bo0^|ݷ?VɅi)hرб \zOOov/nwJԤ;'gd(qGgѺ\Ƞ(&&HFW@AF@'5mv)tpNgb֭[Dd`U8v 6,XaĸDf2j̆Z*My@`>bbzs}W˫kd/?yjMd,qIp|@lͪ>(8S3 +ۇoHPJ]nsB45\~=y}C"_|R˜G}43+c3xO`vؠkg (R?n4./i.OVޒd4,1N1 9jgll\zzz]]m@9s +"//wAC|׮=DF/9a-Ȍ:²?~Ͼyڃ^c)'\x_k>TC Ǩ W;l.2~6!V3(=B(Bz62xDqqiBB'1«QV0%"M-Ln x#wk׮ZK)+ >!]`H*09V }:k' +NG˰,7*6$l/1ԨfԐE/c%խȎgyO>tĮ]{}sўxdffe&$ ܭKWtƌk r>*^ƬSU +"_v"Iܵ_x|֭aa.?`N35{ ֙S8L(Bɡ)qo):-l؂]/ҥ[6m1Y[޶OW~z:zBiYFF{nnjZtWa$уʼnS@%tu\B2;PbaAHѣGرM6(=z8lVBKCu;Gi=bd!0}/8yu_4o9t2(l=y%KO[**ˆcKE7׾ +5bĘ6 b)hW1 ! ,H; GJ.<38M-rZz\@SacVw6n\l5 Iؐrz,3i|^j\wj쬤OVhx꘰˒z,FLkҙ3 6pPU> +3#@ ξڮ8d-ҷ-Yd"6//`0I!`B2$@9 alb&q āN80dcJ,˒%Yn}D.{vWWWWUWWW7T}Z?}#SO/=Rg.nK.;8[RNc^JǼμ "aܣ| ZvuV?QU>袋nZxFj& $Pr2 s4_\fY]ڢ{''߼^>oV +dM_E|O>sk/G+/T? /qbnq* !5Ngᬵ $Ng5Oncㄍr%xd$X~__ZE+8]{ΟPXm괢e YkH,p/\k1)0v +|9F npX +a.ȗvg3tѣy{.Y~N!PdӠ{{o-o>Yxdwq Ձ8Kֻ?9*=XwUv+&:ZPt1I 6H =.pZi1k.um3ӂ 5rNaCFX `IUg#kSG^~+W,_|]w|+FKn8OqhNuT☥&B,Ri^q@nA=n3KGR#4кei'[Ri.zKWRy9i%]>{_soaUuΞnӦMrmljC`\o;P;Wg?!3!j-2%ӿvhÊ3Dk2j1ϔcBon|$+qφy1979 K ikXxݻ>я%{똗rC?K?s +>WfL9j7LV#7y爫9}' +\Uc582(b gӵ Ҙ핎`@g7b %YZ"gQ +zm 8IsH/=EMFuo=r"g.?ߕ}[޲sCx™ŕn[;˾_]z{yF&3ss[:als!iAaN)t2+6$$MX8Z{g,?[x<׽s^Z + 홪A9Sq_$IڵAf` A)G!)g5r( HC-E=v[ҷ[蝨sӖwW OGF#@5p>%c=VMڳ\U'fff>w>x`u_v/PEG4=7``:^@c*S3V%y A! +Y r^9.sQ%v^^EO8$N?WqEX bx%*BcSlH2vaxw='}ywAPvLv#+ןtY?~SW]~qvwThM[A3ފ=8ύhm䡄&*7-z&p.[-#!x jusyT `tTQhb6˜KύZbЊ/071̉yxfQc7b[W{7np%VQM6pm=ұӖypŊ۷?J{xj⥗^羰b<>pu"Bd ~aEkDIOu h߭ p&8 "~@].$RKV:KjIg>){d7Vd^&Xlҍs.lp '/#CQDkG6(orMߘK2 #| jU~V;U7?[.h5LW{G7_yUxCUG΁rvHެjCXҚU`bp ig\MˏiȪHH0BZ0ˎzL瘍hQ_Z`*BtyXPE5ā?jWd{9 DۆtʓBvK G h^?óV:k.Ajļb,!^pz֋e]tɕ*~]q7O0S9N]`Rc([FLpY4P+qZYH{J@ub@nr"oYSl^;ش)hdFr՞F;S 4'ӛ+19h."H<*SB!e% uk~_W]ŝ-Z?~jWo]| +&XwNpw08@K?(.:2CV)9*D걶c!BBff)6%))2UeȦ; (>TG$qρC8B0~LDo +zgj1{_8nu6Y\0# Q=rc6A ^ߝQ ͞=/>z?-[t0M6ܹ'z' ƸRy+Sӑ xC@x]4*+ ի%!%P"bCQ0($ +2]ѽ4*qG@c2&rgL\<u[ +шBBK(o>gmf,h.Yw1))80xS0Ay%ThW& +)i&r~0r%kYYlSgʒJZ&9iSng~nMbhWd\.Ks¼1i)cc ]Ы6},ku5QZ+۬d{FqyQu910ퟺ/t>GfCa0Qm!է<޽{n _?ٳkr<ŹJL65 uɨR<:u"#vmDCz?F1LK제VtUo~k5py1@WpȱǷ]mEbCmKWY!bYRdي8Ի%SBәA:.ZQ'ЄU BF]i$cZa'w奴I> d[ǥ3UZT7O?8:n-2<'H-#>mMD~S7e5Dr:I.oY8/K|bX΂w<9)K;6&;$R[e Ax^U;Ԋŧ>)0Ùm:Tx >>rN-j8ѽs/r1X+۸qcE^˗.yY}f疋o%x*Y $z!!;Y >gĥO3#)0ErڑR y[6)PUJnb@ArU3"C ?փ&́4w%=:~2ܑdЦ2K+#!{6Qm")O?Ɍ ;e`ynʠuF3!/9+7i6'o 7sb5i=J)ome3-Ys^~tBәLiR%)Sad7y{]ehڂ``?CvϼS}HsjFk"F:~Ho%kHkD;DvgXFlA)G <*!v\@T Lm&ʢ)WK)]I.p0.V$jV#$%xnbJhp,+2,%ܲ $lI$%*8ڽw֮]׿؇cV{D8A.p4h;{csu]ХQ_Z`5ۨsssSS3&5V վ3xHK憫h.tL矗/_fdNi(ʇ7Mb B2wy8AVb$2a,LHTl􆸩} +Lx,Etn߷P?/s=Ć 0(˰gIpxdyyOn&YQ"Ji%?BL.VN"jnŠ?9#_e)o4S*6-9Z=175ĭ#Z4 "!r/|F NʒTsogJScJB~^B&\+ +&]5p; (P E3zy)Xi҇S`+>MLw;ޱC+W. g_0ח(G326ZF܁J{!b;q%g떟2ٹo7t 3B>J1#ROؤì*pŤF )fxV*9#pTߦRD4w҅ɇCj;LZz_JǬ$N0>@|r본,ǑO[bO>zTZQXiXR$ kY `uv_[ߊ)}AP>d!;I3:gZA9#}򓟜]nPw;J|֦h0.(PdJՃb8y~o~__W]q5MMwtwXouŘy<ƬBϕ@:2%qMh!ǁJu,IFف/lԑT(e]Hn0,iUy'򭘫d(0QՆLoex\ 4.dB\#2_S8#&AЛOm4j\ƨtϰ} u~W^m8ٛUw98)1xzFݮo~{̢+&vq"SS^N)H2kijj瞻>+v[\t%{pvYhgBulr2J^p%vMU@5l"{nX7MHZOIVjLV| *79[ 4ԯַػwφ 1.G°#Tvk`mRlj ĉ-[ݻw_>iFtjcPF , WM3I|89l_1")r&a wP˛, :Txml8#GPWҡQ4M_dMW(G +T5"τc&` \ U%C1jD⢡N:I/Rj\X g\)YOt;z׏ '^&lxN!5 +CXzkgLԗjmS}c:rh$?ǿu՗a1} bGK_)#H.L%UdL@mG䕥`Z,Fթz_M</&;30lh(VeRqU7g"}ܯL HUve-o9sH-Q1 +?WpwSwAN1cI^^QU6_/<|e[;Κϳ.1dngCՄ(AL@:%](i 7n'>m^՘Н0ʵiq9R 46R:hvʸlaqakZ1Hqh uD5$˹dwLf,ONvNk_&8ER?5@IW:s z+p"N:Eu+#yn9B(\8)?ܓD:CP@ *Jқ vǞؒ8ֲ(Y3S_sߠ>@=- 3KJ6 e/I%:L@-hbPtwVwʘ֋/z oP#;Ğb:1UK[nqi .[r_bXf1ɀ-B 㺞W: U:"cb^d ++F3-Ī]vU ~"(DfRH@`&Qj4nX2>e u=8`n^N*<dʼn.r!J8=R#иՊC¡D٢j.+(l" !{FbWgٞ$2$KL2,$*8eG:Y"b + +ST0(Ux0cT4mb.a,P/xђ2X +ԙU]\RRRQ\F 6MI8%Q0&t'i$/9t&7>0NF +I.sνd?r+~]gB*t:2cՀ7} O[PE|;+4KZWDHP, Zr+}O/ K''^:iف>HJ CoUg= !zv3 wV +GTK<Kl$A ;[z;”%7KE{ ^T HLOܛq-$×&HvdT*u&&h+<47`l_ŭ[V5U*43IUw?_򌫮r~ƄC҉Ru\),yaB!Ae\J4:5{ytC0W5:Zn $HO"T0ZrV5 eHGژ5}Ckv[ F'ZV )FS >Ν>kuxo9 Q"AW[+eꕒ)Q#c|Fhx0̫4Vؓ3(C1PtxHV-l=zb߾ .袋mV}Hɧ.%ttFQ6=A߻1Ve`t_źu`5[p˾(BI9evF5 +ɒ\J'Ȳpz%D)K3~͎W,-5/GL)ZX[5CVLbDIBhJ&Ѽ$Rx35p@RYĪ@aRa>pN)sLTԂó(Rs+}#Ǩ 'Ν^tMO=_M۶]U=LrE"HFßˡMޔA{Me<7lij;?o19SRZV*!PqÇ_+/Wm1DnfDR+(`WdU+ݩ`Йn3 zem{r9hR RH3sqyM^=iO$F) >֗eL6sLji0oZ8jt]J:z}_qjXi[ ,0."Dk8UU 1%&ᶁH ~){@j"t6G[7Rx!x GOreer=.<נ[!w1VΑ,TPM1987cbA:ghf_oʪLXhTm;9⌨FJM~E_"M"GB: +Iosu_Mr +rlzoc/:g|LOo֎8 +3x?J]J8;NMu.Bl[)Ӈ~+j8% ]cҔȈNFEDrJ-0IlApgEV> 7q Dm۶:j8?_FQt'wbԝ5T-,:\|odnC"] ~ς&W<"m97A83zuڨ'e&`GR3LJQ<7 UvRMГÑr؄j44AlA3V&5^QSX+bCܮ7LMOW]~Ϟ3S.`r u s"Z9oQh}mI:W>2X>Iq+?a34WZǝ YoU%m(j(MʉeB+DU"D8&T' @<# '҆$ʹe$[z± hpHO^ADr:P?y2PYo|7iff +0<@˥:Vdx*DU_.3!KFYr*t=ɆI ic+A>T}1boΘG$᱓s)j"&8ͫbjýGMck% dUtr*dtXA8$J-^hڠvIM!B92TiʙڢP+L=3{>h/g';܄M*yjP~Ǐ>p33Ut߫hj_+k~RI"Y鄤rNJ 5APt"U>,0)P%ft ("JLMߴ)>S9Pqmuk4Q|lJaC:@8fv(= THq U - ?.jȳ܁RR*Ftݭ1W)Y$ņ,x=?7753]/esa=A{EfC;W-:a\.ά_A|*ט 1% Ջ2k:v s UNdm\8ܯe,`Ӻ694BB^B: "B%Dt&?"VgRvbT  I{Ԑ&v5BHJE^! > +endobj +1261 0 obj +<< +/Length 9054 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 387 +/Height 165 +/ColorSpace /DeviceGray +>> +stream +x8C/L@GWd*AH{{}>{qu~_w[foް wݵٓ/'s[J!ֺp:{GEX,;a}ZFRҗXm0տꦟVzr!J=,\#juZRy|ڱ%cqFqeBn$E^ kڇ=d}aY5',a% u;FkxJYg$``%&DKl&uʨ9\1?[&bO\]0{Z',8,+MRN [+ +Qo|ƠTiN s]X>-j4:8NUN6 +KI H2-0}L5EbI\q +Q4@ mhQ:Y UQllŪB!fD_8-xR~E?tqWL T(ld:YᆗMC x@> +3V2݌өԟ=tjZK)`lH {}[ [^VO} {RdT0|+bݪ=8Ag=8]B<^7BPˑ%q,1xVh61z1?=cEcfc"6C-(N]A,XV$sh-iR͞&Qr.8Oŷ {['$fBN7xfyaClԅcm +mdly0/%-EtC}Tp4mw^T`^e(B56^B2ʉMíE#P }1U3f_z3@ +9*TĬ:^4G3alΛWÕA!O iu3̉XuWIJ։[F5Itw XNb - >cY|z..X}J؁$!"+ !9t9dpGh. vf1 )Ӻ/_Tմko53,G Ԑܚ2n|zA(/ wyS~if땧Sլ ,Q9'):phXF13־md4hyb-|m +JH,_K_o6Zy +Yε8!Ɔ#*WJgUb14t>Ug*=KQ't%KGu09 ((go-7 {;K5y\Ѝ!{sA8[msjaʷYQ U1YZ7X`4sށJ7b)>N>9HE?6wphogq%H?vYc|bs#ԆYsBUmk?ܼ;PQPٟvB2meizHrF|jt۱eSg8ŕt@NbJ{t$›]Z.3jZuĠj5^4(=Pz0Ӑ5v[lhWPᐟQyP7c+_hRA@B'#4.aC{r0a{}H @Y&yȥ-H-|g'8NaC?DZH +ޓ1=-JD}ħȶ]Xnv|.y.vDmG=Tײ1Lz +Oƅ24føV>J2s{ɆaHR 곍^H"A(z'Q7&j: +:#-ߐdGt* ~EM+4M}v|!6].A$Hu! QF7\ڤW=Vy$9sOi^B*Cڸ0_0Wέn=s/G6ۖZ(! .`,c7`' ے:g)0(o ܈' #4fz6qŭ5uk p9ǰ³6Y:ܖ`-6 Ζ w'w&.h^8&"}Z-eEyBdW=6i @B@ڄ8GBs_ ?`N Wx(n;= +Y!rxս.,$O5?0Q:A.K¶1b—omL^u$}'vSPUfNQٚt/n^z]/eTC.WEXIr\| *T-''$7Ο=GYd6 B {9SٍMLuF?`9Ȝ(@16, z-v΃Ef.{)=pp!+s^4e_P7=&k1sMݯ}7F⽦u c5f#6io`#mF'xSJh˻UkG70fV,&HHb?sݞ3)}Hx#9ҎkcfTH9*ka§ϱ6K9`$L{ʆHk.!67I@`[2cs0BP[B-e#frQ_V!DGK㠿|αXC5=\خޠħto=>xyS{Ui贜./e,T6=ꁏT}D N;S <+0v"9}ͽ)xcqjG6~<.g׉]L] +vb_& xp V/ :_]Bt "uGD:PnjBǽ%!\zpTo6&K s:LT9<*:U^A}4)Pb.u-ǰ}ߊGFJ.?wZt44߱ ֙eYfC%/Faܳ * n}GpK;Fv?8uJW>\~?q 1axîgo)YhѱKlmސWOs4u5u"|c՘[7Flp͘s%e|zc>D/|orıcYFniwb\븞Vf%&zNE]?mOn};O="'.d` i}qb&o@Y"7fCE˭#ߎŜ$):o~AH.Z-QoZUt AN8l"kw6qsNbИMv +?F}MܛI;zn㇥"jRj\Gh4L1Wo\ V=zBZ|?4.rqPۑ24 샹#3|bm6uL(">v*R?3BjM&:|N^Bw6_AV4̇79Jj={ Q+!| B~n?zb{8>⼧O¸Gtݠu[(oIWVch]1nu7hMĿ׸t?n>C7֟0%igkf1$p @/',>QR:-;+[)X[ͬn;O+~;_8o7Z~ \Ğ u^F5$o{5/q~5j,Ym?X `rGZMl`(8$itLhJj\tݽg . L>٬:86[18wp_OF~/Tkˣwlo ^س|ʿ.Un(9/H8[ˁsm9ռTj<5CRW<{_Q0-4T ryI]\ xcsfUɿi5F9F0<zmQ8ڙ1bg^ڜwƯgiONzfK_m5'ҟ ;m,~xZ._^αѸzϵ_ag~I,zuA$ t3aO3kPunLv"oO1 +'3lƏ?f`?p?7^?6Z[Ԭ;xL1~1|j ˿c>Rz{= S[WfXl}IF%l]pSzd뿯)"#]S`"rk9|_O)/tmvI^3sYF +߃?T2įkĦ˶MnZ~[}U ڽ04xy"~Ys4z<;>4 u7~Ȉ{ji'L=(~In_Ϳ_o;~%D7zqsy04  F?=2Y{R񨏙URy?l3SL$n^Wsb[{@do /I}mʇAJj^u|{ה ؞ $l': #YȀ`e,'揉*ea^Zg{Z;Uwocb%>Mڜc5(Boÿ$a}AR)H-$h;Hu۲e/h|t4;CiJ`y:,m jɅp^]pa02c% Өw|C'܉mab`NP|:"dPԆ30 hNx^zJwjU9~0I*s&Q$ۺF^kMI"$^50oMEPK|[G7H-/D+-2v @ 7 zL[Ә%\!=|=̏" b f+Y_U!$].PI-@t# +4)˵Y2Ac9, d +xBySOelӨ {/YJo;]WDz/3zj+6m¢&x`9ԖC +&VnCs>FaZ%.! )W2nU!<6Bs݀jX k*ӦR]= +`EP\ËU_諺 %;h;cP3.wX]`я&6d=iTs8a"".Ek̐1I=QqtRar,rjn_$l,lS3Q^#HY۲1* f2Fӌ>>E릌ET 9պhUI[lXh4}fcy|PB+.$Iz "y3@ ?DJz?U>a(x6p NJu$t؃/>j*{ OUSy#6z 75!Pr](pbl !":iڌ}}ΆzV)a,1-EK0 藵~٧mcz[D%ɖmfGVVœւo刽U,.&|dx ć&3-/o\/ ax6p{16c Bն}Su.9(2@B?vdFp拁L_W})X4}3*SJKEn^4if)oTƺ-P(`0>F1xk4 +`fkwmSVv2'ri/Z#Kq+c}"/U3%Fm5ڱswipp^iOV?؎ŒF\0|,js%)K;L+~o}g=a. zeTFY2vX8hNw׫\Q!c>wۜ u άkiakV2gύ>2=ޛ~RΞèb!?G?ISaiɯm_t5M{[ LPƳq +{鯯IX  T^<.qu :5Șn`I +JqqT[muTC W.h ^Ih RT9N`*F;,+HX@ pj֍#-m΂S;?9ZttU>3?;SXJ|u1m@/bUöF68yR N' ud@2 k*"zOTؚٵ$7osmܼt~GSF:'jK8!Ң~,,xA6@$V^E&PX?U unT(ŤN0SZ\Uʅƒ/X?7}`܈I&'^b?z8' W#ʤ"o˹*=:D+C#Z:'ȢyJFg1_MIՃs)>I +hkt|p-XK\_ +endstream +endobj +xref +0 2 +0000000000 65535 f +0001245389 00000 n +20 1 +0001321910 00000 n +1256 6 +0001245638 00000 n +0001245814 00000 n +0001322533 00000 n +0001322752 00000 n +0001389784 00000 n +0001389865 00000 n +trailer +<< +/Size 1262 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 1245198 +>> +startxref +1399095 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R] +/SigFlags 3 +>> +/DSS 1262 0 R +>> +endobj +1262 0 obj +<< +/VRI 1263 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1263 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/0867427CB21B78AE7CD269AE19A033FA302A0587 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/016E924DD14D903239ACAEFBF8A1F1A2DA1A1D49 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001399461 00000 n +1262 2 +0001399710 00000 n +0001399847 00000 n +trailer +<< +/Size 1264 +/Root 1 0 R +/Info 6 0 R +/ID [ <44032EA66070614ECFE8DDC5B9309DEF>] +/Prev 1399095 +>> +startxref +1400596 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 1400596 +>> +startxref +1400857 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R] +/SigFlags 3 +>> +/DSS 1262 0 R +>> +endobj +1264 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature6) +/V 1265 0 R +/P 20 0 R +/Rect [306.16058 375.34476 404.16058 413.34476] +/AP << +/N 1266 0 R +>> +>> +endobj +1265 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (rene@alkem.io) +/Location (Paris) +/Reason (Signed with SignRequest.com on behalf of Rene Honig \(rene@alkem.io\)) +/M (D:20230907135749+00'00') +/Contents <308229D006092A864886F70D010702A08229C1308229BD020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198F3082198B0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420EA936CB4EDABD9011233A67540F14ACA987F9A60146560084B54B7E814362ADF30820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B050004820200632701A5D797FF04723F9F90480552582A0D9F55A4554513B4C9DCD9A62E3E793D498DC0E0E3F80846C13EA25937A24EA22F70DD574B0F0A0BE3C3C4FD3CF7E8BAFFF08E04DB276A91DB5716633E0CEF5952411D5597711B7D8A4EDC37F810A9C04A1C37FCBE3E18E18B28B1C46D44AF78D4F60AF049413A2031B8B2165338261AAEF5E5AF32B4CAD1A7E331879D54F81604BDFD8B72747B014BBF1969F6ADB01023513D6A2E7DB7B1E494251FAEA2C355564D6961C8473B3A07C2132A93A1A2379765E8D9FC4E4223912DCDF8FF6A4CAAD9E8568531CB79486D02CE424396CA5C078677F5785F37741B37F6786F0A260B40CA07D2C9CBA451D552BB9EB653078FAE5D429C25DED99F43647174D1D7A7AD19EECC8FFF5276F661931AA647140CCC8E744E08DB4D9A575FB620DFDAF868B139583E76DC63B59A097D9CAB27E60DBF31F5387E5631E306241C5166331E37A268C5F6C15352C95C14666692CF0E90880E20BA86C10290D00E6E5479E8B60A3772C2495715ECA24E8BDB49F4680176EF19DF10BAD30355B89481EF009B366A8918D3341DE54C73DFF87AAC59EE8281EFC3BB8C159BA643C8938335A42842F277D7E55279C630A09472F8F51D8AF844FA8D4DB9FE71BA6A7718B6DF7CFD51C90FAA4DAEE9573FC86CE30AFED63A6426C7A0ECA66A10966CFD421B7BF5E1B71A9A7721D57E2C459A383D08FB63AE3624A182152F3082152B060B2A864886F70D010910020E3182151A3082151606092A864886F70D010702A082150730821503020103310F300D060960864801650304020105003081F4060B2A864886F70D0109100104A081E40481E13081DE020101060A6086480186FA6C0A03053031300D060960864801650304020105000420699155227228AAEDC8816E9EBE37737CC572377D6242FD4E48DF4171AC9B199F020900821961DC91CED27E180F32303233303930373133353735305A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353735305A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D010904312204208AE47888A668149B733DA745C84F2F0E88D29B58A54B999D8FED3F9BFD296B543082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B0482020072C07CFE35B2485406F54B4D9AE7B2973A52370B87DE72297A8FA163FC63835A861159B5B7BF0752E1DD68E00139865C13409450CE70EAF849B253A956916E0E30FED55DBC8AE1E82141E9798BFC4B0DDD0469DBA0AA059155E8AE2634FEE0A090118F65F0AB2CEF3E03C280F0F364E6C29D37DB73532935AF18F5277459EB9398A00D5F2DB3D37E81858EA0526B6BEF641041A064D7682E28A5E44D994A0AF031970AAF603E07EFC3CDE95120092C9ED2FFC67BBA2EC1484C0F28124E23C9967E73494F93202831BFD8582F62861BA2BCF63C6A3CF4B958E650FF6893D31CE9F74A531E0EA2C6D68BCF1F5136AFA2DF326300343D58A277B3921A6C8931718C9F0296B2A3A4E5ECF218CECA0700558867BD2191740217D80894E59DACD65B538669B935638399C2A39ABC59B357380C9D231EACA0E822C455F805F689D036E298E20C1DA7213D6745C007CF798767B6CCBE5063B3DE4DB4CE07C68BEAEA7C9011A90850A649EC3C53F2CAF069B2B96AFBC6B16E7AF9AF44CFD44CAC6EFAC22FFE93827F4C80E84C494DC5A151A7798BDEB19E874D7F10F43DC93218CF86824F837083B3C4C5437502F082D025575DD76FF55ADA1758A8D19195174DDBE06D0CA669F0830BA455E13E96D2553CB316B9D838426D6C207111469059B0A01199D2777A6936445974E67593B92B23EE87E71D0DDF6E9877427E9232C8C4B1449219000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1401730 1477508 30161] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R] +>> +endobj +1266 0 obj +<< +/Length 50 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1267 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 98.0 38.0] +>> +stream +q +q +98 0 0 38 0 0 cm +/Im1 Do +Q +1 0 0 1 98 38 cm +Q + +endstream +endobj +1267 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 1268 0 R +/SMask 1269 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +1268 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 1024 +/Colors 3 +>> +endobj +1269 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +xref +0 2 +0000000000 65535 f +0001401048 00000 n +20 1 +0001477567 00000 n +1264 6 +0001401306 00000 n +0001401484 00000 n +0001478199 00000 n +0001478418 00000 n +0001496462 00000 n +0001496544 00000 n +trailer +<< +/Size 1270 +/Root 1 0 R +/Info 6 0 R +/ID [ <6BE3E5C0A30C7D2675E6CBC55B5CFD08>] +/Prev 1400857 +>> +startxref +1507305 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R] +/SigFlags 3 +>> +/DSS 1270 0 R +>> +endobj +1270 0 obj +<< +/VRI 1271 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1271 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/C8FC31F466F64D9AD24800DF32CB7A94309A08AE << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/0867427CB21B78AE7CD269AE19A033FA302A0587 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/016E924DD14D903239ACAEFBF8A1F1A2DA1A1D49 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001507671 00000 n +1270 2 +0001507929 00000 n +0001508066 00000 n +trailer +<< +/Size 1272 +/Root 1 0 R +/Info 6 0 R +/ID [ <993F96AC7FB67C9DEA54735E73F1156F>] +/Prev 1507305 +>> +startxref +1508960 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ <53AAFFAB9DC0592B28263ED13E68063E>] +/Prev 1508960 +>> +startxref +1509221 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R] +/SigFlags 3 +>> +/DSS 1270 0 R +>> +endobj +1272 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature7) +/V 1273 0 R +/P 20 0 R +/Rect [307.16074 488.29224 405.16074 526.29224] +/AP << +/N 1274 0 R +>> +>> +endobj +1273 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (rene@alkem.io) +/Location (Paris) +/Reason (Signed with SignRequest.com on behalf of Rene Honig \(rene@alkem.io\)) +/M (D:20230907135756+00'00') +/Contents <308229CF06092A864886F70D010702A08229C0308229BC020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198E3082198A0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420F0BF6E8883F6FA0DEA5C46E6B1AB542F31042B02157B96F87BD1D058EFE39A2330820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B050004820200041C8C145D9CFF706C025FF4802A09143A7D85604F909F976D37AD658A6AF87C95160EB950379068118E4F8B499DA39B8C8295D6367CBBE083B3B3978D4DD28E02EAB7AEA3064A751BA25E10D5A72ECA0E781A5071F2539EA83C04BB6195A5D44CE62DDF5F08E4A1E1DAD62A5361FBB36E33CF960831223054F67C981D82880D51F351B647E7774D5418B5496F0D424BC9A5C8A3DC705E2886AD491BBDDA9B63BC590BF3EB0A10D2D1FD8106B7B0D823CE1A6A9F3AAD1FB3958366A9E42780990BD3FA637BC5329F24DE3840B7DABE8ECC6F52E5F63C0C3BA7CAC406DF200831F14166E8AAA0BA1ED170D1F059D8597230095F3C3F71B2E14D53A8DA6B94718E3505DF4DBE665A9FC27D78CA6015D348552166F447B09E44BEE857ACE28FE9F423787D46BC243E1CE3E43EFC6271B5D525335F198DDA457981CB7BB97EA3C30C37CC42897824A4866F92A893109C1D0608F5972CBAE1C98AD2816ED1565FE6DA17CB27950BB299E416D4F85649DC01A57F42A2ECDB3E21A50DDBD7C032536647750B21A39AFCCFF06E888CC595074A64BA43FC50AAB90DA06689F4C7BBE385A6C28EC2F19CA42853738A138FAB6830193A6C9B7FEED88FC13C2FCB30C5F62F8A0539F729A244D5CA656E16CD16DC4814A6A19097C945B0D5637B061ED34BA5D6774EB486EC7072661C227D255E09BDB6023DE73CD16CE053D4255C3254BC6336A182152E3082152A060B2A864886F70D010910020E318215193082151506092A864886F70D010702A082150630821502020103310F300D060960864801650304020105003081F3060B2A864886F70D0109100104A081E30481E03081DD020101060A6086480186FA6C0A03053031300D060960864801650304020105000420CB4E46C900644BF30DE7809BFDF616AFD10EE4893944F968CC060DBA077ED9930208611D16214CBF0E46180F32303233303930373133353735375A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353735375A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D01090431220420A78418F9198E592CFE5D553B68E209CCED7ADDBDC71E1BB54CBDAF59A85E51943082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B04820200C14DDF52B0C10DD54682E036A131E32C98818415B10896F1EB17003B7D8B1838BDBC9B4AB4E3F8A3F666DC6AE2D443853331E6951E73245F32123237647007231DB0C72F1C8E6533AD660F27DC226D665F72EE67601429C10DD1EFAA337FB554E3EEDC0D316B059162B8753DC1E11FC0391B7CBB7A41DBAD3C7A2C92851A342F25950D27A47226B5F5EA9AFD10C6E5A7342532F985DC5EE9021B2AA0299C7B89CB61427A3ACDD104AA7876FF66E6AC4D627EC0B60737118E0A21653CE2833CD7787B69BB6867C9B9D176B5C1350B752B22AA36B97BE7447195A854CBFE599FA67404E9943F2B5886545664B37279DB1F327F1779943A3B5F321B3116C24806F6CE308BB97CD44BAE5B00E7CB974FD3DC1A3280568AA6A799039B48E4C26CE5B9EAC039DA74C55622662C22517863120DCCB854F019C996F3CBFAC44641AA411AA1B72DEE213996649CFD3F9EC58032B2B8EA8C4AA84B210B2D791E62EFBCF16F6015EB299B095BD83BD01DFD6C0D192A26CF179644A9891AC7CF997954B3B9505E147E99594E14190DE042E9BC3F5E2274898BFA0A15F0ECBF05921E2774EEFD69B625A94105EE7A4E61888ADC673BB190C8F781D6B63F318C68F0402B5DAC992EC438E5A5EC01FC16C46E0185D4C8BFE7E534B9B770EE26BF730F75461C31B2EB62215436B117A0493DB3C53CF86E41E5F10740BE4B34131FF115BB16E8011800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1510103 1585881 30170] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R] +>> +endobj +1274 0 obj +<< +/Length 50 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1275 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 98.0 38.0] +>> +stream +q +q +98 0 0 38 0 0 cm +/Im1 Do +Q +1 0 0 1 98 38 cm +Q + +endstream +endobj +1275 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 1276 0 R +/SMask 1277 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +1276 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 1024 +/Colors 3 +>> +endobj +1277 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +xref +0 2 +0000000000 65535 f +0001509412 00000 n +20 1 +0001585940 00000 n +1272 6 +0001509679 00000 n +0001509857 00000 n +0001586581 00000 n +0001586800 00000 n +0001604844 00000 n +0001604926 00000 n +trailer +<< +/Size 1278 +/Root 1 0 R +/Info 6 0 R +/ID [ <7B43390C83E37D7543D52E13DED07B65>] +/Prev 1509221 +>> +startxref +1615687 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R] +/SigFlags 3 +>> +/DSS 1278 0 R +>> +endobj +1278 0 obj +<< +/VRI 1279 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1279 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/C8FC31F466F64D9AD24800DF32CB7A94309A08AE << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/AD1E48254EEAB6A890B4A57524D6C14F3E980644 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/0867427CB21B78AE7CD269AE19A033FA302A0587 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/016E924DD14D903239ACAEFBF8A1F1A2DA1A1D49 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001616053 00000 n +1278 2 +0001616320 00000 n +0001616457 00000 n +trailer +<< +/Size 1280 +/Root 1 0 R +/Info 6 0 R +/ID [ <23382BA05E9B2E6516CCAAFFFD081E93>] +/Prev 1615687 +>> +startxref +1617496 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 1617496 +>> +startxref +1617757 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R 1280 0 R] +/SigFlags 3 +>> +/DSS 1278 0 R +>> +endobj +1280 0 obj +<< +/FT /Sig +/Type /Annot +/Subtype /Widget +/F 132 +/T (Signature8) +/V 1281 0 R +/P 20 0 R +/Rect [307.16327 656.7197 405.16327 694.7197] +/AP << +/N 1282 0 R +>> +>> +endobj +1281 0 obj +<< +/Type /Sig +/Filter /Adobe.PPKLite +/SubFilter /ETSI.CAdES.detached +/ContactInfo (rene@alkem.io) +/Location (Paris) +/Reason (Signed with SignRequest.com on behalf of Rene Honig \(rene@alkem.io\)) +/M (D:20230907135805+00'00') +/Contents <308229CF06092A864886F70D010702A08229C0308229BC020101310F300D06096086480165030402010500300B06092A864886F70D010701A08210053082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C83351165513082053930820421A003020102020C551615150000000051CE160E300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3136303232353138303831365A170D3239303632353138333831365A3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D2053484132353630820122300D06092A864886F70D01010105000382010F003082010A0282010100C69C4BC14F4A9DD97DD33B5791ABCDE976152DC0202F2C3186C5093DB01F91849843952ED49EAADA55E2E060E8BB07EFCB83ED2E5F19F2D028ED3A643FCBAE306021E666AB584E6267764E528CDC7B98440E0E2D9050B521FB8DB1CDAF21072597CFBA0F1847194E71CB69B8FA236D1A061135C156BA9F6221F1B0F1018F5ECFF122A2C1420EF5CD32E82B27F4926F0B155EFCFA6952B08E7EA4CB75B94584B593030B722B40B36E4342A11319186444D4A6200945B03A640F56FDE485288EB8D43823C72EE2B0FB9AFB1A38819332E72D1FAE8E3717CEFCC2143F7DDF24ECB1ECA0AA8E2304811C7BAF29CED4E7D4E166E96E64E9E105B22A91987058D8F20B0203010001A382014430820140300E0603551D0F0101FF04040302010630340603551D25042D302B06082B0601050507030206082B06010505070304060A2B0601040182370A030C06096086480186FA6B280B303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F72706130120603551D130101FF040830060101FF020100303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C301D0603551D0E04160414069F6F4EA2294E0F0CAE17BFB69846EFADB83B72301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101007C781BC4CDF1BB72218C88174FB52AA2A3FD9D87E0D71C3C82D99E95933777D39B29B8BC00D2894028929980A14CF34E177DF4C3638CC24EF637B17F6032F1D4935BAD96DD8AB7C28F0DF14BADFC4BDB5B0DCA3EFD586F7DA7BBEBCD596C3BEF0015953601D4CB3CB563CFDFD39AAAF94512B2AB820F660D2E680338FA6E9520E71E5A760423603D4BE5E91075AA17DBDB09EBEE17488B9D96A56AA3DD4C191F62402E0FF4FA00E65A6E46E8968D9B8ECB0BCD8B0739913114216EDFB909653C3F25A0E50BBA3A034AF441A6688DA5EA60CD2349FA69C08587E7C91E44D545C81200A4ED06988A414A27A1F21665A355FA2B4CAE907F8CE7772290EAF8212FC5308206963082057EA0030201020210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05003081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D20534841323536301E170D3230313232343132343834315A170D3234303332333132343834315A30818D310B3009060355040613024E4C311630140603550408130D4E6F6F726420486F6C6C616E643112301006035504071309416D7374657264616D31143012060355040A130B5369676E52657175657374311430120603550403130B5369676E526571756573743126302406092A864886F70D0109011617737570706F7274407369676E726571756573742E636F6D30820222300D06092A864886F70D01010105000382020F003082020A0282020100A702F464C1B9AF33C4AC8CFD01CC659026F290E268477AA84F84D5EEE44E05EDDB07246FA4DBC9D3B0716FBF84382E0BCB559E1D2449120F797A49B8DD0AD0EB06BFEB12449FE6A166B7C3D236A5868D157D606CEEC7DD82C00BD79B37009BDF2181D1A1B9AA9F451507D09B6B325A2D4CEB5E620F5875F431E603B24318374643D66E25351628C0F321AE937488A12C48841E13304E38BBC0151C92FE809862592963D1E641F4E7894C857D0C0D9D14F84FDE8137DF8C206DBE0D2776C991662804440D40610218DF6806BC4F4E7212940F311D25780C4643C3E3AEFC29B9C8DAD5CA51A5E647E9B6FB4A30399494B24DAD46A9C67AA422EF29233C1943075EA9E3489A0E42245E4AADE954CD17B8CD89CE1C5D2BCB7BB92D88B8DC44F09183BDA3335C79E7DE106F33CBD8CB84C6FC69ADABA4BF527034D72E9D265172459C551813B984DA9E3744622431D719D7CB48C2A718CDE922FF8857BED6F7F25331C44397B08AC469711D5A2838141BFAF3E7E09FD7636CB7C84C0D3ED7CC214B159DF25F09C7CD885CBB85AEB91A2307E5BAC8E2D28518F687A0BDB9EAF1803B471615C2E6E9F60484266745AA676CD794A2BCF9CB3BFC5B69A6280A7F2F9C80F295E1CE4295BEACB6E5599CD8D3DF38AEA6E9DBF47ED6D7029000C56A934DDDC0B648E7617FBEFDD3832A968AEC6DF40FBC0AAB5B45FAD2585E5D4003FE90CD490203010001A38201C4308201C0300C0603551D130101FF04023000301D0603551D0E04160414C41B9ED3D500987AFFCC51F068925E87A0F20A3E301F0603551D23041830168014069F6F4EA2294E0F0CAE17BFB69846EFADB83B72306706082B06010505070101045B3059302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303206082B060105050730028626687474703A2F2F6169612E656E74727573742E6E65742F636C617373332D323034382E63657230370603551D1F0430302E302CA02AA0288626687474703A2F2F63726C2E656E74727573742E6E65742F636C617373332D736861322E63726C300E0603551D0F0101FF0404030206C030200603551D250419301706096086480186FA6B280B060A2B0601040182370A030C3043060A2A864886F72F0101090104353033020101862E687474703A2F2F74696D657374616D702E656E74727573742E6E65742F5453532F524643333136317368613254533013060A2A864886F72F010109020405300302010130420603551D20043B30393037060A6086480186FA6C0A01063029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B0500038201010029A0575B6F3E903679E165D7330592F1525156EE12F48F54C4B0027A78207D4505CE1DF32CFA65EAD970BC5A716427658167EB663BE8A79A97D0510F87300DC5213FF2F7BA22BDAE6B1F7909D5E9EAB9F7C7F4A675C055E7F4CA5DD64D18F24F70E5447DE4A5AB2E55EB19DCE5A75FA8E4874ABD0E800596E96CAEC4935B9F541C949A1A49DC8018C3FF0E4F48D0CF1A9DA1D483B95FD5E5E754B6AE3197E21C1344FDBD9BD1143C1693CA6819C46E7BFEBB64242691B2B4EC4867D905913DB9B10A4A0840CAACB82982BD4E98953308D9A15F149F0BB76562C46962A3E8210C298CC0164B3F4EA4F6CEA2059EE46B8200238649F9EECA05257F6BD8E49120DE3182198E3082198A0201013081CC3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06096086480165030402010500A0820160301806092A864886F70D010903310B06092A864886F70D010701302F06092A864886F70D01090431220420A91FB8227191FA0C721FBC18CB047CFF894F1C92FD966ED3CB9FEA547EB625AC30820111060B2A864886F70D010910022F318201003081FD3081FA3081F70420233E05324E73D49E87FB56D04D24603AD079D6AFB83C0C7C34BE1CE6E1FDC1E73081D23081BDA481BA3081B7310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312B302906035504031322456E747275737420436C617373203320436C69656E74204341202D205348413235360210106FFF10EEC0E4635F53DA8ED235ED39300D06092A864886F70D01010B05000482020017FC2D38325267657D045757236F209B252640341F42AF6B9A0F89C49D49DEFE9F17267AF09625D844871E4CF219B22B79CA6F3ED48B5DBD9AFB0501DFB394C144D20D59963C0C6DFBFB12D239A58EF4E2A442FB3EA4264E3CC22BC8E1E7EC4C20746211854009A3105FF2C8F54E99D3C18E589C654594C47F43481EEB5F1F3C498CA5531FFBBE5497ACE089DD361D881C706CC551437CF71043CF3BE8A4CC1FE0ABF22A915498C9536BC6556F464D1940A01BC3331BCC82921AEAB0E6AA1B63463906BA1A26BCA6CA5BF636E7DF981D401768220587056E9AB391695FF0DACCB742814BF85A54C16CC1A4DAE0D8AB590C2736088CF592B1131673DDE759D3AB364CD74B71907567CB9DA7657FFFD960328522F21650C34B3ADCB8BA1B78FC35D55C028F18AFD9A1DB67B95710DA620E439CA53DA807CDED7ACD46B228753B1814F803BA531D0F654C427031F85026BD480B2F9220BF86CAC97A1DAB6FD6A6113732A8F16ECF189FADC28A472C5FDAB7FAC063570D1591530F9DCD50D7493C05E3ADAFFA1A396AA8DF5E018FE55C4C3E90DEA2EFABC61C628EEB1CEC9F3B4DA957EC169D66CF0FB498157A41CA0D4D1BED59AC2DE7382964E8F1CEC59EB986D2AC6B8E6378748DCA3613D1CFB5802265B3998189ED1201578BF1C4DD137916369078CB53DB9E6E8FB5ED6A5211B50711C5122941A49987725B83B9A38BFDFF98A182152E3082152A060B2A864886F70D010910020E318215193082151506092A864886F70D010702A082150630821502020103310F300D060960864801650304020105003081F3060B2A864886F70D0109100104A081E30481E03081DD020101060A6086480186FA6C0A03053031300D0609608648016503040201050004208E6DEEF015386A17DC8D31F47CA44BCA65F117E2E95FC9E55A12C7AEFFBAC2E40208286AFB46CA3A3953180F32303233303930373133353830365A3003020101A079A4773075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D2054534131A0820F583082042A30820312A00302010202043863DEF8300D06092A864886F70D01010505003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3939313232343137353035315A170D3239303732343134313531325A3081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F726974792028323034382930820122300D06092A864886F70D01010105000382010F003082010A0282010100AD4D4BA91286B2EAA320071516642A2B4BD1BF0B4A4D8EED8076A567B77840C07342C868C0DB532BDD5EB8769835938B1A9D7C133A0E1F5BB71ECFE524141EB181A98D7DB8CC6B4B03F1020CDCABA54024007F7494A19D0829B3880BF587779D55CDE4C37ED76A64AB851486955B9732506F3DC8BA660CE3FCBDB849C176894919FDC0A8BD89A3672FC69FBC711960B82DE92CC99076667B94E2AF78D665535D3CD69CB2CF2903F92FA450B2D448CE0532558AFDB2644C0EE4980775DB7FDFB9085560853029F97B48A46986E3353F1E865D7A7A15BDEF008E1522541700902693BC0E496891BFF847D39D9542C10E4DDF6F26CFC3182162664370D6D5C007E10203010001A3423040300E0603551D0F0101FF040403020106300F0603551D130101FF040530030101FF301D0603551D0E0416041455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D010105050003820101003B9B8F569B30E753997C7A79A74D97D7199590FB061FCA337C46638F966624FA401B2127CAE67273F24FFE3199FDC80C4C6853C680821398FAB6ADDA5D3DF1CE6EF6151194820CEE3F95AF11AB0FD72FDE1F038F572C1EC9BB9A1A4495EB184FA61FCD7D57102F9B04095A84B56ED81D3AE1D69ED16C795E791C14C5E3D04C933B653CEDDF3DBEA6E5951AC3B519C3BD5E5BBBFF23EF6819CB1293275C032D6F30D01EB61AACDE5AF7D1AAA827A6FE7981C479993357BA12B0A9E0426C93CA56DEFE6D840B088B7E8DEAD79821C6F3E73C792F5E9CD14C158DE1EC2237CC9A430B97DC80908DB3679B6F48081556CFBFF12B7C5E9A76E95990C57C833511655130820513308203FBA003020102020C58DA13FF0000000051CE0DF7300D06092A864886F70D01010B05003081B431143012060355040A130B456E74727573742E6E65743140303E060355040B14377777772E656E74727573742E6E65742F4350535F3230343820696E636F72702E206279207265662E20286C696D697473206C6961622E2931253023060355040B131C286329203139393920456E74727573742E6E6574204C696D69746564313330310603550403132A456E74727573742E6E65742043657274696669636174696F6E20417574686F7269747920283230343829301E170D3135303732323139303235345A170D3239303632323139333235345A3081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D2054533130820122300D06092A864886F70D01010105000382010F003082010A0282010100D923E614A4E87C4B857158FBF881E6728B5D46C388001F38D08AE1D66E5630E5AFDA64507DC21339FBBD66B4DA84FB83D0281FCB76E86050699BF3CE4F13E2C13EC1DF12CB32A3F85E44220ECC3AE98D49B96074C8DE543D415E435F2846A9A6B7CA102B22BC5B4D5B8C17651286FD2C77D5C5A08CCAC283E047577CE770AE62452731180AD4C0A4185552F760C6044BB3DD68326E101F3411B8127864F1EEA9E0F7E3B1228F345A65CB8AF4E1455074DF9397A634E6D04C3B9F374952A7534E9F2E675CED96FCA5BF745188E3AA8EBDD9B12F5F503016F45160226B99CBFFE1543BB9FB4438A50839239B6947FA3CC4D0E7AADF46B2ECF28A19AC29B23895750203010001A38201233082011F30120603551D130101FF040830060101FF020100300E0603551D0F0101FF040403020106303B0603551D200434303230300604551D20003028302606082B06010505070201161A687474703A2F2F7777772E656E74727573742E6E65742F727061303306082B0601050507010104273025302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E657430320603551D1F042B30293027A025A0238621687474703A2F2F63726C2E656E74727573742E6E65742F3230343863612E63726C30130603551D25040C300A06082B06010505070308301D0603551D0E04160414C3C271D27BD76805AE3B399B34250C6203C75768301F0603551D2304183016801455E481D11180BED889B908A331F9A1240916B970300D06092A864886F70D01010B050003820101001D24E79A745BAA70FCB10E3145D72C007F663A2BA09A34AAAC636D89F99FDF0D77FD2423FC4F9CB76F8FF3F41FB6C1FDD61CC48C8866C1638DBA5777D3B81A1EC851ADCC60361A876A28EA1165DECC3C2C8C74B7E85043D3CC28E8156C112A9F149529C90557B56736E83CA983EF41C12116D37EF72D11476676608212698C7655730FDF2F4B5DE96C23F807F6B57DD669459C587D612EFC784B434E899146442CA053A845A1F61658BB9113F24BC5DF0BC0E7AE297ABD45B3E77030E7348EEB7AF6D3B5D1DE6B139946B38BD24D9375B5F16FBFDC0028C225BFBCE7A36534EC3F0D1D978CFAAA8822A41835DB058E76E310C8298F63D0AEAC18D9DAC49F51123082060F308204F7A003020102021056AB9575289CA59F0E17D40BEA05C31F300D06092A864886F70D01010B05003081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331301E170D3232313030343137323130335A170D3239303130313030303030305A3075310B30090603550406130243413110300E060355040813074F6E746172696F310F300D060355040713064F747461776131163014060355040A130D456E74727573742C20496E632E312B302906035504031322456E74727573742054696D657374616D7020417574686F72697479202D205453413130820222300D06092A864886F70D01010105000382020F003082020A0282020100C1EAA3258E453417CAF5B3C519CC08B30B134EA072F6EEA47650580F46D817E9B87754698071BA8A5F58673E6758EF4E50CDFAC6D96E13338FADC3AE46F6674E6D43378B89DDF8179DD3D2E9F96243FEA4A454E9CAB79AE04A2AF96211D0AD675C58FE1A4C496A5F161FB465941E1016949B77EDF39D1B525F191975DBEECF6759ADCB2E4A630EB182775A6F634DE8B822EC2F0ADB4C9B259E832B6419B6B774A5C3BA4C0D4DAF03E6166DE4F018B3A367C557ACEEB32FAF7E7C2B867A6DB2C9DA145232B6315026EAF64F300AA93815C3AA8A74482F4677FF0584C8A7E46085F9BCD98620AA0CDCA9A33FFC93944B95ACDB54B5AFC3FD7D2E41E3A32086504541D42E363128F60A2FF7C13ACD06143EFAA749C1544ABAC07EE74907844A5C99AE67020448A9B4E5C51DED8F1DB13F24C20707621C4BC536E954EA8B6B9D744BFAAA0127274FBAFA7D27CDED668D2778170EBC8773CE6D7DC98E9638A24B15EC574078A6C081D9C9036CDBE32FF1CA82AB407DAC9A701AE2DF3E9B58642B6B6F0F681E25673E7ADD01BE639451D35A8474B28F29DA2F24BAB6CF6E4BCD0DBF81DE91B735E692852D03C19F14C2C55CDF79283A087863EE21AB327580DFF5040EDF46DCC6A9B39ACD76DB73571F0C0D30FD6F7509BC9F8B33BBF0643CFCB9DD6283B2BC97AC9731E839C5CCB24BBF976498DD2E2AFEC427F057154D514F84AD030203010001A382015B30820157300C0603551D130101FF04023000301D0603551D0E041604144A0ED1A6EA82CD8E5763ECFDBE0337409024A3D8301F0603551D23041830168014C3C271D27BD76805AE3B399B34250C6203C75768306806082B06010505070101045C305A302306082B060105050730018617687474703A2F2F6F6373702E656E74727573742E6E6574303306082B060105050730028627687474703A2F2F6169612E656E74727573742E6E65742F7473312D636861696E3235362E63657230310603551D1F042A30283026A024A0228620687474703A2F2F63726C2E656E74727573742E6E65742F74733163612E63726C300E0603551D0F0101FF04040302078030160603551D250101FF040C300A06082B0601050507030830420603551D20043B30393037060A6086480186FA6C0A01073029302706082B06010505070201161B68747470733A2F2F7777772E656E74727573742E6E65742F727061300D06092A864886F70D01010B05000382010100B1C05A33621C6A3332E624303E6FC6E6B052341DA9483B070DEE9064C4AACAAD7B1A476F81F7CF31C4C2FA0628B917BC2E840ED24735FEAE78E76315E0DA2504B163D30BC3EBA38C412911E5EA98EEC8DDC515F6C7541AFE548DBB28F6051B0482A8338696C88FB4C22005440B025BA3265AEC4CB469BED8FC40445DC5C7416E3F37B57813E69514EDDECECA84B3D0DBCF2BA0FCEEB3FE88005FA6B079D99A0F3F5D97E59F420F1CE7EFB0E9AF730DB8799A02579A6B6C4B142ACEAE55A6CFB1EBB1A160DE6DDC2F2653E13D732EB1089C728729C8855088CCEA5F089C907AAACAB09BEAEA4033E22215D2D1777EBF189822BEBDF2483FCC02D2D2B6EB9B49A431820498308204940201013081C73081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B0609608648016503040201A08201A5301A06092A864886F70D010903310D060B2A864886F70D0109100104301C06092A864886F70D010905310F170D3233303930373133353830365A302906092A864886F70D010934311C301A300B0609608648016503040201A10B06092A864886F70D01010B302F06092A864886F70D010904312204202EBF3E832ACD6325DD7430D687A1ACFFE6A39E98475E16B78D60509C756FA2303082010B060B2A864886F70D010910022F3181FB3081F83081F53081F20420EE6119ABBA9DC5BB8C2C81BEF9BEEE8E0E25FDD85EB3F1A635352681D9B68BAF3081CD3081B8A481B53081B2310B300906035504061302555331163014060355040A130D456E74727573742C20496E632E31283026060355040B131F536565207777772E656E74727573742E6E65742F6C6567616C2D7465726D7331393037060355040B1330286329203230313520456E74727573742C20496E632E202D20666F7220617574686F72697A656420757365206F6E6C79312630240603550403131D456E74727573742054696D657374616D70696E67204341202D20545331021056AB9575289CA59F0E17D40BEA05C31F300B06092A864886F70D01010B04820200583517B7120581A336431D7A508CA02AEFCE13DAE4DB58F0AB0C2CA733A6D410D8DC801D16AC58B61D6934C2A4491964B25702F1F6B7CD78CF693195CEE537FC9FCA8E55CF3883A8328B46D26C226B91A6AC364209198C24AB057D7EE7324E1DC6707A13DA87E024A871A2EA960C2A7C85D7BEC9D923E8F573F00155CAB9B0F285192CA9134904D1BB90F1AAAFF96C4A78FCA984BB078BC833C0956021573DA9032CDB2C4FAD756DB06A66A10C753BC9781D2AA4FA506F3DA83A3774163967DC625D315E922E40D346C443D5053DBF02B1AE39205EFA0F0E9F2E8800545FA3027F221BE19B2E3C49DB1B5BE4517DD9EFBDEC7DB51C27B2C8E20982731A281272740213B406CAFEDE6B201194331B12BF7292617B01686481C9F41245EF67FCEAC64F71D1450A62DAEFF932E58FC517C146A5C62FBFBBC653A3E1973306E573130D5076910D8A381FC0FBDA455F8659DD4E78C8B72345238E48CBDD18D4520845DC6D3CA32D273338D9E37150F890A14D7CE109D56B3FDCD103E04D3B639DABFC5006B32D12DC6276A8E0AC7853A89F593DD91BFE5B9C99EA031DBB2FF23CA3F8635DD498C36E557EEEBD709508CC2B1C1FF720B2F7DE4E8A494EB54FBE4DD21CBE746E27CD493EE4481B0E9F4B32488D4A8E07AA926BA606DBDDD39F793751D20B74494306B6322488D7341BB4A6D91B18252F19645887BEFBE20391D0E6540700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000> +/ByteRange [0 1618646 1694424 30179] +>> +endobj +20 0 obj +<< +/Type /Page +/Parent 2 0 R +/Resources << +/Font << +/F1 32 0 R +/F2 33 0 R +>> +/ExtGState << +/GS7 35 0 R +/GS8 36 0 R +>> +/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/XObject << +/Im1 145 0 R +/Im2 146 0 R +/Im3 147 0 R +/Im4 148 0 R +/Im5 149 0 R +/Im6 150 0 R +/Im7 151 0 R +/Im8 152 0 R +>> +>> +/MediaBox [0 0 595.32 842.04] +/Contents [153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R +163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R] +/Group << +/Type /Group +/S /Transparency +/CS /DeviceRGB +>> +/Tabs /S +/StructParents 32 +/Annots [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R 1280 0 R] +>> +endobj +1282 0 obj +<< +/Length 50 +/Type /XObject +/Subtype /Form +/Resources << +/XObject << +/Im1 1283 0 R +>> +>> +/FormType 1 +/BBox [0.0 0.0 98.0 38.0] +>> +stream +q +q +98 0 0 38 0 0 cm +/Im1 Do +Q +1 0 0 1 98 38 cm +Q + +endstream +endobj +1283 0 obj +<< +/Length 17829 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceRGB +/DecodeParms 1284 0 R +/SMask 1285 0 R +>> +stream +xz8a=v!:q1VZ#@>}{#Ij!}VmV]qꍖh@JnEA#%ϋ,u*Am?mq03A0G{)CĉO!]굂 ܐ@᩻#T߄EHƇ3~y"@I$ဨAI,KWqj -vG"y:{8ZEL 鞞_T!~qu~C`rFBK0s}%(`֞v# yˇu ~/q jn<>Y0;)$BS`~&G}T OݪM0ѿ@5Wir +4 nOO;/p?550g$PKU\O)?~|n @V0'岁}W2Z@XxGdz\wWL' ,KkFOO#"+i"&l]Or] ܯ=q0`+f )C.M*}zb߿7L3%J n{T'벑L/NA-̥"gO[Ӥ%S1tB!V;Zj1P:wFz"v*yϋ4h7bQ[)dEN&j⚊@XYmjqEUӵ@~_mt˷R"Jr +c`H" < 4лVrzYkVUm!7y;A9D,s=ʛnG" 06M ;Uzj*?}Au$UJ~Y`VHb$5S +ܿўл5m< ?گo"O~M#Mhg2βdV.͵;" Jp_F:V{^( lvh$I +@B?5au0p'w豙j>{,_H0Jl&7@⡇'TJ7pgz[V|&TUR+=Osj` @+ +IMdta%Q:SNɐk_ɩ+HMՑvMESnS"ꄉ6 l`vG7U>Pwv-*7 sp\eny~w/D$1;!F݂.}A[0N1F#gmmaMf tǤiHlR~{bD IpS'Y+Y);؃7<z}|ׯ8h6s3HMK92565m4@W0)P&(L^Sfv{_, JC_:^ @lt7%a=щvK2Ftw`@$sU k^@$^@R.UL]O55?`&H-vu5.^%]xf0MH&}ynb>V2BY5ytNH,Vsж GH/ d1@G"g`LMg2NxtkTCz$ǝgbiUQ$;;۟io¸!78c2 %.^}n Tg6z Rόsc\*"dgAGģ("߿K=1vnX9\ə T==j4:o `%;Ã.X<Ӈ}! + YN1ʉh~7[Lqi`c +[]燰L{OSH+l%T)k/~ήnjF0 +܈g|۵_Ȼ:TMe?\(xvhټ;] #?Fk!7M '&rTK?3*E 3kfU#lS + oo7EHE 1͠j?z  qb B* µ n<_FD]\X)Ey>[ PO PKeTt}Ddz tTj +Ђ BcOD׫S~v94}nNyYr9q0 $n}]{^6?~eZvW<7F$Cl»]:O~#5e ?hCZvI7?4 lS0HLmQ*[,A,\.V_cN?[u#*gQp9E˒_w*l,S~D? 8&`To-,N~ :'a0?N[7z/ӲNf-LM~~n,Oʽ~i34gf)MG1dYha8?bs e?*orC-{Rg '!UGK6?N n&%‡;& VeմM_x?KC}is3gGM0oK0BEaeU\Zvz4mKjC @Y63TuA\q4`eӝ}3,(sHvU9"' hF]e/mK /\jF3GsMѿ +1$so%b=  \a`jzqG8߁W!HиyЧbS?f:ڮ?}N-bRTrO)d;1XЍԉ# SKdR~ `7D{IsEjJ&Fs'@Z=-PI=ǐ[< ?e綀&C%ջOϟtmGcYT7(7tU P4aiV[1yj}21^PjU.?o ;ٖL U A٨gm OTnfݝp-g([H@43R-Bۓx(%D^._в/xy!&*$pg١k,`5钭.ׁ},PQ'TW#E߿:%;75Rg-b+LZ[(ZrXeٕ_Oz{ڝ)ӓl%Q#}m{]vC8L*Ě*N)JģDFCl3~e'WF^_`0$&|-n,ltKK~)Ssx.8d6PߒLgbt4M\nj[B<nTMH^Р&@I;ae_?MokSGn0SOIv=7$ #h/Bi wo|LF`ڜP}cvPjK/e?r^;^>>M{y'?Уδ]z~ *NK>:D, 'uz<>-f0. '}5DŋGE⊋}X;#ewUe)`eE'^f;oiv%fYϵnߣN &RJ04;7-Yc`ڪ.r)wݹ#gmdl6?aJ;X"r!JlƐ` uYO ,uc٥k?G<l 9̳eayЫC2<@1o筏 -ޘ`!2QpnմWd* JΊtmG2p"d[$is|B+/F(FmOyI'Hs^RfC+XG'*"iKW+7j77]q͠)Wwt%f'3B m};_|4\]L3?^CƓ~m6"m3_.w4 p.E#knv(Ɓ`?G)e?.sZz'WQ KNe +vsCkDo_z캯S3k 3Ҳ[+Ta'oV-(XQMn~Nǝ}w$ͦii ~s0;  |z +WS4UY׬V;6~BQ}yJ!Utv gf33eMZjgRV|Qfnrm5 ' +3qeae{ٺ1Eqf -1M6g-vq,Qw8+fMyyXȗ_}|o]IuQMMmӀ૝<0wL^2Sku@aq_LT7M˙@}KV]yt\<'fY)"D`7n>#@yOpp 'Yۻ|}~{kzwju^gGs~*&YpQd҅ fI^*%z~:%Q2_ +f"rjMgp=. {z* ho?#Z9ȕi|+kd_Qot0Ƃ ]eyDp+ߞz:,8}Eҩ/}~Z4B_7t\TSϩlyg;{_D+NVЉWE=a|˶Vگ_髮94Q);)$!**O'^,X0 $QQ%$} 2:TO}& NW Ʉzn'Be+x=7]SF>elJxt}5o~}>^^\ _}_ɼ1o +6zEgiR-Vs +_T3nja\M*1_d .URi]- Ps\wUȭ׻C5wwwwI%{_a<SElOS'"{538ToP~˻eO{SSZ9k\iWW۔ʹUhxA+u<1ȿ~'P㻞P僒_a=i8s+4 C` +sG Pjs }#TؿP''ae,3^$HKA3.Z I"xfVaҥ;Ǔժyѡi kW3I;'\)u' ]jD9l%Vyjx$V~bA(ttS{ɕ YD!MwY;,;ZB6ѾD%-\56_wiY@nfTw͒b:(?>t}g}_gupVT ++ŵCr + !:``PU[_ooM_ˉJ;Y@fN-.r(WOG^_iW}ϟWג6e|OL E0;Cp>a< \CL󜳺#r]5Ԫ__gOo-A!cL,dxncsVܹ+;dnT/~lG*Jv;1뛽7ipd 'yׯs`K0_jJ:@Gp⭋j׈ڃ- WMOߡ4+ϥ@rZgbjew">#$#H+_kUǵoxC-W~z߽aW{AUQiC/x\ƳPWYժY-/R՞#Zުˢ'Mխ&s1W]y}RPvnZ{HCQIBKjG,V n˜W t['zx"sbp\v҈__c4uF,[ &ؠmk=sc|ݙ0j}Z~j(_ucquv,:=Ic F<=*H%QbU/dWTiՓzNNy&0f@|HԯER;Mѝ/4:c?7$Vhy޺UTH\nKCE㤍.>dF*9}uʲ4 ;~3e艵x F>!XoR߯z$߹z?!5ߌ,C PZŒg7j9e&R>|Rc$U_N0+=+BWG#ƒىsx)tzW;Ͼ +RS )WF{U?mjѿMֱ<< WnZ{7| 8ftJW|rVՊMt_8WE8 3WE迗 PDB +諣*{Y=m~4jI*t beMw޺a*uE@šh6J&=Nnuhk}EMa`&HfDRd?>Lz߃AT +׈]lΰh!ơy7^Yn..cݮ k&Ovw$I캹~G.M79\O6<> @wn}/k[>MZ4 DG{r3t +OkGwP,l-܉?yHg.:x6cLf# zz0'C7pvsTkV'g-5h=k͓s;!k@&8, +>"8Ɯ:7]Cr=liv?荢jIX}e_A]KoS``~CV];%ܗGw̦mpRaD|Hb܍gda@pHQ.E +0nq]v&;#){xp\< :F ߢŐnXr޿U+}Cz&'XGsk}%0>E][ jDz=z3ue4)LL?݇qv|fZ )*rJ[.Ӽt3+0 N6uåcа|pj?ߜRd3N?b:4P|u/hMd-Zvgh1¯IvG4暗lBe.<6 b/sfj'W0NYr[o0E8S/}eW{uͲIQir: 6~(MG_YL)r<}dU&X!`=2 +xb[gʐ(^IƐSdNY)&4?Bfہjirv/&l^O{o C]sup,(u}B)M9Yf_So +Km8 +16]Cӽ({U%&p1jlH}8e}M;u,#A(dRgtɰJs->JØyr2jW#|ezohCNk;0jNt4Ī 4*I# T7iU?4 R u YvJloIb +Ŝ3\_Wr!v +p'1ٕn65?{o-{vK~÷'u?̎5e.UL|?E,'D"8??;~:< +6ecg9VԷ\gX< 6 p+D.&9(ӽLZK7. +WyՋI`BgrYÝvf)sJLH@C~MH)՗;ݤ.=f"my0"ߧ00EfXeG~W áerj#L{0pxݩǟ=?9y4w>>zp??yy[ֲpf,̎V;uAT yC"#Zk2'*Tkf4AQ3SWQn2KjT8;*L@'Ǘ '/2-:evI3yJ߹i3TǩRϻXZ|ٱ#Z.OrWy9F?ndB_- }fhY\F2msηk +"?MZ+5GFzQ{gYUt +)ѥ,d @ԍG[Qb`flfnq@Wqo=_4g8Wq&n]_bt5\4"]O,Rvu ͅoܢG4OM6\`&NZ0ڻYX]K~.ԋ2ˢ([r,E55lqX)Raf*vD6biQ)qK}00G$t˴S!0T3Hc +$'IauU;Q(Hu mwUiA[68] +W۲`漓 @l6g&ob#;_2(-KN?$ $SwHT@ΫmBfHFD!'p^SdZ=`99`_iuzGrWg$h,!R^'YL}M];͈L NS*U_GL Iz1mݲ^wϥ^_+ݬ"Uj`羣i>'V/_쿼 ՝t|̅_dr><>ƎcGL%S#tc[݉q6{HYU]\;sZ/=p!u2OkJ1Lݣh_*Sf~H‰wtg[[-ߟ/ɀQ {5Dw>0M8h3s[:ftnqF-Ff%W߄ 1 \ؽJ*Ν΃#ta&L2 [EvKv08F>P/Oӻ5lzj"f/Ojy.z^?TZ?1p'EnA2".Q!?|/SjC¬!P=>VፖΥ3aLt=F;ĿiNQFꢧսlZ/gqUFXD#psl4Vέ#YE}5x6ķfJͣ+#@k ޒ bgYûN>ިEn(2fEq0]vW[\*pFvӡB[O4&2FgİXMQz| G2Tp33h&Hwrv f Զ\&peOР833uy ݐ +Ǐߖ4|}P}yNxzj)B0;Gz{3Pfސ +0k,qP),=74+)Q1;ww?m>!ׁH;Xz"[hIS5ͭV]e:=t0+I5TJa\$Bw';;#@yn(fo2%&.oa3sFYVx^`m1WH#`A3pm}/h)@ ^<NPZPqNSnk{Hhff 6uky?p->aA\rYD/sE芄M}lc""rs?g7 +syOSlȜ̀H۫?җ-ff*˜5?K3G"'"B Xvy!įbK():uSb˞wl|t`TjKmrUOt ro~pS;ukl^. 3 [z=I?)67p/?R]$?X8-Aͽj3^5?Y%iotoj<&c32(xRLV80OUQ`ټ=-ϡ y22睓y'}B ~^ x08"%gYn] +~9\.SQ4kz7wv&cpi7Y ~ )n ffMBF +@azmձꁩ,Y&_B BKbS$9}p,̝(p%{w;uLO7t02wۨz  FVw6r1n\wNTS$5GƑܭV6>U ~\8.(5BVNhXW$`o{ծfh~Z6Tvd0wͻY,ֲ8^_i ;د00jooTg %F6y; q?01v(KePG= 8G4.͋$n6(5Fo" &4u[1 $4iϚ`s:MS(Ia,.i t#Tݴ6{vgq{W{_=K{xX:7jA<*W~nX~I@$'] YF";<>\@hc0gTC4 oK=* +ժP"N-ϻ_>AҌKfRSM 'Fo *T0|k ]>H PC_~>WC<,:SF˔b"0 n\@p%#q|ӌan̑ @FP=]z`&(8%7^E _twl (YKtTLJI.O!4TS+KNHN)a!/f[R TyEq +W <˺/ Ö&wOx1#}xD>YD$${3: url\f,+"ZK b$VEk +,gY9IRb㬈:D.M *?r4=t(̇⼪0O'$~fO"F.a: |iף-s3o8 WM`2=-P5"SG)c{no+_δ`v]vآXAz;kdGBP ACC򓣭f'S0C$SՅ_eXצzeׯ@c}pQ ݭ0ay&y/regW0<̑T4X $[F8r<}aW\۵SdƆn_6?p^c݁59 ̧ZM|=j47wNsא*[V.Cv Qua|Nʬk#6[NST.u&IE7+bzvTvʚ{bz쳫č8B?$_;aُ8eE7Ưjg80.hU2P}ZmEr)V +`?̙] +endstream +endobj +1284 0 obj +<< +/BitsPerComponent 8 +/Predictor 15 +/Columns 1024 +/Colors 3 +>> +endobj +1285 0 obj +<< +/Length 10583 +/Type /XObject +/Subtype /Image +/Filter /FlateDecode +/BitsPerComponent 8 +/Width 1024 +/Height 400 +/ColorSpace /DeviceGray +>> +stream +xMF#t|!?ɳ!@yYȀE`4> T6ڇ̥1CWX==+3]-=-ɴ^%ەed&d d;HL20xy≈Fp(Kv P .uAk(@-Lا+ިIz 7^`:?d6i&xl6hDh46G '3ӿ՜Ahz섘NG] Af~֠I uXLJi MVs4I;M[Z tށ,-F\3`fE?,~^mZxGC`јE޿>g~a'U}uӠOlSU=}8s¬0т-w9yUsFj/Pj@[`VDe?D||uu|Y?6 +/Z5/ +kz* ==I:jq%4Xg6bh36#N3(0׺ x@XpoI T/(2`Ṁh5 vCsXkG_Ojw'6A/+r⏏A~.W%E?\gJ0-q?[EPn-F^!tq?͝v#10b`(n BJ/v[5eM`0,Pb +?+_c,b~!) +/PYNwkkr{xL*HRiey/j|+wm@텭 ]n͵)˾OlcRa6P>XOICl?,H51_W܏I겻,D!)ѿXFti7-/| w4e:h)<ڴƿ rG :J#!ff~ +^u_i"vC=q.!dn5]>!ʌ x5t_Ӕp.Bk߸FUhvϺ ZPR_>x+O>!3;nRBy O d;,'\Hfghy\y3)?{@CY6-$1LKaL] T ONA;Bj=Ô ŋ+'<TL +ctu9wnS)VS4r7E-zQiEN,j|䯾JhU0_Y\=1SJhUrM]>e?n4k?vuo|Lg$@㖿_M,ȬƲb38DE8@2/!jMן;ľDh>|ǷOaVp6h%^})JGZg^;_QpZBwWvrħ[$-ǖg KD e2^B^hTԇu"4tv"ecO;P_,v橔J?3D0gd'Ŕg@=_rUVAt7F.Kn9׿E̠kQFP1o1`ϦR%!ViOp>8uvJ?-rqf?G@BFodZAzAMg+(hPq嬙견(teO>XItI]5BM{lOtO73}< 굦 @1ݯ՞?!ʱTVY; ZJǾ qx/o롓0ʿ +C=D3C|~כ Xj5}iM[h?#KLb`{8/ݿXh/UY$M~~"~Q"Q6fk< WG.C2N_Eg=8,^lCnڬdEGf+W Лγ 'e>qrA-Уx6@}1n/:-NZ=]mѿᄉ<W)5^&+ZV.FKV3؉,7c'P)sհM xUB~1K2DWBqϏBv%2WR"b'5eN^3kF`݃JXR_-d7mM2¦Ql rlgsR '3 +]{B( 5qdZ$9进xeZ./>f·a:!POt4nuE?ܼII:N s;2?Vd &D6P;+FY҉ufbKa#x)&^a%进q/32^xk|ϒM83j-* %`Egq-~Iĭ7m!C݄f;֍ gq|+G h9`U;I;EQŀq$M,j=WGvh oR;)7/i77Hs~wO? ?_w>1!sFu3y]IΧ^g:Fʹ\ΓwIɯމ*迫,{.ѰE,nCnM5L&tKN3Q? \_N(""zYw4Wm]α62,~gW 8b>OEHZ|j<~{;)V&Ci$ㄪ.(A,ǰOOF]3N1#?g-{cԉX75of*uZZ,JVԩ$Q.SH^=MN+D>oh|oc@a3F-6O>Ӊ-d?]L 1AN?Ly@.+w@:*p1-bLS_|8cf<9X:xSgB1O\3s_Z-]Yb1 GN$~`AqsH_ibQq6sO>HWϵr,!2:p5H;'b-w̳0a0ܼ۟|W/_ +5} NK#Kt+ +VBX]Ɲޭ itjf- fϥ#cNxͱ~q%r>ofZ&Gu~@{@\eqN@nGam+ -#DoBO^}-l=-$;f. _ D8y{Wr~u~ws2P5-bзD/UvHW*Klrgޘt٬/Ln_NuɫEO9\b 88h HhSو`_?1@lR~4'6ƹ,~_{.v /[;^C{SG\ +&)8^y7qg!3!hKw/\zV}d>_VD/}g&Ow|#siaSWy(`o/ +rì>q?|EN9Oσ|U_H%EKט(g;xW7@5ob=>7Es4VăFevՙ L0O䍬pɧ,e:cZMvзH& JK%9S%*(7s<,30۴ [~{m)F5zk[~4P5h|sk{IXFa=;%*IL݉+D6N9DL)ct ʱyuxǣZ b݈i5r.O6X̙k M +q3}ߛ(Lo(<%Ja*c_G+^,ʭ>ȯ胑a'{b^7}L~v{п5 | @".qK<績pEp3VJD'$ʧl]/͗C2r6_>υ6tQ/ɵ<^/@Et&խY"FMҏUYxp4eaiQ&~#.PTlUoGsXU>HČMBăBeOWX_d.*8g2_LM"O Ԏ*ev@-z &'mz氉/tXavQ։C -sE|'9 +~Vg A F=2Ab2̫0E)Il&%Cn \.~x@2F$rlYb,%Cb>/[`/J#;z-HįN_֡ m3 ÄSYes DIm4R +8\FIC'maR_I8ֹؒ<CL"{ߐ i۶;\72FE!|b +\NbowDrI|!Zykݠ?h }@=?/_1Jsh62w~ceN'SAD:iɝ>Ɨ\䒣tb[3K&Vf1i99cl;QZjdR-M4/ǔ{`0W[Dm%I6J;+|M+ADD2_Mŧ47 vDZuB9-oV_z(k/Rf,Y'ExXV 6\q+ykUa\%ڙ8￐*03e)2$$o%D́X"|n<jΉm~hΘ>h~ %$L7ʋQTnO2;6h Z-Ηkp9,3禧>JJ'7W {h5d[,4)r#^^RrȢEYێVxnaVU|g1mhs@je9oz`mw|X'@'|Ti_J +hgg(E7o$7ef)zmɠz  +:+i޽즀`*b^0?8[(kU$_o:]g){z`@~ĚjbLs4;.h+/<'O{í41(/A+JE~p|Ff`1d 3QYҗMj_> laTچ5 ;?U&>} p f,ٺ0\a2O``L+4o1^e Z%se_Q\8GeʠVJa.Z~Z,{א$ۏ^_^\ReVe0͕M 5Ve@b_"(,?Y/R~ܺX~(BoSr#f^jLXo2g$ZbgotM'YN{5*yaȗ7՛ +*F8C +"YZMDIZax@_M,g  sE'] V#Fܰ P7GohG~!lE bGWVlsZ^vG MW\JGCfDp.jH5'xԽo/Uuo"3AڍݬWxyqXonet+=}Gw9&119Ə ALzvl}{^ =SYh;]n4=_(;$Xjm׿G5vCuIE@Gx\n6ȊXKgj[:zTC닟<0*]1wL&tu(K8~"=ٴ% /lsݒfMc%H)7oT#FӖ0IłDhnMCEJh_tm05I?g.oߜi/k5lXq4|\mZX#|l,-,AAcfK|: oF/EۿM?Ui[''fo;v}o5jytB4g*M 46h|[it.'tJv 1&c@"ṦMmyQ:M&kZd?o\KݰqcS0~!g ;ESO W9@M#G_Heb_@ 8`@-MACG`yo|}R%m)Ͷ' i[*|;M\ǥ\4 SAmۄpi[\xl_5![u8մ-.|QkSР do2FпJ`6m $C +1|uӶ*_٦9 R6G[尛6smU4 %zy6uTn`kmA0J0u+5)fj-m|/ "/RnǠo +ٴ)hc$M*-+H`*_Fqr:Mc;{! [Vav:z怺x(_{Ӗ9[lĦ㷴5mh7mQx^Ԇ̛c:oW$U5F5&m}g6$MsB32sMx:-Y:Qw;"Jsolzj~ <j-- `7_ϓiu}t {}v|~4_qtt4=kWpU?9 hRtn~d%k)_-m3u 1b(Tf,Ō&>/}&+,k,o6WP kn +endstream +endobj +xref +0 2 +0000000000 65535 f +0001617948 00000 n +20 1 +0001694483 00000 n +1280 6 +0001618224 00000 n +0001618400 00000 n +0001695133 00000 n +0001695352 00000 n +0001713396 00000 n +0001713478 00000 n +trailer +<< +/Size 1286 +/Root 1 0 R +/Info 6 0 R +/ID [ <5CABB710F9E4EE90FDD9BEFE07145965>] +/Prev 1617757 +>> +startxref +1724239 +%%EOF + +1 0 obj +<< +/Type /Catalog +/Pages 2 0 R +/Lang (en) +/StructTreeRoot 3 0 R +/MarkInfo << +/Marked true +>> +/Metadata 4 0 R +/ViewerPreferences 5 0 R +/AcroForm << +/Fields [1215 0 R 1232 0 R 1240 0 R 1248 0 R 1256 0 R 1264 0 R 1272 0 R 1280 0 R] +/SigFlags 3 +>> +/DSS 1286 0 R +>> +endobj +1286 0 obj +<< +/VRI 1287 0 R +/Certs [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSPs [1230 0 R 1231 0 R] +>> +endobj +1287 0 obj +<< +/2BF3B881DEA50DB947AE9D71C79ABE845B3434D9 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/6686BAD5DFD76D767CAE3BFEDBF3703615152F01 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/DF139220EFCDD6A583CF4E8CC5A1266352942E95 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/C8FC31F466F64D9AD24800DF32CB7A94309A08AE << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/287C372BB84D47AC7CFCF8A28A8D708897EEF100 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/AD1E48254EEAB6A890B4A57524D6C14F3E980644 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/0867427CB21B78AE7CD269AE19A033FA302A0587 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +/016E924DD14D903239ACAEFBF8A1F1A2DA1A1D49 << +/Cert [1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R] +/OCSP [1230 0 R 1231 0 R] +>> +>> +endobj +xref +0 2 +0000000000 65535 f +0001724605 00000 n +1286 2 +0001724881 00000 n +0001725018 00000 n +trailer +<< +/Size 1288 +/Root 1 0 R +/Info 6 0 R +/ID [ ] +/Prev 1724239 +>> +startxref +1726202 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ <177F377B32EC685A2246A805DB01CC81>] +/Prev 1726202 +>> +startxref +1726463 +%%EOF + +xref +0 1 +0000000000 65535 f +trailer +<< +/Size 1 +/Root 1 0 R +/Info 6 0 R +/ID [ <6468A3D6F1C1943A0DDD2C9437E1F567>] +/Prev 1726463 +>> +startxref +1726654 +%%EOF diff --git a/static/img/Contact us 8a654abdc27549d6976290a85b8d7081.md b/static/img/Contact us 8a654abdc27549d6976290a85b8d7081.md new file mode 100644 index 0000000..70a4438 --- /dev/null +++ b/static/img/Contact us 8a654abdc27549d6976290a85b8d7081.md @@ -0,0 +1,7 @@ +# Contact us + +[← Home](../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5.md) + +Want to plan your community exit strategy? Got experience or legal snippets you’d like to share? We’d love to hear from you! + +[https://actionnetwork.org/forms/e2c-website-join-form?source=direct_link&](https://actionnetwork.org/forms/e2c-website-join-form?source=direct_link&) \ No newline at end of file diff --git a/static/img/Frame_1_(6).png b/static/img/Frame_1_(6).png new file mode 100644 index 0000000..13b4cd9 Binary files /dev/null and b/static/img/Frame_1_(6).png differ diff --git a/static/img/Legal snippets 238a4bbcff12498c9ed235adc0fa01cf.md b/static/img/Legal snippets 238a4bbcff12498c9ed235adc0fa01cf.md new file mode 100644 index 0000000..6f70fb6 --- /dev/null +++ b/static/img/Legal snippets 238a4bbcff12498c9ed235adc0fa01cf.md @@ -0,0 +1,23 @@ +# Legal snippets + +[**← Home](../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5.md)** + +How did organizations build community ownership, legally? We’re collecting term sheets, filing disclosures, bylaws, and even public policy ideas for community ownership. + +Search the collection below, or [add your own](Add%20your%20story%2048daac7016594611870f5d9a62f23c82.md)! + +[Untitled](Legal%20snippets%20238a4bbcff12498c9ed235adc0fa01cf/Untitled%20e95fab052b804d3ea7d88e80f4b7d342.csv) + + + +## Want to see the case studies? + +Get the story behind many of these legal snippets, and add your own experience! + + \ No newline at end of file diff --git a/static/img/Library adea83320ab8495dac10589a3ee407b6.md b/static/img/Library adea83320ab8495dac10589a3ee407b6.md new file mode 100644 index 0000000..6c705c1 --- /dev/null +++ b/static/img/Library adea83320ab8495dac10589a3ee407b6.md @@ -0,0 +1,25 @@ +# Library + +[**← Home](../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5.md)** + +## Want to learn from experience? + +We’re curating E2C stories from around the world. Each case study has details about motivation and readiness, process and tensions, and results of trying to build community ownership. + +Search the library below, or [add your own](Add%20your%20story%2048daac7016594611870f5d9a62f23c82.md)! + +[Untitled](Library%20adea83320ab8495dac10589a3ee407b6/Untitled%207777269e60664b36946aaa09ce70fa4f.csv) + + + +## Want to see the documents? + +See real examples of term sheets, filing disclosures, bylaws, and even public policy ideas, and add your own! + + \ No newline at end of file diff --git a/static/img/Resources - WIP 9929c55e75a549edbd4c08c1001749bd.md b/static/img/Resources - WIP 9929c55e75a549edbd4c08c1001749bd.md new file mode 100644 index 0000000..e0bc5da --- /dev/null +++ b/static/img/Resources - WIP 9929c55e75a549edbd4c08c1001749bd.md @@ -0,0 +1,41 @@ +# Resources - WIP + +[← Home](../Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5.md) + +[Untitled](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Untitled%20844ae33204f2437db80c8baadbc012d9.csv) + + + +~~ CUT FROM HOMEPAGE + +[Tags](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3.csv) + +~~ CUT FROM HOMEPAGE + +[Untitled](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Untitled%20d1de399e3c2a4a61b50dc82ca3eb4262.csv) + +[→ View all resources](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd.md) + + + +~~ CUT FROM HOMEPAGE + +- E2C sitemap + + [Contact us](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Contact%20us%2055f3a9f681854655a153672fc8211c44.md) + + [Library](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Library%20ee640fbabe5e4c888c0c29678ea95cf0.md) + + [Add your story ](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Add%20your%20story%2083f65e11929440ccacba797dab8d92f3.md) + + [Resources - WIP](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Resources%20-%20WIP%20ac2f1278e5c7469888dda0bf3149a017.md) + + [Tags](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32.csv) + + [Untitled](Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Untitled%208222f5ca9162480588a92fbfaac3b624.csv) \ No newline at end of file diff --git a/static/img/Sample_term_sheet__guardian_share.docx b/static/img/Sample_term_sheet__guardian_share.docx new file mode 100644 index 0000000..1c04684 Binary files /dev/null and b/static/img/Sample_term_sheet__guardian_share.docx differ diff --git a/static/img/Screenshot_2023-12-13_at_1.55.04_PM.png b/static/img/Screenshot_2023-12-13_at_1.55.04_PM.png new file mode 100644 index 0000000..129439e Binary files /dev/null and b/static/img/Screenshot_2023-12-13_at_1.55.04_PM.png differ diff --git a/static/img/Sharetribes_Articles_of_Association_and_Shareholders_Agreement-20240522T043504Z-001.zip b/static/img/Sharetribes_Articles_of_Association_and_Shareholders_Agreement-20240522T043504Z-001.zip new file mode 100644 index 0000000..d740f60 Binary files /dev/null and b/static/img/Sharetribes_Articles_of_Association_and_Shareholders_Agreement-20240522T043504Z-001.zip differ diff --git a/static/img/Untitled 85b8db3b0ed74e89b2235aea88632570.csv b/static/img/Untitled 85b8db3b0ed74e89b2235aea88632570.csv new file mode 100644 index 0000000..4413e39 --- /dev/null +++ b/static/img/Untitled 85b8db3b0ed74e89b2235aea88632570.csv @@ -0,0 +1,4 @@ +Case,Tags,Link to Case Library,Public URL,Description,Files & media,Homepage,Text and notes +Ginkgo Bioworks,"Filing, United States",,https://www.sec.gov/Archives/edgar/data/1830214/000119312521275407/d172577d424b3.htm#rom172577_78,IPO with Class B Common Stock which grants employees and directors 10x voting power over ordinary stock.,,Yes, +http://Indie.vc term sheet,"Investment, United States",,https://github.com/indievc/terms,Revenue-based equity financing term sheet with a 3x cap on return to the original investment.,,Yes, +Sharetribe,"Bylaws, Finland, Investment",,https://drive.google.com/drive/u/1/folders/138TkcSEVCyjOXByM0QUR7M4iWch8u6tM,"A tech startup structured as a “steward-owned enterprise,” designed to serve a social purpose over profit.",Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Sharetribes_Articles_of_Association_and_Shareholders_Agreement-20240522T043504Z-001.zip,Yes, \ No newline at end of file diff --git a/static/img/Untitled b6460a10bb2f4fb496023adb36decb86.csv b/static/img/Untitled b6460a10bb2f4fb496023adb36decb86.csv new file mode 100644 index 0000000..a3c5b66 --- /dev/null +++ b/static/img/Untitled b6460a10bb2f4fb496023adb36decb86.csv @@ -0,0 +1,7 @@ +Name,Description,Tag,Property,Stakeholders,URL,Assign,Google Doc,Status,Home page,Last updated,Related to Tags (🥑 Case study library) +Namaste Solar,Namaste Solar is a solar installer in Colorado founded by a team that embraced new leadership in 2011 and converted to a worker co-op with $40m in annual revenue as of 2023.,"Co-op, Success, Utilities, Worker owned","Success (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Success%20fdf6144f482746bd9d620624dcc25ee8.md), Worker owned (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Worker%20owned%2017e443996c774d0f9d51f47f6bed4c37.md), Co-op (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Co-op%20bbdb8c27178c4b16b04304607efd4bd7.md), Utilities (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Utilities%20658f4ebc12da493cadb67aaa3fad3327.md), High tech (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/High%20tech%20b65ad112c8bd401dbd74f614a177f5fe.md)",,https://namastesolar.com,adina g,,Full set,Yes,12/22/2023, +Groupmuse,"Groupmuse is a platform for live music run that survived the pandemic in 2020 by expanding to online shows, becoming a worker-owned co-op, and then adding a second class designed by an advisory council of musicians.","Co-op, Multi-stakeholder, Music, Software, Success, Worker owned","Success (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Success%20fdf6144f482746bd9d620624dcc25ee8.md), Worker owned (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Worker%20owned%2017e443996c774d0f9d51f47f6bed4c37.md), Multi-stakeholder (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Multi-stakeholder%20d9b000a086144221a85d154547b43893.md), Co-op (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Co-op%20bbdb8c27178c4b16b04304607efd4bd7.md), Music (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Music%20da93d3a7a7ac4c12b9d609e42f88e3b4.md), Software (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Software%20abef1bfcf2ba4114862687a0a57b8005.md)",,https://groupmuse.com/,,,Full set,Yes,12/22/2023, +HackerNoon,HackerNoon is a tech publication that ran a $1.2m equity crowdfunding campaign in 2019 to leave Medium and build a platform of their own.,"Crowd equity, Software, Success","Success (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Success%20fdf6144f482746bd9d620624dcc25ee8.md), Equity crowdfunding (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Equity%20crowdfunding%20525007ed024f49888c0b90cdd6954de5.md), Software (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Software%20abef1bfcf2ba4114862687a0a57b8005.md)","creators, founders, investors, readers, writers",https://hackernoon.com/,"Nathan Schneider, adina g",,Full set,Yes,12/22/2023,"equity crowdfunding (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32/equity%20crowdfunding%201cc792efff484d74997ad60de520fe1f.md), platform (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32/platform%206631bec6904f4a55a7a55053c1ab61d1.md), family owned (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32/family%20owned%2071f0243197f840d293b3cb4fe672f602.md), journalism (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32/journalism%20b18f4560d73d4b48a35f7565ef4493c6.md), hybrid (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%2048f5b0ce58a3420ba1f10c001c009b32/hybrid%20ddb00f35d78e4c50a9bf0e41ee57ae38.md)" +Juno,"Juno was an NYC-based ride-hail app that promised drivers equity based on trips completed, but got acquired in 2017 and eventually shut down and ended the stock program.","Failure, Multi-stakeholder, Services, Software","Failure (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Failure%20d8e5c98ca9104ec4ae500c7019bee0c9.md), Multi-stakeholder (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Multi-stakeholder%20d9b000a086144221a85d154547b43893.md), Software (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Software%20abef1bfcf2ba4114862687a0a57b8005.md), Services (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Services%201c0362374c9e46839c26047c16ca3b6a.md)",,https://en.wikipedia.org/wiki/Juno_(company),"Sylvia Morse, adina g",https://docs.google.com/document/d/1dHITo_IeeCbPrlQ7liTDDRwkjI0H6Mmga8Kg83m0piU/edit,Full set,Yes,12/22/2023, +Signalise Co-Op,Signalise is a Sign Language platform based in the UK that raised funding in 2021 for development by selling 10% equity to investor-members.,"Co-op, Crowd equity, Multi-stakeholder, Services, Success","Success (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Success%20fdf6144f482746bd9d620624dcc25ee8.md), Equity crowdfunding (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Equity%20crowdfunding%20525007ed024f49888c0b90cdd6954de5.md), Multi-stakeholder (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Multi-stakeholder%20d9b000a086144221a85d154547b43893.md), Co-op (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Co-op%20bbdb8c27178c4b16b04304607efd4bd7.md), Services (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Services%201c0362374c9e46839c26047c16ca3b6a.md)",,https://signalise.coop/,adina g,,Full set,Yes,12/22/2023, +SongADAO,SongADAO emerged when Jonathan Mann formed a Limited Co-op Association and DAO in order to protect his daily songwriting practice with 100% community ownership and governance.,"Crypto, Music, Success","Success (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Success%20fdf6144f482746bd9d620624dcc25ee8.md), Crypto (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Crypto%2053b9777c4f714b81adf392c789f410cb.md), Music (Exit%20to%20Community%20Stories%20&%20Strategies%202ee6f9c491af45648511f5df33c5cfc5/Resources%20-%20WIP%209929c55e75a549edbd4c08c1001749bd/Tags%207740ca71694e480aa6156071bfd51df3/Music%20da93d3a7a7ac4c12b9d609e42f88e3b4.md)",,https://songaday.world/,adina g,https://docs.google.com/document/d/1l5NgLd5fzxAU7nb9DGEcaX0jdcKC7EOl9Of21FjROQk/edit?usp=sharing,Full set,Yes,12/22/2023, \ No newline at end of file diff --git a/static/img/logos/ampled.svg b/static/img/logos/ampled.svg new file mode 100644 index 0000000..c27f001 --- /dev/null +++ b/static/img/logos/ampled.svg @@ -0,0 +1,677 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/logos/arena.png b/static/img/logos/arena.png new file mode 100644 index 0000000..5a6cccb Binary files /dev/null and b/static/img/logos/arena.png differ diff --git a/static/img/logos/buytwitter.png b/static/img/logos/buytwitter.png new file mode 100644 index 0000000..f2009a5 Binary files /dev/null and b/static/img/logos/buytwitter.png differ diff --git a/static/img/logos/cmx.jpg b/static/img/logos/cmx.jpg new file mode 100644 index 0000000..8e61c08 Binary files /dev/null and b/static/img/logos/cmx.jpg differ diff --git a/static/img/logos/dada.jpg b/static/img/logos/dada.jpg new file mode 100644 index 0000000..75d15a7 Binary files /dev/null and b/static/img/logos/dada.jpg differ diff --git a/static/img/logos/debian.png b/static/img/logos/debian.png new file mode 100644 index 0000000..1cce08c Binary files /dev/null and b/static/img/logos/debian.png differ diff --git a/static/img/logos/defector.png b/static/img/logos/defector.png new file mode 100644 index 0000000..a13b185 Binary files /dev/null and b/static/img/logos/defector.png differ diff --git a/static/img/logos/ens.jpg b/static/img/logos/ens.jpg new file mode 100644 index 0000000..596425f Binary files /dev/null and b/static/img/logos/ens.jpg differ diff --git a/static/img/logos/forward.jpg b/static/img/logos/forward.jpg new file mode 100644 index 0000000..65a4ef3 Binary files /dev/null and b/static/img/logos/forward.jpg differ diff --git a/static/img/logos/ginkgo.jpg b/static/img/logos/ginkgo.jpg new file mode 100644 index 0000000..9f061d3 Binary files /dev/null and b/static/img/logos/ginkgo.jpg differ diff --git a/static/img/logos/gitcoin.png b/static/img/logos/gitcoin.png new file mode 100644 index 0000000..6af47f0 Binary files /dev/null and b/static/img/logos/gitcoin.png differ diff --git a/static/img/logos/groupmuse.png b/static/img/logos/groupmuse.png new file mode 100644 index 0000000..060af59 Binary files /dev/null and b/static/img/logos/groupmuse.png differ diff --git a/static/img/logos/hackernoon.jpg b/static/img/logos/hackernoon.jpg new file mode 100644 index 0000000..3bd3c30 Binary files /dev/null and b/static/img/logos/hackernoon.jpg differ diff --git a/static/img/logos/josephine.png b/static/img/logos/josephine.png new file mode 100644 index 0000000..d6a6ca6 Binary files /dev/null and b/static/img/logos/josephine.png differ diff --git a/static/img/logos/juno.png b/static/img/logos/juno.png new file mode 100644 index 0000000..73e328e Binary files /dev/null and b/static/img/logos/juno.png differ diff --git a/static/img/logos/namaste.png b/static/img/logos/namaste.png new file mode 100644 index 0000000..094c5b8 Binary files /dev/null and b/static/img/logos/namaste.png differ diff --git a/static/img/logos/nio.jpg b/static/img/logos/nio.jpg new file mode 100644 index 0000000..0f4e57c Binary files /dev/null and b/static/img/logos/nio.jpg differ diff --git a/static/img/logos/python.jpg b/static/img/logos/python.jpg new file mode 100644 index 0000000..7dcf373 Binary files /dev/null and b/static/img/logos/python.jpg differ diff --git a/static/img/logos/signalise.jpg b/static/img/logos/signalise.jpg new file mode 100644 index 0000000..941c020 Binary files /dev/null and b/static/img/logos/signalise.jpg differ diff --git a/static/img/logos/songadao.png b/static/img/logos/songadao.png new file mode 100644 index 0000000..4c9cc4a Binary files /dev/null and b/static/img/logos/songadao.png differ diff --git a/static/img/logos/the-appeal.jpg b/static/img/logos/the-appeal.jpg new file mode 100644 index 0000000..cfc999c Binary files /dev/null and b/static/img/logos/the-appeal.jpg differ diff --git a/static/img/logos/the-brick-house.jpg b/static/img/logos/the-brick-house.jpg new file mode 100644 index 0000000..6ad9a4d Binary files /dev/null and b/static/img/logos/the-brick-house.jpg differ diff --git a/static/img/logos/the-well.png b/static/img/logos/the-well.png new file mode 100644 index 0000000..87827f4 Binary files /dev/null and b/static/img/logos/the-well.png differ diff --git a/static/img/logos/trident-booksellers.png b/static/img/logos/trident-booksellers.png new file mode 100644 index 0000000..1a2be65 Binary files /dev/null and b/static/img/logos/trident-booksellers.png differ diff --git a/static/img/logos/uniswap.jpg b/static/img/logos/uniswap.jpg new file mode 100644 index 0000000..121e42b Binary files /dev/null and b/static/img/logos/uniswap.jpg differ diff --git a/static/img/notion_bg-1.png b/static/img/notion_bg-1.png new file mode 100644 index 0000000..16a0ba5 Binary files /dev/null and b/static/img/notion_bg-1.png differ diff --git a/static/img/opencollectivelogo-footer-n.svg b/static/img/opencollectivelogo-footer-n.svg new file mode 100644 index 0000000..468ceb7 --- /dev/null +++ b/static/img/opencollectivelogo-footer-n.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/img/s71818-4403356-175575.pdf b/static/img/s71818-4403356-175575.pdf new file mode 100644 index 0000000..43e69f7 Binary files /dev/null and b/static/img/s71818-4403356-175575.pdf differ diff --git a/static/img/yellow_e2c.png b/static/img/yellow_e2c.png new file mode 100644 index 0000000..84fe9bf Binary files /dev/null and b/static/img/yellow_e2c.png differ