I'd like to discuss scaleout at PGCon

Started by MauMauover 7 years ago52 messages
#1MauMau
maumau307@gmail.com

Hello,

I'm going to attend PGCon in Ottawa for the first time. I am happy if
I can meet you.

Because I'm visually impaired, I only have vision to sense light. If
you see a Japanese man with a height of 171 cm with a white cane, it's
probably me. I'd be happy if you talk to me. But as I'm still far
from good at listening and speaking English, I'm sorry if I take an
unfriendly attitude or if I can not keep on talking for a long time.

I'd like to have a session on scaleout design at the unconference.
I've created a wiki page for that (this is still just a memo; I'd like
to populate this page with you as the discussion in the community
progresses). I'd appreciate it if someone could stand with me and
facilitate the discussion at the unconference.

https://wiki.postgresql.org/wiki/Scaleout_Design

The background is ... our company is faced with an immediate need to
develop the read-write scaleout feature on PostgreSQL. We tried
Postgres-XL with much hope, but we found it difficult to achieve our
performance goal. I will tell you the details at the conference. But
personally, Postgres-XL seems to be very nice software, and I feel
that good parts of it should be integrated into core.

I know that many great hackers from 2ndQuadrant, EnterpriseDB, NTT,
Postgres Professional, CitusData, and so on are addressing this
difficult scaleout feature. I don't think yet we are competent to
lead this development.

On the other hand, we have a proprietary RDBMS called Symfoware (I'm
sure you don't know it), which is not based on PostgreSQL, that
provides the scaleout feature. Its architecture is a mix of shared
nothing and shared everything. It implements deadlock detection and
resolution without a central node or periodic monitoring, parallel 2PC
across nodes, parallel crash recovery, client connection routing and
failover without any overhead of intermediary middleware during SQL
execution, etc. So we may be able to help in some way. I'd be happy
if we could help the community to proceed with development of
scaleout.

If you have a session for scaleout outside the unconference, could you
call me and let me join it?

By the way, the popularity score of PostgreSQL finally exceeded 400
points in the DB-Engines ranking! The popularity difference with the
top products has shrunk greatly. Let's make PostgreSQL more popular.

https://db-engines.com/en/ranking

[as of May 27, 2018]
Oracle=1290.42 MySQL=1223.34 SQL Server=1085.84
PostgreSQL=400.90 MongoDB=342.11
(Oracle / PostgreSQL ratio is 3.2)

[as of Feb 2016, according to a memo at hand]
Oracle=1476.14 MySQL=1321.13 SQL Server=??
MongoDB=?? PostgreSQL=288.66
(Oracle / PostgreSQL ratio is 5.1)

Regards
MauMau

#2Robert Haas
robertmhaas@gmail.com
In reply to: MauMau (#1)
Re: I'd like to discuss scaleout at PGCon

On Sun, May 27, 2018 at 1:20 AM, MauMau <maumau307@gmail.com> wrote:

I'm going to attend PGCon in Ottawa for the first time. I am happy if
I can meet you.

It was nice to meet you in person.

I'd like to have a session on scaleout design at the unconference.
I've created a wiki page for that (this is still just a memo; I'd like
to populate this page with you as the discussion in the community
progresses). I'd appreciate it if someone could stand with me and
facilitate the discussion at the unconference.

https://wiki.postgresql.org/wiki/Scaleout_Design

We didn't have time in the unconference session to discuss these
topics in detail, for you have raised many issues here each of which
deserves discussion individually and in detail. I wrote a blog post
somewhat related to this topic recently which you can find at
http://rhaas.blogspot.com/2018/05/built-in-sharding-for-postgresql.html
-- it focuses on a somewhat different set of issues than the ones you
raise but that's good, because we need to hear all perspectives. In
terms of high-level architecture, I think you are right to wonder
about the possibility of a cloud-native mode based on separating
storage and compute. Amazon Aurora offers that feature, but we might
want to have it in PostgreSQL.

Another, somewhat different thing that we might want is a fully
distributed database, with a distributed buffer cache, distributed
lock manager, distributed invalidation queue, etc. That would be like
what Oracle RAC does, but it's a tremendous amount of work, and a lot
of that work has no value by itself. You don't get the payoff until
it's all working. There are a few pieces that might be independently
useful, though, like a distributed deadlock detector. The goal of
this kind of effort is, I think, to support zillions of connections --
scale further than you can with just one node. This would be a lot
better if combined with the cloud-native storage, but of course that's
even more work.

The FDW approach, of which I have been a supporter for some years now,
is really aiming at a different target, which is to allow efficient
analytics queries across a multi-node cluster. I think we're getting
pretty close to being able to do that -- IMHO, the last fundamental
building block that we need is asynchronous execution, which Andres is
working on. After that, it's a matter of adding other features that
people want (like cross-node MVCC) and improving the plans for queries
that still don't perform well (like joins that involve redistributing
one of the tables involved).

We might not want to confine ourselves strictly to the FDW interface
-- for example, I've thought about the idea of building introducing a
new relkind for a "distributed table". A distributed table may be
present on the local node, in which case it can be scanned like a
local table, or it may be not present, in which case it can be scanned
like a foreign table by connecting to a node on which it is present.
The set of nodes on which a table is present is metadata that is
shared throughout the cluster. Multi-master logical replication
propagates changes between all nodes on which the table is present.
With a concept like this, there is a lot of opportunity to optimize
queries by, for example, deciding to perform a join on a node on which
both input tables are present, to minimize data movement. But even if
we create something like this, I see it as fundamentally an extension
of the FDW approach that would hopefully manage to reuse a lot of
what's already been built there. I don't think we need to (or should)
throw away the work that's been done on FDW pushdown and start over --
we should find a way to build on top of it and add ease-of-use and
management features.

In fact, even if we said that we want a fully distributed database,
we'd probably still need some kind of distributed table concept.
Unless every node has a full copy of everything in the database, you
still need to reason about which data is present on which nodes and
optimize queries accordingly.

By the way, the popularity score of PostgreSQL finally exceeded 400
points in the DB-Engines ranking! The popularity difference with the
top products has shrunk greatly. Let's make PostgreSQL more popular.

https://db-engines.com/en/ranking

[as of May 27, 2018]
Oracle=1290.42 MySQL=1223.34 SQL Server=1085.84
PostgreSQL=400.90 MongoDB=342.11
(Oracle / PostgreSQL ratio is 3.2)

[as of Feb 2016, according to a memo at hand]
Oracle=1476.14 MySQL=1321.13 SQL Server=??
MongoDB=?? PostgreSQL=288.66
(Oracle / PostgreSQL ratio is 5.1)

From the chart view, in February 2016, SQL Server was at 1150.227, and
MongoDB was at 305.599. Generally it looks like the "big three" --
Oracle, MySQL, and SQL Server -- are all slowly declining in the
rankings while PostgreSQL and MongoDB are slowly rising.

It's good to see PostgreSQL going up, but we have a long way to go to
really be in the big leagues. I think in the last couple of years we
have done a much better job of adding interesting features than we did
for a few years before that. Between PostgreSQL 9.6 and 11, we will
have added (and in many cases significantly improved) partitioning,
logical replication, parallel query, and stored procedures. Along the
way we've improved a lot of other things, not least executor
performance. I don't know how directly those things affect the
DB-Engines ranking, but they are such major things that I have to
believe they make PostgreSQL a real possibility for many users who
wouldn't previously have found it a viable option, and I assume that's
at least part of what is driving the numbers, though there are
probably other factors too, such as Oracle's acquisition of MySQL. I
think it's pretty clear that we need to both continue to improve some
of these major new features we've added and at the same time keep
introducing even more new things if we want to continue to gain market
share and mind share. I hope that features like scale-out and also
zheap are going to help us continue to whittle away at the gap, and I
look forward to seeing what else anyone may have in mind.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#3MauMau
maumau307@gmail.com
In reply to: Robert Haas (#2)
Re: I'd like to discuss scaleout at PGCon

2018-05-31 11:26 GMT+09:00, Robert Haas <robertmhaas@gmail.com>:

It was nice to meet you in person.

Me too. And it was very kind of you to help me to display the wiki
page well and guide the session. When I first heard your voice at the
Developer Meeting, I thought Bruce Momjian was speaking, because your
voice sounded similar to him...

We didn't have time in the unconference session to discuss these
topics in detail, for you have raised many issues here each of which
deserves discussion individually and in detail. I wrote a blog post
somewhat related to this topic recently which you can find at
http://rhaas.blogspot.com/2018/05/built-in-sharding-for-postgresql.html

Yes, I read this article before PGCon. Your articles are always
helpful to catch the current overall situation of the community.

In
terms of high-level architecture, I think you are right to wonder
about the possibility of a cloud-native mode based on separating
storage and compute. Amazon Aurora offers that feature, but we might
want to have it in PostgreSQL.

Another, somewhat different thing that we might want is a fully
distributed database, with a distributed buffer cache, distributed
lock manager, distributed invalidation queue, etc. That would be like
what Oracle RAC does, but it's a tremendous amount of work, and a lot
of that work has no value by itself. You don't get the payoff until
it's all working. There are a few pieces that might be independently
useful, though, like a distributed deadlock detector. The goal of
this kind of effort is, I think, to support zillions of connections --
scale further than you can with just one node. This would be a lot
better if combined with the cloud-native storage, but of course that's
even more work.

Yes, I can understand the difficulty. So, I simply wanted to ask
opinions at the unconference on which (hard) direction the community
wants to go and what database we want PostgreSQL to be like
ultimately. Without that fundamental consensus, development work
might be wasted, facing objections after submitting patches. As you
mentioned in your blog post and in a past email, I don't think anyone
yet has a clear image of what the scaleout of PostgreSQL should be.
How should we proceed? Which approach should we take to minimize
rework?

a) Define functional specification with the basic overall architecture
(this doesn't mean to write a heavy detailed design document or
manual; I think a general README or wiki would be sufficient.) At
this time, I expect we can evaluate how to use scaleout feature and
whether it's reasonably easy to use. Then we can proceed to design
and code each part with relief -- 2PC, global consistency, failure
detection and failover, distributed lock management and deadlock
handling, etc.

b) Various developers design and code each part, bring together those
patches, and then all try to figure out how to combine them.

I'm in favor of a) at least at the basic architecture level.
Otherwise, such an unhappiness could happen:
"Hey, I made a patch to implement a distributed cache management like
Oracle Cache Fusion."
"No, we don't want features based on shared everything architecture."

I anticipated a decision process at the unconference like this:
"Do we want to build on shared everything architecture?"
"No, because it limits scalability, requires expensive shared storage,
and it won't run on many clouds."
"Then do we want to employ a new architecture like AWS Aurora?"
"That may be interesting. But AWS could do it because they have an
infinitely scalable storage layer which is built and used for a long
time. This architecture may not be our option. But let's keep our
eye on leveraging services of major cloud vendors just like Vertica
does recently. Cloud services are now like traditional
vendor-specific hardware. Maybe PostgreSQL should utilize them just
like we use CPU-specific instructions now and GPU/persistent memory in
the near future."
"Then, it seems that we should go on the shared nothing architecture.
Is it OK?"
"Yes."

The FDW approach, of which I have been a supporter for some years now,
is really aiming at a different target, which is to allow efficient
analytics queries across a multi-node cluster.

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

We might not want to confine ourselves strictly to the FDW interface
-- for example, I've thought about the idea of building introducing a
new relkind for a "distributed table". A distributed table may be
present on the local node, in which case it can be scanned like a
local table, or it may be not present, in which case it can be scanned
like a foreign table by connecting to a node on which it is present.
The set of nodes on which a table is present is metadata that is
shared throughout the cluster. Multi-master logical replication
propagates changes between all nodes on which the table is present.
With a concept like this, there is a lot of opportunity to optimize
queries by, for example, deciding to perform a join on a node on which
both input tables are present, to minimize data movement.

I agree. XL, Oracle Sharding, and possibly MySQL Cluster does that,
too. It seems like a must-do thing.

But even if
we create something like this, I see it as fundamentally an extension
of the FDW approach that would hopefully manage to reuse a lot of
what's already been built there. I don't think we need to (or should)
throw away the work that's been done on FDW pushdown and start over --
we should find a way to build on top of it and add ease-of-use and
management features.

Agreed. I think we should not write much code from scratch, too. On
the other hand, if we have to support sharding natively without FDW, I
wonder if we can reuse the FDW artifact. I mean, extracting necessary
logics from FDW into common functions, and native sharding code also
calls them.

In fact, even if we said that we want a fully distributed database,
we'd probably still need some kind of distributed table concept.
Unless every node has a full copy of everything in the database, you
still need to reason about which data is present on which nodes and
optimize queries accordingly.

Then, how about building the cluster membership management first,
including node management and failure detection/failover? I think
that node management is necessary anyway, and other developers can
experiment other things on that cluster infrastructure. Do you think
it would be helpful or wasteful? I'm finding what we can do for early
scaleout release.

From the chart view, in February 2016, SQL Server was at 1150.227, and
MongoDB was at 305.599. Generally it looks like the "big three" --

Thank you for looking at the chart and telling me the figures.

I
think it's pretty clear that we need to both continue to improve some
of these major new features we've added and at the same time keep
introducing even more new things if we want to continue to gain market
share and mind share. I hope that features like scale-out and also
zheap are going to help us continue to whittle away at the gap, and I
look forward to seeing what else anyone may have in mind.

Definitely. I couldn't agree more.

Regards
MauMau

#4Robert Haas
robertmhaas@gmail.com
In reply to: MauMau (#3)
Re: I'd like to discuss scaleout at PGCon

On Thu, May 31, 2018 at 8:12 AM, MauMau <maumau307@gmail.com> wrote:

I anticipated a decision process at the unconference like this:
"Do we want to build on shared everything architecture?"
"No, because it limits scalability, requires expensive shared storage,
and it won't run on many clouds."
"Then do we want to employ a new architecture like AWS Aurora?"
"That may be interesting. But AWS could do it because they have an
infinitely scalable storage layer which is built and used for a long
time. This architecture may not be our option. But let's keep our
eye on leveraging services of major cloud vendors just like Vertica
does recently. Cloud services are now like traditional
vendor-specific hardware. Maybe PostgreSQL should utilize them just
like we use CPU-specific instructions now and GPU/persistent memory in
the near future."
"Then, it seems that we should go on the shared nothing architecture.
Is it OK?"
"Yes."

I think all of that except for the last two sentences accords with my
view, at least. As for the last two sentences, I'm happy to see
someone develop some kind of cloud-native storage if they want, but I
have no immediate plans in that area myself.

The FDW approach, of which I have been a supporter for some years now,
is really aiming at a different target, which is to allow efficient
analytics queries across a multi-node cluster.

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

That seems like a harder target to me, because you will have an extra
hop involved -- SQL from the client to the first server, then via SQL
to a second server. The work of parsing and planning also has to be
done twice, once for the foreign table and again for the table. For
longer-running queries this overhead doesn't matter as much, but for
short-running queries it is significant.

Agreed. I think we should not write much code from scratch, too. On
the other hand, if we have to support sharding natively without FDW, I
wonder if we can reuse the FDW artifact. I mean, extracting necessary
logics from FDW into common functions, and native sharding code also
calls them.

I wouldn't do it that way. I want to use postgres_fdw as a whole, not
break it up into pieces and reuse the individual bits of code. We
should think also about whether other FDWs could be part of it,
although maybe that's not realistic.

In fact, even if we said that we want a fully distributed database,
we'd probably still need some kind of distributed table concept.
Unless every node has a full copy of everything in the database, you
still need to reason about which data is present on which nodes and
optimize queries accordingly.

Then, how about building the cluster membership management first,
including node management and failure detection/failover? I think
that node management is necessary anyway, and other developers can
experiment other things on that cluster infrastructure. Do you think
it would be helpful or wasteful? I'm finding what we can do for early
scaleout release.

I don't know what "node management" and "failure dectection/failover"
mean specifically. I'd like to hear proposals, though.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#5MauMau
maumau307@gmail.com
In reply to: Robert Haas (#4)
Re: I'd like to discuss scaleout at PGCon

2018-05-31 22:44 GMT+09:00, Robert Haas <robertmhaas@gmail.com>:

On Thu, May 31, 2018 at 8:12 AM, MauMau <maumau307@gmail.com> wrote:

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

That seems like a harder target to me, because you will have an extra
hop involved -- SQL from the client to the first server, then via SQL
to a second server. The work of parsing and planning also has to be
done twice, once for the foreign table and again for the table. For
longer-running queries this overhead doesn't matter as much, but for
short-running queries it is significant.

Yes, that extra hop and double parsing/planning were the killer for
our performance goal when we tried to meet our customer's scaleout
needs with XL. The application executes 82 DML statements in one
transaction. Those DMLs consist of INSERT, UPDATE and SELECT that
only accesses one row with a primary key. The target tables are only
a few, so the application PREPAREs a few statements and EXECUTEs them
repeatedly. We placed the coordinator node of XL on the same host as
the application, and data nodes and GTM on other individual nodes.

The response time of XL compared to PostgreSQL was 2.4 times, and the
throughput (tps) was 43%. Interestingly, perf showed that
base_yyparse() was the top CPU consumer on both coordinator and data
node, while base_yyparse() appeared near the bottom of the ranking.
The SQL processor should be one layer, not two layers.

In the above benchmark, each transaction only accessed data on one
data node. That's what sharding principles recommend. The FDW
approach would be no problem as long as the application follows the
sharding recommendation.

But not all applications will/can follow the sharding recommendation.
The above application, which is migrated from a mainframe, uses
INSERTs to load data, inserting rows onto various nodes. Considering
your concern of double parsing/planning for a local foreign table and
a remote real table, wouldn't the FDW approach hit the wall?

I don't know what "node management" and "failure dectection/failover"
mean specifically. I'd like to hear proposals, though.

That's nothing special or new. Things like:

* Define a set of nodes that can join the cluster.
* Initialize or configure a node according to its role in the cluster.
* Decommission a node from the cluster.
* Define a node group in which all member nodes have the same data set
for redundancy.
* One command to start and shutdown the entire cluster.
* System tables to display the member nodes and node groups.
* Each node's in-memory view of the current cluster state.
* How each node monitors which other nodes.
* Elect a new primary node within a node group when the current
primary node fails.
* Whether each node group should be configured with a master-slaves
replication topology, or a multi-master topology like MySQL Group
Replication

Some of the above may end up with XL's things like
pgxc_node/pgxc_group system tables, pgxc_ctl command, CREATE/DROP
NODE/NODE GROUP commands, etc.

Regards
MauMau

#6Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: MauMau (#5)
Re: I'd like to discuss scaleout at PGCon

On Thu, May 31, 2018 at 11:00 PM, MauMau <maumau307@gmail.com> wrote:

2018-05-31 22:44 GMT+09:00, Robert Haas <robertmhaas@gmail.com>:

On Thu, May 31, 2018 at 8:12 AM, MauMau <maumau307@gmail.com> wrote:

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

That seems like a harder target to me, because you will have an extra
hop involved -- SQL from the client to the first server, then via SQL
to a second server. The work of parsing and planning also has to be
done twice, once for the foreign table and again for the table. For
longer-running queries this overhead doesn't matter as much, but for
short-running queries it is significant.

Yes, that extra hop and double parsing/planning were the killer for
our performance goal when we tried to meet our customer's scaleout
needs with XL. The application executes 82 DML statements in one
transaction. Those DMLs consist of INSERT, UPDATE and SELECT that
only accesses one row with a primary key. The target tables are only
a few, so the application PREPAREs a few statements and EXECUTEs them
repeatedly. We placed the coordinator node of XL on the same host as
the application, and data nodes and GTM on other individual nodes.

I agree that there's double parsing happening, but I am hesitant to
agree with the double planning claim. We do plan, let's say a join
between two foreign tables, on the local server, but that's only to
decide whether it's efficient to join locally or on the foreign
server. That means we create foreign paths for scan on the foreign
tables, may be as many parameterized plans as the number of join
conditions, and one path for the join pushdown that's it. We then
create local join paths but we need those to decide whether it's
efficient to join locally and if yes, which way. But don't create
paths as to how the foreign server would plan that join. That's not
double planning since we do not create same paths locally and on the
foreign server.

In order to avoid double parsing, we might want to find a way to pass
a "normalized" parse tree down to the foreign server. We need to
normalize the OIDs in the parse tree since those may be different
across the nodes.

I don't know what "node management" and "failure dectection/failover"
mean specifically. I'd like to hear proposals, though.

That's nothing special or new. Things like:

That's a good summary of what we need here. Thanks for the summary.

* Define a set of nodes that can join the cluster.
* Initialize or configure a node according to its role in the cluster.
* Decommission a node from the cluster.
* Define a node group in which all member nodes have the same data set
for redundancy.
* One command to start and shutdown the entire cluster.

Right.

* System tables to display the member nodes and node groups.

I think we need system tables on each node to store the cluster
configuration as seen by that node not just display. But that's a bit
of a detail.

* Each node's in-memory view of the current cluster state.
* How each node monitors which other nodes.

That's where we can have multiple ways. It's either each node
monitoring other nodes or we have a kind of watch-dog or a central
place (not necessarily a node, a file shared across the nodes might as
well server that purpose) from where we can fetch the "last known"
state of the cluster. But that along with split brain problem is much
larger problem to solve. I agree we need some way to know the "last
known" status of the cluster and then correct it as the cluster has
conflicting experiences, and do all of that without having much
communication overhead.

* Elect a new primary node within a node group when the current
primary node fails.

Well, some configuration might want more than one primary or
coordinator nodes. Having a single primary in itself creates an SPOF,
which should be avoided. But then there will be some loads which will
be happy with a single primary and risks arising out of that.

* Whether each node group should be configured with a master-slaves
replication topology, or a multi-master topology like MySQL Group
Replication

Instead of a master-slave configuration, we might want to use logical
replication or some such method to create replicas of tables on
multiple nodes in a cluster and let the optimizer take advantage of
that for join push-down or load balancing.

Some of the above may end up with XL's things like
pgxc_node/pgxc_group system tables, pgxc_ctl command, CREATE/DROP
NODE/NODE GROUP commands, etc.

I agree.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#7Simon Riggs
simon@2ndquadrant.com
In reply to: Ashutosh Bapat (#6)
Re: I'd like to discuss scaleout at PGCon

On 1 June 2018 at 15:44, Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> wrote:

On Thu, May 31, 2018 at 11:00 PM, MauMau <maumau307@gmail.com> wrote:

2018-05-31 22:44 GMT+09:00, Robert Haas <robertmhaas@gmail.com>:

On Thu, May 31, 2018 at 8:12 AM, MauMau <maumau307@gmail.com> wrote:

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

That seems like a harder target to me, because you will have an extra
hop involved -- SQL from the client to the first server, then via SQL
to a second server. The work of parsing and planning also has to be
done twice, once for the foreign table and again for the table. For
longer-running queries this overhead doesn't matter as much, but for
short-running queries it is significant.

Yes, that extra hop and double parsing/planning were the killer for
our performance goal when we tried to meet our customer's scaleout
needs with XL. The application executes 82 DML statements in one
transaction. Those DMLs consist of INSERT, UPDATE and SELECT that
only accesses one row with a primary key. The target tables are only
a few, so the application PREPAREs a few statements and EXECUTEs them
repeatedly. We placed the coordinator node of XL on the same host as
the application, and data nodes and GTM on other individual nodes.

I agree that there's double parsing happening, but I am hesitant to
agree with the double planning claim. We do plan, let's say a join
between two foreign tables, on the local server, but that's only to
decide whether it's efficient to join locally or on the foreign
server. That means we create foreign paths for scan on the foreign
tables, may be as many parameterized plans as the number of join
conditions, and one path for the join pushdown that's it. We then
create local join paths but we need those to decide whether it's
efficient to join locally and if yes, which way. But don't create
paths as to how the foreign server would plan that join. That's not
double planning since we do not create same paths locally and on the
foreign server.

In order to avoid double parsing, we might want to find a way to pass
a "normalized" parse tree down to the foreign server. We need to
normalize the OIDs in the parse tree since those may be different
across the nodes.

Passing detailed info between servers is exactly what XL does.

It requires us to define a cluster, exactly as XL does.

And yes, its a good idea to replicate some tables to all nodes, as XL does.

So it seems we have at last some agreement that some of the things XL
does are the correct approaches.

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#8Simon Riggs
simon@2ndquadrant.com
In reply to: MauMau (#5)
Re: I'd like to discuss scaleout at PGCon

On 1 June 2018 at 04:00, MauMau <maumau307@gmail.com> wrote:

The SQL processor should be one layer, not two layers.

For OLTP, that would be best. But it would be restricted to
single-node requests, leaving you the problem of how you know ahead of
time whether an SQL statement was single node or not.

Using a central coordinator node allows us to hide the decision of
single-node/multi-node from the user which seems essential for general
SQL. If you are able to restrict the types of requests users make then
we can do direct access to partitions - so there is scope for a
single-node API, as Mongo provides.

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

And that is why both XL and "FDW approach" rely on a central coordinator.

FDWs alone are not enough. It is clear that some more tight coupling
is required to get things to work well. For example, supporting SQL
query plans that allow for redistribution of data for joins.

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#9Tom Lane
tgl@sss.pgh.pa.us
In reply to: Ashutosh Bapat (#6)
Re: I'd like to discuss scaleout at PGCon

Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> writes:

In order to avoid double parsing, we might want to find a way to pass
a "normalized" parse tree down to the foreign server. We need to
normalize the OIDs in the parse tree since those may be different
across the nodes.

I don't think this is a good idea at all. It breaks any hope of
supporting remote servers that are not the identical version to the local
one (since their parsetrees might be different). And "normalized OIDs"
sounds like "pie in the sky". You might get away with asssuming that
built-in functions have stable OIDs, but you can't expect that for
functions in extensions.

regards, tom lane

#10Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Simon Riggs (#8)
Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 1, 2018 at 11:10 AM, Simon Riggs <simon@2ndquadrant.com> wrote:

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

But that becomes an SPOF and then we have to configure a standby for
that. I am not saying that that's a bad design but it's not very good
for many work-loads. But it would be good if we could avoid any
"central server" in this configuration.

And that is why both XL and "FDW approach" rely on a central coordinator.

I don't think we ever specified that "FDW approach" "relies" on a
central coordinator. One could configure and setup a cluster with
multiple coordinators using FDWs.

FDWs alone are not enough. It is clear that some more tight coupling
is required to get things to work well. For example, supporting SQL
query plans that allow for redistribution of data for joins.

I think partitioning + FDW provide basic infrastructure for
distributing data, planning queries working with such data. We need
more glue to support node management, cluster configuration. So, I
agree with your statement. But I think it was clear from the beginning
that we need more than FDW and partitioning.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#11Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Tom Lane (#9)
Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 1, 2018 at 11:27 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> writes:

In order to avoid double parsing, we might want to find a way to pass
a "normalized" parse tree down to the foreign server. We need to
normalize the OIDs in the parse tree since those may be different
across the nodes.

I don't think this is a good idea at all. It breaks any hope of
supporting remote servers that are not the identical version to the local
one (since their parsetrees might be different). And "normalized OIDs"
sounds like "pie in the sky". You might get away with asssuming that
built-in functions have stable OIDs, but you can't expect that for
functions in extensions.

Sorry for confusing writeup. I didn't mean "normalized OIDs" as I
mentioned in my last sentence. I meant "normalized parse-tree" as in
the first sentence. In order to normalize parse trees, we need to at
least replace various OIDs in parse-tree with something that the
foreign server will understand correctly like table name on the
foreign table pointed to by local foreign table OR (schema qualified)
function names and so on. There might be more things to "normalize"
in the parse tree other than OIDs, but I can't think of anything right
now.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#12Merlin Moncure
mmoncure@gmail.com
In reply to: Robert Haas (#2)
Re: I'd like to discuss scaleout at PGCon

On Wed, May 30, 2018 at 9:26 PM Robert Haas <robertmhaas@gmail.com> wrote:

The FDW approach, of which I have been a supporter for some years now,
is really aiming at a different target, which is to allow efficient
analytics queries across a multi-node cluster. I think we're getting
pretty close to being able to do that -- IMHO, the last fundamental
building block that we need is asynchronous execution, which Andres is
working on. After that, it's a matter of adding other features that
people want (like cross-node MVCC) and improving the plans for queries
that still don't perform well (like joins that involve redistributing
one of the tables involved).

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is at.
I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia of
engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that in
many spheres.

The direction of the project is sound and we are on the cusp of the
point where multiple independent coalescing features (FDW, logical
replication, parallel query, executor enhancements) will open new
scaling avenues that will not require trading off the many other
benefits of SQL that competing contemporary solutions might. The
broader development market is starting to realize this and that is a
major driver of the recent upswing in popularity. This is benefiting
me tremendously personally due to having gone 'all-in' with postgres
almost 20 years ago :-D. (Time sure flies) These are truly
wonderful times for the community.

merlin

#13Simon Riggs
simon@2ndquadrant.com
In reply to: Ashutosh Bapat (#10)
Re: I'd like to discuss scaleout at PGCon

On 1 June 2018 at 16:56, Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> wrote:

On Fri, Jun 1, 2018 at 11:10 AM, Simon Riggs <simon@2ndquadrant.com> wrote:

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

But that becomes an SPOF and then we have to configure a standby for
that. I am not saying that that's a bad design but it's not very good
for many work-loads. But it would be good if we could avoid any
"central server" in this configuration.

And that is why both XL and "FDW approach" rely on a central coordinator.

I don't think we ever specified that "FDW approach" "relies" on a
central coordinator. One could configure and setup a cluster with
multiple coordinators using FDWs.

Yes, of course. You're just misunderstanding me. I'm talking about a
query coordinator "role". There can be many coordinator components and
they can be spread out in variours ways, but for any one SQL query
there needs to be one coordinator node. Not a SPOF.

FDWs alone are not enough. It is clear that some more tight coupling
is required to get things to work well. For example, supporting SQL
query plans that allow for redistribution of data for joins.

I think partitioning + FDW provide basic infrastructure for
distributing data, planning queries working with such data. We need
more glue to support node management, cluster configuration. So, I
agree with your statement. But I think it was clear from the beginning
that we need more than FDW and partitioning.

No, it wasn't clear. But I'm glad to hear it. It might actually work then.

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#14Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Simon Riggs (#13)
Re: I'd like to discuss scaleout at PGCon

On Sat, Jun 2, 2018 at 4:05 AM, Simon Riggs <simon@2ndquadrant.com> wrote:

On 1 June 2018 at 16:56, Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> wrote:

On Fri, Jun 1, 2018 at 11:10 AM, Simon Riggs <simon@2ndquadrant.com> wrote:

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

But that becomes an SPOF and then we have to configure a standby for
that. I am not saying that that's a bad design but it's not very good
for many work-loads. But it would be good if we could avoid any
"central server" in this configuration.

And that is why both XL and "FDW approach" rely on a central coordinator.

I don't think we ever specified that "FDW approach" "relies" on a
central coordinator. One could configure and setup a cluster with
multiple coordinators using FDWs.

Yes, of course. You're just misunderstanding me. I'm talking about a
query coordinator "role". There can be many coordinator components and
they can be spread out in variours ways, but for any one SQL query
there needs to be one coordinator node. Not a SPOF.

In your earlier mail, which is included above, you mentioned central
coordinator for multi-node transaction control and global deadlock
detection. That doesn't sound like a "query coordinator role". It
sounds more like GTM, which is an SPOF. Anyway I am happy to clarify
that "FDW approach" relies on a query coordinator, the server which
faces the client. But I don't think we have decided how would the
transaction management and deadlock detection work in the shared
nothing cluster of PostgreSQL servers. There was discussion in
developer unconference this year, but I was not part of that as I was
holding another session the same time. May be somebody who attended
that session can post a summary here or provide a link to the summary
written elsewhere.

FDWs alone are not enough. It is clear that some more tight coupling
is required to get things to work well. For example, supporting SQL
query plans that allow for redistribution of data for joins.

I think partitioning + FDW provide basic infrastructure for
distributing data, planning queries working with such data. We need
more glue to support node management, cluster configuration. So, I
agree with your statement. But I think it was clear from the beginning
that we need more than FDW and partitioning.

No, it wasn't clear. But I'm glad to hear it. It might actually work then.

Good to see some agreement.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#15Simon Riggs
simon@2ndquadrant.com
In reply to: Ashutosh Bapat (#14)
Re: I'd like to discuss scaleout at PGCon

On 2 June 2018 at 22:46, Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> wrote:

And that is why both XL and "FDW approach" rely on a central coordinator.

I don't think we ever specified that "FDW approach" "relies" on a
central coordinator. One could configure and setup a cluster with
multiple coordinators using FDWs.

Yes, of course. You're just misunderstanding me. I'm talking about a
query coordinator "role". There can be many coordinator components and
they can be spread out in variours ways, but for any one SQL query
there needs to be one coordinator node. Not a SPOF.

In your earlier mail, which is included above, you mentioned central
coordinator for multi-node transaction control and global deadlock
detection. That doesn't sound like a "query coordinator role". It
sounds more like GTM, which is an SPOF.

In XL, GTM is a singe component managing transaction ids. That has a
standby, so is not a SPOF.

But that is not what I mean. I don't believe that a GTM-style
component is necessary in a future in-core scalablility solution.

Each incoming query needs to be planned and executed from one
coordinator component, then the work performed across many workers on
different nodes (or just one). We could have coordinator components on
each worker node, or we could have a set of coordinator nodes and a
set of worker nodes.

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#16Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Simon Riggs (#15)
Re: I'd like to discuss scaleout at PGCon

On Sun, Jun 3, 2018 at 2:00 AM, Simon Riggs <simon@2ndquadrant.com> wrote:

In XL, GTM is a singe component managing transaction ids. That has a
standby, so is not a SPOF.

But that is not what I mean. I don't believe that a GTM-style
component is necessary in a future in-core scalablility solution.

I agree. I think, a distributed algorithm, which does not need a
single GTM-style node, would be better. That automatically provides
high availability without configuring a standby.

Each incoming query needs to be planned and executed from one
coordinator component, then the work performed across many workers on
different nodes (or just one).

Each node need to be confiugred and maintained. That requires efforts.
So we need to keep the number of nodes to a minimum. With a
coordinator and worker node segregation, we require at least two nodes
in a cluster and just that configuration doesn't provide much
scalability. With each node functioning as coordinator (facing
clients) and worker (facing other coordinators) keeps the number of
nodes to a minimum. It is good for HA.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#17MauMau
maumau307@gmail.com
In reply to: Simon Riggs (#7)
Re: I'd like to discuss scaleout at PGCon

From: Simon Riggs

Passing detailed info between servers is exactly what XL does.

It requires us to define a cluster, exactly as XL does.

And yes, its a good idea to replicate some tables to all nodes, as

XL does.

So it seems we have at last some agreement that some of the things

XL

does are the correct approaches.

Exactly. I was impressed when I read the paper on XC for the first
time. I respect what Suzuki-san and people from NTT, EnterpriseDB,
and 2ndQuadrant have done for XC/XL. Just like some people believe we
should leverage the artifact for FDW, I think we should leverage the
code and idea of XC/XL.

Regards
MauMau

#18MauMau
maumau307@gmail.com
In reply to: Simon Riggs (#8)
Re: I'd like to discuss scaleout at PGCon

From: Robert Haas
On Thu, May 31, 2018 at 8:12 AM, MauMau <maumau307@gmail.com> wrote:

Oh, I didn't know you support FDW approach mainly for analytics. I
guessed the first target was OLTP read-write scalability.

That seems like a harder target to me, because you will have an

extra

hop involved -- SQL from the client to the first server, then via

SQL

to a second server. The work of parsing and planning also has to be
done twice, once for the foreign table and again for the table. For
longer-running queries this overhead doesn't matter as much, but for
short-running queries it is significant.

From: Simon Riggs
On 1 June 2018 at 04:00, MauMau <maumau307@gmail.com> wrote:

The SQL processor should be one layer, not two layers.

For OLTP, that would be best. But it would be restricted to
single-node requests, leaving you the problem of how you know ahead

of

time whether an SQL statement was single node or not.

Using a central coordinator node allows us to hide the decision of
single-node/multi-node from the user which seems essential for

general

SQL. If you are able to restrict the types of requests users make

then

we can do direct access to partitions - so there is scope for a
single-node API, as Mongo provides.

I don't think an immediate server like the coordinators in XL is
necessary. That extra hop can be eliminated by putting both the
coordinator and the data node roles in the same server process. That
is, the node to which an application connects communicates with other
nodes only when it does not necessary data.

Furthermore, an extra hop and double parsing/planning could matter for
analytic queries, too. For example, SAP HANA boasts of scanning 1
billion rows in one second. In HANA's scaleout architecture, an
application can connect to any worker node and the node communicates
with other nodes only when necessary (there's one special node called
"master", but it manages the catalog and transactions; it's not an
extra hop like the coordinator in XL). Vertica is an MPP analytics
database, but it doesn't have a node like the coordinator, either. To
achieve maximum performance for real-time queries, the scaleout
architecture should avoid an extra hop when possible.

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

VoltDB does not have an always-pass hop like the coordinator in XL.
Our proprietary RDBMS named Symfoware, which is not based on
PostgreSQL, also doesn't have an extra hop, and can handle distributed
transactions and deadlock detection/resolution without any special
node like GTM.

Regards
MauMau

#19MauMau
maumau307@gmail.com
In reply to: Ashutosh Bapat (#11)
Re: I'd like to discuss scaleout at PGCon

From: Ashutosh Bapat

In order to normalize parse trees, we need to at
least replace various OIDs in parse-tree with something that the
foreign server will understand correctly like table name on the
foreign table pointed to by local foreign table OR (schema

qualified)

function names and so on.

Yes, that's the drawback of each node in the cluster having different
OIDs for the same object. That applies to XL, too. In XL, the data
node returns the data type names of the columns in the result set to
the coordinator. Then the coordinator seemed to parse each data type
name with base_yyparse() to convert the name to its OID on the
coordinator. That's why base_yyparse() appeared at the top in the
perf profile. That repeated typename-to-OID conversion would be
reduced by caching the conversion result, like the logical replication
of PostgreSQL does. But managing the catalog at one place and using
the same OID values seems to concise to me as a concept.

Regards
MauMau

#20MauMau
maumau307@gmail.com
In reply to: Ashutosh Bapat (#11)
Re: I'd like to discuss scaleout at PGCon

From: Ashutosh Bapat

In order to normalize parse trees, we need to at
least replace various OIDs in parse-tree with something that the
foreign server will understand correctly like table name on the
foreign table pointed to by local foreign table OR (schema

qualified)

function names and so on.

Yes, that's the drawback of each node in the cluster having different
OIDs for the same object. That applies to XL, too. In XL, the data
node returns the data type names of the columns in the result set to
the coordinator. Then the coordinator seemed to parse each data type
name with base_yyparse() to convert the name to its OID on the
coordinator. That's why base_yyparse() appeared at the top in the
perf profile. That repeated typename-to-OID conversion would be
reduced by caching the conversion result, like the logical replication
of PostgreSQL does. But managing the catalog at one place and using
the same OID values seems to concise to me as a concept.

Regards
MauMau

-----Original Message-----
From: Ashutosh Bapat
Sent: Saturday, June 2, 2018 1:00 AM
To: Tom Lane
Cc: MauMau ; Robert Haas ; PostgreSQL Hackers
Subject: Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 1, 2018 at 11:27 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:

Ashutosh Bapat <ashutosh.bapat@enterprisedb.com> writes:

In order to avoid double parsing, we might want to find a way to

pass

a "normalized" parse tree down to the foreign server. We need to
normalize the OIDs in the parse tree since those may be different
across the nodes.

I don't think this is a good idea at all. It breaks any hope of
supporting remote servers that are not the identical version to the

local

one (since their parsetrees might be different). And "normalized

OIDs"

sounds like "pie in the sky". You might get away with asssuming

that

built-in functions have stable OIDs, but you can't expect that for
functions in extensions.

Sorry for confusing writeup. I didn't mean "normalized OIDs" as I
mentioned in my last sentence. I meant "normalized parse-tree" as in
the first sentence. In order to normalize parse trees, we need to at
least replace various OIDs in parse-tree with something that the
foreign server will understand correctly like table name on the
foreign table pointed to by local foreign table OR (schema qualified)
function names and so on. There might be more things to "normalize"
in the parse tree other than OIDs, but I can't think of anything right
now.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#21MauMau
maumau307@gmail.com
In reply to: Ashutosh Bapat (#16)
Re: I'd like to discuss scaleout at PGCon

From: Ashutosh Bapat

Each node need to be confiugred and maintained. That requires

efforts.

So we need to keep the number of nodes to a minimum. With a
coordinator and worker node segregation, we require at least two

nodes

in a cluster and just that configuration doesn't provide much
scalability. With each node functioning as coordinator (facing
clients) and worker (facing other coordinators) keeps the number of
nodes to a minimum. It is good for HA.

I think so, too. Every node should behave as both the coordinator and
the data node in XL parlance. But I don't preclude a central node.
Some node needs to manage sequences, and it may as well manage the
system catalog.

Regards
MauMau

#22MauMau
maumau307@gmail.com
In reply to: Merlin Moncure (#12)
Re: I'd like to discuss scaleout at PGCon

From: Merlin Moncure

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is

at.

I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia

of

engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that

in

many spheres.

I'm feeling the same. As the Moore's Law ceases to hold, software
needs to make most of the processor power. Hadoop and Spark are
written in Java and Scala. According to Google [1]Robert Hundt. "Loop Recognition in C++/Java/Go/Scala". Proceedings of Scala Days 2011 (see Fig. 8), Java
is slower than C++ by 3.7x - 12.6x, and Scala is slower than C++ by
2.5x - 3.6x.

Won't PostgreSQL be able to cover the workloads of Hadoop and Spark
someday, when PostgreSQL supports scaleout, in-memory database,
multi-model capability, and in-database filesystem? That may be a
pipedream, but why do people have to tolerate the separation of the
relational-based data warehouse and Hadoop-based data lake?

[1]: Robert Hundt. "Loop Recognition in C++/Java/Go/Scala". Proceedings of Scala Days 2011
Proceedings of Scala Days 2011

Regards
MauMau

#23MauMau
maumau307@gmail.com
In reply to: Simon Riggs (#13)
Re: I'd like to discuss scaleout at PGCon

From: Simon Riggs
On 1 June 2018 at 16:56, Ashutosh Bapat
<ashutosh.bapat@enterprisedb.com> wrote:

I think partitioning + FDW provide basic infrastructure for
distributing data, planning queries working with such data. We need
more glue to support node management, cluster configuration. So, I
agree with your statement. But I think it was clear from the

beginning

that we need more than FDW and partitioning.

No, it wasn't clear. But I'm glad to hear it. It might actually work

then.

I found a possibly interesting description in the XL manual. Although
XL performs various pushdowns like FDW, XL seems to perform some kind
of joins with datanode-to-datanode communication. Doesn't this prove
that the FDW approach can't handle those joins optimally? What kind
of joins use the shared queue?

https://www.postgres-xl.org/documentation/pg-xc-specifics.html
--------------------------------------------------
shared_queues (integer)
Datanode Only

For some joins that occur in queries, data from one Datanode may need
to be joined with data from another Datanode. Postgres-XL uses shared
queues for this purpose. During execution each Datanode knows if it
needs to produce or consume tuples, or both.

Note that there may be mulitple shared_queues used even for a single
query. So a value should be set taking into account the number of
connections it can accept and expected number of such joins occurring
simultaneously.
--------------------------------------------------

Regards
MauMau

#24Michael Paquier
michael@paquier.xyz
In reply to: MauMau (#18)
Re: I'd like to discuss scaleout at PGCon

On Wed, Jun 06, 2018 at 01:14:04AM +0900, MauMau wrote:

I don't think an immediate server like the coordinators in XL is
necessary. That extra hop can be eliminated by putting both the
coordinator and the data node roles in the same server process. That
is, the node to which an application connects communicates with other
nodes only when it does not necessary data.

Yes, I agree with that. This was actually a concern I had over the
original XC design after a couple of years working on it. The less
nodes, the easier the HA, even if applying any PITR logic in N nodes
instead of N*2 nodes with 2PC checks and cleanups is far from trivial
either.. It happens that the code resulting in splitting coordinator
and datanode was simpler to maintain than merging both, at the cost of
operation maintenance and complexity in running the thing.

Furthermore, an extra hop and double parsing/planning could matter for
analytic queries, too. For example, SAP HANA boasts of scanning 1
billion rows in one second. In HANA's scaleout architecture, an
application can connect to any worker node and the node communicates
with other nodes only when necessary (there's one special node called
"master", but it manages the catalog and transactions; it's not an
extra hop like the coordinator in XL). Vertica is an MPP analytics
database, but it doesn't have a node like the coordinator, either. To
achieve maximum performance for real-time queries, the scaleout
architecture should avoid an extra hop when possible.

Greenplum's orca planner (and Citus?) have such facilities if I recall
correctly, just mentioning that pushing down directly to remote nodes
compiled plans ready for execution exists here and there (that's not the
case of XC/XL). For queries whose planning time is way shorter than its
actual execution, like analytical work that would not matter much. But
not for OLTP and short transaction workloads.

Using a central coordinator also allows multi-node transaction
control, global deadlock detection etc..

VoltDB does not have an always-pass hop like the coordinator in XL.

Greenplum uses also a single-coordinator, multi-datanode instance. That
looks similar, right?

Our proprietary RDBMS named Symfoware, which is not based on
PostgreSQL, also doesn't have an extra hop, and can handle distributed
transactions and deadlock detection/resolution without any special
node like GTM.

Interesting to know that. This is an area with difficult problems. At
the closer to merge with Postgres head, the more fun (?) you get into
trying to support new SQL features, and sometimes you finish with hard
ERRORs or extra GUC switches to prevent any kind of inconsistent
operations.
--
Michael

#25Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: MauMau (#19)
Re: I'd like to discuss scaleout at PGCon

On Tue, Jun 5, 2018 at 10:04 PM, MauMau <maumau307@gmail.com> wrote:

From: Ashutosh Bapat

In order to normalize parse trees, we need to at
least replace various OIDs in parse-tree with something that the
foreign server will understand correctly like table name on the
foreign table pointed to by local foreign table OR (schema

qualified)

function names and so on.

Yes, that's the drawback of each node in the cluster having different
OIDs for the same object. That applies to XL, too.

Keeping OIDs same across the nodes would require extra communication
between nodes to keep track of next OID, dropped OIDs etc. We need to
weigh the time spent in that communication and the time saved during
parsing.

In XL, the data
node returns the data type names of the columns in the result set to
the coordinator. Then the coordinator seemed to parse each data type
name with base_yyparse() to convert the name to its OID on the
coordinator. That's why base_yyparse() appeared at the top in the
perf profile.

I do not understand, why do we need base_yyparse() to parse type name.
We already have functions specifically for parsing object names.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#26Simon Riggs
simon@2ndquadrant.com
In reply to: MauMau (#18)
Re: I'd like to discuss scaleout at PGCon

On 5 June 2018 at 17:14, MauMau <maumau307@gmail.com> wrote:

Furthermore, an extra hop and double parsing/planning could matter for
analytic queries, too. For example, SAP HANA boasts of scanning 1
billion rows in one second. In HANA's scaleout architecture, an
application can connect to any worker node and the node communicates
with other nodes only when necessary (there's one special node called
"master", but it manages the catalog and transactions; it's not an
extra hop like the coordinator in XL). Vertica is an MPP analytics
database, but it doesn't have a node like the coordinator, either. To
achieve maximum performance for real-time queries, the scaleout
architecture should avoid an extra hop when possible.

Agreed. When possible.

When is it possible?

Two ways I know of are:

1. have pre-knowledge in the client of where data is located
(difficult to scale)
2. you must put data in all places the client can connect to (i.e. multimaster)

Perhaps there are more?

--
Simon Riggs http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#27Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: MauMau (#22)
Re: I'd like to discuss scaleout at PGCon

On 05.06.2018 20:17, MauMau wrote:

From: Merlin Moncure

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is

at.

I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia

of

engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that

in

many spheres.

I'm feeling the same. As the Moore's Law ceases to hold, software
needs to make most of the processor power. Hadoop and Spark are
written in Java and Scala. According to Google [1] (see Fig. 8), Java
is slower than C++ by 3.7x - 12.6x, and Scala is slower than C++ by
2.5x - 3.6x.

Won't PostgreSQL be able to cover the workloads of Hadoop and Spark
someday, when PostgreSQL supports scaleout, in-memory database,
multi-model capability, and in-database filesystem? That may be a
pipedream, but why do people have to tolerate the separation of the
relational-based data warehouse and Hadoop-based data lake?

[1] Robert Hundt. "Loop Recognition in C++/Java/Go/Scala".
Proceedings of Scala Days 2011

Regards
MauMau

I can not completely agree with it. I have done a lot of benchmarking of
PostgreSQL, CitusDB, SparkSQL and native C/Scala code generated for
TPC-H queries.
The picture is not so obvious... All this systems provides different
scalability and so shows best performance at different hardware
configurations.
Also Java JIT has made a good progress since 2011. Calculation intensive
code (like matrix multiplication) implemented in Java is about 2 times
slower than optimized C code.
But DBMSes are rarely CPU bounded. Even if all database fits in memory
(which is not so common scenario for big data applications), speed of
modern CPU is much higher than RAM access speed... Java application are
slower than C/C++ mostly because of garbage collection. This is why
SparkSQL is moving to off-heap approach when objects are allocated
outside Java heap and so not affecting Java GC.  New versions of
SparkSQL with off-heap memory and native code generation show very good
performance. And high scalability always was one of the major features
of SparkSQL.

So it is naive to expect that Postgres will be 4 times faster than
SparkSQL on analytic queries just because it is written in C and
SparkSQL - in Scala.
Postgres has made a very good progress in support of OLAP in last
releases: it now supports parallel query execution, JIT, partitioning...
But still its scalability is very limited comparing with SparkSQL. I am
not sure about GreenPlum with its sophisticated distributed query
optimizer, but
most of other OLAP solutions for Postgres are not able to efficiently
handle complex queries (with a lot of joins by non-partitioning keys).

I do not want to say that it is not possible to implement good analytic
platform for OLAP on top of Postgres. But it is very challenged task.
And IMHO choice of programming language is not so important. What is
more important is format of storing data. The bast systems for data
analytic: Vartica, HyPer, KDB,...
are using vertical data mode. SparkSQL is also using Parquet file format
which provides efficient extraction and processing of data.
With abstract storage API Postgres is also given a chance to implement
efficient storage for OLAP data processing. But huge amount of work has
to be done here.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#28Pavel Stehule
pavel.stehule@gmail.com
In reply to: Konstantin Knizhnik (#27)
Re: I'd like to discuss scaleout at PGCon

2018-06-06 10:58 GMT+02:00 Konstantin Knizhnik <k.knizhnik@postgrespro.ru>:

On 05.06.2018 20:17, MauMau wrote:

From: Merlin Moncure

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is

at.

I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia

of

engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that

in

many spheres.

I'm feeling the same. As the Moore's Law ceases to hold, software
needs to make most of the processor power. Hadoop and Spark are
written in Java and Scala. According to Google [1] (see Fig. 8), Java
is slower than C++ by 3.7x - 12.6x, and Scala is slower than C++ by
2.5x - 3.6x.

Won't PostgreSQL be able to cover the workloads of Hadoop and Spark
someday, when PostgreSQL supports scaleout, in-memory database,
multi-model capability, and in-database filesystem? That may be a
pipedream, but why do people have to tolerate the separation of the
relational-based data warehouse and Hadoop-based data lake?

[1] Robert Hundt. "Loop Recognition in C++/Java/Go/Scala".
Proceedings of Scala Days 2011

Regards
MauMau

I can not completely agree with it. I have done a lot of benchmarking of

PostgreSQL, CitusDB, SparkSQL and native C/Scala code generated for TPC-H
queries.
The picture is not so obvious... All this systems provides different
scalability and so shows best performance at different hardware
configurations.
Also Java JIT has made a good progress since 2011. Calculation intensive
code (like matrix multiplication) implemented in Java is about 2 times
slower than optimized C code.
But DBMSes are rarely CPU bounded. Even if all database fits in memory
(which is not so common scenario for big data applications), speed of
modern CPU is much higher than RAM access speed... Java application are
slower than C/C++ mostly because of garbage collection. This is why
SparkSQL is moving to off-heap approach when objects are allocated outside
Java heap and so not affecting Java GC. New versions of SparkSQL with
off-heap memory and native code generation show very good performance. And
high scalability always was one of the major features of SparkSQL.

So it is naive to expect that Postgres will be 4 times faster than
SparkSQL on analytic queries just because it is written in C and SparkSQL -
in Scala.
Postgres has made a very good progress in support of OLAP in last
releases: it now supports parallel query execution, JIT, partitioning...
But still its scalability is very limited comparing with SparkSQL. I am
not sure about GreenPlum with its sophisticated distributed query
optimizer, but
most of other OLAP solutions for Postgres are not able to efficiently
handle complex queries (with a lot of joins by non-partitioning keys).

I do not want to say that it is not possible to implement good analytic
platform for OLAP on top of Postgres. But it is very challenged task.
And IMHO choice of programming language is not so important. What is more
important is format of storing data. The bast systems for data analytic:
Vartica, HyPer, KDB,...
are using vertical data mode. SparkSQL is also using Parquet file format
which provides efficient extraction and processing of data.
With abstract storage API Postgres is also given a chance to implement
efficient storage for OLAP data processing. But huge amount of work has to
be done here.

Unfortunately, storage is one factor. For good performance columnar
storages needs different executor. Although smart columnar storage can get
very good compress ratio, so can has sense self.

Regards

Pavel

Show quoted text

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#29MauMau
maumau307@gmail.com
In reply to: Ashutosh Bapat (#25)
Re: I'd like to discuss scaleout at PGCon

From: Ashutosh Bapat

Keeping OIDs same across the nodes would require extra communication
between nodes to keep track of next OID, dropped OIDs etc. We need

to

weigh the time spent in that communication and the time saved during
parsing.

If we manage the system catalog for cluster-wide objects (tables,
indexes, databases, users, and almost all other objects) on one
central node, and separate the OID space for cluster-wide objects from
that for the node-local objects (temporary tables, tablespaces, and
what else?), we don't need to keep track of OIDs across nodes.

In XL, the data
node returns the data type names of the columns in the result set

to

the coordinator. Then the coordinator seemed to parse each data

type

name with base_yyparse() to convert the name to its OID on the
coordinator. That's why base_yyparse() appeared at the top in the
perf profile.

I do not understand, why do we need base_yyparse() to parse type

name.

We already have functions specifically for parsing object names.

Looking at the XL source code, the following sequence of functions are
called when the coordinator handles the Row Description message ('T')
from the data node. I guess the parsing is necessary to process type
names combined with type modifiers, e.g. "char(100)".

create_tuple_desc
parseTypeString
typeStringToTypeName
raw_parser

Regards
MauMau

#30MauMau
maumau307@gmail.com
In reply to: Michael Paquier (#24)
Re: I'd like to discuss scaleout at PGCon

From: Michael Paquier

Greenplum's orca planner (and Citus?) have such facilities if I

recall

correctly, just mentioning that pushing down directly to remote

nodes

compiled plans ready for execution exists here and there (that's not

the

case of XC/XL). For queries whose planning time is way shorter than

its

actual execution, like analytical work that would not matter much.

But

not for OLTP and short transaction workloads.

It seems that Greenplum does:

https://greenplum.org/docs/580/admin_guide/query/topics/parallel-proc.
html#topic1

"The master receives, parses, and optimizes the query. The resulting
query plan is either parallel or targeted. The master dispatches
parallel query plans to all segments,..."

while Citus doesn't:

https://docs.citusdata.com/en/v7.4/develop/reference_processing.html#c
itus-query-processing

"Next, the planner breaks the query into two parts - the coordinator
query which runs on the coordinator and the worker query fragments
which run on individual shards on the workers. The planner then
assigns these query fragments to the workers such that all their
resources are used efficiently. After this step, the distributed query
plan is passed on to the distributed executor for execution.
...
Once the distributed executor sends the query fragments to the
workers, they are processed like regular PostgreSQL queries. The
PostgreSQL planner on that worker chooses the most optimal plan for
executing that query locally on the corresponding shard table. The
PostgreSQL executor then runs that query and returns the query results
back to the distributed executor."

BTW, the above page states that worker nodes directly exchanges data
during query execution. Greenplum also does so among segment nodes to
join tables which are distributed by different key columns. XL seems
to do so, too. If this type of interaction is necessary, how would
the FDW approach do that? The remote servers need to interact with
each other.

"The task tracker executor is designed to efficiently handle complex
queries which require repartitioning and shuffling intermediate data
among workers."

Greenplum uses also a single-coordinator, multi-datanode instance.

That

looks similar, right?

Greenplum uses a single master and multiple workers. That's similar
to Citus. But Greenplum is not similar to VoltDB nor Vertica, since
those allow applications to connect to any node.

Our proprietary RDBMS named Symfoware, which is not based on
PostgreSQL, also doesn't have an extra hop, and can handle

distributed

transactions and deadlock detection/resolution without any special
node like GTM.

Interesting to know that. This is an area with difficult problems.

At

the closer to merge with Postgres head, the more fun (?) you get

into

trying to support new SQL features, and sometimes you finish with

hard

ERRORs or extra GUC switches to prevent any kind of inconsistent
operations.

Yes, I hope our deadlock detection/resolution can be ported to
PostgreSQL. But I'm also concerned like you, because Symfoware is
locking-based, not MVCC-based.

Regards
MauMau

#31MauMau
maumau307@gmail.com
In reply to: Simon Riggs (#26)
Re: I'd like to discuss scaleout at PGCon

From: Simon Riggs
On 5 June 2018 at 17:14, MauMau <maumau307@gmail.com> wrote:

Furthermore, an extra hop and double parsing/planning could matter

for

analytic queries, too. For example, SAP HANA boasts of scanning 1
billion rows in one second. In HANA's scaleout architecture, an
application can connect to any worker node and the node

communicates

with other nodes only when necessary (there's one special node

called

"master", but it manages the catalog and transactions; it's not an
extra hop like the coordinator in XL). Vertica is an MPP analytics
database, but it doesn't have a node like the coordinator, either.

To

achieve maximum performance for real-time queries, the scaleout
architecture should avoid an extra hop when possible.

Agreed. When possible.

When is it possible?

Two ways I know of are:

1. have pre-knowledge in the client of where data is located
(difficult to scale)
2. you must put data in all places the client can connect to (i.e.

multimaster)

Regarding 1, I understood you meant by "difficult to scale" that
whenever the user adds/removes a node from a cluster and data
placement changes, he has to change his application's connection
string to point to the node where necessary data resides.
Oracle Sharding provides a solution for that problem. See "6.1 Direct
Routing to a Shard" in the following manual page:

https://docs.oracle.com/en/database/oracle/oracle-database/18/shard/sh
arding-data-routing.html#GUID-64CAD794-FAAA-406B-9E20-0C35E96D3FA8

[Excerpt]
"Oracle clients and connections pools are able to recognize sharding
keys specified in the connection string for high performance data
dependent routing. A shard routing cache in the connection layer is
used to route database requests directly to the shard where the data
resides."

Perhaps there are more?

Please see 6.1.1 below. The application can connect to multiple nodes
and distribute processing without an extra hop. This is also an
interesting idea, isn't it?

https://docs.voltdb.com/UsingVoltDB/ChapAppDesign.php#DesignAppConnect
Multi

Regards
MauMau

#32Alvaro Herrera
alvherre@2ndquadrant.com
In reply to: Ashutosh Bapat (#25)
Re: I'd like to discuss scaleout at PGCon

On 2018-Jun-06, Ashutosh Bapat wrote:

On Tue, Jun 5, 2018 at 10:04 PM, MauMau <maumau307@gmail.com> wrote:

From: Ashutosh Bapat

In order to normalize parse trees, we need to at least replace
various OIDs in parse-tree with something that the foreign server
will understand correctly like table name on the foreign table
pointed to by local foreign table OR (schema qualified) function
names and so on.

Yes, that's the drawback of each node in the cluster having
different OIDs for the same object. That applies to XL, too.

Keeping OIDs same across the nodes would require extra communication
between nodes to keep track of next OID, dropped OIDs etc. We need to
weigh the time spent in that communication and the time saved during
parsing.

We already have the ability to give objects some predetermined OID, for
pg_upgrade.

Maybe an easy (hah) thing to do is use 2PC for DDL, agree on a OID
that's free on every node, then create the object in all servers at the
same time. We currently use the system-wide OID generator to assign the
OID, but seems an easy thing to change (much harder is to prevent
concurrent creation of objects using the arranged OID; maybe can reuse
speculative tokens in btrees for this). Doing this imposes a cost at
DDL-execution-time only, which seems much better than imposing the cost
of translating name to OID on every server for every query.

--
�lvaro Herrera https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#33MauMau
maumau307@gmail.com
In reply to: Alvaro Herrera (#32)
Re: I'd like to discuss scaleout at PGCon

From: Alvaro Herrera

Maybe an easy (hah) thing to do is use 2PC for DDL, agree on a OID
that's free on every node, then create the object in all servers at

the

same time. We currently use the system-wide OID generator to assign

the

OID, but seems an easy thing to change (much harder is to prevent
concurrent creation of objects using the arranged OID; maybe can

reuse

speculative tokens in btrees for this).

Would it mean that DDL execution requires all (primary) nodes to be
running? I don't say it's an immediate problem yet, but FYI, Oracle
Sharding records all DDL statements and re-send them to the down nodes
later.

Doing this imposes a cost at
DDL-execution-time only, which seems much better than imposing the

cost

of translating name to OID on every server for every query.

Agreed.

Regards
MauMau

#34MauMau
maumau307@gmail.com
In reply to: Alvaro Herrera (#32)
Re: I'd like to discuss scaleout at PGCon

From: Alvaro Herrera

Maybe an easy (hah) thing to do is use 2PC for DDL, agree on a OID
that's free on every node, then create the object in all servers at

the

same time. We currently use the system-wide OID generator to assign

the

OID, but seems an easy thing to change (much harder is to prevent
concurrent creation of objects using the arranged OID; maybe can

reuse

speculative tokens in btrees for this).

Would it mean that DDL execution requires all (primary) nodes to be
running? I don't say it's an immediate problem yet, but FYI, Oracle
Sharding records all DDL statements and re-send them to the down nodes
later.

Doing this imposes a cost at
DDL-execution-time only, which seems much better than imposing the

cost

of translating name to OID on every server for every query.

Agreed.

Regards
MauMau

#35Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: MauMau (#29)
Re: I'd like to discuss scaleout at PGCon

On Wed, Jun 6, 2018 at 8:16 PM, MauMau <maumau307@gmail.com> wrote:

From: Ashutosh Bapat

Keeping OIDs same across the nodes would require extra communication
between nodes to keep track of next OID, dropped OIDs etc. We need

to

weigh the time spent in that communication and the time saved during
parsing.

If we manage the system catalog for cluster-wide objects (tables,
indexes, databases, users, and almost all other objects) on one
central node, and separate the OID space for cluster-wide objects from
that for the node-local objects (temporary tables, tablespaces, and
what else?), we don't need to keep track of OIDs across nodes.

I think that will lead to many more network trips to the central node
in order to fetch OIDs of various objects. We could reduce that by
using node local caches but still invalidation messages will eat some
bandwidth. The network trips in this case may be more than what are
required for keeping track of OID space across nodes. Do you see
something like this in similar other products?

In XL, the data
node returns the data type names of the columns in the result set

to

the coordinator. Then the coordinator seemed to parse each data

type

name with base_yyparse() to convert the name to its OID on the
coordinator. That's why base_yyparse() appeared at the top in the
perf profile.

I do not understand, why do we need base_yyparse() to parse type

name.

We already have functions specifically for parsing object names.

Looking at the XL source code, the following sequence of functions are
called when the coordinator handles the Row Description message ('T')
from the data node. I guess the parsing is necessary to process type
names combined with type modifiers, e.g. "char(100)".

create_tuple_desc
parseTypeString
typeStringToTypeName
raw_parser

Hmm, strange. I had not seen that in Postgres-XC.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#36Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Alvaro Herrera (#32)
Re: I'd like to discuss scaleout at PGCon

On Wed, Jun 6, 2018 at 11:46 PM, Alvaro Herrera
<alvherre@2ndquadrant.com> wrote:

On 2018-Jun-06, Ashutosh Bapat wrote:

On Tue, Jun 5, 2018 at 10:04 PM, MauMau <maumau307@gmail.com> wrote:

From: Ashutosh Bapat

In order to normalize parse trees, we need to at least replace
various OIDs in parse-tree with something that the foreign server
will understand correctly like table name on the foreign table
pointed to by local foreign table OR (schema qualified) function
names and so on.

Yes, that's the drawback of each node in the cluster having
different OIDs for the same object. That applies to XL, too.

Keeping OIDs same across the nodes would require extra communication
between nodes to keep track of next OID, dropped OIDs etc. We need to
weigh the time spent in that communication and the time saved during
parsing.

We already have the ability to give objects some predetermined OID, for
pg_upgrade.

True. But that's only for a database not in action. We are talking
about database in action. Assigning a predetermined OID is just one of
and possibly the smallest thing in the bigger picture.

Maybe an easy (hah) thing to do is use 2PC for DDL, agree on a OID
that's free on every node, then create the object in all servers at the
same time. We currently use the system-wide OID generator to assign the
OID, but seems an easy thing to change (much harder is to prevent
concurrent creation of objects using the arranged OID; maybe can reuse
speculative tokens in btrees for this). Doing this imposes a cost at
DDL-execution-time only, which seems much better than imposing the cost
of translating name to OID on every server for every query.

This works if we consider that all the nodes are up always. If a few
nodes are down, the rest of the nodes need to determine the OID and
communicate it to the failed nodes when they come up. That's easier
said than done. The moment we design something like that, we have to
deal with split brain problem. Two sets of nodes which think the other
set is down, will keep assigning OIDs that they think are OK and later
see the conflicts when communicating the assigned OIDs.

Not that we can not implement something like this, but it is a lot of
work. We will need to be careful to identify the cases where the
scheme will fail and plug all the holes.

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#37Michael Paquier
michael@paquier.xyz
In reply to: Ashutosh Bapat (#35)
Re: I'd like to discuss scaleout at PGCon

On Thu, Jun 07, 2018 at 10:28:15AM +0530, Ashutosh Bapat wrote:

On Wed, Jun 6, 2018 at 8:16 PM, MauMau <maumau307@gmail.com> wrote:

Looking at the XL source code, the following sequence of functions are
called when the coordinator handles the Row Description message ('T')
from the data node. I guess the parsing is necessary to process type
names combined with type modifiers, e.g. "char(100)".

create_tuple_desc
parseTypeString
typeStringToTypeName
raw_parser

Hmm, strange. I had not seen that in Postgres-XC.

Where is that located in the XC code? If you point out to the location
it may revive some past memories from either Ashutosh or me.
--
Michael

#38Ashutosh Bapat
ashutosh.bapat@enterprisedb.com
In reply to: Michael Paquier (#37)
Re: I'd like to discuss scaleout at PGCon

On Thu, Jun 7, 2018 at 10:53 AM, Michael Paquier <michael@paquier.xyz> wrote:

On Thu, Jun 07, 2018 at 10:28:15AM +0530, Ashutosh Bapat wrote:

On Wed, Jun 6, 2018 at 8:16 PM, MauMau <maumau307@gmail.com> wrote:

Looking at the XL source code, the following sequence of functions are
called when the coordinator handles the Row Description message ('T')
from the data node. I guess the parsing is necessary to process type
names combined with type modifiers, e.g. "char(100)".

create_tuple_desc
parseTypeString
typeStringToTypeName
raw_parser

Hmm, strange. I had not seen that in Postgres-XC.

Where is that located in the XC code? If you point out to the location
it may revive some past memories from either Ashutosh or me.

I think the path will exist in XC as well since that's regular
PostgreSQL path, but I didn't see it being a hot path in XC. So, we
will need to find the workload/cases where it's a hot path.

--
Michael

--
Best Wishes,
Ashutosh Bapat
EnterpriseDB Corporation
The Postgres Database Company

#39Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Michael Paquier (#37)
RE: I'd like to discuss scaleout at PGCon

From: Michael Paquier [mailto:michael@paquier.xyz]

On Wed, Jun 6, 2018 at 8:16 PM, MauMau <maumau307@gmail.com> wrote:

Looking at the XL source code, the following sequence of functions
are called when the coordinator handles the Row Description message
('T') from the data node. I guess the parsing is necessary to
process type names combined with type modifiers, e.g. "char(100)".

create_tuple_desc
parseTypeString
typeStringToTypeName
raw_parser

Hmm, strange. I had not seen that in Postgres-XC.

Where is that located in the XC code? If you point out to the location
it may revive some past memories from either Ashutosh or me.

The XL-specific code path is this in src/backend/pgxc/pool/execRemote.c (I don't know this also exists in XC):
handle_response -> HandleRowDescription -> create_tuple_desc

I think the rest exists in PostgreSQL:
parseTypeString -> typeStringToTypeName -> raw_parser

Regards
Takayuki Tsunakawa

#40Tsunakawa, Takayuki
tsunakawa.takay@jp.fujitsu.com
In reply to: Konstantin Knizhnik (#27)
RE: I'd like to discuss scaleout at PGCon

From: Konstantin Knizhnik [mailto:k.knizhnik@postgrespro.ru]
I can not completely agree with it. I have done a lot of benchmarking of
PostgreSQL, CitusDB, SparkSQL and native C/Scala code generated for
TPC-H queries.

Wow, you have an amazingly abundant experience.

I do not want to say that it is not possible to implement good analytic
platform for OLAP on top of Postgres. But it is very challenged task.
And IMHO choice of programming language is not so important. What is
more important is format of storing data. The bast systems for data
analytic: Vartica, HyPer, KDB,...
are using vertical data mode. SparkSQL is also using Parquet file format
which provides efficient extraction and processing of data.
With abstract storage API Postgres is also given a chance to implement
efficient storage for OLAP data processing. But huge amount of work has
to be done here.

Agreed on huge amount of work... And I must admit my dream is a pipedream now.

Regards
Takayuki Tsunakawa

#41Bruce Momjian
bruce@momjian.us
In reply to: Merlin Moncure (#12)
Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 1, 2018 at 11:29:43AM -0500, Merlin Moncure wrote:

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is at.
I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia of
engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that in
many spheres.

The direction of the project is sound and we are on the cusp of the
point where multiple independent coalescing features (FDW, logical
replication, parallel query, executor enhancements) will open new
scaling avenues that will not require trading off the many other
benefits of SQL that competing contemporary solutions might. The
broader development market is starting to realize this and that is a
major driver of the recent upswing in popularity. This is benefiting
me tremendously personally due to having gone 'all-in' with postgres
almost 20 years ago :-D. (Time sure flies) These are truly
wonderful times for the community.

I am coming in late, but I am glad we are having this conversation. We
have made great strides toward sharding while adding minimal
sharding-specific code. We can now see a time when we will complete the
the minimal sharding-specific code tasks. Once we reach that point, we
will need to decide what sharding-specific code to add, and to do that,
we need to understand which direction to go in, and to do that, we need
to know the trade-offs.

While I am glad people know a lot about how other projects handle
sharding, these can be only guides to how Postgres will handle such
workloads. I think we need to get to a point where we have all of the
minimal sharding-specific code features done, at least as
proof-of-concept, and then test Postgres with various workloads like
OLTP/OLAP and read-write/read-only. This will tell us where
sharding-specific code will have the greatest impact.

What we don't want to do is to add a bunch of sharding-specific code
without knowing which workloads it benefits, and how many of our users
will actually use sharding. Some projects have it done that, and it
didn't end well since they then had a lot of product complexity with
little user value.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#42Merlin Moncure
mmoncure@gmail.com
In reply to: Bruce Momjian (#41)
Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 22, 2018 at 12:34 PM Bruce Momjian <bruce@momjian.us> wrote:

On Fri, Jun 1, 2018 at 11:29:43AM -0500, Merlin Moncure wrote:

FWIW, Distributed analytical queries is the right market to be in.
This is the field in which I work, and this is where the action is at.
I am very, very, sure about this. My view is that many of the
existing solutions to this problem (in particular hadoop class
soltuions) have major architectural downsides that make them
inappropriate in use cases that postgres really shines at; direct
hookups to low latency applications for example. postgres is
fundamentally a more capable 'node' with its multiple man-millennia of
engineering behind it. Unlimited vertical scaling (RAC etc) is
interesting too, but this is not the way the market is moving as
hardware advancements have reduced or eliminated the need for that in
many spheres.

The direction of the project is sound and we are on the cusp of the
point where multiple independent coalescing features (FDW, logical
replication, parallel query, executor enhancements) will open new
scaling avenues that will not require trading off the many other
benefits of SQL that competing contemporary solutions might. The
broader development market is starting to realize this and that is a
major driver of the recent upswing in popularity. This is benefiting
me tremendously personally due to having gone 'all-in' with postgres
almost 20 years ago :-D. (Time sure flies) These are truly
wonderful times for the community.

While I am glad people know a lot about how other projects handle
sharding, these can be only guides to how Postgres will handle such
workloads. I think we need to get to a point where we have all of the
minimal sharding-specific code features done, at least as
proof-of-concept, and then test Postgres with various workloads like
OLTP/OLAP and read-write/read-only. This will tell us where
sharding-specific code will have the greatest impact.

What we don't want to do is to add a bunch of sharding-specific code
without knowing which workloads it benefits, and how many of our users
will actually use sharding. Some projects have it done that, and it
didn't end well since they then had a lot of product complexity with
little user value.

Key features from my perspective:
*) fdw in parallel. how do i do it today? ghetto implemented parallel
queries with asynchronous dblink

*) column store

*) automatic partition management through shards

probably some more, gotta run :-)

merlin

#43Joshua D. Drake
jd@commandprompt.com
In reply to: Merlin Moncure (#42)
Re: I'd like to discuss scaleout at PGCon

On 06/22/2018 11:28 AM, Merlin Moncure wrote:

Key features from my perspective:
*) fdw in parallel. how do i do it today? ghetto implemented parallel
queries with asynchronous dblink

*) column store

Although not in core, we do have this as an extension through Citus
don't we?

JD

--
Command Prompt, Inc. || http://the.postgres.company/ || @cmdpromptinc
*** A fault and talent of mine is to tell it exactly how it is. ***
PostgreSQL centered full stack support, consulting and development.
Advocate: @amplifypostgres || Learn: https://postgresconf.org
***** Unless otherwise stated, opinions are my own. *****

#44Bruce Momjian
bruce@momjian.us
In reply to: Merlin Moncure (#42)
Re: I'd like to discuss scaleout at PGCon

On Fri, Jun 22, 2018 at 01:28:58PM -0500, Merlin Moncure wrote:

On Fri, Jun 22, 2018 at 12:34 PM Bruce Momjian <bruce@momjian.us> wrote:

What we don't want to do is to add a bunch of sharding-specific code
without knowing which workloads it benefits, and how many of our users
will actually use sharding. Some projects have it done that, and it
didn't end well since they then had a lot of product complexity with
little user value.

Key features from my perspective:
*) fdw in parallel. how do i do it today? ghetto implemented parallel
queries with asynchronous dblink

Andres has outlined what needs to be done here:

/messages/by-id/20180525033538.6ypfwcqcxce6zkjj@alap3.anarazel.de

*) column store

This could be part of the plugable storage engine.

*) automatic partition management through shards

Yes, but I am afraid we need to know where we are going before we can
implement management.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#45Haribabu Kommi
kommi.haribabu@gmail.com
In reply to: Bruce Momjian (#44)
Re: I'd like to discuss scaleout at PGCon

On Sat, Jun 23, 2018 at 12:17 PM Bruce Momjian <bruce@momjian.us> wrote:

On Fri, Jun 22, 2018 at 01:28:58PM -0500, Merlin Moncure wrote:

On Fri, Jun 22, 2018 at 12:34 PM Bruce Momjian <bruce@momjian.us> wrote:

What we don't want to do is to add a bunch of sharding-specific code
without knowing which workloads it benefits, and how many of our users
will actually use sharding. Some projects have it done that, and it
didn't end well since they then had a lot of product complexity with
little user value.

Key features from my perspective:
*) fdw in parallel. how do i do it today? ghetto implemented parallel
queries with asynchronous dblink

Andres has outlined what needs to be done here:

/messages/by-id/20180525033538.6ypfwcqcxce6zkjj@alap3.anarazel.de

Sorry if this was already been discussed in up-thread.

Just I would like to bring out idea scale out by adding many instances that
can share the lock and buffer pool manager with all the instances with
the help of Remote direct memory access.

By adding pluggable buffer pool and lock manager, how about adding
many instances and all share the buffers using RDMA to provide
better scaling with shared everything.

Currently I didn't know have any idea whether is it possible or not and also
the problems in using RDMA.

Just want to check whether is it worth idea to consider in supporting scale
out?

Regards,
Haribabu Kommi
Fujitsu Australia

#46Bruce Momjian
bruce@momjian.us
In reply to: Haribabu Kommi (#45)
Re: I'd like to discuss scaleout at PGCon

On Sat, Jun 23, 2018 at 12:41:00PM +1000, Haribabu Kommi wrote:

On Sat, Jun 23, 2018 at 12:17 PM Bruce Momjian <bruce@momjian.us> wrote:

On Fri, Jun 22, 2018 at 01:28:58PM -0500, Merlin Moncure wrote:

On Fri, Jun 22, 2018 at 12:34 PM Bruce Momjian <bruce@momjian.us> wrote:

What we don't want to do is to add a bunch of sharding-specific code
without knowing which workloads it benefits, and how many of our users
will actually use sharding.� Some projects have it done that, and it
didn't end well since they then had a lot of product complexity with
little user value.

Key features from my perspective:
*) fdw in parallel.� how do i do it today? ghetto implemented parallel
queries with asynchronous dblink

Andres has outlined what needs to be done here:

� � � � https://www.postgresql.org/message-id/
20180525033538.6ypfwcqcxce6zkjj%40alap3.anarazel.de�

Sorry if this was already been discussed in up-thread.

Just I would like to bring out idea scale out by adding many instances that
can share the lock and buffer pool manager with all the instances with
the help of Remote direct memory access.

By adding pluggable buffer pool and lock manager, how about adding
many instances and all share the buffers using RDMA to provide
better scaling with shared everything.

Currently I didn't know have any idea whether is it possible or not and also
the problems in using RDMA.�

Just want to check whether is it worth idea to consider in supporting scale
out?

Yes, Robert Haas did mention this. It might be something we consider
much later.

--
Bruce Momjian <bruce@momjian.us> http://momjian.us
EnterpriseDB http://enterprisedb.com

+ As you are, so once was I.  As I am, so you will be. +
+                      Ancient Roman grave inscription +
#47tsunakawa.takay@fujitsu.com
tsunakawa.takay@fujitsu.com
In reply to: Bruce Momjian (#46)
1 attachment(s)
RE: I'd like to discuss scaleout at PGCon

Hello, hackers

I'm very sorry to have left this thread for a long time. I've come out of hibernation, pushed by the need. Please let me resume the discussion on the scale-out design.

I'll read this thread and related ones again to refresh my memory, and I'd like to continue to assemble ideas and opinions in the following wiki page:

Scaleout Design - PostgreSQL wiki
https://wiki.postgresql.org/wiki/Scaleout_Design

I know there are lots of topics to decide in order to formulate the architectural design and functional specification. To get the most with minimal waste of efforts, I think we need to clarify what we want to achieve. Some of the most important topics are:

* What workloads do we target? Does Postgres give up on data warehousing capability that's comparable with existing products and cloud services?

* What architecture(s) do we want? Shared nothing, shared disk, a combination of them, or a totally new one.

* FDW or non-FDW approach? (as Simon and I mentioned in this thread, I don't think FDW is suitable for the scale-out, although we should try to reuse the code in postgres_fdw.)

From: Bruce Momjian <bruce@momjian.us>

On Sat, Jun 23, 2018 at 12:41:00PM +1000, Haribabu Kommi wrote:

Just I would like to bring out idea scale out by adding many instances that
can share the lock and buffer pool manager with all the instances with
the help of Remote direct memory access.

By adding pluggable buffer pool and lock manager, how about adding
many instances and all share the buffers using RDMA to provide
better scaling with shared everything.

Currently I didn't know have any idea whether is it possible or not and also
the problems in using RDMA.

Just want to check whether is it worth idea to consider in supporting scale
out?

Yes, Robert Haas did mention this. It might be something we consider
much later.

I said that we wouldn't need shared disk scale-out at or around PGCon developer unconference 2018. But after that, I realized Oracle RAC users want shared disk scale-out for Postgres.

So, I wrote about the comparison of shared nothing and shared disk, and the rough design of shared disk scale-out as in the attached PDF file (I also attached it in the above wiki.) The attached file is what I used in PostgreSQL conference Japan 2019 to ask about how many users want shared disk scale-out. 25 out of 53 participants raised their hands to show their feelings of "want it" or "good to have." That was much more people than I had expected.

On the other hand, as I questioned in the last slide of the presentation, I'm not sure if we really need shared disk scale-out in this era that really powerful machines are available even on public clouds. Should we skip shared disk scale-out and just pursue single-node scale-up and shared nothing scale-out?

Amazon Aurora as an Alternative to Oracle RAC
https://aws.amazon.com/jp/blogs/database/amazon-aurora-as-an-alternative-to-oracle-rac/

"Stepping back and looking at the bigger picture, Amazon Aurora introduces a simplified solution that can function as an Oracle RAC alternative for many typical OLTP applications that need high performance writes, scalable reads, very high levels of high availability with lower operational overhead."

Migration Complete -- Amazon’s Consumer Business Just Turned off its Final Oracle Database | AWS News Blog
https://aws.amazon.com/jp/blogs/aws/migration-complete-amazons-consumer-business-just-turned-off-its-final-oracle-database/

Could you have a look at my presentation and give your opinion on whether we want shared disk scale-out for Postgres?

Regards
Takayuki Tsunakawa

Attachments:

PostgreSQL_shared_disk_scaleout_EN.pdfapplication/pdf; name=PostgreSQL_shared_disk_scaleout_EN.pdfDownload
%PDF-1.7
%����
1 0 obj
<</Type/Catalog/Pages 2 0 R/Lang(ja-JP) /StructTreeRoot 152 0 R/MarkInfo<</Marked true>>/Metadata 2862 0 R/ViewerPreferences 2863 0 R>>
endobj
2 0 obj
<</Type/Pages/Count 34/Kids[ 3 0 R 12 0 R 21 0 R 23 0 R 34 0 R 36 0 R 44 0 R 46 0 R 53 0 R 55 0 R 63 0 R 69 0 R 71 0 R 73 0 R 75 0 R 77 0 R 79 0 R 81 0 R 83 0 R 85 0 R 87 0 R 89 0 R 91 0 R 93 0 R 95 0 R 113 0 R 131 0 R 133 0 R 135 0 R 137 0 R 139 0 R 141 0 R 143 0 R 149 0 R] >>
endobj
3 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image6 6 0 R>>/Font<</F1 7 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 4 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 0>>
endobj
4 0 obj
<</Filter/FlateDecode/Length 5724>>
stream
x��\]o%��}����W���?� @��
���L�A�ky��5��h���_V�*�����~���)V���bU������=��psz\>����./�b��������Y����������������Wqy����.o�7����������E��z�%�9����(�W�1���Z{�i9���}��6-/����!����c*���h�r�"d����kdB��9]e
��3����9�S	!���)2��Q��F���#7{�90�~�&yS�i����%0j���!2�;nn��@�3�����XI���G&�2A��_Ob���c�]�����9@)6*R5��9P��h�(�v�Y5�t.�^������M��D��e +���jt���	;�X�Y�[�c���"����;��f���p��a;3*��0�Pa�@�4�GdY~�:{s�[Zd���=�_����LZ�
x�@s������I�z�6��a�,�d
�.�:�sBd����zt�7n���c�l#aN������c�R�V�WD���6K�C�m(a�KNL�c�����?��T){H�������LvW�=43;�;k��~b�"�Z4h�X�����
����
Wb��G^o�9�:
���]����]#��{�tZ17_�hLl��k#��k���d��-�C�����w7E����M9FV�RRf��i
� a�����;�&Fp��n2��@L��	��{VC� ���
�TO���G��Q�^�@Vb��6���m$RD&�	��������qk�Wc1@��r�J�@S�x�RVP:"w�Y<�6Cp�VzF�Vx��}`�$�g1Y�"F�_L�q	�Ol^v��M�A=�����V�J&~H$�h0�����4�Q�2-��E>���Vt� SG����m���#FZwz:�gV|���=��5kFs���1��-08i��egu=j���� @����&N���VZ���$nP�3=���Z��Z����\JO�Q�ee���V���0I�mC��y��U�Cr�����~Z���F�����wZ�:����*�����O�������AA6o���H��a%���j�p�����C%^��*$TxD�������f���F��f_G|(�k���C3���9,��yW#���@�E��E����SNBk�P�Q�-�f�	�n�$����[��I�y�a�_
:rd��"$wct60�[��Y�@*o'�V��cBQ%0�"���H]}C�b��t�3]!�w�A�q7����,y�:=���	�M������N`��� N6N��"-�����$7g���"#�WO�/l��$��YM)����F"F�����U�6�9�Lx�p	��'���[4 y�����-!���J�]y>�x��QF6��Nc�?�J�����,[�7�(�79����nF���j
��p�8\��L����6� ���A��[*�4$�]�Z��n��Q4���R)�8C�3	������)�V�� �{{,�jl�o��IcE7l|�E��2J��m�H$/S ��T��fn��]��}O{�+��
�*fm���bZ���l��gt�m�A����V2�
�HRR�<
��m����	(Q�%�vL �n��$X�?����eM��sU��A�P����TP�#����-��D��B]0��'e{���Y�����E���M+K��=?
deZ`���{��BJ=��g���MM=��Zdk�;o����4!'��!�W�I�U^�4��qFy5i��g�[�7p�0�of�:M�(/� f��1�y����?Wo_���y-�=�f���'5��Y��7i�&s�X{��S��Mb��g �)����-�����D�<Z��p��Q�-I&��*��`E?��olk����9�d	*�:������r�����B��j^8�`�����K��p	��;��&���E�X�3��n1�'����/����R�i�W�6��aC�m�`��	��n=8?������R��#4O�����Z/��v����UP���W%�=��Sg�QW4��AC��_��o+I�D��E�����R��A��4w�v��8����"�	� T����4R��+�5�������#���Re3v/i���X�����Oe���L���iZH�(6�����EcQ�0���O%.�L��y���l�ig�P�Utf.Z"��MC�������� c��41c3�	fN�l��xC�AJTf��XVT��P\mmH��N��g��x.�t>�4�m$�\��nM�4^����YV��bE?��n%��Fn�*���^o���h������h��Z��}^4Z��p��g�R��m����F)��;G��;w���`�}�D��D�*��$*�"���P��eF@4"�R�����z�Y5��!��D��$���F�c
�^�5@&��iE�X�����HT	���QT���������AD�����q�iX/O$����T��g������X��23YS���uA/NCUj�qhy?�D?���x��P�b�A_�H���O���2����.�@8e����G�cV����v�i����zzrJ/��6�e[�^r����� ��N`el#�Y�Pw,!�u�q�b�&�Z�[��i��St��V_�
&��h�7$UO�	��'���{�(
������#T<�>
O(=O��,D�KR���w\��U����{BA�*�0V=�e�]�z�
/-������0���&�0u�IK8��*P�����(5q�{��*�=�>(I���*������$�N$������l�L]E�zFaN^�P�O��{�A���<6�s���XTEB�Y�C���0�iE��H~K������z�
m����%!�T� f����-��I�=�n#f�r��/��Y���m$�)��[Hd��y�$�K��b	��)e��
K�u�T9���E��(c������r�i�d�9��������6���yS�&��d�eIm�F��H����^��q_�H�k���3c��/�F��Y ����9i<��m$=�a�;Hd�����D9t��A��f��\�$;�^=ag���d�Y���N����:�y�I;H���=c�Y��N3\7��l�q�NH��Q�m��n:����=����8]�'p�M�����;�P��!gl7�]%����C��8]o�A,�NDX�p����Ra;��'�W�K�����l������V%}��I��=���{������&f5�mtz*�3���q�Pp�&�;�41#��A�lU���V������/��<8G�Akf2�b4��S�����T�a�O��3�	$��S�F�A�J?��u:+�J�Xs�	� �L��H��&��=N��t_,���g[��G>\����.ud�I
�����r�����P���
��l�8���<�9q�z1��.�m�+���*�b73�~�����p��D��]������������N�6R)�h�F�\T�A33ns�	��X��U�����
�.�BqN�(9�����c>�mn!�p��iX����RuY7���W�=w�X��B��s�3L�z�N9�����I>(�:�������R4���K[�U2�*����u�I7����g�
����>����<�5��-U
�PR%y�hPw�
�Pi�@�((E������!��z ����EkdV�D�A��A�z@������r����qTU}�6�@�J���>��������Z���HR�j��A#��5OOJ�ot5(�{#�$j�z�`(��Ge���F�"O�
CU����k5!��%�����iG��N3_��Ckfr�
��#o�P�O�O�j��c	�������JU�Ak	�T��Ec'OPyrU��k��\5&G��DY
�F���s6F��{hb�\`��{(�W���E�_���.��y���$���I5�wb5��O�$�WF��udtj)|�iB9w�nH�T�+HW�;�{���x�2��UL
N
Q&1BIk�d8 P��l���{0��S��|�E���iI���RZs�13��(�a���r�2J��H���	^#�v��:]!����s��jG�P�L��Y�.1#�w��9�4g����P���F��B��
����+O��������4[�1TEk"T��r�9�bI����g�n�j����F���U}*�������W���yr����P�H*�$�6[>,6u�Z7��U�An��h-�$��R�O��c3Iz59����D��"'
cp�3t���R��2E���KA��b:,j���2�6�<���w�k��s=	 *���D�7��ib��:�L����������W<Re��`����6`N����-0s�U�=t����,���&�YV4n��3�
�=�f6��F����+��������3�����:b����d���_�V�F��O���a��35�i�>b����T�����`�/{hf�%���P?�9�����@�
ev�+�i)����E�����)����wT����1s��F�k����G����S����.��B���h�Fg����_P5�8�z�8�-��3��O��G7gJ	�s��-t�9��M�BJ��r���T��yM���v���.d�e�d�k�\m���3���;#�L#�C����w3�*"��P�n�
���gj81���
: �=t�������L�����=41S>��G�RjRq)H
���Rxc��UFu�Y	��v����](���d������0�w�f���1��!b��|���C���u�������Y[F3���QAn�3���f&���l���W�����(�
���N3{D-�O���$%�-b��	RN$Lw
���K��b�p���n4;�����@�g!@�=�f.��?�13>���mt��O��{:R1@H�������� mP���+�zme{��LK&��S0���Z3��f[�}�,��ND�����=a:&�yq����1�b��uz2�bS�=e��7�����d���?
*�t�D��P
� �;��� �.��'�
&e&<�e1���`g;.��-��+j	�2s���$�<&�w3�:"1��i������MYjz��9������w�<29�eh&�,\PU�&��{����V.m�p��S�(����5:=��'1x��n��������������^�o��z�&����?�������/��43Nay���8�+nv�?�G�my}/;���WU���W�?|������+�}����o������������E���hg%�Xj]4������??�r��qy����;,W�����w��/����iy����A��!h|@�!��gD���m�U���"��B8�5a�7�$���!d!���W����f@��}�\Ys����?�G����o[��4���V.l?��M���{�
��������}L������'��UI���|y��$�Y��y{�����U<��m�z�5���������Fxx����wTg�K��#q_��t�M���H�����=��mk���3�X������������~�������?�_�����w7o���<�=��~����D��������:�W(�]-'��0�����|���U:�v���]���l�Q������m�T�_^����������W/����Z���oWk��o���/���x^�?PNy:��[p�Gg�G�������~Q�
endstream
endobj
5 0 obj
<</Type/ExtGState/BM/Normal/ca 1>>
endobj
6 0 obj
<</Type/XObject/Subtype/Image/Width 1500/Height 612/ColorSpace/DeviceRGB/BitsPerComponent 8/Filter/DCTDecode/Interpolate true/Length 23917>>
stream
����JFIF�����ExifMM*bj(1r2��i����Adobe Photoshop 7.02010:07:22 11:35:32������d($�HH����JFIFHH��Adobe_CM��Adobed����			



��4�"����?	
	
3!1AQa"q�2���B#$R�b34r��C%�S���cs5���&D�TdE��t6�U�e�����u��F'���������������Vfv��������7GWgw��������5!1AQaq"2����B#�R��3$b�r��CScs4�%���&5��D�T�dEU6te������u��F���������������Vfv��������'7GWgw�������?�eH5����T��#
����\�Bd�D	��
I<%2p��$�IVI<&I����(���aFSL�J���LJuQG���� �(T-����BhRH�Iw��}|RI\+BhR!2KX���(��,Tg���t��80L�Y����)�%"�,RkcR�
g�"R\W����:�?����������_��}d��?����R�������?������.�u_���e�������s���h��?������}���?��g�L���n>������`������G����%���O�����������u?���f��?����7�6�Y�v��t������������������.���_��q�������k���q�������9v,�ys�X���JK�����G������I����������O��G�]������^Q;|U���������O��H�O��q��������b��`��#���P%ug�Z�i���t��5����}a��+3f���x�6{����M��
��a����'����T���$������$������$������$������$������$������$�����}�����7��_���W�������i$��������C		

 $.' ",#(7),01444'9=82<.342��C			

2!!22222222222222222222222222222222222222222222222222��d�"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�c��i(=O����}�QE�p�����Z)(�����
(���3Fh��..h����E%�����EP�E��)(����qh����Ep9�`}��
EF��$�������g��E��c���zQIE"��Q�%���(��(�.QI@���4P�IE-�P�IE-���0���������AQ�a�:���9�IE�%d-%PEPEP���Q@Q@��(��(��(����QEQEQEQEQI@EPEPEPEPEP�IE4�Q@Fi(�b��J(h��(����f��(�Q@Q@E%�RQ@\Z)(�b�IE�J(����4QEQEQIK@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@PN#��Z)��v%����(��(���Z%��J(��
)qI@Q@-���4Q@I���
(������E%QE�"}����#���L���IJz��%3�)i(�b�IFiZ(���QE�E�������IEqsE%Z)(������IFhi(��
(��3R����(*0��'f�#���?8Q�JF�����`RQIAm�\��J(�����
(���(�QI@E%��Q@Q@�QE�QER�����.9o��sE�c�<`t���F�
(��Q@Q@Q@Q@Q@Q@Q@��(��(��(��(��JZJZ(��J(��(QE�RQ@EPEPEPEPEPEPEPEP�IE�J(h����J(h��1F)(��(��)s@	E.i(QKE%Q@��(�aEPKIE-Q@��(�aEPEP
(��
(���QEQES	��c�Si�'�u'JJ($Z)3K�Z�QK���IA�P����4
-��R�J(��S��PGz3Fh)sE%QE
JZJ`QEQE 
�>��Q����LLa�~���~���Ah����EPE��RQ@����@��%�RQ�Z)3K�C�QI�3@\ZJ3E�QJ��x ��s�(4�9KR0	85 ��O�jJW7�8��^�`RRR�-���JZb
JZ(��Q@	E-%�RQEQ@Q@Q@��)(��(��r�>������d�
x���8���`��QEQ@Q@Q@Q@Q@��(��(��(��(��(��J(��(��(i(��
(��\(��(��(��Z(��
(��
(��
(��
(��
(����(��(��(QEQEQEQEQEQEQEQEQEQEQEQIK@��(�aEPEPEP ��(R���Z)(����Z)(��'���M17dQE���(��(��@QE��(��(s@4�P�(��
(��
(��Q@	E��Z(���QE
(��
JZ(*D���)�������E���S8������IE�J(i(�-%��QKI@��(��(��z�������d��W5�=�"X��*A/_����)\�0�|���E����QEQE�QEQEQE
m-%2dQE�Q@QL�J(QE�(���<azr}h.���[��'4�R:QVAEPEPEPEPEPEPEP ��(���Z)(�����
(���(�B�IEQE
(��Q@Q@R�R�EQEQE
ZJ(��Q@��(��(��(��(��(��(��(���I@����ZJ(������IK�JZ(����PE&(�QE��PEP�(��
(���EQE(����E-(��RsA8�~4���k�:QIE36�-�P ��(QKE �Z)���Q@QH�(��(��(�IKI@-PR�Q@%-�QERR�E%�RQ@���O����C����?ZJS��i(8��(�aEPEP0��(��(��%=cf���h*1rvCsJc�&�(��l+����21���)���QH�)G�AER��(��(���(��(��!���(��`!��4���EPHRR�LBQKFh(������Jp^��J_sE+��md.{%R5
(��
(��
(��
(��Q@Q@Q@Q@��(���PQKEQEQE%�PQKE%Q@-PIE(��QEQE-%�P!(����(��(��(��(��(��(��)(����IEQE��R�ih��b�(��(��Z)(����Z)(����1F(���QEQEQEQEQEQ�(�B�IG��`N�6�rsITD�����	�J(i)h�bQKE%.i(��4RP�IK@RP�IE-�PEPEPQE-%Q@Q@h��(��(��*H���Q�����L��?ZJS����-�P1h����J(h��,y<}jE�G_���F����X�	�'��>�/���IJ�����W�����������QEQEQEQE�)(��QL�(�EPEP ����4QEQ�QE(���
(��<(y4J{<�;8)	����G`��)QE
(��
(��
(��
(��
(��
(��Q@Q@Q@Q@Q@��(��(��)h(����R�b�
(�.((��(��QEQE��PEPEPEPEPEP ��(��ZJ(��
(���ZJQEf�)�R�QHB�QE-�P�QEQEQE
(��
(��
(��
(��
(��
(��
(��
(��
(��
k����8�6�'�(��
(��
(���R�R�Q@E%-%Q@IE�RQ@IKI@��ZJ(��))h�����IE�
(���ZJ(��(���4����u"t�h"?x�i(=O��gQNX��-H ��~�H���D4�����������ii\�8x����G��)���
Z)\�)G�V
(����(�AEPIKE%QL�(��)(h����3E%��QEJ(��
(��=��������x�	NO'�J_sFh��(����QH�(��(��(��(��(��(��R�@	EPE-�R�@	EP ��(��(��(����
(��
ZJ(�RQ@EPE�QKE�R�R��(��(���(����Z((��(��QEQE
(��
(��
(��
)3Fh��)�(��@QE1Q@��������E-��Q@qE
(�4�(����)(h��))i(��)�QER������4�rsBvAES3
(��
(��
(���Q@IEQE-%-%Z(������
))h�����(��J(��(��(�QEQE0
JZJZJ(������u"}���0����� E^�?q���ISsX�1�PQE{�Q@��(�0��(��(QEQE�QEQEQEQE1�PEPIKI@Q@QA2�))@-��^���/A�{�)���IE#�0Q�(��QEQEQEQEQEQEQER�@X(��(��(����PQKI@�P
(���(�AEP�IE��PKIE-��(��QEQE��P1)h��%-QERR�@	E-%
(��
(��
(��
(��
(��%-%QE0
(��Q@����(���	EPEP ��(��(RQE
(��QL���(��)i(�AJ9���a��j�c��I�J)��qi(��BR�E
(��
(����(��(QE�(��@-�P�IE����QE(=h3EPES����	ESQE�QEQE"t?Z���?��S���?x�i*M��)h�����(��(�0��(QEQE�J)i(��(��(��J-%PEPEP ����aAQ���m��O�)��l�%���T�QAaEPEPEPEPEPEPE���Q@Q@Q@Q@Q@��)i�b����J(��)�QERR�@Q@Q@��(����JZ(�AEP
(�����Q@�QEQE
(��
(��Q@RPE-%QK@	E-J)qF((�������	EPQKILAE-&(��(R�Q@IKI@��(�AE��(��`QEQE
(��
(��
(��
(�'h�~�3mi3�2�}*����(����R�PKE(��QEQEQEQE�QE0
(��IGz(��)�QE%-%-�J(��
))i��QE
(��
JZJQEQE��?��N�����?ZJS��i*M���((����)h(��QE!QL�(�)(��QE(��(���
(��
(��%(����K�W7���`sE%-#�$����6��A�J)h�!(�����()qE%R�@	E-�R�@Q@QH�(���(��(QE(��(��J)h�V�(�
(��
(��
(�����(��`QF)QKE%Q@Q@QLAEPEPEP ��(��(�%-��Q@��(��(��(��(���Z��P!(��))i(��QL�(�B�R�E�(�AIKI@Q@Q@Q@��ZJ(��QE���$���n>��6�R}�
PH�J��D����J�QLaER��(h�P1(����Z1@���)�QEQE�))h�IKI@�h�ES��)J)i)�QERR�P ��(��(*D���1OA��@�9��������T��IK@��J(���PQEQEQEQEJ)i(��(���(�����.}�x)\���/��:QE#�0Q�J)h���QE!�IGz(3{�QLAEPEPEPER��(���(��(��(��(��(��(��(��(��(��`%��R�E%�PEPER��(QEQERR�@	E-%
Z(����`���(����(��(�AEPEPEPEP ��(��(�����\RP!h���Q@	EP ����-%-1	E-%���(��(��(��QEQE��l�:
Wl
��54v�(��dQ@
�i���r(���Q@��(��(�EPKE(��(��)(������������(�EPb�R�@���(��(����AEPIKIL�(�AEPR'��j:�:~41�~������T�KIE ��Z%R� �%S��(��(���������PR��{R�sE�!NR
^��7:#N1MQA��QI@E%���iJ�6�)h3�Z(1KE))h����(����E-�QE
(��
(��Q@Q@X(��`��(��Z%QL,QE
(��QH�(�E-% 
)h�,%�P �����ZJ(��(��QE0
(��Q@Q@	E-%��Z%��QE����(��(��(��B
(��
JZ3@	ESQE))h�BQEQE�-%-JJZ(RR�@	E-%
(��
)(��f�1�G����'�aQu94�7�-%S3
(��
(��
r�ShhIERQEQE-%-P0��(��(��((��R�PKIK@	E-%QE
JZ((��(������(��J)i(QEQET��+��U1��S��O�������x�i)[��%"��Z���)QEQKE%QL���%Q@���u���NR�h��`zZJW:#J+p9��)�-PR�Q@E%-
(��
CKHz�L��(�����JZ)(QE-��(QEQEQEQE�R�H��-�1(��))h����JZ(��(����1EPIKEQE`��(QEQE(���%Q@Q@��)h(��`QE!QL�(��(��(�AIKE%�P!)i(�����	E-%QEQE
(��	E.))�(��(��%��(���AEPESQE(��%Q@�2*8�OAQ39���+�%�M%S3�(��QE0
(��
(����S�585%&6��RQE.((��&(QEQE(��(����(��(����J(��
(��	EPEP �����(�IKI@��(���J���*�QKH�0��)���i�����H�
����^��I@���f�
J(��\RPEPERQK�G��H����=)p�����J+�\�QG4�Q@Q�(����Q@Q@Q@%/jJ	�QE
�EPERQE�R�R-PQKE`��(��(QLv
(��QL�(� ��)��QKE%�PQKE%��QE-%Q@��(��(��(�AEPIKE%�P!(���	EPE-&)�QKI�(��(��QEQE
(��
(��%-�%Q@Q@��(��(�AIKIH�(� ����	E-%'z)i(�RR� ��)�J(��Q@���w�sQ�g����+����6�������P ��(QIK@Q@%-T�r�98�����.=�)sH�f���Rf�8��(QKEQE 
(����(��J(��4P!(��))i)�;QE�(���Q@%-�J(�<P �NJ�(�-#x��IKIH����Q���`��?Z(=O�����(��(�B�J)h�R�������cFO}�q��)\�4���QA�QEQKE��P1-��R�@Q@��(��(�4�����EPE���Q@Q@Q@��(�E%-QE0
)(����Z))h��(��(���Z)(���(�����E(��(��(��(����PQKI@Q@��(��(��(�AEPEP!(��`QEQE
(��
(��
(��	E-%QE
(��
(��Q@��(���QLAEP!:QE(��QE0�(����3`m{�a��v��MGKE3)6��QE2D�����Q@Q@Q@��(�aEP"^�)�x�:�~aE��J)h��(��(�EP0��(��(��)�J)i(�R�P �������(��)RR�SQE�(�MJh�U���R6�m����)QE"t?Z��N��10=O����?ZJB
)z��SE��%-���4����W6�����F��[%-(��1E-(��(��(��@QE�(�EPERQE�(��EPEPKE�(��(�����E0�Z(��R�1(�-�))h���PQKE`��(��Q@��N�����Si��J)h�R�R�EPERQE�(��(����PQKE%�P!(��(��))h�BQE�(��(��%-PEP ��(��(RQEQE
(��Q@Q@���(�QE�QE�KI@��(�AIKE
(������0�b3m�}��Q�ER2����(�HQE%QEQI@����(�����
1E��KQT���)2��Z(��AEPE��QE 
(��
(��
(��
(��
J
����QE(��J)M%1%PR*��B�9=i��aj�����aE��QK�PON��34����A���}iO�?ZJ��q�QE�IE-%-%QKE
(��Q@QLaERh��4P0���J(��
(��
(����P&&(���l%R�R�Gj(��(��(��(��`QE�QF(�ES��)QE��(��(�ER��(QEQE�R�@(��J)h�A�JZJ)i)hRR�@	E-�J(��
(��Q@	KE�QE
(��
(��	E-���)�QEJZJZ(��QE%�P!(�-J(4PEP ��(QERQK@���(RR�QE1PN��^����TtNMV2��QE	E-�QE%�S�b��LQ�)h(����Q@	KER��RQHi���HW4��bQKE%�PQKI@Q@���(��`QE���))M%QE
(���(�ANU�hU�4�
!�(��F�K��(�
E���&�	R'C���D���&<�?ZJS��������)(h�R��R�L��ZJ)h�aIKI@Q@R�1)zQE 
(��
(���Q@-PIKI@0��($(����Z(�R��J(�������(��
(��
(��
Ju%%�J))h���4�QE-%�PQE(��(��(��QEQEQE
(��
(��
m:�@E��Z(��Q@Q@����J)i(QEQE(��))h�BQE�(��QEQE
)(����4(��QEQE
JZJR�@���JQG�?���(��FI'&��NMI�W
(��B�(�AEPQEQE(��(��))h�R�EQIH�(��y��>�����ZL�.�J(����(��)(��(��`%R�!(������RR���AEP ��)�JP2h' ���nQE#`������)(��
JZJb
�:~5H�(<��IN=O���=����-S��(��(QEQE�R�F(��)QE(��(���R�@Q@��QEaEP ��(��(QEQEQEQE(��QEQEf�((���R�PE-%-Q@����J)ih�R�JQEQEQEQE
(��
(��	IN��E-�(��(����(�AEP ��(����AEPEP ��(QE�J(��
(��Q@������4��(��(��QE�ZJ��P ����?��!:��S	$��Ic�IT���}QEQE
(��
(���Z((����(�AEPEPES(���	KES��G�L�JfKER4
(��	E�J(���Q@%-��Q@%Pi)i(QE(����J�����F�Ah���R�Q�:RR����E%
(��
z?��N��12S��i)OS����H(��R�@XJ(��Q@��Z)QEQE��Q@��(��(�aEP
(�QKE%Q@��(��(��(��(��(��(�aEPEPEPEPEPEPEPEPEP ����
(����(QE-%�����P!(����(��(�AEPEPM�������Z(��Q@Q@��(�BQEQEQE(��%��QKE�(�IKE�(�AEPEP ��J-%P ��	d���*2I94��94��1����JZdQ@Q@��(��(��J(h�����(��(QEQE-QI@�PQE"�=)��5I��4N�(��QE����(��))h�!(��))i(����AE�d�!Td�����VAE&is@����f��(�AIKI@Q@%-%0
�:~5H���Y)�~�����%A��(��RR�i(��
(��
(���Q@Q@j(���Q@R�1)h��
(��
(���(�AEPK�(����%��QE-�Z(�R�@	E-�QER�@���(��(��(��(��(��(��(QEQE�RQ@��������J(��BQEQE(��)
-�ESR�R�EP ��(�R�@	E-%
(��
(��Q@�����
ZJZJ(��B����R�!(����(�BQKE�(�FO�)�	
2QX��Ic�E4�g.m���fbQKE%-PE���Q@���JZJ)h(��(��(���	KEQEQIK@	E��QE
�NW��GNC�����a�QE"��(��(�QKI@QLAIKI@��P!))h����Q�i�2���KIE"��)(M%P ��((��QIL�(�����O����&=O��������=@����bR�(��(�aEPEP0��(��(���QEQEQE
(��
)i(��(QEQEQEQEQEQE(��(��(��QE��PQE(����Z(�QE
(��
(��
(��Q@Q@Q@%-JZJ(���J(��Q@Q@���)���RP!h���AEPEP ��JQEQE
(��Q@	EPES$(��)(��E%(��QA!FO^��y�$(��DI'&��NM�0����(�@QEQE%�J(��(��(h�����(QKE%�P ����
)(��(�AKIE-Q@Q@Q@�*
��;}i���up��(��(�����(�AIKI@!��� �&��8�4�-QH�(��J(��
(���QE
(�4�(��`%Q@�����5H�?��S�����i+3�
(���Q@Q@Q@��(��(��)hQEQE(��(��QEQE
(��
(��
(��bQKE �ZJ(��b
(���Q@Q@��(��(��(��(�AEPEPQEQKI@Q@��(��(�AEPEPKIK@�������((��QEQE
JZJ)
-�JZJZQE
(��
(��	EP ��(QE)(��
(����(�AEPQKI@��(�AE1�����	����QNMU$s�nBQKE2D��(��(��(QE�R�@	KE(��(��`QE 
)(�B�EQEQEQE(��(��(��3�R�����O������:�(�XQEQE%
(��
JZJ�P(@���E�������(��(�����(�aIEJ)h���(���Q�����S���=O���=`��(QE(�����(QEQEQE�EPE��%R�QKE��PQKE%�PQKEQEQE��PQE�(��@R�PE-%QE0
)i)QEQE�QEQA�AE%-��PQEQE(��(��QE��PIK��P ����%��(��(��QE�)h��E�-Q@��(��(�BQKI@��(�AEP!(����(�AESQE�QE
)q�5�/�h%���3m�u�U-%RG<������d�Q@Q@%-�R��%��QEQEQEQE�QE%-RQEQEQEQE(��(��JZ)(R����(v&4��r����m��EPQE(��)(��Zu ��QE�QE�Q@R`QE
(���ZJQE��PS���L����i��S����4VG�QE
(��aEPEPEP0��(��(QE-QE!�Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@��J(h��QEQE
JZ((����ZJ(��b�ZJZ))hRR�@	EPEP ��(��(f�J\�EP�ii(���PQE(��(��QE!��4�)h��Q@��(�BQE(����P ��(��I@��(� ����	�P(�1�<�����I]��:/�i�QVa)6�
(��B�(�AEPR�ERR�EPQKE%��J)h����J(��Q@Q@Q@��(��(��(��(�AEPEPEP!T�`jZ��S��������C�Z)��QA��h�P	\(��EQ@%-%QILAEPEPIKI@��EQERQE1	R'C���H���@�`�?ZJS��i+#�
(���EP0��(��(QEQE(��)i)iQE(��(��(��QEQEQE`��(QE-�ZJQE��PEP0��(QEQEQEQE))h�����
(������(��))i(QEQE(��))i(��R�KIE
(���ZJQEQE�Z(�Bb�\�S��(QIE-%-%
(��Q@��)(�QI@IKI@��(� ���(�����f,rM"%%Y��A�M�������QEQE(��(����(��(�AEPEPEPIE-%Q@��(����%�Pb�)h(����(�AEPEPIE�QE
J(���
�i)(��ME�P:*MXQEJ(�4�P;�KIH���(��JZJ))�ZJ(��(���(��Q@�SQE!��(��O���u"t�h,�~������Y��R�@��(��(�aEPEP0��(���(��C
(���Q@R�IKE%�PQKE%��QE-QEQEQE%Q@Q@Q@%-JZ(��(��(��(�AEPQEQE�QEQE
JZJ(��QEQE�
�RR�i)i(QKI@Q@��(�AE%-%��b�)(QE(��(��QI@����-%-%QE
	
9��A`�[�T}j�3��t[�$��IEG;�(��(��(��(��(��QEQEQEQE
(���ZJ��PEPEPEP ��J(��(��QE�����Q@����(����(��p�=
>�����^���]����E��R������C
(��
JZ())h�QE)(��
(���QE
(��EPEP ���Q����4	�O�4Pz����Q@��(��(�aE��QK@	KEQE(��(��C�(�aEPEPEPEPEPEPEPEPEPIKE%Q@Q@Q@��(��(�AEPEPEP ��������AE-%0
(��
JZ(�QEQE
(��
JZJQE(��f�%-%QE
(��RPESQE(��%Q@Q@���)�f�JZ(��s����Y���&�l�8��M#��))h�1�ZLPEP ��(��(��(��(��(QERR�@Q@Q@��)(h���
(��Q@Q@��)(����
(��	KE%QER�PEPEP ����
|g����:����%����R4k[ERQEQERR�PES�QE�(�IKIH�(�BQE�(��(���ON��2��?�'���J~���VG�QE
(���-R��(��(QEQE(����Z(
(��
(���Q@Q@Q@Q@Q@Q@Q@Q@Q@��(��(�����
(��Q@Q@��(��(��(�AIKE�Q@��(�EP!(����(�AEPEP!(��)i)z� �����(�AI�N�SQE)i)h��(QE	�EP ��((���AE������-��p[�1c��A$���%RG<���`��)��-%QIK@%-�QEQE
(��
(��
(��
(��
(��%-�R�PEP ��(��(QEQEQE%
(��Q@Q@Q@	E-QEQE(��(���!���)��f�I�G`��)(��JZ))�(��@����))i(QE))h�QE% 
(����)(i(��
zt�i�����&[=O����?ZJ���QE(���
(����(��(�aEPE�(��(��(��QEQEQE
(��
(��
(��
(��Q@Q@Q@Q@��(��(�����
(��Q@Q@��(��(�AEPR�Q@��	�QLAE�QEQE(��%Q@-%-
J)(��))�(4��QE(���
(��Q@���(QE(�'�1�O������SHM��)m�/_Z��*�yI��QE�Q@��(��(�f�Z1@����QEQE(��(��(��(��QE%�PQKE%Q@��(�AEPEPEP �����ZJ(��QEQEQEQEQE
P2i)�0>�*�uQRjQEQE1	E-%QHh��RPh��@Q@��)(RR�@	E-%0
JZJ���T����N��[?x�i)OS����x(����QH�(�aEP0��(��ZQEQE
(��
(��
(���Q@Q@Q@Q@Q@Q@Q@Q@��(��(��(����PQEQE(��QEQE��(����
J(�AESRR�(��QEQE�)3@��%P!i)i(QEQE�))i(����AEP ��(�(�&�)����)�r���9<�i)���f,y����U6���ZJQEQE
(��
(��Q@�P!(��`%�PQEQE(��@QEQEQE��S�QEQE
(��
(��Q@Q@��(��(�AIKE%��QEQE(������)`R�4��
(��AEPE%�QE�(��(��(�AE��QE 
(�����Si(��
(���N��Q�������S���?x�i+#�����Q@��(��(�aE�(��(��QEQEQE
(��
(��
(��
(��
(PEPEPEPEPKIE-%-%
(��
(��
(��	E-%QEQE
(��Q@%-J(���J(QEQE�%��(���AIE���)�QE�Q@����C�(� ��������Q@��Jw�~��=i����=}i�}=)*�0�N�J)h�d%��QE))h����JZ(�AIKE%��QEZJ(��(�BQKE%���(��B
(��QH�(��(�AEPEP�1E�1IKE�(��Z(�QE!QL�(��(�BQKE%Q@*��J�FHZ(���(��)(����(��(�BQE�QEQE
J(� ��(�4���%���(��(������)����l�?ZJS�����>�Z(��
(���Q@��)hQEQE(��(��QEQI@EP0��PQ�)h��-%-Q@%-%QE
(��
(��
(���)(��(QEQEQEJ(��
(��Q@��(����%Q@Q@��(� ��L��QE�QK@��K�((��@	ESR�R�EPIKIH@i)i
0KIE�2x��<
k>F���Q�R�zr}})�z�EU�%'!(���"QE.(�QEa(���XJ)h���(��Z%��QERR�@����J(��Q@Q@%-J)h�0�Z)�R�P ��(��ZJZ(�BQKI@Q@����`%����R�!(��QEQEQEQEFMIMQ�KI���ER((���QL�(���Q@��(�BQERR�P ��)�QIE
(��
JZ((��QI@OO���u"}���3���IiY��������G�)-+�������z���i�>s�c�?��G������/{�|��R������-{�|��W�QG���?�1�����y�)-+������������^��)��Q�i���;�~?���/��%��Z���O������Ak���?��B�=�>���������#���Ii_����S�(��%��Z���O��P��cO�l�����?����RzW�����
?�I�_����S�+�(��S��8�����<�����Ak���?���RzW�����
�
(�4���;�~?���/��'��Z���O������Ak���?��B�=�>���������#���I�_����S�(��'��Z���O��P��cO�l�����?����RzW�����
?�I�_����S�+�(�����8�����<�����Ak���?���RzW�����
�
(�4���?�~?���/��'��Z���O������Ak���?��B�=�>���������#���I�_����S�)�I�_����S�+����S�?������a�
OJ��������I�
OJ��������^�E��`��������������^��)�������^��)��Q�)�������_�
OJ��������G�)=+�������z�{
}��g�?��G�������-{�|��R������-{�|��W��G���?�q�����y�)=+�������/�)=+�������z}{}���������#���I�_����S�(��'��Z���O��P��aO�l�����?����RzW�����
?�I�_����S�+�(��S��8�����<�����Ak���?���RzW�����
�
(����;�~?���/��'��Z���O������Ak���?��B�=�>���������#���I�_����S�(��'��Z���O��P��aO�l�����?����RzW�����
?�I�_����S�+�(��S��8�����<�����Ak���?���RzW�����
�
(����;�~?���/��'��Z���O������Ak���?��B�=�>���������#���Ii_����S�(��%��Z���O��P��cO�l�����?����RZW�����
?�Ii_����S�+�(�����8�����<�����Ak���?������Ak���?��F�=�>���������#���Ii_����S�(��%��Z���O��Q��cO�lc����?����RZW�����
?�Ii_����S�+�h����/��w����]�
KJ��������G�)-+�������z�{}��c�?��G������/{�|��Q�
GJ��������^�E��`�����������t����)������/}�|��W��G���?�������yw�)+���������t����)��4Q�i��|o����]�
GJ��������G�)+�������z�{}��_�?��G������/}�|��Q�
GJ��������^�E��ak����?����R:W������
O�RW������
�*(�4���7�~?���-��!��^���O������A{���?��J�=�>���������#��Hi_����S�(��!���^���O��R��c���������#��Hi_����S�(��!��^���O��R��c��������<�����A{���?���RW������
�*(�4���7�~?����RW������
O�Q�W������
�:(�0��������?�G�_����S�(����^���O��S��c��������<��~��A{���?��|�A��������W�QG��`���������?Jc��_�)����t��_�)���S�P�K�1o��G������1}�|��Q�
;I��������^�E���O������t��_�)������1}�|��W�QG��`����?�y_�(�'��������t��_�)���Q���_�x����+�����b���O���n��A����?��R�=�;��/��#���F�?����S�(�����b���O��T��e���������Q�O�/����
?�F�?����S�+�(��C�ib���<��n��A����?���Q�O�/����
�J(�P��X����+�����b���O�������b���O��U��e���������Q�O�/����
?�F�?����S�+�(��C�ib���<��n��A����?���n��A����?��V�=�;��+��#���Fi?����S�(�����b���O��U��e���������Q�O�/����
?�F�?����S�+�h��C�ib���<��f��A����?���n��A����?��R�=�;��+��#���Fi?����S�(�����b���O��U��e����?�yW�(�'��������4��_�)���Q���?�q_��U�
3I��������G�(�'������z�{(v�W��G�����1}�|��Q�
3I��������^�E���G����_��4��_�)�����1}�|��W��G��`���?�yW�(�'�����������_�)���Q���?�q_��U�
/I��������G�(�'������z�{(v�W��G�����1}�|��Q�
3I��������^�E���G����_��4��_�)�����1}�|��W��G��`���?�yW�(�'��������4��_�)���Q���?�1?��U�
3I��������G�(�'������z�{(v�O��G�����1}�|��Q�
3I��������^�E���C����_�����_�)�������_�)���Q���_�����)�����b���O���^��A����?��Z�=�;��'��#��E�?����S�(�����b���O��V��e���������QzO�/����
?�E�?����S�+����C�hb����QzO�/����
?�E�?����S�+����C�hb����QzO�/����
?�E�?����S�+����C�}��������1}�|��Q�
/I��������^�E���C��������1}�|��Q�
7I��������^�E����������Q�O�/����
?�F�?����S�+�(��C�h����<��n��A����?���Q�O�/����
�J(�P����<��f��A����?���Q�O�/����
�Z(�P����<��n��A����?���f��A����?��V�=�;��'��*�����b���O���f��A����?��V�=�;�C�������1}�|��Q�
3I��������^�E���C�������1}�|��Q�
/I��������^�E���C�������1}�|��R����1}�|��W�QG��`����9�?�����_�)�������^��h�z�{(v�O��G�?��2?w�������QTg�r�>�zy��&5�tQ������W���_�K&��O���Q�������/��d�f�G�[���)��_O�R�D�9�u�L����{ILW0���J�O�j:���N���0�ZAs��?Z�u��:�M1��'=�����~Vr���m,�������>�]O�����-���f?���,������-X�����R54�RQE"����i�����#��(�����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(�e�X�`�����luQ%��#��9f��2����������T����(������ze��W��[��p��0G��z�_P�����t���
�J~�t+��z���_5��M���O�j��a8a�����5�:n�L&28��}�5$w��S����A���(����
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
��#x"/h�KuU�mT���7����{z��Z)4��.�IS��wG��F�H����#ea��u��:�z��o	��Gg!�o.�(�d���!����i��k�Qqv>��h�����(���>D(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(������5�
�K������{7�p
�:��k��;��<�R/��_aW�x��f��x�}OHkU���>������&���G���cM�M�3�h������(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���
endstream
endobj
7 0 obj
<</Type/Font/Subtype/TrueType/Name/F1/BaseFont/BCDEEE+Meiryo/Encoding/WinAnsiEncoding/FontDescriptor 8 0 R/FirstChar 32/LastChar 122/Widths 2851 0 R>>
endobj
8 0 obj
<</Type/FontDescriptor/FontName/BCDEEE+Meiryo/Flags 32/ItalicAngle 0/Ascent 1060/Descent -122/CapHeight 878/AvgWidth 956/MaxWidth 2807/FontWeight 400/XHeight 250/StemV 95/FontBBox[ -984 -122 1822 878] /FontFile2 2849 0 R>>
endobj
9 0 obj
<</Type/ExtGState/BM/Normal/CA 1>>
endobj
10 0 obj
<</Type/Font/Subtype/TrueType/Name/F2/BaseFont/ArialMT/Encoding/WinAnsiEncoding/FontDescriptor 11 0 R/FirstChar 32/LastChar 121/Widths 2855 0 R>>
endobj
11 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
12 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 13 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 1>>
endobj
13 0 obj
<</Filter/FlateDecode/Length 2248>>
stream
x��Y[o��~����{�����m.�.�@w�b����J�sj+�Q����33�D���^R����#?Sg�3Ce�b_o��E�^�>g�==�Y����s�%�"g*�l_�������,~^jvsz��Mb�\s�c_�tz���	��ec1<�z�!8�������R������_m�7%W��b��qZm��1�L:�q��a@zP��3K�r�hP�\�IL�TK�3�R�df} ��q�����sieBD���i��gW��p����L�qP����sN�=��g�:�(0�rE�2(�6�%Dd��d�
}������j�i��,��$
Z6d�+H���7�36�[����
2�`����7���U|���!��fG`ce�h]![`5`��n?������u��	���+B�%��L����I�M�H�8`3��s��]%�H1&���G>���.���M�O����Yl�Lk�CP�8<���l��]�w28��wOh2���6JdN�����������)T$��!Sh��`o�����Y����
S�Kv�@D���izu�"<x
�1� ��[F���u5��q�!O�>�C*V�e�	������iz
�e#;�A]��8�0!��A4�po���I�m�i�J�8&�Z�O����T��6��d�	M�
����dH�" ��:LI0���r����@Z7US�!�`cs`�>z��6s]C*���	T�s�\��'�����S�B}����c��P�t��L��=���8�O�.9l�k��v�/���6"9u��=%b��h���Z�,���{�-��fzu�1�M�>�<w1���iv
���@7�.j4��f?�(65���q�y��-� �+q�bC���q2N�������<��40��cr��&n���5��|D&���f	�a��M(�\|�O/�3�d{�1)#��U�4���p���{����.'�YboI�$��"��P��-���b��$��n��lh��
�c��<�Vu�HC���h�n4��t��.�SuY*���8bB����E���&n��s����C�����kpU6�4��
'_k���4����
J+7�k
u��%l�9^+�v����0����r�s"J2T����&P�L�?|���X&�YLQ�u�h������:����h6�����n���th���v��U��")��
nS&��P����u�b�S�2�5M�hLN�ohXoup�����5%�<��R�
��XL�&�q:�x�u��!F�R��!�W�8�bE���(}��Q��)DdA�uX��1�����^� �������K*�D�E6�W�v@�)��6\��K�t���hqN;��"��&&����O���>h���0 &�������oz�� ����k������gX��3X����mx�(X���l��={�x}��������A�����d�\��+��6����M$����C���� ,[mqO��d��-��s5����V���\����'Q�eF��=�A<��w�Q
�]=��}&��P��nP��n�k������
����o�_�S2A
������N2������R�sAon�1��=�s��?�\}�r>�\��_�����P���1�v~&g�������g���
�|�O��6�\o���hH������L������<�S�����D�C�P��
��:���
�y_����f_.������jW�7�h��?�[l��B
�W[,�Oh�$��=��66��q����}M�sF���eQ���K�h6��?0a�g��}��7��X�b��>����]��6~/fx��)m$��w~T�s���l$�A��Gny�X����u ��	%���������f�-�;��}���is��+�����d�'�rGLZk����U!�������&�a�Q��q�����+�+#�����Q����pT��]�_�%zLS]��u�g_]5��'����C%7Ou9������n0:��cT���}���G���n�*��)�,%�r���+F�>��y���c�������8h�����Z-!&�R*YV�`���������F?�Pa��_��s��fvQ~"����rG���v_����-?�w��U]W����w����f����X>��q����r����[�QS�%���>\�C���y.1������1��L��r����C��t|5w30����j~�gK4
�URh���#d��8����?0���"�������D~l>��2�#.
endstream
endobj
14 0 obj
<</Type/XObject/Subtype/Image/Width 1500/Height 176/ColorSpace/DeviceRGB/BitsPerComponent 8/Filter/DCTDecode/Interpolate true/SMask 15 0 R/Length 8293>>
stream
����JFIF``��ZExifMM*JQQ�Q�������C		

 $.' ",#(7),01444'9=82<.342��C			

2!!22222222222222222222222222222222222222222222222222����"��	
���}!1AQa"q2���#B��R��$3br�	
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������	
���w!1AQaq"2�B����	#3R�br�
$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������?�
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
J(��(��(��)(��(��(��J(��(��)(��
(��
(��
J(��(���(��(��JZJ(��)(��(��J(��(���
(��
(��
J(��)(��(��J(��)(��
(��
J(��(���(��((��))i(��(���@QIL�(�E�QERR�PEPIEQE%QERQ@RPEPE�QERQEQE�Q@RPEPIEQE%QEQI@Q@%PEPIES���L��O��:
(��Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@%PEPEPIEQEQEQE%-%PEPE%QEQE%-%PEPIEQEQE�QEQE%Q@Q@%PEPQEQE%QEQI@Q@RP�QE���QERQEQE�Q@RP�QEQI@Q@%PE���QH�(�QE�)(��
(���(��)(��(��J(�����(�����(���(��JZJ(�����
(��
J(��)(��(��J(��)(��
(���(��)(��O��ON��t4QE0
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
)(��(��(��J(��(��(��J(��(��)(��
(��
(��
J(��(�����
(��
(���(��)(��(��JZJ(��(���(��(���(���
(��
(���(�����
(��
J(��)(��(��((��))i(��)RQEQIL�(�E�QERQEQE�Q@RPEPIEQE�QEQI@Q@	EPEPIEQE%QERQ@RPEPE�QEQIEQE�Q@RPEPON��2��?�h��`QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQI@Q@Q@	KE%QEQEQI@Q@Q@�PEPE���Q@Q@%PEPE�QEQE%-%PEPIEQE%QEQE%Q@RPEPE�QEQIEQE���QERQEQI@IERR�PER���(���
(��RR��(���(��)(��
(���(��J(��JZJ(��)(��(���(��
%PE�QERR�PE�QEQE%QE�Q@Q@	EPEPQEQE%����)������(�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE�QEQEQE%QEQEQI@IEQERR�PEPEPQEQEQIEQEQI@Q@RPEPEPIEQE%-%PEPQEQE%QEQI@Q@�PEPIEQERQEQI@IEQIEQE���QE�QE 
(���(���(��
�Q@RPEPIEQERQEQI@Q@%PEPIERR�PEPI��(��((��(���
(��
J(��(���(��J(��(���
(��
z?e9:~4��E�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���
(��
(��
(���(��(��)(��(��(���(��(��)(��
(��
J(��(��(���(��((��(��J(��
(���(��(���(��J(��(���
(��
JZJ(��)(��
(��
J(��(���(�����(���)QE%0
(��RPEPIEQERQEQI@Q@%PE���Q@RPEPIEQE�QEQI@Q@%PE�QEQE%QE����
(��
J(��)(��(��J(��))i(��O��R'C����(�EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE�QEQE%-RPEPEPE�QEQEQIEQEQI@-%QERQEQEQI@IEQE�QEQE%Q@RPEPEPIEQE%QEQI@Q@�PEPIKI@RP�QEQE%Q@�PER���(���QH�)(��(���(�����(���(��(���
(��QEQI@Q@%PE���Q@�PEPIEQE&h��(��J(��)(��
(��
J(��)(��(��J(��)(��
(��
z?���?�G���������_�*��N<[�CF���	��������x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�q���5��K��V
��	���h���a/�G�'-���[�����U`�@���x����o���T�o���5��K��V
��	���h���a/�G�&�-���[�����U`�@��������o���T�o���5��K��V
��	���h���a/�G�&�-���[�����U`�@��������o���T�o���5��K��V
��	���h���a/�G�&�-���[�����U`�@��������o���T�o���5��K��V
��	���h���a/�G�&�,���Z�����U`�@��������k���T�o���5��K��V
��	��?�h���a/�G�&�,���Z�����U`�@��������k���T�o���5��K��V
��	��?�h���a/�G�&�,���Z�����U`�@��������k���T�o���5��K��V
��	��?�h���>_�*��M�Y�CF������U�Eo�o���5�����������|��U`�@���x����k�����������3�_�/�XTP��&�,���Z�����?�6�g�������V��	��?�g���>_�*��M�Y�C>������U�En��m�����������o����|��UaQ@���x���}k�����������3�_�/�XTP��&�,���Z�����?�6�g�������V��	��?�g���>_�*��M�Y�C>������U�En��m�����������o����|��UaQ@���x���}k����������3�_�/�XTP��&�+���Z�����?�6�_�������V��	����g���>_�*��M|W�C>������U�En��k�����������_�����|��UaQ@�������}k����������3�_�/�XTP��&�+���Z�����?�5�_�������V��	����f��>_�*��M|W�C6������U�En��k�����������_������|��UaQ@�������mg����������3k?�/�XtP��&�+���Y�����?�4�W�������V��	����f��>_�*��M<U�C6������U�En�i�����������O�����|��Ua�@���x���mg���������_�3k?�/�XtP��&�*���Y�����?�4�W�������V��	����f��>_�*��M<U�C6������U�En�i�����������O�����|��Ua�@���x���mg���������_�3k?�/�XtP��&�*���Y�����?�3�W�������V��	����e��>_�*��L�U�C.������U�En�g���u�������?������|��Ua�@�������]g���������?�2�?�/�XtP��&~)���Y�����?�3�O����K��V��	���e�?�:_�*��L�S�C.������U�En�g���u�������?�����t��Ua�@�������]c���������?�2��/�XtP��&~)���X�����O�L�S�C.������U�Em��e���u�������/�����t��UbQ@��x���]c���������?�2��/�X�P��&^)���X�����?�2�O����K��V%��	���d�?�:_�*��L�S�C&������U�Em��e���5�������/����t��UbQ@��x���Mc����������2k�/�X�P��&^(���X�����?�2�G����K��V%��	��?�d�?�:_�*��L|Q�C&������U�Em��c���5�����������t��UbQ@������Mc����������2k�/�X�P��&>(���X�����?�1�G����K��V%��	��?�d�?�:_�*��L|Q�C&������U�Em�c���5�������������t��Ub�@_������=_�����������1���/�X�P��&>'���W�����?�0�?�z��K��V-��	����c���:_�*��L<O�C������U�Em�a���������������t��Ub�@_��x���=_�����������1���/�X�P��&'���W�����?�0�?�z��K��V-��	����c���:_�*��L<O�C�����U�Em�a���������������t��Ub�@?��x���-[�d����=�e��k����7��Y�r����1x����qmvQ<g���]v�����SV�$�w��@���8�f�N���D����DB���RLF|��I�|��V�|l�U�)!�� �+����}sB�!���+�&o�(�e��?�}IX��V���/�i�!���D�I���mR��O��ON��@�E�(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����j��.���p�\Fxe=G������	��OY��
���������"~g�zf�w��P_��b���#�}A�E}}ON��s��=���u0�}�����Q��=�t	�����QE0
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��
(��;��*ox�/:LX]�
�'������	�������}?��_���M��I����I���������(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��4�jz-�[YM�6s!�@�V=��
endstream
endobj
15 0 obj
<</Type/XObject/Subtype/Image/Width 1500/Height 176/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 569>>
stream
x���1G�a��8"��t���8��!�""�)�Z���)��"�5"�)�5""Z#M�Q_��zyrw]���~������_C�)U�7���wv��yZ����m�3����y:sO��5�7�v�<������R�ox�V����k;@���m�Sj;@���7������Z����j;@��O�)���.� Nk[���=k;@��Gm�3��M�7�K������v�8�m����v�8������� ������v�8�m�3Qk;@�5m�s��q����Y�v�<��g�U���k;@�������v�8�Wm�s��q�� ����Y�v�8#���9�v�8��g�.�����@��K�q��h\�������
endstream
endobj
16 0 obj
<</Type/Font/Subtype/Type0/BaseFont/BCDFEE+Wingdings-Regular/Encoding/Identity-H/DescendantFonts 17 0 R/ToUnicode 2856 0 R>>
endobj
17 0 obj
[ 18 0 R] 
endobj
18 0 obj
<</BaseFont/BCDFEE+Wingdings-Regular/Subtype/CIDFontType2/Type/Font/CIDToGIDMap/Identity/DW 1000/CIDSystemInfo 19 0 R/FontDescriptor 20 0 R/W 2858 0 R>>
endobj
19 0 obj
<</Ordering(Identity) /Registry(Adobe) /Supplement 0>>
endobj
20 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 2857 0 R>>
endobj
21 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 22 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 2>>
endobj
22 0 obj
<</Filter/FlateDecode/Length 2185>>
stream
x��ZYo#7~7���G)�[�`0�9�	2@��`yP����%���b�}��d�-u�G6Y"?�M:�W���e�e�?�a��p��a�bNr��a����|���'���
�~<=��H+n��I_}wz���	{�.�6��+3�	��?������1��w������Jh�v�������6^2�m#��*���Z�8N�2�eU�|�0-`��i��HR�Q8
�F8�}�7���	��i�*��"�H\�5�J'���A�"��V�|�%�Ev&3����iW�"a]�T#,}��������tL�K�e����<@:�Q����(�C>�uee8�$�#�.�H�}#�u8>4��������P��|"P�u����T�H4b�{w�d��l�L��q�40����p���gc���)������<�0|��!b,���4���OF`z�K�����I�[X��A�y����|�c��B�;^���T44��#���d �����2�����'
L��;�2��5��y����I ��Xq`
��Q��CD�G�����Aat'�m�����"��s�G�p���H�����1��	��C�G��I��
d��D���J�^�xc�������1F��V�@��p�e@���<��-���eS���4T�0Z�(�_F�s�����(+�x�u�@d5����:�;���:v��U���
������Q(���t�2=���Rt'��d�2;
�%=6/�G
�4�O�Z8��iL�rL��-��(F�@m�1V�	4 �i���d���Q
���Nyl������#��$	��+��hP�	4��Q��y�Qjj�/��(	��i[ I*�r�������������"��40��}a����x,5$1G/I��R�����&t.!<gP��<�E9&eD�Z� BS��!H���C$��t9����TH
(,��a
U��r�[=H%\�"aK���.�����lY�%
���$M���G����x;,�Y6����vOJ�)�,!��5���J�c��G�08���E_���567::F�1TA�4Dd�Ep����y�xM�Z��M��ke�n�(���h@X�].��P��c7�5�*a���6&�cU4�0E��od�������
]�6�j�t����h�5�
GM��F�*i=�H�������i:~�y�0���1�Afs67ay�`2��~C-��x��;G*�.����$�#H�.f29��
9�	
t�������x)����2M#Y-��JE_{2��l
���}=�4�F����+2"Y�C��]R�%rr<]Y�I��}]�^I_�����h	A'r�<��mJ"���M(���!r�Q�����	or�>��=��\`���w
=��������b�#��[^���<
����r�^�X||��-����k6[��^}��|�^����������(�Lb�����L�k�`"oa`������,������/�����w5��:B�(>K�r���s
G��������m�mon�
��8��&��7	[�8_����N�U�I����'4�|b-&:�
��%=��#~~���/���g(l��
�)��������l�z���h�0��<�/����t�������l��V(����T�
ga�x�|X]F���x��l�_V�a�qF���<���(0�n���=@����x������vX�����=�<�	�%�����GMa�x(+��p0��=�bj�+��H���o�OP�G�����1��t%����4����m�:h�g��z.�����?���%a�������]���@E�)]cJ71�;���%u����[����N��<���33�.	���GH@zG-9�WK]�v�n�Bx>�b`�I3[�/Ai���Z����^?!b�����*!8]����}����&�,��������]��g���O��u:���uC�n�S���M�$E�����>M>�����5�v������)��F8������V1`/�5@�\P����v��@���x��n7w�,.���?-�o����f�8�����o6���_=�dv��
�F`�GtQ�s;�6W���K�����b&���|��I����>��a��]���O����G���0�8���~#�w(���@9�z��8�L#��r��?�3A�
endstream
endobj
23 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image26 26 0 R/Image28 28 0 R>>/Font<</F1 7 0 R/F2 10 0 R/F4 29 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 25 0 R] /MediaBox[ 0 0 720 405] /Contents 24 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 3>>
endobj
24 0 obj
<</Filter/FlateDecode/Length 2976>>
stream
x��Zmo7�n����n��V|9�8)R$��vp8���U��XreA����%WZ�����%=�,�p83��f�t���x9��������G����A����in�zq|�����h���aWw�G�]i���=��?�=>b�a���I���L�-�������$o�d�������Bhv�b��4	m
�����Ly�
�nb�
���������h���U>6H��-�V��ZG����(�d+����edB$l��J7L�H�Gv�����	����`�"��F�|�%�Ev&3����nW�"a]�T+,=�LAE�A�nZ&�����d�`Tn ���_I�U�!/��22,]�ii$��qw8.>�q�8�����P���"P�u��4�T�H4b�sw���<l������n`4!����V���L���$�������	��.,cU��a�6>���.5���N���7���Ns�!!���G���T�����Sq�����I|�j�zM.��l�yR��a��B������9���:�	DY+6��Z8�a�ph�(��Q-,�����0��6�����"��s���*���c�/, k����`�C$�J�~4 ��4��@&A�H������[��G �i����1z��FA�]�x�%+
���y9���l�����N7��b
C���|�aH�f��x�qcCd5����:�[���:v��U���
#h�+�)r!�P��K
hN�{����&N6�Ci�K�^�+�1y�9j������q��N{`|+ �Y��eSG�<
�@�O�4 �i���8d������GP%����cA�G��
�$�6���G���N�6�e�!�g?JI���{?J�<=�b
$I�Zn��P���<j'���_��q�ijC�]a��l�x<jH4b�V�$I�'K���t�P���p�A�3���r��B5j�@��P-]�(���HX��r
+�-� )��H
��1T	c�mh^L� �pU�F��-�/w���.��eT_�4���I����������:,��l�1��w$��4� K�cbM�����y�Q%e1t���T���DGG�7�N��
m�7�2rn ^c��%aR,�����%�l��T��y*4t����FP%L�Nc�y����(�������YqA���s��P-�T[X��&�p��;L�$�)�eVPM�����W0	#H1�D6gs�o�j���j�t8�8����� �����@c*�H&�����Q��F�(��	cI�����;��J����Q��1D����x��4:t��E���dmv�vT�bJ�:�x*Y�I��y],��/�VyJJ���9G@�6���&����!r��|� F��{��Q���.]��\`�i�SC��O0�`�e0�����x�08/��l��=y2{����''��,� �;{���Px!���F���x��{�	�x��`�c7�&��Z��7���D7Wk�X��}����j��7v�������������&f�.�W�Y,�O�M���]��ANEY�q8HE�}�V�_>_������o�P�z|5)8a�^���bb����n�������r�i������6���o��o����������z����}�M/V��b�P�
�7j���/ b��m3������D�~a	�W�n�d�E#A�����V�������D��b2
��d��w��T�
��'4�'R�_$�e�o�N���ZP3h��l!x�����U�IH!��J�0x�����x�W5@�����\���!�5�i��:vm���{w�`��,l�N�|p�voX7���������5���>���N�G_G�3���L�v��:�y��K���,���4��au^��H`��Les�����"�O���?[��i�;|<��A6xl�DW������D������W�!u��~���>o�V��U6��-�T
�';��^
6��
�DC^)����~Y	R����
�i��s	��Rr7�qFaX��R�0I����L��M*�iOo5��P*H)0����K��>�k���a=N�4X�i����5�N��w������":�����hW�Nj����
%0�>�)I{/1O��H��r�v��&��u#���@5�����f:�WJ �32^Q6P�a��K(
���,
V����I�Y�q�4k�N��}������	��`.^�
��U�T��4�
�0)�Z�P+x;�1TH�a�?~����x����Z�4������������xG�[�p�Y[HI���&
J��Fq2N��}���*W�*��%��2[I��%��1�k}2�������a����z�w��TDV�C�~��I��)�(���I����������Otb*��vs�7�X*A������	R1�NGh����0�"-�,qWQO�����v'vLMY�y��j���g���M]���������r�NA�3���V�Eu����d���:`q�o�['z���&��^x4�YzK;�=UddR��q���D�\�GM�a#��u�
�o��i��gO�N�:P�>�����Jx�RG�W>�W���*J`�����J�1�e������;�q�������K�]%1,���zk��b)��;e�?a��7x���M�h��Y�iA�o-����;�����av)[N��ln��a��h=�����`�-�������y
Z�i������rq����^2�2$8@�J�Vh8h�>���
/*w��7�5|�#�����B�S���r�fq��ur���O����6���x9��!��Y���K��y��P�MTs�vB+�>��?�����9���px�.?���i>/��B%��Z�������4��#i���k�=T<�A��s`��j�d�C,��das���s�����D�h�C���n���bq�����3�2V�CK|�V�����o�V��� �����V���!�
endstream
endobj
25 0 obj
<</Subtype/Link/Rect[ 125.3 22.824 394.87 32.304] /BS<</W 0>>/F 4/A<</Type/Action/S/URI/URI(https://db-engines.com/en/ranking_trend/system/PostgreSQL) >>/StructParent 4>>
endobj
26 0 obj
<</Type/XObject/Subtype/Image/Width 374/Height 208/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 27 0 R/Filter/FlateDecode/Length 9539>>
stream
x����[Y���z���UBH @�w�EAdYmY�\�[���{���o�����%a������}_���J������=������['��{��������������������qE�����wo-��xj��@�V(���^$�Eb����������W$��V����I�#`���az��+qFa��N��������477�65HVQ/�
�\X�O$&&frrl��H���X$���P��-�� �9?9���Ji��p�zaX�a�&�h
�(�`H���;R�IQ)�j��V�d����=@�������y~!M�h^Qu�HFSgG;�1�m=���B��{[$zt��Z��8r��a}�tw��*�L��h�"Y.-�=L�������(N�^$~s���M����O���X��H
z!�$1���e���5$%�q\���\|Kn���]�L,3���Q�C :8t�qy�_���aX
�}G�0�a����X�z�QFX�
	����?��%�-{����@D[__�X\D<-i��P���(�@��R_�
HLL|���d5Kr6��u�P�����}>2�3�b�|gV2�D�>����o���Pl��g�c2������{6��`�#�Q����iO�H$?����, ?[E�X/jn�"Fu���j6gP���]��j��*D���z5B���P)��Q�yYWi���Ay2D111w��Z((I)b�^����������'@��g�EF��B������Ul��ON��
�Bf�����"g���uKh��_������,���n���:�~����X]]I{Z�����J}������
�/�iZ��
��������k����[4�h��e�		��'5bbb.����Y:�t���u}���$�}y������������>����0j�^��<���A{���`Hs�=#�|����x�h�2��==�i�
44��Z�H�X&��O��6+������bc�n��s8���*+#���S�`F/� ",�-�u5�P����"996�c�\lWz{�s��t�	��a~��wJR�*�0�'��2��������?\�r��DyYI�-��% �����'�d�EBHD���(��j����V82"��5��|�2��c�f�bA�bs������������}���&)i�p��������p$��_��a0����H�4�E�w�J��� ��+����C���r���hSS���JLH�}��������N�lA���}zL]0%�Y��w?����S��g��,�T\��x���s�}fs�b��?j|�X�h��Bv?�w7�"�������vy������������z�buue~�������b����U������d5~~����J�m$V�]��l^*)^����zz�c�h_i�Y������~'gd������e���Lt&��a,r�����������G����5����{��gw�$�Ip��#�q��q&�W[�����#xG��M���s���[������z	����p��a�� �����d6��T_#��k�AV�p�����v����n�hh������3�����niV��|>�#�z!���G��0�-��#��7c�����y�o:�=���@����i�(�2����JK��J$��qX�#D�wZs��o��Q���u9�RQ�4<45u���(99����HGQ/w��Z���ol[�m�>����+6vff�56>�9�����a�} B�o��i������ ����
�J��������3SP�<��W.^x^�H�h9-�&���{j��(�)#����WM
������/��}���y����X6D��?���X&Y�����L��y���f�(c�e�A!��� ��6���"�RA�c�������B�w>;��c��|cw��X��3�%��|+��H>I��������'��Z ��~����b�"^�T����6��<���.��C�33_47>}���XD��!���)�7ia��j
��UA�v��7��/��^n~�����M�
��F�#IK;�:<$bN<
����`�l��UcY=��������:�E�j=��Ho�8�0�E/�~��������/,���p����v-��Jj�O�[)P�?h;D6L�����rr�u�x���Xf�|5@�w���'{�lR%m]y[}I���R������s�����E�}�����v�ci�)�II���7�L���-^���T�v��@����x|u>���M�J���������f�9�%9)�_���t��0:Tp���_�@
��-�w�bH��fR������Bv"55�r�1��o]��.�
�S���6�Y	��3-�����pjjjll,�u���\5�8X��h�AQ8��*���lQaAjJ
�l[���
�
D�ngA�m�.�$&X���w����h/F`��_�:��ZW21�8$�3�N�~{�u��Z���R\�x�f���K�&$$��t���6t����������}��C�������M���}����}���1�^�@SZZ,�j�8<kL����]�p0��[��[�\�����k$��Ph����w�>�k�.���2��
_�4IV�j`���@
����v�>��aT��z���Rn���@k�a0i��Do�rQ��xi�2�IOHQ,�a�X=�833���E>�P(���{sY�yp���_��Wj`�f�������f�*+`�w��-��I{��D�����[*�ub����}USS}���&�qqbTJ�E��ht��2}3G�@��3R��m{������{i/p�&�w�DVY��^P��J�`����j���-!��<�������|{^LL��l)��q�JY$��x�D��@HP�����Gt+Q
V���������s8?9�X�/2��w5�����A"S��\�GOy�8Q��1�PP����v�k��(d�b�0'!P) [!Z4�b�,d�~����{f[b0���]x��
��R��&������'{w��M���i>r�$I0�2�!]d����	�N�s�M��

�LMM��p�J�����F���&�_u ;G|<~����
�u��_��>5���L�)>���.WY��i�A/ 4�7B��%��&�����#C���c�_(*������BAj*������	&�N�dd\����KNJ��������W��B#�����a@�R���s��~_����Am$�XG����	�c�3���o�NK\������j��b��Av������B�umd�����sl�}��NO_�&I1Y��A��5Z�A@��h���L�����8�hbj��rI��~R�5�$2D��%`��7�-?_�Z\T=V��-���V�����P}�@@�X�K��eE� f��������|�O�A����������%�-�
~���}�������_��]�0N��`��]�����Q������@v����[�Z����O�YSw��y���:5�\Q>�jA����'��-�����'�)���������x�����+]��2�K�uk�i�
�U�U��#'N6[���������!9)������Aj�;�nd}@"S=�H5r;s��uw1���eW;}��#;Gr;�8]�hq7u"����|nv2(#��������a��z$���X1���*�,�t����#{�@��������?I*�{�#�� '���Q,[,&��Jh?I@HRR��fo�F����,�H��^������������e��i?L@p���F���%���������N0#�{}���:�/"�USSOw'���XN��66���H�����h���2��@����5�6�f�G{~�p(�R�1����<� �ub(Fc5!�LE�:/����x�-����e���~���'����@���h!F���gb�_+�}����B���� �
uE?35 �2����C���Az�%%��gRSRh?O@x�����)C�<%<��KD����=F�?���r�'�y�Y}d���7N�������������sk��>�b'�2��koh������������^H!����h�[�3��d%��!FH���&�a�����H���,���+k�?vp�����Q��%����Z�s0����[���g����u|k�P�i��4�7��R����kHw��W�k��1���������f�z}��ts���(K(���R����w'b����0g.����K\�bm���&vu�c����x��8w���>r��e����-qfF<7*��{���#bM�ry�bq�B�]�X���i��q#_
{����}M��W���5uk�;E���J]��K�qqq�) ����M�;�E����Z�A}T9�����6@j�"�Pv/d����|���td����O�}41~6?�������M,�}�Vk�aeO��~:>������&Wi���T��`5a�|r��vQ"^�Oaz�('1�.�f���s����w��#>>����rF�h`��3�� �z!{����s�yy/���or\�K*�Xii��w/���r���)2|j@�����-�����1'��K�^������Y�.K}
���H��+[NWY��s���6\..q��k�_�o/LY�5p_/A{�X�@zej�����l+���(f��@��Oh���QZZ��H����k��\�%N[�b��s�4��F�D�y��FG]�����V������X���U���J�r�� ����6s������V����h��j�%s�����}����X_SSM��o_~���W��s7�yzd��v�n�x^F|�.�o'�u�
C��������))�h_r����e�����!�~�I�k>���v$�}
��O�F��a�/*��3�=|PUY��e�}������c�V>Y�k"�|QU%��D�����In�5b>V�'H�Y�M�_��R��FBB����wfe9�s�
��0(�4������a�C^^�x�������K���[SSR��Z(���\�%S�V�vy����iyoC�hU�Jk�.���M�B_�H����UU�� �z�AJ�G�hY�H�`��������'z��;�GS]]�\�sskM�sse�H�Z��'�����$�9��G���m�lqQ!�+
��<���=��'�+Xs
�+
qjH�LY~����K[Z�Y��~����������O�|����9��=��$O�:�l��y��*J�M]����}9/����v�D�"�	C��)���@[���Pgg;�����6'-�@f�YyT���d���Z������'��*&{g�iB��d^�t�h�i_E�K||����`�������'G�����-r�l�>y��yp�l1�v�JJ����������z�d�1�w�9�ID.�����i��?	�f���u��3Q(J�e]������y���4�d V��
@���y���������y��\cw���w�W� ��r4�h�3X������?�?�+x�8�]�	�7J{������������uB"����3S�'��v��]�y��%�r�}
\�n�fK�7}U�dd��8�MOGOw'�xQ6�����x��K/z�������������@������;��~{����� �aV�	rX�{��e����9��R~��K�Pi<rPv����8��Dw���1tC���W����
���X�-����ZG�bV��r"�}��-[*�Dw��vn�?D���_54�LtN����a�A�D�e%W.�����ZE��v���IP%�y�j�A������mG[i_$@������Agr�>
G��"����.�45������Z����K��L�y�v|$�8�^6g�n��#8����2��'�$�I�D@�����?|~{���>��+f���!�5[0�2���k��g���.3Q_{�l!�ta���gNegC�Zqzdh� _dx�a��#0xir��5>	��=|���^6�U�����CP
���a<��/�+G��b^�p�`����"�zn�^d�3�����h����/����[*(�k�����q]����SQ����t������q�/1d������t�K@��g�0�_Y���={ ����?��UC���	�R*<���J�+i����'�����t~{��r�Y���A7�0�O��rQ1B��a&99Y����;!��j��S��V���M��E��9|���0��xioo]*+u�d�@�����������Eii�/����%N���y�_�����'����/�_�-�����<����X���6���j����9�Y�a�=���|��j}�l�pw��VK��.���'��r�����yL�Cjj���R�����B�u��=w�&�0;�1\8?��X�������N~�M��2�!�R�����~���/�%9|�e�����Y�!��w���=C{������TWW#�����@��a>e?���Wu����}/g��Z���������V@��zH{��j
�-e����A�V8��}Z��Bn^Ow���h��!e�;$�kE�����!+����)�����X/N]qIi	��N�k��Zuq����i��G��/����X���?��!���a���w����Sh����P+���`�|�^�H�pq��cM�xbr�����87e"������)gN��5��%��n��|�(Tx�bckk���3��$*x>�`h���|�k��K��R����������/mG[^��0���hK�Em5�^=3s�YP �.���D�����*Q�-+&���������/��������If<�Kx�L�����\R
���/�hj�W��b~�����u�f�����Wl�X�����S�=i@g��?|{������o����������������l�0�z�����F����ZE�D#�+-����c����{L{���#���o��v���1�6�����������O,Z,"���P������K,���7RR���.�����eS��$��vI~��b����A{6@���7������[�*<�H"1�nd�����D/�5���F$����]u>�F
,��bcc�O���l�x^�����V`�7mG��y�'
xILL|����Nj2�]
l�������/j����TW0����<���556[�Y~����j[��M��3�/_�= �HLH�|��rq���6h*S�z�0����bQ���!(�Qtv���5�����K�3�C���? 1���.�y|���?�N;�����@^5T�|�I��������XX����_���F�[���!�0����45�������h������j��`!v~K��4��I/�5{nv���?%���:,�k^|l��
^..
|
II{�^����e����M�0�-d�Nc�b�@��H���S/**D�i��P	��m#0��b
|:���o�<Z,*�/����
�q�%����n�O&���([ko'm�x]�*�^IKLcD�9�L{��6!'�����d���8_
���@t/�����K��F�3�0���_</�&-��_�x^�>a���
j8a#99���c��Ib9�����b��d����|Jb�����i$&$��qM�X%O|��=��~E�����������b��S|~3��;�6���;=�|n��H{{������a��I�`���������r��m��j��S�y�9�~�3�3(O	XG�=o��C�x	�w��rCwoM�#�m���������V�!;��DV���vz��]_������b�>�9C�����|��<B��=@`�c0�=�=� �����C���A�T���|���6P2HLL��O9m6��zv��n;J{t��GY�uu5�����{�~��c�o[[22L�'���z��^����0~YQI{\�Na�����}�����vKA�8$3����9��d�`(�#C��H���2BK99��,zz����YN0l�8ye��l�"���w?��y�I
f����:��vcP��v�v�)k���A}Nw����Z{+(��$>>����<!�dn;�B{D�N�d2����H�#�]��T�B�W��T����WG�df�i�)����3�a����,jUaU�����qGsie����0�3(�AV��uv4@�������%V�L�&�2R���O��v)b������uRSR~z��Rv�^h���_����b�@�$��P������U�/���������Q�|2l�b�|��k�%{S��^�?�II{h��H�d_������
�ed��W�[a�K�wg�����F�����,!�#�]��+F?������bbbh�(���	Wq���Q�4ai���R���k2)J���!X-���uK�QQ/������d��;���(h���p���nK�VA�%m���'.q�����>� :P���>WU���V�:a�����~#���_P`�=p����cj8�[�~}B���a_W�����5QCR��;wn-�����g� U:�n�hkii1�QM455�j���Sly4L��9�Xn�do||<�!M���W�vL��oj��_�E���w�v5!�� 5%err���#X����)0X�M��}�g�n�C �8y��US�U����jo&���k�:����:i���b1����0��A"��E}�A2�,��75��,����v���#�"3����b��HW�B���\�4�\X���4�j@��{�RSSi�����/����x�z������
��
��r�������,Q��j�������S��x<�M9=c���a�|�������O�&��54x���Vbcco���\V��0X��l�-��3���0�b��K_iRc}����5f�"���1��@STX��3�$��A	��{�n�)��������l&��i��Df���� ���=����[���'e	�����|{��:��\^��-��	4������Lh����(����r�$J�$4=�{'..����zRSR���J</1��p��	s�������������9�tw��*����������$'%

�t���k��2f�����
�p��b��HfX��)��������������"��LIGn^{{+�A�}����k� �mW����=(����~�e�4RC�����
�1��L9M&	agn����#`[����e��)!�ug�r ����\�t~!+GB���)��`��)���<���c��=�!/�{QZ�zf81!��X��X-��-�;;�i��Iv�����P�����b��w/�Q;���V5
endstream
endobj
27 0 obj
<</Type/XObject/Subtype/Image/Width 374/Height 208/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 2779>>
stream
x���yT��/�"*�D��]#6��%Q�K-�F�6� '���*�=9��Fl��OISkOT<.�n��+�D��h�C\�ET�M�{����7����o���O�|��<��w��B444444����>_����>������1]�Y���C�,�NA�K���I�1��wF��u9qHn4J����"�V2M�C'���C���w���C��-��y�Y���k��_�C�L�ah!��f]n�o/�9��
</2H�D���(�y:D>4��x@GR=�/��J��KM�,3��i�|'-���3��TN�>��%�����jK����s����k�%�!��s�b�h*�M:s:�z�O�f}/t6�T���aB�����?�K��KDR��B7�x��a�s��t>U��~N�ZIC
�pKg@'T!��Ig2����/q����HnZ����!�X,l�e�����&���e?�/�����M�z@�V4��:o������������K�Io�~F������8f�u���?�~���(�"H7R[���A�F�d?I���G�k�+x��y3��=�ze��'�t#_�>
zuHY%�t5���?�Dt8Ox �t#�_���7�B1��������c�`���!C&���n��z�(�@}�����W
LWQZ:�~�����P�����~���aHf�3��oV�����)���B�3_w��#�=��f��>��l�_������<O�^�.CF/�|	Z���-���l����������"h�,���v#=r���S}�Uu�^�NA������@+���Z��p������De��x:J���V%��buHO��`h]�`g�3�GA��s}C ��Nr��-<�����N0�Z����Q��.N9���T|�������EiI��������Nq2�'�GA��6&%���U�g0\QZl*W�V�����[��D��KJ�b]i}!
��/B;�J��YF�P����pE��
�^�w�M���X���2�Z��.��6l��B'�Gi"�cs�������^��M	�Z�-����)�v"?DC{6��Fh%rP�lc��$kD��q�z9�oC��#��SG��"OW��Zu�Z�LT�EUo�����8x�������y�u;��B����^���p� ��;�y��
m���5�:d#�����[u�z^�pi"��VzX��W=T�c����Qp��BY,�"_"�-0��F�w1�y��9�~{�]�I�th�����r>`@w��X�Y��|�gw�l�?K}]��Zx#���-���\1F��0�
�g��?��*����j
�R���54|��:��_p���������/������H:��I01�PT�"a��B
�~3�5$o
�sUL����������r�P�|��q����1�V��n���4!}��m����pV��������hi8n>CS�t>��$}sk;��;'�d�D	������9��J���ol_B�Q�o����h��}��G1��c��/�mQ�C��u���� �Mp]n����	y3������w���C����Lp�
���-f�w�z����}��g���M6�W�z,tt���n�	��������n
�j����z�����t��p��(���U�u�
�K�Da�x��cn\�	��G�i^&��H����NkN�(��l���l �����Y-�o����j�*S����QYpK8#��u�tb=��v��C'eg�v!��\��W�{�G��_B'��{Y��s0��#����$����������\�u^E3����Sx/ea8���s���:!���>�a�������w�C��k�~�����j�m�?T�CG���s�zkb1\����J���R�/�C�3 [-���t^��c8�u�������/O�"ry����:���{\1��@�Y��kP���NU�ubi�{u�tL=�p�*��~��k�������NK��()�a����{P���������6��Y�~w,tD,=y
�NWZ�7:��.�-��S�uB|Wp�cQ���X�����\����p���2Ca��X���G�/������(��,���bK8!7���A�3����������Jv���
L��m���t���������N&��I�1�����sp��x���<b�=��a��C�uj�NH����n��Dt���2�u���@v���t�,������P�btL�����6t	`V��D���Z�Y'�*X6�������V�uB�gY~����L��B��,��jx�&C<�5���!6���X�v��7��ct
�h�7��!��Z��S�ub�f�M�h�v��5Z'd�}�{;��B������V��(L���0�w+:����e�6S�	�J��i�i�:�����_��]���6f���� 2]�EK�5�RMG���rz~f�=:
8&��g��E�HT0�d<�bt"*�����yt":����^��%
��qp� ��%
�I�����a0�u���:%��������C��?������~���4`?����,��S?�j�����h�����/��B��v���P����W1_i�6�o�~B��������k�%����r}�{�aV�T�4m�T0��I�����s�I�|� t��T��Dq!=x-6j��:���-���c�F���W
�6F*L��@�����wk��2X���&t
����a���$�qHa�M�!��!��v8t
y���;t
�St��VE �t








%�w��q
endstream
endobj
28 0 obj
<</Type/XObject/Subtype/Image/Width 1166/Height 661/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 27298>>
stream
x����OT����?��4�����o���s���t����&�����"���&��x��B�Z��VT\FqDP�
*(���>0��|��x�Y�����f���9g�y��fg ��~�?���e��uttd�,s���w�yg�����|��W�.��V97X�z��M�ZZZ&''
o�j�a���������ff&����)))�F��P�\N%


�[�b��
6���x<�x�M����"��&�\��d�����U�^}����Q�=-��@��CCCKS���_�#G��]������K^�f�w�}'�l�]����K�����}�Y�S����d���a�a�wxQ�
�e�|ll�������R{��Wn�����V�.y�T�|>����W�9s�L��m��S�\����M>y��o���b�t�\N����k�\���pO���/v]]������]07�`|||��-�k�w�^����v�\��������������
�e��|�]����o�-���7|-Ij�P9�j�����j�*}X3g+�Sjz���o�
�R*I����+�����{��g����E:o�%����,�]��555���M�$�,fa���������t��>|��7$����^������6�
���@��s�zI-�P���Vi.���e-W��:�H�%����������Z�z���w3[�;w�H�Y�vm���I��?���w[vo�����?��3�GRX������>���������V---�������R*I��9�?~|��KR3_��������-�:r�������qa����b��U�V9��Sms��G��%��K�����c�VR={����z��4BD2IM_�����~�m��5�����ws�������
5��K/�t���7n�����^J�������Q�/_.W'�4�E�����n�:�p���w��z�����DjkkUi��&���+�Y5G_a�����_��}�����$k�����O<�,���������{�n�0��'���\��juu�	H�9z<��>�L�/g��aCoo���8mmm���9r{������������X>�w�}���K�������s�8$P�_u]/���������K
�������f�0|�O����o��y�=������
%��M�OS
�?��WT^��I��K������a����<��s}}}���%LjR����Oe�>�`bbb��:��Z���S^^.UD���13aJIM���-[�(�?m����{��d�EK"{��W����<�p���������$�Lj�Z����o����)U�_|Q?�����J9���,�@���>2��B�����.�+�;c���� �vs����/��RJ855%?K�2Df�>/7j��R��{"����_eO�%�=����]v;x��v^��v���M�6��/wL�#x��k{��~��9�����9���?�P�[2u{y��?���]���/�����������=#mj?���<)�pu���_|���}���r��r�r��IVR
#�����<{����688(_`y���E%'=z��[o�%�X&5����S;�eK�+z��
�n��+w�\T����[�hu��f�
�$5�J������V�2���f�ssR��f�����B����W��Oc"5�u��I�S����L��3�<�dR�:�\�>%����B��s���{U���]��'��r�4*��Z�����[�J�P?���]�_���j�zVW���_�z��)�c������w�,�=Q.3M���$��K�����~�E�S-:��(u����'S����������'��H��%.9�����A�����c��C.D.G?E��R����Kj*��[��vIM~/�&�W�\�����~�^{�5�������&�����v#�,P�IM�0���������Zg���$���f�.����
	���G�Z������������C����~��|k��]�r��z�D�{�=�����K���j�I�y=5	������W;�V�������|���D]��KO�V<	k�i��y<����������,k�����$�6m����6_��|}YHR�I����}�Y�����|�/���~����ri*Jk����~�3�%59��B�`�5s(���o�&�����x�n��zi���X+������#�d����A����USN����:NM��!Il,//_f�~VJI�\�Tw@���e����������������A3��}���������~���?�h��@�S������M�k
$S�Wo��K���Kj�����S��o����s��e��%-QJ���gyEvIM���[�Kh9N��<	��5�����V���o�?VhmjH����2%aR����S,��j�H������������)�I������f�cS��]��l������[����b��������L#������[o����P���r�|�����[HRs�J1�����S
2f������j.�$�u����c����"���-���l�]`�_Q=m����g����S����P(���o��`��U��*a��,�Z�����N�:��k��J��
]+�����/�gso:5}�d�����|>�qiS����T�4w}�; I�\0I:���*��-�y���-�������I��D=�{U��v���1�o�$�,P�
�5���/k��,+�Z�����Zf�,�K^S�^����b�u����R�Im���s���f���6+�a:�.MR[���I-���z����U���i\����WTc�(Us9��,1�
�T�+++
��������S*@�����������KP��Rk�W���������X/!)Rmm��''f�dY���X�B?%`gg��h�u�Jj�s�}�������h�����������d3�XJ~F3������E}{�+�)��Z~	U�$�hz_QE}������"4>|���
1 �,�CUje��JX��U����,�IM*��=��ar)���^��$���s��:��y�zK�����i+�Y�����L%5������T������Mt_SS���K�VD��J��^�Y�
�����o�VO����U��^jX��
KN'A��������k�����������������I
`�,+�R�Tkx=������
ur������	��=��lR�������w�~�zii���G
=�����r"5C�����r������g��c��>�����,�����)�omV=v�����c�ZY.M�cJ�Y~�"I�}$�^�rE�k!IM��$#������f��-�<q���
y�u�����d���|m�����Yo�����K��'�D>}}(�f���j$�����T@~����������>|XJ�|RK���&���)�W�Q>����K�/���'%��q����~P�^�vMM>S__o��'�,�VA�����5k�o����o��d�VN��9����	������'���
���^�n�\�T,%�����=�kd/0�)R����P����������k7AM(����J1d��K%Y+��Z��u]�����[��6l����.�/��\�R���{������\X��.�������\_���Z��R���&��=68�>�R^��r�r�/]��_����-%��f��`r.�c�2HI�)�O���dII�CI	����Z6�z��;w��z��;���n�<�L�J�_�<�t���Y$���O5j;���"�gy�D3��F��y������k@u4�Q����j��`��L���!��%�_x����P�b��v����������W_}U?�(��!ri����`�o�.--����+W���{dd�r�������������'�K�������S��i���b.//ooo�����������,'�(N{����g�������B!�irs����J�_|�����`&A����{����r��>��{��g7�KO��*++{��������W���C>�l-W��~	k��������@�
6�9s�����qo|b*�����������vA�Hj`���z�NCC��R{{�zr���7o���KvS/m������wj�X���Og�f��T@���Od����H$�S����]R���K�8�v�?��$�IvK��$5�d����KvSmg������M�t)!��%m������������9��<i����TOMRg���FR�\���������u
A<�H\�"C�Z�E<��8,�LD�,S��i��Y� +T�����i������� ��� ��� ��� ��� ��� ������_�p�E�
F��l�������:��V4y�Z��\���t�=���#��,�I�I
�w��$�r�l�&�����()Ob�6�O"Gv�E;����S;g���I
�w'��-sSE�����"�����f���Z��C�7y-�(��gj)������|g�d���&��*a���3H��G��������T�gD�Hj�"�����r9|n0j7j����������ni���E���S��T�����?��\oF������k�<���'�B�!�dk�[�]���q���Z��c�e9�LBS�3�����D{��>;����c����AJv�M-CHj@�U5c���S|4��Y�#�|@�<W���Q�;��
;���>�l��1���{>x������ONX7���<W	�DR2�n^��sS|�}���@d8fnz��w?4}��SF����+�i"6s7;��u0T����w)����CR��R
x�����1SHj@f�5��7Z���m�����-S5�@���=��������;Ij�t��u4�0���=���A$5@���~���a}�ju��[l�'5���X�/�V�~�$(�XW���ZM�oW0y�~7s����o9���E���g�5�3��h$t����}�q�����M��$RrnwKnL�����
&a�<�N�1�Q�_�]ayI"��8��I
P�&��vyxb�Q�l�o��������=2qv �kw��f^}��!�����09{mGH�q,��8�Z���}lr����cy�W�#Q[��.s��D��������84`�g��|�� �nnDX���G��c�����L���j����"q��Z^�q�Kv���CJ���BR���{{F'����a���x��`d���5$�%3�����G�Z� �"�r���J�}x�z������w'�)u�&�-k�.1����P<$�����"�����%��:�����,Q�������4�/����j�I
�@��~p�����Kp���=bv������/G��`�����fLe�"�������\����g,.�������G� vC������ �
��\�%��/��o<4�	N[�����S;i#����w�VJ��[�Z��5�p$5��6��U���)���U5����ER@�	N���V/�M���>��a�9S=]46�:���6y�p�4 U$5�5���+����'~�k���b���Hj�_��LE��R������_����4 �M$5�/�5m+=���;� �(�I����_�t�R�,%����gm����"q	w�Q2rI
��9�I(�v�4�������f�|�/����Zi�]�l
����a���>�O�x�������}L�������������'6��{�5��)�����%I����2������***"�H'%� ����~����/�$��w�[��i�P&�K��d��IMB��&M�(;���q^�����Q����K��p�%/�\�$5��_������85I
yJ[�z�+��@���9�s�c����S�Z�f��>��ZRSGH�$I
y����jP���hX���
Y���Q��V3����@L����P����:.�5���)�tF�G95��l�(��a�9O��%���(�����<��R1�xo0�eAb�H9�y�G}��������k@>���������6��vY��x<��=
IM�����+_��w1�
I
y��o~"���H����<���G����&��C����\��zc���l.��{l���
@!� g���Z�g�������.��Hj�M��LE������������t�o�2��V��t"(p$5��w�.�U4�����T���%5��]:`q������$�e�t��"� 79�S��
g�t��"� gm=i������d�h��"� gU�
�<����L��b@R@n�cdR��_��z�M�FFC� � 7m=�h����{'����CR@r�ET�Z���l���rMh">?*������AR@���K!�����l���r��7�b���,���ER@N���_bZ�Oh��Q�Hj�nGU����H��dI
9b"6S��hf����l��2�rDc��jP��v�bGR@.��V1m�;����GR@.�����D�l��>��"���\}�s��3��~�2��r9����7��R�����l9��L�d�h@N � %�H��������7����h����y3[T ����hl��#��V�\��`���j�<�~k�.F���CR@�jO�a�R
kv1M�&~������Cv�j�;���Hj@B$5$��+���R:��qj;B�T~ �������j�E���a������� ��������M[���[��y���d8�S��5��e;���FO�i�Z4�bj�<�@���7Y����U����L�q����C�I��c^�X�������G%i�JLc�����
����T�-{������'�Sz�����P��u�?����Bj�E���P��,&�������y�M����}�� �9q}\�Z�����9�{dR��u�*�	H�bDR(`U�~��V�N�-7�[�>9�}�w�>eG<7m�Vzcj�OO��&�$@R(`\cZ�`�5�a����n���{T���f$��W=���&�jw��{�Hj�!�}u�o�y$8}ih���������iJ���=-?>���<���O=��g$5�V���%��C�:"���D�f�����1�y�o��,��r�!�D�E�X����
���m.�qj����l?e�[�QO2�i_$�����P[O��5��@A����)���}��#���6�V��o�M��V�n��*��&��
��?������]���oDj�������CNW�
8��������C9���a���>��M����k��_��������K�����P`��Nj�(�����������P�T(��.�f��
h���%���***"�H'%�����t]Gh���!��AW_��FDKF����:wYL)^���t8TJ)��B��/�\Z���K��$��_�7�������/p����	s����&[���8�SK�T������Td���$siI���$���3}[��v-������$��e��V�J��I��?�~+=����l���)u}T$~V5g���
���|�������������6�M�4[�B\��&�,%�,�@T�����F��Q0����i�4��W�_�; �ex�����BI
��If��V�L��g��8w��Eyc�@�l���kMTOHz?�x����^1�"�d$|���,��"x���V���e���w�?������M����Q���K��C���-��DT�2CR[�Y����u
�l�k�!^}yr������}����;�W�yx���=-C�i
[���l_(��x<����5��6����a�2}����q�D�n?\�������j�3�"PHjK����]����������K�<{.��'�	N�w�%�Id�q$	f�d
I
`iDc3����X1mU�Ao��+�K�������^�%BRXS����
h��u Z����c_�8��!�U��� ������U�:te,��U����j��%(-��#�,���c����d�?�7n��z�Qm�I
 �|����	W_��`t$8�������{>��A,��j;�
z
I
 �����n�ON�v���1m�J�O�u@1 �d��rieG��Si�q���Y
(B$5�$]���V4y��|u���a�:��6L�E
@q#��D�Z���I
k������0�/�J��f���"����@���
���7�>v�e��;�v;������� SHj��94���U��)�����U}�$DR���#d��>:����t�8m��~�n����S�E���V�������e)m����Bz�MZ�c9�
��@1���b�m�����@]Gh�}c�!�IX3��5i ������%=��"������|0��;\r�6�U5���f���8�������$��@�84Q�d�.w�;o�K8
�D-��,G�1O�EBR��n������<�1�Xm9�Lr_�; ;W�|�V+_@���@�r�Z���S}6p�7�r$8-�LR�l�]a"��#�����8L�c{0�'$5P�������v�	I
$�65f���Hj��<OW�
l�����hrI
��hlf�s�Ed���z�d��|"�Ij����"���4��RkUkLo$8�����Z�]�_��k��2v���aH��� ���@���7iX��������+L+�������������C�,C� ��)�,���-��+l��>8�9;q8>��Xb�H|����U����N���zF'?:n���]+��($5�#��_.�w����u�,'W�}�U�Qc������������`���3IOZ;7��e�eQ����np�V^����8��3�Ls�~�%��p`&ik$8��G"�]n��7�p(m���?a���bH���@��e�C��5��@Rv{�,��6�O�����8���<S	�5&����������y����@�"�P�$Ci�G^�LCj;���{0z��xCw�a�$�X����p��	�x�u j���A}�|�xU�_�C�; O.���EDR�hY.��[%?�G�-b�ap�9�IL�[����D��IC�L�w$5������d�Ao��>����������~|�w�����C��N�N�o�RO����q�Ha�I
����xt�������M�7r��U����=�v+o��kHj�d���f���e��j��,�w�bX��E��@�R���:g��������^�@g��8;7�L�Y�>�#�$��K5��l��jK$5
�$���'�E<7�^�����;tn�j��%�J��p�2�,I
�#��2�2�yw�������~�i��=��hY�"(B$5
��	������=(;j���|n��l_;��DB��4	b�{�����	NW>��������Hj������M�����T����l`��@�i��&������I���p2@� ��G�����j;~}���������+V_����BR ���O8[��r����9��@�\�Z�>;�SkI���4_�4D
��Hj��y
Mf#�iIm�]a�
�|DR �H���m��<�;��3��n6�^�Zm5�@vK� ������EcY��{drw[�y��u�BBR GDc36��J9-f���fd���7��_�vNuu���b���>�O{�����������g����*�<��������'�a�T�#��v���3�]��f��A�(�@�������I�$m�/��[b��K���y��=9�777Ow���<�@B��u�+�g��]�[Z;5:_����q!d�t���7�D����������]�V
h������	�%�@BTG��cbz�t����p��K����w�r�-6@'i+d��&����
!�����7Jj��'5�X_�K�%�p=�^���V�l�q�$���BLRk��:Qi?Z�"��}j�������z)�!�5�RR��(��5������t��B(�^��o,��Ij�/�=Z~�leX;zi��R
�V��������~���_Zm~a����k�w�y\����3��Z=(�g��)!Ij;^Q��o�w�V;7r?�G��s5���Z[6|9�����yE���(��'8U�`�9>��������7�����CJ��������L/��@DR�����B��Bdk�Xh1I
�`eu#*�����V����� 	>��V������������!��|4�q�$����hBmp|�t�Ij�r�1�����%Sj<&�@k-���x����;��Z=�BR����^>Z����J��@RHj�B��3!����L��@�Hj�B�?�Dj�'
�	"�@�um.���N/��'��J6�������n��z,$���r��b���An��c Y$5h����W��������V������%�|�M�]�\j�XHI
Z��+����)��z(�Q:�>p��/����V��Q�����W�	�3c��~3::��X��V���$5�{�w{!Jj��f�vL�P�����bQ�����rl�%�������-����/��)������#C���������W��6I
������s3�Yt�~��z*�ZqO8^N�L����R�T���������A5DR�g11�R��Ja�����T��n`�bZ)���������{�Hj�,�E������\t�w[�+�K�l���+�h�Z����p^[=�����i��zL{�L��j:vP)��'������[�dY�8��������J�JI-��f���Bq��������G�����?�W7.|���~2{�������wk>�6EEvIuc�6j~-�@M!@������f�����������=������fk�sl�
V���h-�i���1"�@����cZt����Ce��S���r_u��p%����$5�vy�Pw����7>�F�f�+�~�+���|E?����7pg!$�(�
�/V�I
�������O��?T��y-����L��JT����e
�����/5@������x\Q�V���OR�j��7J;12�����IjPaqe�OWs5c��s3����t:���c�#����k�[��_9?�rYQ�c�Y1
��Tw��O
�o*�:4�{d.�F���}�����\�����f���&�++=�p�B����:������5DR�3
�Y�X�����T�����z�<�l6����N�����'���R�T���I
�T����W<�3���
�B___������f���Tn��L���|�����gGuKk�Th�Z��
k��@KT���d��Q�D�
��o���q>�NBj�O
vIYQ
��;W����N��W���'����G�[�s�
���!��.�k������L��}��lt~�~L���BGvJ�>��T*�����!m��@[�>�T'�eJ���Ru�x��>5���l6���[�%���d��h15@�����9��Y��T\:{����n��~�\(���}��`�(��_��#��L~-&������Q��m*�zx(Sz7$���K���qQ���J��$�.��Z;�FHj$_|���f��/��^��w���E��B�(	��P^��D�Gh\��>4������\8��y����/�����i�b�4Y�1���t�(�N8p �h��b1d�Ij��Tn�HU������1��R�LYt�������*�W���#��Z��zuL���R3��56�@W���G�����F�CFS��v$��Z!L�O���Y^]���p����2�+I
��:5:��������LL��)�qQ����&��,�r�7&����W����X>MV}T���t�����T*U���J?����bE�z��|E��x���?��Ij�7x��R����c�t�`���������;�r��b���h�Y��B��1���`�`��v��Q������6j��[�ZQ�zj���G5Z�������?��?T�Q���h<�R��T*]����Q5HR�	�+1KO�ZX\~�2.�}�����3W�?�,p}r��i����m���}FR�	5g�*�������v���@w{a��q,������>#�PS�bw�������p�0��[��O	q�:@<I
�j!�U���s3S���������X�v%]��^����Y�MR��IjT�W����?���p�i���J��_$i'�#�P�f%����������0�Y�1���C��xZy������|+~9��{��=��s�����_/���k��pC������OGo=����L�����(�����������J�D�Tn5D�zK�������Yj$\Y!�����'�-D����cHaQ@��<����������]��B��Ij���iB���b�lh'F����`�
����t:]~1�J5�O-����JI��M�oU��ZHm!�5���@
q�����x>��W�_Y��t"��B�j���q�l���7�>�b#B�*��U�����������'��b�d�$5��R(��ws��H��v�����g�k�kv@�q����bN-�.6��J���1F��Z)�����J!n����:������U���O���0�R�FQ�����p�B����������I�1\om�iQ��(�Ij���j!7}�~���9�2]��������V�gtt�U����V�\{��qzv~��n��\LR���������'�Ls�hG���D-�T,������=�(��7���w������ ����Z����B�:y�dt�J?�g��rLR��
:V��uP�io�|
�3*���PGG��5�@T6$�JE'����k�$���Q��e����Q�?Hj�����k���U�ic��-�"�t�w���P�5�<�[��^���IR��n�����������~ 9����S�k��6�YR9�P(z{{%5+�?\�Fj��[=�QE����V�I���74��b���������~I
�d��-���~iv��G:I6����I���H3$5�}lyu���L�i]g�\P������1�[��ws>�����h������tEH�Bq=��yc�p��j�};���>nHj���������74P��<yRR��2���1-:�r6��q��looo[�u�&�T�>�44�?>���pcr���i������v�M~�)Q?5����Bq=�������=-$�#C��/v��y�����m]�(�$��q���,��~rj�FE�p�=2��Ge�kG?��~���]�#wbz%&�����DR(�����V�c�����>7��]�O'������|#�{$5����_�c�w��,�_:.Oh�@'J��������V����;�kl6�v����W?���u������4��L:_����E��_��W*��DVsU�7?�%��E�[��~cr)|������|���?�t?�e���[Z�n���������o�DTQdtt��i��t��G�!��Ey��{+���lVh���+��rj�������P~CxZ��VO9���31I����m
;����$�5*������^���{B,�?S|�������f��/���O!������7����|n��l� ��K�?_���_3��woz����L�5����/��5d�����t:���4CR�lbz�HYH�~�]W���1�e����[��'|iy2
���������==�E��n���~�|�X�7�����@E���K����������
�N�j����z��+�X34EG����������zh�����-�p���^83}flazq���S����>12����r���f3��������C�~2[�;~���hP"���zK���G_3��/�����G�9����a<!�E��@��WJ�������dF��vVQ�BR�)���v�@�?��������c�%�����d������>���z�2K-�`_���d���f�|��Ku'�������������n0����f{{{+:���L��L��`!�m��'oT~,���Uol���,3~Mf8�t5~�VknU_W���Q'�������,�S��������K���SM���ZS~!7mw�X��X��-|cyQ���f�4�'�J��(�[�����{LR��/�jF��^�,,7:{�{�����Ky'���k�ol�����#s�F�C�jn��v�d�/�Y�(W/�8p�]��Ij@2};[�JM��2��������Rc�������]�\���������8��A@;j�-i5Ij@}3��u�q`����_/FSW�5�����M[}���������F���L~%qSQ��z��$����
I
H��~X	-���N���B�������������og�������&x�*��c������Lj4-j~�J��u�VQ���z����G�Q��:;��)��THgo]�Ea-����L/�uonI{��t�l;?t y$5�g48�X�tN�,�>Xza���RO�V�k����Z����7�+����y��8��Hj@K��Q�1���}n�A��)����7>�F�����!������p�??���u�^~� ��9����V�I����-�+M����~~��
���~��.��S����[IV(z{{%5��E�3j�yqv�O�1�T�i�mE
�'�t����]�U����w�����v����[�1~ �T�����Nj�6<�<�evc�@�Ij����������%�c�$�����$5`�}�����]��������M�>�$���]R(���)��\�����������Ra�_����l����J�*����tOO���@��<Q(OL��f��]����=����;��r�!���#�����S�5�S�Y���h;��������S0��r6WX��/{�|bd��P&�$���_����ZuRk�k���2����%>B�[o��N��f{zz�fj'O��NBLK�R�ZC$5`g���q�3�B���/
h���Q@�O
�X�K�����������S:��_�c���c�^z��atR�}j�����������G���������og������i���w����#��R]���������r�+/���h�l6���U]��]f�$5�q������^<3������,�i@�'���5I
�V(��\�x�~���L��r��Q�Tn���Rh��Y�Z4��&:����+l��NZ8�x�P��D��P��������mh!m�l@{��\kGP��JIj�F;�������%���-��e��~1��N�Hj@��w�.	1-�J��I
H����z)��u*���$V��h�Z�F�J���1��DjN�U/���OM�} i�^WI�RQdK,I
���d��o/|�-�8V��������(�����D-�T,�L2I
�����V�+N����v����#��0I
�\�(��i��2��[�$�95��M/��Kj�'�Z=:�m����|��D&����\��������w�=Z���)�� �����]�=80}�*�
�Y��/�=�����u��{obz���.G�R��+���n����#VV7��t���;7r���'F��
g��=h@���O-�
�K$5�{G/��\dx�������Aog�s|8=��k��}2@�Hj@�Bq��������G�����7bL�����O��H��M{��V<6�d4��G��Tn5$��lu��O\�W����{L���Su��du��f�Wwk@K�(D
���
h�1|�p��������������^�>8�h9�^rfl!zZ�����U�B���-�V��<Bz
�����?\������?��9�����x>�jH�/�?���V�<<��[�
 Y$5�A�j�����d����7�T��8�w���S���o/d>����v}r�b"����sdwj>�����E1
 q$5�A!j�����[�]��Zu��p�b:���^J�G���-��+='|]�!�zp'���S$5�A�F��e�pT�|y��-���z�X�R��C���V�6��/�|4��r������w��_n��j�k��J6������"R.��J?t���'����{�Tn������b�Ti���������:@�Ij@���lLVs������(���mW�Ht�k�����O�.]�w��s�=Wz�����d~�T��y}[$5xv�+��R��~8s���f��
gw�~|R���s_|��������m�"$@KD�����EM��B���'��(���Z�����5SXw���������M�.�<��W_�ju�������S��=��:\�e�t��'�W�dp|q�G��j6�~����o���%��B4+�pCHm!�5�u�4�P\����O�l<2�y{d.�_������Tb���s+�[����G��l���kw�z�{�����w��"�S�Z��Yx���m���!����z��O�S�l�������Z��"���������bx�� �j��]{���J�|�Z�����66g��[)�A#������>hq��Bq=�"X���>S��J����Y3I
�RL��p\���-�����O��p,Og;��1=��[���c��$����� ��z�����M�y��W��~�G��/�����m�������Q�*��V-�f��U��=��q��}��������h���YL�k�3'F�j���CM���H�R�=��k��I
�������*�����u�X��VJj�t����P(�zhO'�A#��@�����c���;�b�������lWWWh!����FI-\�����{:I
���[���~�����t�PV���k�o���'
QL;5:�����(��R�RRK���O
��������c��>������t���I-��V��!�����}E�hQLk�u�I
b\�������=��$5�g6o�#�!�A=�b�#@�*U�o�@�$���
���;��s!L���mpv5�����/�{h?������F�����Da�t�+�z���'�B�{{dnh<_��
���+�=��t:����.�+Hj��c������s���\v����{B^�xZ��~c3��ws��������������. %5�Q�_5cZtLL��W��E�����=���s37���s���������b�����w���{����z��h=�P\��i���G���5$5����BLR;�A�����|1��W�QA����sj����u8i�=k��hbz%&�����o/d^N=^��t��Eh���h���v�)����^���z���Z�Ia��,z�����JN�]I2I�6��������L��c�[�H�?�������l��l6���S��1�.�(���/��}�B��>z\���P���\u���;��.�8I����Z�I
�01�r��H�z��T�kO���D�|���K��[�5[�Hu��]X��28�X^��Pfl�����%�����J�a*�_��^���z�MLhw*�@�BL�����W�S
���O}����!S��m���S��*�_��#��Pf�y����,������oW��d���n5�nz�$����������v��V��3c�2�P(���U,wL�R������Hj��gLj������"��hfyU��d��������5/&�����6n��OY���[[��<��+O���C��,�_������r~��?�������������l1�����.���$�����U�e�$��������3�q/��p��|��V]����
��~�0[:�S{��.>����t��[Y�}F?5�WE����Vsa-|��p��9��^xkd��/�L_M?���'������mO�5�����O��Jv~i=����|xZ8�����K��;������F;�ip�QO+���8z>��v�������_��\{)5�r��Q���y���������1����xjt���~����rCO�������t}r��_�����b�U�
���<���\����s��sd(��_6������T��ci������������d"l*�:pg��p��'����{T�L�B�p�F�ps��v��`���T�1����"��$�Nv}r�^ *-A����O*7�!�E�������W���&������
����R����H�V�i����^���J=bv��������*=��98����b�d:��qB"Y��C-Z�X����5�b*�Z���f����_��M����������!^m�������$>:P��:Z��S+�D��h/}�k_<;�PE'�?\�[����JM����j�5[�.o!QZ��S���T�P���G�H�f����ma�����#�S'F�.O�5�V���Ri���P&<SL�!��8%�������b#I&����Ly��r1���I�|
�$��T\����_����k������j��nM��������&tI�/����S�c��ri�Z�hQqH`�Hj|�����a��Q��_}��4$�����-���������ZBR�p�%�����:���J�{OR�p�(��1I��)�	$�u��n*��#�u8%� �$������8�Z�S�HR�dJ�@2Ij�L�~H&I��]�F�~H"I���M�~H$I����D?$�������d��:���L�Z�z�D?$����n?T�JR�XJ�@bIj��_*�	%�u�7�������:��?�(��$�u,%� �$���pN�~H.I�3)�I&�u�KJ�@�Ij�I�~H2I�3S�LR�L�
>.�jT�~H"I�3)�I&�u�GOJ��D?$�����<)��@�~H$I�]��D?$����No��U�~H*I�����wY�~H(I�)�	'�u�h��%� �$�N�S����	%�u��J�g��P���i������:���|�Z�Q��OR�4���q���*�	&�u%� �$��R*���R��Iw���{����5�z������W�V�3z�����d2�}���QJ%��S�b��u����<d���Ja-�RX�Bd+Od�?�������f��IjE�~h�����Cq,
q���Y/������:I��l��?�D?lC��tV����h��|���S�%�5b*�zcri��r&����<��D��������-Z	Y��N�>�x,�-R
q��FI������8�<O�_�������i�@uAuQS.WC���.��.8����.�^0x���.�h�lk�d[}�HE�cSf�23"�<'��������������[.d���������|c�*��J�/Im�B"��g2����}��\��}������),������N�'c��tF��/N�q��x�����6�.��e��"}�(r��/7�����������t�:v�����'�5����<���CQ�J-�Q���bZ���i^���Ds��@�$���$�1Z�z�^���m��6�|�g�%�_W�jOR+���GEI��K��n]�������JL�=��i���l��V�����������M,������}j|����U����I-D�S7�^��:����������c����O�D��}73�Uq���(��p{a�m�Q������8�0U�plbq ���K��?~c������/4p���_�D��9�yC74EQR{�A����v_��^���������8����q������L�lr����E5?m�������R�����z���Zy���E9���5p8��r�ZIu��
���w�Qkn������ON=l���J�@��&�����m�����Ss��[N�n�6^i����obo lB��Jl;4^�����-K��7��s���*��`7lB��S{t��{��,w��[F����A5���D�i%��	�~,r��|��yq��#c��C�T�:�D?4K�zj�_\Om���/�6l�_7�oe����Z}m�/��>�����f)Jj����'o.|si�����:���2�qv�5���9���nP����w�������y%+`s*Oj��[@�{��!��g�]��.�����
A{�jQ�x���X��fR���������x���+#?_���	ucz)z7���o���������47�/�:`m&����WF�����T����g�����X��X4��������,��V?�\�I��k�
]��Sg�*%�t�����g���A��7e�h�����Z��OO�4
��������5�/�m��w���d��M�|94Q�I-��Z�?D���.J�����ON�3�1�<����U�4WGI���VG���������������u����#g�4WGI-��	���LO[5@����(�,�W ���V%��9��n~��ky�_S�j������V�y�d8�����t��k�(��]���g����b����S��4��z�ZJ�����6l nv�P��YY���{����L����9�����7Bpt���t��������m<����QR�]l�����s����QOU3���BR���/C�G�K|�h���>z�G��{��
�<]��]+m�q���s�*$���gQ<�����5����ux����o���FkWb��������������	���kZ�����[}���eq��Z�}�����;F�ITKj��j��\���������+����;z��Dk����j�����p�{�&Q-�-=k���������*�
-[���5z+�]j��{4ls	`3������
����i�F�U3zu>�6J����+o�+�&z��j���+���thz�
��������;ys�F�M�=;usa����]�\��������wo�����3�O�����Z�
o]��?����Imy��&d�
i�7�Zk����3�Ylv�y7���Z��l-&�����@�u���^le���n�}�K�g�Z�{n���g�V�#�/�V��Bt���U��l���+����4o�H7I-.0��r����r�n8�2%����'��wjd�����O4;4�Z�c��;��O�y~���������<�*^ ���������r^�k5h�n�Z��GV*��~W}I�3O�bZ�b��YiK&~y�������l����3�������Rw�h�������4Y�I��k����T//I��m?����B����j]xaWo��Z7c�`�{�/�����v{�Nf�[���,�M�eR�[|>�
��z����}��*T��GQ��O-[���L;26_���no�������������rk���Q�&�&��P�Y*Pl�3��m�zp�� �QJQ2^���s�Kv5���$��D[�}����J�f5h�n�ZQ�T�����������g��ZY�
������Ein����.���%7���Q�f5h�n�ZI�82�qX�y�����g��7��|�d��+�{mOg�8JR�����U�?=]���Q}j�����s��Q�f����6V+�x����j����we����c��ZI^�-��{V������w��<��g���.���)��@�UNj��!�};N<�}}�?z��\h�X����m)�~�a��ou>ns�`�����(���������*;'�\��p�����m�`Q��z4��Z��Wv�<�?x!���P������d����Hb��k{&sW7kS��qwX�h!�fw]��-�n�3OSp�k����j9�R��
���P�&��y�����w[�N�������WV��������I*���Vi���W����j�s�Lblx��O�vdl>���GO������s�.�z�v_��*�@�u��B���~�������
b,f���Vkh���X������^	>o}���it���?�j���3�0��ZF��e�`(t������OO?J���T�����������!���7����8�:�j.���!�]�za ��V��?^��?�]&��c�[C
�g:����;^��������/'~��DHm_�{|��|�ie��������'��������{2�����N.���,��b�����(2|u���{.�j<����O������L��o����~�m�@���dH��33��r9�n60�_��f� �p`����G
����o��I�������U�{��/����]m
;��66��o
������x���K�m?���Y\���gYXz����Q��+�����������zjc���������~�`���c���.L�D���oo�������c�<��pi�.���fc�Z��?<Z-y1��v���]�;�/����/�'!���!Fw����v�UKc�%o��06<���%������'�:$��6����W��[����f�;_�\*�g��'5}j06<�o�N�~��U��*���2T� E�dd���������;�V���S�p���m�
q@�^$���f��S�c�j�����3�q~�yn����O�1q���[5I�&�]��`t��s�__�6���FQhms�P�Hj��*��S���]mV 	a-U2��h�CW����d�o�>9�.9����g�gWx�����#�^$��w��B|x��:�<�>�0lolbq|&]%rz��_������zh��WQg��������?
z�!������\��f��:z>��Qt�������t��N�Wx�z���e��_.\�:�������#�_x�4"�\=Jj�{�����������u���uu����t�qJ����k�Q>��)�����a8�d��m�_z�O
h��%���Vh�u>���;�W���{d�k��?��(���4B��Z����j�o~��VZ<������l��<�]Z��=Mj?�Ub�yb1��CWZ�!�=����	!&{���7��#� =MjK��_����uTo��}S�x����b�46@��4���^Y1-�������)l�/��������V��3��x��7��O-��y���I-xsuy�������X�4����J#�!�}u�q��6���2�3;y
���$��3O�hv��|���;�������I��I-������;����g?>��������Ij�/�VO�����{���H�OR;qc~dm������W�{���������VE�����)kR��uR_+'��B����4Z��Zn�Z���I��I���%Imj�Y����z����xX��LU��uR;26_�^�3��'h�^'����!��&��z�����*���<���OO?��34ZV���{�����G�-d���z�t����@�$5�����FR�I
�n$5�����FR�I
�n$5�����FR�I
�n$5�����FR�I
�n$5�����FR�I
�n$5�����FR�I
�n$5�����FR�I
�n$5������������{o����n@�Ij�h��]��u�;k>���u%�����%�3g��4;�V�{�>p������%�M=�Dh�;/J�<��������fQ���4�pD*�I
�+���ux�2������!Q*�SCH!�s1�������^���;�O�kQ��rV��I�/!�-~��������&%��dJ�R��{.j9�	Ij�P��?�*�.�p���G�&����u{���RR�E��J�4���K����;��{�^x|crW�h�KRb�4Q��� ��{m��
�bH�'.�����'��P��n���+�|T���'O�;�wf_K6&{�bE�*����w�}w�g��[��,oa�����u�]%�����&�(���wRt{I�M�-���;`5nL��=i�Oq$5h��z{9���.�������~�d@�.��:�(~_����OS�I����>��������R�M�97�%����vbB�X������f�dyR������z���%���V�������<zH��0��C�W��!#G����MHR�&
W��5m��&�K]���MR|q^2H/u����N�e������Q7s���q��r^��&�e3o�;�D��H������x�z��I�h'��R#B�Ij��*7����/
6'I
��G}j%�����N�J����]xgk����O����n�����1GGG����'I��%cQ�H��������{�-lR>�1w'�&e�����y�E%j[�1�1��Hj�D=�������q�fR��G���euSQ$��l��u�<��V��(]��'I
��v���_���m[��+W����K�Z���/OMM�?����so���
�������c�F?��-�;I�$FU����f���eg�%[�N���R�����IF%EQ*�~��h����-[�d����Hn
�.h!����=Tx^I
�+{���zjE%5R{^��H������I�|"[���R�1;��(��vf%o��~l�4GGI-���j�,����YV/����)
��V��h���Zt����;���[������R3���JT�}H�J��D��w���G����s���<������j�}��W�N�J��$����z���3�2;�/wTj*M��gx����W�S[N��[��1�m6x�~���Ar�$5���n�,�Y��6IjE�U����_�hSQR����=h��C��qR��
���r�����v1�*���7�?mhR���g�<R��4�p��`L��
�={-�5��f��l6��f��mq�i��2p%�
�(�����;z�������/��~"[O��go\�~o���U���q����7�Vy;���+�&�[7�����]�3�f�*o��n^�~w���u���<~���������9���Z���������7�����3!�������A������qozv������������N]����f_�lr�u������n]9��O7&�
#7��+b�,�!+_���6$�����NR�Z�IjC@R�$Im8HjM'�5��6$�������I��p���NRk:ImHjM'�
I
�$�� �5���t�����NR�$Ij�ARk:I��$�! �5��6$5H������t�Z�IjC@Rk:ImHj�$�
I��$��������t���� IR�Z�IjM'�
I��$�! �A��6$�����NR�Z�IjC@R�����d���[AWn��H�n�wgf��
��v�����A����O>z�xa������������`vbfn��6��?��Wk�?��Q�gt�K/�t���������_~9��O>$�-�9z��m���6��p[�l����1���[��#�=ud��C������){N�gh�G���:���`����p��������?�S�5=R�m��i��O6\�i���L���4�5���G*\�,'N��AO���������{��Gq�WI�Q8_�_�pc�d����p�DgV�=�=k�p�|�It�������U����E�]���K�>�`|��J�V�S/��o��%����t�O���a���G_������o�
�aJ��gc����o���-��sO��X;%����LtXS7&�Z��*����E�?�rB�%�R�K�K����� ��Y���N����VO��
���.y������9�}�<�R_���{=��/��}���L6�e?o���D�����Q��n������#��=�e���+Jj�%��K��wS��PR���A��A��e�����N����z�f�R%u����+�S��V������z&����d:4K��8ud?�r?����N��K}.��	��Z�I-y�(��Y��"{�R��(��d\Z�_*kW� �.'�����^1(��R�4�s5���=@����~�1�N�grG?�G����'�������b�q��Z�c�BR�I��r�&{9��%bt��g~?�Y���L�����Z��ty�����!����o����Y�7�gr��r�&L��G}������~�c�C����-F?&K��;�O��2��*)���-�T��t�3����nNCY��h�Y������sT��)JjI���PE����"��Z�}@U�(1�o����/e ��M�[]��Hr����7�_j�O�vjB���N�
ER�j'����3�����P%�������wJq�*���Z���G7���U������
��bb�|V;
E�>+9
+T�O�w��^}P�zf��������vK�c*���{yY��$��\&2����"�%�zH������%w�.���/��H������i���A���o�NO�e����4L~Wf/NrV�!bZts=�����z�������!
endstream
endobj
29 0 obj
<</Type/Font/Subtype/Type0/BaseFont/ArialMT/Encoding/Identity-H/DescendantFonts 30 0 R/ToUnicode 2852 0 R>>
endobj
30 0 obj
[ 31 0 R] 
endobj
31 0 obj
<</BaseFont/ArialMT/Subtype/CIDFontType2/Type/Font/CIDToGIDMap/Identity/DW 1000/CIDSystemInfo 32 0 R/FontDescriptor 33 0 R/W 2854 0 R>>
endobj
32 0 obj
<</Ordering(Identity) /Registry(Adobe) /Supplement 0>>
endobj
33 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 2853 0 R>>
endobj
34 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 35 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 5>>
endobj
35 0 obj
<</Filter/FlateDecode/Length 2099>>
stream
x��Ymo��n���@QtuHV|��+rHpi�4r�A���Z[��r���wfH.)kw�CU�	,�!�%�����l�[]�;���K���	g���/cs�3�
�.OO>����'����]���vY�����?��������a�C�X����[������[I��70�����Rh�j����i4�[k[/�������Af�i'p����U>6H��-�V��ZG����HN
��u����22!"�6��
 ���]+=�4p��5l,��B�\��Q�������dVP�������\BD��O���s�T��t��e�\�Hf
F�������^E2yq���a���H�(#	�����������4��	B��yE`�T�i\�:`5b�sw��a6t.�q9�MH��8�j��c���1��\k�u�B>uQA��h��
k������R�n=�4?��Vy`�i�6$"�8���}q �-/��w*:���;t3I���Z�^������lh���1�(d�0B�P/Y���G�Y�"W���PM�vADm�{�d'F�d'�m�����"�Zs�F9�{���bMYV��l�����t��j�4�Yat�f��bB������{5�9Ava��Av#���!9�e ���<�}Q�:<,C5Y�������B@2�~��g�$h�dF9X��W@76DUc(�m��}`�}���]�kC*�r�Z�9e.T
�qu���t��}���)F�P�t��L���Q�� 5D�c�&���6����d�,#�SG�"�E�D�'��!s+�e2������GPENyl������#��������a�K�r��k�5����a���K�0Jd��V��dr-�TP�_��Ipx��8q\�r������[��6�G
Q#��� 11�,K��,B@��u����n�cRF�Q�4�jr���DI�{���N�#����������"5��PE�����X�A*�����-�/w���.��eT_�����$K���������vXNg��c~,�pT�r�%���&ni��+�}T�!�� �.�\������q�C'h��c�7�2rn ]c�&���(x����%�8`��5���<	:V��X#�"���1�<V�rSq}+3�&tQ\P5n���ac�&�����C�pT�;,�$�)�UVp��1M��n^�$� �p�u� �9����`0xC��
0&�����g�T��$�#H�.f2�r`1r&���F���c�����!�W���be��SP:��'G)���%���L�it��/�"#���u���%K"�!����k�d
��������NI���"�(�lS�>lB�MQS�b�����Q���^z����O�j��������������"��� �~d��M?�|�������WQ����=2^�@��$�6��.�M$��L@���� �����%�����������jn���[���}g����\�����?'�����'�g������S*����K�,�O?�O~�l�$U�}�����TC)���Z�\����f4��g�{��Q���R.z�����;���>�us��
�\����Zz�44g���N��f��;r�_?�o���Klf���_�W��e����{��:�G��X��#E�>��v���@s4��\5��m��`7h����4�+�������[��wKt��h��;�?A(����W�������	zl|�����h�����|V3��\���������'q?-v�X��"~�<yD�=bD	(���_E�;��Qi8��������*�R�f��_Cs������D�oc��t�9{?�����{<�����>'U�������<�4��=H8_.6h����G�Y?���me �C}4 �fN�})��c�^��(
/����x����y�
"
V�Z��;�Q�-Ps���W������f����2�}�]N?�/W��n�YO���a���f���^�P��P�/(��|����vb�������@<��h$������73�
o&������p���>��O�]U�X�[~"U�F���y�`���=���2�����=��
!i;
endstream
endobj
36 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image38 38 0 R/Image40 40 0 R/Image42 42 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 37 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 6>>
endobj
37 0 obj
<</Filter/FlateDecode/Length 3089>>
stream
x��Zmo�6�n��A��#��d��I�6���~H�aO^�{�w���3CJ����������!g��3��!������rZm��w/�?��,J���R"3��d��������������3�]}:<`�U��b�%}�������K��o�J�:&��oe!-��,��%��f9��1������;����Z���LX]0�-}�p� ]��*���F��BX�����ZXUH��$
��ph�3Y����6�L��U�D��	�������P8`Q��T~m�����������N�4��RR����t	���}�`��gTDQ�A���L�K�a���u��z�rb/�p���iG��sB�G�x��-��N��w�_*NcJTA@(kx�"P�6��4.
�H�c�s7�sd�zX������n`�$!n��l!E��0���P6�`
������[F��1�*��F����j�.4���N�o����tZw+"����X��8�h��lj;�
M��Z�H��������e�aq'+�<�aUQ���!�),am����tE^V����P*��0�H����~�
s?q?�Fw�kii�j�r��(��Bma�XR���"a0�����CXa���a4���A"	~/�yc��u���qc�
�iU��>�%�"���*�:�:B�0/�����SC@a��#[�:I����b���A�7xVC��^�����h��MaSC(Kb��v�K�\��E���B�S��Bma������P�t������#�Ah���P*������M1���XFD���3G�3��.i���qH�nfC9��@�p�c�-�U��@�P�����:���@3��|C��~�mcw?
�e���%'�K~��"1�'�`��~bJ��ijB��pY��ok`1����%zy?��O��%�����rq�:������.����%�6
Dh��~b1��	�4\�a��%%�"��@kB�0�����RBI)���������#����l�F%u}ld��Roj��p��?������{A�#	�R�D����dcC"\b��F�08�b��x_���V�.t���JQ��aGz_��Q�n ^C(�%aQ��X���)
4d4���t���	(�����@�0��p����3�H���Z���#J�u�Q�J���Rk�a��#���i"���
NS��i�����T�B�]�"��uV7(V�'����:8s��l���.OB8��o|$�-��d�6:�h�W��Q<����H��,��z�
I_Z2���"aN�Z�i8�t�;�����du�u���!K"� S�#k��I0���+n#�I�
-�hE����A��z`�bo����RT�w��t��;9*����� ^��+�-����5��g0���������K���}�����oN�������� �48v��s���ek��_�M$����������Mv��5�%����z=��|�U�U6�=;�����yJ��zjF���tu������&��S�R���'0��z������:�Eu�Q��R�_��.��v"�u���1�e�'<�o��z3�v�:�Y��.�����X|-c�B���/^{�Ps��R�L�JNw�������������W�.Q�Q8��(��Y��t���j.�It�'{�Q���}������w2�a�����V�?��`*��nQkX���f�'|5��}Bo��c���?�}��pK�����e��}�?�Pu3�c����;4�t���-vntv�������u�1���xW��iZ����-�)g��vv1yb��%�O�������|He<_�WX
����=�#���'�G�N���)F����w>H��7����#���2�����S*�����G<*��H�p��v���G�+���0,{�������F�]p�T�n��M�.�	��7���C�R�w��s����Q
S�5�?����W�0�K�sI��v�j�����KKl����D��Q.
�4.5�����-�i�Q���.ngG>�����e\�;�����O�M�����Lo��i���N� ����[�=h��7��~���� x��C�l�!�/�:8p:��p�m���>�D�8�o�}�����c��Vg��Y���S��)�(]]�6!����4��v3�~��j���� ���������o64����W��?.�u;��;��%���|�3�p����-Hx���mS}Q,��7],�q���6�����7��Q�N�^Y�%����������q���ZF��q�����&4���+��
�}��w������(n���(�K=����tFI0\�}g�-F�w���O��t�T��&P|��N�kp���'��v�����������j��b=>����^�����k�3�S�:�O�aW��r���r��	��
b��naa�����?��Z��_Ml���7f� q��*��q_�oA
zT�\�O$�eN�Y.��O�[��`�������[L�_�6}-�5e�K�0���i�F��P����B��Z�S�)��*�

\���4���r����� Q����
�?��C,�:�<���+��7�x��`
`�����z
�s4�4o��fu�_h����:�i���!
����q�$ �3	GS4t������
n�&���7������p�W�z5
��f�g���2���N���$Jh)������o��8���N��J|����u����%�z����\��5�V]:�����D�������hk��;
��7x�i9S�f����������m���;��Q�������u���2���������i���*V<���;*H	�7�`R�c��e���Z��O��`r��ntIru����Qv9��U����~�F��5r�n��8�ofC8�w����g�86�-�Ga�MW_&��	Ysuu��3���[6.������v�m�p����v_�
��W���g+U���]�]k���n�X�hz��z�sN��7C�����uw*�.2�3R����s���O��k]A��
N���]��`��D�
endstream
endobj
38 0 obj
<</Type/XObject/Subtype/Image/Width 333/Height 333/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 39 0 R/Filter/FlateDecode/Length 3418>>
stream
x����[�W�����A"��"����0�"��,AH !!�����su���$����\���Z�7�����~�9e|g��������z��o�/��_�wl�w����<���������������ee����?|X�������������gh��������33��m����pxec�O���4;;��dr|����/�����?�4�~[[���=~\_YY~���`���������oo���K�7~����FY�����������������^^�7=�`��/;;�x<�L��R�_M�aGG����dr{w7�����nl,��|Z2������}�����VT<o���z��p7���������[[[���<8�?==n�	�W��''���{I3o>����)��M����swCC�����V~~����G���?�z�-nMMUG�Ss_����������B{�������������'���G��_�����`VV��O�� gdN�yh5��&�������H$dnz�w�g�y)���b��O�>�����'�������������m.�7n�Kv�9��6����d��{��?Z���r�^YVV�y\�(����47��������(���[Z����g��\e�semm���ks
������:������n4�>;;��yG0x�O�!=��s>��F�p�N��������g����x��e0�ss�����<o������3����������
��o�\��0�WWW����Q����g�)iuu���������b����Rs�����j.��
�;;�rr���<����w��};tp�k�$���y��Xinn����}v�CVVV{�S>��n����������9�����KK3|uL���hOO_j��e���������.�T*6::TXX`�L�j��������i��Nv�3\������'W�����}�Ln[?����tqq��������^OWW��1�m�����n�>e����b{{��id��w���_�]yy�kk���!���tt���3n2��O������X����}�`Aaa���[?�,
3o���m�O��\�=�G"���	d�����
���30�g����m{{���O�N��|�����K���hk�2wJfff(�d����-�����1wq���������N-����}����CL���|������������������������������������������������.����>��_��2�|ss�������X:��P?99�:��#��t�����m�������|��J2w�+����H�9D�\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��rd��C���"s���Rd92W��!G�J�9��\)2��+E��#s��r�|uu!//76tw?�OD��<��.,���O��`i��t$:>�#sH\$s���������}���A����;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;��]�;(33saa���ci[2��������C|>�������s��t_��`w�x���)##���C��|����g�����~;���/�[\__��������W�L��
��T�>wH+�����e�M���|�����/��yv_:��[]]��������%v_:������.��j������YUUi���&�������&�}�0������!�JJ�#����'_,�Y^�����������XS��_��~�`���933a���wp����e����t�^Y(������h���J�C"���Z���3-���v766�������Nss����dr���!������l��
v���4w�����J��e����4����$�;��,��;1�V����Y�������i���X?���6==���i����@ `.���"��%�����m�2�WZ����_����_�G3�G��c���}x�~,��]8�j��m�/\��9�����v��N]]-?���3o���������
��vTSS���f�����$1::���}�py<���]����g�������|��	W�)�<���+��+;���������rm�#\uOFE��Hd���egZ*����}��Fq����7;�O/���������G|�:�*;;���esS���;���������w����������X���(\����'_gf&jk���.��
�%������q6�3���������u������u��y��������MG"��������ByE�S���p���WW��nnn,(��1��<��d���~����W�������\__^[[b?v�?�MM�{�f������������~O���zpy����($G�
endstream
endobj
39 0 obj
<</Type/XObject/Subtype/Image/Width 333/Height 333/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 1684>>
stream
x���{h�u�q�9;�/���Z��`3W�F�b�K����Ia��E�P�f((�e�&#K�e��
�,��6#����l%c[�M��]��J�es�y���{����.�;�7�������k�0_ �jI��7��~r�7|�/�5��:v��w����?1}���+V�����������������]�,}���SF?<x`����_y��C	��=:m��
_���;VP\~��Q���N�������V.��6�����8���Y}]>����O�;�wM����������9yd��a��Z���7'c�����h;��������O�
� �4�{rZz����n�E+�Z>���:���������u~I���$r<{����j�@�G�(�]���:����]�����%���.�j��DO��Jr��z~!�-Vi�K�!��/�t�n�����C�Y�*e�Mh�3~���U�y�����q�������zx�p[{�:�����w�n�V��G���]���{<�\�?tg��	9P2��u�����Zw�����z��3������9��Nl�o��n���7wyio����N�+�����s�1��s5b]�F���c�1���YGr��L������d]�������r5/YWr�7��:���Zwr$��:������Qx�u('Jfx���m������C9�������l�7b���1��)DL!b
S��B�"���c�4!����sm)�n��4���2����
b�EL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
S��B�"�1��)DL!b
���?%v�lhF��Y�)k�������!�1��)DL!b
S��B�"�1��)DL!b
S��B��i�u('<3��:��O�Y�r"��	3��IwlAn�������D���#�]�#���7��9wp��M,u=b��XV���>�g�k~�A�\�X8$����������K��z���1,tw���"��m|-�L�3��O��������9�d]��A��kVE�:u��?-p�zi�:�S�
Q�5[�_�|��s��V#�:['r.q�u��;9��P,RZ���Z���[�b����������V����������Y���o���;l]�~5k�Y��]`Z�u���l�c]��`Z�u�kE2{[wq'02����*2zYWq�7`��G����T�|$�G����m�Ue���$�^�s��+�-��o]��B����?D�������%$�����/:1����3�{�=�'��O=
�%���;n�moK�~c���
���S/ .jy�8���@S�� �
endstream
endobj
40 0 obj
<</Type/XObject/Subtype/Image/Width 375/Height 121/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 41 0 R/Filter/FlateDecode/Length 155>>
stream
x���1���Om
��k�
endstream
endobj
41 0 obj
<</Type/XObject/Subtype/Image/Width 375/Height 121/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 1996>>
stream
x����[1k�����<����(�RIH�!!��x��?������=�������>����Z���}���?X
��2���
��
�K�I���a�u�<i5)��D:AiY�h�����[�F=KK��)^�Ns�������}�/����j�'�I��8<���y*��(d��d�����
E|�;FhX��I\�K�O�B@A*��B�,���rZ��u�w�O���K����ht;�f]��N��
4�5��5l��K��v8OT��a���=\�vL_�.����?��_;��D���@@6%��a��|s~�����w�p��D���� ��L���]+&v�Z��*N��/��R���#�;����K�<h�kP�F�&�q��m8��E�^�M��,j��)�~pYn
��H��B.�k���6I�n�&��>X���8l=�6�r�H��T�#Q��/g:��b�F���kL���W(����=��i�a#~?U�b����[�EJ��H�=�����7G4�q���`���}@�o�t��x�3k�K����o
A��L���e@j���_��C��i��fC6����V���J �k��6����| ���'������]�����`F�M������z������C�*hWI{�hep'�-����(h�����U��hW��
�]@�*�vU���U��hW��
�]@�*�vU���U��hW��
�]@�*�vU���U��hW��
�]@�*�vU���U���W���j}����1���j}�r@	�����-���
E@������k����}v+^nzPD��X}p+�b�i�p��ut��)�v��������U$������M��]!P�K-���������'u����<OA�<����k]h1���������))�z��������$k�����:c(v�X�]NB���FvY�#R�Y�#���hN����(k�K-f;x����,�k���=�}�T@a>�.��CH��S�������3����������Y���T��D;F�[�3��k��Gw,_���^�<x,��������q����a�����1Bk��~�����V!�~=�bI�,xL=�<N��p8CH�b��z�J��q�����6��[����]&��U��.�]�p��q��d�mV��jZ�L']!�Z^w�S�Y�8?�4_��p���
�(�t�._�-��N���H���T������p4)M6��7G�������q*N����U<�vz��x{����/��N=��cf����G���[�m���m6��g�p�}s�SI���a��#��GiL�����\"��r4ctE�!����d�(%�K�Rq�~g~I.��j)}�g71!���'�|#���l��Q������8uO�����kI\n�.�w����^���kY�@>?���vFyl�����cf5����7���.��n�t�o<�B��b�5����������&y��h�����=tqW����"��f9{�2i�]�zw8��������s��|�����:�P�;��?]{,��b��1������b*��62���Ka���T���O ��"S9N���1/�[l1g^����z��4�k��$������e7|^xzm���y��x4�6��e��s|��0Vo� 4�]:&��,�/�5$c�	�3�J���
�*�~���s�a�U�h}�
���r�<�kKO��r"�����	'�7�Z��hH4�/B�xu~��0/3N�6�i��\�06.�����	�����m�T��R*o�3�xd��/�,e?��)^/���`8Esf��Gc��	�@<v|��V#
��>����T6�>��+���5�y��k�
 �r�m#Gk���Iv�M�#���q�x�����
#�����X���Z��[w��{���q�x�<A��P�(RR�c�N�Z�p�F�Z�,]�^����R>o$����RE�Ni(��O3k��c����J�i
endstream
endobj
42 0 obj
<</Type/XObject/Subtype/Image/Width 340/Height 112/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 43 0 R/Filter/FlateDecode/Length 133>>
stream
x���
���Om��O
endstream
endobj
43 0 obj
<</Type/XObject/Subtype/Image/Width 340/Height 112/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 7654>>
stream
x��]���8����s&��������{
������3sw��zhC��B������=�Az����=�Az���S4��/���W��|�X.���|v�fs��'�/�����f��f���w��j	~r��r�9��Wp��[�_�f��^�M��5Y�����v�]/~��g��V�ei�����%V�����^��,K���5a��K��[�����[��<K�}�u`�f������h�������X�� i�*�s���ag�M:���~���79���N�<4��r���������W�����Or�/��b����<�u��,4E75q��>]�W�%g�� =K����M�]&g����C�X�vM��.^��r#�A�([X�i���+�3qu���p�<+��+<M5���f�DQ��=LmX�~�$a��zK}����f���|�KE	zu��;��;AY���'�����>��%�f���?b�P�nZ�,@X����*���j��`��~w�u�7{A1l�6��r~JO���>u�r=����w���ki����	uQ��K���jRK�|&-�y:�����XG������N��Y^�����S;�M���4rtU����|hO.e���*.�x2�
��d�����������u����,����T3��"����'���F�-�f~|:VYZ���
�,�?)JV�}�"|Cj��N<'�Y
�� ���E�;�~}��0�X��~t��l��ai�'���S�qQ�e��!���������,._^�m���NU�+�8��"+���IZV,���<Vi�Z�u�5E����P�L�u(#;���8����?�G�Ew��e�esy�8����!�,)�����p}���y����q<=�����\�eY�,���?�u��
�6iN������UU;�-����&�iR�p!��=����Y����|i��O����
�L���4�U��C]�����U�t<��<�uw���QZ�]�tm�FP���B�p����������{����g�x7����W};�$�����Pd�?�����y?�Y�^���C<�U{<��q�\���O/#K���T��B�
mf+�S�c�����f��Cz��2�MG����	U���<]K^�V��,����u(�����U�o�*+��/OC����G�����3%�&_
��6���c��<�&�����4�������������v�h�F<��e�X�n�|y�(��n�X�8��<%Q��XQ�}��k��p�����C3I�Oi�C6}�k0��`�-�+���
P�mY���5]�I<d��<u��%aZ�������XDQZ�f8A�&`u����X�Y��m�Y�������������]�K�ql
l��lT�Q9>�[�Eua�^.C��g��8�IV5�#�qG,E��|%:y
-�w��a���<�	y��oW$9�"�31TE^V%�~��J������_�`���;�,K�
Z4��=	��J�mzn�F5����s_���M�*x�a\���I74���W�����G��f�\��e%|Q2�I�T}K�
O���-�0)����I�O����%�l��n�*�m7J"���i���~9����=��4p=����;^��$j�g+[H|��C�!}JN��������{���UQ@��D~{�� �P�^�g��Z�b8�%�4�5Y���^J^�1�kJ�_N��K�5=C�,����.�?x��H������K�!��M'L����I�X{���Axk����K�.�Pj��J��������v/�2�>�����s�@hsl��t�SS�AWS��]B�&����;A{A���c[�&��n{�g���b��"��EC��S\��f/����F�/7�Q����z�\m�;Au�V�!�{��K*����'�d	]Wk*=���nN��R��n���{�p��6�D�\m���v���7X�i��b���D�����2%�)��S�Jj��l��n��G<S��I��\���,��}��-
Myh������I��5%
�k�J��g+�^��*��
/YI�:Y��KtK��R&X:ow�{��q����oc�������y<�?�9�X/�B��D�*;A�=���f�x���������i�"��a7{���*}��AR������i3����������X���GJqo��'X�������}#_��dP���aJ��
nC>`Ef�+�?_e���]���(?���W����Ka����������!��1fd�
%D�d5��'��oQ�4��	��G�%R�����L� ��� \A,v�S������`�=����?Md3��������`�9B�,!p�-��{����:������l���dE�N���8��K�t��p�4S����o&�~^�������'_���d?��ye<R��Q^]�}�xg�g�N���|����?�W;�0y�:��s��4C��u~�{��F�����U	��)�f�jx�o�8�r���^'vs��M��������O��J��q���wn����X�s}����%KE��W��6��e������~��6�RD��S����&e"6���VC(���'�[j�w!��]�Q�������^y�����	;����ofuuJ�s�3�L��M�F^��g~����v���;�f���:���.om���|��f�2�Q$e��%E�oz�G�1EE�
�7;
�Ev[r�V�3��pq�]_�&���$W`�xw�>��X�MEB��^�:�������e�y]�1�\s�w���
� A;��71�j�,��{,?M�F�����M~/��{1���@��\�P{Q�\X����)��������:4T�
��N,YRL�<G��M���~�!s�����k���"X�u�y��e��.K#��$�hj�a;��m�=PR��=
���k��I��Zi��8�x~��NmYv�sW&�g�S���4A��Ta/Ls�u� ��Y�A��`�%��j�>��>&���������$���1� ��>�+�?����#�T|�h�y���M1����lJ�iFJ5���OV�e�V@?��H|��<[9�%+*���/����_���*S������S����t���.el
�4�
���KpKU��(N�8)������^,b[�Lsy7���([���nBi	X��ol&Sw\������]�����>��f��(�&��,"[�+Lid\�;a����QvwL<�Rc�Zn��MR��1V��E9<�\��Tm?�M�}CW�-��$�mE6���9O�����m����8���WX��P����c��O[��c���~�#��	ITG�������m�*6<���)#��z�\��L� �*:A�����*k^�F��Sb�>�
����4
]/a��i�"�(<�hU��n\�M�B^�V-��RGZ�XP'����]�W�S�}U��ai���T���2��~:�Y�-��9�z��Ted[^��������/��dMWgQ�j���|��a��+b(��sk�7<��2���������������� �'�{��K��LXU�I�%qZ65�y�Ty^�f�m�f$l�\V�E=�}�tC_��TG���2�]�`������6E�Q�'�E�$M�3`U���������]c���K��:5!��N�l_E�����E�	��0�WUw�$����-M�-��E�x�	1�yP�=��:�Z�uU��/�x��$6-#��,����I���,P6�)zu��b��E��-A8N'���e��<���fe5^�C��3kOG�sUXb��eE}���P1sa����"cM�z��Q#q���>�����*��x�����)FT����zYY5�������c����cG�8u���y����"6��7���!
5�����d��]]�����)�2k8������������:S����fu�[�t����E�u;,�.wU����o��Px����%
�`*��l�_'��i��n�2����+�1<�^sg���G3}�Z�]�T��8��i����1���i5�x��pdA�Y[�v�H+�-8X��i
U�+V1�~j��@~Q�7�Qa�w���V��zhX�Q,�WBU��-9-"6��6#i��������|��uS&�ruB�����*"M��jQ]'&����,I�,Y��mbB���}��Wq����F��h	�������I���YM�fM�3<,@�)���y�����H4}��<���v�9�UD- ���)?E����/�SB�������_�0]��u�c�wMlH�W^yZB9��������m����9��P���~^�__��%��%D�x
ie�&��"��������0*X%I��z�'}'�!�W�e<[L��^��
:��B�Q3��iF�`B_��"�IC�
<UW@��[��bc�����SE5C�"IC8>����m,�����j`����xH��)��aZ���8����R���%��%�e�&��PB�mG�i�Lx��k�*��z]�����z��I)q���j!c!�)����=]5���.�
�Nj���_��&s
'����M��Y9T�o��X��#k���;?����)l����
�~WE\-?a���XQ�"�>b�nqTLqT�U	����/�?�,s:����:���AJ����_��
W3BlRh��%*N�Jnr����d;#�F(�8a��SL���8���
���6�W�A�d-�ZB-(&/�v
�0�$�*1�G�������e����O/'������b�G���(���I�����YU���� �3��%���'����m��}f�6N<����fq���������[�\�+�E����$�mS�e��
��pM1�~sh��E�I7�Z���s���O���pcj�%,/,�g���%KmI�O�b6t�joD4��(s� �_�REi�`�e'�CCR�GbJ4�	�����obj� �"�����2�����IVc�
�����:�]��z��O3����E���$��
w	^N�Q�i��d���������^4c<�����)��Gq�?�������:�~9����:�$DR�c��U����5M8�b���^4p;D �bO�x�s4�A����h��C�#6R
���d���u������� ������	!����� tU
B� ���E@�����k���EJ���������v����S�.���%o7{�00srxm�-f�y��)�7[Q3M�,C7,S�[A3M�dY��y~2��j������=SQw��,�.��i��N�)1��.[�
������Z>����C�v������c��;��e)�N�1�4y�3
W9P"�B�:&�W�oI2���"tt�B}L�[���w]���$2������?��I�Q��-:��H"?fFG���'�`���rE'5U����(�,�95��o��
��4�"_.�a��-|�DJ�%�(�t�m�FiTI����}�!K���[;��`��*��t���.b[�i�%�xw����v7��h45�2X{I�lk�����r��\�q��Ca6	��*T��G�p��Pv��S{�*KT!��n���y�)����p�,�wt`��X9e��������uh3GU4�X.nwXS��z�W<���;�'>	��m:TA����	�M^���L����v9��<����c��� \�(�
SYr.�U�^��4~4-=�M�c�S2��.�o*��[euq����P�E��1���7+������bK'|9L2�R���/�
t�/\��^��m�����^�z��~>x������9��fj���s��o������4?�����o~S&}��}u����g�����{��o�b��7e?4���bW#4�?�i��������i��+�4��|3���^���7��G����U��/qMe�,)���=BI*{^��\���"kA�����[Rh�Z����������>�T�Yz/b���|�V�y�_���cjf6�U�����~���2��B�\G�������D��[���h����s��D�}�����7�����?��~����(�"
��4�\��! �g�]�	$I~���������)������wl��mGPB�	CE|h��Z��2���<0��Q�1<;��A�i'-S��c8�wG/�ZN�����Wmy�7�����	A�'�bG�o�O��%>�����
����-�h��6��H���u[z���ml>�<�������t������g@SR5�0,�u�������sJ����e���L4'���g��jyA�hK������9k_��<
�*����0����=�vM
�U�
��N�T�
�8
�[T�[)����[,���^.��(;�&EU7u�t&r�uD����5����`#��`Fe]W%�MV���}x��,��K�5���a��u�S�������L������kJ����;�r�U����AJo:�W���8������t�UF/����6]��)#��
,15I�"2%A�s:]��O�����O���,�<4��cG�P~�W$.|�]3^��2e�ydY^�WYB(�IN;*���y^��#�bF��h=%`iUgT{�����U�k��Z��iY���D�T]�O?��C��0+��uQOm�E74�0J��e�X�����Tc��3�3��-K7/���p�L�������Y�Q��oR?��*
�����4��!-z�Vwz�����8���������V��u�����t�*���� 3�p:-zR}ZT����*[d����������-!��P)+��p�{��:X��?sX=����a5��IL��������d����#�8�z���4����GAs�S�k���}]beRK�5�����}G8���$�S+5=�2�|%��-������f����e��S������H���SS����2�C���I��3�J��#}�h�Ou�J����������/Ft
Q�����S�*�wR��k�x���������j����Y�\�^�}jX.������n~�Ky�$��"��5�L-�����N���r������s��"]T>���?Q����{�����"�l�8(&��I��8�7�����Fp</kB�@{Ty�-��F���62UE�hi�#�*e-!����TVf7lN$���wxq�%�iF����0�&p�K�����?-�
2�>/(��!�L�*��$y��i��4mqz�T������W�
�����/'�� LqG��k6
��P�/gG����E�AG���5X��
���<:)�]���	�8B�)V6\�Q�a����NQ���(*(\�	�x\�UI�
Q|z����:�J�M�APL���2<�]C���b������I��VTuE�33��(v��WEQQ?�;���5-E�E����o7�)����a:"F�JP�)���D����^�6�iL�-�5]$R�jm����"���7ub
��'~�<%���� �zu=�����)CJ������gZ)C������Sv;]D���F?d+Bt���)��9Y:e���v���'�)��|s��������oc�/��h�
;�����~���{T�w~��7���G���������!W�c"���Q���n��������������%���~����=�Az����=�Az����}>�?��s
endstream
endobj
44 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 45 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 7>>
endobj
45 0 obj
<</Filter/FlateDecode/Length 2570>>
stream
x��Z[o�8~�� ���D�$Ph�v��twf�b�yP'�nb{m5���9��2)G��F�-��#����N:��6������������GeV%�qL)�^f�T�f~|���������s�]o��Xv�E���H_�x|���Q��=z�f�P=/��ke!-�/xY(��w���w������*�_�g��j ��.,���c������V�!`����FYQ�8L�X�
)=��Da��`&�=Z���	��*����D����)�%X*�����d���#41���S-�h��4-<g"]B$,��(�����(j!�v��	�qY@���D;@:�^���/\�vs���a��P��4�F l��S��]����1%�  �5��(DQXZ���H�c���=�����ngb���������������t6����Sh4�%��2� D��Wq��=j�����0 :m���E�0���VD�y? �����m���v����Z�L��Z��J
pX�dE��P��AC���f,�NKW�e�,?0�Ra��D��p,N�T���^at'�m������E)�0=�ao�1�f��%eY�}�� ��8=�z�E^#�� �&��0H$����7v���q� wn���w+������e@I��,��������P*����a���PR?����S`2�,��E����j�����SU��)l�bHeInA�c��22ra��0����PW������vP�t��%-6/��a��C���z��7��S[`�:�j/�%b��#�G���B,��.
fC5��A�p�c#�+�
u��@����8;�z���@3���@��a�m��0
�exZ����%�C������g��G?1%��4
����pY��o[`�����%z�0��O��%���6��sq�>��g��]�cRF��UwDh��>���;��e�.GP�����
I�E�=��D[nE��VRI)���������#����l\�F%�}��M���E��JY:��������$�JY@k���p��W%��P�C�}
��Z����>���
�NCDz_�mQ\� ^c(�-aS��X�k�Sh�h��#,�,��'�HC�n�+k%�t����P�E���E���-����8�d]����T8l(��.wM8�Q�n�Q�J� |�Y�iJ�4�?���
A��u� ��6a���d`}B-��x��3G(���)��$�#H��g29��pm&c�x��^��G�PhS�#e�F��[��=���d(a�1D���k���k���zY�HV��C�����2e8��8��k�����t���F�1��1�$�C��]X�8,�<���1Zn�p'G��]:��+9��O?%�������,��2����y���`v�k�������o������O�H����=4^_�w,��^\�E$^�������;g���-�%����}�63���f'"�of'2�ff?��HY�����;��Z^g�|y���l���}�Y�������s���pq�m?����	�k���0�Ym(FNBA�#���6��	�/��5�zD���������I(p���^
�-����3�n��
���c'�E����n�X�)XH���5���	����8����:��&� T1��	,���.�O����oN�b�d1���h,�� T0P~m�3����������b�v�*~A�o���Prz��>�Q�J(���CvT�R��f�H�l�	g��6U��n��������du��>/n�������L(O����qh>��v���A1ZXq�������(�E���;qy��P�������X�/Q�e���in�Y��
n�pK�3�z�0�����g+4]�]@E[^����0�� E~?G�n�����g��J�$l]�����~������?-M|G��c	'?���!e�@�U��^-�!x��hn������K�l����|=�@�yW-�p
j ��!�o�~�X�z�?��H���j�3��
>I�A�RNl��9��%��z�=T��4���8���I8LR�������y�,�)�M~�}��
9��Z`����T~�@�<��|�����I����~�1�4C��%eJ���7�{���6�6���1�/)l%�~f+��h8pZ1�h�@��u��B��������/��l�
h��W�}�'������7!I�e!��$E��n�M��6i&[Ht�����$�/�� ���x}�+�C��H��h�u������T�5��[L[5_��Z>�F�y�^CyL����'�c]�|���XE���GE�Q����%�����d{�����07������������=np�.\?���S����q�m���+��E�����D���u�i��Z����z�mGA�S��M:l�U�T�
4X�N_��fu����������z��p���/�z�Z5���n�g�Q�rK�*�}|,:[�g:�:xNQ��� �d�s�E	��s���d�nf��?���)�S�Xa>�qH����������d������o�X�&�{%h��U�����=��MR~
endstream
endobj
46 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 47 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 8>>
endobj
47 0 obj
<</Filter/FlateDecode/Length 2729>>
stream
x��Zmo7�n���W�y�|'A��.b$���@�[Y�u�%�$����of�W���V���C������U�t����%;�<g�:>*X���s�%��`��l>:>��6=>��8��vq|��m����nM���������[X������#���\9�_�"��
�������+�f���o���cr'�t&�����i@yf��-�	�BC���ta@�����t:W* H���8 rn���E�\Z�	���4
@�s�+�\8Bq��e�Y;�|��Ui������N��ix��"a��d�
}��������IMx�L�-�����^��W��V��" e�H��<�N���<����� "����b���+�
$��g�>�i�e�j�]P'LC�	�6��J��1<��.�-����9ra��B���i���O����*w`���rmaY-6��5����G_\H�����w2l4����a�$
g�(�;EGO�����0	[�����f��(�GdU8Xa����:	���4����"<�5
�;�o�n�r�+T���QM8�wZ��EYiB�]C$���t;j�y|����a�"��AM�^mx�:��v7�����4��Jh�-rP2<!��S��<`X��\h�n?
���/rU����(K�x	�u�@`��*all6L��v����nbe�������E.d��A�8����������G]Cq��l+��tX��3� 2�����6]�[1���^`�6�
�0��1sw�����g����l)�W��&�XZ��*�j�k�$���i�5
c9������*}�Q,j�K��(
��2�@�L���E��I��x��?��-x(�i�
���\T~[���D.���A�D2T,?,w������?SM�N9eD���j�u��p8��x
�k��U=\v�a��%%��8@:t��0��������B&�"aC�U�6 ����lZ�%#5������{�:�W���0eg��4�
�[��*uJd9,�I6
�����QMJsbh��A�l��
N���A�i8���y+�V��W��JXsl+W�vE*m@jV��U��(�P���@5a���1:�c�,g1D���E���+/N���_��P]8*T��u�����Q�n�P�LZ@$����n��0?t^^G� �p<u� �YSa���`�4��V�5����#&g��ty��|"9���U$�t���u���G�)tu��2N#Yv��
��r�Q��.D����0��c�_�6��B$k��C���T,��
�"���A�����^	����)����4��<��M"�Uk�f����������n�q'G������ ^�y�?5�TPC|�����tq���t)����W����7�x����	4�/,��@��
(��L`m���
�D��g<�.�a��=�Dw�@�K�~6�����NDv7^,{*�����p��n��]�c�k���x�'[�IOf���������W�*��������*��� ���[�f�����,$T�7�%W�����n�� ��B��n�0���WE���n�j{m1�>2���Mk]������;-�Jp�)�����	�����w��r�`��<��c�_NoY6���~�����'m��x:���� F��.�X�����������)�P����c��pv�~x�S=��=����{�C�r��T��R�p:�*��ft��3�����v� 	��W��W[V�0/��Y�c9��7M����7��9��"��}��|������/���!���r���I�RM��&JB6jQmy���|���IA���c� �@��<����[ve�=R��5d{H���q
�{������x��F��>aj-'�v�88��r9�a�*;�<.����k����n�/NB�I
%$�q�j<���H1M<�-j��N`a	k^
�d��4�`�NPO�]��#���;`i��^�]�7g�G�d7�9�oN��A��v/�[�$�����yL�z6R���{���=�����&����_�U�j&�:z
{x���>hF����7H�cX��c���(��]�$�����1�{��h{E��x`�u#�*M��.2{4
�2(�����(q��������<�NU.F����|��2���*2.����!�c<��T�k����/�\�M�NA��{�����e������B��wj��a����J���E��p�����Y@�\<�N��rF�`<��:����\��	��>�+q�w����k]����hx7�Mf�x9!�����HK���:=�;�1nK��3�;���?���.F/�S~�t8>��o��^�~��d0�m���<.F7�0�.C�}��I_3ka�+�����������W��k��.m2*��8��������J�ZM1<�4<�l��fS�n�[����;�%���b��5(�8��?�a���r)����0�����A����`Z������K��v�����4�e�=��
��S��aT>4���6��.���r����l������zz�?���)],��,q��l��_J[0���Kl�tn�v�<�=�L���P�A��\Bs<s��>Ve*{�s���.z�fW��6>c9����eJ��d������8|��?��3��TO����CN�
endstream
endobj
48 0 obj
<</Type/Font/Subtype/Type0/BaseFont/BCDGEE+Meiryo/Encoding/Identity-H/DescendantFonts 49 0 R/ToUnicode 2848 0 R>>
endobj
49 0 obj
[ 50 0 R] 
endobj
50 0 obj
<</BaseFont/BCDGEE+Meiryo/Subtype/CIDFontType2/Type/Font/CIDToGIDMap/Identity/DW 1000/CIDSystemInfo 51 0 R/FontDescriptor 52 0 R/W 2850 0 R>>
endobj
51 0 obj
<</Ordering(Identity) /Registry(Adobe) /Supplement 0>>
endobj
52 0 obj
<</Type/FontDescriptor/FontName/BCDGEE+Meiryo/Flags 32/ItalicAngle 0/Ascent 1060/Descent -122/CapHeight 878/AvgWidth 956/MaxWidth 2807/FontWeight 400/XHeight 250/StemV 95/FontBBox[ -984 -122 1822 878] /FontFile2 2849 0 R>>
endobj
53 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 54 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 9>>
endobj
54 0 obj
<</Filter/FlateDecode/Length 2416>>
stream
x��Zmo9� �A��f<z���@^�^�]w��h��;u�&v�qp���#)���g���\��y(ZzDR$�t|�Z�L�5;9?eT�*+�����YQ1Ui����'�8<��hvywx��e�����������_�[�v���������:U*�JQ�Z����p3��q����{���V@�S:��3%��&�'���]Z��D�j���tA `X��Z:]*�$K��r��[��hU:�f&D���2
��x)pf[
G(N�,5�u����4k�#
1p6��
�IP)�����.!RViL�����N(Y!
T3L���d��h8h��&.�W{�+�l��43l]�R6���]��w*��/�Vq[�	"B]+��A����y����Tv���s�|�L�7.va;azEH��8W*��1�d����4�:G!�UbA��`�8{4������@�l�|R�&���`�fX	��b������f{�������??�u�$g�(Q:EGO���C�N��b��Ne{�mg�/#�*� B�r��"e_z���Q�,����S�	b�e�+oP�9��L9�{��9�bEYV��l[����>
��eY�ed��E���L�^=��6���0n�&��4��L��V�(�������a0l������O9�!���\S�0%���`�/�4oVC�Q6������h��m�rC*�r����+�\��'�����)
w������c��P�t����Z#�A�C(W[�m�����E�l#�SP���D��{u(W4W<�8������L9���V��:��� M�ml�G���N��U�A�������4���r?-C$��J<B��H���o���8��4	�P��\����8,5�p�Q��&���f	�a��M(�\|�O/�3����cRF��Y7"4�r�p���[��U�.P�����
I�E��P��-��u���TR�d7B�lh��
�c��<�fu�H]?nt���hj��t�]���,�T�{A��	�R�B����t� S���j�LJsbhC��U�h�4:*�|���6�p"C,B�6(������aK�s�Vn��E*9`u(+��5�D�h���c
�L������X&�YLQ��J�`��&�����#�������k����+5�������
nS&��P����u�b�S�2�5M�4&��'����:�s��l���Ob:��oC&�#���d�:�h]0u�Q��<��J����z��E_9r�tl���u�4\F�M8���7�tMsth��%["�A��W��@�)`]�W�%d�>%6Z����� e��p������q8��~���	or�>��==���g�]�w=���ar���`2N�7�-/`0I��l���~=>?�p��7o��Y�A$xeq�'@�g{�.~�K$��q�!���n�]�����h})N�7���l$6:2�]=��b�m~=��������z��F�����^t���55�]�9><gh������S�J��e�������K����>k��pf��+0�w4�.������d��vr��������h��R��`y�{���Ztr��N:z�q��d�lqt�y�n���^7���jt$��|1��'����>()��	������h��l��������#�b$�eV1�t)U<��3]8�]�����r��N��Y��c���S������?V��zFy�Wp��)�`��}�����}0���{H��'V���'�����������_)2}�/������f@p2���@���"��P����$��R%4.U/����� �{��R:l�z�m'B��f{�
_;E�������s2�K
�
8����~�d��~�!��0�s�� d�	����e��`��Wp��44����3����������������%��hr[�^/��SS8��O*:�W������}��������W#���.�&���#|�����u����_�D@
1/�(Q����b�I������ '�M��o��Y(e?�+�	|��[_��*�/v;@��nE*�Ml�V��[���3!����C�o��+4m� n���t�&��=%��2A�+|�z� V/���o+��f������W��%���5Z���:�&����EX(��=���{.�BW�[�NB�&������]O	v��B=� w�~�=^r�y���J+�n�������e��]�/{� q�1�{8�vpH/���x���Wp��2>Y�����������%����r1��[���r	����,��r����`]�:�
o!�<�$�G(���+�x{q���+�����qU�����F���`R�cRR��_���?��[�9�?0�������>*\�m���q��l
endstream
endobj
55 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image57 57 0 R/Image59 59 0 R/Image61 61 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 56 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 10>>
endobj
56 0 obj
<</Filter/FlateDecode/Length 5671>>
stream
x��\[o��~��08O�4��0X�(���#y0��^�"c^|H���}��������j-88J z�������n]=g_�=\���>t/�������LgzC��6F�eg�`bww���?���<v��7�{��������������/�����g�7���� �gA�_B
��;�G�m�i������6t�n�y�3M����)������[�]K���j�R�3�2`\����{_���c����>�A��U:k��m��WM_���!�����4 �;`��+)b�}���V�V6��
=>1%u�Q�,7����PP�H.C�9��|o����\����4i,?�%�5�o
��"�uL�������<b��;��@!Jp������k/S�0��
�ovmF���}_���pW������
m���t�1QXC��W��w��FJ���3r��t�E����
��b+,��4�$o
wf�
�/�����A�b�i{��*r�2R�}����e�v^������h��=���K�-C��y�h��;�	Y�f;�[.�]
�W@��X��M; �\�j����ig'�f;C�H�i�R(}�
����C����K�ngK�8���I����i����04���:�����D�;Lz���G��Q���b�� ��
n��m�;�-#�����oGS;��%h���.�u��L���T��4[�D
Pf��=,��x�A�Z�Z�$<N�X��q������&�a��w6��@Q!"Xf�
�������a`��HWz|z��Y���S@)��	�v��Oy�,/����k7b\�h+�meE���t6�K�2P��f�l���h�Y����{m�'�$�&�OC���N`��j4HC��aH��T���!�l�m/.�c��R�b\��E9����l�����m�;��5�m@����H�a@{B�;KD�8���R�<��;�������	���	Z���edG��q�0U��Lg��
��Th�a	�t��y\�z�J���wN<��8T��X��X�����C��T�v�eu�D��uv�h����d*�h�*p����0�l�y�B��$P�2�Yd�B�Sst��������#EIx4bn
L�4�LS�SlV��R2���L���\G��� ��0k�t���D��~�\�����w
N�R<B�u�"�[���uBS	���E�B8v�3���@�
�ESI��~��jT��p�:@��rjNXk�P%�/p�p"���C�s���'��H�g�d�r�1_�&����a��(��2a����:Y	"�?������K�qg���4� zm��oj[�gR���FC���1+h�,��+#�&~�:Z���rf	��I��+
q��S]�*4M��c�X4���c��'+'����F������r���#d������(x3&��t_|q����_u��/�����B�����E��W���y���i:�j$������R�#���D�����.R�z8R��f�U�7P��������,q���&3�O�	3�	#�p�|h�l�	��p*�5��mZ���rLL,��a �'h��aZ����.i�Iw:���%l3;3�����[�9���{����v��"p��.wo�A8���]?��\l��~u��{wy�s��W��o��}�v:�7�ln����77��������_?�bp�)���i�R|�����auq��#����?���j�v{�?�ih��G�����;b�o��$J��SN��4����S�\���i!=�/x��[���c�J��/�)��e2��l{L&��L�����e��z�p�N�_������W/�����$>���_����f������qu���j����9=�����xN/����~o~����1�\�y���f�d��>��������Y����7L��1��������'I�uO�C����<T��nx�/���������EK����|/m/*X����OTW�&}�A���\on��$��xkgD���QA
�L["Kx�6�&�1����WP�p�+���3>-;U.lM]�������c�K�LEp>�*6�;��}=�e���u\�����7����-?����~�b�r���n�a���jfGD�`�������!i#����tOfe@g��2�@5�������t���t�s�.�Hb{{��l>!��;�{V��l�6�xH�77���]��e]������s��G��H)��|u�~��1�%��zx�l/��p�������_go��������U/oo���������}8�;u�K��M��ojG�"������_�!�}��������h�]9b����UYV��+���^�m^��j��R}O��_��z��;���y��}�A�W���r>�������$��G����4%����|�j%u*1����[b
�����i�C{l-�)�t~U���
[�e�E�a;�Q��*�w�Dm���xI�_p,�����S
��\�1��j"����)G����(���p��`o_��c��k�g���x�:���9����	��I������i�0�d�b�DM�	�0,P����q����J� i1�I�x��A��y1dV�ON�0�9:���{����=���Ijs���V���_��b�|���0#g\�y���&MZ
i�Ns��7�N}|���xU��H�)�rR9�0�i�em�J E�T<�����
��D��B��v��aa��2��Ti:�P����
~��d���L��C�8���j��2��b�R0�j�}R��qZG�{��;@�Ki�$Q�w;3j���������GC5��O��H�d�WG�>�~'{�3�N@���o�Wr���$r�Jx3��#��^/�vz�	
��)1|5�4m"���S�sE^o������.��)Gj����8��}�in���� ���+�w'c_��[���eN�����88�����y_x�7,}"h�������>%)Pmsx�N�G���{K#|I�K�y���<���qq
��N~o���	_����>�W��9��u�q�1��2�R��[g�0f�4DT�.���c�����]xDPS�}[��_\�kg�W1���{
��������K�
�M��5P\�epk"6������
r&BKi��u��H� �G7hh`FQ�$
~�R2xBJ�v�4oJ��'$����zV:���&tu��Bg��-��$��(k��WCp�"��dP�*�\�7��f����1��J��+�-\��h$�����z��OfE��|����<�3����:�~7P���	��Z�=�����AW@P5@�o����Q$C�pD�i�w�����F���z��81�Y1dNv��I��7��|D9��v�1��1\�r�����yj$"�R���4n{5��b��I����<�)��F
�������
`L�a��[g#E�?	�X�Z��X��=f�M�/�*n���f&�l�8���]�K������0I�+4�5�0���L��� ��QFS#���:������g��Yy���Z��3'��dC�
1��5D�2yn�J��e��ghS���0
+������)�� �_������&
^��"3�E���%J�Acv;��)��0o�?K����S��D��U�'��V]N�
�sr����^E_p� �q��c�^��Q~@��a�"��_m%���V�#h�ON��R���vAt�t�wO������e�r�5J�(��(�sy��)��wf���x�j��c{�L
���:�{(��#|����;���+�p��;>2��:*%6sr��N`����}t��@n�x�N�9�������FL(2���h%]q�������W�Ix������PH�����$~Z������pD5S_��X
���q�$8H� �|�r��J
��\����!~8\����O�������l�S��A(�	?nu��6��t_���S����X�O<��n�r�'�)�/��c�O�nQ�?��n����/3%J���(mn�O��IG�!���o}c}j~y�D�a��9��"U����H��G���vy���W��
��A������� p6F48n�of}%��Y�3�+�>"��}����6���uN
��O�%��6���=%>!�D4Fbb=$�q���[:<�.�<1a��(a��	ar��lK��%����0��8]�d\�a~9��8r�K��+��_�a+VA�%���v��J����_��C�,l9������G69�F#����#�j��SK����X���1�����W�
��C?�����0<%
���iYU��j]�Hp/�%�*�������Y7���Mu8��Si��8_�Ho��.�v*a�]%�E�,J&��XS|��Zf���M>��H��T�V�'��z�,��K����}�������Zk�&�����%�QD�,6yO�D�7���� ����6�*G�Rde��}CTO��x,x��bB��l^�%����0��o&��QR�*.�	�\��U|u�I'(���ff���Q�-�G�����5(�g��)����$�7;��M�-���T����5�;���5)�r��K�M^,��c���!���*|��J�����`���2�aM�/"Y&�rz��-��x�
^�F&�M� �4bj���s3$���!����Q�x8���&���e�-.I�
��/ek�-\�����6��C�):M��LSmw�qjg�VDwX)"m��$���1D\.w2i�Q�G�6��|w
{Z+��K	��P��H���a�,=��y]#�y:�*cq������,�]�X��G���I���eU(�@fg"@j���<.��UeBK�R�
��D��Z��B*��r�}�����]dt�������U��*���!������VyK<$��o�)Wd�P0(PA�F(y-�BK���1���a3��lF� ����O��"}X�]�%r�q�7��?����	�%2GZl;�zhmFRcy$�65A��$��$�q����a��������I�~a�=�KL��rf�x]p����9�a����<���vc��!�k9����	K�����v��H�3j�����vF-)�?,4X�XMR`��ew`���aW*O����A�����H�Y"��,�e�Re��O��V��#r�����g]PDO`P�����i��=��oh����|� ��I��4����s�<��2�����j�,�@����o�e| Pv���%�X�Z�Z�L��Sz�L�|�k��H�����DCLS�.i`�5�%1��'����O5s�\�����<\$�)��j��8P���R*��$�e��8����b�,��k9�����[)�:��K��i7�`�8��)�O�a�Y��E���|6I�B��+��=]����\U�c��B����a����Z�E����� �F�]�y=>Z��5�7B��zul3�~I��9�_���)����r�$�rm�q�����P�k� �I��#F=��������Wk��J�P�*�K�c�9�z�O��-'Z�d�/�7�
w�������B�3��u���?���N� �E��YG�L������~�3.���2�uu�����=�
endstream
endobj
57 0 obj
<</Type/XObject/Subtype/Image/Width 535/Height 111/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 58 0 R/Filter/FlateDecode/Length 1842>>
stream
x����SRi��$0P�����fY�$jje*�����L�0-o�������4Y��}}O��3�O;��3����s���v����?�H��N*���q������������_�!D+���s�V^^��1����LD:���B�*����z�� �}�D��~���a��m&��x67��V3>��t��N���7KMM
�v
�SkK������d�/�����JK����K'R�N*VX�T7X�T=�>�^R����z�#F>����Hi�x�������!�%���jmmu�u:VV���Hi�{���ru���~�.�����o_����]]]������e�#|pV�r.,������6����q"�m�#jhv��1���8�L:.t/^���j�8���w�+Z1�K~�cl,$},��7�N���I�'R���;�{��x��s����fvJ�4m-�N�������*E[���}�
�/%e�1��(+�M���T���
Zm���r���p!�n�m����I�E��YD'/g�z��<�3����DG��uX�����Z�Ncr�����nuu��1�z����Io���	�|����������]E+4*))YZ�����@��	<|p�������Q4a@�������0F>-{KJr?��KV?p#_�xkkK������[��l��4�~P��������)-����-Q�]�,��f������P���G��/Y��������fS�Y�l�~_EE��|>��������e�FG�?�i������AB��� ��[��z��)�����B���������j��������"�G��i�v������of�����������W��:l�<���s����m(���q�7���]���������Ng��a�����a;����w����Z��~k������_����SS��������_���B������;J�����&�9�e~��o��lj��t"�e/%�`@�<��|z/:�L:�!>�������/�Hi{��y�*N����T2jx,��>��.z����3'R��Ajx�_�f�������9c���}?�}�D��r8���Aqq�������t��f���
j�8�����Y#XRh�O�L�;�����'p��s�>�~���UL�����3��yi�4z{:�8����;'}��F������z�}�����q�bi$�>p"��z�0��NL�L���
���e��R"2g�pqq��!Zd�����yz����
������PH�[3D�m;���Q1g��5�jR�N�����P�d����>p"�e�1��I�Ed~n���/���i���D�O"3/�.�[=p��X���
i8��xO����N��H���Og�:����������}���
��~���T���=/w#�~c�Ao��N�o/!}��v�#������U^~������,:
��CXRq�g�����7�f���k_7���&kk�T�0���������c#�������}�DJKlo��yC�lS��z�XO6���D�)�3��O�����'��d���N�W��N���������)j'-//S�S���%�9�dqa��!��o�'�o�HQ������������`c}�G���{z:E��i��_<��A�lmm����6�M�$�_Z�za�-��YSS����dbhbb�G

��m��?������,�JK�������y=w.9
�s�p�y�6��/��`g
endstream
endobj
58 0 obj
<</Type/XObject/Subtype/Image/Width 535/Height 111/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 1063>>
stream
x���_h�U�q���oi����2�3�."I+,+��#	J�P��.��R���.�n*�E�d�bB�H(��V	��?����m�~�9�yX��e��������s��w6iBJ�T�*?q^��*):�P��Sf�����R���aY;J%U�qY���3���5k%��
/b��!/��������Pn�Tb���<~���:��/STb���<z�d���+o��"vw_ ���ydq����oI�x���
S~�����`}��5�E�����f���.�c�3�V�"l��)7�	����8�:���aK�m�n���)���3|]�"l9�F����Eq�,����!��x$�,8��Cz'���
���sTz���7��?���aK�%�n�<����u�&Lq�&`��`�������UyWR����i|>+;xmw�.�8R�)F,���ev����a����Z���1��������"����s�Z���93��]����h�4�P���7�3�Ys�B��uM�_�����s72�<E������F��u��n��~D��uSF�[;�I���{�~�������m�)���h�����q����D����M����/�8���1�T��7p�����cs�K��@ex�������;���#b����V�f�>��p'�:��a�����
��=1��I�2�WQ����0����D�_W.�_����,�.t��N����nE5J��0��?�V�-�������3atNs��E+���w*��YQt��z�;�*Z��/&��e��{S��HC��xc�;��H���(�tc"K���;�q��rA5J�����[����);�(�������L�)�`�^�v��(/rG�R=��{�0�;��c�d]�;.����6���}n;��
��0����R�)ow�ow�����0������G7��G����$�D���X���Lx_,<����^��Pj.�j,�3��c�\GnH��_W�wA�p��=�����������W���J��iU��	���I�Z
endstream
endobj
59 0 obj
<</Type/XObject/Subtype/Image/Width 347/Height 347/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 60 0 R/Filter/FlateDecode/Length 12867>>
stream
x��}lSg���B���"!�PPA�0J�1B[P�QhE���YJ�TP������
���8���x�P:�.:����J������}|l;N���s]�d�����<�s_�}?�_�h#z���g�^����G}��������?�o��)^�82�~��
4h����



3`�����M�n��y���j������6��a��-a���6m��-��W_��b��E��3f�����0awWt{���t�t�t�t�����!1qw�@�U�T������
2���?((�,��i���/�����+�x��w�|s��o��?�9v���S'b�\�v�Rz|l^jr~jJeN�27��������+��+I��b���#KK�VT�]Yy_&�_U%���^��W��V�|h�C����������)#��.+�URD�UQ��&/GI�����*HK�OK����|-������?�����f��G�Z���.�;wnxx����)�
F	B�������
��o'p�:���}�R	'{�
t��o����o�Mf~���������R�t����~_Z�������{UUW��TW���&���h�
Z-�F��Q�k �t�:]SM
G=����zmbGL_��wM�/l2�id�3
:-K���
�{��H5zz(z�r�_U��+�~��������������4J��+�.�;}����������+��2v�Xr6X����[�h��9�3�;U����N�����^{m���G�MNJ���|������/��*���
k)F���kks6�X3d���$�
�|��f
�8#"�v���
���7��_n�|���F�����Y��hkU�Gr���U���~����H�N�?s��5o��fdd��9s&M�4r�Hr0(<!� ��J����Qy�����T?�����O�&&�gdh����H�V�?UV7��B����n��Z{��*g����G�*ay�=�;����S�}��E�F/v��*Al�����/��O�V[�T�������f~nyf�����/�k�y�������7�T��z���A%�������C�DEDD�������g%������J�~�V�]UI�o�ZU�!Xk�%���)+��c_��iN���B!j���+��:>h{{z��������sL�`u�����W���T���������������KN;�e����N�����R(���tEP�Ae���A���������;w����/],���4+�NI�}Yk���X��gS�4���B?�+���	8Y�;O{*jw��c���rR��S��k�>2�?d�B��]�Z�@������������K����h����'�5�������@�dv+�py�IR�O^%���C����TY�--}Ja�V�-fF�fl
OF�VN����U��%:0���gg���
8V*;4�lp�F1g���W!�</7#5������ndd�s�=D�D���{����2�$~~~c��!����#�q�5�y?������gE��*��%��>"TgL�%����.�[�U�.I�� �����m�R��Q�R=T�~-/�BRX��s����;�,YB~#UA���;�)>|��+<������_+�*�*5��72l�U#WwXZ}��1dZ4yf�6�sy��Ah�i.���o��&c�c�e�Wc{7��K���uy4h4*�Q%�*?�(!���cQQQ$\G�Ix(		�={6�W�\����wEE�\���w�3f3w�X:*x-Y������]�l�S������AhY
���u!��PY�k�?
������k�w�^�x1��C��2t����<����Y�fm�����������$d�:��T�M��������6��km�CE�^�8��V�@=�����&~4#v5n���+
0������T9Y��\��k��/�<b����g�]��:t���)(MJ�����\����,~���#t&�������s;�mV��p���W=���E��������P^V��z���U�VQ���s��o����3fl���(!�Oiy;&VkTx�0L��m��Fp���kB;�KYP������v�Y���6W0�*7���Z�_�i�{���7o�y���oC�>})(��m[vj�����
�U���~@s�R���B����E���������oU^t� 0����)]����M)�PRLQR��z��
(�N����� )7n�������|S$y(�5h5M�~�f�q}|�g��A�SDO���-�
:���Ni�$)��>�9sf����mURQ.4x��W�/]�U$y�P4�4��g�I|�����-�����rh�TW�RV�����7�?�����>4}����wK�R+��z�}���_=;0��8c=����W�v�w�V��<7����/����a�|||�my]���8{��gyy���z���8R��'�y����T���T?��~r�<a�x��s���v�8Eu�B��y��4�=��[n)��SVz�j���+���e�����s�^���P&��
��/@Dz8���z���tO�������t�a}��=z���'�(��U)�7�v��=CA��t��i&��o���4?���\8?��n5z�v���	q�J����M������OU��J
7o�<d���@r���?**���}rr���q�g:��� (���h���Z
�s�f�����;��M�4)31�]�D�5S����`9l-[.�fW��U�t�Y�/�JM�����)S
���j���i|7���	}=��N��f<����hj23_~�e�[�%444+��S��8����X�6AA���[�n�P
����2=m�����	=z�8x��?��&��C��@Q�o���t&�R��|-&((��v�2���h���h�`nO�I.��l� ���%������c��<���8��%{��E��qZ?A���=����
ZmYF��Q��m�����S���qs�)� 
!��S�I�iA�i��~,.Z�z���5���w����fg���=�K1���)�Th�����|��b���~~~��`����w���7YM�	w��y��z%����QW���b������!�>>>3g�,�� ��k���N�a�����P��+��9�*U����_}������E�^�BCC<�mQa�F���C@����W�(��	�����M��e�0h��W^y�<#���\���HBb=�����@_�u���r�J�����m�����m��A�CHH�;������W�����Y��ir8
�$-���l"0N�1:�O��/��}���	���g+���;((��?���z 3��b��O����h�	�����8��k�=���</��Gv��1�[?~�{��W���X�h���LK�C
@����`V����T�")8z������<���CCC���r�~//349��\n2*-#�9��%����n�o��(*-6t�^JX>
�
���`�Od�EiJ��'N�����K)��^�z
<�4���S����U%�Wk�
�'�_�[h��hH���'��^apPTZ,Eb�GLp&[������_���_8�j�*o���	��
~���b._�� ���1M�f�{�s�e��t2�"�_�R���\��S��VIQvB�������������:$C��6m��u����}S`�������"����tE}?gjvG�2m�A�z�vOaCt���35�*���%���={���;�j7�w�������g��A�&M��aCR���$�����`X���J���B�p��E'&c
�����\hI�TA0��������k�6^M���j��T�W�KS���={v`` �@7o%�j�����7\�|�����$}STDE�a�Vc&2Z����9.��o��2	A�@�D�����3�b�w����kh4	K���:��������gN�]�v����8�+{��Aw;r��3ftBO
%KHHHDD���[/^�����������������F�"a]���M����Ut��x+�Ov�A���&)�V����+~R����=���������;w.^�x��q~~~�>@�����_~����a�����I�v�<xp��c�>}(/BCC�����{����~���PVUoX�����0���yG��	�����o���0����9�08O�����
�?�����H��C�R��9�-Q%K�S��~p�Oi�$�$��]V�T������:A6��b
�	&��v������/
-/�P��
;����!��x�N��o�8�m���*��#8$p-F�7h�OU�{U����T��^;~�����>}:�����T�;�TS�~����\��geE�Z}t�6��&v�X�7�����0wm{M�;l��)S�,[�l��}1�.J��n��%��U�5ZC�$cU�L�����u����l��D�i���q��L�H�F[��<�������r�����Y�f�����w��b������>���S��Y��DA(�2�A�}$�Wed���[�\n|
J�~��Q3b����'/Y��?..�,5����G29=cO�;��q�_A:���j��vsO��?��"�
�P��<��o+2�R�<�j��Y�fq���T�����wMYV��_�J��f�S������4�Z��u��2YQ\������3�t�I\��~��s��%>}�X����sr~.+�WU�P!�U�4��A����R`�z��[m�6?������=�$�b���g0n��h:������Z�R>R(���~)/�"'Gv-&���-[�Pq�4i�������j�����K��J�}���Sk<QL��
�L���$%q��
c����O��SO1=��u�����p!?!^���}q�_��Zv+:�a�����8	�Xu^�+�M6�Vbb�@:������i}>��1M6��VC�
j���P<�@.��u�����._>r�����###'N�H�W0|[�]���X�"=.�~Ue#;h�}�f��S��mR������Y)�e_'q������)w�i$����$b�������_�o�����������-�#w�AUU�J�-!k��L6M}���V�mK������.q�<mU�����96B
�P9]5�a,��K�#�����[�.;�(#-66�d�B��K���5k��	��_J���������o��t5�NIq�F�g���+]��x� X�a��P�2�2]V�������)�<e47,��R���`��y��Q�I����������
����<U�j5�:��N�#�6����F�0�C��KK8QN�+`x��JO�����\��vd�V�E���bq�x���,�����+zCB�u:
�	���j�5�Z��~e�OE������1����u�o��p��i���9r��a�
�Z�k:��F��l��I��zW*�7
�k+�g�<_��dTx�:r�~?��$I�dP��y�����T�L�+H.-Z�v��;v����?�~5Z�O����MY������W���u*5y��mjL����2��mZ����`����[��E��������psU���V?'U�#�T��TW?����VRh�mI��yy�������1Wc/�?y�����7n�H����?���������N��s-����8���jr|�o�%u��e@xq��#������QS"���,h���>}��Q�FQry�#;�
����
�`�F7nUj/�����K����~��={��������W.^HM��IK��d���>���"?����;e%��!������JJ�Gr�c��N��W�9��k^^=#|e-�����3�*�!�#��3��&1'�&�����J%��t?��{R)��oet�?��G�������df��'&$�|r����?�x�����m�(l����/�>}:U
c��!������0���
�Y�`��II�p�
�*�h��� ZY:��+�z����2YZ*%WDD�/J�/�GA)����H4H	@�A�/� ��;>l��)Sf��Ei�l�2�V�O��e9������>6���+W������T��R��\��T��I1R��r3'����������4'?���32��LbI?OK�MN�/N���3g���X���L�����(Rur���g��AQ��qa$�!!!$��h��T��ip�^=
�����A
H�v���}-�vY�?J�I�Ej��X=;a���Uk��	3���+��V���������g�Q�A��]�Q�`+ J�>P��'��P�=��Z���<���������mo��
�;���Q�����gS'KI�W%�U�:`3�
�]���I0��+�T�R���o��t�2�.;�����Z��H���<I�;���$���#w��������u�f�7L��,�6[��Z��;=o�����+���hB���������8��-Z��{-�nn���y��o�{�S�O.n�a`�����y�>S��AT�wo1�jiv�DY�kE�g���.PM�����/�3<��uR}@���M��O�Rgf�.+{�P�SP���a�Hicgr��	�$��������g���EZ�?��o��bb����d�����S6Qf�w :�M��D>@��}�2z�h��m�v��]v��*Y����u�9.���Cp�R
,F��k��4D
��*U�������LJ8r�����g��J1<�
 �#���g�%/���_?p�@l�un������jn�����gY��m0|��}���o-Ox ����Q��l��������"EFZ��s�w�^�t���#�)l�@T0�X����^z���3g����+)�+��S�MM���0��W��Xx�����	���k�g�@7,���������EL.���E���?��q#�xXXX``���_�>}�y7Y���d����5j����������?+>����2;�\�m��
�h��9th]��e�a.���tmZ�@��px�`�����B�ki��9�e�������>��L�8188����4��ha
���0a���sW�^�c��s�����299��KXP����k�Yl�f�q����[	B�P�|�?u��t��
S�R=��.+��0�899���C�m��)22r��)��
����<�F`���#�_�~�G}s�|AR�&'��R���c!a���,&Z�w��"[S���Jy .��G��dCCq#s��0��V�z��~P��WUu���fZZ��K�O��}�������7y���#G�/1p�@~,���������4h9u����f�Z�d�[o�u������ndd�X,�����\����2���A��gW��*$���q��m��x�r�&@\�"@�%�8�������7��a(��UV�-�Ra���S�����H����{��]Kr��{~�s����BBB�����,O�J��Jh�C�!W���S&M�5������k;w�<q�DRRRar2����D�GE�?�R�*~�4�\6N�6��6S��u]�����tPC"�#��vK�Z�_��b`	w���������TjrD//��H���)�����s����'�������R��x���^z��re�^#�����.�J6	fPP��Q�(Yf��M�N	�y��={�;v���s	�W$�i����$�����[����NO)o����<���L����X��f�j`[BD��BQx� �V�
�����M������Z���B�@!�����������..��0�&'[��V�~�T�����������e����(�4��������l�z��<c���?���%zZ���`ue�����p��|}}I������N�{&3�G �,���,}��u�?�}��7�������^�Z���������uQ�O���TTPB=��)O������k�a��h\��-=�&s6Y9v�ri�wZ�`U2!�)V��M�aL{O[�"�N���UM_5��!_���lr�����dw���H�������\��JO+HN�OILg�4���?�p�$,���+VDDD�������`��d�����:t��������������ef:������$���/+{"��P��5��5��Dn� ��o�8�uV�Z7���ya�s[+k[A�A����-]��h~9�-�*���r�%�l���:�B����H���S�m�h��^��S�x��T>��%���d,�UML����O���Nm&�W�aIj5��d���m���h�����3�������x5��hj�=��n� �B{����� �<���o,k����N�����9E���b,iyWMV� ����d�����@:�]��q�4��SL�o:��6A:�m�#�)0-^�n������\��U��Kqw�d�Fg�����#�S	����A���������"� 6� �^����i�� �x)�Bn��]Hs3��;t����k�r&�[���������&B�������I������Y������l�M�xYW%���B����������g=\�  �BB@���!]F��!��+	AA�'A��.���A+B@����t�@����"A�yz� `�"��VS�L���[�� ���"�@�������!<t��C� �`{i�C�8A@����^�����#A������%ByZ�|����=�A���]N�
  �z<5�&�B@�ijT� � A3! �D�� Ox �� � ��� O�<! 6y��g��^�HA������@���]F��!� ��;�.��KAA��Wz@�e�|A@��^�!@@�5� � ($A!! �� � �!�BB@�	AA�'A�9�QA!! r��� O���A�Q��A3=V�@
����#]Ox �4	z@D����2�CA��s�2��������]O�x �zz� �CA��� O�M�����yB@���@�� O�<! �� � ��� 
	AA��Wx�OF�B@���w�G  �=���v[z� @@��l� �`�'�-��l� �`w�I�G���q����?A��h�a�:���VOZBm��y��%Xu]K��~R]�5*�S�0i�$� ����^����e�����[������1
M�X�	���q"C�7��H����m��E
;v�x��6>@�El���������m������KQS�g�!�`{H^�5'���\�A
���w���:��uu��\��D(�����S�Jj���)IK:t����-1b����z��sH�Ye`�� �����1E�LM�����Brz���n�n|||��Ys����
AAA1Z���
�@&'�{��A�����|�#G�<���,E@������E��z�6���1c�x\��t������/���z��C�����4�6��������p
� M.���T6���HA�7E���.�������d]���<�7���3�cc�TW���M�1��@�(�����K������F�J���L�6-/6�V��:U�������L�V5
���en��%K�L
8���s��W��~ �7���g��l������F'�a�
G+���)S�xA��:t����t�3m{�����WZ�_��������1z��1x���k�����.2��r{f�`'P�����q�
Z��e%�v�
�z5�A1�yD��A��*<(@/�u��y�c����R)���x�����{S��3����a���������mFg��T ��*��T��k�F�[Y���G=}�Q;1`���3gf&'��J�ZSZ_���&=E�C=��e���	�"s�@���BQ���f���{���n�t?(\z��w���5��b/1z'A�R�C�N��
�����g��j�7�����%G�?~|�>}�m�]�&��������*U�V�(H@�q�9@�N�h�e|oX@oz����k5w�K���w��u]�����9�O����[�V�A�0�I��]G����947	�\����(O��]�l���C�s��3������9sfrR����6�0v�XM�p�
A;��� ��a%*�O����u��
6�����������?z��w	�Z�c+Lm��A��i�	\sA�h�V��^���|��g|||�ma�

"f��}��1&'��L�����R`l������)�����i	����V��-1���+ ���|���v������X�h���Y@��Q
H�i�*c����������g����� ��w����$��B�~�BCCW�^�s����JYop���n�U����N�y �i22�}��	&�������Aq��Y�<�����RZ�vSjmU��\OAS��r�l�!���s�����H]�s�9�G�&�!&���y9O����;&���m�o���A/s�S�T}_,�H���m��)S|}}����.
�H��N��~�zij����������&�`;���z��/�T��~���9s�������AEj�$�M�6e�\�U$y�P�i5
:���������Y���Sl�� �o�<��A�k�j�TW�TRR����������?������y���-[�$~r����S*�W��6��I\�7S�;�jl�8/�vN�;�����<8�����=���,,�MJ��kWDDD`` �x�g���5k��={����Gry�V���yx�}AhadGh�3��
�$*�z���+��9�I�xQ�V�X��%�$''���[�f�>|8�y:���L���@@���={�cbnI
��e��pfe��`'{���*t�Zl��t�"9���h��63��}���8��GLY�h���) �H��������>�h��E$$��^	�V??�����+W��?e�)_H
�J+��������o������(�(vL�-s���!�C
j���t�}��X�����r����g%�j�T���*�.**OK�z���o�N�%����i���^�����y))�>2l<�5B������f^�JP�,
|�
��zV�`�M��������@l���\�Q����?���%S8�q��3f�e�b
__�a���;v��9�+f��}��s�����A��zj��9pM��h�����a�6+�^�� ��C!#\T�U4u	n��� �GF���`�p�N�}$�/)���=r�������Dc��}�S8ID@@���S�y8u�h~����?K+�UV>U��5���M�)-7ov�Z�i��p� ��Ck�I��j�=���f����7h5�J����������I	�O�����>}zHH����@�w�����5j��/�H&U.I��I�g~'�<���U�L
S�3��*��[���NV�{���u� �k���~l��f�}3����]����;%%����qq�N�z���-Z4n�8�H��&�$���'}��322��w�9�|Yj�g99���>VT��5�Z]�a�,am�����s��FdI�&�#��	�����X����R� �s>��������1Lc{4�'�����o
�*SS���w��IQE|aaa����'�@�4p�#������700p��I��������;�}Y���������
�e5�����i*8~#"(��G��������� z!����oT6a���E�����(�,uM����XMW����\AADA�`X�b"������.�����1����p��}��|�-�
IA�(i���8����|��9���p��{������|��I2���B�)�u����>�k������ubppP��744�3����R��59,�oJKK�����U������N]����[���s3���w���{��~����.!D�������"����X&�"~-�����ia��'cgsZd-q�%w����?X~�]z��������'GG/_�d0Nk4����������{%s�j�s�a,)���P�������MMM���R����{�ogg��\o��6VV6�>�����	K_��KD����g=;�'L��#~��``&,?r�p��_�H?���"?~3i��U.�Q��
n�|��+���/���N�����n�����t---��������H.��������<u����r"J{���*?_������BF���R����L��k����)�������o<��w�+���/��VPZp;��S^�����K��7�M^���p����h:�	�-��nG�"MV��:���������w^����s����Yc###}}}F����M��UUU����
��sss����N_�����%a�����)�%u��
�uuu�����S���j������5ww������-f��2��\q\9��-������v�f[;�����/���]��.Sw��3�N��i;::e�555�eee��d����d�R#]����LN&���*t^�t���$�'���GH��
endstream
endobj
60 0 obj
<</Type/XObject/Subtype/Image/Width 347/Height 347/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 4072>>
stream
x���yXg�q&7	 P��
�{��*����R�V���*�^[�V�V��x������)����ZPP<�9�rM��$���HB��$�}��d��|���w��66��0��$��:�S8O^di�`��R�ii��8�x��t	x}`ppxi�?�j}��/���{m�Xr��������������z-���8��h��G��q��~���v�J:�|��������bREM��H��X�Zm9�@Qa^^n����O&'%�����/��L�����mk'{��u4����bsx�.FL�����&_��y��QU��A�R��Z�&H�z����8�R��u��e���]I>���y1���i�!��L[�G����f�9�~�^��A��/�!\.�yt���
'0�O��.�l�)����v5����3�V�T���0���A���������o���nA��'��z�Q�T��`3}E_�R&�xp#���"�w�R�G���c���[S��k�*��C'z�W���\�������<���aL�GP������hW�TU7�a����c1�n���[xl��k�k����7�Z!.�=�sATO:���)�����#9eb�9l��SK������jG���C�!��~�1���j(��xd��t��	|Cgl9wWdF#@����+{
���������d������~Tm��v�>K�4�!5U����}����
�s4��F�&���o��L84pc�X�0�"����W!�&���z�=P(���:ji������>�`
����q��7W������c�������������*TXeX-���qn(�bNa?��^;����=�>��t]�+�z�����|�o���O��w(x��vlk#�s���[�l�i��X�Xe9}��imSQd�4��f��J���^�k��s�����B7��o�-�@���������3�^:*|�i��09x�:��im�g�^�o��2G���S�.4S�@h��66�r`Z��r�����!gD����Z),��9�������{���g������9F
Kbw�"��g
��=�|NQ����kuV<W �7�DuK.;h�Y+������&�QX�^]b��St�<��/�{_/g�o�Qm�wz��o�{oY~vf[��3$Y��y=mMvo�}����-���$}I�/�T]�0�s�����WY��@�d����x�"aYM_s�x�F�I-[�n��>��ej�VMge�Z��i�+g�#fo�*�Z�|W�����`d����WV���}��"�W/�v:w����dE������U2���V�wc/�!l��c<�Sw��UVo��.��wa��`oFs�����J���mT�4��Gv�~���H/������MR���W��Oy�������1��FU��6�3�7�_`	\^�Z��V 1���/�������nz|�\8�H)���0-�6��6�����:x���?s��J,��I�\RS�{q���}�m�������B���8-I��Y7���)`��q;�3�U��^<�\��j�����v���N�����'kc���x��Y�
�����]�[���m?q�vi���MX))/�J�7s\X�6��?��<y��{j��%��V�bzd��9����r���2��Q(z?E����J��}x����'E���Y`�������O�C��Vs����^-�~%�1Y|���N�r������=�+�F��	�RZ���NvV����-��F{�YS�&>�������7/���Z��1�F�������%p�;�|�d��;���������5bI�B�j��	�\N&���*?���H?��wc��9�������C�3�)[��N��}0fZr�P>��,�h��m��Jcq���v��/4b��I�f��&>~�������i:�9�:O^H;N��{C||��9���:�G�����v<��h�V�4��G����2nZM]y���#�	�|�J�����l�|��I���������#�6�G.�f�XLD�b�����b���a����uY?�����"-�����:�����H�j�x�l��(���'|����MM��PK�n�������c<{���Q���u�iu�oCA��QA�s(�����>g��f�*�:m��|\i����B������9t����E��<�d������o{����C6
1�����o?{�B��h�(������Z=}X���kO��0v+�!�,?rG��}���iupiYv��������fO���ia|W�a�kS��"�a���>��RR�}f�w3���}F�!���#���q2���%��J�A�ri]UQN��y���vrw$�A�&\A+g�^�Q3������zy���Ie����5rR�6-�5t@@GO�2}e&�����O�~�������{��w�0=���nz7��O;�-����a}}]>����������c�����tF^�X��n�U���Oj��^TYV��{�����	����
����_�6m�>����4�����Y�m�wpm�������a�|��C�/d��?,����T8�S��L�B
RQ���Y�N&'m��u��K�.����<1&"\����0�|{�w�����S/gf>x,���6�I����
R���z����4o+�)��f�i��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��E�"i����@Zd -2�H��r��i�����&�mhZ�>�����V3���6�?�����V`pZ��R�?=�{����}���Og�h��Z~����O_D���eml^����%�;����eO���K���[R���m���u�'<�[FZ
��!%�kAGD~�
����dT����
k�6�5(f��_�P`��6�'`
��[Q|c�%�^�&"�^�O���q�O^�=��^!� �w�4^Y�uj��D��E~F,K��:W�Bcc��Iv��<
�Zp������(�P���UV}F��?;����,���\+�p����s��%a�����s�����D�U�~������+�rC1�>
����a���}�� ���k�Z�����n�6AX-�!����".!��o����i��?]�����[#��LV��y��
��%Tu�s{M1�>�.t�o��Y����h7J�ja��wd[��r�����s0�i����O;�XEuc���|3��GmW-�!�9�h�����PK�-|��i�9A�Xm����z��_�%���/���R]��n��l�e��������P��c�{�.9ZXkn#/�K^X���#���V31�����V���0���?���^�����W�(�P����%g6N�K���	��m��+�����.�wt�� o'}fz`{�����SR%S��0������m�	�����I0X�w&���~WL���ZR��������dl}������/6��(��h�UK�
��Y0zh���c�C��a���W��c���u��N*W��G&�*�TT���3������fXX�g08v�~����x<���
��xUC������}?oJX��<�O���s���;l��kv�d�����r���	\)�V�����M_��(rp7?7;S��1X�����_`��1sW��y������5

r�B�T�$5�j�;*�R)��$�
�=y��+O�������-�E�s,�cr�[�y��sHT�'_�]�6!!a��CZ�;��r������nHHX����3�~0�o���n��,h������������oV4v��4r�q
endstream
endobj
61 0 obj
<</Type/XObject/Subtype/Image/Width 367/Height 367/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 62 0 R/Filter/FlateDecode/Length 7358>>
stream
x����[��G��M�EP6�d_����@��@����g��@StRMs��y�-X�v���NR���))��=lh����mx�����<}}}]���_�(����k������lnn����]�	���h��������������y��������~���<2q�4�������)gY���rr���_www,,L�|���/���D"�@`cy�18���C]^��x���b����##kk������o�p����2??������eVV��}d�UT����8cn�soo[{�f�����0>>���X\�$555��2o��,.�D"����l�h4���$S�����{Y����S{��K(�5??Y^^*W[������A����S��B^�Zoo����&�����4I������wC�J1�o������������px����Y���~%��.�rrz��.���Y��,�D���V�=OX���}}]7_��������r�H���m��������m��rY���d��uV������m����������p����������O���n����������&9��KKK�I��Lrr��1���Z����������l�|����w��9��o��K��������}�2���O��������Q_���t�j�BK��%�'���~�[{	Zrx���HW>�,��MM��;�+��a�Z�RR�������+r����s���xQrpp��
����lA�#��Y����
�io��LL��.;���������,�++��ZWSSuxx'���0r�TUU������ellP{{5frrX�u�?��^�>~]��L����2��\��5��u��L�eRX�xggC��u�(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r���9>
������-���������������U[��]�������qD�'����O�m9�rp���d"���t��������ZFF�f�&#������x"�������������T�u��C~��� h�u���F4��8��F�y�

������JA&���������G}�O�;:Z��-�G62������/���cj�f���VU�zllH�����������j+9.77���~y���@&g������uFF��]'Ed������~+��z����1f����&�J0o�V����drp����������H�gdqo��]�9S��/�?2��Mbd211bnu�������i��C&��{��t��(EEO���������L���1S��/����,"���j4�������\Y0��29��=��5��gO���ed2njq����F��H�LZZ>�[]��� ��L�����Q�`Y�6G�������������o���pbd29yku�x<�������tI�3�C�YA�����X9�v�}}=��q��s)-}�t��[bd���T[�����,�����;���#O���e�����mooX��a���vOO������sy�ap_���D3??Y__gn�����,���E��C&g�����%�crff�j�����X]]��6�	�l(�u��O��OM�Z.3������E��K�'`O�v;�2���q����q�����)2����{jK&$�^������I��#�[�����k�.���9�v��U2�k���Z���r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2����F����������$R&g{�Z�u#_w��9��������I����	��6�r��:�����Z0��_��P����)����o{FF��;,����N��i�c�	���QXf��POWW�%�>>�3�4�d"��puww>z�0)I�������y���}�ON3i��O
�����_ZZ����?D"�|��H�VW���^�����D�s��[�5�>A&����)��5DZz�\2���� qZ8����1��xQPP���d�����YP������w5/a�$�}�tk��{��ZV�V�IV���Y+_X��,�Z[��������������bdq�Ln�����g���.�����_N�m����hs��Y]]D&e��u�
;Cn����Ed�pL�Z\|���BJ��������ldbT&��V{�������p����9kk��=4��x��v�����#��������'^/{���qaa���T���&7�����u���D|�dSK����r��[bd������ln�q���'�i2�}������W�����%�<V"##CF$���<�ykX��:�����qANN��V]@v�=1p���kkKF�%����)��^li���A�5['�����������>������\\�q8���-������qY;������_�N�L~������0??i��Ifg'��9�o��I&���������%���v�P',9����v������5e"��{��N�\�T�V����Z�u����o��V{�����������5|�O-|�O9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � �g�4�����L��L��L��#o(������lZ*����f8������'`�u��OF(�����x��F"�v�9K"?����v'C�Z'��'���0�y2�;����%GC��������O,�������W��c������sx�Q�}[SR����+***//mm���e�&	�n�g�������\)��JH���VUU����`��C&��e��7���|5��������Ld$ssV������7ok����J���76�m��V��.==}h�_�O��Hd!70�C�x�RWW+�v+l�x�%���g�L�/^dee��vY�$F&ss�c��?N��*b?�2��p��Q�~�� h���ffn��������������[]��������Nkeb���������W�"2��5�����}]$r�&?��I]�;s����s���L��7^���=^�TVV������d~~����HRRR������Ed������G^^��{���til|H�x
������d����m�x���z3+����NX�ws�����tsk��^U��n���t��%�L���������(�z������QxqqZ�uI��)��5��nh�ogg�HQ�ykXnT''G�����������,��<�6^�Ck������+����,��`�V�����^�k�����[�_}���nii���5a2���=���T]]mu�+k������4��2�����m��>�&1��p�er���]K���0d�O���DZ�X6�k��L�������db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � ����(��5�D-�D9���A&jA&�A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � �s��k��8rt�Hd02$�B/�N�
-2���Z}S;���?#m=n�kaa���������5�����a��2�F�~���9755:==�=ss�������*%�2�i{7�V�u��7���������zp��L�P��toee���{���t�p���o�Z]��H�gY����{���h��AzzZQQ��������u6�2�e�g�911ZR�L����dd������nd���eo��+//�=��y����P����_g#��2[�������Z�9$''WU��V����&Ym.-�����[�Ydff��|�zW��r�������`oNN��Q_�O�l �e�:��������(+Sk5���B����m[G&��������"s+5Q��W>��A� �r�*�s�C��������h4h���d`���%������M�Edr*����sk�

�C�Mdb��nm�VW��=^�<Q����{m�2�����3�����S���Id{�~�bnu�#7�����������A`dt0%%E�x������7w�-�o��������������	��������VWdqb�9�����vu������4������5v`������#W��:��\�2�����O[��{�����x/o]�e"�{g��_�����iBj������+'w\&^���8�����wKK������7VZZ�\8/V����DVt��]��]=z�����������������X�x���_�|R�[&�����1����/���<�����}}��������C&�gee>??��k��{��:�e�j�,���Vb����+��]���������mw���o��w]�fc�����,\~�o���_�zu������������'���o�Z�����KI9����0����F���������n�2����eY2==��ig��q�~}~�
rw�W&��;��W�T�"Y{�~�~Lbmm1++����^!��s�L�����L��^X���n`��e"s��sko�Yd���9�:+����g�^XWWz�7���d�+���2dryfg�RS/X� �����e��.�����M���2���@&���b�� �k���L�	2Q2�� d�d2A&�D!�$d�L��B�I,�� � �X�	2A&
A&� d�L�LbA&��(���L�	2Q2�� d�d2A&�D!�$d�L��B�I,�� � �X�	2A&
A&� d�L�LbA&��(���L�	2Q2�� d�d2A&�D!�$d�L��B�I,�� � �X�	2A&
A&� d�L�LbA&��(���L�	2Q2��F2��o
��!��LZZ����_2)--E&�gff,9��L���w#>��Utq*������{������s/,*z���i��Y��~���u��YS&o�V���h�cuu����2���D&�gi�q���s����������K�a��������Q�$55�Gw �u�������H����s#����~�����{����r���nw�?1�3==�����\��
Wqq��������������qZ"����{dd '�������:�W&;]]m����������
��������ml|���tnx����Io�F��?�?�B�dcc��{Y���u���������������	�UU�b_.�aYY���
�J����o����
'�����.�2��J.�>�px�����D]�����/_������/���&�-9p�bE'��=hhx����������e��RRR��ydr�6�����|���*��;vv6�����q����YX�����v�E�A�2���_�anuq�����������2��lm��>��,�����3rs}ei��������Z\|�����V��	����k�T�[]���fOO��G�w\&��cn*33S���&95���������-Y�������L-1^����O#�7 ��_�������O��Iu�k#�2�}�8�	lvu�eg��=�+������|xt��$29����RZ���*�'==���g��� 9�Ba���HQ�s+5������Y�"#8;������G��/���m}}Q���w ������WVV�Y��������[dr�7�������HMM�����A�`����wg���<WQY���������d1,���9������0�����]���|���:O�RSS>���,�����`������o����^�	XP����Q������iQ{{�����d��'RH���0������E{:;�:2���3,������im�����"��KssSoo��5l\�'^&g��
m��,��th?��2::����]�u?A�L���Iu���o�)����1t���P4T�(i�e����{�7����S�����%��m2��A&v
2Q2Q2�k��Z��r��]�L��L��L�d�d�db� � � �FY&O�<���h�� ��X&��C���1�2y�0��[�>~]A&��x\���j��2EE�������1##�j����X__�>~]98TV�������C�C�5.�BI�S��Y���,�Lho��������pLh/AW�~wq���y_�{@v��qdff<v�]{p�^�����d-��7�>-Rn�������������$''���^��D��/_>]���=����nN�����l�$�byy�Z��G������>���I||��G��o�:���{qq��M�������SYY���tD�ii����tv~�k����mY���o���g������O���R��g&<��Is�_Wl�l��fL��3++S�tdlC<do�������v���c9���%~�3~9�abGy�i�(�Ojk���/���b(�58����i����dwu���w���/r�mn�66����.�����M����-�gC��s�?7��g�6�r���[������
�lML���>RR��?/9�hH{��������577����<}Z��P/��������:r1�i������E�/
iii�^�755��#����o���/_>�_[XX��	��y����?�����^�M2<������_
ri��W�[gq��r���!\Y���dff���$�� w=�effj�����������~����������^�M"�����Z,�I2���?�m
endstream
endobj
62 0 obj
<</Type/XObject/Subtype/Image/Width 367/Height 367/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 3409>>
stream
x���yxT���C�NH0
�,5�b�
%n�#� *��UZA,�l
E@��F6��nl0l��!	�Y�N�gF�wf�{�s�����>������f����{�f���������EK���i2(���EV���x��6�
�	l5(�]�����/�i�����[���v��g��t��e��V����4+5��{}������<���b�-��k���;%��72��9��rH��������5���9���^/����:Y;wE���2����8�Y����P�*�w�vO���A��$��5�Q>�� w�����������A[Z�������s��
�5h�e��J;���"W�c��l"�v�:���t���c�o�������s�S����+�vh�
�{�x���9�sN��6�s�O��S�����������v�����
���{P�J�����}�R;�|�{P�s*��4@�~���rrw�T�s�U���)��+�C*r~�*���s��{0r#�r#���An�9s����4�h���5�U8rW��5�j��r� ��5��N���q�d_6�y�(��7;���<����y��C}�m���ni����y|��
5E��5[&b��ag��dD���vi��L�c�ox�TM��~���ix0����.:h,-w����<��D~���/�i�L��h������9w���Y��������p?�0�C�c�����@�������Z��C��m����2�'����?N�����y����
������q|�\�|�
��V�5�c���j��&��9��z�Sq(+�����y�S���
��Ex^U:�-!����<>������E����V ���Fn+�[��r#�����s��5���m�*���L���W��yyr�f��*����>�j��;���#�s������g8(��{��"��"S��#�G���h�����F
J�C��?VpPo?�[���:w�/�<2l�������[�?�U���3-i����
��":'2����U&�
��W���s�nQ��X�Hj?�)����	�	�E��Bp�-�p$C�����[��K�I��
�oW�3��GE;���Cn��.�����E4k�������cs�c�s��#c0��y"��t\TxQL�����r_:��*�fy��_�y��C���AY|�������k�Vm��c�>\�/��@n���5�� 7r[���f���P������D�������WZTHt���x�}�yLaQ�����[%%���=�{&��}R������qj����$%&�$����*�����E!�������8J��F}
����.x����8��v��}a��:�i�w:I��&si�W
���+P��H��:7����<�-���s���!w��:��c��	��G����������mg�u:_"�^+z�`�pZ�)�sl��+�)�W)zNs�p��L���.5��%DpPw��MU=3yF� ���1f�E���O\?{��bZn��p��[����z��?�7]�4��a�����
zt�q���|�X_�����U�"��C@��"</�+DyB�y_Y&���
�x�Ds��g"r#���An���
�� 7���mrk��An���5�� 7r[���f���@n
r3���V ���Fn+�[��r#���An���
�� 7���mrk��An���5�� 7r[���f���@n
r3���V ���Fn+�[��r#���An���
�� 7���mrk��An���_M�6�{��r�n��|���C^+���9�C�C�8�5H]���-�B	������X�+���Q!a���\�+w�����;q��<�P��lU;�"�<�f�#��1�+�_��#c����%pe�������,�[���9�A�}b��e���~��so�����O�#���e"�i��S4Npo0|��y����3�D}��]E������*[x��B�]<LtN�E�s_~+Px����g|d��\�D�4������O���e�\��M�E�����B���
��opue�J����!�w��������%�O�����������n�C�=#�mk1m�n^yk{������4��~���s�>�{�Z��Fo��}������
��VW��k������M���ZC���e7
���m��;�M�m���,��z0�mS�{W�6��o�����E�&��#���Is�z�[�u_Ff���n��I�r���:�6�������e�VJ�m����m�����M����v�����$��F~������9��u��[��r#77�f�[�������fs�[��rk����[��lrk��An
r#�rk���An
r3��An�vCn
r�9��An�5���n�����s��mR���I�
�]+M�m���q�#�9%�Ds�q�}�nu�n����]s��H�������u��rg���QN�S��%�U��, ��7�M7�S�P��0v���mJr�N�
I+&����J�t�r�����M��u�`��Z�>=l��uNe�@���M������$w�{����������SfB��2��������w��zX��i����kv�J��>, Gu������F����6�9aQr'<��i���G�E�i�E��Y����;|�eJ���D�N��!Eg
/
[���UL�>s������/c~�������:����c#��y4����y�����o��/�H�qs�r;�MY��Cm�+>��������Kyp\��ji���n�k
�(��I�����k$�c��?����L
'��]� �e��N���I���	�s�#��;j|�(�|L��s'N����M�\�\���1%�F��6r���������S���%�J[]��:�����E%r#���An���
�� 7�#w���7#��r�\�`����]_�`��ryJN��o(�9�2�AQ{�oF�+w_�w������@�Yd�>.�x�'
���{P{��V>u�#'���	�{w���I�x��b��(�9A����~A�0��1������Q��y��-i���������D�7��m��";C��}��[�s��}��k�!�T6���U���������@M��r��Vo��=(&��z���O�����������Z�C!��=���:�vb}w(�����p�<<��������%����9���%�����~v��

���H��W�����4t����=yX/�BD��O}����/ig��4���s��8'c���?�������D�"����Q	V���N���H�8�u����I�B��
`�
endstream
endobj
63 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image61 61 0 R/Image65 65 0 R/Image67 67 0 R/Image57 57 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 64 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 11>>
endobj
64 0 obj
<</Filter/FlateDecode/Length 4749>>
stream
x��\]�7�}����O����&� @'�,b���y�A������������[���nI�����>xvt���bU�X�&}������l��^�����WM��
�/)�LtS��U��W���Z�����W�=��R�]Gm������������;b{s���:A�mm#����v�����V������M5��I1�G�{_G]��k���4��
6U��:0�A�����&J����&�Mt���,!S�$��A�*T��Mc���:��1u�j
����Qf���]u�elIp����c<K�H��^qCc��	R��e���{fj����:�i!7����I}��-!]dp�4�N��W��F��T�C����5�l1���Vb��O���*��A��B|0ud����0���������M���G���2��3\����1���1��B�a��.L�N
F,���4F/o
p;��
�������al
c�iy�X�$~�>1}����K�o;#�f��3t.�d`N{��hy���b&;�<�a�;��!ch����B���MuBkebI���F�:���q�'���q4Hw"�&ky��
���G=b���%V�-GY�%�� &&����q4@l�����"c��V�A�����y�."���n\d���
��4�������H^u(b��n��:��1�'��v��!~z� ������!$Q��`��_i��P!��c���]tB���}S(���4?$n8rA��!XF��N��!�K�U�q���-�==
)#�����A�C}bz_�;`�c���iDg�4b�8c�A�
��s,S2^����#�ql�#��������r��==���N������P�s������q������H����C9��������w~%�47���!qS���D,5L*������9Y"��� 	%@�K��L����,GPJ=�m4���2	�.�� &��p9��
rK^H:�I�xc�G���q�H�(�4��#&�<��8J�]g;��S����&k��M�h<\�(�a�:��[����%-��[�2�H���k�7��vQ���)�0��Q���/��������1�H�Er��:����C}b�b���M��(�a;��b��\�'�N+��(k����C7.����\@�b�X���K�w��7�S�Uc�O����]4��T�q��(�J�o2�������e���+��r����|I�J�C0��A�U�yq����IG��D2L9��I%�)���h��Z|Ea��0J���j��g�P^�mdC�X�!&��o���nlj�E�*�i}�:�8p���(�(4�dm4���
R^��!��Sr���(�&�9��X��=�O"S��bt�}���O�`�
@l��
;��R��#������)��X�^���M�)X��T}����oxU5_]�|%b��	�= ��[�{Ui�6��}��H���J����"3�P��0&��$�~��������f��������M6����bj	��������n���0[�2��g��j�X_���"kK�a8&���L���ed@�Q�d��=.�n���&���Tu���{����5fW#G�]������a�������	Q������i_�8@���Q,�����%�R(j4oy4c���U�D�����|���ii�g1)"�k��G���nz�'����L�[�~��q2#�K���-Z�D���a�@?�h/�7�(3��C��t���9����xP,�����?[�9�="��?�������|��I�q	��z��Js����\�C93��#y���_�C3K��Z�q�T1�gJ~��gw{���xJ�

/���4<�l;[�y��JNF��:���By����J]�R�?U�[������N��n�\�w��*��<}|�)�ek=U�5�'?��x�aap��tP�	��u������`��0g(%�
��j����Z�k�-?X?Qf��!O^W�������xJ�����������9�3��5�[����5��dPT?�/�g/�G��8����������=��k{"^�^��k����6
���Vie8��8�����~�$����C������X4q��9�#�
�7��l~�xW�z�r��nV������������zF3l}����-���l���s5Ae,���e=�
S�����SO��Xh
?����
��hxC�I<����|OA����0Uar���~�g�L~$*z�&����/��4��Q��2������h����w�J��%����e��������������O�Z�!/�^���kA�����GM��HDX�������p����sHa��Qj@������q�f����e������$
�a��XD[C�i5wE���\E��re_pDB�lLX>��c=6����Dl
X�����<Z�=����]q���_�3'�l��~��"A��f/7d��M�����R��Y����wP�x�:���B�KY��[3�\D�{T?�\��	|0����]�TAc��t�R_�����l�s��/7������Y���G;��,��XHa����t� ��f(c)g��K�G�G���8�6|i*t����'��	jR����A�����S�Z��{�b5�+����e7��jF�����*8���\�`��l"�������T k�������|Z���f�}Zy;7X|�������~�o�Rd�/#s�H/\�o�b�d���Zl���\^4
a�x����e������������.!�J�q�V���Ed�,��:�@���kW��������4%q�{�v�W��`f� ��{��Z��g�?*\����4��8Cs+��>���������J;�@��Hk��D���@|I0�Z���B@��,o���|}��|�5U>�����Dc0LK�q6���5�<��!���w��JM=�*R��C{����������[a��
�Uj��k�Z'��6��sW��	Q��||��M[��-���
����j]i>���f�AS�D�4�5R*/����!�F�F�6����'��-+�#�+�Y�a�b�
:�Q����d�wE����E�B��ye$=�{sbl
k���A_�IV��!@^����!�K�2�%H��V��?yd
������Z������\>CUh�l���@q�� ���K���0�!��"2f�,���t3��GK�/P3��r���s0J�":�l�eJ:[F�����9�e��z�8)`M�Y��4d�5}1���H��M����F�Mc��gsbU�$Vca��������
���_�}�����wn���z���K������	�eF�|���2Ci>��B���YY>��V*r����w9��3R%���+6��+�6����g.����~G�g(c����r;�\�>����:�1���$��.�%�HFT�����hM�C��U�~��$g3?%��:��P�����_}��^��u���u��+%]aRF+kZ�8�Cs��M#*���-���q�8Y�`e�|U�<Z�*����u�����r���4�o3��rW�vi��S~�4X�����K7@��B�"Ln@�"k����2����KyX?j}��t#�V��>����U���q�s`��P@�����E�1�����

}b�^���X�����!�w��+�M��� ����V�����82�������/XC��s�����V�=G���EJW���&�'�j[�L�SXl2f{���:�i9��10�
����5nx~Jk��6�$�]���t5�����M,��4�jd^�Z{IW��^"�4��D�L_rs�U��-�O�&_�z�9\���W��Jbmb�AmBcq'jL�(b����r�&���&�Xmb�����,'�:�?O x�������[dKy��*�#�N�����X���B�s^�r��1t�X�P����O�Z��(�5��V�s�p7�@��O��tj'!���|9���|�[���^��
l	�}W�-��^v���w�(�wz�����<%��`����a/qf!D�fUA�R�:��.w��V�["+�(@p�qt�v�Sv��B�ZJ9��+
��AS)h���,�~���z.G�,����lzxY0����;��r���B"��D�o����4,�bL��Q�{MMr��$��:1���fn@PW���h��Fs�U���
�Ti$(8����p���?�#	X���B��%����'#�hx�����������WG�����+��p���R{rl%��`�
:��|�����
"F����j�	��-��w�&��|�������0`�^&�<�� �s�1�4�
M��.8�z�i���5z����|��nh
�.I�8�=?�<���4��|D�uY������\l�^��?\����\u��F��\��b�K����J�Z�<I�K� "�-rz+q@�����H�7��"%�Zh�w��������4�����@;��_N�#�������cBhH����3X�YG��%�x��_�� �i��������/��T���Z��������'<Z���yr�8U�}��:����:>���O�09
������|dEn�p3�?��p���P�J2,]}J��<��8����
��<|��f:������q8o_�o��>L
�YNqw�OX��S��z���?7��;cs�L��C��=7<������E��y��$PN��o�W��hy�n��NT3 ���~�
endstream
endobj
65 0 obj
<</Type/XObject/Subtype/Image/Width 227/Height 347/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 66 0 R/Filter/FlateDecode/Length 7327>>
stream
x����[W��G$�� �A�0B�P�JL�&&�t�J�H"b\pA%n���,"(�}�eQI�����gM��t7[U�s����Ru�����}�����B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�BL�,'>>>����g����<#mAl��##�*�����DDDDGG�Z�*!!!--m���;�|�������e�8q���_����c��}���bYYY�6m�6�������x�k���!!!~������=AA@�1bccSSS?�����l�w���K�.�����s�������������������/_����l����A'�����k5e��/�����m������477c_555��������~��������wgff�^�z��ehmpp���?5�N��ZDH�,�$b��m�`caa���7>|���O �+'	�����U`��p"=P�����KW���_��������������_�v���3p�}���8._'�%,�2<<<..n���X����� $b�PV�Z���;I�]�����E�O���c�� �Wz���7o��d�z\^^���?�x7l�{.\�~@o= ��A)eLL"�LqqqUUUSS�i�#B���;6��{��S��S8R/���g�*++�<<x}��7  ��`ks��]�b�W_}u�����
��X���-S�����J�������}e�p�l0����� ��7�
�/�������bFD6��������$�"����]���:d>����#�"W_�r%�s��9H��^�#J!,��|9������sIE�Q�G��ye��D��S����C$�(�


��QQQX�h�+{vv����Q,`	k��0i�Gyf��������������k���r�T���=v������V��c6���E
��g�����a�������7p�Ndd��;�ggg'f�]v�H,�R�R�	A>:�.K	����}��%K�0%@��������$e;u�	��$EZ�x�0t���������KLL���7�c@.�v����������!-m\��`vY4V}�8�'���F�������			3'��O������c����t���D�v�A%;00������,����&cDD��}���������	�~j��L:����QC�v��=aaa�O�>���/�����a�`Q9<[|�#�������qQ����BMYY�������.??����[�n�(������72��]�T{�[___QQrW��������gGGG���#[�QTc��y)�`d[ZZ>n�R+����{
K=_�)�y�U�/�W�^��s'99�Z�b!8p������W)��v\tz��y����SYs��5Z@�����,))V=.�n���������:����q,�(������P3�@������R����g&JT2tzr����"
(..^�h��>j��]�vM\�w��Dn;G��&l�f0�=9E����0�x��G}d��*�����R����Z����v�7�!�|;CCC�.]
6Z�Q\�pA��Z��������I�����k�\}||�m������Q����������RRRLRXa�����)}�:-�M�Xq����� �%��]�v���t������������W-���������3�O�$��(����hO�������kwu&�v���������7Z�����nii�.�S����Q�>		1Z�����=|���W�QgnGy``����3��YQ���sG5�����Q��y��h���%UBB�����1Q=�:�P�,,�w�^dd��n�����v��g��i�]G�:�qMXZSS��e��� Y��y3
+q-�������������W���jkk����qF���V�����?���^�~�f�y�U)b!\D�;������={�o��^|�����V�:-Q&�/^���w�%�������^YY988h`���@�������4))���
���?���C����������NrT�-o�/�:���(�5��r�����U����!������y�A������0��	yuTT�������\���-��<!���r_^�}B��f����|�*���&`���<y2""�$��NAAA���+..�����m�(��-��{��F��Y�~����*:��^}��mgg��RRR���c�V����~���VRR���]]J-�
yd���s������$�W{�j���uY���[���F]E���g�@*~�v����bcc�p466�l6�hu��h���u���-�����D��c�����K��/_�|������?����|j��������s�8��+W>|�������U�]����X������>��L�7[��F��OT?.����(����w�^�q~MOOO��;�����:�w��B����6l���������������{;|Z��<o�C�t>�U��������?���?���4���[����u�����8,��?��e�D��A���������W�b���t���Fg�n�����y��/*���������Jk��			�����1�&�CDE�����5�����,_�|��]W�\ijj�J7e)�� z��������:4��*Y�_�6���A����SS����:�|���F
�=%�8������������111����{��JN�������7~[&���eS�O�`�cq������FI��g�EGGO�R���O8g��������O�=3�f�Bv�L)))	s���kH��w��P��<6Q=ukB�$Q]>�^?����'����;���?I�����(�h``@j�����w���u�����iJJ
�����kjj�m6��"E�;�|������������E�9W�X�bF�\47JT�D��'��?����x�����m�����/w��y��iGG��W���i�������T�VB}��o�pk�$~�Az^�S�Q#lb��&�~����GQk'&&���ce��{D1"X�_�x!nH��D��F-[�l�o�EN��l��%������o����B����O� �@>�JU��$Qu��|�*����e8���z$EG�Am���� ����������rL�5��RO".((@)d���HB�uX�P)l���x��ED������f.a���i6�\G����U�u��%�$2=��"��������������cnb��H
��)N� �@��f�	E�Z(�J(�o�>�n�\Q7""b��iii>�B�{���������F����p��� >�XDXv�D"�v1S�1#�W���A�0��� !����>��S�f"Z�����E������Hq rK�Q]@4@�� �Li��_��YNf;A�E
���j�*h�r����C�������_TTTRR���	���n�H�;e<{���=�� >~��
l����Y
��k���>�l��5�w��$44���mC}��g���3g��=8"|��k`ZQ��x3�1a���V��7h,��A�@���3�	�������,
�J��`:��K[�u"���;F�{��G������r#r~������FbQ��C2�U�`YbP��-�gbb��c���������EUV� V�3g����Z��	gHB6l��
u��������EUE�
<���7o~����`,��@E�U~����D�V���*?L�I��o�m���8z���e����RZZ���*nc�9�4]EuY2�=f�6��g�fddL�=<���-[�5/���'O����k�.�Q��)?vqWywwwMM��s��M�-=D�/����)�_gs���}^t��*7V>C%�K��:����?��CZZRY�|�����n�H�����?^UU��L���=T���U��%r��*������0�����f��S-��@��>�+;�����z�jcc#�#������JT���Q�o��DnP[[{��et���k���f���aaa7n<v������
zO\��;���{x���Ut��*���,nW�����x]�xq���Hkccc�q�����������X�1m���7m�����_�rn l ��/�����!���G�f���������ZWWWVV����655u�����0�Gt���E���8"WBB�q���'O�,//�6�
fz��n���y�os����H�[x�x�r������GPQ+�7�|�y����DTg�&����,�N&%%edd`��,..�u��d[[���Q\5`z��n���z���J����;�.�U�����s��7 pAA��C�>������U�V�������Z����0	|�3�{��J[����-�$�G�{G����<x���3g����BL4�m�9K���Z�x���W�BQ�E_T�vq8s��I�
�[��Kp]]]p�1dF�v���q�Iaa!�>(#''��/����m������9u�����K��������j_SSSss3����+n���� ���DQ� �����"��`h4��J�s ��%G|�@<�n����4���V!ZPTC��8������VH}�m�!.���voQ��3��(����������Z�JQM��AQ�E���PT3cW|�}�BQ
G�(�E5�=�.rPT��?�4OCiAQ���zE%&��E%���K@Q�%0��Fw1;�X�J,E%��$���":�PTbN(*���������PTb(*������F���X�J,E%fFJY)*13,��%�:���@Q��a�J����?E%�E������IQE%�B��;�QyS
�A�S�/E%��K?E%��$G��D����~��O���PTb	(*��X�J,E%��pQ��bx?*����h(*1'�X�J,E%��K?�&�'��WPTb	(*��XS�PTb	(*��XS����QTb~(*��X�J,�)b	(*��X�J�o�&���K@Q�%���PTb	(*��X�J,E%���K@Q�%0\T�;�X�J,E%���K`��b�Fw1��.�5D���>�JT����GS,jLLLoo���A����������S)���������
bZ�D-//�bQ���GFF�[H���xPXX���3����5���3o��UmE%r���WNN��JQAZZ����j�(*�#|NJJ�bKA``���O�M���N����1N��H6N�:%V�w���Gct�#�+��{���)NP%��Y�����0��������K�b�?�����W��yCQ����8qb�O��A������NQ��	�N{zz�����T���������l!���`��9��l{�����RJ�/_^__�������X�����������-����={������FT�D�;�)�@�m������///opp		E%b��������:%�EHH�����j�������$x2Z�k���s�����rlllUU��Z�j]�&������KKK-Zd�J	�|\\\ss�Va��@�j�������FGG��R�������0���$�Y�7o����m�{|}}���555IW����r�Z>9�O�@u �H������V@��n���������������[<U�kheee||��,�����y���+E�
Z�U<x����+W�����n� W�t�Roo�����K�i�PT���B���,0Z�q1���G��X�����4�$h��x����377���K����_jjjMM
�m-�(�9Q���xhhc���b��{�A\\\ii)���tE5����������0""��'K��i��}�������:�����`��������vj���]�j����n��p��/[9F�IQ��4X��bA<{�lLL�����Vi*@��}��������u�jB��(�������-w�t��x###�=����"��{������'O�<x044t�Y*1w��O>�����XS���(��b���VPP�Bx��f�	A��N���G����1<<,�� ��@�j����v�7(_��Dn���Z���8�B���cT
�D�?��3//o��%3$�D�O?�����/^�@Gy2�������i��w�q��y�f�B��]�+5�|SSS~~>j^FQ�kJJ�����������v��������i��w�q��y�f�B�
Pthh���gG�ILL�f��'	$�5<<|���UUU/_�t�c����v�=4M��n?��5o��aW�?
zzz***v�����7���O6���-[���ZZZ�*)����(-%�\�U�s<7J�y:�=v�6�O�����XXX��+00�������|��'���<���%z^yMv
DUn��Bn7;���<�����������{�����e":� �bU�����t�����:�Zw�L��c~���������������J���+WS�)����������~WW��c]�kM��v�0eBQ����w��E�?Y%�����Y���q������XU}�\^�����n��DT�F�w' B`����������o����{Q�T`		����������������P|��]��J��{�n�*��TQ����/<QrVWW������-C)�����,V7$K�.��u+�E�������o1�PW�!xe����u��900�������rn��)<<�������;������\�p�2�m�?CCC���F)%�lQ�����n(�0�N�>�g���(������}:!� CX�~�������._�\SS�������!'"^��\���PKB?uB���^��>_�~���%Z�mX�KJJ�?�k�.�<&&S�e�L@�	o�$ �]�x1���������W�\���x��r���.,�� s
�%�B���������N���2�����}�����N�
���7nD��������Ck�prM'XFaEPP��%K�������l���7�������O����H$�]�vo4���(��r���N|������S���#G���[�~�W���achh(��+�d2��;G���-Z��Z�4���B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�B!�b�A!�T
endstream
endobj
66 0 obj
<</Type/XObject/Subtype/Image/Width 227/Height 347/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 3045>>
stream
x���{X�����ewYXPY.�"(�
�B#2���x
���(L1���Q�Y��y����<��Hi^{����h�P;^PQi�Qp�]�634K�����������>-���}f�w��Y^���BT,������}E~A��:������}R6jT��WH��m3s���q�Fey<�_��j�R�����H����GF�����UE[w:z��e��Z�-������qS��z���#�7�^�x����c�A��BP�G�w��9+�>S]�3�l����A8���-z]�����_���A*��1,V�����_��h���F�7/��x3���aJ1�i$D�!�������j��w������s���q�;�G��P^�h�\���I�9�v���>\�!~�	O}�O�l�=ww'nm��Y�d�`_��}�,.���/�=wSe�;����T��;{��+���`z�������"V��^q����y���]��J����$������d��dD�gX�C�;;����X~�!/���B�c������/_�����t�������sx���Y�(�t��^����=X�w���){zK��������&s?P���:?�,��&�y�)��q���������s������������!����|]���,��������h|/����^����Svs��Ab�/���f�yqG�����y;�>�� ��[��h�'���@G�r��t�i�r��p}[H�M ��,�����i"p��L����W�{�����tcN���L'Q:��[L[���f��7����,��:��'���B����us�Br������e;�9����m��hoL�%�F�w���	�t��Ac^���Q��j�Y�7b's�E"���M\'�`X�$w��<X�&�2���J��1;��@;����|�0����)����/�q�r~^����A��\���p����&�1��h{C�O�����&�k����{����M��vN���5��� �U�{!���$i�.�v���������� 7�������dl��f\���tG?(��h-g��0��-NU9�������H��t�x�O�����f��|pS��E�����+�	���x�8?�? 	�>{[�W�����M���q�hc�[UD+��V��� g�_�<$)��'�5[<
��������������"�z"��z}��A�?9w��S
� �u��_Lpy*K/m�:����c]����G����|�W�%�N�L��t}?�~��o�6�����_��4Y�������X�S����|P�%��0k���e�2�����9q����fb+�y'���"�G�O����XeM��J���u5��}���AR1�k3Y��?�
���J�w�Q���E�N�|��y��/9t�RM����jst������������u�-xk���#:�zS���=w=�F;���k2���B�X���31e�?_�{��������-%<_I:dY��h�������54����B��b��,��[uw��$������`�p6��%>R�L���d��l�j{�T(�R�D��37�nc�n�;j1J$�[[��+x��	���z�}\0L$����qo��m�i��6���8�~����)������YW��=��v����]}���F?���S]n&��S�ms�:���<y��������M�W�T�|?���2!>��E�������h�[���+E�tn�	UF������XJ�W*K>�E��Mh���J5F
��%�aM�vLxL�����
�����Tg��M$������iq*)���T�k��e�uF=c=�N������y#��t
R��iCT���8h�����i������L��t���U�<�D�������d����~�����1�2�`��P��V�������}yDr���� ?�XL�B�����#�D������._���\�����j�'�������?o^�r���s^�%�{*==}�8����s�.^�jS�O'.j�lM�z9��m����v3���f����,O�p��U�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(�����(��c�z;�P*���>��v�a��q��k1IZ
(�:od��V�1��ofOm�zK3$Q*u8���2v��
����_R�}����f��Z�����H��������k�,�K~!�U\o-#��TE"��.���n,��<z���2�T�kCi��O�p���iR�-T"�a�z�i�{��R,�/���Z�=OI�P��s��tXVt��nB8���m=����$����eC�$������-	�V}"��~�6�b\(�Cu�5�4~�bH�^R��F�nV�[�"Q���|n$.N�x��,e;[Ky�O��?�%���L���i�G��$"�1�8��m�����I�4���
�� ��eJe������
��"<h���g*@�{|���#��T��h���O���I���p}r���y\+X1`~�}�{�|`z?���?"��<c�jO��I����N!�����qp�E���}&����Vv���^(�����7�S�&N\�������c�]A��I�Jnx�������G��s�#���P�`���7�W|�R_��a�+��~���g�������>
\��$Q���p���c�����������A���?2���?�4�0w�Z����=���!�
�w�PEH�����Xq����7����zvN������ih����-�xL��7S/�,z]���N}v`l�'J��_?$g�'E%'5���b�aN�
�0��j6n�r���E���D���b��.���������{u����U�Iv�o�����p���YuW���������o��H���v$}
endstream
endobj
67 0 obj
<</Type/XObject/Subtype/Image/Width 217/Height 347/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 68 0 R/Filter/FlateDecode/Length 8188>>
stream
x����[g��+
hQpC-�T�,�����Z��v�o]�n���-��W~'3���$bf���/�$$��g�9�9�<3��x'�0���D�J��x]��8�.��������3**VW7=�\_�z����';/\�z����
e_��R����������4M;.����i@*e?����u����6Z��������9Rs�@��}dX���
J��{�**j$����]����1vt������OL<�����~6;;?3�bbb��Y�z�N����d��M��� ��FU��Q��5���/���l����zii^����W�o�33����&'��x���C����]]�O��?r����qii�M�������b��J�h@"��L���_�s�#�r����pH�	)�Q�&,�Gd��L�ryT�|�P����wU�ZU�W���_N��Iz�������T��j5��5�@�
�*�]ID*
��)�d`ZZ���h����~j��i�����.�5���_:w���������������o��C�������P|>6��g�=���(�i����TJN���z�L�X(�:g92�VwQ���w����e�����Y~\������-*ye4r>k�����"B.^6���l����z<����[Z��������N��P~E��x]����G��o&&��{�Y �L]!E�d$\����J{��>�)mn���J�B�\�Y���l�w��f����������"'f���*���W�V�}����ug!�1�V�%�X�K�7����b�I(`F)lRvA����������7�(`�-��{w�*�����b�7:�?����+
��p�k��etJ%�a��UpVL���~r^���X�K��BA��rt����Z?nkc��������Hu�I����������zj���l-���%o�]�e;	�������v6����=6��P����?�����������Xn:~/�=�2�{�~����H�X��MD���ZM�oP&�~��^���G�O�����B���2��J`�J���7o���������a�-[1���H$A�n�����H�T��KK��U2#���Q������y�!�t4��\,�c�>`��*e�(�s��{�l�abB��SW[�k�
��g�R%279�l6G��W�Z�����[�"��tD3)e�q�_�7,�.Y,NMyGF�47������c��=gZZ����;�A�&��H�S���9��Z����}E�<�z��f��~d����������j)���������LJ�"J��^��������|[f����~��~���B�v�+SH��o�xr��s��_p8�>����B��)�774|f�.�\��Q2n��v[1m n���nV6+&�F�N�3�eP.�v��\�G����w�LXSUeV���l�
7Q�CT��E��X�TA�j�d2(**vb�������_��0&�������cE�1�]��~���x�\����[^VfR�(����,�
��dlX�}+��LR��h4�<�D�#��P�>p��^�d0D�������l4��be�Z��R-�l�z}ue%�^�����S�MNF��e�SF���������-J�X�J6�����yz����TS�cc+�l~+
@����8�V?p���8���2p���w�'�M��>
V�7����"*�m��UU|[/����s�	n"
�(�+�I�!��~?�}�
����;�+�����v��G��������j!��P�z���%�����-��U+������v�G����y�+9Ga����ITT��?2r���_+�zz�����+��N����/�tN�������7�����/�
mYo���F�����$��D�q�?�X0��Ci�������bc]�s�y�=M	+�r���B�����#U�6����CXqG+�
�4!\^}���L���#���a�@W�<�DJU��[����,{��iom}j6����t���&���4+�N�(���\�B:]TT$�~}���.��Oi74����J[��.�.))Q���[,�6J�b�)�������#�q�o�e�JEo�s����5�S�f����� �bD��|����B��8��s'O��rE�k��c�W����i�?���?u����o������k�3����C� �X�:e�lip����c�����Bn<X]m�j_8��
\�	S�V+��8�z�l'^�Z\Tt����o�h�����";~k����vRi35N�����"�8����l���7�^5��0��(����������M�T?"�/Y,�X�M��B+�7���T������J$i7�zV��t�[1�����L�_D�h�-��~����o+m){���O�����7vY�V���m�b�7o2*f���3�!�'��~�^�p�h���D$"C���<��c?D�����bE���`��or�	����c��<\�S�l�0�d����F3G9���H�fa�4���99
�����������V���>^�m~�
�=N�J���sdd�e����q�NW{������<�woi��mm���<�gT���.Z,t�ZF�Z?�V�f+&�~$�@�$�T�^x0=��H��>�����re��,���?�l��7�q9�k���.^�r|���N����`���)�X�]6?��an��>&+FT�.������/D����}}_��y��(/�md�������]b#�k�{z~��_y�T��R�������ahx���������y��z[�h��F�|ih�^OO>����hl���T��;J�P���i�^����<%�ju�������N=��m��Fvw���K����i�������D����h��\�<0@�����I�m=qb/^�'H�K&E�{��y�"m]D.e�U�m����VWU�ml�I������XH��rC
��[�����Q���r�WSc4�Ppp�o���[�4���>]]Y��W����6�z�n�2�'/V�
�K��{`�}���:}_Y%���f�o&���6�-��6(�y+������)#9*��a�fY����L�O>��������Jhq��������o��eE��h��w8��l^������_�|���_��)�L�S�����2YP�\�>x�v:�|������d��������Iws�T��%�g�L�j��I������o��ge&��;y���3>�����O���v����i��K��o�:��&����fR��cHy�L=������S���kwcK�B:����`���P�722�p�{��������=���--T���]a���p����n)�eK�cb�j�b��pT�����"�7R���t�<�I�����S�eA���T��LFY�
3h���L���x����|���T��Tk���L��s����V����~���c�����s��R�������M��.[,Q�����������������V���ee6u������������]���,���hH����J���WC����E���j�J�[b�4a�����CC���j�����cc��^����y�tss����u���arbH.������p�X�;�����D�d6�4=}����|�f��}����44Pns��5�RI!����C ������?9=���R
�d4
���f��(V0���������1C
E����GF��fj�y���gw���|���3�������3g(7>T]M9�S�~�����qj��!���\�!+f��T*:���L�c69�{Kr�'�I%"5/���#GZ�44\io'P<7i�>��������w���}���~��w��������'cc��n�+��
�y���?�����'��_�����=Z-���=n6��z�LF�g��O?N�@kB��UqQ��j�SMM�S�f��eL9���eK�D��V��h��X��.�;B���"����((�(%;PQ��2���U]Y�����vQ�L�p�o�9B����>��]����Id,�����b"3��!�������B����;/\������7�'����kEz@�,�cc���7�\)�1,0(��������/��r{0��m#h�l�.{�j����������KJ$����R���GM�#�s�d
���b�Z��{X���*$�=w8����<�����d~���������3=��j�0'�Wd���a���Z���B/9��NX,TQR�C�o����Q�u�������pbnI�3��jE��U�y�eD.�t���;2r����A
hT�S����N�l���%��	+L$���4(=}�z�z�Z1m��^����H"��v�7�����DccUE���>�I��3��TS�N"�����R*��WR��m�$�7��n�b��LO��C&�������6)�iil��{�
N�L�Ht���Ls���O��ow����G���lx�wF+�5N�����R�^�Z������#[vwt|XS�8�L,<t���k�����?�$��m%1��'����������j����f�2w:��2l4�|80�����J��i�����dg��%x���L,>PQ���p��%���kdd�����Q*�����_��8X��
F���0�Vd��n�uk��A������
*K��/\����n��v�����PoN����\\Z�s�o@�3�;T]}���--}������y2;���\��z:��r�m�7o��.x+�����J�6�����3��E��������{cc���!���������|�����y����]:���u�V;�r�<��_��,�\A�>��gc�M�$��Z1�1�[��)m���X1Q��|[�H$a�:��GF��������s���V��L�����O>�p�lkK��:f�� 
D��$��������M�}���V�?}�����uu�'N��>�~���L�V�k�s��g�j
�=HAO��h4a�l�����'������������v������_��?q������IW�����*|5�R�%r�N�0::o�?u���z�����{��7�<���/�;cc$���I�M������UVT/�j4���n������������_>�u�o���e��\4��t�$n��n��E
���I�9����O7���N�b("�G��RilLI&J�!���1i4��^f�H��V���=*}���(@"!��]�I�b��9R�H���S�Os�Xv�V�S;'_��%�Y����[������vNo�T��'���
V!�/+��w�+w�Ux�.XV�]��I
U��`+��������
�!!V�"XQ8�Fox_�6V��g��*�+���s������e`�<���[��yi�-���+B������"�	V�"X�pm$�Y1����!N�"$���@��Q�@��|�
�Q�"$���z�zu-��+X�`EH �!~%�\C�PF�l$���@+B��KaE�_�l�"�jGX�`E�_q�"������"�����+B|)��,�"�g���W��1b�9�{
+B<��V�8��+��rEH��,nH �!�V�"X�`EH �!�V�"L�� �W�"X�p�H �!�V�"X��ACn�		S�"$���@+B�H �!�V�"X�P�@�w7n���+B�	D�"$�l�"X�`EH �a�V����,nXJ�	D�"$���@+B�	D�"$���@+B�	D�"$�f��\f%V�"X�`EH ���+r9����y/�i����������C�SY����O+>2W�j�[�Q����T�7+���_,��]�lV�Q����D"��FcD"��n���k�����k��fE��TF�����w��]O���x1�V<���<2�qe`��)�DpP�n����KKJ�l�++�b��r���	qii>�H��\Y����~��������A���H�AhhH���{�����s��i�l&+�c���nS�N'+���Uy�!��������Z�v\���Ii;=,�:d���D����
D���xJ����������C�%�Dh��3/0���!���X�h�n��+$�4��?q����+��k�Z1�P�j6XS�����"iW�3�
+�*����V�h0\�|��_#2�KK���C��.k��Ri��)*�c��~��R
_CVY����00/�������6�����������6�������p:c���aE�k#����
ED"yl67���[���Bt��3�f������6��]o����*������CZ+eo�����`���Y1"����;����C�������E���ld&l���������T�LJ���/e__�H�����H$2�T�F#W�d�����y���������E�eG���������]��J�����"_����_��������N���_��bcwG��>_4�vel
X1���)���?'&�f������'33��A��`����t(�ZoH���=V�C*��@����;��,����&M� 2�����+����ZM�D
J��:]Ue���!�������jaEa*=*��$�_�z�Z��L,��D�\�������c-g#���h�^<�u���U$��������9��WF#e�o��������������x�LY=�P�|i����C���)g�����
�H���������T��=�����|;%��F��A�|���5��u�9�b�E�SP�y2== ����W��p=���nn��&SV�Ua����:a�6���������W\\|������`���������u9`���t?���,��S/���E�V#���y��O7h�w��J��V������-�)������W�l���{;/^�������l���{����+��=����z?s8.�=�SN(�
JQ�]�������hX&���w�bN�l�]`�U�<rl�F&�>���}��-�7�)PQ&�<~|��|�r���'X���H�qP���n���Pw,��sA���Vj8ztD�|�r-��:���o6�dwn�����������4yn�l����b��cn��kf�aT�
i��^��.���O�jkwUu�������E��s�'�Y��Q�t�)pv���]�����J	�?��w}��K�*�����;���F6���{zNL��L!�$��gS��F+�^�F����[�b���
S����y����������n_Y"��#**j��7(�?;����Q�#�s����*�@H�
�T��r����;�T0P#����=yrH��qj������p�����Ao�g^{�+�J�l�E��6b�t�%��������R�1i�u�d1��+2Y���dz25�����\���X*!�������J����_������X���Tw����V�'���d�
����|�5k�D��G�\��^Z�sw���L�W�R�r��c�B���H$�_VF;E����������2��L�6"��^7�"����o��Y|��\%E�*�����c�{�n�|�I��#��b�X�k�������\Z����s���&'�-�%�������H	pP�[v8^MLP����w�t�Gkk�)�	��
����B�����sx�����������FcD��P�dn����K�����+�p����jF�7��,3��b]�=��I�Q�:<86^�LO}�?�����g���A�L�o?J��"6����H\ZJ�UmMMKC����������}�����N�3�uaxxI��j4a��e�����s��(3�/v]�F���D������L�Je�(�r�VR*i�K&�3�m�������LO��S��u�/�kj�*+�bq�H��owB{]\RRY^~������'?nkS����N���PL��N���������_=V��?��9
����^V���0'��&����n���C1���sT���?����aoi)�\�� ��8Q�:XUu���C55ebq����H����H
endstream
endobj
68 0 obj
<</Type/XObject/Subtype/Image/Width 217/Height 347/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 2948>>
stream
x���}\u�qffwaw�GA�@)�'2^���)���^>>�dv�)Zb���gg�R���q"=���/O�DQOIAEPLPX\vvgfo���]ffgw��z}����/_�af���Y~`��P�T�w��_(�0�7N��?("���C�������Z�����_LI���c}�z�u�QI��\����������~K�����V����n�ZM������]������w�|�����R�G��{�Ro��0�Pz�&N������K���mf����8�04M�M}��%?l[����P/%{�J�s��-�����ZH�aHGh���d�ki�����F�|z��������\��1�����>7"�G%��SD�\�W\��F9>��Qm����2<��O;�o��E;�5��Q���d��o^N��Q������}�����N^�O�g�u�S�g��9e:�[����7Jr_���(B�mf^e3�����[��L	U�h���>����f����a.L��,�{��c��;�Q����Ys�U��vLK��H_�:��k�vg��n���+N���.����T��`��YX�5�F�[��,[�lV���6�;���>2-����z��#�������Z���H��"�M8���sM����1�Y����}-���c~/�S��}�=�������zg�z�90n���c�\���;z����v��S�����gtRo0g���x��z���.��6Vn�CG�%p��zc�0N�6�#�b�9�{Xd���R�bsS��"��r�<����������m<Ev�H	eTq�.�%zt%
e��D�WQ=S��_���3��'���*&�l��A\#u�����:X��������eY�����zy�::��pD��kr<��j���|�E=vW����oGy:�e�i���-u�=�GgG���2���mr�k��dn����0?<d��krF�+�f��xrq)U'�:|���������!/n�d�}?%�S2�/&���2(i�9)��%o����i>�0���X=���_)B������M����3�{���r
c�&���X��?�Y�M�o2r�j*��g���fr��{Na��;����?ysq�������g��*�����p�0W9:/%�#�^~�������lh����d���Z�������3�O;:3%b�]Sp���.�3���m�S;��
���}<�f1���^L�\�'�*��35T������j:�V���;C�0��z����KxvIn��4S�*���)3�;�5c��0.��a�V����+�B���
���wR��o~*������1�V]MYaA���hg�XPZ���u��Y���x���{��L���������\}U��7���+��MKw�������_�pZ����j'X��t����g{��gF�;��B��@�~��S�3����%'w�AV��J�a��}99���v���S����F{+	����Ck����d�a�P�Z��|0�g$T*�F��
��l}����U*�B!�VtL���{� ��"O.O�����,�w���?N��Y}���D�-K�)��r(,��v�`R����
SG����u���0����#�K��{���{��$��0�����K��J��w�|���%B���_-�U����:~��*���}g��mt����;P��=�):?4i���>;#B���������tv�g3�A}F/�-m���]�0+���O_z:�u�
���d��+�ND�N�n7���������K	(�1��g�k2��h�8�n���d������q���B��8z��]��������8�l8����Y������!�7*aT��?�;\u�$�&��A[n\�(),�h���=��Q;q��?`���h��{D�%�)}���
O����'�^Dqi�=-�'~���O>Z�b�����92���GsW�X������8w�Y����v{�o"I�m��fV�#I�4-�mMnsC
���Pa��0�@j 5�C
���Pa��0�@j 5�C
���Pa��0�@j 5�C
���Pa��0�@j 5�C
���Pa��0�@j 5�C
���Pa��0�@j 5��=�|�#�V
��!L���[)����<�����w�a����u��R��=X/�v�v+�K��n����}.6�n�V����Dn���������@N]���>�%\�~�J�������bK%^X���Y��I�.�7���+�s�1�����Y��|V[�Zi�z�9�����Lp����_��.��<��R���z���kQ���,�.��,������!B�QO�(�2�<U�"F�W��v�jv�G�g�;6�Ef��O��k��;A��_�Y�nyN����-��e��oa��:�@�z�I����E��X��3!O^����Y��6��E�Y`�x.X�u��A�]���vS_������DYO�I�=S|D^VP�Pf��;�|��h�W����T�����p��K���r�H����<]�e�3l�$$Y�2��"��������= ���/=�q��xD��j��LkE���Z�8(y���n�j-\����*+�'z��\=�7Vo~&����V�����.z���Oo����+O��{�����_�?5]���_z{J���;j��J�x�����o&G�����\�)z��;��nY>�7E�o���tt�����B�)<y��{N��;0����6���[���E��D7oU���z#��G������7�����wa�J�=fX��uyJ�4���LQ4�{E�LF������m�fN}<�{�F)�s���/8<f������?���}{���{�?�7m|/kQ��G{�w�WK4��D�fi��u�Z��Y��?[�EU
endstream
endobj
69 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F4 29 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 70 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 12>>
endobj
70 0 obj
<</Filter/FlateDecode/Length 2865>>
stream
x��Zmo7�n���_X�j�N���5E�������������|��\��of�)i�r!������y'����r|=��������Q�����k-�S�f���������h��\����g7�[V��5������q|�����]�^I��R��S�r�[�����X��dt�p�^�X��$N��A`cL������I HO��1��,'P���+K�A��(Aj�t�T@
�,��� Jn����t.�L��u�e��R����P�8bYj��ao>����AiHg�t���p"T��e���$.!bViL���{V'��	��m�Z2MH�2h�H'.�W��20W����if�� T�l#
�J�S��}����
U�Z��b�,�+�
����W�y�a;�_�����a��+B�%��R�5�J����l�`K��s������HbT�a�&��^�]$���N�7�����t�k�? q�8�\m���v2���#���#���S2�����'�P���E�C��
�f��(_FxU�@�C9s�C"f_z��w��Y��w�Nft'�m��Q�t�E��qx7������:3�T�(�J��"f0�O��Q�,�22���D��'�����u�����M�+7�h��zP��j�dxB�^�R�u��>�3�Rh�n�?
�d��/rm���Lf��%V������C-�	:6�ZG{tlK��RY�zP��\Q�B�|B p�]$�;��.��,�j���k(Z:�����Z#Q�H����9l=���7�/r[`�������=%b��=�����b,��>fK5��As�c=h��<Zg�8���it7�d�v��r���~v�����w��\��eh��\�
�d��^?���[��N����U)Z�m��RC�W���A�D2�,�|��`
:��K|�\E9&eD>�uE ��P�BO�
���e�`��[R!I I	��>�1c��i]l� �T2��1�_;l���(��Y]RR���'j*��u������T�E���NPoqB����E���&�D��+���Q��9Ih���Q�h�6:*D��TA�a������-J3������%l�9+W�v��*�u0+:���D��P���A3��p��L���������F��'���W!�Y����r[G��	G8j�-6
TIs")V���LH����������Q�2�5m�4&��	�s����8�0������ ����0�@c����S����U�C��]��q�� ��@��+G����!b������(�r<���iC��-R�%�+d�xd]����x%\B&�Sb��9��Z�b61��N�}��A����[nq'G��W��t�Wr����O=��w09g�f0���I��$8O��lx~?�����g���f�������������v�:�EB���Zb�^�Ho9����o%���3�O'0�
���G�� �����by;8��
?Y=�����Y�D�y��������N����- 
	�K�����'��kp�<���n�e|��/���*F�+�"����_�ph>����n�P��8��t�������`�T� �$���K0��rA��T)	<%��Xw�1�>?�*�^�\��m������j�# �j�i�B�_�[0x���:D�	8�|V7���A<��{��?�{�!E���z�}"�5<�������5�Z����b4�����`��,��8kP{�A�����
�vxN�����o4�mB|�����(��nn!���*���?���������`[�5�'�c<����x�]\����\7�)��>Z�!5��o�
�R�b���Z2��[���m��x�>�6��m����hD�����K���<����jZ��:A���X4�8�-Zb��BPh-f�����!��n���9���(0��ye�ys����F�]�Z�Ni���J/�QZ�	��e�QZ+Bn��V�����ZS��|����9����c�+��~1m	:������1���C�|�P�:�B5���
$�o�t�`������������n
�.0r�.<i.�*�
��0@Bp80X��
����Y�[�P.��]qq�>B�{T�{�Ld�����!pp{����s��	_��]P����'��,���x�j��s�3��BT9L1������L	Ik5J�W>!�3�mU
�N�/�g�I�)��.������O�9���n������8hI2��:	�w6�������Xb�8V�4u�
]\Q(..�l��4�58����l
�h
����Y���=U�q8���#,��?UDq�C��v��!��sP2��(n��!*8�i����)@��:�;�r�r��#N�Y)���<!}g��+v��%h������=��pY YU;d��]e��|�NZQ
P�����1L����� (zt��a�x2�5�5�+��9,~}��S�C ���nc29�xn4��Yk�����/��� >�����������0�}���}Z�Pr�����!��L�'��`��3 ��`�����lp!�/����!��
��-��������O��7���N�@T�,z;��m �P�"�������@����a!Y�b�%�&����+��lL��%�Q�b����n�X����9&�fQv9���_.���^�<<�-���/��o�����f<�������Iog�e3����l^�h/��n]�����=(��@�^Pp�a��?PC?~|U������[0D�9j�����0�������x� ��������/�P9�v	�����&S��
endstream
endobj
71 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F4 29 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 72 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 13>>
endobj
72 0 obj
<</Filter/FlateDecode/Length 2261>>
stream
x��X[o7~7����Q��~)�|I�u�����A+���������sI��f�����}��������z�i�����)���g���_�(�$g�v??<��v{x0������������F�-�O?�~x�^����M����l�#���������5�uK���rv=���X��=C�V�����K��m�`�8�
���5�#�.3�PV���	�����V��4 �����l�c������2!6mPe6@$Z�+�VzBi��Uk�0���B�\����������dV��4�"��
]B$���j���9SP�B�y��	{��, �9�H'>�W{�y�����G��xD�E��oE����6�qU��:�O
�N����j,�������a^6lL��q�40����p��j����ec(	;p�E�yra���!b,���4���_F`�N�t�A���jka���iC$B����������m�����]�$=1m�l�����H6<i`uE�9��1�+��l����mQV���c��zA$� ��0��e�x�
�;�o���������0���������T�)�*��"a0(���GX�iU�L�0�H�aPI���o�F �y��s���1F���4��}�X���y<{WJ���P-,[i��a���PR����Z�)	0�QVX�
(����jeaulwT����k}�bHeUnA��0����BA@8�.
�;��>�-,�f���[(Y���}I���Q�� 
D�c��G�u��M9&���F���.
�@�+����V�e\2�������T	�<6�������#��$	��+���W�	4��Q��y�Qjj�/��(	��k[ I*�r����f�O���_��q�iC��0oe��<������$��d�Y~��`
:���3(�M��D9&eD�Zu3@��P-C�(�������V�[R!)��Ht�1T	c�mh_l� �pU�F��-�/O���.��eU_���u#�4U{�6OW���a���-e~t{�P*M)d	yl�I�T�;�mT	�CA]�5�*[cs��c�C4OCDF_����������H��Vn��%�`�k���}*4t����FP%L�?���z����(�����������u�&DC�p:P�a�h�5�
GM��F�*i=�H�Mg�)�t,�p�
&a)�c�!���ln����d�
}C-��x��;G*�.����$�#H�.f29��
9�	
t�������x)����2M#Y-��JE_{2��l���}=�4�F��;��WdD�6�M;��bK�6��te�HR����J��l���FK:�s�$lS�>/lB�M�S��]�-�_�&G���0� >���>5�����	z�X�����Eyd����-{�bz~�����/��k��o��]L^�d'g����^=�N.��k����������'�������r����J���9�OT��<9���
?��jy7���f�@��4<��]�|x��r��x^��B��!�G�����3� ��nv3���A]-�_���v�����V�K�����5�T�0�w�h��}�<�JV�����b�`���7��Zg$����Kz���{��s�_>J�|q�C\�D�U{
}����:�9�[�b>792
�������f��!e�A��������q��	v���.C2�Ko4�n��v���#f.<����$h�������K�����+<oZ�y���BA�����A��&�\���������l"m�yq�f}s�+�8��+6	��G�����f���\T7��&��`�A�U�
j��S9�<�!�\�/���#�&�����A��#���jX@����X0.&������w�`���,��$�o��y������Cs|R8�q����7�A-��p2{�o�5a\r@v�T�WO�E�wJS�\��.{���c�O�	��E^��,���M\s�#`�(
���j���h�c�v�[���>4�����w(1g���)Y��`L��2�y�����1�S�Z@h�W�]��������&�~cD�����h.��9��/��U_.
p���z�}�_�����z�Z�5��r7���]/ng���vz���kz�Z������V�}������������2Q�[��p�J��#�[�_H����o���f"��#�������R�/ 3�9�H���+�9�?P��k2���#��r�����/;H�������
endstream
endobj
73 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 74 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 14>>
endobj
74 0 obj
<</Filter/FlateDecode/Length 2826>>
stream
x��Z�o�8�����b�����(�&�bm���w�}P%�!�S�i��~g��(���������pD��t�_-����^���O�����y�J��dVL�-�����������iv�:<��:q�Bs��}��������xh��{A
�w*W~KQ�Z�z��1���������C�4�6��N0�L�9�y�,��Jf��-�	"�ye.�'9H-����H��-=s ��[��Z����	��K��aD<8���#&X��
�������4��G��Y/��N�B����6�K��U�97���	%-����MXK�i�(���@:q^������(���M3����#e�A`�so�7_�~���-P!�qG�ce�h^![`���n�+��q��5����� a�	��r%7l+6��E��
�����JR"��Wq�=��zcw��r:�o���e�t�5	Qz? q�8�l�W����74�����g���6J�NQ���b$k
�@Cub�=d�2+��u�;��<��|`y��2{=� b.����a�e~�a�����
�2���G��9�����d���eYi|��@��/��0�a�yXFv@�0�H�a���W��q������1F�hgA�6��e ��	9�{�J���P�Y�BSu��i  3�~����S0�Q�X�H�z��jEf�ul�j����]W���:�a���e.��L��t�4��6�o>������ ��t���]$/��2��wu��M9�][`��:�j��KJ�X�GPsAs�X�)�n0[��qxu�CA���@P�m��	��M�����	4���(�'��������Q`.����@�T��#�d��Q?)-���'����&�����\D���a�!V���a8��5K �;������YJ|'�Q�IQ���%�@c���CO�������,���B�@�"hc���-��u���TR��7B�lhq�zTb��<�fuII}�-O�T��6�x����Suy*������R�S!�acM���a.���Dfp(�IB�}
��F���(�ZS�����y#J3G�5����%l�9+�v���*`�0+:��uJb(��{e��3��p��L�������"b������[�!���2�
u=l��&��i��(P%�I�vVp�2>M��'�R� �p�:D����MX$hLN�j��S�9Bq�~NI�'!A��>�a���d3�@�����>��B�ua<R�aVxK�x�
E_92�tl��u�4\F��;���GD�&�
[:�bKd[d�pdm	�T�Z�.!��SB��9��Z�b6!�'�e
/�L]T?v��r�wr�>}���.�J�d���SA���ar���`2N�3��Hp�.���]5g/^�?�������5������������������z�z}"�����+����>�8x?��6D�3��W������Df��������N��j99��tE�9�'��?�����+�0!zH�����=��bP�����.�������U��Kv�,��B���D}�&��x��<�X��2yl����J��T�q�q�'�i{��u�@*������{�`�_�S/w
�R����2��-���V`���Y�8��W>��t��':�n����p��� �j��n��;$��%q��)<���k���F��B���4�DI���*���7J_��I��>�[r�7�
�tx���GR4��?���&�s��W��x�N�������_�I�������*p�l��A��	�_���~e��7����a�������D����0���������U�O[���gn���7T����Y~m�9��c�����12�>���lV=���������U�
�	V�_x������n}x�b���B���{���0���l?�(^<�������C;�,&��i65�FImOA�~�vE�^R���jB)�%<���IP/#�2r\Nqd�F����{xZ{#���Ds�u*|k�����@��#������M|�����s��&��~�#MK��|~��)��pxY�|���l�1XQt����t��P�'M��Bx������9���5��<[Q2Xa�����`,��R�+:��-w���z�	�����=	��	�H��������c��aw*c/�B���Ae�&��M/���2�&��RG(-��$V���W�k**kL;�=��:����Mp��A�������j�T,@�X��3OG;�l!��������l"�Q�%��O�����t�O�)P';�!�X}��
���(���]\`���Z$!��R5
���^K(r���t�
�_��
%j�1�/j��^^<����~?��X/���il'��.p0�e��8��J�r;�)�i+�0������.p'���
����Sj��>��xa5�J%�-B�e�f���I$%��
H4o�%��v��]�I������c�nm��kS)hQ�DG?���6�Y�7�
{YO���<WX����@a�������#��EuIU������x%��t�!�Y
!��x����R��/=G/�:Gfv���{j���NC��^�����n7,1;��
�b��@��\��w�Vu+������9��=�������{_����n�A���k�WH���_/�����������cu=�c�����/�Hz�X����*_0���u)�&tn��_�,��N$Zu6�F���y&`K�p�))�AC�����?&�����B����2{\0Rf��|���A����[9n+��KT��
zv�JHL���������H�
endstream
endobj
75 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 76 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 15>>
endobj
76 0 obj
<</Filter/FlateDecode/Length 2751>>
stream
x��Z[s�6~����NM7�d���I7������C��b�����d����P�,�ry���8>�;���\7���l��������ei�9��dFdLe�����?b����_�5�mNO8�Ei�inw�?�tz�����=�$���=���oU�,�-E�j����vQ�*�������3�i�5��<��I��������cy�SC�p�hQ��2���)��V�Jy���8/D�
�>�����	��N����"�
\���
,S��A���<�8�����X����A�i S4-=g"]B$���LyN�Q�BP�4��qY@���e;@:�^���K/���p��+����#e<�@���['�����1�  �5�=($72����[�# Q�-��}��
�e�����OC�	
gS%wl;�la�&��t�\>UdA�s��0
g��������Z�i���YX��N�iM$������������NzC�n��>���t�Dj�8,F���	c��������^ag3u�+��e�,?0���^#��]�x�F]a�7F���N��`�\���u9��a���C��R��,+s�lw	��]�F=�2
��hIF)6:�����7�"��<��m���1F���4��}a_��R�#�x�2�:�9C]a�
M�
�g9�!��l[�0%�&3��+^q]?�Y��V8�:��j��ImW���:�a���e.d�"��ta�)N��]a���A��qv�KZl^h�.���?�����]���qS@�q�kl#�QGP����D��{�g�V�e\�u��P
o�GPG8���+�
u��;�$��1qv�
c;�fV]�r��y�Qhjr��Q�����@�T���h����8��?����o�i`���Y*Z�m��RC�g��� H�?��,?lw�	����$>�Nn��2"�Yu;@��PW��  ��"a�M�#�GXboI�$��"��PG[nM�b��$�Qo�H8�����#����l\�F%�}��Mu�i��+m��0Vg��2?�=I(�:��,6�$:�v^��#�914�������mt��|��������y[Wn���
���)�x����]h�h��#��.��P��|7��5�:�t��mt��2j�`�"Y����m�8���n"����p8P��v��k���v��U��")����r��}�����#9�d6��MX;�1XM�P�&�������kJzy��|�3�hL�6�q
t��Z�j��x)�]�+e�F��[��(}e�P��1D����X�p�����^�"�����iC�Tl���,\Y��T��6�����F�s:�1�$��$"l��vq6X�yN]T>t��r��wr�>}���^�+9��S�����_`q���`1N/#�]���:�d�����=~~u���e���K�����������E�xfp�Z�n��������o%�Mg��n`
�����W��U5�I�yr&��?��jq[�'g2�74�����������7���qy�"D�>;�G�f�A>�e1/>�s�U�����6e����j�@������hR>�h������s���0+�C�$���������u�@����g�^U�c�}x�eV�8H\��:��K���jO�X����\1p�,�R������	p����u����%
^�WK�0�V����^+���4��P�{p8
C��{Yo����[�/��%�4�a�=���N!O������|��H��5^����cet���^0�;0��)�gr@�\���b�6��K�f�'�;��D�HY��#c���
+N��eC�:r�L����#4�8-�����F��qW�������=���%����k�yV��{�_V����kVh������f����W|��y��"}D5���9���px�}�|��~&|!3l:�����p�j0N4��LVs���X�h�g8c�3�6�������G���*s�y�^���<����\{�K��%o��ZWS<�'i���G]y�,�5�F�����p-���'Zl]�
>�`�)�E��k�YdRm�NI�(%h\��n^�q�`BB��U���
Cp}���}}"Cp�����hV3<�����1�?�%���4������}��lJ)��RO)S��PT� ���T��q��jwS.x���hV��r����`]��R6���EY�U�;�{LK)�����RGiGZKQ��;�1sTiz\����M�V�\�}�q�����@z��k���
�����-{�z����J_��F�����#��m�y
J�bm�N�e��^|=���1{7�L���.����m1�p_�!�
��JuS��J����~��VL�5d]����vA��������8J�o�.��\�l����J��D@g)���G!�~���O�l�CSG�`�A�@�T�
y����yA�Z-1�����c���@	1��!�%z���j���5��E�����u;%��
����m�8!4c�+�8�CxX���:�������]���=V������?����C6���5x!u��������=�e���i�VVM���W��Y-�>�������zY��,���>68�f�j����H��a������7��y.V���u!i��f�%xs�<p��p���{*p�7P(�����S�5F�{��e�H��K�&B�o$�e�./�o������P9��fg�����M�!��������
endstream
endobj
77 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 78 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 16>>
endobj
78 0 obj
<</Filter/FlateDecode/Length 2414>>
stream
x��Y[o�8~���Gy0��;�(
�M;��t������<���x�������9��(���MS`[��wxD~<7��W���������7���g+��x��dVL�m�����V�g���4����qv��e��;�������g�-L;Z��B��EP������(r-X����/���+v�f����8������	&��9g� ���3ctn	XN�
�PW����a�k�t�T@
����Q rnY�h�;�f&D�:�2
��x.pf�G(N��5U����4k�#
1p6��
�IP(�����.!RViL���sV'����m�Z2MH4�ld�+����o6gl��.)hD�.��;n��a���-������ �����B��  ����>������u��	���+B�%��\��J����lQ`s��s���B���a��	O�v*w`��Iy0�l&�6��H�#�'������NG�n�V�����Q"w�R3YS�D�����!c�WY���C�����
�c���0�H�����a�Ua�a�����
�2���7��9��r��:T�P�UYiB�=@���ix�(�<.#;�!A]��0�hB���h<D�{7�M�l��A�3���T9�e@�����JG����������
�����P�E@�9��$���`�'^i� ��P�l������6����JY�6���T�����|B@8�.
0��p:T�]8����N���T�a�BktAd���*��wmz�]5���/��HNAUP��
1��#�G���b.��������fxu�cA���@P����Hz�F�Q�2��f�E
� h�3�bSc\FQ��O��	2�G(6����8���'����&��N��\4q��G
�\`�����d�Y~��`
:��K|�l��2"����1�U)����HYu���Q��[�A�@b��1�Q��[����A))d�!R6��f���vQ�M��d����N�T7��x��.���,�t���D�J���6����;�C�Q�����kpU6�4��
��5���0dd�E����C]e�6���m��E��JA=���r�:%*t��X#��L�?\F��X&�Y,Q��r�`�}�	u��m�h6���qC�;D��	W8j�-6
t�v��h;+�M�P���7/�#Fk8f"�l�4MX#�X��_h�oup����
sJzy��|*�XL���qJt���`��x)t��+eF�"x��#}��Q��1D���ux��2�����^� �5M����K*�D�E��W�V ���
�+�2�>%6Z����� e��p������q8uQu���#��Q�����_�y�������s�'��8��X�wy���R�M�6���x1����%+����[����OW��/���@�H���Z=�^_�w�A�s}�o%�Mg��n`
��%���W����z"����Bd�~�7����N.d6��xE��������������2D��x��xf>X!�\U���2_������$��������K�*���z�%���Mu��������'�R��J2�1o���;��ZgL�BI��y!�Uu�����p�����7������8��NzY�K6��E6_�Yc"U�c���W0 \V�f�U	�����~��e:�R�.>s���l�]W�n��n��J&��kH����o�]�/��8M���7������<��tV�E�Hxz�z\�?����;O�����D�
y:������lb�������-�-6*�YOL�����Ze��!�&�f����f�-����|�w�`����������t����x�?�W�&4��^����`*��������������sL��u���m�c+4��K���c���a���Sj��7��k��6g�����g�l�������b�
�2nC��P��R=z���Q����k�3������(���2x]�3���u]U����o�3���7���=�|����i64��L�i��[=���Leu8������� ����f�(���B�c#��{R�neG�"�z�u��0*���VXv���]M�Ew��f��;�����D��o��K�x�|F����a
@�e�M�]���������;:�l��i	�%u}C
8����o���[p-Urhk���p�����7i���6���}]}�����K7h��j�/��z�>O_���������M=�X��W�z�����=�����z�������K�O��E���o��������9�$�#v`<|8||�
h��A���=|�,WXX>a�-�_@F|�a"d�E:oQ����8�����:G��86��Y%\���\���/q
�)
endstream
endobj
79 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 80 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 17>>
endobj
80 0 obj
<</Filter/FlateDecode/Length 3090>>
stream
x��Z[o�8~����U�"��AQ�m:��Nw�b:��(J��c{l�����s)K�%�i�m�yD~<<7R9{����yQ�o_����2����\k�����4[��G�������~�hv�>>�������nK������W0�Y�$�gRwL�-���T9�-E�j��;���]~Sr���{��&N����1&u�IgR��]h���g�����@&jT��L�
�E
����R)@2�>��r�6�f�s���HX�^6�0"�
����G,S��A���8��HC�
�t��pj�u�����.!VM�L����nP�����nZ&�%�a����u���
b/�p�����K����
4"a���;.��a�8��P����@!�����Bn�A@�;�{���=����-va9�zEH�f�\����L�
�(l������	��jX"�<�8v�Mx2�����R:���[�z`�i����v@6��}q �Y�w���a���C�I:|�(�:E.����yb�*ak�B�P����Y��3��Y+4��p��"a�z�t������Na4'�m�-�\�x���cw?j	��B��B��(+M�[��a�}���:�e��-P� �[�X?hI������@������1c��i��!�%��p�E��06���"���O1�!���\��0$A3��3^�qCC`5�jatl�j���M][��Z�a��E.d����b�S������Lmt��nz{�������h�� 6�C�-�����
�1^����fSP���@��{ug4V�e����R��PK8���-�U��IBmc��~�)��n�j��Ch����bQc\����p����r%�XP4�?�o1�7vb3�ijB��p���nk�0��h�Zy?��hO��%�����r��:��g����cPF�[�n��j�����HX�����X[R"i@�"6��PKKnM�b��$���������6 ����l3�k���u#5���m4����&;��I������T��D����d���p���6j	�AiNm�58*m�BG���2h�
l��F��u�BmaX����r��"
�l��Vt�������B5�5�Z�t��it������E�.56�o��A�q��E4Bm�����m�a��#����DRl*+8M��C�����#�1�D6k�"�n���o�Oup�����1%]��p!��H�.���d�O�.�:�(
]���H���;����r�Q��!D���u��p�7���^^#�5��P��C*�Dv�l���A��ym8^	� ��Sb��9��Z�61�W�}�w�NmT<4��t{���O_��� ^�y��>�����?�tq����R��M���=}z����s�����7,)��&'����������:h��J�pe��5�J�Mg��N`
��;\�W�����D&����HW��^.�����T&�55����Ov������^�|\�����>�������`���3)�Y~9�����W������\]/VwUR�'�M�c���C�$���q����.V�q�~�E��/(���2%A&������ft��O���g{���T�.q�#q8W��l���������R�K����3�x�����S��s�waG'�����?��\$��.D�S�<�FI����Q�&\�O>+����}�Y�cu
b�N@��w����r�D=-�6�N��-�`�
�~��X����M�����\?�hq*l�X����a�LsT�$�_���56/V%6Gs-�2����F�k���������RL�M�������~69�)G�GM�����#�?�����l;��t~�����L���@��I�o�B~X���U��Q�
��!
{�����n�}�3;��9e�u�?�^�W�?ep2�p��C���n����Q_�n����p>�(>b��G�z>�|��KR��[������p�|8�2ui�O�b����4�1��Sl����C�0����u���������x�D�b�}
�cp��J��(��R�!���-�D���%;q�
t���Q������6T=[��>MR	��M�����Q'��+�+��c����;����O��4�f{�-��Oq�i<�=T��k6�@@;G�s$_�KR�a�|���r� �
��=���r4��!a����n���{�*���8�����w�=�9w��9�+�Nh����=)�0;�@5��������`A��A#����B��,�JE���.������9>yC�|G������J ��n���9�.������~�(���`�B��HV�6F��d-�7�=���rF���[��~=�����V�����������.������9�*y4���e��C���j����4%���h�8����*Z��h$�v������7�Ox�K���'�\Y���8���}d�4Y�8;�:�-'��"^�^6t�p� ��1��|�p��u��U��}��b5��<�m�d���_L����\�*��-x�LWG{�i�V�|�W�UU�W�M���1-�����K�+�D�U�e�	ZRT��+x�s�Y��10������������gG��T���v���g���OG�����?�c���}u�v�X=2����q|
����Jo9~.3\��.w@�-����v�Xz�
��d��.��
��=4���������d{5J�����Tdn7�c��T����]�h]A���n�����@�8���i-v��L�Sg���1o2��7;�
�a��+��P�t�e���c��W_Q.\�]�1�o:1N��V��
�wsy�n+d������c�N�~�&)V1��C�����
��.�ugx�	3�e
��N�J���vP�����[(">��XT����������}~3��xus6��������*W�����k/�uj��S�\,A��T(eP�7h��a���uf�����1(}~����o���u3A=~�H&o@
z|�M�H��t���[9n��G��~���A���U�t������
endstream
endobj
81 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 82 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 18>>
endobj
82 0 obj
<</Filter/FlateDecode/Length 3033>>
stream
x��Z[s�6~����NM7�d2��i'������C���em-�����_���%���Uf�����C�����OU=�����~��:>JX'�_�������D��<>���<>:��B������Y����vC������7����KR�H���������R$��X���.�Y�;_���{�8�V�4Mc+��i�9[�����X���0�@"T����u�E����R)@26��"����&��aeB$��L�ix"\����{,c��A���9�pZ���)1����
���@�hZ:�	t	��
s2�)=gt@A~@5��Mx��
-���u��^:�$k6���2l]JR����m��u�|���kL�*�e�hv
I��-�+dR$���w��ed�f��5�u�q��0S��
����6�7�lya�&N�t�\>U`A�s�b?
{L������[�i���XX6�N�iM$2��#����2���t�&��-\&���T��*
pX�dM���P��AC��
�f,�.UY���U.����
;=� �����a�����W�	|��*[��.g?=�:���chS�C*V�ee���"a0��Q����kd4$��I�{����do���I��c4�v�T�
�Z�R�����aH��
�Xh�n�?S�(�_8d�Z�)	0�Q�X����j5���q���M�G�&�]C*���T�
'���Qv���Na�m
���������`W�b�B����8�c�+�����7��Ltm�mD0�*�0�(c�A=�	��c����l��7�#�#������:���@����0;�z���@3�.j8��f?��75�
���'�i�Z A*Wb��"�v�O2��?��I�k�i`��I,�m��RC�'����K�?��,?lw�	�K��3��L3�F9&eDYg�v�����A@<$�
D���.GP�����
I���=���0��������D�"����L�2�]�g��6(��k+�5���M4���u��P�E�� (v$�T�P�<��X�l�'�ym��08����8_��r����Q.���
�LCD:_�mPX� ^c�+[������m����P�#�GX�Y�y�G��r��S����_�}=�AsS��X48�Y��u����lu�������]�p��l��vI�vVp�J]�v�N^�����u� ���i�����j��Z�5�Tg_��[S���OG����dr�1�5��S����:U;�C���0)�4��@On!_��%CI��	z�����QY�x��
"��	�6tH�����$���R��������>�7Z����! ��'a��uf��3����m�-�������]ft�Wr�O
�
z���������b�.#�.�`p.���]�d/_��?{{���w�r��ry��b��{}�h)�|W���@�g������[I�������	LaCt����}%P��/'2�o&'"ZM����wy59��|M�K���.=>zs9����H!B����|���`��sQ�����u5�XNZ�����^U�**��z�&���Myp������/�^VZJ��,$�����a;�*c�$J�L�AW�=�P�_&�U������k���<Q87��"f���b��{���
f>1��?s��G
�(����hp�%����K�/�j��9|�:z��/�-��`D���o{vebe(l�W�6����9��5��>��=���jJ�^="���?}zF(�D������9����\P!O����������3��UE6�_���W]=�4�C����Z��������rt�9��={��HW��me
CB������B��U_�T���F�!
�=SH���`�4��r�������6�bTE7�`����[�^�8�8��S6���j���b���>��ClJr��6�/��'�~)�,8����'^�E
z�-1m�o��cZ&��������s���Jh�/����z��S�v��W^���HE���2��*sxU�)e0l�����7�<��q���q�M�A
�g��K�
�L�'M�.��e��fv��(R���.IQ<�2
&E ����x��>�'����~�>��q�O�<�x�0���%�X��,����K���#7:�f�c�Fvp$�����}�h���*?b,��)r���q�%��<���b_A��������$�����r,�BWe�v�'o��T(q?����{x~_��9��z����!�lg���������Q�#��E	f�i�W�U@o1�����q�#p ����C�fl�p�;
+���sT)� ���TQbzV�P�+8wO�~oW��?O�������m�;z���g��E��k������c�4d����&%�v��_9M
p�5����0Fn�
������S�8
����V������q�u#N�5��niP-C�Ew��[�%���?��Ta��H��Fw��������u��
����x�������b�K
o�S;��1�8y�r�����b����Z�kr!0�>�e�MS�U�4�
?|y�_��
�����:������	{��������9�	Mn9@����;]6/k�
���
TW������?���!�/��������G���P�|��
�t��b�9�H�1w�_��%R�
&zE����\^��
6�T<i��u��V�o���Cn[\��	u���q�`����rY�Kw��%x�l��{����M�3�r�����i���h��TH������J��^q}��2��{����m�������N.��W�L�7�)�;�%]��_�W�����v:_S����\�����7m������}>}������������C>�/�<��������W�����x����J�I�c'���;j?[��b&[
���%x�ky$`	���/#%�p�����[t���I]��?a:��;��h�1D���A��������1��X$����&W���a�_��
endstream
endobj
83 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 84 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 19>>
endobj
84 0 obj
<</Filter/FlateDecode/Length 3085>>
stream
x��Z[o�F~7��0�T���Rd$qR�h���A�>��lkaK�$'p��sf�!��l��El}3��o�����oW��EQn����������s<�%3"c*��jvx��Olqxp��i�.���]Fi�����/~:<������D�L�=/����TY�-E����7��O7���+v�d���qZm����LZ�r�n��t4��:O
�	d�B%��TZ? `Z��Z�<U�#H��y�0 RnX�h�ZW&D�y�d�� ����M*,��p�2��0(�����U=���5�]^1��2E��3p&�%D�*���kz��E-�UM�6�]2.HTrY
�N��� ��g���6qe�� �y��������p�.�[���U�Q���L-�+d
4�������a��������i`�!a���T����4CA���I5�%��*� D��Wq��=j��ykwa@�tZ=)[�ja�i5�	���l����B�����������CKIz|Z+�ZE.�������1TFac�B�P���������xY��������"a�:��QSX��^a4'�m8-�ljy�����0j��Cma�XQ����"a8~��Q��L�kdT$�)6�`�j��d����
���7�z�Tv�}.J�Gdq�eLu�4CMa�����O
1�!��l��0$�3��3^q]?�Y��JX{�-U����6U��FP��(r!#��hNq����_l���I��A���X��;� 0��j
��7u��G1���Y`u�^�;
���GP�pFk_�%]��
��jz5�CAma, �����Hjg�Q�0�x���*~���0
E��qz�,<-}	$H�Jl�PP����g0�G;1��4
���+�����
XL5$�q�V>�$���b	�a��E(�\\�O'��j��r��\c�z�����wA@<�"a��#�GXbmI�$��"��PCK�������LF�"aM����Gc�����J��X�M5�����Un}w��Hc�eGReY@k��
�+�6j�A��ok�*�\W�������A�i�Ho�`��+W�k5�aKXsl+�r��
`�+����i(_�{e���0���<�c5g0D��ME�u�j+�����]$gc�)6���67Mh��h7X(P&m �������>L�����Fb8z"�lFWEX5�c0�9}B-����A����kJ�<	�B���]4&]�89:v�����(6��i��R�i$+�I=��B�W�JZ6�HX�{-�4|�r�9`��+D��r�6��bIdjd�����T�5��6"��SB��9����!�[-��8N�yNMTn�h�}���O?��� ^�9�?s������,��,��2����yN�� ;>�-������?�����bq��������y���xZD�g��C��P����ZG������>�8xvap,����#�Y�o���f"�����_����z9Q��M�bg�|8�������"��G�9��$����{1�����9(rs���$g�����&)�8�w�@JL�u(Ze�$�<t��3����u�Y�f's�s��\����(��lr��5j~��.�I�d�&B%���$lM�����M\r���nU
��Ol�����Mt������������ ����s��VE��s�[�1�dch����Y_�9�HR?���$!;�$e*U��NA�����H�<�D�MK;D�`v������{����{6���j1��)B0�,Y�1��W&*�i�����i|b�&G���EQ�x	�y�^�38|~=��m��V!������Eg���jV����7W������o�i`E��"�
k+�\m�v��{�g������������8�^���t�$�
�:�x|{`ybH���������:�W��)>vG���
��;�U?1��}d!��Q�#+�Q�LU��������[#������l����f[�7Q��`hn��9lhA�����A��f)lDLso�>%���$2��l{��_L�c��X�����4�r��b9�e�z��'$Qy��������4y�=������kR���AZ_��f��9����������z��t���>:�w-P��Wl��Da��2_��y�y^E�f$��eR�.��Q)���H����8D�R�;���~��������:t�O-���D�\�`�09Z��b�v*��G\xw����}����R������=�":���OI�]&��^`r3!EARJW��������}�)���4Y��R���>�|�5��5��N��C��	[�"S�B�`����X�s3!1������Z�17*����X�]/�c�aO�d~s[��>$'n��(��4l��R>�T���I���R>�����)�,�g����"KP,��w�`.%�B?��>�m��y+�����N�PA�9���c�M���f%�7��{���ws;���/y��7�l��[����n�]U����R��|}?��^<��������Lt������m�Ojd;L��Y�f����NNv��|t�����l���M��Lvx9N������K9O�;$xF�7@bsE�>|���#�^�:yT��*7�����
��R���\�B��W���?�
���b���Y����R���&<��[PU]S�Yr~�������/�R��mf/U�r
�<+�Dv��I}f7�p��Y��"\����R�TY-o����'�p��}'����}�'W��?�#���]$�!���ru�'�wd�`�����9%dZv��:�)U@��}5�)�����������8Q�gavH���)�ru8�4����^�B�7/Ov����N7�_��J�/6=������fS�W`����-7���_�g����?�K(V6������|�C���l��	����������<�=��~yNx?�`���^^�`�����f���?�/��J>B����'��34�S��W�F��o 3.���,}"�(s�������}P9"���#XUB3�q�������B
endstream
endobj
85 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 86 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 20>>
endobj
86 0 obj
<</Filter/FlateDecode/Length 2831>>
stream
x��Zmo7�n����nU���;�$q�K����~H�a-ol]l�*�k�����+�����(����g8"��B�����}*�
{��5����`E^��k-�S�f�����������s��W�G�]'mYh�6�?�p|���#��=Z��B��EP��;�+KQ�Z���������bg5���G�i�%6��N0�L�9��I�<3F����
��)��\� 0,r`-���
H���A9
D�-[���K3"e�{��aD<8���#'�X��
�i����4k�#
1p6��-�IP(�����.!RViL�����N(Y!
T;L���d��h9h�
�&.�W{��n��43l]*R6���]����y����2�@D��V�;�+sG�
���p���<�a;�_��	���+B���s��g+6���E��
�#��*� D�y0q�=�������@�l�~SnL,������&>�������������M��7t"I��6J�N��������D��&ek�C�P����Y��3��].V���r��"e�{���QWY���Q�2��6��Q.w�E]�qxu��y��Me�XQ��&�
D�p�>
�e��ed�$�)6:���j�7���q �n��A�gA�]������	9��4�:�������������@@e�" ��:I �`F1Xb�K ���j�M���2�&�cc����!�ub���*���O��E�S�C�����>���I��A����x�5� 2���u����6��G1���Y`�uM�2��1s������w����l)���#�����T��*���;�4���it�*c9�������~�Q,j�K��(*��2�@�L���E:��Q?���[�PN�`Mw��\�~����T.���A�D2T,?,w������%~�\�r��|g������r���x
���U7\��e��%%��(�=���2�����RBI!��������6 ����l��%#�}\�DKu�i��+�Bw����S��MH�:%������+�M�Q�����k�*m�BG���5e�vnd�Ep���[�C]e����u��E��J0�z��r�:%*T��X#��L�.�c>��rC��\��h����:����lu�������]Z8*�-
�I�DR�++��L�!�C��u�b�[�"�5m�
4��Z���z���m�S��IG�m�dx��b�����E���S���u][�8�dE8	�'�PL���AI��)Z�aN�e�_�6��E�k��C���T,���"��k� S��6�W�%d:uJ,�8�YK@�&����O���}��E�m�M�Ox�����==���g�S�O5�~��9�/��8=F������yzd���r��??}���+N-��,��'�'/^�Wg������zh��J?qe��'|���>�8x?u`
��;��W����j"��fr"��
�����\NNd6[�xN��������7���ay7D�>��G�F�A>/h��-�j6-��M��x�5�����V���D>�����������?2~*���g����d��z1n0�1(��ZJ�R�A�=b�n��S/�2��j���G��x�m���)y�m9�������3p������iy[��/,��e/��o������rks�!k���mH>�5����X0v_h�u�i����<�M�
<����9��7�[`O00�zrWnU]�MN4rSNT���HS2+�W,\V<�p��]U��5(e�
u�>Q\2�l6o����q�t�����#_b���K,(���
�����"�
���RBDs�	��
N��o^�_,�'�m������]��)|��\�z�%�V�ey�
N�zk~�.�V���m��K�r3k�y��d����B�+�����`��nn������/?|E0������v�V�	��i��n����0�Vz���l��o���o�]���&���l�,g��M�i��cY�V��O���^at�����Z��mL�kU�;^�
�7��^/fq�Rzja��%��������'�2������zB����9i�����9���{��A��_��!.W%%�.��8������S���%�*L�[br��5��%���n�{,2���m��^c<�|?)�A��+����jb�Xu~�M�t���z�N�C_����S|q�)?9����)?�8`=�U�OTc���.��
�X��r���	��&[a��.[��{" ��P��U�7d�S	s-����C���M�+OB	P�F@ ���.���V��x�H���4�C,�y"mX
��gK�>�B���V�>��<�������H����$���_
�y��3r��
!w�$���E��A�����:?��t3��W�����y������y�a��z�|�����}C�7�?�TK*�Zg��}��c������m4���A�a�n�������1���i�,��t�.m
�N���zB-#Q4l�D*��Nh`'X)�w�j]��3�W��[��t��?@�����zS���S�LAE!:��m��?������=�?������Y�X�>:��g��t�\����^JU���X���Z�]��j~�>s�vQ�2	c�NJ�����MSNo h|<}U7M}������:}_^���
yz~�����n����A0����1Fp����^@��8��/������y�o*+��?>�\?A����n1�z���>�e�+h����M��H�
�������o��8��6u�JIl~��a�?[�
endstream
endobj
87 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 88 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 21>>
endobj
88 0 obj
<</Filter/FlateDecode/Length 2467>>
stream
x��Y[o�8~���Gy������t������EQ�&v�V����s)Q�HN�q����w���������U��������
V���\k��(�*4[��G��������]hv�:>��6I�Bs�&}����?���;Xv:�����;6���T��+E�k�����Cy[s��l��;�8������	&��9ga@zP��sK�r�hQ��2�.�9��N�J���� D�-��Z����	����L��"�\����G,s��At��V
|�!�v�e`8
��e`�m�K��U��97�=�JV���&5a/��$ZZ�d�+����o�36��BE@����y8���yP��� "����b���+d
�����<�a�����u�40���p��\����N���(lq�������J,cL�AG��^�.���M�o���e�0����D�? q�������v24��Gh2���6J�NQ���b$k
�80��$l-z��)�@7��vF�<� �B`��1�vA$�s���0����0�)���
�e��oQ�s�F=�p�ch]�C*V�e�	�v
�0�O��h����6�Z���=I�{����d����M��c4�n�Tm�Z�O���U*uXC}a�M�
�������E@��u��`��`�/��n��P+l����������M���FP�-\P�BF>! ���NizZ��8���'�f���������� �c�/T��t
��/�g�mD:�Ta�)c�A;�Z+�2.���l����#�'��Z��:���{�$���iv��v�Y�Q�!��������Q.��eh��\�
�t���~�-���'������1Tm�h��K
�\���(��d�Y~��`
:��%~�����2"�[� Bc�/BO�
������CXboI�$��"�c�'�-��}���TR�d7B$lH�v��1wQ�M��d�]�v2�R}oZG��J�p;L�Y����jKJ�N�,"��5����p���:�	�CiNm�5�*m�FG����*h;
|��Ei�v�x���0��M1�ke�n�Q��������r�>%*t��X#�'L�?�F�z,��,�(�u�h������z��.D4C}��P�����k���v��U��")��
nS&��P����u�b��C����	k4&��7����:�s��l���Ob:��oC&���I�f2N��7ZL|/����x���HV��zr����tl���}�4�F�����[D��
��tI���v����
2�k��J��L�O�������$lb�]X�4O�N}Tm:�h�}���O_��� >�y��>���
���������Q�M/�9{�jz~��������e�������k��,�"R����Zo/��{������WI|������
LaCt����{%P�����5w��-����.���Df�
�ix�������� o~X��@��!�'�����1���#Z��m5��f�f�`6^d������D�m�y�m"�cV�s�ASR�T��LL�������XI&�>��W��1h�1�
%A(������n_^�S��2�/��s�#s|1�v�G8���Dg���DV��z�+ n���������^��g\�������S�|�)@�PDC�N�2��Vf'�+��@"i���$�q�
$�v����L�j0����x{��9
����$����;�I����	SW5{X\�nf8���\��7���6TT�P�A�lV��1P5(�e�q��q���H!��h��Oq^������L���3��`�_������1�:��a����vz�t�D�Y��r���t$:�.����	XdVV5��	��z5���9!�_�=n��	��|S�O%4;X��������^�J�^����+i��-�lY��:��\�y���}+�g�f9�zj������#�6�b�>�����0�)�8�M��lR��[�+^���x��GZ$��r�A��u��.X0����.Wu�F9-������	Z�8��*������,�VN����5��^����<X��J��������K����r�����TFBT�y����)��������������^��m�����y@��>����M�W!������r����S�����_z�Up��Cy�6n-��Ze8=����~���amd ����B�U���<X�
����U��\�/��P{U7_i��(�c>|v�O� ������z��L�.�f������c=�T���t��^<]58�~�h����*���Di/���tn��R�t�81\�A	�jv{�zw�	HN�p��!QA}x?q���?L��.''>�@|��W��`�g�!�o$�e����0&�*�&_��(6��N`U	w���K&������q
endstream
endobj
89 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 90 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 22>>
endobj
90 0 obj
<</Filter/FlateDecode/Length 2437>>
stream
x��Y�o7~7�����^-�@ ��\�Hc}p� ���.��JJ��_3Cr��V�4'�"����~3�2����fR���w������Ue�y��dVTLU�-���?~a�����s�nW�G��fmYi�6�o~9>������i��1���g���N����RT�����og���+v�`����8����1�L:Sr�fA =	�g�����@%�QW����aQ����R�� YZ��@�����U�\��)���< ����m)�8q���l?���|��Y�=����t��pT��e���l.!RVyL������(�*
�6a-��$�
Z&q�����A��is���a��P����h�+y�N���e�*.c+� "��"�1V������p��w�|�����]�N�"$\v�+���1�d����4�:G!�*[A�,���8{4�����E�*p�~)7&�ib�4
k2��8�qx|q"�n����dp4��=�u�$=g�(Q:EGO���C����b��^e{��3��]V��r�a��/=���QWY����^e'�m��Q�t<���qx?�(�Me�XQ��&$�
D��~����eY�ed$#���:��j+7����� �0�� ��P��j�dxF�^�R�u��!�U��T�0���_�R���Lf��%V���A�BI���U���m��C*���T�*W���"�vNy�m*�.ctEO���`W�a�BktA� 
��C�����t�r�]_`��:����=%b���G����Y�)}�0[��ixu�c@���@P��|��	�����Q�2��f�E�� H���bSc\���r-C$�r%�Pl(�����[,�9Nl�C;M�!T�*W�Hq���RC�W��A��x2�,�}��`
:��K�MlO9&eD�3k+ ��PW9A@<'�
D���.P�����
I��(�=��2�����VRI%3o�H�����
�c��<�gu�����Nd�M�h8]in��:�2�������R�s!��acM�Y�Q����De(��Bb
��F����p���
���D�X��M(��d��*���)�x�l��.�f�������.���(��B7�@e���2:�c�����H��"a�}�u����lu�������C�p��[l��v��h;+�M���C�����#�9O"�l��&,	4&���s����8�0������ ������c��L�������C����uC��q��`��B��+G���
!R������(��^zyB�k���aK�Tl�l�l���@��
�+�22�>%6Z����� e��pib��h��6uQ�������}��==���g���SA��
L���L��1b����� �?L��������g��6������|<=�^���(^Y\����`�k������WI|���C��
LaCt1���{%�xY�kF�X��ND���Ov��=L��YLW$��x��]�z|��b����v'D����q{����������=r5�'�)�&�6^�����n�y�}$�V�4��))no�S!����q���h�x��pW����CS/��I���X^��x"uqC����/N?�n�}��O���Su�-�r�Hxz�$�wr>��g��gU���a;�O��c'x�+���d����D�_�����U�L������H�����X��
��������L�z�l{H��^�����k0��m��(J1h�`u��������@��������+�'��;pV�m��17��p
�G�D��A��t~�����9��{�M�M��e��9��~���v7��i��}Q,��d�x�s�\��#�r~[9��F����2v��1�}��3b=4��f�q�0�C�	b�Nc�E~oC��6�o�WT#��O��O'����tZ�I1=���gJ�!����?M��C&(0����"ew�QH�+L1�������)�c=p��=V�������isTHK�����f�rRNm�|,:������<��9+-����W���4�;h%�����{O��r
DN��@����Kp�t6Y~'~Iu�E�1�Y����������;������k��Eb'�C�e#	���,V�@��pQY��1Yc���������-?h����`��)��%��?'��|��"��_�

�o
~�������g�l@{����Bw�)���t���,�W4�����p�u����{���y�^O����]�_.��������C3~?�����3>�z�F���b�,�)����+����G���6����.���q���B����B��*����0(��G����[������G���
�`��FB�o��
u���q;�	�^�Qm��N`VY�E��,��������
endstream
endobj
91 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 92 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 23>>
endobj
92 0 obj
<</Filter/FlateDecode/Length 2536>>
stream
x��Ymo7�n���WE�Z��E.@l'E�&�������b���In�3Cr��vWv*�"�r�|83�����j3�:�7����v|T����?�������J������?����������G�]giYi�����p|���#���mbx%u�&8��;U*��J-X=����'�S����u��1�i�6��N0�L�9���i@yf�.-�	T"�ee)]0-J`-�.�
H���A8��[�<Z����	��.����"^
\����G,K��A���8��HC�
�tb`8
T��e`�m�K��U��%7���e-������������i�t��~��A���p������P���F$�J�S��}����
U�Z�N
1V������p��9O6L����.'LC�	�
�J%�l;6����[4�#�O�Y"�<�8N�Mx2�u�8�J:MO���eZt��5����G^_\H6���m;M��7����N%J������M�ty�������!C�SX���C�����
+��p��"a_z���Q[X���Q�0��6X�(W:�P�s��G-�`�!�-�!+����`��H���t?��e�F�@"AM�X?hI���G���@����S�l�o�hV@��p�e@���������aC�-,J�)�a�4PB���\�!	0�Q���2�����j%atl�j���-][��Z�a���E.d�3��tq�)Ow�ma�����n�h�<�v%/�GDq �Bm�p��N���) �x��������S ��=�:�+Z+�e\��/����PK8���-�U��-@�P��<��:���@3�6J�@:O?�E�qy�E�*>-C	$H�J<B������o1�g?��4
�zW�*E���
�B/�Q��P�����"T.><���L�ln9eD��j3@��P[8\A@<�-D��.P�����I�E�3��0�����RBI%�������i���Eq6������62QSmo�F��J����,���{A�#	�R�D����d�@K���k����4'�6���F�T��p������F_�M(����j���(��V6�vE*`u+���>e*T�AY�%L�n�c>�YsC��R$l�o�8�����"�
��p<P�����kBGE��B�2i{�Me��	a:$~����A��x�Ad�&ai@c0p���`M��������5%�<��B�
��hL��8]t�h]Pu�Ql
]������HVK=����J:6�HX��sn�|�����H���C���T,�l�l[�f@�*`_�+�22�:%Z����% a��pia��l�����~����	���|��^zz���<�O
�
j���s��qz1���� _�M����������:Y\�b�8�t1z����ZD�W���uz	��q&��Q��+����}�q����Y�e�s<#�������H7�+v���MV��r����.9>z{�K�����"��'�9��$���t�\��������������4���)���]F�7��$����� S�J����at�������{�����]��G����h�T;]�9]�
��j�7������(�4M��7W�n��NC��F��)E<��aHxz�4�8 �w���g��;���2�W��a���z�A���7~��A����*.�A��XL���+6rE��>� (�5Y
�7��-��j\��\����l&{�biH/�e��i�	5��U>v��L�?��� �����>!0�V�z��{"�-h�02����8�|��� �A�+��H���������f� 5h�T������g���>���H�G
��
�T�V�&~�����������o��M���(��b>�a�|�p<2�
�� FHQ���+L6���y�A�����{@�msu��I��
��*Q��	�}������	5��eZQ9��_.����H���dK��}���6�}�c�����f����,UO�����I�����i�;����$~������v�����������q�k�b����G�I���O�=��c(�HVO0r�;�&�������<N���>��
_�B�:�)����a2���w�g��N7���.7
$��B��M�s�vt�4��hL/����=*�I��b�C�/4�lC�h����o��%<��n�	y��T�E��(eG�9�W��sHg],�gw�xb],�K��F�*g_�+��^u�5���{8,c4���p���o����{x>���?<'����z�=V��a�`��h�P������|
�4t5!i��8i�W8���fR�L�����r�Y��_>�M��M�g��f�\�/��lp��r����{j���"X{��y����V�ly]��Hb�����
�
V��p�
�q����O�{���_�cup9:�P�Ba�	KcY�
R0���2|#��(s����!�7'T����N`U	M�e���������
endstream
endobj
93 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 94 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 24>>
endobj
94 0 obj
<</Filter/FlateDecode/Length 2705>>
stream
x��Z[o�:~���G����;yPh�zpZt7��C{�I��Y[i��3C��mI������o8��g�l�������j���)���Q����?�k-�S�f����?c�����3��W�G�]'mYh�6��~;>���{���^bx!u�KP������R�����?���	W���u��!�4�cr'�t&����@z(����%`9�B4�B]�K�E����R)@2�>(G���e�G���43!R���i^���g��p����\�~P�|��Yi�����nN�B���Mt	��Jc2����:���(P�0�	��iZ@���e# ���_A�eP.|c��if0]*R6���]���h�����[�"B]+��!�����B��A@�;|��9Ok�L��K��9azEH��p.Wrc��M�
��lQ`s�K�(��S%��1.��`�	O�7���;�i����X6�O�aM$|����'�k��k��M��;�
��cO%r�h�@��N��y�`UI�Z��!����6��wF�<�����
�!�V~@��s��p?j+���~�����
�e��oP�s�G-���ChS�C*V�e�	�v�2,�O���CY��5��q��-M�{���to���I��0�� �3
�jW9�2�dxBm�R��:`�j+�\h�n�?
�T��/rM���Lf��%V���AX
�F��-Wm�=>��k�RY+7�jW�����|B@8XNi�m*�~q��
W:���]M����
"�(��P[9����^
�1^�������
��S"��=�:��+�e���7�����r�chS�<�5n������~����.�j��C4��������QT.��2�@�\���
EZ���8���[��N�`U��E.��m��RC��� jb<j���;�����G�vz��4��]�I�o���!�V[O���j����,���B�@bd�j)c������A*)d�!R6d_3l���(��Y]rR���N�T;�6�p��.�Suy*������R�S!��acM�I�R.���D-e(���
�Ge�M�������
�������4s# ^C��&aS��X�n��(�PiP����\���
�����R���F�z,��,�(�u�h��~�	����-��j+G�����C�p��[l�����XwVp�2!M��'/�#Fs8�:D���i��F�18M��0'������
sJ�<��R�
��xL�&�q��x�u��!F�P��!�G�8�dEX	�'�P,���BI��)z�����Q~x��
"]�l�tH�����-��u-�
x�
�+�2�>%6Z��E�R���ID�fb��h\q8�Q����	wr�>=���@���?5|*�!��&��_&�t1wy��t)��gw���|9�t��-+���k�M�'_�F�^�7o-"�������(��L`�����L�mgv��`Y�e�3���,��������fq�N��r9]-F*���_�����w��T���J�-b���z������@2=�N+��p�}��X|��)��d\cv-2����bXJ�N�A�b�o/���W{�����.q�#q8��x�\��],����Dd����+�)o'�w "{�4
|FE�k�v.���a��@�b�
"��R3��vr���2� �4���O��^!O�'��W#
���l��w�����n	�0=��^����|v9]N�z��!xH�����N��;A���BY����|D�d#��J�o���3�I��g09Cf����9$xH@���o���I�F6�oF&�G4["��>k���+��e�8v��1��FV�]Y�`Z?B����_b���N^^�XZ����W��a��y��toS���i�%����-��������������K�[9�����MV��R�[�������]�D��������@$<^����X��1:Q�=|�{���=�rM��f�+vY�f���h3{��&�
���!���#)u����[��.`?h��+*g��}����I0Q����R�^B���4�����=�T���b#�����S�f�[��-�����S����{|�jZMiQ���	?h����&�^s�w�;i�-����

:��Q���M>���<�]<4�e�iX��c�����,K��b�R���y��qO�������SMV���������������C���/�{��4:�CF����h�a�'��{���}-
?HO�W����~z�"�HAg����#��r�?{����M4X��(��?b��{L+��G��$n�����*P�E��U�	���yE7�xkFy��v�Q���nHS����[r�14�P�hZ�US�Q�K�
��o�},\vJ\��m=+�"E<�!�v�.��t��_&x�Z��W�d^7���dF�����A4'�'K��`����q�S�*��nF���.C�����B
7B@�j�$��>`Zm*�{Z����[�%����r��~'�W�=�~���]�JWu@�u]�1kr����,�z1�k|�x7)�����.�����E��z��_yf��*���������������Hbz���mY�!�g"��?>F$U��|��������D2��`�g���o��u��2���q;;���#�m���Up\��eBv��/~@o)
endstream
endobj
95 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image97 97 0 R/Image105 105 0 R>>/Font<</F1 7 0 R/F2 10 0 R/F6 103 0 R/F3 16 0 R>>/Pattern<</P102 102 0 R/P112 112 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 96 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 25>>
endobj
96 0 obj
<</Filter/FlateDecode/Length 4152>>
stream
x��\[o7~��0��b=�9@Q����"i�k���AV[E,ye�E���sH�pF�mK������H�9�����>��������?�������)%
��B���.�?��w������/Tq}��+�;���=����?���g�kh�|��j��`	�oe%-�+x])^,n��7���%���M�n?Q���-�ZW���������
dSh�*C�a$�<H��JXW���W�ZXUI�$	��L����W��G����e���Ft��J������%�7�eQ�b\X��5N����M�q�T`�����c���.I�]������I�,��i������J�����{��u�M�2��T;IG��s�S����
�15N��kxL�6���.��Q ��-��~��5�6�[7W
I����J��CO���<�`��4.�%���cA1fn�}5�Q�O:A�F�deaN�'E�a�9
��H4NHG,�/6$��56^;�����p�$a�Z��J2PX�dE����E65dJJ�%��X�;-��+�a��))�y���T
�����]��R���
����,R��W�K�����3p��������$��7]�����w#"!� �H�B���m�K��W�� [5Fk�mK�b�bP���,�}��:����b0������S�@0�~�$b�$(@gF>X`����]W�XMI����T��sl*O1���7LH�}pM�5����|�SW���`������$��]�������P����J��n���������x-0��uBZ80k�c���������M6�1���zB����MH}0&�y�5�BBnc��q)	�t�Y�R��
�x�%��h�U�K\�O�q�r��O(���2�'��������K��`JZ�����
��PCP'�����G�>iJ���;����K�g#�3���rt�(5Q�m��b�3A�X��{�e�.'�X`nI��:���0%E`L������Zt�F�5�/T'5����v��n�R�?S�6��iw���v��W]�{H��d^��X�+��5f^})�B)F��5�*k�C�#��+E4T�E:]�
R�r( ^SR�!aR�p[�����i�n&�X�^.�����t����	)���Q>�n��(���Y����N��mZQ�����b
�K��	[8J�
&
I��o3+�Mi��]���W������hu(�g3:$a�@�3����Y�6qW{��kS���wG����dhr0c�	���������v:��B�0n)}5��n%��H>�KK%l1%�S�cv#�Vp���DXL��
mR1%2�dj�em8M�k����N�Q��-�hD��X{'�mhX5]�_��q���P!&�m���O�`C�x$��[�o	9����Y�g�1:��ugyN��`q~q7_�����WE}�v��.����������-"�j�}%h��J?��c�#���x2��}�``��e�����1��%��X�[�f���|*^nn�����f&�u1;cuy���v��V�^���/������/����L�k�(~������������n������������z���V��������������,� ���
i,&,�p�/7w3]~�	Yng�\]�����YVrj
?~��Q����-?��f�Ly9;k����,?@��[@AMS��q��"�k�����`gn���L�5Q[�o$��'Gf�����1����������}q�����_`S�7 0+�� 0q��u|NM��+i�M�n��ug�LXtO������4#����c���pM�j1�
1���
���Yy���|���a<�&��0l��|$q���`�7`��M��xD�#<�����\(�����}&��1���x.L`a��@v���:y��:y��:���u�����c���c����3��x��������G6=����K��Lb�#<��M��p�����u`�	���x61�
1�����;l��N�0���>}��c�^;�)z�(|f3������p�:���(x�
r�������GsBP�������
(��"�+�����P�`�r B����e�r�3��
�(����Q^�:�/����w(_��(�����f�<�I&#���kh��+�x��uou\�C�rD���?~xp�����8���)�k�2D��K��@�����m"�P�OJ_S���(E
�'�p��X^�z��8:9G���R����<>9�PY=����/�_fg��_��S#JG6R0�LJI�v���"	*/��\�Nn���,�W���.�`���_���f�A����3���O;i0O�n�Y,����(��S0�����3��a��[��8�k���@�dO`_
OF(�����Sj,�$�Pb�)�zZ��*��;�z������{�^���Q�T�=,f\��s�m�p}�1v2�K� gb�|���9e�;A��
���a�LN+ ���`M���^����|�X����j������.��u��f����3��%I�������/����g�G�����7��<F�<���$9�X�1����7�Gsj��M�������
�	|dH��f�����
}�@SY��d����)E!�1��q"�i#�2��#P�U�	3%�u�����������KR��
�b^��� K �#O��������
���%��,�:��%9ed�� (_�S���I�k�A��S�'^���'�>j�t����I���'�$���2v�*RDr_�d�����,3�c2bBVR=�4�	�E0�4�=���6��2V�I���ap���%��a�ds�Y��M��d�A���`��C���SF�,�c�����=���k"������`:�\��79���)�g�.lL�d�;FpIn����c���-�p�R�����[t�R���N�8����M����D���X0��2H�m=?o���ex�qD=vr�xNxy}|�����-�9���0����Q�������}�<q>c�]����x,��}�$��!O�4�y�NnCN�<�J�8�t��o������k��e$�r����'�Q��������8����I��*��d�tZ�[��=1,#��2�Y�n��f�a�t��4��N�kHs�p`*s�`��RW�*�e�i��+L�7�s��A��~�A�aGH�UGt%�@����	b���c6����N�F��Y�]ef��?{<8�W��kN/i(�/�0|]��-�������_�������[�/��WK�%�FLD��e�@*���J�x%u���;rz�S�J�i�2t����hX7���;���A��4]�;MW��	��B?x�-\9
cj1���0��#``���������� �*��>��0�����w'������V=
|�7'�F�j��Z�)x�����Z�	�04�����Z2nk��o������q]K�>����+Q�����D	z/�H���=E_����-�
�=*�5���oW�F��a�����-�������(kz94��C7�3���q��CT���A����8)�����d���>~�&HM�(e����5%��	�Fo"z�j$��S�Dz�CT�F%=��Bf�A�!��W�`�~�"0�~�)elV�	����4��2�{����`r����1|{xO�h���t�s�u��?�`�j��H�{�����2�z�}�x/x���g�7�O�S�a��d! M)�N?M�B�0y! m����;z�$�)<)�Y'E�����0��Npf�Tl����t�[�c#���T��+��CIz�)�9��Ua�����{-�*|��V2Q�/���n����o��QMK��������������
���
H�m����W�/+�?+����
[�mW��,���'����H������p�W�F9�-��7�[w���r;��`>7��f��?��m����}�KY�g�Q9s������������Z��e��:���\���
J���i�LIVv��/mggL��70w�[���;�V��D0�Wj|�r��K�����S���_^a���������4�����D���L��65��
endstream
endobj
97 0 obj
<</Type/XObject/Subtype/Image/Width 429/Height 382/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 98 0 R/Filter/FlateDecode/Length 499>>
stream
x���1���Om
��2��
endstream
endobj
98 0 obj
<</Type/XObject/Subtype/Image/Width 429/Height 382/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 1606>>
stream
x���}O�W�q����*�b���V*M�*.��K�*dK�e��G�� 1�.��a�Wr�>�9�+�}����P�]�R�\.Q.W*�^M��flRm2�=F?��m��������(�j�Z�W�6Zj�?X��;c�������b)���r;�W;�Vk'�R;��,5s��o�������$Vy�����������(�RiV����79|���x�4�U������9�����K=���X����:�����������/�l������0nnn�-�j�Y{�}����w��;����QX��X�1��@�b,c��X �)���n��_����N��(������z��������4�F��o���a��\��������?��'��l�����ma�m0������X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�h��E[�^�Z�����pPu��m��{^�Q�h�����h��m�sVp�A�b,c��X �1��@�b,c��X �1��@�b,c��X N�����A�"?�^�s����?�Rxg���S$ N��x(1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@��L1�3� ��8S2�)����L1�3� ��x(1��@�b,c��X �1��@�b,c��X ��!O��!O�|�C�>�	2~�s�R�=1Vd>�	2�6�y�B�Pb,c��X �1��@�b,c��X �1��@�b,c��X �q��)���
�ugx0E�7V`�)��YN��8E�	��bc��X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X ���-�{m�z�Vh��v��u@��7^�Z>�x�D��-?����-���A�Y�y(1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�b,/4�w��k/�m|9dcz9d}�kWC����OCo�6Vp.46Vd^h2�6�y�B�Pb,c��X �1��@�b,c��X �1��@�b,c��X �1�#? ���F~L��8���>�+�|��4W|g!G~�������#? �A�b,c��X �1��@�b,c��X �1��@�b,c��X �1��@�q��0���Ot����0��"s�����3+:��@��=g���X �1��@�b,c��X �1��@�b,c��'��S�"=���C����
��vwG�z���� ��p�n�T+��c���/>�������'�b8?�v{���4K�-5{�y�qv��}{�����w����0�;��TK�Zi��^�����U'����~���V���J�T��f�1�M��Yiqa\�TY��� �,[I�jF+�Zj�&�����V�Z�K�n�JRz�9fF
endstream
endobj
99 0 obj
<</FunctionType 3/Domain[ 0 1] /Encode[ 1 0 1 0] /Bounds[ 0.8] /Functions[ 100 0 R 101 0 R] >>
endobj
100 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.53725 0 0.0078431] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
101 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.72157 0 0.015686] /N 1>>
endobj
102 0 obj
<</PatternType 2/Shading<</ColorSpace/DeviceRGB/ShadingType 2/Coords[ 186.91 20.537 186.91 287.3] /Extend[ true true] /Function 99 0 R>>>>
endobj
103 0 obj
<</Type/Font/Subtype/TrueType/Name/F6/BaseFont/BCDHEE+MeiryoUI/Encoding/WinAnsiEncoding/FontDescriptor 104 0 R/FirstChar 32/LastChar 121/Widths 2859 0 R>>
endobj
104 0 obj
<</Type/FontDescriptor/FontName/BCDHEE+MeiryoUI/Flags 32/ItalicAngle 0/Ascent 1060/Descent -122/CapHeight 878/AvgWidth 537/MaxWidth 2807/FontWeight 400/XHeight 250/StemV 53/FontBBox[ -984 -122 1822 878] /FontFile2 2860 0 R>>
endobj
105 0 obj
<</Type/XObject/Subtype/Image/Width 315/Height 171/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 106 0 R/Filter/FlateDecode/Length 179>>
stream
x���1���Om
?��bwY
endstream
endobj
106 0 obj
<</Type/XObject/Subtype/Image/Width 315/Height 171/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 894>>
stream
x����NaFqJ��i��[c���PL� K��D#�������e�8�/��?����'�I��3}�������r�$I����V���,%�R�Pkr���g���H����\�d>�2��mL��*�ta���P+����J��p(fi%_
z�`���Kf�|��!����V�P��p(di�}g����E��������XGGG7l(l������(�|{����O���������tO��~��:?�qKQC���Z�~���;����� �a��L��3f:�t��0�a�t��a���Y��n�t��[_�����g���[6�u�F������l����0���������n|Y�w���O�R�O���:�Kb�t��0�a��L��3f:�t��0�a��L��3f:�t��0�a��L��3f:�t��0�a>K��,1v�,q�b����\>�8u�������
�;>K��`�-�,q��M�	[��c^c��L��3f:�t��0�a��L��3f:�t��0�a�����y��$1�x��oa�1:I�����<I�$1��������0�a��L��3f:�t��0�a��L��3f:�t��0�a��L��3f:�t��0�a��L��3f:�t��0�a��L��3f:�t��0�a��L����	��}X��]J�[�~����w�=q�����sRN��Mx�N)��	�x���u�xI��3f:�t��0�a��L��3f:�t��0�a��L������_�mq�������tz��s������k0�iK'__$�����n����~oo/`h���Cq/��������l2�j�Z������G�w���^�x4?�������
�����x���Z����2q��:UO�z�4m4b&�C1Ki�R}:�x����x�j�R�P��deB��P!m�
endstream
endobj
107 0 obj
<</FunctionType 3/Domain[ 0 1] /Encode[ 1 0 1 0 1 0 1 0] /Bounds[ 0.1 0.5 0.9] /Functions[ 108 0 R 109 0 R 110 0 R 111 0 R] >>
endobj
108 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.72157 0 0.015686] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
109 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.53725 0 0.0078431] /N 1>>
endobj
110 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.53725 0 0.0078431] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
111 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.72157 0 0.015686] /N 1>>
endobj
112 0 obj
<</PatternType 2/Shading<</ColorSpace/DeviceRGB/ShadingType 2/Coords[ 469.26 58.097 469.26 287.3] /Extend[ true true] /Function 107 0 R>>>>
endobj
113 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image115 115 0 R/Image123 123 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R/F6 103 0 R>>/Pattern<</P122 122 0 R/P130 130 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 114 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 26>>
endobj
114 0 obj
<</Filter/FlateDecode/Length 3222>>
stream
x��[[o�~7���G����_��@.M��)zj}h��(��sl�GVR����!�����������>rD~�p���������|�^�{��{z�o8��1�9������'|���'�?]vuz"�U�V��%��������a���I���tL�-������_%yc$����oogW������I�hk l�m�d��FvT����q� �eFs�U���AB�l�����:"
H5.D�� �X�S�x_F&D��	�t��D#qd�HO(
��j����14j��,1�.�3����5u�� �B�	���a�w�T��t��e�\�HfF�������^Ea���+#��%!�v�F"�w���C���8�*He��+�X�O�J���D#�8w��@{��
�����
�&$}�8�h���0�eC(	;lp����d���B�XD�nX�����l�.5���N�/���*:���H�hd#�R�����N��&�����I���V��kr0X�dC�����;�2�:�5��y����I ���X�a��Q��CD��G�����Na4'�m�-�}�EF5����*���Ch[X�Q���U6�[��a�C��G��I��
d�q�4��$�����m����8���7�v�4���(YQ����K��8`���e#
E7<?-�(G����X�G4�aFg���W@76DVC(��c���m���]�k�QV�
h�/���BF�  W���Jw����8��J;]z{��������Ab�"�!T���:��[gL��^`Q6u���tc�@���J��C������=�*�t�
�maL (��{\������~�)��n��Q��z�QJj�/��(	��kS I*�r���l����������"���0�������n3�jH4b�V��$���d	�a��I(�\B����7���r<��j���
�Z8�  Q�-D��>.P�����I�Ej�5�JSnC�b�G	WEo�H���r��(��E�l�%u}me��jk�F�����vX��lJ���=I����<&�$[*a���6����� �.�\���9���������#�-��fTF�
�k���$L�^+�t�F��.0�:�5���<	:f�QY���NcR<VEs�(�������ZqA���u��P-�T[�66M��Q��0Q�HZ7 R����6e�1?���IA:������lN�r������Z�1�Vw��]SQ�$Gp��x�����T�'� G�����6��B_�0^)S7��q'���A)�kO�<B$,i^�1
���5����H�f��nG�TL�\�OW��A�*`^�W�d�<%%ZB���# a����&����!r��|� �����O�P0PKr����O
9��?������`�����0�(EAv~q7[���?���k���-��d�<{1����u�E�w8W���@��`s�.?ae�}�	�����H�.oq�T��N�-6S5����^�n�f����TO�lz&������l���5���39�M����OO~����[�_<��b���������*T2�
��%�1;�Q�~���?3�OP�SS*�����5�����4z�XZ�o���� |���������o�i���W3��_|�=��G6������\�g�k�]���f=[���-��o;S�V�b���?/>�?�_�6��������������0�jy~������V����
��������.pd�}��Z�M���T��}��V��D�9�	������7���?��
7�������LO�C�R�_@
z���T���d~D����I���E�}R����R��KTpj2)�C]��!���yt��.��LFe�sFB�w~�L�5��P8v����0$Q�5F!���C���n�%W�KI���~�
^�����u|`���;}o����iz�������������d��X����������|��V*�����o�2��� O��W�50���#w���
�RI�E*5�HE�TR�!K%�,k,&]��0_�16t��p������+�L�+6D����Jd}����U2���RnX��&	A ���\U���-i�[�v��-n�YQ�����Nnx�)k��B���3g'��!��Y��u�;����)I���m��<h>�����~�{����;I�K����x��%B8�K�R�m8:�T������1�-����
~����|����]�0
�_��N!�. yp%��+����|�%��B���S
Gp(��&)�>��R<LI</����E'5��8��h�w�g�I�Y��2��g�}[C~7�_D_�9�J� �/��Fx*?��w��<���Mt�gpz ���:�Y��=�����f�a����lQDP�k5�N���nW#��f|���(��$_7'�0'y�����z�b���n��mOR��3��K$+��\�a��h&�MrD���h&�����t�8�Ml���
3�������m-�f��~�����x\
4R�h�-���n)@�J��{�$%9U��������"X�����R�o^�{�-����$�>��N�������+7<}�����?M���j_G�WY������T6�:.Ri�-���V(��%���a���B�R'6�H�M��b��T�m�J
;RQ�Tlh����[��Z�6��j���{�����}l������K1���
c����U������t�X���cK1�����R4�nD-F�%r�G��z��N��X���d��>�#C������8���IX���y����5��3�Tf���]C�c�vw���|�,��#�uu���QN�p����'x��\���4"�S�O������38���:[��GT$��P_������Sa&�����d�����{�d��:[���TA��#]�Q#������6�t:8�����_��K�p������V��W.^�q���kc�dN�����#�!FX| ��w�f#�QI�G=�Fx�>Zp��4����C�������Ov��R����	g��&9FkG8��uusr#8������)�����p'���}�Jk�?c%���f������n����t�����I=���5���e�*|�j�*����W��}|��������XW��Jnf��!�'�/Laf������{9_`���$������t������4.o�
endstream
endobj
115 0 obj
<</Type/XObject/Subtype/Image/Width 516/Height 193/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 116 0 R/Filter/FlateDecode/Length 311>>
stream
x���� ��nH@�n�H
endstream
endobj
116 0 obj
<</Type/XObject/Subtype/Image/Width 516/Height 193/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 881>>
stream
x���
Oq�q�C�	X�\.�V�Aq��b[������������D�^������~����9~�
EB���JE+9E�r9��KF�;3��y�K���z�Q��F��l�|u��F3�o$����F���DP,U����o���A�e� ���~#��l�m������7O���w~���>�<����<�<]+%
�_||����w2����f^~��v�r�@����d���L��8��&
������7�u{{��f�������������5�x���i
�4��@h���5�x<xh jh Dw
��o5;��O<vw�(7;�P<u[5
�,�����y��<��y`�� �\������@��#Bh
�4��@h
�4��@h
�4��@h
�4��@h
�4���,�-��4D{J�+�l_�C/5"{�Y�8j�<�� P���;"4��@h
�4��@h
�4��@h
�4��@h
�4��@�[���,�-��W�������A�'���{��B�pp����[�wDh
�4��@h
�4��@h
�4��@h
�4��@h
�4�Xh ��0L�~B{J��������[N<=����<L�x��y<8���r�-�;"4��@h
�4��@h
��m`����,�����WLh�?�g�>���z�W��$�����������^��E?���h4�������������j[����ut|�=Jyd7����|�������Bi��l;�vZ��N�#w�������jT,$7�r�Z��T�Z��}u����cV�����X��� Ff2�4O�^�T�
endstream
endobj
117 0 obj
<</FunctionType 3/Domain[ 0 1] /Encode[ 1 0 1 0 1 0 1 0] /Bounds[ 0.1 0.5 0.9] /Functions[ 118 0 R 119 0 R 120 0 R 121 0 R] >>
endobj
118 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.72157 0 0.015686] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
119 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.53725 0 0.0078431] /N 1>>
endobj
120 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.53725 0 0.0078431] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
121 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.72157 0 0.015686] /N 1>>
endobj
122 0 obj
<</PatternType 2/Shading<</ColorSpace/DeviceRGB/ShadingType 2/Coords[ 206.91 -11.007 206.91 250.59] /Extend[ true true] /Function 117 0 R>>>>
endobj
123 0 obj
<</Type/XObject/Subtype/Image/Width 337/Height 193/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 124 0 R/Filter/FlateDecode/Length 212>>
stream
x���1���Om	O�n�Q
endstream
endobj
124 0 obj
<</Type/XObject/Subtype/Image/Width 337/Height 193/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 928>>
stream
x���[KQ@as�L�$Jm�jR-��B+6Q�$�R�%�:���H�1��}������qX��Q�3SS���x��/���(K��W3�~��b!��4W,��U�2�Z�����f4\K?\
�����B4�nu-+���Vs=�p3�p��^[[Y�-%AKs+[��dE��i�nw��������|������#3..���C���v����A[����w
p{sy����A�w.��3��!h8`:d8���4���Zk�AA��AQ�fP�Aa�fP�Aa�MM���z��Ao"��AC���.���4�q|i�@�����tz~�������r����Wh��qd�P�����]���#���0��
3(��0��
3(��0��
3(��0��
3(��0��
3(��0��
3(��0��
3(��0��
3(��0��
3(��0���F�����Fv���{�.4\<<s��4��<�6r��ot�.p��fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�����=%��n#�&���62�g#��=���pn#��F�y��fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa�fP�Aa��62��6����n#��]������m���Q�
�62�mdXr����`3(��0��
3(��0��
3(��0��
3(��0��
�/��K_��v��'G~��
r{���������AVG��_f���d��+�W?�v�������{���a������������|q���������������A�;�V��I�����Fv,-//���n4�Q!7��h�T��rFDQ���jF�����������h./����e��a�d
endstream
endobj
125 0 obj
<</FunctionType 3/Domain[ 0 1] /Encode[ 1 0 1 0 1 0 1 0] /Bounds[ 0.1 0.5 0.9] /Functions[ 126 0 R 127 0 R 128 0 R 129 0 R] >>
endobj
126 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.72157 0 0.015686] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
127 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.53725 0 0.0078431] /N 1>>
endobj
128 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.53725 0 0.0078431] /C0[ 0.70588 0 0.027451] /N 1>>
endobj
129 0 obj
<</FunctionType 2/Domain[ 0 1] /C1[ 0.70588 0 0.027451] /C0[ 0.72157 0 0.015686] /N 1>>
endobj
130 0 obj
<</PatternType 2/Shading<</ColorSpace/DeviceRGB/ShadingType 2/Coords[ 528.39 -11.69 528.39 249.91] /Extend[ true true] /Function 125 0 R>>>>
endobj
131 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image59 59 0 R/Image61 61 0 R/Image57 57 0 R>>/Font<</F2 10 0 R/F1 7 0 R/F3 16 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 132 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 27>>
endobj
132 0 obj
<</Filter/FlateDecode/Length 6304>>
stream
x��]Y�7�~����S��]�<��4�z`�z,^���r�u����Z���o|_��YU�U}y_d��3�L2��G�����w�W����wO�?~�6�����	�5�m����������\<~t���������i��]L����o����������\'��.Lt�����'��l��Y�K�������<�l���(2l�J�1.�m\�Kc�s-p�>71�eG�3Z[�5���KZ`��]
�.���
y����Z�������v���2!V����� ��h�[�D�4\`��<���e�[�V�A��P1����k��n@�+���[����0@J���9L��
�
d+���$)}-�wZ��up�Z��[B�B�S4
�ii�;-��:Tt�� A�P��uDB���eb���@��
'������l�Y�t8�Z0���M����
KO����
�e�EX~�B��(��kc�/�+~����K����
M��@$��e$a��!�/�1��2���g�Z5�����.�����L�<�`�*w$d4Y�����E����^'������{ V��l������������'�m�V�i�L��8�������{�Y��*���.����XY������De�,��P� �f���[��	I���b\d/��
�oi�����LP�f���L�@l�A��vi��g�����B��:�$)�2�v�x0����>�V�J��E�M���e�XT�H7�����[j.`�H������z
��lM�q��
�pzx;��Lp^��(��4��C�t��
�1��y7b`�h��M�"���MTn�V��h2�'sG^_��F���mV�A���x���6��v��wl�c���u<�Pqjb^�C�r[�v�Y���-�8����I�`�9�Z��4�A�����V��@��aU�[H�<PjB�"�%���P�s��8��7�e?����Q�}��+���be?V�{����%
�X��a4��;�_�z�JZ7��+G������]��C�i ��c_�Pj,M��~u�F��u��������b*�`�
��X��P0������F�E��!������1���x��!����2#UEx+4�\��>h\Y��� ����1T���@�=c��O�4�z�J�=��2�?t�=v�:�(�MK[�r/�4j7�S$4��q�2���mB�ESB8:�Z�q g{�J���jZ
�D^9@���u�D�u�:a� @��'PA�DT'1G1�����xR����N5��P����':"���VEP��"�����V9!��-�}��(��}+[��`�����8 �5b�X�_wR�u=��%d�,I!�v^�4@q��G����(����6���p<+Nch�-{��
���>����@,�������C���4n��i�1���s]�S@0x1,
6'�7_|q���o�5��_6O�)D�m�U���b�
+{��x4�u�K�B��R��WSz�J��*|! ��"A��B��$�X4�lo����e"�j�9�f��9�,�,Y�&/�3���D"���cZ;��-�����g�b��v���� �{�Rx��6	Z��k,%���hg�^E�h/�!�\c���xv�#��>:|�U~����q\���y������rZ�\AO���Ih�Ua(�n%MB ��Y�@�"�����2���=���L��-~wA���d��k��u�l���&�T"[5h5�2�Z��|w��
f�6gi3��������������fqzq������O�8~GX~::�a����_|{@2B/���+�R�'�K��
��+8����tcb����������A_�/Q�f����Jk�����>;8�����?�x�Kx ���y��5�1�v��^��H�	����p�Z���,.��>�o���&�V�����f=;8�����������<B����geSq�Q�m�<g���Ix�[+�`g�Zr������l�*�n�q���^H{g�u�u/��rSX�h�*hE��
����mn�{��-�K��er��m����Gnqz�:;k&�!��b�����]�ZF&3��H�q�G@t,��I./dZ,^�{��
��w(���(,._7p�����MH��t*$�a�����U2�����L�h��������)>,���r&�ay~�L����[��^��|B5�/���3�&=�.\�������������<:l
L�-BNf����Re'[�������h?����O��&�6�b��y���\4�W�@�wP
�D�^��Es���
B�Us��_(�8�����Qf��T*�&�N*��x���0�;��1Y�0��	x^|�l^�����	?|������Lgk�������`�9��"���v���?�x��+Qxaq��db�MHu_���n�M��c"�|[��
{[��K�����>^\��s�F
�m�Z���&B���[z
����V�b��_�~��qu�[[��e�mlUM���U����}���PSp��6�)uc���p�����0�_��q���+,=���?�N�W�7��P��)�{:��,�@1���y��d�v��a�kpu�a�OUhuq�L��d�-�tI�&f�(���������S�%lr��v��=�OWk��?�+v����-���uas�������9d������[��9������T�{8����n�3�f{u*>�1��S�2z����@��Bj~V���ez�����8�T�@N��u��X[!�����N�e+�4X6�A�T�
�B:k�������k:��,��uP�;�p�r����G+>�|������ 
����k �T�(.����N�����G�f�����W�x�`6�`i!�P�%���T�X���k��i�$I�\8=����mr���;3�w�D����uh��;�]��l��<�?�@��9��:��o@������8���C�����A�c���!�����+�������������c�������/��/G7�d����t�4=F��:z�����L@\:�pa�u�^�����G.�P���<qi�Y<=}O���&�)��i"GEd$_]_�O*\����������N^��������w\�>y���k=���>���Q������pZ|H��������#�CL���^��1+b�����\B8�_D�~��7G��J�"p�L~�w�-��Z�&/�;�N�X��������No�F;��y�$�6f2�2��������|���,�x����/�p�J�qU&v��?Jbq�)��*m(P:��
����}������!������9�_`n�RP���T��9���GE����	��Y�&����5�� xj�"F��<6��a�����yu���*�	��������RPH��T}�	$g`�(��=���>�!8�
����Qv0,�76��S!�����H���zO�epxWw�]�;$����}��c��������`X4�5{�6b�Z��'	�+�����8��k3�z�TA�����]����;�}���Bg*Q����ui�l�|O���])o���P�c���c�
�F�1!�|a��c��'q�
q
<P�/��iSe��QO E��P�Ra��9�P��;�Y�Ol�����=�����`�N��jt3z�F��h�`u1[a�0��
v�T���j1��jL��`z���KA�6T���n#�uD>)�L�����	=oN>�;R�f���� �f?pZ�J�j~+�������y\���j?KSjY��j��W	���
����2)��"���R	��+����<5��AO��WIIgZ��b14�����J�8g��&K��G[n ���MG;�a���3�/����KMU�+���
�����l�S�q�� ����v#��u>��k������.&f������FW�M�4j�_��������X���b[=�����?��Z����-,�kW"e�L) e�k)����z�]�����[��O�8��f.#O����$�
b�Wy��\G�f�1����Z�l+DV�
J��kL����C�f�*���F'5�)=��n��<R,��W>���}6����M�	>5�L���OqM�-$e�Tq����i��x��}F?��Up�>z�y������{Xaq��V�QZ����\����p�7W��]M�r���9lz��5��@(Y�����w{���e��%��3��!���,,�`�:<�OH&�������x8�37c�j���g��ky�^���oe�,��%�HUDZD�����[�8�{��z"0��\k�tL
�I�g����!���V,fT�(t�f��1x������#D�4#|k�y1��^OMw�NWi����p�7�_?d��������9�gD~��z���H�p8�tg_�b]fi8x�����E�q5��&�<.�|t(G^��������+�l��X���.>�~�(r��
����~��wwb��H��??D�[���D+�3�J���D�+���r������Mhw��S�����p�9
���c����o�z^t#�������c�8gs��wXl��'0��$>���}d�N*p����(W���k�o��N�������8*~�g�x��Z���8���m�������!�{��p�9"M]Z���bBT� ���di�#�u�{�MN�$��E�}M�s��fd`�d b�����W����z����>_Z(��.��X���S�gbE�2�&���2�/��5H����e��a�,�5����i�]�3�e<������i���������J���$��%�u�� �ED�l� �%.�v5�����������!�0���;#��8:^�n;VJ_����v�8���u7��@BX����Ig�X^��ra�����1�gP�V���nl�i���y���Y>7�	x���J�)���7����o���,� T�h��}x��cDo���\�����,is�D-�����	�(O�cZ�=�U�L&�gr/��>��T}4����*7��@D��*�YF$���[�$T�H��j)(9.c	�Z&���N�1LK����H��7��
��k�2'����j�'�JE'U�D��1L����������3��El���s5c����*q�D#*DF��r�����g��+��JB�.�S�!�K����.�r2eD"�>��V����1�>�����B,E�W��"2PI������p������v�Q�^��S�f�
��N:&#%se�1M�/w�d�a+��b)�dz���)%� f �����H8dG>i�T�������rz�������b���^EZ���%P!�����f\�Foj: �8��������L�V��I�2���"=m���U.g��X�k�r,=YZ�(&�dE����z���l\�Le�#I����"�	{%�I�Lf��z��$|�.��@���t���c.(Z��j�A��)�lW��`u�SpC�T�$|�T��p.l)�X��_�=0E��e�p=�8Q�^[����V[������a�����X�z���JA M��~j3b`0U��Q�	;H��T�����jS������������F���|@�o���j����.��"�)���D�	����I�����Y-	�9d���"��Xb���9a���=V���51	I���$y0(�<O�*<��������y��J��>��9�v�����&��nM�H����r�cH4%c&�T
��4�b�2&�
��X�tK����:�~�)������O�E�C{i�'�)�OQ)Ao]�����p*dK���&�[N��]V��=�jW��YM�^M:V{�N��':]�m�C��H��V����s%�����V.%�/�S��d�Z���W�\Y�1Ht<��j$��]�av�ik��3W�c������ P��3���;���-E�n���]�<A�O�.b�����QO�����A��_�8q������A�	]�~� 5L�o">jl�y�X�,��cn���rtG���
(�}����+N����]
$B��)l�B�iE+�V�0o~m���\�!�n��k�R+��v*���p��������a&1Q6�`C	;��}a�)wY���<p"b�S��&�nw���>��p��M��������2���2=�>����z������Gb��Ye��|L�I's#�b7�O�����X���8n��	��E0'x��$
endstream
endobj
133 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 134 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 28>>
endobj
134 0 obj
<</Filter/FlateDecode/Length 3954>>
stream
x��\ms7������(u���mI�t:����^����\g�~P����S[�\�����JZ��F�/IjGK�� ���7������z��q�����j���D����n*���f���__T�'g���������.�i�
���xp��'�7����AZ�70Z�7������v��/i�����B���u5��@���n���m��+�Z�j)
&r��U���3��A�3����&H����&�Mp���,!S�(��A��W��MB���:���R�F����Q�8aS�j?�����Fq���i����;�9h74�� ��.#&����U��yWP�Bj��1O��2�[B:��Ln`���f��71O���g��f��^�H�Z�vL>�2U�� !�z�gDi����MZ&0v�^d�nc�� ����a��t(��5:���j%b�_�P]`���p��9V"����������R���4�i6:6�c�i~���(v�6�|����C_wF���W�\<���n����%C���x���14/���B�� ������6�	���%
c�O,rAL������O�e��h��D�M�jm�����sz���E�ch�X�+��eM+�v11�?�������0�2��"[�=J�{�e���h��7�� ;3�j�]O#h�K,��XjUAs��P�8�Vc�O�k�8����@L�_
9��%Q��`��W@�W��1��[�q�%�Mt@��}�+���4�%n�s��X1,�K
0��xmk�
�lt%M��{�.e@��c�A� 5�c�O,S��t���|L�}] �(JAs!V�1"� n�����e�/f�1<?A=���F�&1�<��{�))����~4H�tj�}�y��<��(%5m(���D�����@�En�J	EQ��v=���(I��a�w��Zg��  �0��V�$J�S����tI(�\b�g4x'?�V9�2P���50Cc�O,K��*�1����4@l�[r )�p�xc�G�����H���4����<�����]�gK��i�cG�$���M4��\��a���.a~/��PR�t%�%�X3mi�7��6Q���)�����V�umNt��|�8����"��x3*=��k��iJH���]��G�
[0��-���8	6�d�"��#���q)�"9�����.vV\P���-W��>q�P��6��i���v�D�#i���.���T+nZ?���K �p�: �l��IXnpp��'H������)8{��p�$�#r�^<�I����/t�h��Zl���7al)�c0�E���B)����2�CL�y����al���^���y��c��T�D�C�I[��A�(h\/�+
j{yJJ���y���mr":��],O�����G�m�
�w��q������(��
����C��;�\U���3��������(X��\}�����O�T��_W����j<�`������4r[]�F%�=U)�x��H
�WK��k�������lj'���|j&������������l5��g�����������|s1���/�����g�h�������	�l�!�Z5���������&��������6��f6i��-����vrMb�yuY���S-
k��z�&��������X������U�����n��Hu�p�$T��Bm���I��B�2�"��4��jX��!��V�������������f�FM�+�_����On�5�u���'�N�M�a��4�o�&|��j�����5	.L� 1B�����7�7���(`u�*���5p�7���;�K����?���A]���r�������D����o�?YQWB���q^��eqsM�`Y��tK��(���
M����h4h��_��XT��?�bQ!��pw��C6����U'^�4�_��Y�~_��a��2���5��8��^�K7,=�YUkH���%}�
}�E1��9i���`>�f���fW$�H�]�]c|\�Z��[tFH�m���~q?=�L���F��i�h�^�NX�O����zpiw�����2��}�-�?9fH��^�3�T��2����������$����e5Y�N>�~��]p�4�aFSf01y����||�o�C�=��c�eSD�<\�g�7�W���G��������og?�.�(Z\]�����\���������<�{�
F��4��CHP�R��05��nru�� g+j���Q��Eyg�--���?E������9�9=3������8y��OL�
h�RPNRX�{�$(����z���V�wDA��wY�(�Dl�9p�|��+�4��r)C(q�d�>�xO �i�=�8@�`�z�8�O�g�'�3�{��P
��A<��h��d�3�e����`b^9������P��h��N*�(!e�Jb�CP@�Y	&�S/<�4@@> q&��s�C�!��H�U'Sq�}��Y�
��^6�.{
|WC)��Kj�@\M�2M��2���)BD�����S���$"7h�T���*B<i�� 'a&5@R�kj����2��JI�(�c�E�g��@��G��o�)�Q�������z�R������W���	az�\r�
���kY�Ak���C<�-
$��N
-�K��p�2%��#�HGx��<��C<T����~��M�g,�A��v@Wr�(*Z���&/h���L���	��n��7.��9�����E�MA�\0�	�Z��BE�[q|a*!H��A���n��IZ��t��I�?7�D�^N
����S�p0�|d�	��4�:���t�Rl����m�6���b�>��r>��kS2��������|6����p���;�zr�J2��KR�a=��)�8�����4�r���I}�������k��L���rW�����sC�K
�'=	;
��&>�������t�p2���l��,��2� ,S����e�C����
�c{ZJ0�6`�Y��/v��$W7zZ�QHG��k�*������r��Wz��a:-%>:-%.�J���k;��y�y�e��[&����4�,3����������S�����F+������p���������Lk���&�|S;7�pZ^MX����O��-��!
�I&}�@�*#-:����{���c[(����Z��@Q
��M���)�����6p��B�F.�u}��X��u(�u��hBf�Z�SB�m)�h��IWv����c��A]�E`Wv�K&��Sd�\v��s�%q���M����7���q�w����Y�&���}����m7.l���9=�#�8y�m�
'
��v����3G�"������U{���t|*o��W�S���BjR�J��[Q��zb�O�R�?U�������'�L�jh�vr�UzL�3�yK?���>\sg���5��u����8��~65 �����
��2�h#O�
�N.���e}y��(�E�!v�]���v�������{$vt�����3q,o���p�g���O��|
w���xR���4�>*�H�_1�\���	��x��l.�����J
�~��!.�}w.�R�=�v���}[����������5��	�=&G���|���&��0�W�3bo��fo��_���q��� �9��������Q������x��������������gC�xNr�������t�C���U���;W�����/Pj�r35�B����PCzE��.�q�L��A�)o��g]�_����$
����4l$��H���DD��H�[�$���rl!�V������f�_��e)�������.�G��QRk�`\�+5sBU}�a��p�m��@��A^k����o����[)��|��`�i���E��5�e��A^�n��H�y��ds�����{f��c�T�;>2'|}��Y��
��.;n_u�����m��n}���u��G\����O���5vDo�E���8���\�c���D�MZ
endstream
endobj
135 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F5 48 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 136 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 29>>
endobj
136 0 obj
<</Filter/FlateDecode/Length 4645>>
stream
x��\[o�H�~7���GjqL��M 00If����	�!���$>�K��L6�~���&)�eY>33���Y�����K����WW���U������/N���j��Q��"����+��/N���������/\�����*>w��v*�Q������8)~�n����6n`���h+���u�t������^*[��+��hR��=1����.L��R��4��lSx��� (��hZS�(
�.���6�U�
��L!N
�R�ho����1���]��T��s�td�:N�T��[#�V���c<s�p�2^qCm��������mw�T��}�u��Bj��2O��2]��t�����2�"_��!��<9��i��Q-�a#1+%��1����b�PC	�6�<#�����6-�L*8b����u��mZG��\&�H�Nq��fM�4�/v�D�*�E6a����c%"N�i�^���f�lI��N�����L�e�L4bl#��vzM��������
]�'X���*Z^2d�X��Oj��q��]h����B���m�������]�O,r������]G}b-��Ab��6i��XE�Q��ty��E���:�"Wl��/�v
11���.��bS�aLd&CE�=J�{�a���h���qv��c5���h�M,��X��Cs_t�q��P�XW�qt����@L�_�9��%Q��`�����_i�v�L�E�~CT�hB���}�+���h�M\��GM��a�]j�9u���:�V���F�P�twulSF$/<F$R�����e�}����� ���.�FtJ��B�v���;�q�}���.��b����G����N��3���`J�mBwu
#���me�!�g������8J�u��H
�Y�Vo��Pt���i'M@���$�J�in����u���fj�Tp
+���9Y"��� 	%@�K�����/��N����60C�P�X� !�9�5����.w�b���I:.R�a�#�v<.R=r%������=�/_��.��]������&I�oM�h��rQ��.:����`�EI��u�,����i��q��k�����b��������XY��q��iE�-��f�����]�OLSBR�PV��v%6l��h��r-��I�c�J6.���z�\�a����$���6V:c����;���i��+v�>q�P����n������D�#i���6��j�����O�W�H>��<[�9	�
� :�)P�����H�9H��7O�;"���a���L�=�����6���FQ��	��L���M{f��o#+��bbb��F�4c��P����������H�B�B�J��A�(h� �����<%%ZJ��B``b�����c�tW�������3���'���7�lx[rM�OG��r���3u���+�3��7��'�8��6��_��/�����MQ��������`��;b�'Uh�6�x�	;���S�"�G�Ej��xw�9�%���|�����x��'?��sq�u~�2���:��\��������6g�Q��<u��G��,,�Q��/��+��9�x��c�fB<�H��y�sD<���$���rf���G�����d�M��B�&n�0C�5Zm
�T����=����e]G{��K�x�mrI��1���
���P^�ly�0;5�j~;;��b9;u�C1��7&����B1Su�@Wm�u~?_-�Y(���p��4�D_��V����+"\-KWt�
���F�G�|M�����&��"eI��gS0���#�������$������&|�������F�csY1k��x���	����&[2)Ia�~��_a_`�~y9��:�T���N�"������e�Wq�s�M���E��W�t~j���P��o*�G�7��
3A�r��������k��}��n����k<p=W�%1����dxJ�6�.�tKs~j^v��p�tZ	��J��c�aDwSZ8(`m3���F�@����F�3�O,���9��m��h�F��j��l�1��j���_��2������-�&�9�p��"�O-2����FE�qJD����q^^����3��-��Q�M��c�	~�:&����G+,T4��y��B���6n����Tb�O�d-e�\(�u�z��^���Uj��������TF��^�����__���Vw�D�zT�5��/���S�5���[G��:@a�.��^�����^fh���l6u��I��"�����^�f���J�����H�/�1P:�[�L�����Am��__p�7/ia�Tt=��(��L�]��c�����c&�.P�W����+�O�U)7/�"��0]�)���O���RfT��P�3����5�j�6U��/��mY$V����T��e�G����+4/ �(��d:#7]�X�7���+��3�>��]zgy{G��[�>]u��?{l�=5�6[h:�!e�uCzS[f��;��<h�����	�r����h�C��$��X�r: �pauev�����d\l{H��1u�G��3�#x�g�F����Y#��#iw*����6�Vs5�#�$����hZ�o�[�;B���0#q{�����T\�gRG�2l�k<���<�XM[����GG�AVL@�7��%<=���#�%GkR�3���*_��6G�uw=_�����'XtT�|&�<���#F_]�5m��wXM�9�a������)v������eB{��}��O����������5e��(r.G9�U%~)����o�!D��xt%=L���������G�#3��+r�l�4�.��l�x�����.��GD�,�+A�4�B5��a���l�������v5�����b����g)�����B�K��0������B�Vagd���,��u�����>���n����,�;�B\��Z�a�e�����juw���w��.�~�������n�.~��B�Oww���cY����dT8�M�*���Pe��
��!���*5-���)����S�������������!p������
��og������7S�#m�J]g�<�pm��j��8w�0MN�����>,q�-����E�����a�����.R�*#w��n���A�Y����Dy(Atw�E0��9M�2����;W���7����������<��X2E{0���
�����&7��&�:�6O,S��5*�W�<������H�a��:�G$
Q0��^
��}�s�ODT��p��ND7��O$
��,7�e/?|�hw���s��$�#��;l�����������cs�j�*��r�����r��iv������|�������>��
�:�>�cx.%;�}�dM�z��s)y���xz&p�
���y.%���d��f�m����o����=�S���!�W�����a>S|�$d�U�4�S��O��({!'�C���kNX���JB
�~�;�8�����C���
����t���B�
vu:>-�R���5uc0.c�w$"��@�!��`�<u"@X�#���w��Gt�T29'�5-�CS��(OQ�0x�~��z��BXe��
�O��~2�A���&���	z���f%wC�^����`^s&����bz[?���c�F���QD1���g�(M{����_�'�"���O�8��_}���[�>??�	�K'�����������HL���X��:�	N:�>p�����s�V[�[
����e��VW�:U1n��	p����#L6Zca��|����.'?f�G��4ax��N6S�f�d���9����	S�k����EZuyJ�b�.���N���Y]�:u	%�>��[}�O���������n+�/_[�	�T&XXN}$�'K{�����e=KN��(p��cfl��I��������~DP�
�*����;��Q�O*��DYUeG����a�%��Jl}I���vi��Md��Mk���A���w?���Pn�J���J�sL�fy;m�z� ��IZ]��l�+��J�r��K�$��U2�$��KF*�"��������p����{@F(ch�%���`a<u�@H�����~�c�i��8����i�M�_qI��J1`8&Le��Y�Q\F. j-�gLbR�c6����-��R}r_�H�[�
3�\JW�n���3q���O�2�����"3���
�����d�9a�	"U�t0~e������;"4�H�
�y�>_����K<�h#6��[�+�w�Y$H@d3 ��'�S7��Z�^��Fc+��{��������<Gz��N��
X����Z�N��j�k��vhW�
�zd��~�M�6��R?�0�Wh-�T�-��i���a�������?��'�S?	�(����l���9��9
��f2��1j<�=��;��#-������z_�&���Axz*����L(
���'<�g�i&�4�bY\�`o��l|�g����%f����	��	��^p�g�+�����~y|z������k��/����D��`�On����X������z�y�x�����u�����������>7w�/C�n��P?u*>��)����xw�?�r=�H�������7��	����S�S<��5?��q@C��1��
endstream
endobj
137 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 138 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 30>>
endobj
138 0 obj
<</Filter/FlateDecode/Length 2932>>
stream
x��ZYo�H~7����� ���XY�Y�-c��M��6����	�������$��!����]lV�]%�_����(��OG������I
��2��H�J3��������~����r���H-�����_������N�����h����%����J���R�I&X1���M��1W�x���oY�t��Z'V0iu�9���hA9�u��HE�
����~A��H�ki�D)� �����H�a��ibm<�g��q^��'O6������$c���ws��N��HMX���*4��T���8�%D�*���kz�dE)�Um�5�]2HT<d�Z �X/_A�KO���r������P��2����M��N��w��*���(������F mdb�\!k����]?�H����V�������S�������+:�7i�����hT�%��*rA�8�^�a����d+�*� ��I�r���V�1����Xt_<H��s��;�M�7=��������U�2`���9OX�CE$6-��+���(;�\��U���Bj{9� "v��q�5��q7j%Fs�mie�+��9lw���wZ%��EY�}�]AD�wq���$�F6@�aT�b��A	v���q�C�W�6c�Q����Mb���%�#�x�"�:����&�HDF�
�������G��u�`��`�/�x�_�\���X{�5Q��-26�m�BY#6��b�8������a�������*������������	6)-/��&��j��7e��U1���.���J�A�'��1f��B��Y���H�tfC9���A
��z�*1TyT:n������n�J���Y5Q��_����BQ�m��F�8
OK_	�k(Q�_{��L��NL�}9M}��$NQ�m,�"�8E+���IS��a��E(�\\xO'��j��r��\��z��CMb���x�+��U3\��b��%%�"a�����Xrg�^,� ��2��k�_�m<r�(��SmR��5M�T��VQ����cvIL������T��D����h�B�8��k5���2Nok�*�LW�����e�A�m�Ho�`��'W�Wj���(��V��v6TT@j!V��U�	(��|5��������k���e���E�6����8����v����&q�P��VQ�iBGE��B�2is�ue���a�'~��\0����Ad3�*�������7���]�!9���IG���d�r 1��H������^��F�)�M��2l#��k��k($}eIQ��>D���k1��k����^^!�������&K"S#����^$
x������F�
-��F���AD�������q�yj�b� z��#frT>���� ����|WPC\~��9�/��8
#�~��pp������}{�����������
b���na��X8�L`m���'�8�����c�j���x'�Q[�����0���l����������|Vs����=�g���;a�bK������(��pM��v�Y~?��t<+��#���d�"L��������
�)U��
���,��}~��V���T=]p��JWs�6�v4<��P����Mfy9���
H�#�6���%�a>+�v<<�`�f�|������4��P�1�����~�@*�R��X�m��6��&�34��$dF��I�H�����D	:�z8�zP�8a���W��W����S�z~�$�%�����_�>(�|�Tw�[�&=�%���_�#|�����]��}N�m����n������J��������|b�7
x�x�&�����s��p��+�)~���+;�8.T|L��-F�[�Eq��w�-��#r�K��:g����-���o�G�Y9�0~���K j���i���L����
�H��F���b>m���� �s3���%��n����myN�m��z�@���o�#~�����|Y��W���+�_&`�'��^�"i��!H�
���$� 1&�L�e!�"y>[����=�n�^�l6����Q�g��"�K�ca>p��$�Gxa�����^��s����R��\�q�i���h�~�_�keT�?����	:���
)���E�\����?�  �����N<�P���<��=.��N����r��8�}��]r����:��������]�����x�zyx|�/�&'}��������4s9���������O�T��
w����,�u�1�qE��s{r����0�
�Z���;l��U�7���m�����Z��
���8Nmv�>9Q�6N��q?5o��v�J$�����b^3+�8�}��m���1�������,bB+����6<9�w;��������pW�C.�����F��m<�\���������-T��eB�6�	�&�t��������s�&2��w�����mA�L���D:��E4�������*K��VY����Q�N#�*����Vg�����[����I}�!�����4����z�!�������g�s�l��O8��� ~��5��0�F
j'�{���{
�XJQ�BnS.��I�_\��fp���4)�nz���p��3C����|FyG�8�
7BW�i
�����gs�-�?��%p�\���!���@P���(��"�+�nu�L��O�r�����O��c���W^�c�;������z�G��}�Ar�6%�r@�?�r���� ��h���9�
UE]#��a�}Y�����}>�0/�������o����c�d>;��~S���|^�O�`?K[����HY��f9�!�J�nP��?��.h�@��R�����&�U�S���g8ma)r���=��58���i(���h��>�?���P��(�����(N\�k��-���
endstream
endobj
139 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 140 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 31>>
endobj
140 0 obj
<</Filter/FlateDecode/Length 3325>>
stream
x��[Yo�8~7����V=�e�I �k�Lf�������N[>6}x��d��~��������m`'��U�>V��z�����xR��w'���{���s\k�����4[�{�����{�o/4�Y��qv�H�Ls�&}����?���L{����gR�<G��U���W�,��Mf���������.X��-C�f[�<�S+��y�9���h@9��:5'��
MPV����E
����R)@25���r��[���ffB$�S'���D<8�I�%&X��u��_��8�4��#sb`�g�+9��L�e�8��%D���&S��}F7��BP�eZ&<K6�-������^z��U��M33,]�<R���m��u2\�K�R�1&C��FT+��F����9�����������&�~9�20t�����l�����I9�CA���Is4�%���aA�s��p���;=�k�*����N�6��&�V�5�p��G,n_�H��s6����&����H���s%R�h����N��y�@�4������Vak3u�+��e��X~���^=��]�xs����?��
�;�o��reS�+s��Q$������9�bEQV�>��!���r7j�ix��@E�0�H�nI���
o\G {���U���w��g�A�ma���R�dq��&�a�Y��E*4e7��9���/<�U����(K�x
h���U��s��|CU�h@�&���!�E��M��3�\��5���t��rZ�~p��5,�\����zF�0����X�/=���7�'b[`��M�0w�1s�����
{�t�f6����=(q��cA�Ge��$�6����Z���@3�U�@��n���6��Q�����@�T��
Ec�i��8�����q_N�@�lg����S
�z���w� ���S�����"T..\��xOu�����h�z���X�oA@�	�k��U.{P�����Ia����"a,�5=K=%�l�F��sZ_u�x�0vQ�mf����>�2AS�7���p�����,�&�w���$�J�$��,�$�D�V^�(����k�*�:�
�w���A���#�/��V��� ^}(�%aQ�������1@jV��U�	���|5����"a���1:�c�h�`�"Y��
���^��h^Wo��P,{�:�wMh��h7X(P&�IQWV�M�>L�����#1w"�l&���j@c0��>�`N�������9%��p!��H�[4&]�8mt�h�W��Ql
m���R��HVxK=��B�W�%-�C$,��s>F�����"���:t�P��%����B�ZR<���J��Q�
-�iE���p������5W�������C���G��Q������c�[�o5���09g�b0����?��\4����={������)���a��������[h_��9X�(vy�'�x������ ������h}J�^�#�,��Ov�����e���~<����_���������������v�J�Q�x
��:8���Jn��P�|~��L�q��z�������gV������N
��S<nsm!��&nPo������g���[�qW~z�eV�d��h�m������R0�y�A,�bP�dR~�d1lW������;����{�#T�/�npn���6x�f^����mz�:b����u�:h)��T[j����`��N��T�F<K����*$��<�=�������H���~���c6	F����s<���� B��X����2���	���e;�j(>�����5�����I�S�O������2���	D�1r�x>A?&�,f��9b��K����o��-��-GyR\��Cu�!��(],�X��q{i�^-��4�"��Wn�sF�u�f�`�!�u.��uZ���Ghs�$���A��w��r����
�ew+f�*T
DH.�o#��>�s��k���w�#
�~�J������uO� t�������#�94;Y����!�7o��P|V��w���(a3�1���k}���Z9�oP�|����w�t
K���M����gX�hex�����v��Y�B6R�_��^�Y�3J=o?������|�^�me�P��{����9�l��|~K������{F�-�%�/8O��c�������`��������aY�"�6����/z��9�p���Wf_)t���A�+�6�}�k��"Z?��;��xv�"��=[W�_��`6�w� ��/JpE�<P�.��<LK�����Z)4����T9��m��,1�N`?�F�]st�@������hq�d��W�cV���-��v�|�4��.x��!��gN�Re��Vm���-�����Y���E�k��L�0�E���A.�R�#��_�3�F�z�N�K�Xp'��}�����w��
'n ����-��{'�����p��:%�?��0���R
Fan$�R�H�OJa[LC$F�-i�����t�a�G%B
0+������&Z=P������J���*a�Oo^�b�;sJ��N������j���m4���L�*^
y����6	E��� �7A�[X�I�c-}�8���$#��YyKe�wB���|���h��il���B�T���&�����d�����|�>Bg���}YA����
�%����E���C�(����5+�n�&(����C�~8Mu�J^-_&%����*H�
�V6�XN5���1u�U�����w�u[��k�m�1���"��-&6�c*��0r]��6�P`��c���D�����\0������c�{x�5k��p�Op���_�'v?��|v���G�����w2��G��&���KA6���=�=6N�+=�k!L����8���5�u�5vo;ef�@���)����G�,���@�_!�`7�s���3����yT��_�g~��S|��VX�o�s�pj���v��eu��Sz�lq7�^Qd_E��$q���[�zaQ,�����
�^��s���W�.��^<]����t�\FZ���z�]}C?�O��P�L�����X�l���{�����q3���DC�i�zl(O�p0�
�be��=��i������g���hj����*��I�*#�������o��f���h��,�����}:<^��b�������������������s�C?/����-���Vk��s�t����w���"��Hb�����[�%��<��~8�8�=�J~M��W}�����_��W�:��n$��D2g(s���U���EQ9"�T����5�Y����
endstream
endobj
141 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 142 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 32>>
endobj
142 0 obj
<</Filter/FlateDecode/Length 2839>>
stream
x��Z[S�~���0��-{��w�\Na�w��k��-{d!@YI!�>������JUvY_�����9}.
{����b8Zd������YY��_����2���f������U�;{?���r��#��$�J#����O�;���do`����XQ*�����.���,#��
�����r,tv8���o��[k/3�m!Dv�*�����p� P��PV����iYk�M�5#
H.�p��p�����>�L��MT�� ���]!=��p��0Y7���R���GYb��35+h��4��Ap�.!�iN��s�$��t=M��w��, Ys0� �x��$����Po���2l]*i�4"a_�N��o_�JTAD(�d�#P�u����TK`�(c��^>����aib���i`4!���|�����M6�CQ���+,�����N,c�*���G�O20+�������I��������H����R�����bC��	q$i9�V��k:2��x�
�8��FI�9��>�*�ao����E,��`�@j
�z	�"�4�����_��Z������ZV���59��n�f{��Ua�XS�U���
"a0H���EX�5�j��D:�
I�{��W�^u�q �n��A.W�A�ua�e@���<�}�R������,������B@a����s�$�`F1Xa�K �������ul�jm��+|S�������K�\�($�ywq�)M��Ua)�/�>�����l'X��X��;� 2���5�y�M���~S@�	�i,#�Q{���E�@������V<��dhfG9���A
��z��0Ty�6n������n�*���Y7Q����t�X�X���Q.���K I*���E2�u����?��+��4��F��e!k����TC��K��n%��,K��,B@�"�}�����S�AQh�� B}�)�G�H���n���"����D�@bh}�!�%���b���TIo�H����i�(`��8�V�IIm_�2QSMoZE���x�Sv�EJ��`�&	���D����d�@C���k5���� ��}
Zekl]�h>��P���D�/���(�\�>��-aQ,��\��Mi�d��"�����Q���ge���0����J�s�H������'�X7,����PS8n��a���5�����a�@��9�H�ee���0��:�`"Fc8�:D�����z�`0����`M����������.Ob8���8�����PG2A;Z��f���7][�8�d%[��(&}��P�g}��%��cN����tlzE�H��G��5�X�%relY��T�u�^I��m�)���v�y	�D��6!�F���D����nq'G��]��+�����O
5���aq��#��]F��]`p�.����a��|�w|��0+����e���������W��C�E�D��]-�^���"�X����o&��OdNva`����#�Y�����l���)~���x��l�\��K�q<0�	��~~��N��ys����%����A��1�P�> �=�e��#���6rl�������j4v�]��0G'�f�e~�z���tv������q^�YOL����/�����!����{|x�����\���W&�8Q.?~l�	�E��PA�P	g�q������O��
v:�]�COG��'5�3�o-�I�b����B]��W�[T@��&�>z�B>?�&�{��g��8�*>5�������ogcdrM�������q�6�T�����[��L������A����z$�Y��F�"��g��<K�E��B@�}Du�:��k��2G�OAA&�6���zQ=Z��Q��i����Cv�{k��{�ez�<[mX�����F5Yy��\����vlE�v����x�v�gx���d��uK�C����u�I����l1�k(0��vv��Vn��������=AE��t������<�K�*��;���lV��wC>>�a=A���������G9��Z{�^����	��vr�V���o+����������n��o@C@�Z������+��0�(��[���������!��<$4���v�Q��,�#��� �M�P����&�l%7Hhd������
^�����~^P��N~���V��fIt*�����7�Jn?��o��y�g���_u��tq�����a���<�h���+����s�jL,�U~7�0��������I�u�l<��XH���1%��~�P�~����OT�S?1����lS%#��P�T���f_��aBWc����������'����u�na������
H��ki�E	!��V�ns�����x>�,K�_m ����F�xP9
�]��-��������g�Z������������5Bj��_1J\\�O�����)��Trg�<C���������0�b:pyv�~���3C	h���l������z+�AV��7�������Fw�?3�~��!���bh���,�����g����#6G�`�.�4x��T�4���9Y	W�{���e&MazrOGq�l u~�m���:~�L�#	�O���<���)�C�6=q�B���6-�J\��mSW����r�������)�j��.��x�f���'ZvH���	��!>r��b�t�;�_,��+���{���������������%_(�N�}]����t1�}��ef������*La[��`z��(����@��"���~�>B�o>?���St�DgxG�r<)0���T��d������r��/��5Q9�|���/��V����>V
endstream
endobj
143 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R/GS9 9 0 R>>/XObject<</Image14 14 0 R/Image145 145 0 R>>/Font<</F1 7 0 R/F3 16 0 R/F2 10 0 R/F7 147 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 144 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S/StructParents 33>>
endobj
144 0 obj
<</Filter/FlateDecode/Length 3529>>
stream
x��[Ks7��J��nY#����d��:�a������I�H$CRVi�v70�!93�Ez��I5��|�n�������b�`���fq�s�a�bNr��a��������������������7��p_������#��=�z�\���`��u�=|+�s#�������)�f��>~K���f�Z�{�����>6�@
:0kM��p�.+j��*W>6H��9�V��ZGJ�r"sj��pl�S�{_�L1�<�����%��r��J'Z��u�8�i.h��GYB�]Dg*VP���"��j�D���T.,�������t�M��g�zX�d�����d��|%�W���jr��#��%Q<R�E	��E����<N�8� Q��d5#�u*�4�TK�"A���������6,U��tb7 �(�k��\���,�����[T�'�O]� ��(��
s����0+�K
:� ���je`U
2��
���F<._H-�|Sw**��7W�0z��5m����%�+���I
}��fv-��je�07�QvV�<�W����&s�CE�!������2>��jeFs�mY�s/*��9uwS
���>j�Y�+��e���v�"fP����f����Q� U�Y7����k��J�m�Wri���r�j��c@���<�}X�:���QMf�KC�
������e�|��%A:3��
#^M���������m��]�*�E�.�M�+k��j����s!�PS8�.5�9��m�*��']�����Nb��c�B�h	Aj����&s�zS�+D�*������R{�ad�1F�����Xi-����������j0'?�C�2cA�G��A�������je�t���T�!6T���RRc}��M%f�~�b
$I�Z�Q)����k'�a����q�ij�����<���V��PC���h��D�D{��,>Lw0	2���gP���s���)#�.P�d�K(Q;���u�]�P-�
sK
$5Q�H
4�>���)���b����ZnD���U�.R}��zT_���%O�T��V�~we|���,�:�w�
N��d���Xo��`��y�R
f0(#�����5�Jtt\��P��aEF[���z���p�QMf�&���e���]+��ja�T�U�IT
C�l<
��j0S���1)�Zr]��\V�5ai�5�7,��a}T�9M�ia�T�iB	GI��D�"i�)%��TS6�����
&�H$��)�l�VIX�`�xC�`L����H���1m�$w.�EO�K$�B��-t�h}u�Q,
}����L�VFM<�F���=)Jy�G���z�i����E��(�����nGE*�DnI9�J�e�$Q�s],���)��SR�%��9�b���H_
lB��4"�&5\7��p����O��h���O�r���������`�6#��^^$�E�)�N/���}�����o�?������|��|�^�GXJp��j��� }'��\G��k����>����@-���{�#�Y����9���r��+68q��h�'��;h)�����\v�,q�Ku>��I~L,q����a1��O�l\��]�W��T�	T��6eKH�7`��A������l�M�s�
 �"�����H���8����'*{��+�Z%���o2#�b\� wO��
WQ����A\���k��c�H��kG4��w%�L���A
�(�_Z����ih0RN�7����-�h(�DW&;��`/�<������������wX������H��w�� 
�h�>7�Gs��?�������=M6{`� 3XEwe�(`9.��e����{�1Y2%N�=L�gq����d5+S�4f-�@?IS��x��.?~���/�G������<3�b���n]1?����H��~r5����>H�gsZ��$����Gu�l1�fXB��^*:G�@,P�
'3Z����0�A=��|{\�*{EM8�k�����w�ZU�<�z�&��1ATGrB��|>�t���&vu0S��z�>�i����s�c�a��M��E�����s�b8����+g�R�-{N0\��]p�����������Jvq1���.��;����x��%��V�='����q��4z��,m� c�1�{r�����i�p�%+�_�%+���,�lI�(i/���C�<����8��<W]Q����h*��<p����r��K�_Zx<��P3RO���v�>���+:��b���� p�N�s�l����!�E��_a�����"��8�dP��;H��U��7������~�Z��t�����+/������������ `����bz���=�����@����a6L/�1�D��j��};��#��g�Oc�`���F}��������!�7�D(z��5b��6��~UO�*4]9Z�)w�_�s�RW���-n"�H�@n�:D
����s*�M!���������� �A�����\_R�>\@�=�L1�����To <X�"����U�u��Q��E��w�2{�gI{�W�:�%����t�9�o��k;D`A��q�U���;���S�C�4���`����Mp8�����TL�l:C�9��99Dz��r���E�E5�8K��kx�Y����������/���0+r);���v[,��R�GE��K�^�h[��Y�b�
�^��O��x,I�`�g��g��^�L�b��6K>=!O�Bv�^��e�
tT�!�2���a��0J��m����0�x=Fv����������6����A�p,��V�&�r�;1�[��.S$��p�tm;h��mo=J{��C�\!,��b�.��,n�{?���^��>������s���[�d�7;d�z�b���t�F��
�`�;��w�6m��!�%��:<mC���<�x�,��SL�w#J�
<�M�wV�v�C--��mn��A������v8{�������5#)h�PH{�_L19���c���L��88��F��;����'1mXPr�d4Ot��mG� %���vL�\��{OpS���:�m3Js�������f���@r�X`��>���,��?N/����/��h\������6}7�,���b�����������������)��@A*�fz����}�I0;��������Z��o������x(���zB�n U��x� ��65c��#��x'�&(���L�g�x�����i��������PT���B|w�O`B��pW_��:]�2��Uka8�3j+���0!�,�-x���i������:u0T���f@���kc���!�������t�P�� :��B�����b�����;`8�CL:�����ql}�o����4.�������]��w8&�F��������r�8���8�h���h��+L�����,������e��3��q��FP,oG���������>�����������F��[���%_����O.I�J���/F��?
endstream
endobj
145 0 obj
<</Type/XObject/Subtype/Image/Width 369/Height 351/ColorSpace/DeviceRGB/BitsPerComponent 8/Interpolate false/SMask 146 0 R/Filter/FlateDecode/Length 7385>>
stream
x���=oI��ofe�"C�%�8P�@&1�D����f&ev8����u/..��X��� Y��	�w����l�f���\\���~{{������?�������z��?��������������g����>	B�0������c�~�x�/����ywy�z�YB7�D }H���k!��{!$X�������������G����O������n���7�q����kF9g	Kw�������L�b8�~�aw;�eB�����y	�LN�������F�������qicK�e#\���K!B�ps��V�dq Kg�����4�|������[c���v�r�7�-����g��Qp������8	�����=+�Q� U:d�H�"�{�;}e�o�|"p�p��O����'0^�>F�
���r�O��B������slso|����������gr�6����o��7`�R�.��LN��X���E!Y��J�������@��#%�5E���=pEg\�������a���	[B��s���aA6��u)�&P����m�v����3�z��U)�'sVN����*dr�����X=E���/��?aQ<>~��"$��@�O�<�AB�B�K��A���������L^��'{��~�)��>RB�/�4��e�e�����#%�-�D�'�h�=�H`>|����"��
S�$*��*���"4^�I8��<�O��i�y|�8�0	�������h2T�Z��A���Et����l���$��x�����q��?bd��	��Bb�y�a���
>�������8;����4�>s~wI����I��t#����436��"���|�}����[��S�����,�	�H�r`�\�"��������k4B�����Bi�R�����1������Q��les`���K�U,_yB��
Q�.����Q^%��b�B��}Q�-=������p���}]zT�����/{j�CB��6*��e�G����ws�N�m������7�e��T�#�v7|������aR����N9�E!���B~x�R����������/������!J-4�_��2��f~KH�#�c�(G���Cz���$�>�0!�B�|O5�k�l(����e��e�L��Y�=�l��IZb<��M�|z�����IZb98$?������#��R	�%a�W=Q��*7��R�42���#D@^�G�������>� r�#p�����?d��XC��u�sp�R��O��9q���������'{��)��q�Z��f�")��xeJ<"����A��?�:�]y,%;�]��k��-�\���c���nQ����U��� �"N�w�)����.L%+��*�X�#rn6��Z�u��@������rn��)UG����$?�%���$�#����$Q4|ix����H�>D1�SZ4"��@b������BN)���K�<�S�U��
�	9"/�G]e..^���=��y9�ng�FfFp)���;���6py�8b�G�4�b��%DY�B,0�K)�o���Z��x4�R./_�e�����)t)�8�����P���c��E�B���5�����BYE��>� ��J��������*!���1~?h�jMl�R4���?9��4���-��	�
�0d����q�w�R���b�+]JE�(�M/m-� �	�!�	��v)E)��@�R	,O:x�U�b���.Q]JQ�r�K��\�����0�-������P4^��?9�&��>:�,������p0������N�o_�>D��O,"�c���9�`K<��Q<�at)E<���u&g�%�l
��;u)������KQru��(?oA8`�mY�=���kS��{���QSr]9Dt)���.�rD8)����V+w��K�W�
����l�na�m�����
�������F8�/�`�g�������8(R�h�7/�XA���{J5�hw��9��������WCZa���+�'������W��c��|v�B�*���(�|V��e����-��;�S�����Ua����7���.�uYD8/�9����O�yy�+��R�Y
~�k��_^EN����f]�����H�i's�G^E���z�e]�_��L��h�g<��N>�^�H`�"7q9�G;	�R*��*�%:�C�����e�"J�c
,�mH�:�Q���%� �o�W��wVJ�c�-�����`����!�6tF�a��lJ��S>�f���}�=p=���,/����E�9*�5���L%���l�k���5��x��
\�����]�3\CW_�e��2k�r�=�W$�;���z��O�Vf�fW�L�vF��<���YY���i�E�����qc��>C��*�A�S}K2��A��pc�R$����3P�F���v+a�R*��J�I�����?+`}���Q�!kP�};C�
���a����,�Y��������w"�4P��Y��t*�}�5�4�ouP�(�����/�7�`YV���v}O���XY��h����h��5��l�e�-�m�8��rIv�D��mE�KoJ����f�
������f����YF�u���(Av��l��zaC6��mf�n�s�U��g���}�S=
�w�l���*n��ef�n�4��9��f���&Rl�Qv��hb�f��$J##�� �.y6\vS.%����f�.�p�"����|�^�����L��hz��,��T���rzFRC��Y���n�a4�Nfj
�#g�V�tw(��4��Z��5�����F�=2EJ�8IM;��������Ox�����H��f/N��n07[Q��D��KnP�U����3Ty�L�z]�o98����!���F�P�����������hpA��1r��`������x�`>���O�?�O���b�*8�-b���g��(�����?��RQ��D���J�	���[����'v>���p3&�e��v�3�L3��N/��(����3�2��Is��|���s"��i���2�hv�B��`0e/���e�������6�"���6�[uc�
�|�k���Z�[l��fp��=x���]Jm	��n�2�0��:���]�o���������@�R[��.j5�H�3�|�F���H����da�
S�:7��Z�h26�*�&p}��4���;����o��#�m0�R�YS2�c������K�	�u�Ej�Mj.1U��������C��S��`0�^d�p<�g+Xz���aN���a}�Cl�#�c�_�����qn�����Z��n70��6L�9��g!�OHz~���3�~��e+���!��R�d���]8������"�qj_p&.���0{��+*����#�6Kyd����r�X-�����rd�3�]��s�5��OE�>��#�����Y��Y�:�O/�U���P)�
�`���5��9��\"���
���Z��������?).v�pPdE�fJe��|D���~HKi-��p�0��A��*{�5wk�Qp�uE�^���h�"�N�h���q�l/�+�)�tg������M��w�y�pK���M8��;o7���ul��#0.��N#����y�v�T�"�H��~����qX����m��������+����q���Y�N-�z������yna��+k���^������
fh�HH�f��I��iJ���g���Q�8�x_����W��%��Ez~�NT&=�Oi+����g���~������~u	�g9��h�3����������
o;����M
8]�*��w�����NM��G�<^��ml�0����,4�DE�|���D�7_����]�T
�YJw[#���g���!�=��vag�#����N��p��:8c���3�� ���#r�iZ�t.���Y;
�����pm(��)��L���U����^��69�6�;D�\j��=Q�W��f>�5����<b�l�7u��e\���~6���2��j�V������}=�S$xo2P��B�0���,#D3*�j�'�8��/'�������Vj;�Lw$������X�!d����YYB6������!d����!\
.y�	�3�y��T�]�������L>�i��[���2Q�w�!����������
�	!���������
�	!=������O�O�~��2��k�a,!���+����!vp=	��
1��p��	!�y��s�]�Ar~,!.��x���e���c��_(w���|����y��%b���i�3�02!$77��4����O�>{BH'�����[�'���2��o�����k��*�B���gF���,O�]�3ds/��g���� {K!zx0� �B�*���	�B�=��/�?=��q%By���k��m_�,}e,�B����J��-o4=�K��nMyI��
�(��%]��ZB���A��(�����������Y���s��B���ig���$F���%�Y����{�B`����N)��UV�VB^�mH��8�*g��\�5dN�n�iq���f�e��h���������M����OEh*������`�S�����D�OC,KH�t���^��t��LR.e`H�?��U����
W���#��5V{_�������f+���1;��2�e�Q�W?��P8���zF��o��[H���`=.X���S�MmI<<��#��$��S����7�S�F�����
/�_�rIu�L���j-���H�jq������p>����<�z�9������JJ�2����8�"g�h�y��K���b��)!�'���X�y�����#:���������Z�~ev��'�|�&<-���{v-��������_�Q�<l,���#e�^����z���\8"���V��34%<�O0�l��u�
�^���X�>ot-�|Wfo��V��o���3��<
�m�s��^%q�����g�Yp��Y���ZsSE�ns kiu����	}�H�.W��_m�zj��\����<��	�b��
�o�&�T����<J�>��������U��;[1�����K���V{A��Gkb�m<��_R�c����g�m-��D��?��X�C����E�(��JZ��X��M����It1���wZ���������Ou1[��F����/����l	[��4�D%���JW����R�.1K�z�Q!���f3(U1$i7�(���k}��=��M.@�h���
�?��KW������]���d�����i�i��\O�#.�������la^�5K��r�Y��-�����i�	0R�[��,����F���x��q��b���ZwH��W�
��Dq���S^S�7�	�,�[��3*hZ��g}��0��T'3�I��KH����Yx�Ge,Mk.��/d�*�R�1�C���<s �9�5��<����x��tRL��������
��Yx��&#Mi����`[���>�i��3�u�*����L;[i}��0/�}:���,������b�[O��4BNa�H�Zm�$-h�z�g}!�0�DL�t�Q�jH�����<�L�>�[����x��������h�3�H�[�����D�Gi}�JW����q��@���lBq�AkZ����>����T�Ij����Y_�-��\��z�lH��7�nZ�������N5�o�jf�������s )��KiM���������V55�T���fe92������M!�/�f�3]Jcj��x�o3jQc���*�(���,]Q������AS���[���jlR��������D��tE����^�r
k�-��S56���yw�Y_�-��S56���skBZ_�-��356���skVk"������&5;��K�)�!KW�K56���vS8����&5;�nJ<�������D�����o3*��&5;�H<����Rc�����1�H�[�Q�������x��tE�jlR�St/�Ma
Y��d56�����������s 'T{�����g}!�0��jlR���!�/�f�F�Mjv�w!���,]Q56�������"��I�N�����x�+J��&5;��o
k�-�(�����?������*R{��������[�QEjlR�#\���o3�T�Mjv�+o
k���A�MjvR�=�V���56��Y��!�/^�����&5;��|�
]oaFmSK{"+.%���nav��jnyu�.u{�7���Q���
��>�H�<������������@�����5���%��C����g$	���r��#
�����IT� �>���18Y�s=�5���
Za)4������x�c2x?���-8�E�g�*��f_xA`E��~1���R��Y���"�+��@������D\�ZM8����\f!����SX5��s���=d�Q�O�J������s�3�O�H�X��{��5���*���D��o���2�b�����<�ue����,+�]C�	���)���4JM�9$���)�W����5�^.�9��#�"��X����f�����6�^e,���O(M�J�w
kj�S\���=���C_8f�2�8��?~��9�Q&��v�u��y�tIU�&�%���EQ&�X��8?�~G�*?�a�=�(��
���E�8�����C��41��c�� �B�|k��R�2��{�Tq����}M��	R��}�Z�4������Fb�Jk<~��z��6�x<A������k��0[�ebn�:S{������T�f����0eM�Mjv���"�[���P56���
b��-���]
�Q{��_���-�V�������V5;���^�-��P����~��laF�Bi���fg���(U8>���K�4joUS�bR�j���-��R(��[����e#�A�r���>��&6����������&����>��)~6��{���@�:��*�}�I��t��g>�
Snpu(�DR�������*�����a��8(�6���
��J�a-3��"�z�ap��������|{��~:�pq���X�����eG��>6?K=sk���	TRYY�gX�Y��'�Q�c'��������1^+�Z������<��������Ch�U�%EZ�����z����*O�������)�����Gu�	�n��Z83P�M������
�Ij��-��DE���p�iz�������()���L"<�'����o����T��,4�T�������R_�,���(��������{�-m���y������H����N�T�'���e�����p��
���������)�E�IX>�o(b�����8�l�����6M�@t&��c�[(]
!"��pa�-ZGR��~y�U<
w������H�qOQ�:�q�w8���]��P�������D���cu�,��l�
endstream
endobj
146 0 obj
<</Type/XObject/Subtype/Image/Width 369/Height 351/ColorSpace/DeviceGray/Matte[ 0 0 0] /BitsPerComponent 8/Interpolate false/Filter/FlateDecode/Length 5466>>
stream
x������*�O	�@	�@	�`	�@�`	�@	�@	������<�=���d���G�f��1�^�q���1Zb��Hh������`{� (;�ZQ��	����{�W���v�����T������Y������������cG�p/
6�������rOp�]��p)��p�e��������J�J�*z��P����������iPST���c����������Oz��Du��Uo�qLQ��H���z_�y�l��f
pg�O��t����F
��( ���%gP�>��lB��;��������nlr7\H���`4�@}g�fK�����o4T�W��B��c����}W�Ao�X������~C�xF���fh�w��&�Y������.�d����hRE�l���3u���D����L���tT���S�c2����jf]��r�'����}W�%�[o��������H�����5��H_�:E�6M���b���[���4�We+)c����5�z�b�h���������Zrn��lN��DW��������7E��X�0�^M0;�������;B�bWvI��$���w�i=�N���Lr-�_?����o+O�o��������oY�$�����e�k�4�V�'�{�Tp�f�����+/�/��J+��)�3�����]k��T{�f(�a�t�A�O�n���Jyo~EWt"���r��ZekP����=�+J�`�$ZZ[�/�5TZPjmb�K�Tq�C�����5��W(N��2� ��&,g�F�E��[I��2�&��Q��R���+����^��S=��)_W����4^�+���<�-
��"�\y�6@���l;K ���������T{
���
(W2�oQ|W�������P&�^�j��}d���b��;4�����)C���]����	�`Wl��3�!G�
�I���b��UP�d��XB��[�r��8�����-���9������E�4�������{�g���R���������j6@]o���|�S wr�����������% ���q�([8�N~�F��d>��SH����ay�	�-��
^��R>�_[@�w��l���N��
n,���n��Rp2�z�l���Y�)� ��H<����3�.}�0����\H��YU��	Npc��s+3��w@qF�3��s,��9����$��V��B0���
^}T{����Jp�^��	��3vrO�}��L�������6������-�x3��+x�o�'��V"�����W��K�����	�{�:Hp�Kd)���������~L��S��M0�
s���=���Gu�?��H��!L��J�n�����aAjr '�pw��a���i�g�5!��^bk_ ��
�6�7�6�e�3����s�y6�?74�*�n_����h�����N��6���_VtKE��=�z�(.��6�
���������x��������Zo��k�y�F<�7��!�z{+.����J�y��7;4���^o�X%i��-��c�/��1����K�*��@	.�p�0 3^�����z%� �6&���s�/��J��V����Jiv����/1R1�Q�!���^�<j���!�q1�7�)�=R^)`A��5��!��>��,hXPg����S��i�}j���[���
�����������UpEuE�0^�Y����a�^
[b����3pF�Wp�*�����4���������Uq��XRTp�*���z���bJ��^��i����Tp�*���U\;�{Cx����Fp���:�(o�$����Tp���h��&��g\I��	��^!�L_{$?�O���fj �{
5N\��d(�[�c������3.S��\����K{��+�����d�N�)-�O{ ��+WJ��-�������2a�Q�]�����"C=�v,"N�
�RM�M���?h�,�9���LV�l�9sK�t��v�[���K�C#S�2�+b���	<���Bc�{3��%�:��@f�d��*���r�Ik1h�W�'D^�4q�=x��g]������/�����K,x9�9;
4[%!��p�w�Sm�U��,�����������.��3���(
�4�b-��\�i��SJx:�'�����WC[j_��K@/������s*���?�cDB�_��B�������}^@��
Mo���$2+h����Z]����
x�����vFt�
N����{��x�@�Ns��� ��;���������S_�C�=���]S�#d�g�������D(����(z�	~>���@W�$�=�q��|8f�w�������D$���\�#�Cj+�;����`����Mp��c�W���zuD�����D������7�����|*����;x������(��,Q�g�$`��,����zu���U�g6sk��nX�
��A�*��:��Ed���;����AvYD�������:y�}����c����.�^����>�����:��@�T�T�;��'^��{��G^��Q����Sm����9E������	�,�I���������8ah�}��O�h�lAZD�>P���X��>w�;:���0y[(���<Xs�O�tE�>w�����/Z:e����G����y	��)g�G��sU:$��as�h����7���*�-cU����k����N��2K��[�`y��[:�[(�Gv�#88��jl��ni���
O�!�0g����52W�}>����������/�#}��(�����R��5{�*P5-@�r��?�.�6Y��p��C�����ST�5�G���3�(}��N��k=�R���,�� ���=F�^��{�x���4�94����;��he��u���t]P�� �s��4�sW�#x��9�E�ZA��R �AZ%o�=�D����4S����9z���x��*�R�D���=�,��{49�l��z�n�}���t�;������5(G����/���D[���K�+m��G���>���78dMFW�}	�\~�-ds�������C&W�~Y\B�]�0z�����G��o{�A��7�=���Z�������������������X���H�}�ih�hV�[;���;N�9��vCP�vr��-�X�7��j'�
�|�����������b=J���<�<J�=�����R\��=	m-�
���R�u�FF���v��/������V�
�\Fu��v��#�c������z�z|����O�������{|�n?�~����Tl{8H�7C������o"��`�'F�����V
ma=�G�8#�� <)E�,�g{~�������
��t�y��CXKS,)��u��B�!
��r�����*Z��c����@.�|0:�����8��i^v�R�V��I�5`0���G-�i����3��9�bK�il0�GhjM#�|��X_�Q�;�)�D��ro�i���6*���!$;�8���fU�1L�����;K�?��m�����;���U���@������[G?�����&Ed����~2���ZrpdJ����@}k_���:�s����6�-��",?�D����
�������z�oz��*$�\����T��g�-zo��cb{�=���K�����p�=�?s�� g�[��)	��%��������K�C�_�6BL8���Y�'���(a����d�/�,����T��Jd��GL.�^�|�U����q�Hz~��M�G�S^;:]�wJ$E���H)2[I|g�o���#��	Tj��03l��p9�����I|��~Vn,.O�R�Y�af�`8��q��P/O��"���]����1�G�y�Z]�8��?{�j��KW��P`��_ M^�f��"���W��P$yw|�����@���3B.��1a�c<���D��8�t�N�����M����������
	 �!i��AI ��l%�my�g*$��v��O����B���T�|���(@������K���bKfC�(���lyl*d�X|K�!R!.��]W��D�)����P���)�u5�.�B�$����
 �j���vt�@���C�Q
$��I�	q���~�p�F��@J�%3f�~J�X�PG���u��Ig+yt	g��*�RX�VW�Hz_oju���u��^��X1A�-
Q
3��$���KO�:��~�R=?��@E��j<j�����A�JL��C��`(���=&���	C~����yFX����Y��J����Af�?)����_�������AV��Z�Y�DV��(�M��!9	��P�C2x]m3��_�AZW�2���G�'�Z���0J�#�ju@6��r�����
������^WS�Dp���0�"��j�#�a��1�jG����ej�#�a��2�jG�3�2
�2�@p����J��j
�T��V&��?<��_p��
�2A�+���|��	���RCP)2�2A8�j3�d�a��:��W�o�2��Q*�P+T�aV o����)�w�Z`
�*%�J��� 
j�����G��!7����.a��v/:�#�Rm���^��A��Ep2�?��Z�T<�aC���*�Dq�j�;���Y�W�ji����-����j]�1PgU�y����D`�.��q�V	��!��}��4���	N���+����|[��@�(��wH����<�$Z�0����ln�8��`�����6n��(�ZMd��:[��y�K�AT��P �,ZW���T8��}��k���#��v �D���!�y�*�[DGL4XZOv	;5RP"�=!�<W��nS�Q�+x��jA�HC�$wh��~F)��6���M��=�7��o��f��D�T`�U%B�p��S������L��:V$2A}g
�8�6�eg
��8�x�"e�)P�������J�T��o��4�7\����ww���;�?�W�����x{K���j�	_p������)��j�	����k=���~�;�{��o�o�pR$gh�sE��KX����i���+�������s����>�)�YM�2��V�� |����t�]�b����^/�g5U�����w�U]<U�6���"g7��9���l�_����f���k_�����g=� ��<���o�T\�piS�q���I�7�����]�vm9�&1i���q�R��0����w���������-��5�X�D�K,���X7�c�<���t�"�M��z��
GG����������/��u,Z��p�m�|��v��R�e��������}NC��������X�}��Nwm�o#�L`(�d@��?G&���
C��U\=�#Hw���
����c�S�*�����_}�|]��m�J�C4�|��`������%gT�J\�J������aw�"�b5y.
endstream
endobj
147 0 obj
<</Type/Font/Subtype/TrueType/Name/F7/BaseFont/Arial-BoldMT/Encoding/WinAnsiEncoding/FontDescriptor 148 0 R/FirstChar 32/LastChar 114/Widths 2861 0 R>>
endobj
148 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
149 0 obj
<</Type/Page/Parent 2 0 R/Resources<</ExtGState<</GS5 5 0 R>>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/MediaBox[ 0 0 720 405] /Contents 150 0 R/Group<</Type/Group/S/Transparency/CS/DeviceRGB>>/Tabs/S>>
endobj
150 0 obj
<</Filter/FlateDecode/Length 5463>>
stream
x��\��$;n�7��P�\�W���
�+//�6
��|=�+"H��tV�u��dHL�DQ$EJ�����o����x����������-<�3�#G~�%�������������?������~�>�s8b���������4�����#����g�c����EQ@C)�gL�X��������z��x���9��3e4�y������s�:�g��u88�3%�.<[��9�s|f>O��.����������g�Ds<@G��GR���gU="Q���3V�gWAG���}��,�(�;s����l���C�>k>Q2Z���6�4����8�a�N�:":n�BT8�����u�`�2����V�(��'s|�!���������[�{��?�8k�[�����R����X(6G$Sj<Q���
�d�v2�u�*�5��	��8��pjL@�bo�4�\�5��J����O����}����&��O���)>��b'�����N���(��Q�**g�e���u���7���V�K�b��R_�����^���h'�g��&��6���U�����VY��lu"(�)JI���si��Pv�	�g�NJ�?�����Z���F�+�;���Y�%�saQ�u�$#�Z�@��h�!�CP$B$���gu���1������\>���L������Y���%�$X^P1�;���'�+�� "�42BU�kd��6k.Vs�Su6G�-��U������rrv��@����XmA+�������+T���g��R�sp��"N�����J���H|��,2�z�`Z|"���z���h;�K8k����_�kv>�����������&Ch�����$o�0OF
t�������;��0�[�-^M�J�w���Q\���*�^(A���#�H� ��q<%Z�A�"��Tt��^n�?
fT3����d�����^g��%�(�
�,,d�1vdyH�[>���ax8`le�Zw�
��e��z�5��P�?��~����Z��
�xA`�oe��uW�N3�IO��G�4

l��U�3����a���,4��Os��V]���k�:�Da�I[����{�^�V����Cg�qD
��s���'G��g
<����R��hRV��DY��k� ,��S
�\����zmsE_���N���t#!2��
����I������$��DI�w���Up�Y��+��$�w�3���0_R�iy��������3<$'�4
�����s��4A���'+W�0@���5�~L����Pj��;Q!��(�0|N���2�
�#}[fT�,�c���o��PQB$�2L�>t��������Vm��<���'8����6��JH�D0�X���g�&l��C��'w�����d��%^p�^'1\������z������9�~~|��p'w��E���V��(kF��9��7<�=�y�Q��u��'s&�z�b7�h��_<�W��|�hf��x����Q�'2_x�~ �����F9�>Z|?9��p8"q�����J�i���
8������_��#��v��~h[F7��6Pw�C�T��;w�E�����
���W��B$>��������g7����$�����(W&pK��6��V@�����wV�����L(JA�Oc����$RA�Q{
�H����h�s�v���5����k�O��D�R�p����o�,�|4 �����eH�P�������guY�M���yU���!�(P�CZ��!Db����Ij����p��Cb���}���a"�R���h���$��3���N������ari�b8��%3��]������Rf�	%5����jbZ��(��R�\�S�o��?.��G����R/������	|�n�>T�U�a�8��Y���L-���I�>���)��,7��L=��s6��J�����&�PT�D�2���Ur9d�!&n�dFT�y�zm���w�1������B����a�7h'Np���N��,�h����!���&���qWY�^���w��!�j������s�m�����L}��7��|���d����kRp?#t)�q��p3��"�cQ�Y>���bO�de�e�^�c�
�A���hqN	��A������a4���)P�H!�9a���G�'����-�6g�j�-"��<���z��SVd%T�������+��(�9R�y�g;��#�x���.�#i���&(���x�]�M��v�t�bM(���A,~vX�j���;�h{m��k�jX�W�����O
�x�W�LyUO4�z���g����nJ��:��
8 {���2��UczO&�<�����b�(���C�|�)��v�F#��MG��u�S�{�	��Y4����+�����8n-N_c��������^��W�\�����]�62���.���+�7�W��N������|��P��j8������47+`QZ[eU=]����w��y7��\<��Z��_�R���q�4���-%���Jn
p������m���&V��������yEsjqY-fz._���j��!.y��G;�[>(258�����$����(�R�p�T����f������X������ ��*a.���N������}�%�>:�2��C�m-��i$>mbwKa�����Y��M�!X�
8v�y,�:V�\��6�����SS�wM�[�L�;�
�L��ns���9���.��+�jF���y/���M�Y5���yT��R���;�o�@=��
R8�QH����Q�N�
]n����
*u��2x\�����5�7���,����9�_��V<xF��� �Yg0��&a0>t-���6��v��[�)�f�M���V\>��Q������}l~����;�?w�����Ts����y�s��S�����}l~.:���=��Ue��\C������v?�#Wkd]��
�"���0��/~�m�mq��S�X��|�s_HK�����u�t�H���R5����������Xo_�\�N?w����#|�sG���w?��9�qS�������81v?�z�Ll����������b����[&���&q	�N�Lq�C$��\��"�������m�o��@�����A$���Y�	�C����~$M3�z\?��`�2�7w���tM+�>$XU�Y+[�3������`A���[�<���]=RT��������� �����s�������c|��D��	�q��3C�G@����z�H\����>#w?������:�	�|$M��@��#i�6��d��-Q�a�a���a~vb�����0�sO�j����]>�f����
$3���.s{���9X����`�\t)���r�@i%�*qZ�h���\�h�)�,EY��X��r��6�{:g�� C����z�Y��<b:(�|����^�H%Q,#
�����������u�q���{�,�1'���z�������E����^�BH��G��ai~���F�`�"qYf���F�`�������N������/8��2K��=
�\�by���u;c�j�q{��<���P����?���d���}=��\>�����Cm>����/R���H�P��!�_q{�h_K��_�����y/�8��V8���;�q���WF;1��;b�����*��������d.��^���V�U��u�����q���R�:*�!?�����G�x7���q����;�3�Tes&�NH�w`��+���N+�Ki8"qb���g�7����^@�z|���Kc:�������UO��+
������,J�����!�BWO��H
	�F���S������o��2�D���<B|�d!m�L�3���o�V7���6���������#��{�����i�U�H����_����H&�y�d���Hf����7����G26�kK�w�H&�}�d���d�`S����Ww��M����#��]m��O��/6�.���E2��3�Y����l�����l������g$s�i3��7^�-��}r6���<p����|�?���^��H��O`��@���H������n�z��M���z��?b0?|��5M��^�9;brbV'Ey����^2J^`C�A$����Cq������� �.W����z�l��8>�HO��Y�������H�T?�P�A
V�:�Cg��)4aA�,���|��[5a����������7p�<D��XLvFvKJm9@� �x}g�I`P
������H��Xy���4���K�=n��"L��paz1��g�^J/�����
�8��i`-��G�Q���{�,.�;�P��!����vq�9�U�t�������V�x�#�[`�������^�$!W3�S�Ym��
�ikO���p#^�B�%�*/�L>T%� ��T�?j��H<�Xy>������9-���p^����{u�~�5,����
2.DM����X������3 ���f�
,���������LE��\���2��sLE�p! �N(�!5�r^J����9��C����E�K}��	��x[���F���e?t�W*Up�^'q�3����\���P4�Z�������g�;�^]�R�
����;tI�u��pk���e����8���C1"��W�>������!���o�����vY���
h�|�vb�~�w�������,o���_�3x}��N�������2���w�$��3���s��V�BW����"��������e�[��Sk���{�N�X���iT�^_)qKu�;c����N
�����FI_�
�P�L����]^���:;a���5�7�����@`v�$��y�C/����p��x��������"_}$G/�x�X�7h##��m��w(������!���U}�.��Ta'������!bD7�R�i����tD�8[���1W���x��}���.(�W�M2>��O���M!��D���� 1�q��X�*�,���S!���'F7������F�:�	�&�@�CF��Prr��a�!����$��������>�>��2r��@���E����_�/K������@���[�c�
����7�zG�:+��	N��������3q���������V@�4��9��c��8U:S��M����"�J���(_=�j���q�vb�z�7[����
�b�W���������
4����t�b��	��M^��O���A���P��l��N�::'�}[��
��9�w9{G��42�/���P��,(��	yA�=J2g���iu
�S"���������C(C�$1
^m�q(����@{J~���I�����,���h�b����0z�+����2��UP0_�����K�;��b�������"���$n��c�m���9^����[�x��y����gK��1s'J�Z�~%��[0_4 ��\�L
bL�2�H)$�����U(�X��
��*
endstream
endobj
151 0 obj
<</Title(Fujitsu Standard Tool) /Author() /CreationDate(D:20200616150208+09'00') /ModDate(D:20200616150208+09'00') /Producer(��Microsoft� PowerPoint� for Office 365) /Creator(��Microsoft� PowerPoint� for Office 365) >>
endobj
161 0 obj
<</Type/ObjStm/N 500/First 4852/Filter/FlateDecode/Length 8602>>
stream
x��]����u�����<�c�<����T����.k�j����T6��vsf�����eW�����	��<�!�	�.���n�pp�wpNj
���J���D���ZHC�&JJ���N4}O�6�O+���aS�����i���g��uF�J��O)��Q9q��p�)��d�G�y��M����=����I����+�M���T=D��j���3����L������_�T@[E&��(�B����(�V�za ��T�(PuK}��6#���F�B�B�er4h�JH<�J5�1$KB�$H��A�S
��J9M�2�K��deJ86C�p2���^��}C8�F�r��S'����4�������oT���	��-��	�2�(����-�JE�X<��Vf�	��v�*����0	�N�\��Q�� �2a�h�@�����!�Dh�ND�SF��a-LF}���)7T]�k��o�?,)��nH���(��*����4�L e�OZXC:,	�ZY�g$I�ds���
�AI���,�v$�J�bR,��S��$c ���nJ��LK<��)$x2I��,��$��,�J�f���i�����'��b�9�$�<%�H����A�	}�d ����dr7��_�4*�En�C#�
p�����$��A�����	9�4�y��1d��/2�"E���
�R�(&���&�
Q�����)�M��B�$��$E+��B�W�d�d.�
�C��4IH.��3MRL8V�@5Y��L���:�@I���k
b����di�
��@�x!�0a �$��<G�%���D���v��6)d�@���+�LJ�&0�45��<fH��&��P�6��@���4W(�����DM��eC}(Qd���B��!���!�
��
�"BJI�Q�z@z�6h���F�@	�A�a�)���#�LI`((�(
�m!	��R��P����@�J��(��2$E��b%~E�L�W���!09�J�U��p:��h���W+��T��ii��� ��d0�Z����R���/:��HES�,�
�4jE�D��fJ���>��h�J�Ig���
1(q/J�d)�r��bf2��,����
���mQ��kM�S�\zZ��X�A��1�F�(�
�|
�tw�FWI�EmX�Y��e388@��u*�s�P��
hl��
��p��v�N���@)4=(A��;��y�G�����{�efr�/c!5�������s�� �i����v^���J��t�E�K�;xu���[�d5�2��{���L#��
�FC�sk��
�Cy<<�;�?��
�J|#<=��1i�SK<�nh�j,
�/Hu��%�B
KV�a�q;��p��P"8��W���'4?��  �j�>F�c&������G%���QA�vT����h~4�:���	%9�5���@_4Bp�F BT��w Z�.����%�J4�����G6H��E
V�9 g	J�.#m��l45)�	4��=����J^iw���'��]h���]�������.�
��1),��X&��"|%������%=��}�O�A
\�B��fQB��9J��F8@DFc��Xh	�$�8� GX�A�d��@�.xB��3	d�#�I�&5�D��[s`o1��i!��%���)	��ZB5�u�!��]
�Fd��a�a�Ip!��X�b0�a�A`�`����ya�:����J4V��)�qaJj ���a�L�~E�E�@�1S�"�N`Rr[$w�X0�A�da�>�Dc0������$�'E3h\��'��6��e���r1�{���qa*D�������J���e�e�x(�3���bK*i�Q�7��ki 0���1�(�:�)����j�*A�`��uTv��p���3�H8���S	����@0�����
��:����W ��W �Q�h�7�e�5����.�A���g`e��4������b������iX���9�k,�u�">���&>KP2(����x�����I,�a����-G	�����d�%��13�D�xh��1J��k�)R?�`5���A��J���$����M��.�K�+�[�~D�X�W@����E��8"Sr>+���ND�zT����2����/K,�\��_"1���W,(������� ��b�J��Q=��9�����P()D�d�X�)��J��r��#��3�Y�l
����`�,U��@��Q�,�(r�(���-���D��or��5A���X�bUoak�=�
��w.�A|�bY
���zd����?��K�Vd��{(��Y��5�C��!xh*Y!�Lj BD�.'�k���V��Jjd�[��Ft	�oYp=VQ���q+dl�,��?A�,��Xe�N����~E�B�b�n����4.�%�`���_5J�����}1��h���N_��oI,�/:���r�i�Y0lI��+4�y5�C�`z��-�)�LH:6�V�.�s,����-�a��d�NT�������g�Y��ol�"g�|�Yh�"��,��_ �2Z�
��J�iD�4�,@��x�2|�8{��#�C�@%���p���m%�������ru��������w��7�����l�+�o�_����7��uu�������]$�!.�\��_����H����jY��V�������\Ws1_l>���\VM#�i�|����P����Q�8��9����Ono��T���9�h���������������}�&�sD�E3N=�j�����?���v���v�/��m5ozc&�����#RE�m)^����rj�|�q�Y���[vJ�������z[~(�w��f������P6�C�4-lT���V��h�q��f�a�����������GX����E��&�,V�u=���$=�#3�B��_��AXGP:b*��&rt�������d�g=.�S���V����-���W����rz����J)g��Y�y�Z��/_c�"�$nODz��bV��.�����G.G����
�w����A������:��fVo�7��V�� J����-�U��d��_�,<��q	��!U�����7z��a2��z�8�l���/@no*��'
 �~�����Z��z�^m��v���nx(�(�&w��K�O5y�x�c\r����_�3����,3�xZO�y=�Y�������3r:L�H�N�e�g1����O�HG?ZJ�&���o�����E�o��V���y�)�0�#o>&���5��+2�A��i@hTk���C}��?�x{�qY_m?�z�k�L���o�y��s���(�������/����(�@��eR�L�����,������H���b;���<�����Z�=�=��V2�C��7��YlDo�0u^�>��Hi�NR�g��?;Zq��O��3�"rTG��Ho����j�W����y���>��/z+��0�M%����w����VL�J���q=<$]�xJ�ND"7x"�����6�H|2�R�~��s�G�����d��z1�6���l��)vh*���?�hV<�NW4e�u���N���l@{�"��~@8��B����bK�qG&Q����fq����G-��������O��M�_ !�xg�z�$����Mjq<,�3�o�C%��m��C%�8��UU�����'z�Q������2��?��Q}8.��cA-3o-[�k
�;�s?x\�d��1/z�8��1!���6RmuNM����Sa����\?�Uy"�v]���~�y���I��!G�|�>�.�BF�Md7y�p�~���.^���`�h%���W��A��J]n�n�6_]\�����Gu�����0��z��6_����ju�.W���t�|�l�^��3O�{JX�>N����3[��.p�KvSyG�:�V���>������5�	C���5��5S�DT�KDU�d����`E;�4!�T�'�y���HI��U=�����g���g���lyV�}u&��3yf��3���������������3{�6-����_V�He��:�?�<���K�sJ}��>K�����.��G�:@y�����>+��G��M��}��B��9�� B~d�����go��������z]u��I_,�]��5z~�Om��4����q�/�)�e�9��9/�8��C�l��C�������-�V��v{���H~Z�5!�x��A=�
��~<d��Mi��
��-�q{��=�X����������,�S������?}u��=��*��>��z84�[�=��J%�i����ldX�ws���a����)�bYm6�z]��0�0���3��U����T�v���r��Eo�F<����>�U�7���+�	��O�#���[p�W�(,x���~;q�P�#����=��\�������fl�Y��L�9�s�_���5�Jcs>o����\��d�k���>��`Hu��GU#�.���i|X���;��{lM���+�������n#~~�H�w���]�IO��
%���j�v��W������R��>�+�@�����:!�H��b��Y��bK��D���\(�[��b5�?�[D��v�}��z[�n���\��m�Sh}�����c��c7G��T�,�c�JLE�nR���������c������x})^�����wj����db��B$�f/�6��
� �6mSR���y�'������>�lB�;��'�:��*��*���nN��jmu[���q�'my����v�������{svzm����b����r+f����T������T�yM<-n��Xl�mM��L�{����gugs����C��=<�a=���d�������g=&�P�����������9n�`M���kWm����8lg4c�8c�4��fZ�f��`�G"yx�u��#��D�������z�������0�lV-+�f�%������X�g�O�c���h�����.�{i������_���o�{r����8��8��8���L�{�I��M�C��p�I�DC�G�=���[nw���r���T��e��9��pj�����8�vU�o��)R%��d<�����s����&D/���J{�2�����a����}�Cu/~.���\<�g;�
<oc@�F��.�n�{�������m���zx-���#>�Z/���_~��D���~��c
�lQ����*N�*�����-=T
�����Y�j���W�Z���w��s.����D���
��mm�{��q�vT���S�\�7��@G�k)�S��x?Lu��U�b�����L�����^�����������A4^��pA4��z�\�Z��m�<�
Z���'�laH2�Gj<��O�t�����xOU����,���q�sj����{�����	k$>I���~���S�������Z�wj��,��S���q���U����o����1�d7���;*N�*�=��c�N�9w�C/�85���7���0M4$�L���K4��^}�V��"���L<^�x��K4��'g��>������U��U��U/���U�M3D|�Ju�IS���
��O��l���[z���P@'�a���f[��K�m�i=�#�>�o^M������d�����0�Y����d��[U&���zo��Te'�<���'"���&���m��8�E�����%��s������6����P��K����7�6������w��I��K��Q��X���$;�:[�������d�_*���E4�\m��u9[V��'����k.���������wC�A�����3��3���A=�����A��^=ul�#���M3��o[���Y���h�7�6������WG��&o\����s��hnOsnO��AZ]��������P��.�\-H�n{��_K�CyW����j�\H�<���oD5<����
��/y|cS@�@���@��g��(��o�M��<�7����d�����>�q���
�������F��E_��X��Eq�R�ET��K�t3fa*`a���#��<\
����*���>���S��m��M��4����^�7[����qJq�o������j�fj�fj �����i�Q����A�1��\����h���
��8��w[���nvS��+�#����bV>��Ny8K�|�Ss�P��$�,���<� ��0g4�������Z��DCF��{i�;tu����N1���v�6�AJw���x���v���Km�������������m���t7�6|�=��c���._���:�AK��Z
k���	+��?��]^O�����=���&os��l��}��,-�������9f�R�
������|eTw7���T�Dv�yd��Q��H�pviK����r}p:x20�$���9
�]�Z���z�v�Z�������z����X�1�p2T����t7�t;�d�_7�R/;�����r������w��~s��s���������W������u�O���H���{��0i��xx%_}r
R�k�4�}�����L��F�o>�k	�I�_�v_|v�tA2@�I~�*����9��8_�[]U�O�P�l�C������3R����
>h^���h(�$����on�}G�>�3@���L��W��~��z���x�T:������#U�q[%��W4�1x�i�����{��{�/��$	����s@��������e�A�P\���U�����!�N�0a��|�j��n]�s�N�����ys�����GwXST<�yq�_�(37|;�pV��[5M��Q3���r����.����J<��wnO����;�R�����+��J��[=Pl8�d������jR?e���h3�w���o�f��m�0��C�����U�����B�����[G��G���������e}}O���}S{�p}��~2��f����o�f���4Z��y�;`:��r�_�C53��TW�e+)Q�����E��X��%�����>�T��{�j����5���O?l�M�Y������.�2��c4��l2NU������G�y
��
��
���d��[_F��s����G�[b��?E��| �Yo�d�����\�����>I�+�6�kC�vT�
D���9{���T�J���N2W����e2�����!L���GU��M7|�c����q<��D�/z;u�a���w��6�&c�T�j�*��Gu������[%��4'�yj��h����������H�F������N�9�� ��p����uSo+���qyr~�t�sG�2"/����A��ww�|G��
U����8l������������f�q���z�'�c�������!/l�=��_.�5R���1�74�74�746J=�pO�	�����Pl�x/����g��������T����/~���{O����q������^�~��z�a]����O���{,Px���5x���-Z�o�5Y@�F�X���sQ���������������N��+�<����N�d�����#d��g��n����a������r�i>�i>��`*Y��f�7�!�h���U��[�n�/�k/�z�9��Z�E���e��h�<�b�����/�<0�0�~xc�����[�i���0x�k�'�<t
�l����&���{`�q���_G8����v��5������fvX+����{��(��P�#�6$jU��)Kg�z��.����p7�v�����N�yt�trM���N��Y���|*�mU>������0s"V�_�O��X�?.���f����g\
g\
g\m��g7��iC��������/�NFz����S�X�8����U���2o�����z�[�%-������C����[d��KmR�N��$07S��0k�C���h���$[�Z�y���Z{*����������b{*&�T�g���E�a����T�,h�"��u���Y]cA[n�Sa������������rt?�r���I�y�$+���'��j��'�O�'G;�U���j���!��[s�e��u)6�]�����jS��A��5�������*�i|9�e9�e��";1201I���M�g~��[�k�0���_�>P0(�W���V��Z���!�xf=X�v"�U�����!t�gN--'3���Q�4lO��S+v^�`�}�����*��*F��_����/�����S�|_�Q��8T��go���Z:6������;|���f��?4}:�EB��~K�Q�ow��N��}�=�+����
�a��X\���R���s�VlQG+��r�U�z�X����P���9Qy�����x=�pqt��A�*6a=4=41zhN�C~��5~=��Q��>�w{��j�G����ByBw<�k��=�?46f�"4��a��`�/��	�����!x�)�'��0=B�C1g���[B�y����B{�I8+����pq��<���=���/4<Y ���?4�i������!|��'�!g�wr:��a�����_ <�=(D�%�	��|Y�5�����e8_T�����>?q�;�L��g?>�=A|����<������8��x0���y7����`������
endstream
endobj
183 0 obj
<</O/List/ListNumbering/None>>
endobj
190 0 obj
<</O/List/ListNumbering/None>>
endobj
209 0 obj
<</O/List/ListNumbering/None>>
endobj
227 0 obj
<</O/List/ListNumbering/None>>
endobj
315 0 obj
<</O/List/ListNumbering/None>>
endobj
343 0 obj
<</O/List/ListNumbering/None>>
endobj
370 0 obj
<</O/List/ListNumbering/None>>
endobj
418 0 obj
<</O/List/ListNumbering/None>>
endobj
430 0 obj
<</O/List/ListNumbering/None>>
endobj
442 0 obj
<</O/List/ListNumbering/None>>
endobj
455 0 obj
<</O/List/ListNumbering/None>>
endobj
472 0 obj
<</O/List/ListNumbering/None>>
endobj
480 0 obj
<</O/List/ListNumbering/None>>
endobj
494 0 obj
<</O/List/ListNumbering/None>>
endobj
507 0 obj
<</O/List/ListNumbering/None>>
endobj
509 0 obj
<</O/List/ListNumbering/None>>
endobj
539 0 obj
<</O/List/ListNumbering/None>>
endobj
549 0 obj
<</O/List/ListNumbering/None>>
endobj
563 0 obj
<</O/List/ListNumbering/None>>
endobj
604 0 obj
<</O/List/ListNumbering/None>>
endobj
689 0 obj
<</Type/ObjStm/N 500/First 5044/Filter/FlateDecode/Length 8974>>
stream
x��}a��8��wG�����6B# 	���Hs�����9�#,��)u�TW������j��;��E�Y�&��H����L����Bh[���"��W%d��ZUj\�(~_��h[���g+jU�����*��P���R�
��VV��k�N#d�MQ�AM
ZH�x+~R�4��eU�`Q@�FB��F���lP@?�
�R�L���������JHS�����`��Z~�U�5�^%��`Te������QZ(]��
7�O�
�<��L���PV���)�����o��R�-M���6�eY�P��jXK����UIQjV�J2�A��![*r��O��
�*��iP`���r����f--���p�F���^cZ4Si�!����7��k��=�S�T���+Q���D��#j����V��5
�� �%��h)�
���su�)�^c�
>�R�h�����Lj����i4a(EMX6�9U������`��`�i����4h�yh�Zh
m�4L'f�� �5Y�A������r�t�K�g�
F�
�j���������(��(�Y��Qt$�NF(�^�o�������@<� �K��W��u�����&��,f��E��2/���p��@�$��`$FZ�S�F����h�)
o��
Si���A�@�L
����%o��HPE<6P4c M#1�T1ZC-0�JK-0S+A��f��b0gV�%Zg)�Zi+�0���e�u�{����T���!���b���u
�Y�f��-��YJ��)0+,A8`HJ�_���R�,2PQPIMI��*R�5�O(�-�@��U�G5�Q	:h��Q9�+YBh�u-Kd�(����J)y���S�_�D���2�%�tMaR�O������a
PV��C;�.t��1��H[�ePo� jFt+�c�tR)�y�
'M������P�,U�i�|��B2
�Q�`J�l��C�0�cC</I�Edw��f	�JB��%P�%�9�(8G�mX��8�@>[�'�������HY)
p@V%{J(��PYU��)�*m_E(2�9@e� e��-����A�Q��Mb��Mz

R�h�V�%��e]�9�����zdy_���4o(H�
��������9���|�D�k��NR�(����������RUP	�0��O�dZg25����jZ*�X�xB�E�=P�E����z���dO!(��L�:���*J-���(�����oY�����&�L�r0G���\ZjD���%�R��`�f8��:h8��Zf8��Z�%�hZ��0"�8N��PR�A�R���-JC�W�P����%�1=���c1_(�
0��^b�����-�_8o�V�P���RC-]K����3m���zi	���J��3
J'd%H���A�0~��**bi�n����!d��q(�D����
���u)�@T���\W1R���!�jzK�.K�����&�F���&C(C�P%�x�oJ�sF�D�����a�oJ'k�F�\���p#��.0�|Fk�0RAT����)��D�(
V�`(�=����K��z/��S����(�,��
9�Fs�T�7!(��UCc�0G}�)s���+��
E�w�=@�����6����SX!4P�����"�X)
cA�������HH+��V�uv���H����;�P��u5��E��e5g
��r��"�P��B���r����*�
h�.�o5�}���g�T9E4\���(�k�Wl�>-0��L}o�KEE��.�0���^���kR�t��fIO�1
��m�NM
��M6���Mh�B�h�"-V�Y��F����"���p���+�OT���^qeP:NB�|u��^��c�P[O��C=n���4�X81�$�l/�',�s4���Y�������
x�>���aj6D��R��q�n�u�n 1�d�ha'�����Qa���>�<�&���bCP�uF�����������a����
�����@2G���U��u�:{T(�u�B�PL�T,\���p��|'�.`�
�TBT���5��R��kMu����b����X����:

_���*l?6R�N� �c��&�S�
�R�mC��f�Gc���D��9x(r��"FA{�")p��@���E�IT:��s�2p������/��$]k�E�\��P,����me��jH����w8�4�K�\��")8��$\QG�_���J���=Cs�^��Y���X�5�"�G��mY�������m������5)ZiB0hQ��(R�%���xb(*�'\1��9�h
�H�5����`�&PE�������`����Pt>eM�rv�����q��)�����D�uR�X9)���v��c��fS �4�ri�$���S
K���.����I��"}OI���}KI���M��t�4�n6
)����f��4�=���DcV���a�i����:	d(�%0(J���������������2%���n@w���J����-@j�:�����h��(�2N!�(J'F��K8Y��p���*mBB8r�C,1�@�@��M@��2�")�U\�S��ki��@7E�������c�A�Q��|P6L��y���c�x�~a-F�����M�Bbl��\� �T��x����
����_������{���������au�q��������?������[�����������ryU5Y������v{Q�����n~�~?>�����)���=v��n��V��'YEH��������gA�u�1l����iBU������~�����z���������� ^��������b��	��k;���~�����<�i����>��z�z�����EOTO+�1)_��#��U�����_���)&�@\��rP����Uu��N�{V�i���:�9YU�5%���bdU���_�t����f�r�����G������N4�:��NB'A�J�}�#m�*���v����������MkQ��kW^z�~@0v�F���R��N��)u�mk���kY�k�����������k���M�����=�1��_�g������[��f5����C�KB�W���{��c��X�1Vz��c{��9=������Z�e�}�O�x�ys��������W��E{�;����}���4�z2��d�����'UEH���)?�^����^*��.]��Q�~(��2s�����o���+)������������q'�~���������������JZ���n�p�Ws%�/������p��(R�>�x��
x�����nW���4d��v7�&���������xh����l����i�e�nU<Y�dk�I��%�9���kozV���`�n��&����k�O���V{~�@6w���C�r����3�u�nB���n�pn�e�J;+��,�Br�G���E?�����"����.�����w����W��q(#�� ����I�F2����\U�O����;��b�t��:I��W�	y~��/?��\�:A4�f�	!�e�D�}��-��2b���i�\'lg�@��F���
�@u2.����H������[�za$�V��H����&�@|�"vJ'��T��_��g�r����o��h���NL����N���q���+�\�Y���]'?��T�����X'����$s$8�D���+9b�r�FlW�\5
��9����/�g.�M:P�$l�����krP41s�����6I0��>�2��U��@Zc��4	�vE��&a������&��t�Xx"�j�M���Oby�a&���A�1�6�&C��'��:�i|���3����������<�2i6��	�x�{��6��L0�}?�r�?����4g����G�2���Q�Mh�����J[l�-�q]�~�LV�Y�\�p
��iH3E�?4E�.=�"�N����4>�����NgT����"�,W�c-�k���^M�f�Hd#���������������l��g��}����4��t6���5z�{���9���w|?����l�	���K�r�.��c���OL{�F%�.&��x�j�u��������}��Z���#z�XO��Qu��	�t�z����`U�yx�>��]F�XF.����q�$s�F�����%qN����QUG���]��
t:��d���@�#jS&WE��&��YS����nu�����{S�z�����o�~��8$�$�+zZ=��������?�~�i�[�n�n�6@1�����@)b;�)=n���U,�����:i���P��e�I������T")K��+���s����]@��+|S�)��Di~3��=rq!a�=![�N�����k\i����i|���9D��������1`<=������2�����^��&&�"���������bT��=,�y��~��S�������`���E�W_������I$�L����u�{�jww��������v!�������y�j7���f}��������f�{�Iji�����?�J����P���x5^@�>��1�����4�������'c�I��w��p�~�U{��^�����x��p�p?�T5n|v/��������L�2�{����S:���WR�� d�x��v���������_��������R� q�n��������?7~�;!g9��4f��s��9��Gs�������]gK)����v7������������xxY��}wx.n�7���@!��?���z;��6�C3�P���t��L=���x�|
��&���������6����E�v6��������������������E�8�������g3-#@o�u�{�{��x�I!�����.�����}6��������o��W�
GV��
��A|Q�1?|y����c9o�\�d���y��+���l��^/�g��5���ApD4;w��/b=�I����n�3"p��8�����������8g��OpJ�O��b�.�����o���&�=;�v&���M��UX���8#|�;G���6�����(g��_�eM]���u��m�ko���L�y�������*�55[3�h��h�����3���G>�?��9�9�cm�_�}YWg�c*��Im���w����������6#����2����-fc����RA�����?�cy��x�u2����A��~�����@w������t��`
?v�J+�Gw����[�vG�L��8n�>�����-f����KV&��z.�-e��*�f����{ �P��0�H#���~�����l	\���q����x������H��y���<z�.�;�y,&��X���g�"�qA,o��d��s��yh��L�/H�y9���&��G�b�)�D/�9���P� �pAz�����G�����t���!	?�����lo���������bB�
�����7�f���4A�LTMx�g�9\x_���a%�#��G�����JLl����s&�_�kG�-������������
����^s��Yl?���U�nh�s�8��T2�{�����vl�����U&��Z��o6)EN��^�� �������3X:'F��]�Yt�V	i��a�<��h�x��lR������/J=�!<}��5b`���Y���UB�f�������e���
&=�}�p�h���� ^��1i������C���Pq��w;��=����zsng�����\J&��\���g���9&��6g��-l�]�.����1�*c��=O��	��^��K)������R\�b)�}����k����N�$��y�6���`�#��S����t�Y[L���{�������(�uw��7�A���s��m��;�������:n^���x^�?�^6������\I����o1y!��!�]�M������w����1���o�5p�[qp�����i^X���$�u��MBX���]>�a1)��p�gQX���L[|8v=w� �_o;����?�p���;R���/���������}��|�����~>ON_�+yfjz�"�+������������SLNif��a����2��a��MBP��I �Y �[�M
�j��/���O#/|)�v�9�@��6��e���u{g-<v��m�D:���J1f^���u�q�|-kRS���nJh�n<d�zd��J�gWtJ��a�l1�W��f���M<�������Y|�e�tOo���A��#=l������3�!�A];o�������Z����$�	����p��aZ�BG���:���6
���'�1W	Q�]��q�����9:��a�p1��m{t�0��-�����FR��k�([L+��"i�&��s7��
�@�g����kbS�^��TxQ��Z?�Z�<���U�::_�ilv/���M�6?������"��a$����&�X6��O�Ew���gZo��u��n����>�������|�Ot����7L��n|�����c���!��� 	����������h8+t9q�J�)�0%��E�I(�?#�����:�/���<��n�K	��[�����7��Yu����<��^d����B��A,��n���0�	���Au-)w$\|i7������������>�Mj�i�*)R�|����%���0j�������b:�A��w���`l
ec-����%L���b�I����L���a���==�)c �M����!s��>���c��s9<��,~1�]�=�t/����W�3O��)U��D�S�#�k��g����x��1�nO���,d?
]��!�U��S�O��*%�j�"��Z1��IN���0{���+$z+~b0��{����u�������B�|�<���������LUv������QT+������2�J�svv�r��rZ��7.������������E��/F����3D�"^�D����:%�������N���;XAwz��%����b����v���b�u�c�aE��@�T�NA�<SSf�~zL^�c6-�@����,��?�h:#C��
�x=��C�U�R��a{�����:%w�N��j�������B�?S6��H���s�+��G�~��(H���z�[Lh��=��>��E6���b�~;�I�(@��*������G>J��j���<0	2
�-z��n��gL��Q$��&SO_�����q���{�/��*o��N�Wh�:5���g�0!p{���'���0�R��8�b:�q��M|xV_�a.���ZD�	�	��/�f<0#�%B�	�}�q���\6e�����o93���|;���������y��0�E7fw�����5U����5a��~<� ���X�>����+�o���f�����n�]�a@���������=)�J�}�a|��N��kI���A.�^�5�u���L����B�J�����b�YN.�D���1��,��5��a�XL
>�F��t�Q���d�F���6�8�����������J�Mh=�E?y��|Z�e���x�t�n�\��aDF,�����=r�p�.X?�K����{��r����X������i>-��n�z�_���w�b�n#~�
�~�7��h�����_������2$���{��/\�6��3�n�i��	�]:��IHO��5a�MD��4���/'���7�+M��R���\v����e_L'�e_���g��e���<���"M�5��Aq�y|A������DHd?<��e_L��������i}7tv�9v�v{t��.�X#��a���?l�0�������D��J���e����G�� G1��=]�����p�����������z���?
l�����-���0�����F���e|t�G�tt�"���%
9,���*SsY���'���i�y���������n��.������>���:n�����+?�����{1�-/�'Hd�2�C�}�2�C�����,S�Tr����\��,x��+�D��d7��������?b���$�pB���O��]H����w������T�����}8�O����U�����c�'������8<�nEv���f7���hI���w�4�bB�L2��-�EPzN���?`��]����/p��v�G�����?$�e�8�� su1��,�/<�u���G���4��1��8����Ebi1����Q^i1�0�Ku=�4eba����3X��qI�:��OJP������
�I��l����i>����l����=��|�P���n���^=��o?�ys��R�I�aR��/h�v�E�� �~Q�q��������9s[�V�:;��G
�f&�������L�i'CC��&���1��&���)��-�m�m��y�;q�0��2z���r��lZ�.�1��g7yzb1(�&��^*c4��!�.C�]�l��v������2�����[A�C(1�����?�2�U.W��g�z�������Q+���&�O���#�6�@�k���bd�z�zp�-������������i�<��p��������[x�h�����<���x�	�����,�M*:��?��G��������4)/'3�y
v��AI�S!xUU�������nl������i���~��,b�t#�F������/o����"�~I-�B�P=l&�6���)�K�O
c���>�zI_N��{�� ����0����0��fx����P�e#�#�=a�m����SE�����6�c��=��>y6b��*r
����O<p���/�9���_����|z��n;|��0vg��R�B��-C�Jqx�3V"�O��I�1������N;&{|${(��
���|B��Oi~��������r��O���rJn�Yx8i�����v0����j/��2��^R�)��S�p�\����A�C�X��
�n��'r��L�A���-hT]�i����"���n���S�lZ��������s6����1��&���F�^3�$��=I���;�����pD�
endstream
endobj
731 0 obj
<</O/List/ListNumbering/None>>
endobj
864 0 obj
<</O/List/ListNumbering/None>>
endobj
870 0 obj
<</O/List/ListNumbering/None>>
endobj
876 0 obj
<</O/List/ListNumbering/None>>
endobj
896 0 obj
<</O/List/ListNumbering/None>>
endobj
921 0 obj
<</O/List/ListNumbering/None>>
endobj
928 0 obj
<</O/List/ListNumbering/None>>
endobj
936 0 obj
<</O/List/ListNumbering/None>>
endobj
959 0 obj
<</O/List/ListNumbering/None>>
endobj
965 0 obj
<</O/List/ListNumbering/None>>
endobj
983 0 obj
<</O/List/ListNumbering/None>>
endobj
1002 0 obj
<</O/List/ListNumbering/None>>
endobj
1008 0 obj
<</O/List/ListNumbering/None>>
endobj
1023 0 obj
<</O/List/ListNumbering/None>>
endobj
1029 0 obj
<</O/List/ListNumbering/None>>
endobj
1049 0 obj
<</O/List/ListNumbering/None>>
endobj
1080 0 obj
<</O/List/ListNumbering/None>>
endobj
1086 0 obj
<</O/List/ListNumbering/None>>
endobj
1119 0 obj
<</O/List/ListNumbering/None>>
endobj
1133 0 obj
<</O/List/ListNumbering/None>>
endobj
1157 0 obj
<</O/List/ListNumbering/None>>
endobj
1175 0 obj
<</O/List/ListNumbering/None>>
endobj
1194 0 obj
<</O/List/ListNumbering/None>>
endobj
1207 0 obj
<</O/List/ListNumbering/None>>
endobj
1226 0 obj
<</Type/ObjStm/N 500/First 5371/Filter/FlateDecode/Length 8704>>
stream
x��]K��8r�;�'��<��M����������wf;���������W%�%U�������K$ ��T�$2$2�|��"Tu%���h��N�a*i5����h�J[�����P����r+Uy�
]��+S��I+"]{PRDEX���_���G��g�ZZ[|F_��o������]RReZD4X~NV��aQKTR�4�3a�A��t���o��dh������������E;4i=����C�����Gj�����!&�������1��9K�J�>h�J1ek*��t�F*�%�XQ�`�t�R�GE��|���J�zNW���2�ny�l��j�J+~�����v����u���;i^�v������0eZ��RA+�����z_��2��CoPKI�A�7������[�1�����[�2N�s��7���L���"��E�T��,	��?s���?��UmKUVCT-+K��1��z�>�'�9��C���x�����9[��h9jyn����(o���H����+z���G@��3���
E����a����&$���so�jyV
_y�# ��Xj��+=���XiES���H���Qq��"A���]z�{��)S1U������f>k�/�Rs�l?�UP}���6����i[�
��XB��~��k���<��$�"���x������I �Q�SK^0RH�`�1��b�A&k
mg�
O=��� ���(`R��b2u�������1P��e��&oI*,���(��05z[	]�S�_��*��y���3/IG	�x�t�n_������8�XU$����P��K^6F ���n@���5IyVO��~�s�Y�� �k&�Y�y�X����4,dx (^c�$/(��u�6M��h�y��%��~��@7�s����K�cb����^s

��h~��F8
Z0F�)m!Q���=>x�a�{���E?3��S�x�����Y��-�&�m;�M���1X!��V�%5Nro�d���`�cX�Z�����B�[6
�n����Ic����2Y���Z�������b�0��)�S�?6`��bs8H������3�%<�@�'�<���ga�u�)������Pi�=��u��r�1���x!�+_C5���b!��`���d��@��)��5Kt�JC����CO���i��gXbw�{f�eo�s�D
�*����K����X� �UM|�HCi�y-,|/$���%��	��v�,���"���u��M`#��Bp`j�!�LMV������X��������	�p���##�!�2����:����D�A��kL8o�u�^#�d��1A
'���Z4y5i�e��KIJ��2����I������TBrLJ]#�j�%5�z�XO0	�4HV5��5�7�j(��$���:4�X4��93����hz���&H=��M��M:OM�������Zn���������Y��	�4�uB�(��k&F� K�M�6&$�lh 
��,FMZ �y�n�D��E�K u;�g[�!i$��
��PH��������g�������k��8	�Of�0�Q��L�_��\o�i���7m�	-TxNb�a�0p�
{��Qj�j����Zt��r��
5]��8���$��BC
u+����-�Wc���Z�O!L�)1���2�5����D��H�f��=�x��<ch,���O���M ��W�t�,��<:���[�U �������L�:&��e��,�5� ��O���la4B@�K�1t��A�&b6��}@�c��S���@��)���j
��Jf����]�F�+$�!����j(��J�$�D!H��J4�_�[#�FS`���a��z`"}���1�v�0h�(H@�&�+�!�}@������8t��El����8�f��������b%(��������aj�5^cG�d1�fc��� ���%"7�m	����Y�)jV�W��-���{#qU�Q�(���%�P��A���N���5?
��@�IM���������cK��,��-�Z�_��FkNq
���P`�HFM^y��������+D�OM�`@��Sc@����M^c�Tvu(���K�%������jB(��=\!�������uo�O�&�� .g7�"�Wl:,bt���t��
�D�G�q�k9�g�EDK���E@��	�K�,�%�P���1�z�Y�H��@f	Q����?b\j���j�]�N�%�!����]�oXR�}&�A�����&T�������B�'�C���sZ*MXGM��F�MM������WI#3��k���F�D1-����.j����.,�'��B�k��;���e_@ol-!�p���d��Wj2�!-fL��&fD��P���!�#�����t1���@^0��b��<�g�ks��l�K�?�y(�jZ~���8'�8��e�q��CE������oj���8�<q4=?
p��0��SCf�	�!0w��P���Sj�P��5�l��#���%$��<7�g6��<7 �g��0�3�f
?yn��yn��9��s������A�M���� iCM��1p:D^�
H��p���GMP����Wo?���������?������/_��7������]���_�Qx�g82�
*6tl4�Z�������o~�����F�����]q:6���o�}���"��w�i��2AdF#�����h��^�y\�'��[��V��4?�Ssz<�OMu�>4�jul������X��W�����5��9~n��j�D���t>no�����}����W�M�;��V������v`���S����E;���	�����Su������W�f�9������o��~M�=�����H�[=4�-������������nV���l�k�����k�aR�p-���xw8�J��j�|:�6�����%}�&����Z����k��WkZ���L����vd��d�t��B%PUG�QEpT&6ll���
Ae����W�����_�C�)�-��v_�N�8���p��n���5_�4������j��p������@p�_O
	U����2E��YiS8������wI@T9������zC(s��=�P��9i�>���h(�%@�������F�y3��Lh�cZo�&T���U���C^h9�Q&^��X����_$!B��:*V�G�J=�VA�	������i���;�]�\4���Cs�?l������q{"Ul�$b�ZJ�����������nu���@*$u������J&����	9_ �<R�,�����r�+#������x�DH�]u���Mu�c���f��5O�m�:�m��m��[����cmB�m�z 6��".��������%��%u����r�w���`{"3�Z���i{����O�V��6b��Pf�m�+5���I	������)�b&��~Z2C���Ug�����o�83�4G_���?��!�:S���i�������x����yZG�"����U�yu�]��z�t:7���� �9�.B���V�jd�>���@;X�� R���>)�j���D�M1��a�i�H���c��k�l��^�'E
��i�|�..A
t�i��|Z7;��(�-�u�SP\L����T�����g�T��E!����u��m�;�i ����q)��M;��?�>�S1������sf���T����0��q���tb��0vbD
	�+X�����G��������#��|zQ\�w�Ar��n�9�)(/&����,�=m�)$}�����X�wgn�\�7��:���8`�BLU��Vj��	�g)�)t/��{�GX�jK������e
�������s������"l�|5�F��V��7U�f���x����-�����'N5���Dz�����:������/�z�����#�z���	PE�qN��;��H����ml�����f���r�mQ��^�W��i�2���W+��J�X9�?�r��	�Q����]8/,N�s_���w�����i��^L��q�e���q�)x
WFi���� �g�(:Q�0�����1�k���**�����"��������*r��%�����fB��$��i�<��}���Rf�J�.�O��Ww����.�&M��s�����_�H����lV��s
L���x(�
:���W\��t�S0WL9Z%��F��*��U��+���
��1��b���x���R�Y��@f`>G�e��)�xly<�#7K	�r����{|�E���������Z�?#���1�PO���W�1������.#�	��ZL7�	U:�gD_K����n����
�U�Y�I?=l��I���AevB)z�){�r���O(�kI���;5���V���=?�Ms�~��}������0����o����t��{.�b����Q�v1����v�;*�-7+r�V;��,�(e;�c>e�t�Jtd��XV��D�frWjP}MK,� :��R:�J��{:��BNJXW������p'��O�~��H!~q��T
��I!��T�o �x�h�9�����N�h����or�gJ��#@�Z�����)/���]���bZ��������FY����@q����2�pn�cu]�&*Wt����-�D^��S�ZL����1�>o9���\���2������j�smUN���{@mNu��th
��i�j�a��c�=���!�5��{N7�3R���3k_��{��K)o8���Q�v2�����%kes�ng��o����LAh1-���u5*$O�+��t�����a����~���'_G�W���s���!��3���6n�Ma�+h��z��.kzu`Kn�I�-tc/s
��5/��j��`�)]�r<|i��H+�E��7��=��L��^��6�2J�/&	G{��y����%m��5�*Z�G�=C%nG�����3�A(DR�}�:��8�$�2F������nY<�z>B��z7�����c�����[����`b���*2�nqK	��-���[���9M�L��S�m�|T.�����(/�2$�����ZR�k��_�?�>���7�������(��q`.��{��Q{-�?��:�Wg�|O�AT����7�T��6��a���61'����3:_�v7�0�2�9�	g�y]t���k�c��nT5(����u��|^�p-)���Y��ku�����A��K���A��UoMd�����Tg5��������]����!�L!+�1����Ti �R��~u���#���,Pr�/C��3���b����Q"i1��V����p!B�'y���������ZdB���"-T�m�����M���`������u��mz���L��d2������H�rZ�H_��>���wue��]"���/��j�,ZL��O��b���p��*�i=�/�@%:&���x�[�����iu�x�[�DK.�"s�J����i�"m������6���s���Q�_�b#D��LW� ���|���O���a)�Q���Na�������i�7�&gD<��c"@�#�Z].��n���n.���:J��SCxIFb��<q-��w��:�	'����}fp�������Om�ox�57�a�6�b>"��F�un]�LD��&���
�ZR��U>��|�@�����*~�����5�p-�?4��RT��R�ZL��Q(�����Yc���s�T}^�PI����z�C8�?R���/tL��X���j��U�4(mOF�zu)CPL����@j��N�����v��w{t�9�n���qP����I�*3��\�R&�RK��)d/�u��Y��������`x�V�n
4�������lN�)x/��GdD#��dk�-�p�O@E���

�H!{��fK���i��9`�b����W��#������-������J��s<J)S�oB���W��\�s2�{�8���^�&������ze�%�������t�.t�cD�2l���t�O�9�c*����_A,%<����y8�+lI���)��COD
���Vt}Y	���%��t�Dq
pr#�rR7mF����a9L�:(>b�Q{���\��o�R����O'~��������=Kd�.N[
��i����i���b.mu������.��%�����*����zwq�C
���u������3�n��{�����%�5g"^��R:D�
9������AiN�L��GG��r�)�-��X��[��W%L�X��?���S���A:�t�%M'�^�*��No� ��X��m��a�����6w�&'b�E�>����$������k�<�HSPK6��l����Z���#k�7	�QN��<{J� ��h�4��k9����������"i?b�<��v���������k�F�^M,��x�������k���Y-\!h��5����!N�����t��j������j.'�?���rR\*V"�m�~5����&�6�x��E5��+S[L���@�������HaV1�x�!�S�����^N�����+FFn�p[�rZ��(��DRF�������
�d,f�X�6����Y���x�����Q���9�*s�,���H�9��Z_~9������"����������K<��M'AG�B�\�e|���(���N�y�����d��z������|���S+n.������%u��\6���#�Ff^&`D<�k���zN�/�P��]|I�4���Td����y�!�tCQ��<��,���0�����|Fz�_N��7�����_���(���5�&�&M�M�[,=�3_^U�v���uNS��@�������e�|�$������U�����p���/Ql����`�TJN(�d&�~K��)�/���{�V��y��4�Y���b�|���w��u^���/<��K������/�n�f�����1]�B_�{�o8=��m����GD
���&�q��B�P�F �9I�;l.+��!.��3�����:��P.V�
���M�;|i�(������?b�(o2�z�Oc���rp7�N�{{p����5��hl�.P�e���������`�����7gh$����o����x��H�����%�:��M��y�}��g)X���&z���L�+�=��UO�]�f�m�_����<��m�M'�~?�>�G��bt�������7o����}�b���dsx�J�
}�(���������q�������V�rC���?���>8Bp|jF�����%u��i�����(�?����a��9@/�t�JFcb!��nb
��@���&n/6:��~�.����]5��G�Z���	�����K��T$�oS���a�OH�����6�J(����<!�of��x��1���6��	���������E��B1���<���&�|�
����(\�Ul����ko��I&��G�m�Y��r���GL_�[gU�_���o�7�w�L��w�O���A�-���~8��"���/7�m7��'��H���3��Y�4s+�2oU�,����\��\�"�������������&t��|��-d_��s!���\�X+K1L?M�������(��Vf�d�2gp�0��{�m�)`cm�����W��?������L.���63�	M��<Vf%G�q<����S�b��#_�*'5E�����<r��J�9JlN�	���QHtc]��CrUj��(�:!4c�Uv1�����<2Z9C�����n���'�U|�mp�3�����_������S��Z��h]�]��L�)��R��I+��V�r�B3�s��$Z�$z�
9;S|��es'�D�
&��}�4��]�96���1�n���'�f���.F��7Y �eC671�o1h�)HY��>�%�?�ty���3>��	�)�imVj��v�sL�O8�Q�~B(���6'0�$�em��������U&�f2Z.�%-ksX>������/&�f���-�+2�.��slp�$�:���_�~�������|#�g��6���rg���w9�qE��e�f.�v9{S�c�jT���1�>'0���������D��9�/=!4c�}v1����a�<r0^���G<s���U��/��s��6ds/����j��U�s�Z\����|z�O[��br���9>�O�)�u�0f�YArb\T!��
���2��/W!su�GPKy�!/�.[;	%b��u12b��O���9�	�|�����tuI��e�kslp���+�6u�����)-�:�%��e+J�l�*qK�6^����2�:cr\������l���puO8���W����i{zC��y}?����t������f�l.�&��5	�+������U���I�\�����A�J8DN�C2���8Q��\u��
�s�TP"v$"'g�C���,�y�4��N��a�%Ix,N��Nf��!�l�m���P+�.$u��Y���9U����;o;'��rb��E��~�	���j�@W���br��_>v�R�X��Mo*uq+�����rE�JQ���fD,W�t����S�S������*��\���
9U/�Yu��S�~�T�tw�*T.W��gC�B��/8�pW��=������E���1��*����]���*��� ]q���<�]=�����_p�)g��P�����n1�g����`���
endstream
endobj
1243 0 obj
<</O/List/ListNumbering/None>>
endobj
1257 0 obj
<</O/List/ListNumbering/None>>
endobj
1263 0 obj
<</O/List/ListNumbering/None>>
endobj
1278 0 obj
<</O/List/ListNumbering/None>>
endobj
1280 0 obj
<</O/List/ListNumbering/None>>
endobj
1295 0 obj
<</O/List/ListNumbering/None>>
endobj
1301 0 obj
<</O/List/ListNumbering/None>>
endobj
1334 0 obj
<</O/List/ListNumbering/None>>
endobj
1340 0 obj
<</O/List/ListNumbering/None>>
endobj
1359 0 obj
<</O/List/ListNumbering/None>>
endobj
1365 0 obj
<</O/List/ListNumbering/None>>
endobj
1391 0 obj
<</O/List/ListNumbering/None>>
endobj
1397 0 obj
<</O/List/ListNumbering/None>>
endobj
1417 0 obj
<</O/List/ListNumbering/None>>
endobj
1441 0 obj
<</O/List/ListNumbering/None>>
endobj
1481 0 obj
<</O/List/ListNumbering/None>>
endobj
1487 0 obj
<</O/List/ListNumbering/None>>
endobj
1502 0 obj
<</O/List/ListNumbering/None>>
endobj
1508 0 obj
<</O/List/ListNumbering/None>>
endobj
1522 0 obj
<</O/List/ListNumbering/None>>
endobj
1542 0 obj
<</O/List/ListNumbering/None>>
endobj
1548 0 obj
<</O/List/ListNumbering/None>>
endobj
1559 0 obj
<</O/List/ListNumbering/None>>
endobj
1757 0 obj
<</Type/ObjStm/N 500/First 5340/Filter/FlateDecode/Length 7305>>
stream
x��]�nd7r��w8��p��2X,���l;�:��
��G��iXR��w��y�$��9<���b���R�a����,�I��`R0C��?���$�`?RG��o�p���*�!�
�xv��2$�_�!�"
91�8��}�8��D��'jC]������%�n�D����'�
(z$��BD��F�oYn[%������E�������Lm�`G�qfG�$�a}r�������\
a�yh�
�����mK$�9+�<��>�hAQ9B���T������������'
Re�����s���g��W�#
BO�����#z.��������>r�>����\ ��J����qd�KTa�e�6��d&�e�#�2�F�}@Km�([j
d�f�1�;>F�l������	�X�W`4�:���Q�>;;�f�k���,L*�1�Q[F(`��h�cC�|q���L���%�!A���	PQi9���m���0����@�X��O��#2�hS�-�u��]<l7��E!�b�Kj�<���!�c���XEQ�/HE ����?c��m��$p2���D�f���%SIB�Q��)Kk�������K�b�T�0�F�%����)3���d����Hv���������,��
Y��/H����N��u�}�"���������������3�L>���(����C���bt�|����>��=1%g�g�����S��#�d�%���%2��$%�>���&E�,�>�K�~��8������	�2"��-�.0��!rX��J������t�Op�v���Y<��A$5� z]���m���D�2
�������Qr|��8R<��#HHB��f\��	�v���v��21���!��H������E�v��
l�����5�1$�Z�j�E���&Dq�@[����"+
(N�SMQ����( Y��|
���e���13I���@��Y�B~�f������5��Y�M�!��	3��c��	3D��M$�q�,����+��-�,�D�+���q�	Bn��Y�<6����$���*P��B��?��HB~
��Q��d\0l�xg
t�#����V
����������M�f��-�,�����
a�Dp��SA��0�$>�p�����fF������YPS@8 |��)��#�J��
@��Lc�h@9�� ���G�@A��0kFO*p��1���*1���$0.d|��M�h���N&���i
'6#ao��)$�;=��~a9�&$	v��<Am�4�O 7���H�)����p�������g����9AB�g9S�L&NU�g�l(U�xV��l��1
�u�U�<=E�0�r�t��
7���l�H�fD�X�y�H�����\x�+xz��C�E�)$&������)2H���
��=
���c`l��������=s��l�0:l��+"'������8$�#k����e�����?����!`�%<�H<��<�FrM��7dD�7Lv�J$�f��y�@S
H$���A?j!�8�O2�n���v�� -�����YdS����_�O�������"��l�D:��GHm�����h�4�L��c�a�4_0$����_dp�Jgbn#�=���G����l�f�3(�'	@;X7����a+�Q��Sj@�* ��B$�P`�<�kJ�!.����E6e,3�����iA2fp�y�"��3��������{k�Y�4��R�A�7��	4(!2x��z�����2�
�L�L�=D�7�r�86&�< Af�6z6���c@�Fd�
~l�t��i@O���Na{�L!z����h7�o��Nd���Y�M:,$"3?@l�e��B2�%C�u �P�a�3{"�)N�-�.D��-f��<rLe#NX7��O�D��S,0-��P��C�����/Ro)����h��[�����}���#FI�o�Do����k`q�c��c�`n�U2I�����`n�GZ�po���"�,`����@N�1��IJ���f�
������<n�(E���T�Q���!jP2�!��D�C�����a���}��l����R&���C�u�'$��7�$4;��MS"H�!��\q2�y����H���m�����'ee��2�Hlr�7��lF�Lz��P8pR��-A2z�3�P�����A2fd���y�#�HR<s��D��Lq����A #pbCb����:^�Zd��sy�<�qBA$64X����"�r�� #����������N��a[��
���Dalb���7H�1)`�$�����a�|��<�w�x����d��i�H� �������|�I#3���g#�Z8�D�*,�%��@)$b� �9
2��A�Ph�����e�s���O$Ou�Df~���nz�C����Plq��C2rZ�8��7�M4"�[��
��'���%�e�s��+XZ�`~@�B$�
�4��V�_�K�����xD��Jx�J�!�]H�'�$�#�A�������"������O;��������?�v�����?\���z}s������s�[�P������?�2�����P��3��������
,h�3����Fh��w��g����?��!���w���I������'�P$�7��#��!HRX�&[d%v�����2�
�|����s��4V��31�n�!VrJ|/>������m��2�I2�d40'�^���9I�+%����'����A��T8��A��l�8�<��[�F�,��hp�R��������C���� ���p�y�1��g���t�-��/������E�!�
;�a��&�9���b�?��L���J�+�$�����of���������9w�_D$�^p���Cjq�xA������H^��A��J���v�!�8e��1�
)��� LO��+q�Z]��f0y:��2�Np��,��`��Z�Bc�������E������w7�����
�s��<sj$�zN����������0b�V��_�q�w5M�>���"��AH�p�D�B��42HTD`��ppE�=���
�dt0��Sl$�8d#� �9l1i`8��d
���F��3D"VR�������
���N���v1�Eu����il������zF���a\FY��Y���X��B��sa�=�4
��D�d)V�����
��l��m3�,
��dDeh��Y��a����f�5���3�IV��M�:�z2�^J7��PM�4�����^;�_�W��>�6��Z	����V��ZI�����nu��W�ZY��$#���k��"v���K��M�*�4#m�a����y����R��*`��a�\+����ZYZ��G��\PYC8��h
�,2�V�:��T��A��)�� �wC�������f�-�7���R+M�����j�@*J���L�l����q�����N�*��rTe�RQJ�dI����V��:��T��Q��&)�wa����R���0WZR+MK�lU*����V���0H{����
�l����O�0�Za���0��KD]����^����?��s+T���n���
_6��������z�qsM��@��pw�������%������C5�����������z�_�7�a�eu;�
��J��2��?n?�����:�����E�4�S��?�o0��)��N��e>�	����RH����G[�qo�uj�dr3�Vn�fu`#3�V�;���u>Ku.�
�4%�~���n?��5����_��=i,R�q��/�W�Fevv��>����--�i�5*q��������f{s�����;nnV��
?}m/�O��@������;
P��Bk�B5
<��z�8W��y]�����vMD�_W��Icuww��B\������������m�QM���8��2�%����a)��t��q���/3�gkz��5��dx<A�������(�Bk�F�,o��������"6�Po���|����P�h`��X9��������kc�9�&'y��Y%�
�rX;
)�u}��(Al����bE���d�Jq����uQI+j�)M���Re������������F����n�0�=�f�3M8���P@n���b+
V4pUE�X�B;��b���i
|.F�&��i;������h�]$�h�N���{����'�p��
u����Z�C!�A���8�f�:i��U�J�W�P�.�
x�<7����E�&����'o:(0G<��y���C�ifx^��+��V�h�K�N��l���S/�G��Z5�f����� ����V�h�}(D�V�*�T�Sa+A����V���.A���E�
E3��T�J�U��z�[�P�>�
z�U_��N-�� NL�J�;�J[dv������e�	^��V�h9��[�����%�����V����v�n%���*��(�O
�F�����m�9i��V��M��$1�w�HbtW�f�����S}+IV�j�Nb��C!�i�bR-��Z�+�W���Y�W�m3�M�� �&�TYA�����O��_y��6���������%�v��"����
����?�NV�e����,��>bXW���U4��N��Q%E�WP�������
�j^T�����J�<�`_�y`��[��K���e�M�V���o���v
�����������������o�?_�&`��I�(,��{"U���]���o99_m'c!+E�
V�=a�����Xn��Ff�����H52��G�\#�"����F���y��E���M������~5��H�_���zu��Y���K�����DYsu�R5��\��P6Jyi_em5����r�,���1�
I|��
�d��B�f���U��kd�|����Q��r��'C!U�z��A��r�vO
Y%�d�J{:rj$�����	/
\�o	��q�����_������k���`x��]}>t�\��V��j8�
H|-�B�RI��R��(U����fN�:&-���Y
�I�����o�
5�L�|'���F�*���Z{PHE���u�����Nv+U���`
r<�B!n�t����	/
\�o	���>���n�tj�W_V��k5�73� n
����P�������T���e=J@�&�U��73��1i�h�Sk�M��8���f��oft���|���*���Z�P���k�g���N���o��P%�RyN�\������j�����S_�tT9���n�M���T-���5X�v{X������jv�LT���o���P%�R]H�T>�{�uP���f*�����Kr(*�U��������2C�L@����$(T��T�S@!W���hr���.��S9(�����[R�%�����+���j�f^-W��T �c��E�o^O9����+w�aI����w���T�:�b��z�5�[=��������XS�i�q�V�3>6���`��f��j�>~i���=������5vx�s
�7H&�^
��<�Q����GIt�������<�@N��Q]�-���,�yx�8xT�|���5�#<�a3��.x���}�Q��G�e<��O3��iF�>����t�L]�[��M	:�i$�|�_���m�f~���{�rF[���F]|�������u=�n�fx��H�����?c�S���y�Y���������@����2�O�����*]8�������s�^��k�O������n��~}���}��k���T��Wf�
0v������S����j�����[�g��vX}�������nV��<��	����'MO�ks�����7Ce��j�o�H<��v{�is��/�k���������Y�?��nn?��U���j��5��V��px��m�����|���m����4��`\u'Ws�Z^4.TB�b�(_~����\]#|t2��bjfoL�j}��,��0�h�!:��ji���������A����z���/9���7��/��e���,q������s�^��{R��L�I�zR-�_=�WO���|�$_=���IN�$�zOr�p�fF����s��zs�Z��o�}3x�������I}�tN��_v���g���FZ��{5�zRH=��n�v�:����U�sW�q-��P�8T;�UW�q���Z/Z��t�h�����~�����k�d#��Oj��3������*�OJz�9���BM�k-�qC��� �����b�s��sz��U�/��9��<���N9�{R�;����r���~��Z���j?�����f����.��R����k���g;K�X�9Vg������Q������7�����������|3|wD3�v�wuu+;[��X\��R����A��UjM���z��;v����ulC'��kD�bDJ���5���vxM��i3x��]�Ok� Cz�.m�.��*��Wh�:���H�����<�p����O|�I�ZvC�Y�2�
�9�b���\CO}V.��z������H3&wj�&�I\��F�Qm�DHkX��9B0�fv^��~��8����96���f�|����F�yE�
}�NJM6��2F�
�j�iK�f�Y���$���f2���(!�[�Er����_�O��C�9�V����K�Q%��Xe���t�2��SE�����y�,����������Uq�5	�Q��v���<�s#vl-aT�[����9���J���������s�[Z_moo�W���O����c�f�?�9�e�h��L���U�S��v�
q�����9��7��Js����]�k��p������Y-������b���������n�e��j����������V��|�K/�"O���vm���Z����k�o&B������8�Jr����q+z�7��i�����h��-�R5n9��q�s�?xp�������{����_�s���k����WZ���E�r�ny��,����Y��4�[�T�S�J���s7��9>[>�?wl�R���z*��
���!��9��I}{>����.;�������w�j*�V�~R�1����2Y��%Q�S�1uJ���*����l�"�����W��s=9a��	[ON�zr�������\lkq�zi�m�����x `x�f��U�)w��B{������={\�~�#h�H�������zLX������g��?VA�Tm���������\�z�AQ�l^6�=����~]�O��ow�O_S~��y���>��8c���|�*�0,Rs������y����l�����@Y��pN�GZ�����S�2>���FP��
endstream
endobj
1879 0 obj
<</O/List/ListNumbering/None>>
endobj
1901 0 obj
<</O/List/ListNumbering/None>>
endobj
2126 0 obj
<</O/List/ListNumbering/None>>
endobj
2251 0 obj
<</O/List/ListNumbering/None>>
endobj
2257 0 obj
<</O/List/ListNumbering/None>>
endobj
2266 0 obj
<</Type/ObjStm/N 500/First 5351/Filter/FlateDecode/Length 8930>>
stream
x��]����r�u���T��[5gM�V��{|����N<vvSq.4�VY#M$�z'O�'H�_����Q�X/�"@���F7��*SE�
�-��:��*��x��rxR*��2%~��(8�
���������P���2S��'����K^�����V95���d����i��N5-����Co�\��r/�������\S�T*��D
��L%�`f�2U�3�Z��C��W�������5��h~F���#*M_*����a�������QR��~�h�*A��J�
J��y����]�UJ������Q�T*��U�X<�s�-���a���4|�<�Jm���Q��gD�t\�Z��j���9�u��'��#�D��`�&f�y�
y�y��������&�X��A��u�0��&��q
�[�8H�������Z��s)W6���S����`���m��+e�����`j55n��3�
<3D�����z���[Z.e�V��1�0����g��^�<����J%�W����X��5T�V+gFN�hH(eTbQ��c�P;��J�=����J��Y�*�KRWA5M��x�]�|�6 4�`N�I'�?�`o!����X�^�z{��"�2�3g��P&*��IW���{�*s%��lxOC(5���Z��%���k���:����t�����^!J�K���B�@
�N���� ��r�AzI,�_�� �T2T��h��a�']�,K
�r�[���h`�	�
�yU���nTU�Q)b.���'�	��g��[6$�!9?� GEB���L� -���%��`rYI���?%�*��!
��
~�P,�] e�P��s�9�u�3��0O������
�2������y3r��</1!��D������hL�!�b�E��%:IJLp�#��Y���
T���
3h4(��)(����B��$U�"w�t��@���(���CN@��I=��0�B��HH�1
���T���Qq��\#�x�3���d� >����	�����1�
����H�-�Z��bH��X1j�@��HM����`��XP��� >2�SX9[��������f�^�b3Ct+�&���f<b�H��$��b�/][X&F���E���G*�^�"��L:�@AE�;����������	�%��x�-=�@��m#�l�������N�H��p���G�"Qp@*����A�"��x<������K���`J���8��x�>T�E�������)�R�s�6�Ar/`�z�a��H���U�f������X�`I�I���t��<�
�y�>���_�X���l��`��?-���;�Q�P����*=���J��
��@��Bv,`��t6
 [ L�K�F�,K�O�p���NQ�	�B>T��� d:��R��d6�_W%��X��*Z�V����t��A���g����P��,��b��Z�2��bV4ti�:�S�Y�v2���5�fe�e�O�u3�(����������@��w�t9k�EO��(�\��A�s����l/-4����c���&�)Phf1
H.����f9��p2�U�r��3v����6�T�
�(�Z��8�����C���hr��){��>H#Y$t��P�;���������f����������=t����hP(�3~��p��sKfc��������)l��[����(���V�p�lvx�Z"�|�����1��10U�OY#���Xr3�V�;<E����V�S�R��x �V�8��b&��@��;
bPj0@���Aj��Qp���p9����p
0�Y��9w<e�O*WF�8,���D��07�b�@m	^AV���<�����]��
��+�$o�;�<o�y@�g�8��Rv'�qE��R^��5R�+3���'BO��)f����`�.>@�K�?�����L��#C�3/��s����Agy��r�@�;���2�
�f�H�T���j��7�S�u�*7���x!�q��e3O
������X�b3B��]�����]��T�X������J���G�S�:�	�y�M��4+Y5��#�K��������,+X����P�����-X�H�I31e��S���V���g9�n<�c��zh�����a���Q8�Hci-����h���%Q��,�9)��e's��@��
U��4HE�ME�R��{�
�M��BO�@����f(V�0���p���\�5����*n�a���3�}m�IT��.�����~Z�@g����N�"��"
����Q�3j�`�D���%S	!��$Y�ah���S�b�
S��z�h��CFi���%%�"��D�$�T����Nj�3��3�i���S�b�ED9 �T���o:�������
��I����Bz�Z,��y�ZA3�n�2��xjgH����^3T��������<��ti��q�@*C�k�`l�W��in�IR^Zy��I���@�L���]��U#���1�f������Z3�/43���<���Q&�Dw�'*��Bc����!$�K�.�>���](�(���q=P�q��U��w��d��0��b������+��X���.��a����"��2<6�B�~�(T����V�y�1-��.Z+�:`nhYN}��~~�93�����7/V������W���t�jQ�>������;�������g�.������������^��h�L�??����|��U��"F��-��������t{?Y|���~�?�����h��i}�[-�����z�U7����~���d��^�������z6_N��u�jl�'�N�2�gi�
�N������N�u���?/�o�/6����Zm������v�&��y{�^��J.��`�z���
G]�%�G�q�/�y~2�7��j��,7��vN�:]��-j.���j1'�w_���om�E���"�eT@����8���db�V�����_�V��=�n����F������~hI��I�L������2�b&J���4�)������/]l��X����MQ1EEK��~fw��! ���^� U���_�����S$��EK�4L)���_��=)��U����l�������zqsS���g%�r��TQ�F��*��$�����PUQ��l:g��z�����,oY����JB��Q[��RQ���Z�$����KVbi��4�H��X�,z�b,m;|
K��g���
��)u����R��4�2giLJ�g��R�}-K�R�!��n�#�T�kyv$[�<��b�'�i~���"�yTLs���~����-;��$������
mO��YI�GS�K����Ic���zI��rZ��������(3���<�%��"jg����Z1+b� v���s�U��i�e��*���&�8��d&��hT(E��v����o��IhQ�
UQ��4�;������jA�������z���?hM��-h���j�4���MGQS���/?��	-2�����AxuLx��']71?���Y�P��CG]�������;F�����z��7�3Acg���LT�L�K��_.���mo��k�7�^��x�T��Cm)��k�����TJ�`<*�r�m�[k�n�T�xQ��8�2����6���$�����Z�FU4��3�n�TP�u����
���D��6i=fO_�I���o�?.^rA6dn����4 sW5�����n��	��.���\%iW�OU&��V�������[A)���*�����-���-��,}�N����#td8�w�MKp�R�!R�F:
�cIM�����&�/u���db��Stz�����m�l�a$8�>:�n'�,�T�e��c�-���������Q����=�	�X���6�~Q��n��lk5��o����8�m=��H[o&���^��_�n�`7d&�Y#-����; ��k�����A�nw9�M<?M(>K��?���&���;�W�Ln����i*z��������Y?������j�@uYHA����G+N��db���A1��@u���������9��}VSy���������g�����w~�}v�������Mi1�^a%���dP	�)M��VP��������L	��Z���db���hJ5���_����nOW
2e-���w{��&KX-�VKzVW�]���8���+�G]�
��r�R6��,�������c�#�Mr��B����{y���2����"���D���f[/����h�w��v5]-��WW�[�!0��6J��S+'��4
���b����k��YaT:������nQ�=_s:Y�/��i�5?}w�eBN���I����O=�k���.k�|�j�������!>�1e4]�/��:���~�R/�d��������@��o'_��|�f������v5�������+!�6�I��Hr�AG��GE�;o�}���~�y`���\@i��"MYl�b��0�$uB�.�C�]?'8��cK+����2��~fn45���&�Q�C� �'�\��w����M� t�������f��t���3B����'���������S�\�	���"��hN�� 6��X��Q$IN�>��	"\2��h-A*�P6WmA
Nn��/LV�&�p������5;=��k&���
*y2Y���'Sj7���Z����F��I��h�2-R&�`��`�mD����A�����jvE�{�d��}LK
���gs�~>l4�M�)��<�hJL�L������'�L��Y\�!�d$�����4"�&����e;���Z��I�������93D�xvw��/�-a6�|���km�s7e���^����S`v��iS�D���r$�]
<����m�T_�#1a���������b" A�3�^66>;.�Q2����c�.��*�Ii{"�R!/�}6h������t��(s]TX�����@��}v���&\��#h��GTP�Dh�Qi�GT6|j��u��H��������g(e����k����?��N��7�EQ%9]���=��^O�r
17*->eo���ZM��
27jp�T_`W]�i��@���Qi�GT6�T�@]p�[�e|��\�2
��L��|�5�����1T���'���w|���G7�\bt��9��*�Vn������s����8,�t!�%��J�
%*/UL�Rx�W��s��*{�g�����Qk9���6�1U��I��bm���U4���Z�b�*���R�s������*.�6�Q}J��m�Oc�Hm�Z��K��v���Z��6�K��bR�8�8kO�Z��Rk����,]j}�S/~�2*�>�6��h��q(Q��'K��Ja��a!�������y�������y	�
���M�w>%>/�=�I������'PS�%d�l�*�O�������8}n����N9,�Cv����-N���"���������eh�i�����R�5$��B/�
���C�V�ag|T�bf���P9��>�r���h�>��(�Z�-H��\!�E���3�K������)���-������,�����������!V�;:�O:U�� k�;�������M�wn�PpI�Z-<6{�q@/%�d���i�Twvgo���v���D���j�0T����(m������(+�����v|�������dZ����������A�����l�
�1�'3~6��5���;pr���=�V�"v?�t���jv?�x������L������z}��7��"�i����"�)5��?&2����c4%�A���l���o����������n�M>���vQ/k����&h�$�V�Tn5�VpU"��E�nXf����|������:�l��d�E�Z������z����j3�^�MU?��Viu�����h����Q�5�Z�}Q>^���n�8+�Ey6�rE��|���(�L��z��%�����z����g����W������Wg������W��8���r�������e�&�*wx��db�tE2�q����W��_�������+��L����������n��N�#: �`
�����_V{��8B�m��&�q���D;��d�a��|�1n�H�����W�AK�L�`+r�y	��Z��e�(���f:�������v4�X�l5]-���}�[��ku3����K�D�A{z��r��-����sl,��V�����K&�j���F�5���E�%�A��?�5�ew����lj�8t� ��	*#����r�����z������AF�2|�����m5���Z�db��4ZU���	J[EUo������D��J��>�X{�k����G���aZ��gg8����d��pn����7�9-���7�F ��&�y<��C%��Ly��u��Ku�
3�]~6<�N.�u�sY������)o����R��������1�8{������k���[������P'P]G�A�FK=8k/�~Z5+�P��w���tO�+��.;�����N[����� !Jn�hJ;���&'���l� t5��\�p2������@�����&�� �S	�H�;�X�I>�I^���Un?�{�B��C�����(N�������M��~[���i�?�3���^0������I"���G'����\�|`��s����x�&"G2���Z}�����������?X��ApIn�O���hJ[��&-Gw*�*��:ww��/�Sv���������z����$ku�&�Q'�Q'�)��tb����m1�>�(�%_��#�AJ&���� Z8��\�D�dJ��;���7����F��~����������,�^��>���|�e���Ny�����I���yE'�������A��p�\v#[�����(���������RL���m�XL��?b��]w3�������&����g�f�o��v�*�m?�8�������L~����rs��u���O��������tU�qc������z�y�mv�1�I.���t�����0�hb+����e��-;S�~|����yyg���uL��Yxg�(`������;�gv���Y��S��L�e=��.�?	�oY~�6+�c��%�����������e�_�O2��bu?����k���R���H���#Il'Ilg��F�K�V%{�������������%��]����O8L������u�'��p:����:W7��m�m���6XLH�V��v��/?���6�W�q�����VA�M��xS/���I}��-�m����Bv���>d����Lk���~��k	�����mDP�*d����������cw�Ge�q�@H������v�����(�eK�P� D&{��j4�z
}y��u@ox���s�N������a�G���a��db��fm�}7���u������e2�}����ZH�0�	�d'�dWFW�C�DWF=��d��db�ww������k]�5�S�N���V�����=V�)���o?
�q29b��I�w�c�u�*M���N��N��N��N��;I��*.g�b���G��N���<f��"k
����.�?�a��H>�a�f����LMf���)T��e�n"y����z-.��p^�l?oC��N�Y�R�c��*�9>�F��tb��?�W�[mxO�.N�����OY����[|���?_��f��P~����g��GU:6������I�A��,.G��Z��Qm������&f��o����\?���(�v�"O���&�H��[7����������o������M�&o��S��	o�6?!������S�~�,������|��dJ�;����7W�n��W�����Q��j;Y������������*���t� C�iY/iY/����=��#Iu,?�{}~��7�f��~�����n���o����@���|��_.W�|
���^�o	�����/�9���=?HR�J@�M�&��z|��������T4�_��lQ\��E�O����$_f����=4g8�~2z<�O���?�������;�3�d����)��7�]�r��~^�W���/���s����������$�}��"U�?f=�H�L��FOi�\<�������5�,*����e<����
�q2��������[/;����~$�K��?0,�yG0��e�NfX��!���(^����M=/���$W����^�
x�+�e���Q��|��������5���U���{aWd{��z��y�����&S7�)bG�4�x�����Y-�o�����=%�9����^�|���{@���D�dbe�L�xj]��"E2��{L��iC�1=���H�7���G��������\6��$���k��'_��Dn<��GIa�z����t���f�%"#	g;u"��av�wq�^��x��]}���J�:��r���Zb��k�����;l$ATeU�mt]:���`v����7������O�zu%�������h��5�|t���_/���yg=;���|D��"^>'��(�w���-A��v$C6_�f:Y����K[\��	���$�������8 ����!{/�L����Cz)w�����h$��|����������]s���&���,'����	��Z_�"%���S/1�K������^���b�nA/ay��D�%y��J����1�Gu���
����_z��c��wT��v�����C�&�r�T�{��D��f���f������M=`�"��G���i�������|�����S���<q�������u��
���>�@����[i*��M����6���tD���^�x�&��3S~��C�'.�����]y���]�W�[?�2��d:�H���
��i�j����EW�/����e���i����7����]����A����
endstream
endobj
2272 0 obj
<</O/List/ListNumbering/None>>
endobj
2374 0 obj
<</O/List/ListNumbering/None>>
endobj
2385 0 obj
<</O/List/ListNumbering/None>>
endobj
2409 0 obj
<</O/List/ListNumbering/None>>
endobj
2430 0 obj
<</O/List/ListNumbering/None>>
endobj
2543 0 obj
<</O/List/ListNumbering/None>>
endobj
2549 0 obj
<</O/List/ListNumbering/None>>
endobj
2576 0 obj
<</O/List/ListNumbering/None>>
endobj
2582 0 obj
<</O/List/ListNumbering/None>>
endobj
2598 0 obj
<</O/List/ListNumbering/None>>
endobj
2619 0 obj
<</O/List/ListNumbering/None>>
endobj
2628 0 obj
<</O/List/ListNumbering/None>>
endobj
2650 0 obj
<</O/List/ListNumbering/None>>
endobj
2660 0 obj
<</O/List/ListNumbering/None>>
endobj
2667 0 obj
<</O/List/ListNumbering/None>>
endobj
2682 0 obj
<</O/List/ListNumbering/None>>
endobj
2699 0 obj
<</O/List/ListNumbering/None>>
endobj
2742 0 obj
<</O/List/ListNumbering/None>>
endobj
2776 0 obj
<</O/List/ListNumbering/None>>
endobj
2791 0 obj
<</Type/ObjStm/N 98/First 966/Filter/FlateDecode/Length 5185>>
stream
x���������
��nm@�����J���2eX��D����5l�

����d���	v7��|9
X=ji.��3��s"23ND��)���)
fB���y��e�KRZ�q�k�i�S��6����5��/i�������Q��Y�����2�f��h��4��s�OS�'��<K�f�����4�R��s_��s�������-��s�����YL5��RL���i��6����q�<O-�y\���0�������������%���&m^��������m�M�|����iHnK�R��H���eV��)�:K>���O���fV�rH��R�\H1�T�����Y��!o�j��1�4/a�e�4�s��.�Y�v������1�\�<F,:�y��������]KE���P6cZ|m3bi(e�����y����\��g�U�){lkMSLv������Q]w'��y�����XAlW��c�)�Xf{�X�PL�?eZ�����V��i5��&l���06��ml5��g�j���G1	�XM|4�S���Xw��l�c�c�
�
����c���sl`X���:;��c)����b'f�=67��{�l��lv�����k���0������b�c����*��x��������W������7���^��_?��������M���BE&�&!V�
W_���9���������}vf��X��l_������g�����ov�8�����o?�*�=Y����n�U�o���������Q�����R�'k�m�n>���'��H���5��-��n{}��r?��w��ve�++��F)gG��7��1`��a�
koX{���w�S�}]����-�K�����}�}�=�^�����
�����
_�^����:~4<�p�}{x��G����Q?�����^��I�tV��,��Be�������3�����.�������L�3E{l��0�O+~l��#�2 ��z���\�g�����v�>���K�N�����4�;7/��{�jw}������?�������32����!a����zy:w2_�,����nx�����=��~;��ww?������p{�{���vw��q����C��ov�������~�z��j���CC4�s�����Y������_?����=��O��u'Kg]W�����y�������ew�����f{����������m��w�������f���v�?no_~�A��tHg/����rw�������H.��#��>~��
��
�!<
�_��I����bMX5�������l>{�^����|����=����!��������;a/��f{�Z��|�(�X]x�A���W+g��#���^�n�����z9�����]�^i:�kk����O��5�K!L��!�����w����h�:�9����]��x���F�Y��5����_ �S�7��8q'�)�8��\�=�xD'4'4'4������Y�<����?~��Z��*$�h���L��R�������w���A9{���x]�>J>��/
{^��'���v�����	q�������q��W��xD�o�	V�������c�*2���c7s��13���`GQ��<��\��.���v��P��a��b~�j���n'������>�W_nv_l�-t����m<��bv1�oC\��pS|RO�����Y�'��������0��5�CM������k�0�-�e����L���Z��hiZ�X��gy\��Ia���	"h���[���p V���Av�R������a~��>D\���s�������r������`���m����s��no���o�3�������������W����v�������������������nw�gy��b{}w8��Oo�������7��'xq��;i���^�m��U��/����6�d����^x�e�"1���_L$����B��R]X��PZ1���_�d!�W�X���,r5���_-b!�WSX(��V���J�������y�D�"��_�e��W/X���xV�����_�����9�|�jQ+���������R���V�����_d[Y�E���_�o��k������������vM�n:}��+j���F]��1[6��$��4S��a�4��D���h��X��S�EKvA�������N-Ltb���X%|^?5�p����������)�7X�}Q{��p��)'�<^�I09�Q����I��g���P������t����0>.!a��a�0�P�0��B6m6�)c�I>�6\'&����&K���D�&�y���o�I�'!���-'��s�Ip&����IT�Ip&��V8�����H:���MB6�����Igaw{!��h�I�&!��h���I�]	��0�V��&!��p�I>��t���O�k�aS�`�+?�~��9��:�l�
�|��g9z6�*t�g�x�EdYD�EdY��,��NzN|�y�,��2�,#�2�,��2�,#�����+N���'�$�����,d�@�N��;4�,$�����<�N��l�Y�e!���*��"_-��W��,���S��B-r�"��@*�����(v-�8�5/�qI��yE�i�R����T.���\!V�X�����\!X�`��"�,:���"�,��"����=y�����L��|��*B��^-��"d��-B�
��{��
y�V�!O�*d��������B�
���
�*����B�
����������������
�*7�r�*0����
�����������@�:c�����*��<�
�*p�<�
�������:3����(<Fy�(�#��q���Q�������s��9
�Q8��m�#�(7�(7���@�(�F��#u�5�#G�6�#Gy��i���#G]�����{v >��PH���I�R��S��(�#+K�.#���r��Pw ����EvK���d�r]Y��=�<�<x<h<X<H<8<(<<��	������E���6~����
���+j��Mm��9	�I7��&�4����z�t<Ng��Mi��8�n��$��'���iM`5yZXM`5yR#�;/���	��c�	�&j��&d��iB�	�&$��h��&$�v��;���M������k:��"���nr����i�����bj��&7i��6���i������o���3��.j��Z��$!�y�J'����>!��Q�����F�L��?FN(L(�����4�Qh��)�#F���T�D��!��T4W������v�c'��:���|3��z�6�I�o��7
�
��!h&'
�
MWT'�kf��O������F7S4v������
&xB�!K4ff�4o�������h���-�&�y�`�B'_:�b��a
��1L�S2�Q����g�N�l�M�N�h�0��Z���;Necp6!@�mpk���	�7.A�;>�cp��c��?,�1�@ ~���~B�;'l�A|�A��9���>�cP=�i�;���7�A���A���A��_0hg�'�L�
��>'����9��%���^O��pF��'0O`��<�9����X|X K~j��@�c�?�cp=�l�S>��	��2 ��Y�~ �@

d�@d0A�cd�'�jx��1�P����aK����=!0 ����	�\
>�c�9�c08�cp8yG-m��� p'��f���e@��1���
�t!v&'�\�A��@/���1�`I���u�lE\�{��(�������$����@��W7�A���A�X�`�:�c��x�� yB�N@�|�A���A���`T�P{��;d<B�+B�X�!w��<��X�`��X�����;B��@w����zB`��%����a���sX�l��x �����g� `B �����Xe#+NQ���/@�L���/bo MB��#�sA�����@l�`;Z#�7���)`2�����|��0uap6r��N����}�v`&B�;�7-6�|YO%b��j�:p�S�	�a��b��"�&v��&�O��0�w�����H��m��&�L@o^B/H�����Y����>��!����^�SO�%�F����nc';�����Cn�g@��a'�����!��� �6bk#�6����r[O����MOw��$vB_'[���+-��V���	k�h6��t6�HbW'duT��I��@�vBy��t�91�s:�X:�e$v��e��XO�,pO�If��6�(�5��p�	7�P�	%C�q��g���fw:Q�e����!�t�N'�t���@*�p�	7�p�	7C`�,"���N��N��	@����2�H*Yd
��wP
���^���	9�H�)�8G�	�
u����"M'��^)@\��V�1	�J��$j( �=TZi:���R�^k��
z�A/7�����W8����d�^a�KTCBed�v����0M��W���^��+��x/|�X���h/�^Y���d�3v��J�0C�
E:1�3�^S��	��=�j�^���?p����^��:��S�D�Np���N(mN�N����x0�����D���W���;�'��~!��������^�F���8uN!�'�$�t"I����$�H�)
p�F'�m��a�&�tBJ'�tBJ'�tBJ�N�	"� �	"C�q�����K�j���=�2�^'�]V:����p	AAA�g�%6t�N��	C`�EH�P��;!a����
������JP  ���N���{N=���b(��	{L���X���^R����w��NB���;)}'t�zu+��������(������{�_���ur�N����|}���U��6��o�H�;A���w��N������}4�U$C�%i��5���|'��[h��\�8��C�<���45!j���b9��K��X��N<��8uN���+P�^�	�T8��Scq���t�V1��%�����$���w��zc�9'G�t|��B��)pb�P�G����];��;5N�@(��)pB�x�0�Oh�
��-||��;b���z�}�������Q���8�����3���<���K��������K����?:�~��w0�~��"�����)��
endstream
endobj
2813 0 obj
<</O/List/ListNumbering/None>>
endobj
2848 0 obj
<</Filter/FlateDecode/Length 304>>
stream
x�u��j�0�����^,jv�+�Pl^���>�&�6Pc����I�nK�
�s��01i��V+G�;�����b��J��Q���(����xs�.�V�3�*������Jw�r��$�V�U�Lw�M����	hGSR�T��=�����&��o��+����G���,r�a�,a1���3�*�����_5-��9��Q|�6�^��,��8�1���NH�A*�)[?����g����>z9��E�
���'!/Q���-�H��K3Lxj���
����������[\�����G��4\3��
��\��
endstream
endobj
2849 0 obj
<</Filter/FlateDecode/Length 143396/Length1 443484>>
stream
x���	`e����d��;MK!@�&)�TD�B�m���(�r�P*G9�R@A��TPDEE<^���.e��.����� ��/"���gfZ�����w~�=����K��bqQ������)����Ej���d��S =@��!^<|lI�eO��"v����O����7�Jl�<"����k���w�bbw�E�w���#_�h����$y��Q#JJ��s�:�����NA�W �5v��.���F�=b���?�d�w�r��N#����L+92j'�Q�5v����G�n����������3��������'M��������OQ��sx�5����}W����]��Cc��sE����tOn�������3c���D4�$���m�	���?�:�|3���R�R��LV�M���L*�]G�G2re�:V��e�%�&}��������HU�-�")�H
��
�7;o��>.����&V5�*�D�_,������,�yO�fsI�B�6V_^Ak�q�I9J�m��N�$�i�<������*��=,��F���QVv)��
z�-�������su��^��=����1d����l��6+�@K�oi���f��ScKW�O�����;[�+��2i�hI�����Q��6��X��(�*���vu��(k�@��Wb�?l�r����V�K�K6Z#=���z�	��(�te�^�q^G�A��'h�l�f�{PY@)����L�tV��+] �u�����3��y��t�*.���k������@�����W����Nh��c[[���Kk3Z�-�S��Y�P+�h��Z�o{��
���2�|��@��u�<��M1��T����]�~�&��G����5�$����
m���3�����Y��Y��!
i���+����'A�����.���f�}	��&���Ju�8��V�3�\�\��2�2,�4����]���8�rv��\Z��/C�B�#�;Ic����y�aI�h�/��[l�B�l6�az��N~��;�ne
%)�S%����(+���g���oq7�����p�M�Z#l]��HW���C�x�����E��x|
�n�5�}�E)=��O���B��_������\y>���/�����Zk�s�{���\u:�N)t�~	��Z�j.��X7n1��O���R�u,4������q��Co�q>����r�9�Yh�i�����C��4h%t7t����B���*����k4���(�^�\��"zQv�ly ���!�1��^����H��2�EA�b�^y�X����Ku��i��%e)���}T~OKM�%>�}��������c��YK�3�|���������-1���R��e����
+��+t���@7CK��f��H3�
�����j�����f���6h�Y�����m,�*�����?�����0�|�i[�}����������i�����Qo���|��_��
PO����FY�Wn;B�L�}���O�@P���~�<���Epn��u�����M���|�jh���AN��`Z���@��6�6�9t�'�-�rCW���
���3=�
���������\�����m�����N���o7�4������h�v��������x������k�-?-�tX���'��Vw��
-��6�H��?`Ln������6�5��8������@�O��"�!�9���F[�'��
��d�������|M���`�#IP[��������_�6��^
;����������7��:���`�J�H��>�=d��N�<�?uu��m����nS ��3���A ���s(��������@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@�G�F4��T�>�	�5*����A������2#������@ ��b#�
H;s��
�����>,��O�C:�����2�s�������yh�������V�����_,V3�^��w�vz�/3���o3a�������G��!��e��)]?	����Pm��B��57,���|Fb��.��,��x^��y���k�vm�q�������U���sq���9���URO ����A���
��4<7�'FZ���d��b<S�7��4�1���0�5����X�=%<���ia�?;�����_��~���S���d��}r�
�_�{����9�F����7����������ss��y�����]/�������u�#lX3�
�u2�dH�����%
����T^�/�8���� ������P��uC�����{����������y[�^{�
i:�c��/�8����}a��&��K�/X�5}?�����!s_<����b�������%�3}���/N-��P���S&��6~���.6X�c��'�������v6��i����� �A3�->�3}��=	����f|�������2��r�|��ng��b~�����	a��f�\3��!f�TU��-�}a��\D����O4�_��d3~v�	�M�FA���sW 8��������K���X/�Oj���/��'.��v�1�����R��g��Km�{q���"��K����������]L+������!T�c)�0la?g���l��e�'���)���?kZa�M2����M�N�}���e�MO��'�������Jc��L{���IY(��/����)������R�F�^x.)=7~��6}��������yW�K[�{b\�jnZ��yl������W����_���)6��{�K�����{����w���Y������I��ov����~�������{��f��Z��'�T��SM{��y���l?~o�o��y�p�]��yC��������C������9�;w�S���U_���������Y���s���F�{��~�����}��we�%���u��_#(��r����dC�=�5��=d�?3��C�}�gK����7�|bUf{�����y�|n�Q��/�u+�D{���@�4����S�3�W���N����|�k�-�@ �@ �@ �@ �������36b	�s_ycm�W 8���Mi�O��.K�o�
.y�����;��+�@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ �@ ��w�������R�'���TSO�Z���KIe�J�.��Pc9@���r����q;�	�@k���0h4���n�2��Y��8y9����)IYN[��4��6����h�����-����Z��J[���;A[T
Qf�����C����n�M�+G�n�N��*h�����6���7�:y+��L*��RK=����C���P��^���u<]���z���
�G�(i��W)�M1�m�,?A���)F������^D�<[S�A��S���E!�o��6,���h�������N���X/i�u"���@������6��%�wv%�����������[f�:r�,�m��I�3$��_k��?���/C^��`bL��T�H�A�|'���R)���
��"H�i����)z�6��r+��Jt�qe�r]]]�����nr[�I�Tw[���T{j����+��������y�l|c3j�4�L,TV���	�x5�-�#�V������`B0)�"�*������BmC�BB!���jGtJt��
�g��\qa�Lv�1�q���a�{'{o����l<��������Z�?o��w����`�`K��BQ��!��O�P(�������!
}���~|�w]i_�+��`W���v-���9��)��O������g�^w�Z��1��w�}�����NN�����_���F��
�1C�("���/}�������:�%g���jBSi���8S�2�>:a6�,�e������5�Nc�X�3�JZ����(N�o2-V[z_�������9)d���3������N���q:A?x{���~�=����������o�����$��S|����l�__�/��?�����2(�eHr��a�P3�����:�Q�1�q������S�n��g�������_������?�?�������[��������?�����������w��a_�//�h���x��/���#������H=�]�k�]�����}���w��Mj��D�D�k5Uu���E�u�z�:�[�vT;�
��jC�J�	�I�)�iUS���g����j�Z�R���$��woL�,��afX��$3�t��`.��g��^�����W�������m���d*�����H���u�/�~W�7S��m�RaK�74�W�4��QN��w�OC�;����Ri����x�c9��KhX��e4��c!
��p��W���t��#*������4r��+]��q���FW���;�4z�}�E����vq���	'h�D{:����O���q�'L��D�gT�����%������T>�� M����&��C�b���+�4%�1��lq���v���o����Gi���M������L��J��dB9�����������<K���i��	�4�+G�fr|Esg'��nZ{�nn}��
�mJ������x��4���r���������>1�n9j��u|C�9��aJ7�h�H��q�:Tq��,-��kM�2�x��1Z|�~-y!f%-���1-y�QLK^MlKK��������TY�>�*S��Re��5���x�*9���|����������i����e�/��}����*��"�NZq8�qZi����Q	uhe���hU=��t�;�e�:���V�N����HU����<,�:�gv�P*���A���YHe��B�=�v��v�4��cM���=�)�uH�x�mW~P��Z��}�rQ_���%������IN�t1>������X�������i5��U�`S9P�~^�BkL�63�
z��J�)S��
�3���fS�;q[����T+C�.I��K6��\q���xCz�nH'�IH.�!��DCjK�6�hl����5De�]
��	[n�.��t�q��"l%���\��y��j�6�Pj�m�3�S
�^���|���4��.l/C����6�3��}���m�5d�>`%�����OX��{��]h(}���s�����"u�!k]��l�'o14
��a�w/>��o@�B������,t����c���Oa�4���l<�g�k����L1����,����(0�P�����hk&��s�Z?��V�>���k4p�!�o`�!�}�<�����|X��5�����R��>h��1<d���X=�t���:C>���f����7���=c�����������R1w�m�|��o�����av�� �2�}k(��<����8$�]����X�����DX������L0���&R�^�I��iI��P�+�*�����sy��9��uC�!�"X��:V1�b��,���`UC�XX�!o�
�k�#l�!�l�!�!cHmkH�gDkM}��!��PCC*��P#C� �C��!�,���Cm
���P;CjgX��!�Au'1<�r��%�8���cN��C8����5Ww���K���N;����]v�6Y��l���@���2/�,��4�I�4����v�4j��Y�^r��DG�=>.6&:*�N���ZYbx.K��;��i�:kQ�\O�K��q��L��N�'��,��,�Y�%t�=�SN�"M��^��&���u��5NW��������Tk�����{�Y�_�:Z�N�n�S�|��Y����U���D��i�t��g!WU���H���"\{j���EEgrgQh�in�`q���u������>�(�;��4�����HBzk��1��K�X�5p��[�j�Z�a�J�<y��1���'���1�nW���wa|A�����^��#�t�tQ	�'��:�H��	h�|=����)*��z�l�>;w7��L�YT��'�����9U�������C	F�pBS;iV�	�h-�D�E��[+W���bT���dP�&���z�}y�
��{@n�r����/|�\y�\�����zr����^:jD1_&������N��[��6O��k�(=c�S��K�����.m
�
�u�+A2\����nh,��#����i�Wc�R}rr���9����W��z��+���#n��5���P��q��Jx7��\�F�]]�w
���W���+b�S_�P�7��w���8����n�V��+VT�qKJ���22N�������O'-�@7T����S�[d&��j<�8���m�;�jV���Wo����8����zYF���y�N��������d�����If�(S�y�i�Q�>����U0��R\`l`�f�Q�,���#���|O~qEE���_Q\QR�3����T����(�+v�;�!��EN-q�W<���$��������k ��|����h�q�v������<[��������>�����p"9]��x������Z�m
O�b���~������|��E���}��j4?�z��h���{hQU
CD������h�s�d�1w�<gkuNb_�3�:��z�s����O����\����2�����Rmk�x��fkmNwB�B�)�!�)�P?��l��_����dE�������5K�����"W\<�7�2]�|�����+�g'9�4���$�N8K�#]���5���WQl���n�����7����{N�|���{�]?���������m��V����X���_���S��vk/=��s������s�c���\�U���=���8�e��1�����_�s���..����4E\-q[}�����i�"~���+����bud�<c�{��Sbau���5'BA���������h����Vg����9�|H�q����k}���������[
7HL�T��h�y����f��*�T��#.���m�lzy�f<;��s=A��b�����
������4	i�����O.�-+�=��8 ����r�S+�\U�N�8�����������\g�b$w��/���/)���]�i��Q���"�P"_��OiT��U���H�B�S���MG�\.<�t����4�MK�QfQ���B?�U�V������-=��(nVd�(k<�A��bFE��}
�k���:N#e>u����8�L2V{dt-�r�Yb�����A�����f�;N��GiaCiV�� �+���U^�%�L�*��������[�"[��u-��`��D��uue�e��x��V��(����*��g�;��2<��,�����72�*NO�������'WT���\�/[t�Eb�z�&6�b�pV�FP������@6�?+dE��/�����������S{�cH��YBX���:J�2!��g}�!E�1l ���J�.�HV����!��'����T�f�����
QJh��L�FY��,b�M�)�5��xWR�o����YI�������O��������u������=���)�����2r4.#F9�#F��P��������C��n�5���������M�o�<�Z�9�*�\{�^���)��i�M���m���������O����+M\� $�V���)9�EDd����
���yM��Y{?���>���W��{������e��K�7K-�CK#�%K%���Ke�2h�r��y���Z��]��r����znp:�:��?��_~��]�����G�k6�i���]����Z���n�/���+����7F���f�n��oD��y���e����<O���5n���21�Ubb�D���������f�rf"]���8�I�����l�'���m��J��������ZmQ�b�"&E��-RT9����O��X�m�R��+K���I�HnK3i�@o�qR��at��~tb\�h����l���2��f7�N��f�f��e;���������j��M�=L�w�������w��]����ZD��������t+N�M��{�v0��������#�{�������Z)����Hk��
�������t����I�u2�3�5�o���5�+�2��s�3�����i��S~��%k������G������f�3���@���m��B$�����ug
�Mo�X��*vS^1.�\��F�D���B��+)��@)Cx9�����N^�CC�%����ArHW��������9j��F�f�����~��f��k�A#���c���	�s���Yx������������}z�/�����5y>U���{1K���*������3�c7�gk���M����U�r�:|_�����L�h
=�����N�E����5�������y�i*��.��)�p/��������#�5*��O��'��4�Ji4�6���
t-@���X���>\S#<m>-�}��P������smYE���p�v���>�Zh����:���a+���;�cUH�`l&�x*�E#_������"a��M�n����[X>\�2d`����;�������9~��1B���,�~��$�D���>c!e�l�|���(����7o�d���i`���������sJ�c
�D�V�P:���[h���De9B�h�<`��<@�wde������i������sRW.��&��x��N�,��d��(1��fu�7P��m��GG&;Tk$e��YY���f�A��[v'�eO���n]Y�y�-�'�������?����
_cE�S�Y}~�"��d0K�	�93���r�dcf������+������t�	��1]F�9�W�����_GNHJ�w�=AM��G���E�%�KMWi������eK�
�?�������{��I�;~h��~��������6nH��{�Z^���������������D���U5��s[^�&��,x����,2���C;�>x"����<Zx0�������EN.eel���u��7�[�F\�����������CW���e��L8t���y�_8�,tKh�u��0�	x�J�sG~NZ�>��S�uU��i����I�F�g{�F���/��������o����
�I��n�/X��87�Ry-Z�>�a	gHgG������QV<����C��'�����������_0e�9��l��w��i��#��-����3����DMP%<�5�f4$�u��HLn��$=Bq��*�w+	����z��<RD�t�E1����a����(+���<nG|����|�������x��i,�S�-�|i|2-��,�U+L����H��=��*��F���/�������u���UO���$�<7!X1mp����o�L,Wu�{{����%<��������5���o�j�����]�/�r���s;��a�w��V����F��M�wk����7��?���&�g����}$8T
�l9r"TbN+EnW2�����S����|	@�������.�1�0����+��F�Si�e������e^���������X��i��+j�"���*�6�J,m���9������������y�9��{~�Y h��S���n�|�n#L9����{���
<$	j���������\�T�y<*��%�LuR��"3���f%�����m8��0LY����!��W�
���,k���7H{���l�Z)
������ K����T�M������r�������|�<"1�9����$g	o�+�|��FmU��
�i9�lA��fM�-N�O���Nm��E���m@T;.$���.U����7+���e�����e�^.x��N��RH����������O�J��}0�O����AJ�%�����e���%�K0�l�F�)�4v���r�3X�	x�|#�.v��
&��Jo�z�H��Io�.�Q��f��$3s����Jl����{m~�c�Wp=�����
�6]4M�c/UpM���QqBV(�.���������r>0e�k��0��`��:i������t�Y<��`��t�	���M�0s��������I�oy���E��9F���O��������*k��8�2���p���v�I������Tn�����Q@����l�Z]V����BJ���Zc�F����B\F|�><D�&0�������8E�C��Y�}���%[�Y�i��}{�������/Cv��������W�j�����N�5t����[����g���w#j�=����B�X���X.�T��#)z#���h�����s+�pW��$��k��?�����{���������X���5���a�#5�[l9jj���%�s��8�\��*����N�t�Qp�v��p�C��T�GP���?E�a
�u&��P��;V�d#��N'�Y�!\��/���L��.��S���s��o�I>�	8�2��S��������N�����-��0)���)�����%G��RMf&�d EP����@����j��LTL��=��tm[�%������)�7<<R���+]^��]���v����9�;���������3u�����������d!�
t�,
!H�tb�����,��#����d���Q�_:/�T���T�W�Y����Q�	u���"����J�<��=]������BRh{J�����3�:�F�]��l�(hh�0���4��S��������gSa�O�8|LS�A�8q�}Coz��������>�}��u���I����}u`���������5�����Q�'=�\�M/�z��Yk�.�}�N����'4�s����.9�\�s���y:<�`��d�;�Ph���W
��m�Y���+9V�C�&35��@�n$a	��9���{��d@��FHb���O��t��9++���W�������
[���Yw�5�W���mF�{�_{�9{��LPI,r��$z��!��0�V�+H���t �K�q����U�J��7#}(��]Z�Q��6p�0���W���I�o�{����
���bz�m=H�T�2�OF|=OI�������t~�#�d2Xm^�P�Xm��g!��
������c�1��-"q�u�Dr9�D{�:�+��'��1��������4��` [����"��.��t����]�7�����L��m�l���?]5�d��Z5`��7#� ��J� dP�AV�"�~T�Q���.�a��
��u�����UO)z��Y�"�y����m�s�D��3�G�+Y�����6c�>��&�m�P(��-��[l�b/�+�]��-����Sc}�BJ�3�L���]0�e&RdhN�A��������Z�6���3KGu����l��-���o�t�w�@����>�N�:|���Q�������z���S�V�R����`^on���S�_b��)!��T,�.{��w����0bTcP�p2�4	�����o$`2��V�I0����#k<�~��O���B<��b����zv�c�wlpg���B��-��PQ�bA��XF� ����5�,��8j�G���a�A�4s���CO����N������XO�W�@�i���bo���Q����C2��A�g�h4���|��J�p����)����n:E����W:Q��T�U��j�ir�bIR����	F"�+a�az�
�MM(&Oq�J�bu`�(��n�P(J��	i8Z)3�7���!Fs�Nt���8�d�].�-O��NI���������[-������p��cV����g����������x�3v��E��S��n���d������"<[);�OR����O�1��|=@�N��"�DCf����'�A
_�RvU��UU�TE�W��	u1��'`HWk��)���25���3�#L�>3L�25���wr��V����^�v�&���Zce�5�HN�,+�L�y��*�bj6�0M&{�*��������\Q������f����3�F����?OX�q�:�8�Y�-�HB12���QB��j����i��Om��+�-����UU����p��L��t���fG}�1���9d T,�bX��i��~��#���5�WE. 
UG��b�[wE�H��E�:P�#��|�<1�0���W3�\32>:��t������8�`�����u����8����hOY��{C&��2PE1��b����;6���>W�+������I�DcG�"@n���V� �j!HC�<^��]]�����B��+5�jVc 7���m��5���� ��$$POc���
eE��Pi2��|l���=t�[�0��5�+��bMhVb,��(yV���$��.���89$������F7����:U]UG��������.P�:k���e|���(��#��J���T�/�=�b�\���N�<�b�k^ ���g7��ZM�����jj�hUQ\��=���H:�T���`��Uud����Z��e
c�}5+$xu���l�]�cr���T������$�QmRL1b��L�9��]�|���^C��k�����*�-L���_���W�v��~��O�����6���u���6���4��!J�
w�2�<����y�T��z���Z��V_Q���>�r���qI�<�>��P�0�����CnnCM.:^J[��pN��Q���50E"�v�|]L ��>�4�YW��(V��#�x����	;�V��|��:����?Q3{���{���Wuq��+���������'��a��FOlF}j+�2Ae
��O���h�8$a� �������H�+@X���IC9���)���[,v%_n
� :
w"H��c|vB��Q?��Q������6��y:�����?�@�����1�����
"���r�q�����"=��X���
g�4�H�^��2D�E���6 T
�Y�b�"�y�R�A�����j�n[�n��O6"�j�M��x�X�2����#���C��	��g����h���Z�CO�>�A����l��X����mX��������\ �Yd5NT�a:��Kh��Km�]9��&S��R��`3����<D���!��5{���S������A>
�� �!�c2�\���Y��g�0�=�����]|o��EQ	�QE�G�d��h�z��0�'��?���(��I��I��b�K����d��P"���&���g��y����X��zAH�X�(��&���z�D�|�,��D�+�����^;���36)��t���+�}�����{,�{��<�oJ��{�w��M����[v55������j+tqB���
�=G�Z{I���8���`-�h��������skwm�
+Nj���`KE�Gv7��.�S�������n�S�=o�Z���*i���-g�R�������+��C�#��:k���R�2
��6Eja������G08
��G�~���5������J��b�����7�z
�L��n��)<}��7�8���w�����w	N�%�V�Q���q�8��xy�5j��]���M����v	��:>T	-xs��U�u�����i����T���������iyo��`E����uG����#���CI�;6�L�L��.����d��R�lS�����Dt�?At��F�N�?�
�FR�c���Lv������G���;w��] K��uM��+�Q3��_�|���i��M��*w\hTJ�JL��b���b(0�d����5an������ lg�ac1�-��Q�C�M{����&��<F�wb~���)�-����C��W��Z�R�����x���a���s�����D�&�LO��)�+��>�2�D��������b/��za�2��e+����{<��7/���9�m���_Vel�=o��2H^����TO��ut�Qa)����kl���r�����B�&]����D=����H�������M}kuee��U�������c��/�s],�nF�4��f�a3���-� @d�.�P��X���D����XY)���/U)��J6.iX��a3)P[��b�)Q|\�]o����AY�:L��+�8�|��{7���_#�<=��l��������^�A���hd��k�)�� :�(�-��E�ADn.���-�V1C\���������$�c*�_g���Mq�������/E�2��mu>'�:�Pe%���C1�%�%#�s{%����i1
/����H.@�u�8.[���&��	6����+��5����}�{�<8����Urep�]3+++��=s��J�o�wvi�{�����/\W��R�������jr�opta��������o��.w�@�lf�t�#��O�|#F-g����^*���q�)W���}�6��<|�����~�xv��w++�}��^r��f������b�����>�l����
�b��� �����r�E��rH��9��_�����CUb
�sS���%//��rK��yo���g��SG�r�SXF��b��(�3[�&{��j!�9����b"$�9Ei���Rl�)�Un���b����+*����
%ioA���z���e�����Aa��1�ZC�s$X���x����53��/��}J�_�mi���9!e�}KW�#W�4lr5��?����,���;��b5;z���7E�q�vk����v8R�I����^M����yvn~-��9��L�0��F�n�&�������w��e��Zw`���f����=^8�ys�J*{�����t\Iu���uk__����}������ �BO�r���L�-�6��Q/�
D�Q�y#�����zm�E��B��6��+����UL��
^g�u}����\0��)�^lK����'��Y���V`�F������j���I:�P@,�XCA���<��X�F�"���-(�����zk�����.���|�N=��,���@;�4{�WHO-��N%���2F.�`I�,�������qd��.�A�G���[���cQD�<�-��v�������uS��E.���i6�[I��'Jl�c��5>.[D�L$Yg0�� ��W�qG��s�}�6�������O�Y������J���N=��#��X�E�
�^����@lx���[��jx�G������q	}0&��=r	�B�d����*����`l�)���s����X;�O�7M e�8:B}�����oZ�r��Y�y�	1�(V�$��E�d�vz@:����
�/���uw���N�P�B�BR�v�&�������-��Dr�8�'�j?l��z[li��\���d��x��+ $����un��Z����$��h#�q-�eN=�W����9S�����^����]�����K{:&��J�n��i�����x�[D�f���l�A�����sK�5DG�ph�6����=Dg��W���m8X7��-���KS��-�����}����f��hJ���D��&=I������>���mo��i���+S�8��������B����Qa~�M�#���N�-�@ u@r�����!�w����K���G��NK-��T��ql����`m����V�.��uSJ�?���$
��I�����$6��a��z����)k_?�,���;��l?t����.�l�����L���0�w�[�
��������'������r�j4?Hv�\��le��o�(x�^��z��/J����������o�&%�������Y��b���`vF�M����r��r��W/�]��@x��o)]���Tq�[�hd}��3�i������@���3&�[;��]<�S�Ey�t�d@^��X%�KN������n�5J���I�Ks/�V;����e����w�.����t�zdV��<f����ZBI���?6����g����_�i�L{b��o(=�p&dt����8l��i �Ni�`��3'�)N��`vREi�m�G�\��A�.����Q��O��@J����G�}�/���&�g�.Z=�_�'�K�����>P�rQ�?��}�����s��ze9��$��+]b�N�tV6���YH�1��[�}�D�}@x1?S;��^u��?9��8��tG����i���,�lf:JM���A�0�n���Z'��R��9YYZ[���+�n����|�l��!��)oY���^S���p-��R�Kh@Y��jK$�����L��l?K�z��*�M�������mX���Z��Af�;���L�������0�/�yi�]G����zu��SO�>4@B��RW���q�������<���<V|Y$��s�:`��7���T�1��,�Z������}�F��G8�[�Yq�H<�����e�b��bS�I Db��1wk�y��o/��'T]Xx������O�������u�fT���$�6��[1��������
�G������?�:�5�5�5��|&xibiZ(����KD�U�X-��t���8�����z�V��F����5�WW��Nm��������WDj]����~��B����*����8vy�����q�������(M������J�����Ii����J�v�������b�Ni�M������	�a�&����M������]�Tk���i�O���Es:���`������e{��P�D_�����2�tm~~"�k�S�������<��lh�YC�-�?�K#�Vbp�)i� ��5���E�2��!���G�440�)�w�AAl}"��u����k����0�f�N��W����+�n���d�9��(� �b�:EP�M�R��k������e�#�EN�b��;#�����:�������J��Z�����b$+yb��'��K����l�L-=zd^����{^$���~���e���3fg��T�.hG��c��!3{���9��2�#g�c~8��lv����d�������`,+B�}�uj��a����v�h9mJ%���v�z�Q������Q�+N�����	3g$
R���|m��K����Xzo���|0������������\�z�&����R��R�'��gt:���#�{�����X���F�����g��iK��Y|YZ-H��p�m��NO��[�IYe-H����3�
1h�c�����������82��������k8������'Yh�	�i)��_�@Y��������pT=Dj��MGi��<�L �t�L�����	I��}VJks�����$�G�.����a7���u���[�a��`��hz
g���e�UC�k�(��s���oY���w>�C���{�c#K�b�Oxn�C�"v�W0��plI�;��/^0������������3o~���������$����!C�I������9�r��g��d�+���!��d�-'�Z�^����
t?d��b��{����]��5]������C'$k�\�W����Qv�}Mn��QC�=������s�>ZO~C�%�M�������qB�w���"���
����p�{e(������{)QD�mft$��=BK��c�����w�*|�D?�d��(�����O�[�Z��L��>)F?	��Lh�����=I{����`i�����������NQvV�/{#�K�Bf���V&DeY���U_9�^8�J���������w�\4�� ?[�U�qz8r�$!d�&�P~�$�>���<T�h 6�Ozx��G�����&����}��&B�B��l��8�x%���yt�	n��et��1&������F�� ����N ����c�j{��t����nw&Y �r��X,&�S��"�T2r�Fg���fb�����l0�>�Q����+_�z������~��vK���n�o�>[=n�������N���>�k�����'��������$�����"HBwV,~(��^R�;	��)���i�FI4%�R��N�9��KH&d�V$�������:t���D��$��}bb�<og%��>�l��rg6d��of�[k��E�.��i�WP{	�?����Q��4���FMM�t�c�C�A��"+��C��+s?�M9;�����������6��*H��#oX�>^�j��7?1%���������k����\d�0����W�p��[�*ldM��i���v9���	��_�~��������Kz�n�?|7�rV0����r6!-z7&����O�k��Q��1���1���d����7w�Y���z��#�v�;�ud��>��"�������r��r��9/.������`�1VFc���m�o������_���	V�%+�����wm�����o��2��HE6]��K�4gg���.��b�#:_c}�m����'
m����&�OK��t�n�k{�dR�����v8Yf=�A3
���$n�+��i�������
_��~�s��ATd�_��� �^��&~���a�E��K�]�1����Qek7��^~m���������o���;��YwG^��?,����d��=��crK`���/��:������K�Dz���a�c#�gI��hr�#���wS����h�����x1	�!�Q���H��t�����
��
6+�m��Az\�w�v$��'e�j,��l����H��6����bT�"������������M�
����N��(�}����s��f����W�.���g��.�
�{4|�4z����U��z�f���$��"����@*	���Kn._GU�=hJ[��-9Y���/oj��n��DS�����*��9�6��v��7�D4F4N	�b������fv�c��_-�"l��g��wFn�$#�.t�<�B�i�1�(�xt	Zx	�)2�{<��YV���]
m?������;
����j���(������;���-�l�i�MBP�AA��>��=)��@I@!����Z!E�
�"�'���of������O��{g��3�S�|��� �4�{�eq�I��.R�L>Z��{�n���]�2��K
]�Lm���|d0K@,�:�FS��{9�G��"=G�v�2�QR
���~��]'{c6�O/Ufe�������d�/�;�-4
�\��)�X����yv�D-c��`��b2���'�25g
'P����)l�M�t��t���N'�n���
�'�*��s�����\��j:r��h ����gG�l�--N�3p%J���eB,����(F����hv�3�}�Rk���4<��)�kL������3��6��������������\[y�|�|R�u�O)=bN���xu9�����9�����+���`���Fl{d��9?0��er��6�I�"�a�	)���Y�L�ld�"aE�:�&�Vri�E����rf��m�[^�;����&-���cNU�O��������7�(�6����
JvD��h����<Qt�y��c�I�V��������Zp�<���������&~�����J�%�I��S����V�$����X<_H��o��l�>���M��eRO�t=��X69���������c���4�q�s�qA���#�N6�G�k�TK�q���m���5���T�cY�����En�U~���e��CU	��|�*���'����C���Yl�� �NM�z���Ss�)���x%\l�������$���r�U(:�,T�j�z�Z��]uQ�QH��_�)|J�'Q_�G �P����m3Df{Pvzz��l�4r�-���)7*����:f��r���'�����n�n��]f�V����^��ay�\x���y�\������Yc.��������B~[=s����������x��y�wB�?�|s��Ig�/��7jx�}��C�����9�b+9��<.�@�J�eg����M����m2[M�!��R�a2(�����$dj���8�K�
�X�4����I��}����*�SU�n|AF�3�Q��������.�����7�Y_�%�.}�^&�q�ol���c��lw�o+�0����p
��k$����0
��2��+��H�_x3��T0V<'~�V��l��k�8�3���d�H�0P\���%gq�;hY�i<	Rk�\����qXl�����E�
zL�|���r�[2�@�QQ1���E�.;��lok���J�
� `AQ�����
���07[7����d
����@���>��~���[PT#��h�k�����*V��5��@06`Y2�Of��A���#$r��V���R���Jdt��J-��G>vM��^}�������
!��P<����lJ�f"������@c �X+������:��������NEv��l��T��Rn��a���a���.N��������G:/���s�8I9�.��/(�5W��m|�'2't�t|l��4���T]!?���=_�3a7(#�r�P��%]�������_��Y,	�Mi�`�D�.��F\���J����]�f�4dGcZ��\G�(ln9LB�������wk+R��|GV����3���?N����>�v�| &��������a'76[0��`��T)p�qQqo&��!��c���)�BW�1~�&�$��|F����+�<YG~�"}�{W�+A��e���9�W�>,(��(!�&d�*�dD�������Jc�Uk�fee��+�����������F1�P0���
�5�t4m���(,��A
HA����J�S���n�a2~�~��>�|�6@F�����J�y���x���VY���l��+��J�-�.le4]U������5��Pu�K11����n}+�Y�����1�����!�-?�������"��a�o����i� )�B�T�yP}�i�$�\VC��_R��
�4AQ&�E�$�����`*}��
�Y����52�kYJ�����%)d������T*[g e+��WT�x^]��
������
I�9�
`��k&��k���	���a�U��P�2�3���=���x���2�X/��\�2y2�a2���������*+�X����)�J�����`�1}
	�:�L�hC����=4zF�q�3|�� �HW�z����5�;4u��M���0&"M��l%U&�v�F,�������j]��e�+����\�@��ZN�v_�ab\�FR�e�~��k�DA�2k#�j��
XAFXD�m%d{%�N�R�����z����-���j��_�3�N�D���j9�B�$����	DQ1T��&}�z�L���V;���!�K�� ]�v�|��|���[h:z����~z^�]��.�AE1!,�T�h��T7a��b����X�����=$���TRp��Q"�.�����^���)�v��g�
�5�@�J	;+���Y]��`��Z*\G����V��d�OY��.��GX�4�d/��Sw�9$�,;�8��E�qU�Q�����
�=��3
��+�����;����)��9�i�
>�jx(�%��~sN�<G��N�.�v���lA6u�w�7����7��BCYY���B�����HIi�P���^��R+c�4;�N����4�����*�s�����L�m�a������Cli���["{�o#�^O� 5�8yI\nvb3���(W�W����$i����)$`g�	%Y�hE���_n�c�R-.R��'��EsU�����h�>A������g�/�cz���s>����p�Z$��V@f�����I5�Bm���}#�C ^�HN�w����&n���#�(���(oe���0��%u��_cEE1F0k
�"��������D�������d�����x���I�3r�����2�s�-�FN���$�*��d������Q]�>��[����/�-��^����n9p3[��J� ��RNJ"D"���@�
�qN]���@-�9���B��
���$S�W���;��3���;F
)���(""�h2#C��9�^��Q!T��������x�k;��b��d)�����z4
�|o��4���F�9�����&��5�96t�gh���<VK	�!EF�H����2�����VG-���E�WQhk��5�R����T��7tl�7R���H���V����DsJ���o�AK��G���+o��wP����Z�>�YN�V�u���x�\�����-����tP�6�Fdv�$�d�W��H��%�e#�������^���������*�'��U}~���`�^rV�{�!��@,lE-�E����Y�����%��������(j�A�y#��:�F�j�OA�����j�vc�}�:fm�NV�+�G=�T:��>�M2���'_�NC4j�d�!<*�Q���UG�����$H^���M@�<�V�q�Z����M�wK	8�~@Sp������2Xz,��3M&��^0�"�X)��G�I�UYp���m�$��%	}������9����R��M}LM�M��&�q�=�mO� 1Ot��sk�0�Nm���N��(��i�>���h��Y���/_��'}��o����\�yXi�o�o?L&��C��M����'OZ�R��[�INg>4�5g�������A*���LYn��EvP�����U��!����z���mS&s�P;�����Bn^O�O��/���q��/���U�p�W���N��Tu���gv�R��W��O	DR��Qs��re�	,R�\6�[@����mI� �1��f@�s|
�!����f���2<n������;~]�24�>�B�� b;�|9�~��*Y;����S�1X��������@B����M6����Y�`�:��v��r���s��J���/%�E���:�����-�����f0HEEo����O�R�YJ�u���u<�te��N�EVQ{yn��� �VK�+�1DN�z}��l��5��g�+p��M5�
��T`fb*K�VPS5-�F_��V'(v����:'�n�/��kO,24�9������S��^�'�+����������{�Y���fW�Gh�"�I�2G��V�{R�:�6�I1�f�����N��G��V/l+��,��dh9dG��'
����[��!�$���?3#��k�.�HO>>!+��N$�N����8����Lxcn�i�@hZ(����F�����?�{��1�G��H	Y�O�-�*������*���q,�%k��Z���v�u��#�DW����5M���~��x#��)E���#�o�|a�0+�{;�}o���I���P9End�|t��k����6���G�����*�F���E�l��h�6Z��`���h,��k�#�{�������.���z��_27vS���K��}���=p��K��>�;��e�9�^��������y�+H�)&H]u
��AACN���a�3v_����j�`����QG�A�QO�-g�����J��>��J���Mdpu��#�?���!<hat��\N,:������x.V@h�Sb������w��k�>4[��@��	��x�T�_[5����'FNjz��D}NY��&,L����u��g]�����M��:;���oSg�O�%E9�J�G�a��P3���RCI0�����?����Uq��J_g�B�A1g���it�r{��)B�@s�0�x�nC�P5J���tG��
i�971&���h��{l��:��N��n��1`�n��R�@�����y�+��N����O�7�>�j���YG���������5��P�{���{@}��a�=��a�-��'w�C/��?�>�=���L6mt������}@�sc��El<��>~A6����tt�7SfQ������q�n�)u<`�i������T�h��e�h��� r�����A+���7��<�#��jr���[_�� ���.�$�^;��@/j���5�i�zu~Y�G�3��3��d�:b-x�$��EO��D���5	�3r�^�����H����wf�F��Q�+��'�L�Z��}�g#�H�����f!�uSki�[]�Z� 5��s��\�RC�����s�Q�����^�����������N������<����l�h�C>%��^�S;t���Uhpv�$e�`���q��f�)�WV?<��O�ju�N��zd�W_��$��8�l��:���ZEGk~B�p����,�'�)g�;e�'�}a����B�="1E�5�E;�����G��-Fi�(�y�1 c�%�	]j�,�������F��_���l=��x��?c�������w-;������4o�����Hg;��W��XL5��@���o�+"r��Q(���NoL��(���|�[����w3�en�}��+���8j�i(�^M$o��}���/H����&%N���6M�eL��u���Uw�	�O�/x��,.�+��1.#A��m2[�1�d�.���.W��������#����e��$T.��0jQ�\���w�a��i�
���P�y�����u,��r��}�����#>�F����B����Z���q���X�$��i�H��F�����Q:��5N�5��u��qo�b6&�z���	�-CO�x�3�$;��&�o�TL5�(����w�m������3V����w��A����#�)9��@�]�Z=�87�=lNk�R(:0��B�������(�B8N��\����2�s3�|C����[�d���I�$�=A�s}�N��,!!�"AHP)0�`��#;+��+��ZV�@�;�)&�&���A����x����io��1�_g��q��k#�N���>u�V���P�<���g� ��%l@`�X	&b,����C����[��t"�d����`?��n�t�F��q1CV�G�[�_���l�>{QL��~��(r�t}%�hr#)f�����8��@�T	�Y��j1s��m��E�[���p?�[G�=n�0��	)��8�p�<��uV����&�M��^���l(�z�mA��������h�&�u�C�9�H7�A���l�(����Y]����� �G��^��Akx�z&[�u=;���
�D��+��}wa~��H$�<<�`V�*��n}/N�}#�D���6���7�Op� ,@uUFW�#<����3��0��g�W�x�������W_���-����l����@�9*L5�����g����5]���Z�4��#>�`4�W/g�-�zC�u@���Jt.���p5��+�FG/=����Brr��`��qj'�Z?�g����rK�7p����^����s[g����%��pn����G�s�W�p�Vk�,8.�������s1 �s!>���S����tAl����*u�b��W�����V^[���ku����}K./]o}s��S�?��������I3���33�f���>��!�����?l������'�]�x��t��G3��f���M�$S��l����C1�Gm��PQC�U�G�q��32b�n���Q���@�B�����!J?���?,�Xf��]�k;Ay�����t�����dwe�p�wm�+x�e?��^�	��<��U
����i��@`HH��������H���V�'>!QL�s�������9V���p�d7}'y���'����rt���WZ����gX�X�7����"�J���U��.,S"A�q~Z;g�6"�����<�l��c�g�rK���'�����6X��L��k�4�����r�[�
/���������zw@��{�
�Gt.|��R�0&��e)��$�x��o�$��dd�4v��lv�=��p��>��~\*�����)Ia����T��i{�f[4t��oa��AB�n��c�I��Rg�p�.�1-�*�n�{��k���'��6E^��w��y��}���\���Xl$��R�$�5��<46Io��6�-M��l�*���d�ns26�,����"��@�������Q�{�I��������Z�d�p�7E��J�$w�{��^���6954_\O�U\bS{�)��q��l��XK
�Z�����.����`��#*	�Fj�i .!?��~s����PHu����n�
W�;��_�hU�@J�-!�v�8�N�p���We�������u�����8u���8ry��B*�z���uW���[�vu��W����QsYql=�Vw����������L3�J��[���'���3�r/�i��Tgd����z�3)��3h�S����/����-0���+B��ad���ApA	�
�-�9u��{T�B�l���ISq#�Q��u��RN��~�@�$�_�p���m��v�0J��f1���Vr����A����r "�k��O��	^�N��&���`�M�VYZG�`�@fE�Z�[��O�]�2���m��t����-H�L,���Pf�(�b�98c\�����o=S����F:�E����U"HHH��1�9��������;-�������T���F����{�(��������zn��W�[�����m[7�����O��5���o[[���A��������i�"��r��/`�(\KzAb�����I�rR���M0[=/V�	}����l�B��I,3��w���7���=`6G*�@Z��<��;�P1�����_�Y�\��%_�mt��}������J ���'��%�
x�F�����{�`��^i3���_��}���W�y����4�������W�*�0��i����<�o����a��/=��q�z�aZ��H������Or��S[����4����YG��s��x��@>gVE�>���c7�1d��_�V�&���@����e����&%�������XU��l+����C?j�Cg�����"K���<���mt���W��,�^{�.�x�Np:�
����D����kb���!h
�����q-�-���h3}�k����;�����~��������5���������L��-D~��8O�����
4�K���;�kx��i��@�|
�@E�T�AVj���71r�Q	�rp.�p��)��)_������I0�,��U��ne�a��KG���}�@��8��&���!&(
1rv�9;>>�����K=���!����!{�.D�!��
��>{z�
 �\%���O&�xd��?w�>o�>���������Gp_2w�K=�$���������k~��S��X���T��� �6EEE;��n����=������!����<���!'��$:c������<�����d��`��]K���
r��j2)��u��\LAA�f�s��{2��mhWBV��9A��:���A.��2�	u��<[��������y�u�b��2���s����e�}�}h*�v�����n|>�,�#������0�����x����z�];�����S���?poR��������[���0��'�D���#x<!��^���}�w�3%���/�N��o!?�&���` hu��� Q�s����d�
����Z�g��ZJ�]��Td��ya9�c�J2�$*T�F�{r���9����Uh6l���7�7l��7����<��Jv�w�Z���7�
b�d0�B��Dh2BcB38���K���=W�u��^�f:��Jbu}5W!�]H8��6�l�h��=�A���j�^||���[��9�mr�]��{�
Y	�e�R)��f�'��=2�� 6)��
?c�6ok�Xv����R�wJ�
�^&])���#���N��*=V���q�[���������������#0�j��:��s@�12%���� M�5���x�
+oo�>b��
���'0����j�VW��v���y��� 5��!VD���tY6Ih:����i������R�[�+�GT_��C��q�y*gE,�z�e�������]Sx��%�2�
���
:�����#G�o?z$��m��K�~r��������y���(
�Z������m
"��yw��{ug�X�����l`�5�������}�����5�~��k��1c�h���;}Z��,�	�FE����bBP���{��II���zW�2�J_+��}#�l�.�;���C�>l�����$��S+�<��Q�<oU_��Cz�,ETBmj%7e��~��]d$z�V���Ck!��d���3����GY�}���k���!�&���km���L:��dg�Ln�'?�X0u%�J����^�-H�����Rx�Z�(b������0������d�p�F��I�NgBt��"$d�R�����������Wi)��p�u��t];{���*�����-�������\�T�a
P��_������1�{
r��"��c��W�������w����e\��;I��He�(B
r��J�=�s]�OOa{�o ~��]����w)�9�K1��jA���LqM���\�����Ss�\��:.%�U���
�-_V��F*��&��j��j���J�;����15�`'O��D�uz�!�3]�������;�B0�b5�!3b*'�*��	�C'}�������~�z�OLcZ����KW����9:�L��@�' ���QE�g�-�j���P��p��H9�t���b�A���)m&�����_up^�~���������������0��d�:
�H8���(t>�1�_LD����%Qf�`4p}�����u}�����������g�������@x
�
�����W�E�j�uQ���(�"*EJ�*U|R+��ZK���m��Z?�"���O]�k[[������������1���3g�9�?s�����_�%`�A�������H��,C'�����M�r�xV�r��
�u1�����?��|Ft��+r��o�����v1��s��
�b������8S�Pd����#�5
����M��x.�9x��3Y�C�U�0����������5V����d�s��fE%���X,S�$��G���|�s�~����@��k�IVgR:%?�fs��������_����`@��<�rz���������Yq�����}�v���K��\��/f��q'����i��/��od|V�����;��Ya#��Y�~��h�W�F�F�)�p���D	[<�J������|w�����$���Mx���x�&���]AZ�{����*�*�B���nE��F0���wih�'�+6�w���M
\����\�f[G<.�!ZG��	�"��8�0�H��T�&�*]I����8\���Ax�e1oi�&a2i���S��Q����92�;]����`1igi�����	s��byM�����?L��(p<������OT��g�V��o�!"M��#��	�0�&��=�F�H�
�6��M���@���dG�JZ�_��o� ��_Q{��p�~���'����7�@��U��,�����}�{�����)�/��D(B���4�Egw��������~\8r��B����m�)�F��o��F`1���9��ML��I.�H�nwS�?�i�=�{
�o����k�L_4�������S{&wa���r����{�j���4�$}.E�������Ju���D��$n��.Z"{��#~�)�
E��!���l��`s��H����v����j�DW�V��NRb
Gp�#]��^(1�2���8��-�B�����k��-��j�Z�D^�dT�=e��������g�����<s�~U�����G�^S�{<j��?	J+��6�] �X��������<}N0�:8�|�l���Ku
���N��_�2)?c$X:���"�F�OIx'� ��n#152��!
s�>D��V�3D64��DZY��IMc�����W����+W.�j��W`!����K����[~���.�]-���@*>�O���/q.-7�O�y�������D��d^��]�Q��i��$#���E���`���.����}%3���@�l}��@�
�I'�8�^�j�)�9����w,,NF���R�p�jQ���,a�c��mw�����U_=�n���Y�n��z���UfO��^�g�������/�^����^��0��1kgN+J��s>3M
���[��8�&<��d��s���q���A��`�����i(�p�`���#8���^�F��{n��,=��yY�Jq��oMPY$�DFB�;E��"��4#�����_ep(��{��b�-`�����W�Y���x-t-�����F�TU��o�:��l g`JeUu��O�e��b��Z�R;�Ot���\�<�Kz�����h�������	� ���pC��Uz_e�q���nn4w�|�\���#�0S>I�A�T��H��CA*�����?���������M�i��P)Ve�b��JZ\���JQ�S��9����6�%��+��X�?��T�g��O>G&��<�H����E��!���jQT���nU��
U��tgY�����%w�5v�R���+{G�U��y�Rg���]��
�����n4�Zh#�rG%$yl�H�UZ�N�����
�kj����a�?v�r��)�)hpf38;���}�0t��gD�6y�/��-m����4\��x�m8�>�`����<C�f����
/���}�y?���{�{���i�r�cys�>AE�K�����"�be=9S����)&�����#��4�p�"/�����vQh�\�J��	KD�:N������`���E%�?;���s��r^�<7��p������?���T�A��Yo�(���|��c	1=�N��n�����Z^����>g|���>�����#sp��;$�� ePt���QV?Q�WC�3�$�(�yM�� @����?�k�^�O�xzk������#���z���>�Wh�r1����q+uU���bTP";����*��i�d�gE;������c5��CT�����"c
��gv�Dnv�+�%���tV�%F���<������a��k���#��G$��[
�����px����o��wV`�b�RB�id���'�{���W�������H���t�7y��&u�=��&n
=b���G��hM��2��%�>Rv&]vJ}�6Jl )y�4�OS����,�#��cM[���!3~jX0��g��zs��l�;7v+Y�~f��0f���[e�`��V�Q�	(��~�����9/��|�cO��a� �8:��!�(m��x��m�qxP�"�Z>�O ���>P�������q)��A��M���/
SJ�n�h����V.���VZ�	���*�MK�4������L�������J��n�h�=R�?�1D`�a�����qO�G�����im�f���E�`�l��C�d��Q ���N���D����.�"��L���9��)-�����T�C+���Tf2���Y	k�(bh���3�������Y�~{i��_��������/��
9�����}Z�>o�5�S2�|t��%���g�����_\xc��Y���m)R���8��6ZK(FsQr���EW��f1��(��m3�DQ�
!���	�8���H�"�����)���:��R��U���4}�q`��B��>>����H���U�����5�v@3���ZSV�1>
��m���.���<�p�5�A@��J�y���U��r�A�E5����tQc���:���Z�I��^�;_A�H_n:�B���wZ(�%&��8�h���w �	:�-�����-8��`����3��"d�����1D��2��pBO�l��5�&��]��l����DS�.�I�mf��N,}�����cF��������/ji�KV�]v���L��E��f�|�~�Z��M�:�v��
*�� HKnH
��.�+t��t\2�(>��{7�&|�;���(��r�(�$z*�sQ��)4���M��hl�f����ata������d��]~d��P?��{��D��g�/;^�=����Cc��^\]��D�H��W�����9��
X����p��g�}����2�K���2���b���~��H�)S���������3�\f�p������UeU�9�Y�,g}ma�]i��;���c	�T�x{���o��r�e��;�&M�X�Zb�j9�X	�[�������g�l�;��r]�Q[-���
}��:*.��T>��5�����=�e�[?0�oVz�'�J��x�������xX���A�hH�k4��G-;uku+���@@�Bh��h!����"L~�}[�x_-�!�x'm���h��G.��B�'��.~(��+����(^�#*}��TJ:n�&�E���F�U�����*�U��z�	���)�|���!���A���S��Vl���q~�u�����?���P:-���J�y��z��v��Ah������2�
dn�"@�rJ|�t���.��F�ilG�]�^������\"��	W+9#���A�,����p"*~r�z�T�VV��nTp�������fDAD�D�(j�����aKW�QJ�~����2Ei���]�������:��?D+���$��+���9�J%��F���7��%��_�n��f���[���l��,��E�6_�f�_�Nq4�����!B�>�f7���_"�|W�a�V�TP �q��a*��������i�;~9�x��zw�)�x���bv�,��V�=C�u�P�:i$5���m��3v�����T��G���N#\vJ����r���F�l�I�K�	�*#��e�&�S�~�O�/�G�C�����3�j�A*�X�{�WN�$�� ������	M��{�������C5�,���x��Y{`��U�����Y�����c���w��+�6��/`}���q�����J+���j5l����i*�	I$��/3�]H1���HM^�%x����K�NW+�������������>�/�h}�iF
2�v2�
b!M��+5d���pS����������������������t0�>q�qe��Y}yG�'��+7?�M��}����K���r7��q�"�K��8��3Lf�����f��[Bwq]��������<V:�����O/�Z*���Q��_]����M�MG����:P������������qH��qA~�����:��������
xL'v�N��xu��*������-��~���FN�d0��f��c�p\L�S�E�%��E��M�n�t�>�����"��x�~�
��W�Z��GJK�z���2�|���� 2�>)5�A�������"����G��W�[j����?h=w��3BL�L����=xc ����{�l��������*��n��&���W<��o
��k�W����R$xD��9^��&���,��n���@g�v����.�r����-��b�b��W���o��*3tR�����#�\@2��R�'���H�S��xS�p��Q����o4�F#|3!�.���R��`\&�{>�BE�b�oP�/I�X�{�����oA(\���Hwceh��mC)��D����h]@����?(���F��b1�u��t�/�f�[�D��P4Ld��N������H����v�����V�&�u��D��:PQ�Mv������ej�6�=}W.�<���|�m����q��QD����D�������Uk�+�Z(2�X�Lc�����Q�I]
0�#P���	P�����Yu[����.��^������7O������o��6�#����p�|�\A�B�{��B�AK����W�(F�N�2��f��l6j��������#��W�"�j���ee�����P�
_1�f��n����n���K�0<����Uu�E��
��
@Cf&$6��:�J}�����6~��#R]�y���N�]H��n��{����WJ�*���o��E����d^����
l�������\���&��W����0.�)!�D�A����_�����1���Vg=��9����J�"���o���~�����--���~?o��`uz���MS7oa ��j��L�A����1�E�4��P�5?h�Fs3�F"Mc����;�D�i�X�S/�(�;L�5uo���������+�tk�80'��O@s�h�Dk<�	����i����|�B!��6:j[�Ot""��~���t�	��26�f� A�J��Iy\P������x3���k�{N����+��~�h�����WW^*���v��t�[1w��k�����P���8�3�������*�t%�B,���eL�b��V��<;������Y#�?=rTBm���CG�]��g�:R��b��u��?�Qo���%�����I�m*���_~���g�~��,��}�X��e&\���j�B�U*�Q2		�Z(��yVr�	�QH
KN�����y�"o�����@
��������sd>���@i�������{�5I$��r9�z��$+jH�Cg�+���o~�fh������c���I0����B��{����:H�
X��n�E��t@�5��)���*�"y�V���O��t�tS%$�����>R��'��Z�s�{������!c������9�����j�yKP}�S��"~�����r�UJ�b�|)��M
���i��r����=`��� �*S�%Q�e5!1�E55�A/X����7�����8���h����R���	��n��h������������>w�@;��0	_�-p��
����v����t��PZ����K��*0k��`�e��dh�0)���b�I:�G�V�dtd��}�����4�il������.����o�cEy^��J|��
r? =����Vq���d�8]K�)uj��%U������%��G�U�%�SY��w����Pe���f��%�\X������U �����������o�K����M�Q\�\�H��	����H�1c?i]~%�9rT/7n�����G�G�FS��k~nm���
����\�[�_&Z����NP�f���T\�%�	0+a����0���������<Uc��r���n��&�e���+-k�Nq���,��x*_���q�����h�-d���)3�;\�'����!�5�Y��J�'�#��	�g���W+�tf!%v*V�������6-���J�j�Z� ������h�0���T�|�j,��-��P['Y���\sp0L�h52�7$��cB���*���B��f�|����u5p�z�^����
�:?��L6�J�3oZ�cD��K���
t!�g=����nDs��l�[���ub���*����$j�>	�o��ZS�����+���O{�M���gx��h�Gh����"��xHLx�����X�b�<@���v����MM��M���8�������������������_R�7P���76��# 8�Y����)�Z4�|7�����-��~��e�B�����l�����C&�ZXK����lts�q����8y�s*�I%�X����w"�}�-�)^�94��sy��"n�X)���Kti��8�f	�&�B�	6�2�T�[�Jy��js��!8e��Q�����F����z��;�H2����s>�f�2��9�5�0	~�SRWL��gL��h�3����>��	���z�=V�R���z����,���g.0.>7L��K��/�u~�<��_����s�b����t������� �C�R�2��UQ�P]P�-��`o�������B��Cp�;���;W���z�J_�H���h"40S3I��A��4{������-�]�����`~N���l��D�Ig��3�)���Y���������d'�7<�O23������<�9"i��{���Y���7,'����o���?e|!��ox�O{oZ<���p�x��7��(>����}6���&���;����=��}���QE����K]*���I��h�x-�S�
����&~{���^������i�A�msEo��*�������:6���r�d��h��l�a�E�7�+���B���~�%�`<�u�����d]p��������by��������K�N|�y|��L��z|�������J@JG����Jn�QN�8����A��L�����L�z�c�<��EX��PB���D�B� 0��yz\�)@�(�;:����B��@���?��D}����:��9���jq�P)I
��/p��U+C����g���J���t��p������	�#��
��0��S�v`��ZBr�<R#�@#&�v�,�����F�ZE�&�s��#�B�������\��1���r�$��,�=��'x��EE^����>�z�2"�}^�V�f��3�M_c���:���-�����3�q���>�'c4�Q������dN�Zm��Fr������vh�|��$S����M��Z.��P)�Kd�	�M�������;>9�c��`�9:S���
��h�"�Qzp�I<�	5�:u���m��L��$S����t����i�"����~?��?������t���?�.up�'���+�w�����!=g���/����&���<S��*2��?~L�3r7
���-IQ����u�{�.��D4/��J!4h�%�����(D�)T�W���m<� �M���	
x(��4rjo���:������t��I��Jb"A��(;�����o��i0��������ZT�H�0��!�h�s[�r:��h2�0�&�����P�����(��6��@�10Y&E�;y���v� /f��b�e�DM0��`���`i�"D��?�,�#'��.�C����OWG>�:x������/�V�t:�x�bq�~����&mG\��'C=1��\&N($3�q�$���b���3������E���>��
���������1G��
!t�B��2�E����s�5����,`YNE��
�U�!�T���:�r:�r�
�+����)I������oS����t)�����B������)y�W�L����������v�+e����}��Gc,��Eu`%o(�C}mCG���B��i��������r<����7_-��"��^��A:O������ ���|i�X`!2,P�C=H�9m�����]Ni�N
AY�1�B�AJ�
Am%@�/�mB����i���S�mp��&=3�������0-�K�q�o��a�my���By��*��-��\�CoT+���{�5y�t%���RR	C+�i��Wu�������Gz����n����?r��;eI]��U�a�H/H�L R&C�����4����P���L8�]�(g��cX�5Q�����p����U_y�����f(r�z[���0h����/_,���3$�n�G�(|��������^�4u,\��?��R��e����d'���m��	5�V'�"��V]30�YT!��Zkc���� ���l�����Wr�?����#���=�]iFH��GU=�&8��S��oI���2]�5%O����������N����/.��4��������P5$s�K)%���V+w���l�0��NL.P�'.��v"��������	�d�����*T�n�qw\j�>�����C�ZP�y�D=���%��Vy�q4���x
�*:�:���|���5�Q�\���[x^Z���B�{��_���+�UL����?4�V��)�PBi���I�����.�}��`�P����`H�_v+0�@I�G`��9a�7	�Z[�����<�����>Szw�W���4��
4mW �$6�A�$0���;��/�F����E�7���uT;�6~E� m9h�"�D����4��K��Q;��?#���X]�-�f�8���qP&�^���a�SCd��)�B���O{g��}�=��zP?x'VT�;��������MV�s�����}�{_��ZJ����Ho07��.LE��f��3�$H��V��R���VH��
zH��A���N����TH���h4�b�D�4j
r�Z"���\�pv��=�'��Dl?p`jbwc�P�;�p��N�ep��p��\����!;��.�.JR���Q�ED�U+

��d!��KD�S��]��5����iv���-HW�l	0P;������T����t��)������]��/>n������ 2)rB�	�*�^MK��{��C���Wwl�������#���r��ZwP|��U�r2�����^��M6���`L0"���M����a����@��n��z�z�z��sV-����1����:��(85H[���>@V��.�����9���c�l��m���,��L��������%����]	@S���s��!	aI�@!@��(BY�q�w�����V�[��+ZE�T��J��OmZ����Z__�������v�m����R�=#����;s���73�|�`Y���Z��w����>;�;0=+�x�9aP�u@EbTnF�� ��5�7�L����~-��?���A�,\�l2hckKO��?��crF����=Y%M�K�1���"d���G0�@�F v��N�(b\Xv4��m�������,���+���\f���]�	s�
4��T���V�h������:lUS
@)~B����������Kd���%8������UQ������&o��~���������
��J��^<%�I��%�
R�N
��RT��f%��r���1@t������Ef�Y�ww���#�lY7�+0�o�	s���4�5��g]�h����l(:���)/
���7�`_�n����1�Ox���m��X@�?�4y3��CC�$�hv����A_�_b���TJ2g�'�����7��
?4&z��3B�^��E��������-J VZ4�q[��ID���aEpO,��k;�^]�X
��#�%�5�V<2`��>����(iP����y3��{��o�F�B/������92e>�����;*�WM_42 ���c.\�1��|������6��,P�p�(������������Gs�h�M�����S������7�
����+U����8���}�l���"L�������k�8����I�����o��*�U�Q������Q��;��K�ZQmbYU A������z����T����*gS��MM��#QK�������`+�2���}����%��5���1:r��|�;1�����d:���u�E#c����V��g7�]JH[���H����q����c���_c&���~�:�v����aa��X=!��f�-w��M���X���������
�2C2n��P����f�}s����]�;~���=����P��>�qi�)���=���$EV��G�Fh?�}�5�[�AG���G
����T�kiU@�B��2��
~u~L�_��GT�������K#:����[Xgb��e���|Y��@��+�?	}������mI?rw�5�����(������3��~������u��d��j;��1�/��R����s���t.�L��I�z�w�Wz���H�6����i�;��C3x�.$�O���t���p��m�����a���X�,yx&��#�{���p�t����C�������6�0��n�\0cYTb_��d��<�x�C#�Nj�(��\:64��s&�EWD0�?0���) 
(�#�I�J��r���#Z|��G�������Em5r3���N�{��M>��q��c
���u=���@��>��9����8�i�f�;v��f�S(E;��W��$���R���0�s�����72W�	]�9�c�	�EF���]�_�U&LHC�:�hI�
IJ-�{���t��	g�������g9��s�g!
�S�3����Y��&���zEqv�F�0���lCi��J�^HaS�y1`�4!��}���
t7��&XnK��r�Q�'t�*|�Q��E����ZJt�����m���t�U
pc�U��h}!"UovF;#�D�o�z0����L����4��I��?���w�D=�}&��?A���L���=*n3�S���`�t@X.��84y��JM/8]��i�/�$=���q�-��q�����M�l])J����9������9�t]����������6����Mb|2�(OOgYL �����Q�Mcj���Qt=��F_Ew�A����f�'�!����%����y��l �(M<i��!���/S9�y�����wWr�����l�k�����V"��8��*��}����E��]U�S��3�/'V�;K�l�5��X� G�5�EyD��p�#�H��N��Or�:%A������O���(M$���3MJ�J$�4�+�kG�3�7�%!i��4?���y?=�)��~�Y� �d�UOr����:b$�$=L�n���$>�N	���}$����$�D	V�L$1I8Nr�Fw_H��
�$o�4V��D$�U��0"��+�dl����Hbi�(Q�Z"�#��N4������'!�"I�^��j�$")D:<B4�D�J�3�I$iL�VH��/�4�BQ��I��C$�"��#�2�yD���C����D��W��_"��:H$�:j��$��7�)V�H�>���Y�$OI:X@JL#�x�]�$���D����<�*l$�������
$���|�r�E��9��Q�v����W��s���UD
�H��a	�B��H�D��r�G�VG37�V�x\��m$�8�=H$��#D�4��!�
�{$�>[F$��\��H��^<����N��C�;����A$E�N�9��I�P+���E$%���\�� 3�Pz8�5���:�`)M������c��I���.�\e��_Au��pp���Tb���^$i~BidD2�#�B%r�r���<��d4h%��h�j�E������������ ��"\�H��q�[�����0����HEh��h���^�2�@��wG�a@�p�4��$�r���ty�����i��
�1�b6���
>��%
{p�\E�_����f���$X����X"�Bd!!�v���
���]Mr�S��nb�p����,�9���[��~�/��
��������v-83�����@���
������A������U�iNfU���-0�2T�s���e��
�JEy��3�_���o�Z�x|����5�A�Fb�M���Sb����*]�`R;4������px����7����(�|��s�p-lE�5`�>���$��m��Xr�\5
r�������|�)�D�	
�x��>Si�������������O�Ek��Up��[:<���`<�^A����
�'��_}��l�e�S��q����<���=\
�#��R7�`p�z5��uw�t/s2��Z�b�4`#�2�[�St�rc�n�[s�r�S��9O��Qhv�_��,%�w��M���>p�\f������T��v�<�b�������w��{b��9��t�e��*
l�j�52M���Q�&\]o�)�����4�[��;+l!�b���0%��?�
D���~�����	X�wZV����?��=���wC���gT
��AJ������{g�zg��B�n]g�*X>r�_��h"��SQV��@_�V��><���tkm�IE~3�w	C����v�L�o��-��Ug|�k�k��o��[[��>VI`���qQd���2�$������{�����UKj�w�~_6�X��e��Yy������8��DE������g���dd=yIK����%y���X�Ee�t33��U����z3>�N����mg��3{2�������k��������rzib�<��g��{a�3����Le��m�}-�8z����)�f���3&��x�F6y�r�:4i��t�w;����Y���T�1=��Hy�5��=�hK)���b
��6�����/��{�����a�w�{P���
mi��g�j���qT�@�����\C��S��\S���5�;Ct��<�X���\�p�A����I�x����O����������I�e���s���e�?s��)S>�����=�|��q����C{�~i$?T>�`9`j�e,�.��D
�1i�c=���d���1������'��L���ro��'������P|�tg,��d����;���J\v��}���u�]6� ���Cb���_Dv�66�����"6N��9�zv�����V	���-���)m�x5���YR[�x���F[J�!������I<I�Z������g�f��&�k|�o�w;	���[\�=���fz��9�/���/:0,OZ[k������ c>y>��PGw�sL]�����������j�r4�H��l����`n����DO���?�F��J0S�J�T�#n����F��E����z{B4�T��D��3	 �K:"�0m�%�B�`!���
����1N����pS����w?�
�������el|cLD��hR�a������s��[�������e[����R��ej5I��m+��2zFu���x�����|$�91�������\������>8��'�#L�'� �X��bHT	�����H^ew:L;MG���;c�L�Z�?a�����V��<4�a?�?��=1�x89�P�}��G���������-���������S���h���j�g(1N���Z��f]�H�G���b#nucoK2��f#^RZe�ZS���l>>R�ld����#�u�=�c8kn"l���M�� �-�;�������O���k��z��j�M���< �����4$���=;�F���{���m���'�Q��C����qJ�D/��28=�q1��`��2o�z ��o������)�;�-�����Vh�}��@Ns�Tx
LLTE�"�g�y(���O����H$��ma5GEE�F���{$6�KcBd	
,'����Gq���}7N@�s�,`���+7(5�%y�Oi�5r\����)^;
�;;3��b�f��)��i�_P����@��H?mg�����NG}���h��R����hi�Y������c����� �9Bb���C#�d���@�S�����D��b���s���p��[�N�O�;4v����7����j�A$����S�8�,~d��� �yn�[����fM^n�&�:s�r������Y*�2SC��Ab��������Z�R�&�/���&����wbb��q��3��v��%q	�d8p�#s?_y�@0l��r�n�B��1<�f�i�Q�m����s��)��mP�b�e+�*:<5n�9z�[�c������wr�7���V�n8q��������\���r}���o�>�nS��RQ��Y��
�h1��?=m��pO��.	�q��B�J��:	\�� 4���S��G��{�0������
��s,�Ks���o{��2]D9^o�>0�1 �+�����l?���M8,Zu�(��_��(v�X�$@�T�{z���\�5B�+�Y��r���t���p(d��"	<N^����`���w�`3P���T]��}�hi+b$U�Y�O��������^C�P��:����AF��c<r�30�R^����`xf"���)��� ��[-pc_���|��k��^�8O���`.|���8
�r���\��Vwk'4mu���jm���kQ��A����RD������Y[�=�m[���N��	<������������}�Y�Te3�-�.��
��/���
�g�}E���������_����?��/�}pk������98��t��#�^�rQ�	�+�*��ebi���e>2��Dn�#J���?�
��qT4�kC
�����_��F/)����������M��V�n���_��D�$kfY�nqd��Ah��E+
�kR��f0�����p.V#z�Dr1�H��S�$��GN�I~��Y��~	��D��\�,+���A���W�7)B������,�e4Efa� ���\[�o�J�[��E���]���p�XR�K�@O#�oo�-��}w��j���W�$>��9(;	������	�+.QH��9(�������1��(5����sW�)5� �UhTB��&��,��� [RRt�=M��G�0��2�3�H��1s��p�����zu��.x��@�}Py������hSA'�~�	C���1������-9Z)��G���+�����R�R�+���/��Q�U���Q*��/�B��[i��Y2S�De������/�q�2�-X�����D�=��X�42##8B��<�,�'�k��+],u�^���}�SPf���	aA������u:��h}w�xv�������M����f?����/�A�S��v�$v��J�M4o�R��2�$.���Xg`�����a���������$��1�/�5R�a����<e�o>��Uc<�&G�������K���h�n�M��n*�����VV0\:0�������������/����;<�$�4���b(�.��jZ�?��u�Id�#��3����hSr�I����Tm��du��������d�-�fb��G���	MVU��@TT(��z�Z�=*.�]BM��W���m!P���O�czRQ����v�Z��!,�3(/��V^��)��������=G�,.
������"�:���Wf�r��lnn���W�!9��:�����
Mh������� ��4�����|��J|���YL��v��x������I��\	�Ci�=4���� S
Z�0q���/IHx��u���^�����_4(���9r���mS��xf��qg����tL��8�`F�eG^��c�6���O�y�8w`b�&�����gN	���I���5�d��g��fT�����/�M��z�>�1��Oa��7�o���v{!T�IUX9����A�,� 2�Vb�-Y���y&k6��J�3Lh"��12="�W�Lw)�y���Z�V'�����A�l�Gp������>{?����ZM^xW�vY��!�UeU��n�D=�Yd��h�B�R��������tCx�P���1�1�o����>�N���9[`����?]&b2�6������4!Q��H����A��?E���s��$:eg5�6�76����}���hm�\�/�3����Zy��O�����*��tt�t��e����m*��M�xU���W0i��I����<X�'��_�8vb��������|3�hV�t��]GER����$J������X��L��AA�����hk�-�$��`<�y������|7����u ]�+��#�?k�[-��w��KT�����T>~��&��'fd������Q�y-�-Z�@�������T�{���Rc����jy���!=�����5Jo��C��
�!Rs�C[e���������-	��L[<�@|
�������l��ol�K��&w
��)^�����Z�wpK���s��������r���	X�������o����M��W=���m��S�'���Az�\1}�����5��w�� �kQip$�7�W�Yn%Y�S1�?y��(�)N�d�����0�x�]��6&�@x�~���:���N�R���������.���?�	����g^�S@��������	��!Ke+�{�����	%���G�d
��tX�����Z��cg�a����S-�bE��l���\����6
���-�I�R��'�ZE����qP�=
(�Q>f��W�������d���$�{vr;�D�z�J�
w&�Y{�������u!��A��+4�z3!w-������a}Q���F����
&s%�.�LL%\�F���isV��U�g�wy���3\;)MT����`�L�Gol�������#��t��S���'u����P���b�S��	�j��i����7�w�s�b���e%�M*��������lX5������u��V��$�������a�	%S�
����
0������/�Ex�vm�7\j��R��475��R
,�:��uH���V*�BiW)dvU ��s1���J6��PC�vc:�T����o�������U�P#�^}��@��36���e9��-�������N��}ty�B<^7��lCe�@+�X��R)��y���h`Spb�L���I)�	�H��K�Ax��q�������W����mO6AIS���-e��U��Y�Y�ZC�EZ3�P	hL����(�M|�t�[U����F{
1�RL�Xy�=-���{3���X���g�T���������$@`'#`�$��GM��+wW��������
cc���{�/Z|mY��L�RQ�l�d����+?���h�$<�vE�3��i���Gx���E&^��1{�v�86�a�����D���J���G���>��dA��[�a6��`�����c>y7�����U�*K��� '�>������5��U*�f�q �v/��k���
���}��fl�,�X��~	�X�����P��@�j+o����_:x���{o�K<x~N�>U7��=�wBm��.�v6�n���=�r!������,&XU~�o��&���K�D��
���T��I���[��N��t=��8O�AcJ%����8����mo
fgo��Y+�����Pi��C���tr"K%[{���
bd1a���=����P&&������u�4�taTJ2eJ�D��o_%��@uA��9����}
/��O.������S�O >uH~]�^.*\>d����'ON*�`�]�A���A
��'��'�����cA�3��b���p.��y�z���z1T�U)����5�R�2^��W�F�V���r������|t�wfu�[UR��H��|����Mk�e��������v��%v�����^�59!��v��!������ZuSZ�����
�i&*�^���L
��<�����9�9x�[T��@���3�'O�f|���L:��u��(|��l��S-��9`���������5/�]�����*d�e�md!���R�[h���R�A'7�	�`	a!���ZDe����m_��(��$#�\�zU������?�;�"t��lM+_h��h�}��|���y��Tsw;Vp�������k;�
Y��wz��������c,��-�m;����r�U���j~ME�d�iZFt�KGEZ:���	-��{y���]��_p���Mzl���]�a�<j�p-�����K���c�T��?��,�x���>^����@*������s+������s����������o\dW��b[�I4'G�����[�"ZD�����]���HX�%�����
���j��H_=|>�8�n�.,G/1c�*�7V������8��)���/V�@e0�K�j��Q������.\���f���[���e�������a��c�bG�J���PY�}�vC�;���QQ��H�g�������i���!~!2�^gb{��h�)��3J?��=�gg�&�x�%uJ%r���t���>�c���?s��TV�H
��
��{����F{��
uul��=[��@�����k�9
����
8�m�5�
�ie.+T�����+����-����7�g�1m�-&�������������3��,�z��B=���?AW��*�T4��O�hZ����e��
@�b6�����`nz����L����;8�|�n�VwO+\������c��������+�ff?	t�
J�/;px��!��y�/>|c[M*����Q��M@/�|����O�r��|B�t�=5g��S������X��o�w���m8���U���VF3U�5�F���h�7h��6U����a.oq�vV�x�/�&����Z����O�y�c�����F���}}�������m�~U��+�����@�?1�i���kV�_�%��������cl�����D'�f4�k��t�dI`�\�F�#����:R"�~��V����2��5���c���G���\��M5��"�u�Z���7���$��|�w�����J�}���j�������]�������q���.�f��F���+�~��%�����7��[b����hf���?���|��y���7����w.��r�~*H6������(s�9�v�Z���{5������&yGE�RC�����{�:�6�����~���Y��w>�mp�����5��������J���������,���=��!�����+**��*U�@�m����ZE��T��K�Rm;�v�ci��h�2c[H��w_H:���K���{�=�=�w|5oab\ES�GG�//��������?��`�t.�Q��Q)�)��t	��r����r��.�N���8�U�x�(��2E��4V�{��+(�>��}q��P�&�� �����Fg�ly��r������@ x�?����:��2-ks]��ni�������YE���9pb!�b$duQ�g��@ZV�S!"�l[Z^�"[m}K����{�)�52l��������x��`�������/�|P�J�
��=<��|�JG\)X���������
��z'47����$E�Q
���A�Y�H��
=��J��5���}Jp�������w��$��s�{m8�ap���U���U�Fb���V���	=_�i{G���:���#�"����*�\�rK����|oo����
���������E�����������W?Z���&�1)��9������44��\Y��(���:s$��/�$�W�X�������h���zB��_�gFf�{�[4';o�K�ES2s�����8�^�S�����`��v��i�Q�7���7�D����������3�w@v�@��1
6+��u�	\n��S&sI���� ��d�d����ty9�:�RG�i�/������n�W/��p�����Y�w{hzU��7+'p����z�������I���;��,�����S���Q��	y���rpe\|��qk�c\�;���!���U��
yY�r2�(�Ne�QB���]���)�`�O��N�2]��w�B�������B>JO���D
����	G�4����d��]�@�X�����0��X�n����x��$K�^�zR����WW-m�7�-����gf��a�]/KA	��
�2��:gq�J*��(��q�=-S�R�5q�Pt=|"%���j5�<5M����� I�����L�D�6�j�Hg`[/JP�z��
w��7�����3^�9s}+�;j��u�s�l�jV9���m}���
��jO-���|l��sb���x
kN�=cE5��K�sL��n"��v�����	d/���#3������n�����3�*�l���.%�}�B�z������f�?���k]��Q��M��:�cgm��\�u���3����3aJ��qTo�9V'���x�B���b]G��D[yfNb��5�]�h���Dw���{�~���[���C��={
J&�yc�1��(��U�dg������\�:��������
-a�@���p�b:�p�?7
�0�O����nf�x�js��Y=YM�Bdlhl>�2{����jv66�,��_�%���&{����;~��!\����N�v.���Gn�#u��d����$����L��r|(1O�#b�X1��{���[eK�qJ�XU����r����-�c�����n+[��
��+e�:��}{����Cy��y�l�W�@BFe�5�xi_G�X��$����;�C�xl��T�7��%Z�V�vyA��cV�rL�0=�Y%����x���bB���3����@�9�^�\eXC,��>5�P�9�e�Mu������pE�p��x�x[����CZ�����QJ
IR��g8!z89���w�#T�G�>�J)�!H��4`B��}{9�A����g���z�~}��������F��/�8@�C"����j��?mY��5��!�%�Z�6���jad�cP#�lT���c�
��~nC�AEC��Q/�b��v�9B���F��u;�74�9����`w�O������qr�����W.������z�Z��.���A�����r7�5uKG�H����Ut����p�W$
�����a2&Z�9�z�:z�8��?�r���yz)�2�!�
����^���K�hKK>�xO�L�qi�����
��~7����������C������_�km���h����$�r��	��r���<yY��!�h������<���Sg74��nB"��$h-�;�5�J��7^v���%�p?��<O�����e54n��9�\���F���N�N����K�m��b�6�l������C��q��J��f7&J�w�����b��(���1w�����Jz�s����(���T9c�k{���>2t�N ��V�����w��h��G6
.�4��K�n�bx���s�7\'6i^���7�4����i���K�J_P�n�Y�k���-�!�{��������UF��t�z�+^�^�1��D�S'J�Ip���j]Y�r�V�L�b�z%����n��������_����v��/_�>[����[���A�����u��7�����F���4e��)�������O�9%r�`��Fu�������S�����7G�������������kO�sz�g���B��_�8����0��;����XZa<3~
���)��s�c}]�O8��p�����|D�������[-sP��i����.���m|��5�����6Kc����	S.�*����;���d���q���$��W�{���5�$a������J�X4������0qr���kl���G.����g����It���1���^����Ll�N�������z�����)Qe�	g��
���y�����?��06�+�q��s����Rk�]v��j���d����/�U&�������o�x�Hm]coV����-q�\�
U/��> �v�l�
�s$GL�����P�!�*	������Iy��[TOVT4��N����L
��������n�?��"_v�b�S�:�( �(������Xz;;�s�P��cl
�������V��^@1�m��_jk�nm�&���������G�F�������p��q� (g��T���;

�F�c^��'@��}�����X�!�^T����*��0�N��|.Eq����9G�w�.��@[A�%6f��Z�����-@��-`Z�����%5����=;�^������p������������K	��D�e���\�D�9��e���#��5x�������?>g��9���o8+@5�A�K��G;�lq6��������dI��$�7n9v	�6�l����(;��~���AP��_z\4m!�
���{�z�x���1Ai�2n��_*�TeXU�4����D�1������^����Yc�u�J�0�.�c"L�9`!:!Obc/�I���\a�����((A�PhMTwJ������2�����@��}���Z������GyW�����-:
���b����������1gZ��0���T����g{��3G �?������������wW!����E���?C d���Lv�1a���`�6$k����='�}g|I�v�����4V���9-0�S����g%���xyfmL�[2yL�$����1��!y>z��9�p��S�a��dK�������P$��xRd��R��B��;Pnn<�*e�d|{6=�k�v��fZ�pN�u"������'o�
U�����cx�t-�HBk�t�O�W�#\L�J�3h�Z��l����5b�jw�M�Z��\�j�-?G���Vzb�::f��Qt��$HA�������
i��[7#�)yj�h��]TG�iP
�����O7$d{7���"f�p�X�ZiF��V�~��G(��������O�96�,����1�**��>3���������5.���.,&13�wS�z��v��^z':$I�46=�L��$���D�3�s�����r��1��:��_��GKs��,Y_G��g�G��Kh;#/u� m������!��L~��<omjv����9�0�/���a]��N���*'��a*W��r.~XV�����}��b���>#C�������\Z�����
��GEG�����7%����pw�%
A_����Z ��:�?�.��4�{��%=��)s�� w�|��y3h����d�R����b��W�|����{`�?�Ig6���������A�D��Y:G4�)����G��>dH��8a�{�2��h$��[���5�Nng'��F��0e����������`f��1�F��	d(��T��A�M��U����R]sqh��c^PD�i�2�$KI0�O�]�5�dB��U����/��B8��������
��n�%D8�UqC����g��Q�{���y�f���F:+��?��}�?;����I�Mb`^[\.�g ��+�yL���n��}P2�dw,�RyP;�n���<��s;�N.n	��)25���ms��`�c��A�����:��L�`&cp����x�T'A|��*C<Ej��0�������Z�mpp�>�'\�h5C��!U&��nt9S���'��Y8#����������&q��wrOA���gx�x�U?!�8{������S8
+���g���j�>A�u����!kF�V��4P����5����a��j��gO�'�p����<��M�����h�Y��23#��r��'��0M8�+�r8��"���B{{%������\TR2.�@�{�<,H���r�(�gK��c3"B������a�]�"�l����t����,��L,��"( �BS�����g�)fX����b~A2q�I0�]�	����,i��	I����N�k�Ql���O9b�M�Q������ ��UTY�f��
b�f�O�sZG	fN��}��*���{oA��H7�j���c$������w��??q��~�����������
W.|t#u�����n��;��X�={���
{�7�cR�O�^�����?<����(��>�O�P:�����xl6����r9j��pdj@������$%f������!����������*��8;^E���|t�n�����W3'��N��h�3?X�����cXj��
��6{s�����a�� .���(����3�T��1�`����4�dN'��9���)�q���Sf����|���~�3a>f�d�A����n|B:

R�#S���z���j��op����
�98�	`�`E@V�O^�w�������A�����$���t3�M�R�u��~w|���'�$�saZ�����F"
�H>��~|T�:� O�\��
�w����kh1���a�����
/?9����;q��e���Dx����{e�W����fm/��-����8-�%��a7Q���p��l�N����������-����x'}����E2Q�w�>G�9��B&�n&����	�
|�70	��(r�g��%�f%i����xp:�U�>�E`������N��Yqd>pi\�z���Kp�i_NA�L�����!���~�xKS8�oA���j�_��y�
qW@�_5����$��
_�"���%�q����Q���;�L�5����k����u�������j��v�"�6���X����v��:�|���?O�,��+���@����;�'������|7���ib�5�I:��N[�%��
�����7��P�-:�N>|49vp��#�1��nXP��w���`u���b�����;�.�`
�s�(����Q/Te����<{����b�GG��rGG��� lp.��Qyz�9�;HI��F�f"F"FW5p7�t�7`(BX���,QA!���u"#S��?���~�.m��3i����z�|�����K����������s��'4�LO����/��r���E�������5=�����b�SL��0����T�gw���/0@�H6�
��'E����N���^����<'���Bj/�Kv���/ue�1��tP��=)lK{�@W�r��v��������wV��p���!fKX��Zct�����0�����\��������^��2�,��K�J��Z�o���UJ�ubw�z���Q��>xnQ����G�\��9�t��������}�����R'�z�-���Z���"����if�L'�%,5��RYo�qf���?�I�^y{�!y��a�Kg�����tp���;g�^�������!��d
�l��H�.x��������O�'W�]��3v�	��v
��Aa'�������u�{�@����`��;�<	7�Y��jc=�d��>JP�{��?����A(��$B��\���sj�zP�L��L@/	#���V�>�����Q��mX��0-gj������=����8@�`��;�4>Z�r��6oN�y�8��/T(ur�����A~���A�h�<��j���>��A	����n��%���"<~���n��C*��^����=e�&��m\�U�S�������:��v�����+FDx�z��
|����	��M���Z%U!���g0��g}�q���L������d�,��,wm��}���]��������mS��lH�	{6=2$c�%���I��~P���[G����Wq����=��`D������a�����U�Gf�>G�����wV�ut���
������o�gW�����h�.�Z>~SV��g&�'w�(�C��P_G���O��g�(e���p�k\�p��M?L3��I&�I���������I�5�������is��U<$�������� O��+[�"�������h��C��O'%�Azw�������Q���������#�C*����pm`�)���J��(�A�Uy�a�,��@
�*��x�@�A%u�!��w���}C`5,�D�g&����*�]�'�c\&����r�%R��Qb��I��V72w�EG;���s���m���I7��u%�D&|L���WF*�S#�#�A� �����M�|�
���7���?�o:wB��x�
��;����5F1y��
4�t���x����it0R�"�<�bD3���������4l�N)������H�GG�F>��S��1//�%���+@.0�TJm��nc�	hR�%�����Ml'b�a"9��a*-�Ga���R�%�M�i��3�c�+�{��������u�8!���5�w�p���MzRL^�O@���Na�����S*,F����_(%j���1���3����}�o@n��>����1�� 8�%0�?8�$wh�h���`"�
�B`��j'0��r�D��8�'�}�A@�U�Z��j�<�J�p�M��v���q�YwY|�U���
�
�)���,6�eA�A����?�����^,��3�b���v*������a�X�:�@9��
6N���M����HyB�����������
fK=BE��LUK�����%pp��=���y��,��N�� o&@6���]��d^����A����R	u�<zU�����G�
X�@N!�
F�YP
��[8<T��[�J��v\n��>-��j�UlOj>�A��P�{��+v�H_J��e��t l=e���,����`���L>�d�(�H�^ ��er���A��PQl\�b��@
F%�+�M�!���t|���<p]$���:i����|A8&��q����N�ycC��a�#�j^�'�y��(�o�`0h^���_�9yE<^��*������H$��,��<#�dLB�P�i��pp^N�����<�3�g/$X������,"��f�M�3�.�������7��{2�>�s�����:a��_���?����;r��!v�9�����tbD��������/�t^��OP��`��������>���S5��"�a:wWG��Gc���)qR(�*L�����s0:�
ft��m|�W4v�6��i0RJ�#�\d%�:��z��_f�l	�2�{;+�\��#���8���2�J��V��&�25&|������Lc��g�������w7��������EN_p��O�V8S���`ab��qK5������<�h�?��u�����8�
�fZd�X���d���_B�<x6�����:���0.��dNZ<�@��J	P��������N�����}��oi�����,����ip��Se����2=��~���vv$���;*��@���$�-��ow�����=P��(����1,������.[�����=u=�S\@-�w%@C������-���j���qUB��gQ�C���G1`B�����,
/5�a�������[�������moG�x�x���F�F2�9M#�y������Ho��kF�}|-[�����
V���h�'�|�d��lJ�4��Ji�
���UL�f��%S4�f�>R�����j�e��K+���W+�%��w&->������Q��O�Ov��	���B?�\�$E����+��Z1@E�����
�>�UlSo0O|���������;)`vN4���lSc�(�}cB�����x{����q�b��WSV���{n��	{���W���o��g���n���������)3
W��}|3��Si�KGj[����"�����i�1�iW�JK[H���^8�r>-��*��2�v������cG�rt��bGa����������:1�������Xq�����}�tc~�k���xm'/2(
4U��
�$�D�D�b%:���������cb�b����1/����1z�6���h�k�g�����e�
	[����V[�c�a���l��%�j�������C���(��2|-���#������L{����������~Y}�����3j�4 ����t��$`!U�����ao���
u0o�3��T;��������9���dp�
�Gg��[UQ0���d�?vn�>��[zpdg��������������Q�-�)��*?A�2����kF�h��?�	���x�5cQl@(9_���$���1�S���A|��{zb���;6��9]l�QH���������fg���S)��^���U^�R�����~{F������iI���m�s_dl!�X�Y]���|��t�Z�����=�4>��5#-_� ��}~���ig4��t�����������>�$w��i}E"$�[������XpF����>��|��_���!���q�4E���������i�AM������a���gn��WX��m���Sr:��y0�L
�IQMkun"����H���"P�:B9>��'A���?�B��e�`9y�"h^�9N�]�A����8����-�	lz��,g�0�'���*Z�Nk�9�dZW�����FD�$�����N(��������z�1
���\q|e���i�*n����1S�
����m�}��[o}�\�5������?���/N+�F�s�����:.����4O]c���j�}R�|�l��0ht�Ww����?y����1�5���L��7�7�]�
���O!���S\D�I+���b�I��)�%��.������;�N���0����Kf���pm���wS��g3������B��9z���n?b��y
iQT�<� ��[2�>�o�=
R�����Y&�Hq���%>��A�ZCde��R0;Y|�
,s?�^������cx�q{�w>��-����?��"<�4����n��������v��24��g+8a+��XYX�� R�8�|�����?z����l/�s@����1�����������[��s�lkG=�^�?������|�
�<qx<�C�!4��)g�YVe�Ef�l�S�[�y��?�d��`�a�R�<���N�(
�2���,��O�J�q��d;^��c��Z��2��z��.L\��$�89t�eYz�Ej����4}�H�@i��6�����������qv-p5e�����9�v���q{��+��(!��W#�JC���DLHBr%����THI�Da�b<�g����13�e���{�����[�c^�
���g�������w�����;�e��b�_��1*CM������3�Y��9s�=�J<M���t���'VY������sIwrbA�.�=q7;��Bem��i-Y��?c%yF�* ��A��5����<#�k��j
��������;�u�����E�����������i'���nz���?�X�i~����H�=��3E*�	�<�'(������O��@���m&�R�������1^��@1����U[+|��.����G��S�[�d�ul	�[+����L��1#`?�s2B�j.[j��U��gx[�Z8��	~�-p
p�������Fc~�M6�gI�d��Y�WU�_���k�^SG�����>���}���[�`l/�e;;K���7[�k`��(Mi����6\���������K����sA_|����Agj���4<|hX�r����4��&6�h�Ap��\%�bG�Wrk4�lU��X���E/�y��7���ql��b��N-�E�W837��g��M��x���]t'�?�������c+���a\N����T��B�T�����=/�ia�H�~Y�=���/���	Z�������7<��.|g�U��
�����A��5��g�W��Z6!��X1�S�,���.����E����u��m���66RB�% �Wt��MZ�!)oV�3Vo�X���������C<���~����X�t��G����V�}6{r�>����������#����9��g>��9����	IH�e���������L�����9��,L���������c����������]:�%�,�+��I���o=q;�{t��3�����t�5�`�!nc/�XG@!`]jY�&W���u��HF�?�h�hM����Mwa��j�lk�p:X�~}	xf'����9���mN�%��6,��wb�$�J�^�Q����������?E�x�
�=�r�p�A	;��]�\�;���	��e����U�JV���C,/(O��i������4�$DmG�w�I���`�����w��w�=�k7�o���u�:�E���~�G�Djz+g�P02���Ln��z;v�b��^d������}"��s�g����-P�]b���4����!b5;�, ��g�e������b.W������������H�=�s��
m�\3�	�93a�r��>0�1�sc���A*�>�?5�~
������y�&|�� �o��X+T���i$��B%�W:�Yo
�89��8���1XTr^
.uZ���"����n��?F�wh���#k"�� 9�j�k�EV�?�w����mA��**>)?����e��w|�o���,��c��Gg�����=#8��;?��@�;�/��L�#+������['�|��J
����"S�< 1�]\����F������.Xtt-+�_�=j2^��_)��#�tr2���Q���5j0hb�GYZ}v5�G�4}��>����w���o�;5>����r]�r��r��
�m[�L�^���j�V��=VjZI���+���6>`���|�a/U�>tv��������������$��=���2�{b�8Bw���r��4��&Q��}<�K���n�n����.�0,��{��W>oFE�/b�����?������o������J9�T3��z(��
���-YY+�*�����[�Q�D���Gm�{-���5����/%Ls���"���������w���~5��;�V=a�pm�W7�%$y�PDT��$���Mo�3���B�V����qA�6iP��+h{����W^UY7j������\�Yl��z��t�$tc������wm`ee�e�-����h6Vo���g�M�3��Fzb������������_]}�������Yi���b���h��X_:�8!���K�7��[WW��}/�A�(z��8��0SX�Y��R>�2b�I��n�t�]���W��y����M����2:�����_cs���9�_��������(>cs��3����`Y������JR��w��>�+��1Lk�Go��xAX��J'5��4S�:�_��v�[k9���Vi� �g��-�6J�������7Vq	��=��XW��Z��V�����S]]�����������o��s��<��g�&���<�[�c���������T[�0�T��-Q'�)��6��3�`7�p[1�;�������!85k��n��3�-�]����5/��������mc�l�6n��Xv	�%�5{"{������I��E
K�:=�S2y	�i[
J��{�8k��y��^�o����\r�w��D�k������n(y>;�e@��t}/,�R��dS	6"����=�{����D����S��/.���e�m����S�S�'�9���\PfeJN�er�r�\�
.��JKe����W]}��`=A~p�
����FI6C���gZA*3��q�(��W;-�R~�p���vm=X3-���]�JH�R����������f����W�m��?�2|T����g�F�r��~����/��X������yS�]��8RS]��I�<�����c�������r�)�A�a�~4����a�8��^�`��`���Z�*����L��"Y�����
���y:lBg�T7�����:����%V�No��Y������ ~|��!�)�	M�\�q��n_���C��.���yg1R����5x�*X���<o�B��4���\�W��N���>��\��H<	&7���`8�Z&�� 0,���}��n>�V|
����<
�y<�
�B���M��	,R�W�B��l
�kl��x��u���Oq�s�<�$�"���)|���Wa�!���8�a9�Ye<�6k�����00)�P����Wp�2��Ql[p���C��@���bj0�����sX�P�=�m�K�t����+����T�v����5��l�8��F.Q�V>��+A�����%�B%{���	�h�� |G�f�]NG�����|Y����4~HQ�������r���������xB,I:���"��6��S�;Fo3���aF���s���w,���=0c>���w&����
����\�p2��Z6R�� �+����i��P���j�~W=1�t��`(l��c���zx���\�F�����'�o�?1��'x�'����'�P0�D����M�+p���d�0��y�c��U:�7����X��rh�t�����f�������2�NT+]>��e���	��_�H�1EO�s}��I�Q������l�������=���M�����O���P����P��`���wWe|�����tEW6�P2����4�zwWoW�[���#�=<�����R)�%�6����z������R�J*��4g�N�%`
�����?�4�[����{/�}�]��\x�}p��Cz��np��0��+��a�r7Zj4`�����OJ�KuF_{�-7�t���!9#���[2}l�i!��>�n��E]�-)���D��#Y@��c�3��*�T�����gll|�6N$�
 �6�6��$�?�0���(p�++��;��/Z����f��~=�'����dw���u����
�����:��pL|��������'�c����i�Vq�J�Y�	�7��2eJ���v[�F�����l�������HW��~�O��'��[c����� ���n���N�R���*4�N.*�VC�m��R�� <��}9Z�GZ|SZ��E���*���P��A/'J��_�u!�.^$�76~,q;�7���a���3�����Rtd��������.��X��
��CK����p����8Y����Hc�1�,L�C���f{[�xz�������"u#"��DZCL0�K1��|j�a'�	�9���2�Ar�,�y[�4[bG��>�i��Xe���v�;�����
??���7����$5HVk��_��S�E��9����Ql�[������n���f��{B�7N������A9a����T8�=T�������-�Z] ���y5�;�=����XP+�gO�i�8Y<�M�[re���{��O�/���;�2�xa��4�P��5*FR*�c���<����V�Vj�n8�l�����f�����d3]a�V��f�
0�������u��5�������K�'<;��;��W����A(paG�g'Q����T���������bh��!��N�dh��P}�����������
M���)Sh.��*��������Q��r�"�<����-������2U���f�7�O�+gT���S{�y���_j�����
�*��N�+�����?�JF�������?�K���lx�����'��������Ja�L'�`���0��V����C�~���������$���O:X�����C3��r���L���qf����rF� ��Z*W����7NO���?G���G]eN�����VI��]���5������w�����>q�����f�������of�Pp}r��Qd���$A���'�c��io&��u=%���[se�)��	�O�4L�t����jgqf�����c��n��j'��'������'�b@(m�'(��DC��l��(�B��9����?�����3���2*66JL'�J#%}�� ����S�m^�vi�����V�����l�����`�e��x����m��rZ�z`4�>!
���S
������v�iu������'q=�,
���4~:k�w��gq�� r\x����(7
�����Z��������������=	
��:��Q|�N-�X8bp����.;b�G��%Ey�A�={�e�h"L�����#����5�N��Q�x����S>=5!���r$>������3� t�x������Nx��T�^�O|T���gb�es�Y=�Ex���SQ�u�Y%1�`=|(�x���-x��1�Tf�U-���
��2���OK%�}�[{�
�D�rFn���U2��h��{0��=������5����[hZ�������\����;~����j\�U����kQ�H�`������XwN&�X��.��eIc)�d����ng�he6a��5�}~{W��Q�qc����;�{��"�c�b@+��q���i�G}Q[�7m�:�!���g�}��ltZ_}�fH������$�}
B��G�����4�6�6Zu'����"�c����e�T�.�P�(����e'�v��8:r��!�W��,�{'CU�����um����,��H�s�!b�C� 9x���
�5�*E]��������]��	�8����<�JkMC+��P��=�g�0z^���m�L1F�5b(*�b=��e� �d���M�����-�Xpu���Oj$^L�����{'+7�&92z��M���3�^1~1����|M�Kru���������Y��.�SWc}#��B���Yom��u���,��%��tt<_I�����GO��H?������.������@x����F��]S7q��y����� �m���#r����{��o$[����a�]��$g49�
���Zw�o��
0<�b�E$������w��8*����S'_��/��u�3�����O.��R�D	�7;�fi���f��1�D�#��$���-�h���y�_�������`���Te&���p����=�,�E���w[r"7�Lx���������x����������_�>.�@�?�y�ufj�����2�2��i��P(=Tmx��ev�$F���;Y7S��,���ch-�s��2_�O��_W/���������<51kU�v�@H47��!���w�#�n'W"�����3��|��J�,�T8�+*��e��%^��c`���|KH���q��9[�G63.�l�x��0��;���k����|�2�e,��L;��qus�L;���3���1�:�_����j%�]��������>l��������`MCW#|)��L;g�Bb����v��D���LT�/�3�������GP���ee�l5���x%82m?����vj��C��m#�H�����N&��0�RL|;���
���}����eS�$����6*�j�c�yK}�*�B��{����8��6F��q�8�M��xr�`��`�����U	��9+���+�[U��G5�� ��Tj}��]�2�����j2���������osYsf[����K������\��Y;Z;Z0�ZSn���j�>D�gR�{��Q$X����}����p��t`��)�q����>��Qaa�'�����7\;h���@v�X�-��x��+�1b�)�+<���.��u�C��M�d[4��l;8������2�j������,	��F�z�R�B�O�����D�s.��yv:��ao�	�r`X���)�*gS���WW���|��S{�����7O���1����[��0� 8r� |P���a������fd4i�=v���q��{lb�9���U����W�2��pjf�Ge������9�far�!Ca�y�M?&���������v���o�����+���� {VUr9��g�u�gl���`d�����nFI�j�f�p2r���}/��Xfp�l4n���8���'�����l���A�g�����u��L9S��.f��,��I��k����������2�K���N�M^�?oecec������Jg>T�����*�O���Z1���-����<
@�� �� ��
)��4�v-�s~�V�����E����"`��������;����#W�O}�@R5����>��E�Q�p���'�%w���xw.5��o��t��D���O$Q��z��sCP\5�4��%)������}��)$�%9jK
��dm�p ��(�mm�JG{����EVR�jQ���o��`�46�&��s�������=���6b����c#���� ����jT�����@Z��;]�t���V+r����4`]}������6��*�,[�t�<b������(xl~Rl}~���}:���QY�����|�rxh��5��da��
���_�u�r��<�o���>���*>|�@�1��� �Zn��lw�A��x����:\��L<93a�1�q�!=�9����Q����������W��6�����]F��P�<-U=��T�~�fz��F
��;�1l�w��Z�-�HQ�����[u���T=Y�I+9Gk��-y6�K���� ���������y��FO.�i5^�I\NS"�:��i��c�ZU�*��} }{k&To
�J�qPnMe��Bz��-��V��*5x;�!�t-��o-���>w_�4"�1�5���u�\�LA�'��U�|0�(�	=�$�#<>�^����*/?-1yz��C��,����H���3���L���������
Y;~�_���W�r�Y�n������Yt�"VNYt��o+�Wa�)gZ����
7w�c�P��n ��9%-xU;ASu]"����J�r J��_���y�G���:R��V�R��K�Y������3���k�����m7�CI���#dZ!�VO��1�����U��a�������"�;��;������s7�;��OM�C��������1��*o|/jby�^�6F[��:���y|��I}�J������LECo���r?���c�� 4$��x����K?�����
������D��j,U��X�qu���3@.i�!���s��8��a+PGr3��������Bp��+J��L�W��kW�<r�"�9I���b������=�p���b����R�{�^K�N�Vi{H��Cm���O��9����'��
�5��Q�V4/�ji�����P����}m����	��3��
���S��m�u�$�`&��Ru�|;���4��G� QCl�xe�E�Ad���(�g.e��
�J,�&b��
mm����USm�8XP�,�s/�s$�E?����z�����k������bp�n����.��pC|���w5Ck�t�8��$fj���Y#�E#�����A��ixv
����UX������y�>Wz���� c���l=�.L�tm=���.���*�2����	1�+=^!1�"9��.��t��xxrf��.�����<�P_�N��w�l�����|��H�
v�y�����`�`�s �U��!o����2��t�������:c?�p���0kf�.vl$O�*eZ>�"���?�o������m��;�u����p�SI�������K)��sD�����a�G�$c*7;��&9�S�m�H������%%�	�Z[����4��A�����X)��^a�Q>����X�2������Rs��s��u���QX�j���;�T)U��Fb��9�����
�-E�}I�?@zu�P1���OnW7"�H�|��D�.���a{{���n�:6��_:�~���[B�N�O5��GO��$���)�$y��������FW��J�6{qi��J��Q?��,�0���5��9��FqH1k��[�D04��1�=����3�3����/�����������E���I�`������oyp�������
�GD���������4�����|��#O[O�l��WYA����R�vp����c��=c���v�w�2g���5�z�
}������R��+w�?��P{��.���W{y�K�������'i��(T����r���K������^St0q�T0��QA���w.>F��O�z3P�%���s|�H�������2�K1����U0����~�v��+�s��ON���_�^&�m�f����?0d��0*�^�Q>Nx��`���a �"<�"l�������B8����7V���Cpt9�SX�ux����M3��!X'���+��rFF�o��N+( T( ���&�Z3 �^b�����	
�0���=��#�i�kr@Y�*�������p��&A-?c�W�q2Nff���5��^�����3p��a��c���;x�:�>G�JZ��2��x[9G�q29'��,�������aB�c��=�"6��;OLc��A�����8c/����2���_�Em-���ruq���}��b?��������1�R8�A�hf�3����Ao{��"q�u��2t�_B���f,����2;Loc�/��u�R2�Ou�?}Af�0t���=��/��	�IVuL���Z <_���c������C�s�r��:�'F����$U�-���{HU~�9��5���+�'�s�1$��up���k���]���k�B��!p���/��0�s�����w
����n����k+#���sm��^�����I�:�����L�:�W�+�E�S���qb�R��9�8�|�x�
��/�oa������[�����2����,U`��va��8FR��������N����<��_�@��<�]�:{���p��-�]h���~di����Q)S`q�9-�Jw�����$`�I��Z�q^r'�����t�P>��$p�Wwm)�]���9\�����E6���w��G����pjT��Q��FN�y���OM�V�.��uB�!�w+��y�{�[0���jgE�/��QAt�?��� f�^��C�7���n��������jE�q}��|`e����l��������O�@�B���B/��H�'��Y��+>'�e�,;��ll�L?f3^o3h�����,x���d <0��A��#�K��*���23I�,�%�d&�����I&�IBV2'a  k��l�i���
�����Zkm�h-��E����j-��k���&�_@j�Z��������93���}W/5�<�������s���sU�:]���"+.R��!�������4GE�;�R�/�`���|�GJ|R���G��������G���yc���G���s����@�����u:���'�pz�:L��y�7�{�� �����u{_�V�j��������)��
�_ =�N$	�G
��BQ!*���i�����VX�;1�i�l���lb���D�>��:n1��3o�Q~���	3d���z	�}��F��	j/�W$��{�=�t���������-\�N�~2����x}^'2�\�w;5���kO�l��gw�-Ut���5n�W���,����D���_d�`��p4�^�&���-��p�P��'h>��y�pQm��MP����0����=yXt��UUu����'�A��)�I
N������>tzV���
�z�O�Dr��v�~��*��$���+X	�_1�-���L����J\dq����>�����w��A]&� �/�{:��)��M�_�x�G/C&Kh(�G��P���"�C�q?���y2$��p]Fd.��,%,m�5U�F���������:�v�/�k
<�C�p�a|U�h������"3�������7�m����L���(�R:n�J`Y�Fv�$��)
�ZZ0�d��Pv�q!����
��A�2O���������U�����y�Q�t�p/1��%�}
SD�#24E��A�� �q�u%H%�1��b��P!�K
��D����/�!�v�s��i��.T*s�F�����U����y
����y`|�B��C�A���7���D��.�U�y����,���u�?�j���=�F������m�w/�{|��:����y��7�������s�	���=�f��t�7�]���UZ�j`�"��ZS,3�zj���55u���B��"�\�+�4�dfs�|T�A�G�;���������0:83tp�o���G���_Q]_�p��}�]����p��
�3
T��#�W�$]�&%J=�'���������y���dSw�b8&�s%�r`�\(pX��B�O�&QA~�����B�t|�yoR�/�F����u��G��!�h6���H�F�H%!��u�������Q���L�Y�K&��G����>Z���d~j��H�0����CQ��$A��M_��~Bj(�>�g�~�~v��\�t9�g���
1PrD�����QN�^{^Z��F�*�'�o ���KK
7���5Z�bX}�m��CPl;�����X���#��As�
o}J]����
4�f�Mc"|���By6G*�f�p����L1��X9�\����L(�I~)�d��o=��Gl#��&*!�e��O?<���SG���
z����keQ��{�jTu61���s��?MZs���'�����	��O�+<k�,��_������#�d	����P��bq�5;������Z}��h�F�	i���')f�Egc�Q��ho�N}��%��H�8|��7���*��Tb�/�{��������%V)�x�����D��#acz��?������~i�,u��=f���^����u���;;4�d�fY���5�+6^�z��5+/���cg/�sr�ZR���|���ka�@gKu�������������ww��r������!����Y@�]�OX-�����;w���Zs�f���B7gn�{�����8K��c�w��%�4��6A�4��������pwPq �����7��K�;������a}c
�����	0���
��,����;!��i�1��
�"���T��76�[+:;k�����V��jBE�|�`#�31��dz_��L�����`<=���������L���D6[�[SQ�31��3��Y��8/s4�����028%"����4�<}���ZN^B?�\�F�]3K��P��E�<��77hO�����&z����*����&,�3��C��>w��!�x�q=:8`���
p���s�H�&\�0Y�������r����|��(lkG���
�z��������T?c�ND~�|���]���7�X�+�d�$��S���,��p��ll����l��=�8�^��*�+/�"3l�����hE��������"�w��6�����Q�mS�8t�}�-���!�@%����dS4�
���$�<CC3d)D��/�@eH7a��L�}L��KD%L�)�E�Q�����Jp�Qd4�S���ufQ�I=h�!4�M'�������|2�}:,`v#����Vd1��X���T��,1���2B������Xx2�����-���k.����L��Vg/2�94]���Y�tY�z�����B���z.(���c��	�
r��dT�-�)pd��������	)I^g�?l����~j''���#�`�;���&T��ao�
2C����%p����E��4r,
��L��c����ZQm�x�7��;�����0����Z[q��%��N*��������qfh�dX�k',:�ga����5�_������r�g'����K�C����/2���kj�Z���/�\��6Q���;=��g��=w{d��� 5J2j�f<��W�r��4:�������Pi�=��kH-oLa�^Sh�<Ov��=�I�7��'zCv�7D�K����D&�[�����Ds�r�2O�i�Fy��3/�4��=��"�R�3g���������0?�|���W��\D?~�k�����%� ��&����
P���	�vl����O����j�T|��~�����\�����`oOWK���
N���gk2�����k��y�V���U);Y#�[x-����������C�8����~,����5��U���vm=)�w����nG�%�F�z������
���>q��������QG�GT�����zp���k�q=��������9�>P�R�G_���Rs����u��N�����N.�t��E��.���x�zB�Y=X1�m��Vi�3�q_��
8_*���5j����?��f�
^AU1r����l�F�@@ �4�W��M�i�}����mr������?p���)� �4�&Xm�ng��pf�X.�F]c����Mv)T�)��$�uc�k�
�W�o2���`7����d�����(Qn�x6hZ������
|	��(�`�'�����mC�I�p�"�-+��x���G�/�N=��������f#L�$Q��|���"�`��	��"TZS�����-����~�J��%*�H�C� Y���]�&��0hL&a�P�)��V %e�R���0/j.P�DB�����o�O�.�����s@�''���U�	����Z H{vSH���&><��1O��FFc��D�����o���4�UY�1�,�+������H�C��%��R����������Q	GdRF�`���7�SE�^d{��{ln��s���GO]o�{}���c�Ta4a����|���m!���t���cCk��]�`�%=�pZ��uiBVvgMSc�/��	��F�kd\4�M!q�]�S������)qvC#�B�I�Y��T�|���>�{|�����:����B��s�����>w�e�1n�?
3������S!�����C��E�1��8�QS)5�_�p�#�4�����a��e�����i`
`e2\R������I��T�cT[~�$U����!����`L�st�����9�a���&������"�K��!*���R��������tjR�PxY
��R�x��o(	�5���RU�,,�����I�h��
��_>{fO����V�V����[BUW�����3�@��?1r�~��D���<d4�������7���5��� '�p�uH#��(pT76�zC>qP�����J2��}�{�@�j\�!m�&��L�"�[%01JJKG�R%�8$��!F7�l�g	S��m�e��>�J��3�GO.�~���FP%��y��]���^�:O2t��:i�v�c`���U�P����_���%?�=��������+}n��m4w��� *D�4Z,O��2y�Y(?/��Q�Ejqf(�������8�|R�C�P�h9��7[}$��i����I+.����� ��Hp
�B�V����j���6[����&T[2.����&�lh8C
>!^^�ru���SV96�h;C/��f�S.�JO�m������Kl��������^�����Z�����>��'.�.�V;��w��K`�W0�]QA�H�
C���a����\��*P7Q?���������l9������a�\at�=Yc*�R�� �4��|Q~��(�Baq([�
�Hv�=��e�	���)�$�%8�����`��J���b]�tv���h���������������4H���GK����j��O~\�H
������w��u:�@E��+�L��V����f�
�7-
z��B���#����z�X�T{��D�7X��f�8�8~��h�1�s:9Fu
bo�G����������K���8v���]�������������@�=�P�HfAOO~f���/��^���x����l���w��v����+�K����	E"��R?�>|����*����J��������|��5#~����f�����`���i�H53�$�sr��D&�2$R��x���s����Z�������|I��/F��<�RS~h�}�w?x����;����: Mv�nIj�w�<sO]G���F��k�o;3���N@O�%�� �Z����hm)U����QQK�Y.��YPf�����~�N�d�����@��V����WU�����"
Hb/�v�]�g�vq�������_UY=H��Z(�R�.��D~����2��|����e�n�������z�]��������D�Os\��IlZ�M�0A���M�,)1[�>Awj����,X�N��'�������T��?D>�~1=c�AP�z��|���Y
��zBQY�Y�)������8V�3�[�#��N-�]F�-@[VW�7�s1;�-���2���!��#/�����g���U�����wS���{r��f��:�o��s���TKp���-k�K��Y�h��F}������&_D��
�����x�����;W������j��\�G����.�����w���@���p�+��*�������&��uu�]���
���u.��Wh�����P��j��,����L��C������g��c�|�(����B���H�8;[���d���6���������\���Du����"���P�{�����	��)������j[:�4����|�
Q��o��
��-4'
3�fd=
-�!��Bx���/��
��5�i~��b�����U>�;\YDcaYiX�W���+�<�F��d���V��`�4��'�����'�4T�/���V������$x7��_�-�$�r����E���[J�_"�����������;k���5�9���j�s��u%�Z*��J��5��]6j�@�����;�k<KCcs`�Co�Xb3#8*F���1��y�;�z�$���o+�Edi�+D1���rK����L?q��JtG2�6�����7�-P�
�1���A~ o���*:��)S��=��5�d��M;�����������+r��10��������~�k���CK�xf�rc��@���A*S���(-))��$�6�3�99Y�f����B�P����l���GB����-��4�����V���1�b�A���,|���+G*`le�p�M�+�a�Q;����<�N��I�#"���H��"LH�@�O
T�v��@��}�r[
�����Wn�n*�p�Ekxi�t��no7���:W�6T�[��J�S^���$���D� ��y"z=)R
�-�I��G���_�dx��|��V�I��	/\�h�0�!Z�i�)���W��?7����
�y������n��Yg�8��0�����\v)b^��[���"�����7�z3'c<4cKG
�+�S� X�j��q�R��oeU�]��h�]�V%Coo�a��r���?Y����:B�(+���J#Y�"/��/���^�D$�p�")��W�	�!��G��Z8�'�(F�����f7j�E�Q����155�_-�l���_���
.��@��o���@����u�v�!
�y4R��{yy0��rF��egg����Q4�4	��tI��n�LL@g�'�B��&'
�������c�~A���,!,y��))�2��������#v�RT���'U1*s���s�����r�fT��O�����k`p\C��2y�'�
���S�O�]�nR�6���I� �����
�*�������B��rW������e����&N����_�������<B��XZ:�[l��C�A�����?St8l����������P._ 
0�����e��9��P��5�����	{5���������=n�
��S�#���]���[3�����+o��[J��v���@n����wZ����?w���\����4_��3G�B,�Oh�A������Y[[����[)Bk�9�&@j�������p�@i��EMM����lW<�7c��g��iA�}�o���Y`97���9��tc<��O��q�+\e9��.J>y)=4������a22_�	����g���y9�y���[WY�QN*�F���k�U}R��E	Pj3*�������!�R��.�ymi�_ ���R�(\�)r�.Z�$��N)�����B.����R�x1u������m.���
���lShc\g^��X�����h����:����4�+�A�s��Rw����
�L1��!f���?*bq*L�1�L�-k��W�3:��Zg�'�c�!UDiYax���P\\����eZ��������;-�I�ed")�h	'�X��-��2�qz��q!M?�$�r�N�S���@X���!��bH��be�������QL����8�X�����o-�B!�1��D1=i�&J2����"�]%)�S�r��X9^��[��U�K�F,���/�n�0��,�����8����Fw7�	m�{�`���FQ]���������Z3P_Z�� ��R���yUJt��h+��7�1�u��eWw���c������K�����_`u!=�"����4���R\�3�9�>�k�-r��5x�;��k3��ZF���677����
7�9H�S�k���AI:m�n<�},@�(b�*�@l_O���(h���RN(�@�-���5#�p��V���o�WM�Fw[��l�'k��|%!�������j�^���-�<	�������1F_%�(�����Q7�h����(���E�&�����e�0$��G 2q Xmcew��f�?��C���1��]S�H!���M���I&1�r��1�}��R(,�e�am9i�Ym�pa�,l3i�y����rz��x���+��a|c#w_����Ff?Q���-'|�z�����vw��wz��55�zY��*9��/�B��_��'��Ke�������O(��;�wV��3��o�o��p��Wde����m�p�8,�K�M&�^�L$�M�]Ox�x+���
��"��g�������waySL]�m/��M�����-������$ .&��T"m����e!��
��,g�)�t|�/]�D��)"���u3nD�E���qf�u(S��W��S��U����"�	\���^��K����l`�npV��a�udu��7���=��7�px�k�y���w�C7&Lo��c�5JP���Ny�@�b�:��43`�e�.(V���;9!���f ]�m�����:�L�FS�b|L&����a�J���l�s�*��OX�u����f�hAg��F�q3��*�loY���UT��#	9�_l����,��^�t�dp	��9u���1�1e�������A!����:����=��O���JEf���=ip���b�AS��wJ$��;4
�w�W�gNzG�}��g��$�~(�hY����+���QGh�8�~<�����)q ���-$i]���IZ��z����1�S�%��"�tL�3�C�f�
�c"lq���q�
I���%��m���,�W],**+��'qj��<Cg}��������s{H}A��1�������!��@9��c*��4�h`x�!x6�4�6����:���2�I�`���0��G�A�Fs������$��I����D�n��9���	��I$F����_��� ��*��8PO>w�E����a���3Bz{-+�S��m���P&c�u���b�w[}me{���d�~������\?S"�����U�2y�\�i�:V<!��vp�B<��FT	�:+�5��41��Hn,d��mNp���
>��!�Di��=���(��N/xl#xl�~D�[�S�����$y��t�
��b���M=�J|Cw���@��5@��f`u>�s����~�!�g�����0M���1�z�G�����mIA�b'fp����X
�:NW��,W��ed�-*k�k_��nl����v����j���8i�����O��b��I����r.sa��dD%R�z������ Io����{�����MyJ������4<���)�n~l:7������bB�TKXS���:�J�����B��H�e�=���M�4&�tN?�K�^��E���[������8�s;3��Zk���{���Q[*+���@}	�{�V�����?o@t������p�r%�,��R\F���Z���@�*GJ�z���i���z]����x���j��N�a�����~�
n�� �e������7s+�� D
�P�s��sV=�d�������l��ST�oM=h�\cPdF�(�o�w:�]�]D���v:�a����h
�:!��5��t���\����z#4���W$����D"[`��{[}�Z�T.?��g��N�)�p(��L�S��W����K��	������q���q��
����>�F��X���p���^�!��PV�av$���P���Na-����J���p�h�����4����h]e=���j�A����/�x��D����!�Q�:����"��}����HA"���e�*���<5:E��-�+���`�����*��K�t0����.=$)K_��i&��'�#��)������Y�J�y���`�qp�N�6jWR5H*�0�c���Bj�*I����'���i,����)��\ye�]��[-v���x����/���L������{����Yz�������?�[�=�M���k�<��	��(/\�haGC���XWU��eg�����R�X�&{r�Yk9g?ts�o'�7#K���8&�w������#���R����{,Pl'������o��x]�"���0R��Mn+w����$���7t������p����\��O������dh�R�XD_��P\-�����';:��n�4�����4���L�SwoZ��P]�h�p�q�D���+��|����g��Ce�B3P������{J�C��3����^y���(�Z�V}�����^������X�`���^j�����k>N|n�$b%d�D�Y*��-V�������
}r4��{�1�
Z���t�7�0?J�u�w��U� M���u�_�sp��|���N5t(v��OPV��1�l88K@��Q���{�6��A�wx����G~�7�6���]�,�Vz�����/!�� �����	��[����2^u���3���L���G�����=T��g�_����|c������% �r��7�h�/��������nR��xh��|M��
n�"/����R�EbVA���p�P�L/��A�{>;s��{��E���>�����*���M���~�����*�?�����oPw^~����6f�M^n3�\�����]�\���6�[�������H?���.n;����R���r�kiWK�02��$(w�k�px��-g�v&�|�	���v	��e(���nd-�'9�V�IH@���s�"5�������ci_��W���LUk�|&Q��m��s���C�����~�z?�Y��A~{������^��M�]����h?���7w�*�!E����Z����wK'��z��eS����.�@cv�,\�Zg���Um��~4���%l�OfMZ���������������(w�_�uZ�?o������s�,BH�dFH�^a�Z�[���U�F�D� �-Np������J�Bk���.o���mm{o{���9��!�����/�|���o�����;gc-���sZ��F����f^�o������7;��K��7mj=��A�tV<�}"���UQQ���hnr
�]��b���_��U�9\[�N�R�|e}B�����:���uf�����k��{����LJ�J �2�	�R�������Q\�&B�L�ILt��1�MN^�
xt�R�K{�r��AF���D#���S��B� C�ex��I�4��n,�F���h�*"�k�����Syg�
)N��+�D���� y2Kg�F�E�.H��L����Ku*.}��*��E�l�(��M�x��OE��|���;�v���n���	#��#�����11��q�\�:c�B^��9D����kG:����J�9��&R{.���o���&$p#z�u.f�@��BX��*j\�����t!�� ����������������tga��j���~�����u��`�_8w���F����:iW�4/M��\��]���4I��*!���l�<���V t�4(��dgg9�������kP�uD+'�����hmsim�����5�gR���R�d2��dS�)���'G���od�}��1>!\�j;4K?�o���P}�������K;a�}���_��Y?|�z~H�+=���W� T����;w����k��<Yn+�]A�w�}]y��~�Ct�;��k ��{������������}���r�j2c�I*M"�b���L�ma��X1v�0�B�����Ec������U����x<k+z��l�<L ��kKZwAq���9�:zTB48T�W�U�>:�/S/H��������MG ��p����;�:s����<�>�eC��I����o�~�������?!Kj:[:���9�����E��QY �p�������7�)_EO�W:X(�F�(�4��a1����������}��g�67�BI��-���t��7�z�tL'�9�Ar���v���
�u`�3QHi�������oO.;ez����:��c��qX����W��6���n8j��7	#c��bc"�������e7`������>;����
����(=��HJE��������
����C�������>��F����Wv\�z���BX��C2��s(v��UY�&iTlR<�@��h��$FD$�S�D)hd���^C�/������;��
��v�M�OP���X0�F'5��	��=x���8��@v�iT|U/"�\U\��D�
��I:ig���������O��O�0��Nj��8���D�&�R�JR+1�-�i}��j4y���4��,N(� �x���* 1XV-�� �s��)��X�c.��RV6e/|;�XR�s�4)�����Q���?3jh� �O��2���.j�������_������` �v�"�����'X��u?)�)��$�2�L,��8Y\����S�"�Z�,��Mp������ptg��W����\n+�v9[4/:���.t���i���hH�E�|C!8��/Y���2���S�����)U&u1�s���<���z��l����?$V��	��g�J|d���g�3�Us���u9���V��Zl��u��q���n&EBr��E�
����=y����|�����h�����Z�`�O����a���,����>
��vu������y��q�3^�1����}t�>R��v�l��U�@g^i�+��`A���	�1������>�C�T��.<2n��w����'��V���]�����p�p�|213�R�b��a	]��w��;����������EvQ?6�*�+x�a��a���(�ga�����jz��B&��5l�@����SN	���z������AU8������
K>h\������;W��#~�pe�r�;c�V��8w��C�7E�'K�I0z�y�����qEMpHa�8a����A��\vf�Ax6X.����m�����L�%��s�����?��voJ,3��q�I�GC{�1g6����s�W-[����C'�*�\�z.1��G�����"z!���3�������@�09s���5�6w�����\��l�B��}��j�f���h������0�y��$����������nl���y�|&5����K������F������f_�t<+��`����+Z,�8�W�N�L�������U8����eA�;K*7 ����*G���:}�g�
�������oL��g�R�z{��t�$���k����dTN[�JW}q��9��s�|�����7��`q����%$l{�-j�#������Y�@��TFJa2�L��Y��F���
��$�T:�9��.m7�;�������:�t�.��4e��Cj�/�Y�'��_i_��
�	�J����������3�_��giUe��M�4e�?������UJ�����I�
Q�L�
w��2#�52KJ��]��K~�2���	�x!D�� z�����	�5�gs1Z�6<����c�g<��1������V����.�1�xsIY��II8�z�����N����"���
��xl�,;	���%u��p�K�!k�Ej'u��q�w�?D�pG�����"#���%��.����_�ci�Pg4w�3��k���q
�58��OX�(?�`��p����X|��'X�b�X����6$���H�d�"wHW��%����Uh��:{�J�p�1���Q~g�
__��:Q����1 S��;b2W�2��!�Q30���$��v�V�����T��V,�2�X�(b��a��,,&d.�fM�Z���Li����)fT^!1�i@�E�a�b+��=��(Nr�a=��I���/��u{�c�?s��5�s?%�U�
�xpo���&���wg=�[��f�Y!�-3�M�@��*����%a�,93��$P�'�YXjTTX*����R`��K�H�2[�9�)���������s$,����������R�����bS}���% �2���.%�S��_��I~=J|������P
�A1���_<�t}����KOgE�#u/l�D_��Q�
 ���(|F��(E�*�m� �L��o��e�h\�L7�x����6�2�����j\KFx�6��B�
<���/���S��q���j���9�����J�����67oWy�`E��e[���=�����0a���7��L�������e�=h�Y�g��&��E.g�%j����O$��"������x���m@�}��&���{�;Ev]�]T4������R��+����0����^�/������������N���I*�hTZ�8����6��Y���Y�R����L��A��ic��j������q��2�����I�����WV����%��.��+*�y���(!�z�9�Dzj|�I������$~��90�?����
��&�-G�I�Re�����Ck/[
�����������XG
YV�	?Wr��������p������E3�����3����W���]�:�,�jL�B�V�e��V������h��?���O�K�I�2�s�/�T����r���~��"j'Mq�FA�G��o+G����\�&	���jv��z6���e2�Y�D�&�XI1���f�Q��`����t��k�?��W�k��o-��{��/�����S�h�����Z�l�~�0w{�����j�	|��9d�2
��9�_�f<����M�S��,�'t7���W�A\�H�>�h!�����#��T�mu�rx-��D��P(ntn-��pw��W�3�,��]�~��C�y�J.�o��g:1�}
�;x���^�X<Z�`2f!�p�����Am�0o1)�id��uTF]��A��ga���'���dYO�b2����%2y�\��l�f�vv��P��:�o��a��A��!�M`($U���Tfo��Z�5�VU�J���(�|d�I��r ��>������B�c1g"����KR+������r>{���2jk���(��Q�JP�}�~����(o�'�`6�C��W�|HT���A�?�f���/nm���>�(�3�v�-����M* T(2��j��(
73X��M��~d���I��pKkUNb(��I[��0mi�T��L�1�H�����y��y9���}���������g#�yNf��6���H'n�6��y��W�l:���wp����&k����~�mJ�NlP�KVR{���'���^�YD*Iv���WnH�m����k��G��8�Z�������W���q&���0L��~���|�'�g�����n���l��
yF� G'�����<��������AW�0�erK����C9�2����.�Uu4G��!v�X�T��Q$[Z�7�������������,���8���5����8d��/��D���#������?�:.n&�q�+4��+��
�9�S
2Nm�bTb���%�}Sx�W����xR����j����Z�K���
�2zl�]X�����LA�=E�M!)&��Ss�RA��0��La�0L�������?�[hb{�q������+�_�mY��y��N�tb6������+�Med����<	OC�>���N��{$$D�p�����Yv6���W����%��6~|��=�E[7}��m���v����d��n�{����\x�����}�]�R_M���A/��1�,�(��O�z�M��������EH�jQH"_n����X��N�2k�����i��,��o_����I��@,�\��M�+����������O�P�����Hgq#��Og����L�{�X���&��)�zm���S���uk������s���=��gB	��iH��k�p����,������q$.�� �B��t���&�N�]h�lT����x�����`S�\��{o}!KM��
�����
�cJ�0P���p�0P����r3�g����wr�o`rg}�d�����sz����g�;�yV��y�!�I���b9,F�s3���4��
�lO� ��|L!���b�+m�'��:s| ��@/�V�����@&j<��w8��b���h ��Qp�Q���bz'*�xl.��cA��{r�-YG�ua���z "/���u��� �a���������$� ��cgq���L�����O��@�����{,1����!��9��Sau�d���Wo�� =�U��6��|6��	�6C���>!r�(�]j#��h��02	�S�����������f�n��I��3Xe�d�i�
��Z/���(��N`�`LrM����rZ��8�-..���ZXz��of�����4���Y6����AR�-n��+K��7>}��^0t�/w�4���Qe���A�gb���]��QC,Y��E��K�_`W'���y�f����YL1����u!Ph��(�Y
l�
���(�l���z��z�=�l}��X�m�&s�5��KoM�9g���+E12����-�7��0�{�������O�
�N��Z{�����W��7iw��,t���-Ms>[��^��]�
j�c������9f�N����\�������]��Z0u;�$��f.�@��Y��u	�������[]�_b/�"��1���U�%K��eh(���f�y<Rd����|�"g�#tm�k����h�l��>'<����R�s����6�Rk�i��&_V@��?�%X$���I$�a�0�K��M�f����*<�S�m�Bm�w[)��X:�{�������Od���Y0���y��(���7��.�����>�h��_~3^
Z��$/�5)G��L��a-��M�Q�Z���[VR�'e�:���i������S�k�%(
\%>�lnP�s�����=�L
[��Hj�A�u�GwP��:�Am-��Q�%E���"�p���>�$o_A����[>�����[S���7S<i`U���Ht�4�q�~U��g|�7���Y�w��[���/�8>�>F�����S����5��]o���z��v���Z�s��L��baY���
4����`q�:�9�O�L~�f�� ���<��
7vP�vQ[�����+�K�x2�c�`R�<������/[���6 ��hj�"u�gV�m����=�tn8:���
L�A7�����p��
�b.\�1I� �$$y�<-����(��/��O�����[�_=B\]�1T���>Vc���I��A��	��Y����H!{,d?��
5�D��X �l���������G�L�!?�6)gz���+��o���F�|��G�%%��R��#ti�N@~�����	����,�-�$U���X�. ��m0	tm'�j�1����eo�����o��>����<��}�i��8�O��7��`vu�xT��j���}�+���>6$�#%�
U����-X�����Lv�)���:8R��
m;YJ��(=,�3��~������J6�u����E�|��>/�0�d���f��Y~^^�g����+��a$'���u�.���;<<R
1�-�c�v�I�+T~T�#�5p%��o��4pm>O%�I�1a�;&�&^za��][������������~y�����H�YF���P2{I������="E��Y&������`�����S�LJ�����q����t������s�?�xKz����5#�Dwf�=s��������W�
J=�����Mj��-u�bj2�;a���oYiP�B�e����2+!$�a������"?I��6}��m ��oE��+�s<Sm3���N��g�"kM"��E.��j�>��c�t���vI�;��V���s��9�xK��}���z��������Vx���������k������\!J[����� �~���Wk��<;B<��jf�IE�f����L�r�J�H$�����8>��C��aV1����g�������v������u
����.0�b����B��N�*�&__�N@�����5L��k�~I�N�k��)K��wP>X����4�
��-������W���
���	E�_z��%g������9��9�`�cj�R#B�T*ft��4���Z�yJ��<B�6����L�~������(|�waz-���/��W����U�@2�.Y&������kP�D���DbP��1IK�����WcN����S'���Ni{����y9��>�����7�����s;�WBY1�D��c��'�/V�`1R�u�<=)�m�>�rn�V6@
��)��v!6��������N�$����V;JI|����	[�?-�7�Wv�@y���9{�_�k�+{Q�����'_P�'�R3���0�_c���9�Z��Y:��_�
���i�^�U)���������H�+�AB��&�p���������z����3��={�'��O�T���������n�+Q���,hgk��^"�h�J�D����^��P.�9@eL�a^.l����� ��1�Zr�x�����N6l9=$��S��R�����"{���P�S��".��	Pwd9�f����p!`uc�������L/���Y�&:I����6$/\~�N�����1���m'�����������?��|0mh��Q#���w2�=w�,���\��������K�-���#����G��z�?iv���>s�����i�$u��y:����+T�`���}0Y��&D����h��JXd5���BmU��:E���o�@'Mj�i�8�Q:�A�_O����)�]Tv��B��d�:\+��������0�&R�f�iL7�3�fS����S�B�����u!�����{�K���)�K[2�*�n)8�8'����e;����T�V^u��_F�g&�J;	G�Fvr������@�X���
.���Z�m�:����w���a�W�\��X>-;T���0�o��v���
���k���b�e�S&�aR�{is�w|�F[��*d�<�b��x����]��i}��2���c��$�2�D�@L���=���FqGGc0O�������TnK�����?hx���'�Xy�Q�g��{bw��E'����T��X%K�b��R!S���=����I.����]O����T���W��`/���������^1K��X$�ONw�pc'����������cX�*F�6��2�X��
�p�.FhWA����I�b�M(��t��E���z�����tBv����`L^��I�}0��??'�\H�g����S��r^�\���3G��
/3'���!�>x�9��g��3g#�82z�E�tc
%�m��QL2%e`�X�d���d�ipS�E�HZ��?�����

�����T��=����A�IlDW@:��
���p�X,��C�!J��C^a5C+,;�\���T66N.8PPz�_�Y�'�r&���g����qI��nn�b4�=�%�	$R��"qhx�6�?�c��#�wP��g��_P�=��jA^�'�9�x�o�����n��?o,*��#AH���7
KCv�j*Op�F)��s0'�.�\Ht!#q��������%�sJ8}:bE�vOO��W|�20P����w���������_�Q������{+���^�e���9n���b���-]v8�����j�KD��S&5e<�b�H�G��4��`'��D�N����"���>Mi�H��������\Q���~���*j�V��I@?�)[��L�\��|�t'����kG0U;�q�J%�A�������/ap!������������V8��&�����n\
Z���'r^��E�R���D�'�m��=�����E&^x�B��`��c�����Z�g�)o��~��D3.W��F8�B`�����O�x��C�����{U�O�'��,�(L�r.��SRZe.�*�bj�uG�������`���O-_���2����;JC/���n'���4�2"�RN�f�\i��"B��`�����=Jl�S�����SP�Iq\,��O:�[����)���D:������]pVE=�a�}u%5%�-"��B$"�O,��v*�d�����P�(��\�q�	t��I�'��lA��?��lV�)l���I�Q���"D+��R�:lp������T����gD���B�Mw+�y�6������������������o��3e�Sk����jvd$���
ON���`bwU�����^4���&$D(�Ft�����P58�QJ�t���#�QK���5c����#o6!bk��:���q����p]�����Kf�^��{?���l�"������I."
���6X���H����c����M��9��B7A,�Z�/�bC�����fw�20l�����-���|� lL����:���"�T�T��b���A ��7��.������p2U�A�� 9�:�!5&?1.'�A!���0E����, �ij���S�[G��C ����,�	���EL��qY�#vC����
�.�\6� rN���y7��?y�:�i���;�b��Q���A�<~n����\w}������a����T*��=OG���������D�kj��Nr���
!��R�kO'3�Lt�T&V���c����uU)���"��Z�&�+��3/���� ��$P��T���}�7-�R��,�P>`��b���NEg6c;1�"�����w��t���;P�#b55
��L`�s`2�)�o�#{p�����$���E*)]5�(�������Cr�A����
���U$Pw�
q
��=%��������>
�L]������u��x�0��d)-�X�&S���.�|���� g;���a��g�3�����@�gE`�X���>����,csXmw!�*t������ �i��}��N�8v��1N
��$R�"������AqAA��������DGUL����}��0�m���#i���X�{��i���^�s�x5�:J�����ZG�w*�����	�e'5�#�$
�h�������:�H���0����v&`Q�����9�{nQ��/P�A�(�TDDEDQT<� 
c/D��h�QcL�FL��5�n���
����3�3��{�[`�/��]�����U�
�UZ���}�_�B�����=������~ur��[1i�{�����G}����������12lR��D��~���X�k\c>��!��Y�����C���K�]��%6I�)��-��W4��p�
t��g �b����V��Nc{Al��c�C��������S�V�n���'m3!]�z��5�k���D�<��pd�Z8Y�����Px�����%���|�/��K=��9���h������h�V�������e���c���OK���J��a1����LLJh���U���W]tN
���Z���}��6�O��bV��j���L������R��4��Smod��9l��!=��\��*kg�x���5*~r�x���P�23���Xs�8�������v��j�"lK����������S�A�y������]~}���G�6��=���3�k��M4V������x�������
��kP������9m��z�����D�p��z�Mb��>��o�et5\�'����|
5d_�P���?1�s����*�n�hW/���������y���
h���
��o��S8�����_H�~;��)��������e �EBD��JT�;����:� rQ��@P�^�S
`i)"x-�(����I�@'�Z,&
��	5$4J�Bc#b(K�3]��������'����?8R����JS�����4��<�i�e��t=	A���=7��H���l;@������T���t������x�j���
�w������=�]�nSY�����ri��^as�F+]�����!-2������Z.�T��u�F���2��}}���n^g�����Ba�p�[�������G�	bh'�H����:"���������>9��������3Sf�b����Pq����y�����I�&w�[5��M3w9�������;��&32��P�f�M7��"��l���G!L_��<#j�\N��`�f::&���;������C�����	�
=�*�F���>r�u�	0?oo/�v�	����0�V�ZVR��_>�[^z8+j|lL�����r����u �YR��4�|������=`R:*��B�X��m�3�}g�IM��/�F��&<:@������w�[w�	��[����^���[[��������+.��_�����N�{���N$m.*�{��M��F��pGB!��
�*����1qz���u�'m������"��M�F� %�g���y2f�6���T,I��p3S�X���+����]������x���
���6�����u78�*�}����~M}���Ag+S����<[Cb�w�pt�%���<2�*9�:�������7|����^��4t���f�(v�����t����Y����0��������������v��{�K�lx��T40jJWm�i-)����@��=x}
�G��NQ�
g}�D�C�<�?�_��u
���Z�m�Bmt��c�;q#���5c@z�:XZ���n�a2H�/��3������B0��%l�Ws��nsdP��N����"=��62���e)7�.ooB���.�t�p��n�h��S'���{�^�{�����:�w��o��$8K��8~V>�S�y�cc����@�9p����e��}22w��<�=�+��U�g���Td���)����5�$]5f�����L�:��I/o�MJ3��f�5j�z/�u\�?�����z��:mv���������yE��eSgG�)
c�����8���������h@FF����8J[T�+G{{��'&�:9�F�����IY�
8�jC�k��B-�3�"������+�;�C�bc�F����D�j	F &*5��sV�.���).�h��q15����4W����Y�2h]ryj�9S���d��m�8V�N-M���y��������\�R�,��g8����:�hf������g�E-v4�q/�N����T��+����q��=@�.��o�h{iX�m��i�o�Tr���me���Sc�g��Hk�x��M�eK,��N��w��Qy��g<�1/g���@X�n�#�Te�N�P�07�4�$:����E����	mL�uDnc�/�;1h���9s@��c�?8��];m�6�����	"e-�8������k�,y��H���L^k���km]��!�y*���X@i3�GE�k%pF�������.mQE�
qH��o+x�{�������/���?��n��A-'�GM%3�!����A#�fD2��h���\����r!4���A�Y�O�O��+�l���I�d}�q���K�8�9
]��c��-��������5@J��2�@n<c�'t�����,��r��v��h�����lp��D�F���8��A���eVJ����el�����7^3,�W	���J�����C���������P�v��i�TW����C "��(�rB�b�],p���:.����h���bPy
���Y	�A�t���OP�����k3-L$@B���v4x���>x�����O����:���f��	������!��?8�W����5���'���4�G���������6I��������_���|I���{���)�I��/��'r�_8y�����qX����bt����������G���?8^W����X#����������yyfe.�(s��JH��g@�I.�Z���X�����Q�M���hF;�	G77�G�����Lbe�:l�}��K���1j{jJ��KS����
�s^���v����G\�	�?����1���M�q�A�����S�5�*!Q{����1�Mp�+j+���Y���������:��x�V:��2�H0f.��g��c������{32�2[?|��!	����W���v�<�����y��N���U�1/s�|��WfdK�@#7��PN��Q
��Pb����������mL�S����*_��eVi$�*���o2���\/>,wCqq���0��
vO���������9�p4oI,�V�dT>���1H}}��=�����p�=eI."g$~\�ST��{_��W|5ef��5���Cb
�w-�����qQ���wUKt}��E�V���������U�x�TmobF�����(7G������U�3���j-�(vP}�L@��� t��7�_�|��'�<O82���%=��b���D}P���k8�S[��
f�<��O�dI�%�.�~Vn,�Y��_b�8wS�nM�#����S�6��	L%\���)�3Nls�Qf
ZU���'�q%�`��P���b�	e��G�%���C�J�����1���GXb�A:�%������4�^��<�s��1��:r$V@N�����%��0���Ep�@N3���E2�
�L�6w=��������	�-az�k2V����1#��-!�I�R�g��*v%2�I�pB��I�B��B������[i5�Z����u�=[��rl9m�����Yy��DO�r!_!�Jvh
,��m2��*��#�B��m�^<��j������./������xL%%B)e2����2��m�B���~�|]�I���.���8;F�'P �������l�|�(���c�@h&P3���T4�����50�S��1�0�?�5����b��;_GM�a�u��V������s���Az�\����>>(�� �?6�m���9����/�7w�$��-�>�e���\]y�
���,�2�?������nUj�Wb�a;��k��d����|\�)?�U��e�N�o�w��P���t�u����I�{V��|��|��?i7�:3��gT��Y�N��:���-�z��������i�w���W�*�|/jFw��^
p���[@�e��8\�;j:^7���h��OSv�E�ix��);*��;����d��$�&�[a&Hg%H���Pe
E�:�8��#5Qr�P����Qr�&��=���qD���Fe���x}��u��Ab��\������+��^�s�07�hO�Y��\^]����Vv�������v��&p�Yi��z����c���E�e��O��]�������#��11!�	�B�Yz+��������cL*�y����y��-����f�B�)A��u��I3l��RVnQ\��|1vk�c���L�&�4[H1���:��c5x������y���}�kPc8�sj�GNE�C�6�k-��3OS�R���y!�'d��)[E���A�(�U��p����+( ���;G��[&�5��u�6���l|hgT�����Pp\"A������8�ja[:EJK�$`���o�n1���U���|!.��P�% L$����V�rV���c��E�EA,�m�ci� ��s�-x=k�j���8)��.����q!��L(��8)lw/#+o���AO��Q�>�����K���Lo��7���@������j��sb����N�C���p�.a�����������+.)��'�m�~����_���Z������5/�T{�
t��*�W�����m��D�������JX�O��vd�����2����7�W]��T�K��g�>x}���	v"������F�.�Q]]����#�C���=���rF�A#�=�,i��K$�����<���?yz]������`�3��`�����M�o�	�"�~����49yi�����T��9|d��
�v��������q��u7��5�F�D
�9K�R�;�����&�p>�_��W�V�9WP��K���f��9i�'������.��s�~���o�q����y�Ig<�,����h�vh�:w����C}����#�W{����q���=�j������&;�SV���
��p�4!iv}���S6vQ�
����'��<a[U�R��'�����xD`�?9Ng]��B����\�?�z��g���V?M��f�N����1K�!����^�oum9l��3���$cW���������
��W���+��#]����?�0���2��
���2R��~�*_�`�S��+AXfr�Khk8^ot�[���U�����#�Lk!\i� �Wt\�G��|d\���s���?��n�����SFv����bgu��z���4��oW�,����(TG���jP�f��H0�$�A&��+$���l(��5�H$d���i-!<b^ZQ�9�$!�A�N��hC�`�x�F�B�G@<�N[&���$�!�C~�X&�ny#���yO��A�Kpw�Jo�����������s��
0���l���[�>;K����z��h���O~k���^$��Kb�X�67�8���JT����o�d��c�� �JDB�$PJ��x��,�7���1LB��xj-G���~�n1��b^'_��������Y�O�RkS*���2�����������OM��Jd�9��+dB���a��r��O����f�M����ql��
��?lz�iaH��g}�3�J���aT�5(|u����R�:w�����s�g�����(�0��nPG��av���i�
��1m�������=T���51�
���Q{$���7�t)���`>�cg}0)j��E��?�54=k�a��	�������� w��@�lR� ������>��NIk��gA��2&\��2�?��1U��t��6�d�[������
Jg����������z��0��v�z�;rz�;r<mw�2J������T��S����Q��t���k���� �.�k�a���F�Xpu\N�ict����%N����s����?jJ1�S�6g;8������5[�*m����.o������p����b����?Y���6������������������}���g�������M��*�gk">!���"v������2���q9�F���}���>�m-�cs	��\y��P��A�	�B�7�#(���!�ty.�	�M�uf����c-Nj���9@�'_F=P��e;��WO��t-����=o���O_������~X������f�f^FaJ�4]XP��p��)n������7��k��+��}�������$-���q�����C��.��Tz�@__��3kd���Za��A/3@�4���07-�����������������p��0�o�H�1����� �I����#����~�H	�K��������T�z�[M�E��(����1h��T ����&�	��c�Bx%��19��h��#���}#��u�N�=tpCn�K��@�>X&���5I>`�7��N����q�J2�{�@�Z����r�����V�n�3w��0���r�\�f��@�;#s�,Y������5;����=���3��������>z�1?|�R8lc	n��t��b�jq�B!�@\K���A��	�TZ�Ng��i���|�������=��f����k�zF�������'�^��P���
���,1�g�B�LA����(W���IL��]h�3�[,��P��M��y���3gq}}N���y��l/���8�	`B��	����h��p����)�me�o
��O�]����wg����Jo(OM;%��]�0���|����������������{����M����[���~�<�p���]=��������r
OK3�*�i�(�Pi�e�L�����Yk��-;xf�&'������'���9��(e���#�Un<�
/O�����K3���
Nzgj��
�������
��d"�(�:k������02����^� rD��k*D�9��f^8\�:pK�F���@=��Q��������r��oP���^'�L���6��v��T�F��2����b��u>�^���A���z��m�����M+���p�io��a��tp���K>�����VcL;
��1LD��R\��G5�����(DD��/���#�`��x���-�m�dZ��4�DEgG�\n�/���;]�5����t��5,�#a����,�Q����rr����^G��"�����f��"�1��p�6P��5��tL��h��W_���%_���XXK%�����&W��'�T�� 1#������e�A����l�_������D�p��r���:����S��c�����
=J�yt��6��6j�7&/�q���d�j�HZ�O�j���x�4�;l^��y.�:�G	y}�^���N-���|�@&��N����
c���)U�S__�A�Z�r)�j������������[g��	�����S�6?x�9�����Ao{�O�W��23����+�Ac[g�.0�C�����`�^�G��O�yj�i�����_�[���������v"�����4��Q�	KV�<�dAb��m���V��k<�?����������)q-g���%��#�\�D��o�{����:&��=��d��$aq��������b�B9	`|
%Xk&����%��oX��mu��h�D!pp�*�D`�u�R�6�S�������
kGDPy����<���zz'��������R� ���#:w����;`g+��y
RF�Ny����W?��/9U�p������{5����H�'������6<����)����������9H�J�V}Wg_��4�����Qw��W*d2�D)����JQ����`Bo\4L<\�/�[���3�@��p-��C����
z�ATUo�*�G��D����]��4�6���P���z����p��r�J�����K���+O]Z1
�m��
b>�q��uy`:
�<��K�;t�sp����K�!�����i��5^B�8C��A(�[�c��g'�]xV���"��H�|�9�@19	$��U��D@���Q���r����"�Tf�;V'��\�������h�- �C�[M
��`6r@*��J���l{D�C������tPd�Qe5J���B�P3��9X_�V�����_�C3���O��4_	>#�PD8H,��q<F�]�
�c|
5��6��o?����HC.:a�SMo�uT�#����@H�	���,W���E�G���iH�i��Bi.��8�)����S�� 	m=m^�g��#�rKe��|B���R*��[�)�&���%0�?�5�N!���t����fk���#o�q.g�\��uk���&�|��_����"�\��	>[��3��x����~���_Q���d��f�������27*�d�olg^5`l�m���]'�n;.�J�L[T����/���?>V<�%���h�j�W���X��&?��^�����8~����ms+����'vr����x[W���96�S[�?��tD����D�s�n��7o�9�sJ��G����-w�l)9�~J�]��hc/�9�L�X, 0�@X��y���n0��"��br!�o��W0��qp�8]�r�d;]v5H1�P�H���V���2���d�k���<�{0�W{��.L:b[�m����SK.���
����M���^
3{B+p���2���;�ZS�eZ����|��!�Q{��� ���2|
��n����~�C�V��B��c'>,o�q��(G@@\$h7�V\f�4������h�~�Iu7�\w���)o�@M!���sCk)G�`�PUE�Z]��k����o��y�	����o�A"��>����X�G��7�����#o��������k���
���� ]{��s������� 0�=
l�p�<�YG��
MM��g��x&�������,�����o���+����	�\xb�zM]J�n�[�g���m���$�R>Q����mL���M0b�}�*Q�o���d��d�?�?��r��q�pkk{+�=:�4�m<:G�`��y���	{��l��POvo}x����;s�\�Kp�N�i�d������#���{��tKI�g�$&%%�S��+?@�P?���-p#^1���7y��yoZ��0��	��ra
�O���s[&d�:���'d2���������" �9J�y���;<������iPA�A����bR�/�G���j�xJ~���8�������B�O���w�.*na���|��}0����)Wm9x����^���~n�����ckgfL��A����'WTL�F9�7M�u>��7�3�������~���mX�����~�C����6�+)�OEK�T��,�8;��R��f����A/�]�#�q��j������G�@m���7���:78`)\�3�r,�D���V��]��4�^�v3H�$�2�W���*���Z%�=m��q��|2'z_n����9��uz�|g�0n~�����|q1���[Q>����O*����n�g�w��?���R8�D��g����-Fi6VDg[t6J;-�m���������M�g&����m-������h=��(�R��Y�e�wL'1��A/��km0����>M�V�z���T��8Lk�}t|���G0��������������I3�e�u�������)�!�mE8l�{�����h�ou�G���'��������_���?�����g�a��b
-��+5����&�&z>@��_@#
������>�!�N"��K. ���|wkl����SC.vh36���6��h���	��F���7>!_@O������d^�����O@�g��
� �����yY��^�(EX/�?8v�?�X���W����;�e-h
K<"3���f���{@�VO�AQQ�>���'`���^����,�g����d�#��|oHtvqQu������G��U�z����fnBc�����u�h����������0\�G:����!���.�3}���6:�,mA��ew��RV��X�J�(PQD��%V4*XbCEO�����Tb��I�$�K1�A
���~�f��;K����%���o.�>;O{��y�w�]:<"�=�5i<+W!�:X���=���v����a�_rl�������@_E�:�i���E�3���K����f��U�O���N��!���@���/���y������!���� ����Jd4��nD6?z���nG�.��?"v�����������Jq��Hf5������sIdCY��0u�����f�{�D`�Y����.��I�$}$���Lv��m��9��tn'v��|�abhv�
?&�B_����>��C2I�h� @tB� �Zy�_&@�q�������u;pjE^���G&����:S�^���]U���8:3#{}Ub�-]��u���5����N@���#R 9bDLL���
9��	$����������H������H���x����~��w�����p����0YF�����2s��\��t;DL\lo��m���A���G��q��'��p��'��s���B�(BY��n�~��^���Gy��/A��T��*xr�S�oD�(��I�2�)ddrr�HR��'�T
6v�]��GL��jj���!IN+�]�if���f��;_�~
�,~��z;g�^�<���+���cf�Y2��?��{���=�Prb��S��@�v��>��A��,�q�n�q�FcX��qa�:f�E����e��}; �"�9�o`�����3�.���m ��<�Q��0���a9#�����y�� ��%�e/�1��{�l��_��HK�=N&$v��D��<::�3���q���t���P24�0,��!3������C�� ���8��x��Q�I���a�����{���k�L���u�T�uI��'�h�x7;�m�^n�����G�q��>B[�4��f��Z���G�xL�jG�R���D����V����mT������
�D?��~2������jF�s��.[�K��}�(H�79e�qq�C�C�ad����R���i��LJ�������~�x������������]��xy�?�_�"�p��I����m��f~����'����'�a��4��N�rq�����mNu}\���:p�=��^1�����.�n}�����vG8���� �C�����*t���$Q�+'!$DF�}_�BR=x����~?
~Y��=������c��� 	��Wf���Z a����	#���\���u�f����\�v�k�a���)9\�Ry�A�
7�#���9I
��V�"�"7�!;�d
����5����-b��}���V��b�R�#D�9ICL&�,O�Q�*�����T][�0>�Jl���hnt��"+�3
�]��$F:��3���-��j�:�����
���iX������EK����d������q��s�����Z�|n9� ~���H$�
�V�����>�hT��R-7��S&��n!bRLli���*
�&��M#sr��Kx�.���T��WdJ��.}/��n(
Bb�bi��9���F\��n=g��lFxsE���j
��	!��h�Et
>����[��nl��4i����Y��k`��v�i8��)(�����1:xoK���ICT:�F�)����<]Xx*vce����(��]����"Xf�I��F�@��@3>�!��������a�6C"�=�qeHa����c4HU����BL���59.�@�H�!�5���`�+`����_m��bC�;���^��
QV.�RWwh���/~l
�������t�*��f/��s��Y�k���or%R�V#�W��2�0��%���$ /{	h��!�{i?{:�I#z���9c����.�#����������#SLZ��^��8�����|[!2��t�N�-3UL�vU5@��������-� :�T�H��T�����b�1��F�6���P
7&�z��0f��/&xF0���r��_UU��i��M���D��3N��W�Wq��/�Z�(��=6��dM�(�D�hMH�F
#�b���r#��R�4�B:�f�?��g�^������Q-����
B����P�����n1�&��_��57rm�L���9��S�6r���X7X���P�����aS]]�6��goD�%,�*8[ ��7��'[p���3�
�p<�7Q���K�>$��|q��WN�;}�KE���e��:����-n�����3��G$*g���@��eH��%�fTN���$�8��;2tBB���N�!��(4��T�j�Q��t������������Y%;@�:D�8!S��|AxX	!<����Q��
`4�I#���������PY^��"�[�w�Bg�������^���eS��9�3
G�Ax�E-�7�]e*�R%��q��`�����A>�
�k�����@
X;�����-����Ooj��z�c�����D�L�����'+���!q
���?��K�_��<)�������f,����6�-:�h��N��T���-1�Ti�O����;�����l��B�^���c`"~�����)x4�����b�����BEF�Za�C)7s'b{��	����� Al�����`	gQ1�0d��
���F�x��j��}(��7��E�$�����&!F26Q�,A�.-�
�U[�h!�H����;�!*%W�b��>�����9s86��Wc5���x���O���;�$ 5c�hv��weG�t�?Rt��:c��J�2f��i����L��A<��-���o|<x��)+�Tm�������S���L:�����X�>8{��lH�?2��w4�	�������b��1:��)�"�hOHnI&��D��;""�]�M�[��nl��dK�����(���#���;�]��fY����/��R��i�V�g��F4����	��j��	����#�p>��0Duh�
S�A���B�8��8�nV����/����3n���������A_=�q]�s���c�I�]���[���=�4I;�!*e��+SY]���('[��%�N��;*�j6��q��������!�\B
BT)az���Q�O�D�kFB5�kQ��XO�y��r�\���8Y{LBG����p�h�r��1l�Af.�=Ks�P�<z�Q��y����;7�8$�v����~�p�Z�}p�M����R'���?�R������"�BM^R�V%U���*O9�
c�O�H��\�s�l)�^�bC:��5�HU3�[�=Q	��.Y��KE��_���|*[����C�����������=��]���)o	Q�������*�"���h����������e�%�[����0k����e3��V�����^C���H�D���<5r�!����!+uVyW���E�\SV_�&^�~d��X���D��kL/(�="�(�
�c'�~f4�N4WH�klp��?����&O�Z�Pj42�����c��C�V?_��*�������c���Z�X0�*��<,
}����gz�2�k��N�Q�3���P
��T.����v�2��s����	������?��
�sF�C�`�Wt$:t��_�������>�N�
�?����_@����{�)y���9�������2�YSc#���M�����\���C�Y�k]Lo5m7D�[odUM�p0������V��ry�t����;O�|+w�J��Cs�!@,��eMb$.��`���"�VgZ���tazJDT�B���W�[�g���4}����:]���kC��cE�'O���C�����X���7��tPh�6,M4n�����6�^�pa�����%=�r����=����x��	�d�w��]B	k�L�T���;�
�*)7�b&�O��'�L��y�-O��>��1��oy<z��
��m���8Hf�%�,�	&���q�:f��0�6�ZU�Z�NhJ�6�Mn�����f�d���G��|��7�o��ba��I���+��}p���7+����3�*zB�.LN��Uk��=W���������FX�3�\�Re�J�UYn��OH�,4�<��4�c8Y��M�r��[�"2�E�(���|�!�K }�4���j�l~����������{;7��D���UT������Y�����G����z�cw��.���cc]�������������z��U&�`V�8�X���c�X�vaR�,;���>�T��Q�������{�����Q	pY`��S�A�;��NF����!S
�{C�Q�����2NR�'��F92���?�g[����<�4�
���;w�F�B���UB����f�\0$�iK����d��m�_��I�{L�A�e�����\\QGWG�_/h�700�rL���<C�2�����r/Q�)8�]�s�{n����lh���$�����hr��>z�B��Xq��7E�v��rIv��<Sj�Kk��4�^}�c3�n��2C�s�4�ly�*E6x�\i�$�B����I�����R�_}�/()�5,�)�g�%��+ky���TSIJ���yS������>F}��GD�����������#s��?_�[4��>zYM��������]}���^���<���u��q3�a�P}�lZ�.N���w�#����o�S�-
o��L"����H�����R�S�5�]�Mkd;#�S���z2:������|��b���]4���f�v���4U����y�^��u��o@�?�.��������,���V�"��S�jY�����o���������"���z!x�i�<���1m��	ia��:�F�|��K�O��c�E����h���x�b&�bL}�������L;���s��d��}�������#�s�����tt"�A���
�ga5���*��[[4�o��9V�)O��c��W�zr����8��.�V~j����Ih�������#�����O��~������C|^Y��/X�H���A���!E�Jt_J�+=�b�hmUU�s��������}S��O�D�5�h;�c��f���o���3��z������e�$w��w�E����=�Z �%�-�~;q)(+u�>o��*>����&2����V�e��=�r+��>��'����`����Y��EP���2i��:�����'ABl�@�`�|�Y��m����/�v�nCj_0��������}��`!��	�B�3X�T�yp��L�'�~L)m�����U�v����I�������[�Tx{������g? �I�_��:+���1��@���<���wO|�!�<�"4JB����#*M��@��|'���J|��
mm��g����K��^EB����EA�� 0��*�h0@���%F�T&�/d�	hac:0�*�N`��x�<��y��Vx�L��������3���?ED��g�%��%sw��
�4�d	2��
��_�;�z�;Cb�gP9��68�L0��YT)���4���!���u�(B
��""����A�p�K�`���:��'T�"�W���������ww�on�c��T���*�Mf�4�1�$�R �V��e�`?��B�@�Se��FY�T�Y]*��_N�q,TC�$V	����p���#��2W9K��&��S����LqY���i������=��4DMp�?��6h�#���x�faB�H�����3�9��Q�sqsr����
-�,lxz��Zi��r�����gCB��j�+E�Pv���i��[��Ko���`,R�
+c���Y�k�Zr��%�@d�E� ��E�tBc1VQ��`2V��Q)<�$��'�|$��8�6M��5N��d�%�Q$H�tf�EVg��A{4����^K�$�/b�D�T���]:�k�.�e�L���GO�����@=Z�����`^Y�1���Y��6@��p -\MeB�S�����a[�rB���Hw��H��i���CK�4n��v�u �{��fa�#u������� X����e�)y������[R��yE����L�mr&�C���7��VK}5�ID���|��;DA�I��+��'�L�j�p��J����O�� )�,���z&��2�TJ�a�66����G{�riB�*UV��hf�Q��nT�5�X�|d?�RN�/��������4K�Y��sb�4K�	�
��D�|l��D�^��.^��.-�B�c����R���*���W�s�Lj�R0-"���9���~2���OD��N���E�dX�p9���n��+%i�3hy�F���Y�h�L���f�t�f ����u{��L<@�t�`�5-��5�l�I{I�����]��)�������zt���X��8�G9��I���DNE�������{_�(��'R���87�:e$�S;xZ'S
������k�����^�5:��Of����*�3�6�a�=1�k��}&"Kz*�zz(�CB\c-(�LC������Py���A�gQgx��@��{���OA@�����/54&R����Y���Qo�$�2��/1O��h;��l4P�*�I�
�=Im|m����m2QB���J�����A�!4��tP��f0��9��i�z��w��C]<������>����R�K�~�jNq'������#�#���+s�RE-7��QF�����Q��0Wk�Q���-�*�>�+m��K!Uj�H�HYf�b��Sd���'3����_�Z��v�d`�K���c���RL]��,@��2N!�
� ��<z��EA<����;���@��uv�_��_qwGy����?p���C���\D���?��"o�	�O�������/<����
M}m��� �]��������z���g7�2V�}��3y$�!��w���7"GBM��@'>/pF;�!�AN|Qk�33@a����xk7�+}����3g@���Gc��n*o�O=^\�����������]F�����a/�j��r;���D�F�EB�BB>�b
$��-�&�:��V���5�,������^{1��&aa������������
��oXx(���|���O��%�t�2��#������E�R��R�D#&_�@'P�U!��z%�5P� {�: �N�����IcF��tVR=�8�;0Cs>�e6��%N��^�y���TNI^�����8�k�?rr�$��5��8���e�Y��/�����;����L��m@P�5��)���J��E�_���#2�'��v�����W'��Xx�|�	"�0y��p���P����#����K_O�b����^�N�i�$��IE/�����\���)�%�:���DC�M�|/E�sE"�7��[�����(��9���$�����p������s��o����oj����q����o6z��[���g��kI���/�l<�0#k���8o����}���������K/�/�.?�:(_+�;�ysr��W
��Dl�>�/(������7�nr'������k�pHx$<��i�
������Da��$^/���&��oo��M��^����#�����P������5�?S��P?������ ��z�x����?������k�����n�j����j�6q��-^���������������"���SyG{��,*�[�J^�K@����
�|\��Ug������[�2s�L�o�} ����y�%8�- ����3��&������%������:�����w@;���.R�����0��������#;�U��T�P�J5]I��JI�mO���\�����I2 ���d�!�{C�����#�E��[��3n���>�E�p���'N��n>q�����\��dd��]��gfUU(���%1�s��mU�5#n�5/,�u�RZ�9�.���"wQ�i�j����Fn�������7���\�0S��&'���q`r�����������z"���N��s�����yxx_�z��v^
��38�7O�
�v��z'h-�[�C��n���]�#�%h�~�-�m�5U���.#�e�,��X��D5�W��?��D=���N��}�)K`������}�S��#c����]�(��"�����B��+QQhLK�0����{yz�
=�x����h?���O�m���u�>,�<�i�����������,*��1p�������\��'9;O��=��/[���m��KV��hw�xR��7�.Y�?.�E�ID ���E��w4/�'�EU����	<�FK���DH��d��u�<�\}E)T���:�<������@����$���S���L��%���D���zX�~����h"����������/�\Vq��l���W���X8	����:������.P����0�����_�r������
�V��<d��9�������������+��;y��dEG,A����������!��Z��tA����d�C'��d�v�V���������dF0o�Y�
�B�����<��=kbA�Bc������l�vov6w��WN������-
7r�,��/{m�R2���\��<��2k��������~e��6�����0t����z���b]��}����B<�
�>�����q���*1WMDR��&�� U�(<%9L��ty�`j8��,���8}����b>���%�x�?(�Z7������u����h�������9]�2���~`o^�7/��y���l$T;��3�������!����n�;=���L*�>�#>#p��;=h����EA)�H���g���>KB;�U��x���I�f-�9��O��%?VN��O�9s�a�>������jxM�����M�Q�I�l�rr2�<�K-������&��
�������<H���w�r��tpp6����
�J�t����&i
�e�1
��E������v�����a�)K�-�7��P�s���+������8x�f�M��
��Q���~}4�E�x�'c:���	�u�_���f ���W3�=���
)4�/�	�9AR'~ ��$�=x��Nb,��yBh����*G��Pd|�S(1�`r���M�B�������W�|��������o�(�0kam������G�,:pb\>��b�iD�fp�����;=�w������Uw@��.|���;��*$1!��Z��l$�z���I��7��t�o�+�w}�L�������qB�~L�ET����;C"5���v�}
F91!�>0l4��Aai�455u775q��I�Q����"Z�	����+����gD�d�h��X���m������?�����0"��rm��wA�l�0�jq+�[��x"a���v��	j�sW���"1�d�I���s����I�ptF�QG��O��O��!��}�9��h�R�m��Y�<Dv^d	�ED7Ig��e%;V�L�D<�<�Z.�s7!o�r�Z�y!���r��i0����#o%�����.s�]�s5�����:!x�h
|�h)�{�o������b�����]\�_|��:�rz�O ,E���T]�$$R��85�@@�OZ�A��$��Z�����[E>���{�n���	�5����1����M�.������k���c���Cs���JI��0a�v��$e��Q�)�"(h@������u>�<	�j���a�N�~����u��������E�qK8_����R�&?/w/��#��/"���%��Rhd2G�5��g�AOD!4<�}� �.�|T�0<"�!�h����{/O�{vP��[�z��O��sh���o6����7���c7�3�`���nS�M0�%����A�m��n�j���K�r�M�	p(��s�a������L���~��-���!fMj�v� �.(R�����|?������)�������v6���hK�f�D�sK�����Vdz|��A�I�L�)��?�c�������bhq�#�u����n������d��#�;��� D�����:��K�]��<�Pu�������'�!w�������|��������xy
�,
��)��'�����ES/�5fW��T��S���}��N�7��t�<rbM�����v�.���t�Z~��?]x8�K~�����^��Uf�:���_�o����.�Sjb-t��O�����c�|��+�7R���)p'G�O_�2��3���v�&��������@�'<a����}�}:hF�m>J�@�l��3
t��Q'�88;K|`�y��[.�k�w��|+��x�b���w>�E�W����q�����N����9k��v����t7�J�y�����] �4u������W2?~z�_^pC��y�y���\:!�@$�����\���9�L�����=��+[���!������X;����o����8��~8g����Z|9���gX����_�#~�� ��<��Fu�Hb	
��#
�@�/�$y+��
�`��F��Y	�+ w
&�F��'��QD����F��|��O�����<����/	P�P�������_�UU5��a�w���W������D��5��?{=�o#?
u�H�u�i��P"!G�6�''��?�
l�P A�k�����	�I)�&Z�D��_�?��,�c������K�
(�J��� 
(��
*b��A������1jT4"*E1Fc!��hb�=E�1�����|��I����?��$����f������93��:#�O��x�h�%��E02,���:���Y~{��8���=~����oO��|jOVFF��S��&�������f�2�i�
��x�-�K�yrTE���9��3�$-���W�������C��.F��FL��M�R�b�i��|��2�B���z��d��D��$����\�G�����W.�[���`��e��Gf�o������B���[�m��>�|8s����FqY��$�t�1�<s��O{�21L����A�L��R���*OyP�,�����VgM����z�0�����g����v��;��w����3g��������
�����E$�4���$;'�ET�	W��*���K7@�.��O���6p�_u��xh��:s�tT��EWQR��0��]~|1��c�c��6�[��
������z��j��6��V�t:���Q{���0V��X&���������?Ija_D������sw8�����4�0+��C���v�,1����h�c�V^���X�D�'O���^����?�	,��+e������,^4�8�h��[��=b����-	m�8k���Cz�`���#%�f��_aS���3�l��=�|�����r������9-����(VO����(F���#0[���M7�3�����n���)6--9^����#���~
:����2juh�{drr�
[Z�����V���)�zMV�V��%.��@qI^$1H��
]"V�X1��wl�����0����K}{w�5i�����^�����
[\��I-�����L��.m_�Y�nq����wku%6*mz�b��
i��b�>������z���I�xS,�d&��3Y[�h��c�6&���7���<"�s�������i����c�bcy7��\~=��������(c*\Z7m2��/�:b�����4�+��/@o���?���X���)�woZ�-Z8�y��m
�;��/�6Ao;����c!���I�rH`���~���P���H���P��j`�\'WFF��1�a@�J	��$��S�4�t	���J-,)���L�������D�����`����
�Rb�����
�e�G�3'�%2�6CPd#3���A���B��C�%X���Q%4�\ c��	����:y8��u$r����d�:	f�rA����&z���k�"c���\���7��M|�	�P�!.P�&�}�Z��k/mg���h@��_$���cz�j��U#��I�I
�F1^���������0��H��f��������M���������z{vh#�V���Et�"IV2~"�����CE@�L���4��0�?�Gq�My�t]�^4u����-`c�N2�aU��)Mb�K4K�m:��a^F&l��MJ�
dwb)���2�rF&�q�]c��J��,���"��
H����p"u�����S���;A.)�F��Y"�M���DNi!O�fW	O���>�]�JF�����e�<�1Q�������F�@��D��Z��8��e�����[H�h%h��{]���/�O�Mn�M���������7|YE����c��6�h�m�-��k�B�r	���-ra��F,�B��i@���2^^�A2��*1��k����B'7�5�����df������}�'z�,u��&�QF��I�F�G[�~`���/:�];e�	�ggn��hHv&l�����9-kew�����G�
Y��W(����UHQJ���xr��A����Cv���w&���6���?�-
U2��z�Q�V*�?�������9������1���sF/_0zu�d�,�C�n��~����6~�m������.�S:tP�����t�b�=�G�e�2�v�����E4)���gb��P2�E��B�78��J�0�����s"�8�Hu�k-�l�a�05o��m�����\��YC��8��S0�yr3<�q���9}
rsVoP��jFn����������G�o�3{����RL���30��,g|���.�*�D�nx�2���dA���D`�j.����s�_�0"��0�������]���N�0n2Y�9w��g$c�-0�}�.E)��./��:;r/{V��S>�]���M����r�qD������6f�A6-f��;����BB�R�v���	�%��t����N���?�Q�N�v��D��n�+q������W�����-��sG���l*'
U�����`���@Q=�)��\�a�
�P#Ct�Wp�S����	y�<�D%c����X<6h]z����&Mdt��<�y2{����E���Y�Zv\�X�����o��wG��B	����W<��+ff�yZ�l��"o�c|b���h�F��K�:�GG[�.��`�b����[y32�v�<8����T��b	,�{,�,���g�)����>�{��"�
��j(�����+�b�/�.�6�t��c��-L����^Q�#�b��:)��L�;!�[�5|�k����,�1���h�a�pOLLo%��7��y���[e~l5�v��]:��N1�W!vkl����]#���$���w�i�=�<����j����o	�5wiZ���+\<��x�o�g�xD�M6B�o�6l:��d&�6 �,��0��.��~,�|,~���C�y�������9�{�?=i|����3pk�k�!�}<<<e� x�rO��������U~
�I���T����.��M�#�N&S1��L^��b//���
���&&*�,�%:W����h��/��Aaz��by�2���h!/�'>��,@6p��
@^�B��k
*��z�B'}@��	��|I�A�V�V>h�	=�_��5���\[;�
�j&��b��6�p��� o"o��|Lg5GEYL�!�{%�AAg	�������j�A�]��:*���R�5�.GE�6�D�3�c�����t�=f\��(��I�f�E`%H ���xq��vO�A�]���&�Fk�����y���-���q3k����c���2C D�s[����
��m#[% ��u��������������g�5�mQ
b�7f�>������o}#
�pwj�E $Hsz��u�VEknTMM��Z���Bt+DF�ug�����$ZN�-�T��9����������G.��w���g�tR7�4KJ�n�s����/������(=isF�c�]��vl��t��b[h�A:h���v���W�=%5ih���:h��.t���{x�X��-c�55����H�r��l���	gb�T[p�&b�jyd���lf,�0w?��c
���YEa�FEj���;=]u��Q�Um�1� 6>����f�dL�@b(��6,�r��~tuH-���.�d��-S��h�d�>��jvN�5ju����=�{�o�}���H�f�z�.0~�V��O�Y�����t�:�o���f�)���.����et��RT�]�Mn7��;$#��C	��m�u�����6��� 1T���7�?�H<�FL`vr!�<��bn(�Vl`���	�Ap�����.F��cHk�Z���
���tWo"�9��X+nC7��@C����>�j��.-����E��r���)�Q|��U�}��Qg��`�|�f�m�o�{�8�n�~�bW��Z"�S����e�������B������	��y����O���}�},C
(����C
wBl�|����m��M��m���z������1a�'+
R�^C�D���@�J,�f����CT���+���Y�-�DoZ�N�Y��7-�N��!=@�s������@o���}�6D����mH\4R��&5aS�Da�P����Y��r:Zbu�Fk����
��\?{6�5D������.��!���/ �kG��
�s �+r"G�	�D�	��`�B��YGmuf	��q�����'�~�����-G����Y�s���~�D�����������!��H���O��u�^��2���+/03�
S�]��1��M+��k�C����(gT�6��A�2I`Y���X�t�P�^T��k��~q}>�b���{�/^?kxb����e057g�~�5O��k?|�3o��
j_�E��i'��"�����xe����=��[�LJF��� d�8��e"&�2��(�\.�����>z ��z�@��T��F����E�;(����U��03���C��&���kX��A��mp
?�(���6���-7������JZ;E�&c�X������W�!��w��^���c����?�j����;�\���
����zo'P<�&B{�N��`��J��'	�8"!��lSi|BB�d>@#`�Y7a�*D���xVB0drf�����������������
������n�hw_��1un��}�N�I�����J���m<�?�=���{��7Q����{�����m��C�u�#X:1qs;��,1�n#���0B�1u;��!�y=8����d7�����|�D^��#�0�)9�V�n�����EF���YBr��;D�c��&��t0�	�6�!��G`JM�@�������QZpS��Y�zL���?�bv��r����V����%t����,��i�����0(��F�l������9^
O��w��2G�t������Q����W�����g��m����'�$7���}FV��B�+��������)s5l���w!��e�~���?���3-���.RA�G�+�@��
��mX��z�'�
�5W;���`���}{-(�,����-)c���"�Yx
I�(R���C����|�za� �
a>��g����Y�#���9������7m��/�%�A�,����a�"++M�[�����`X��Q�s��}��5�����`�X�
mnJ���E���x�^���R4n��y}�����_a�3��ze���@�����K�K�hZ^3���gKNM��NO����6{u��Q�����b�~X���d<^�g�C`������G%��������;�le�;�>~�0C������	��
GI�����/�
���| ??�St�=�==����T�a_!K��1Cz����Ga8��O��Bm�:�:�f��m�^�2���wU�.Gz�A���jJ�pGY�A������OW�O�mE����v�?����<t�,����h�E��XI�>�������L���1I�M���[�T�c��:���uB��_��xZ8~���k7��`	P_��X}���]�gL�~�L
�@��}���"�;�X��JJ�x�8Q�bX_���S:�:Q�$
�(	��4����f��2�L�����(P���Q�h����`,����-������q0���pmz
��-��b��d��+(`��<7Q��'��� @�j�����]�%��n�
���kh���'h�r&����I���r�X��F��=&�,!�3���Z�;p�'��}��o���(n0w����/�[��2��1��Z���O��7Gl�$v���������:����}%��>��35�A04�<� p�{����3�������m%�=t��#4	��+���rkk�)X%�s2Tan�GHK����������#M$,vE�z�GM,����������������x��-ee�XG��/�O�h��h�O���9������T��P`�D�bh��[��#0�2�X�poN�e���9�h�O@�'~���i��iZ��#���P�@�S�7h����N _�@�'����S�r��7~�}9;w�0���~6nq�"�oYJ��A��j����9|"�8�����"�� �6U�Nt
���R���o"�� ��+��j���GF�_YP�q�_n�s��9�/�x,O��c~)�!�Y�M��B�)�>�=``=���,���-�D:����UL��
}�;��*^F�.�$aWU01P+�EL��W#�4�Z�"v�������Y��T���0�!����>��XN�bw���>�S[8����T��l���6������U�A�O�� 7��B�	�A������DF��^��c'ZE,�!�8j����� �@��H�)���_�]W�x��?������G���_9�]�/�B�w�G���)-�x��1��������e�Nl�����@���Q���8>����>7��1w�(Psd/�9xb�,T0���'W��n�t�N�"+cD���E���[��g13z���#��3K�x�T��,J��`����uts��%#J���G/���P�����+4�XJ���"�Yt�)���_>��n�t�!����W�/zS�}�J���u�����=�����)��{��'�a5��IC��!���x�\&���)BZ�@R)T������tL����=U��ul�5<�� ��a��j��}v���\6�z��_������B�!2?
�G����dm�������^]�h������8=mzq���o/.[��������������~va��DS�>:ho��|��M���-Y0�d^��Q�@�����$�e���_�����q:��$7����_V>M��L8�>��)��pK�IE��Nn�r��rU�����Y"C�q�\�Da���FW�m��b���[<q��>S���C:�ksz��n���M{����S|.���zrr����?�O ���#`������V�{+0|���nMw�s��F�������Z(<���5�)v9��*�{�#��#�r�kG
	
c�H�D�&�?|���Pc�O���i�}���{�0cJES���X�&"q���b����0R+���Q����u�*X��	P�z�P;tp�����p-���p���k��`�it�q��j�H3���<i�	%&�*9.��%�/���c�9"�U�]�O�g��$s4�m)6�XKp{Y���#�,ZJ,H:Bh��0�E�|q?����"T�
�c�x�@l &m; <��:���s���%�i�-���y�|�D>[�@�76�1 �#�x��%��#k�(7�#����	Ta��+Y�Q��b�5}�3��i�5�;Y�f$���@gz���������[��s#{��B�JS��;.�v��k�����gA���9�_T�,��-�\���f4���y�R�5��oa�*|��q/cl:��``L�Y"�
2t�������I�lB���t][!i�YC	�PL`�������B'���
�����v����l�&��he�������p���5'K�g��^���<�%WA�B�'��9]G��d�>��7q���h���1�����������qg&������<����3n����^�!�	:~l[��zx(�.d�l% ���[����-�4������3<|1����^
n���<��I�;j����!�+���%3{�G�����h�����!�����KGLN�����c�����C�j��dx>������8M(�=�����M���][G����5����iA��K9#>�W��n���v|��=76��_�����e������	���r������S������Z9#�j�����*%a0J%�R��E�i�{����������k6�9RVZ�?qe�|{��|+X�zX��i3g)���v��������4K�6��D
�g�m*//� � �]�&SV�0j����� =�iU��8�:��Y3���5~��}�~���:���T
o����*�t�O���0�^;L�4{7��6���$���}s�?XZ���6x'��wa�[Og]#��S�m����:�V�h��t�/e��F�����V'���?e�4�e���gM���:�>l^��w��zl.[�S���Se�����m~�t�
9 r�5i�� )�)?:��f�����+H�����
4�����D���2d'���,�L��d��nj��wsc�J�'���RRCI�M���?D�fQF�1�dn������;�r���@�,��sL�E�/}v���k�����T��$���1��s�;���qh�j�~�-�2������wHW��E��Q�V9�9��\�K�{l�B(W�
��������L��-��:�]�^���������)����Y�&����]"m2��o"4�5���-��@Bs�Ne�
w�������)�U�N�B#�jp9���I�n	[�V��
\��J���	
Tt�������M���I)������6��Z��R���^k�TUC]����a��i�m��tN~MM���6/%���h9E=5�I�w�{��%LZ-#��]���&�$�|����A�k~�X�x�.����������p�Q0����~���Gt8fc���n3bgg��S���r�ki
:<���Y�����'_�:���L�)�
����(;Fu-�f�)�}�G�G����w������O���Y������7aw<��8��g"mJ7����2�J�s��*�dT1.Hs�����!��u�S ���/`8v�o�>l��`������/��������3����oo��t�O��������z2���@>G��h�rF)q�����#��+9��t�_������g!ft-=sx?�-�)�~���g5��H�K`�y�E�����U��M��r)o:�*:.kpcX�����5�j���Q��Ne��M`=�v��1�$y��3�}��d���e���]���2��}���b�TX��-��R��J�q�1:3��-��`t&O�*HW[HO�U����Z
qnO%�VG"��p����w|?�KR��5�5������:��S���[����~���9I&��6��^��.��a��s�*��O
9��L���c]�u)P!���sjJ�c����Px�1mB��k���r�����H7c;�>���S��>��BJ�$��<���HAZ�r���A0>��������`���8BI�iY���r(W�*�(���J^:f��)RQ=Q�&Q^�*�9�,�4��
��};�'�������-�_�d��F*��+���
M���:�9.�(	&��(���`C������+���3_���|�p��`S��^����R	7H%�������w���?��S����6;�&y;x�&�1rr�+���D�A������QY���]S��?l�}��I��������������	$���V�gY�R�rR��-iiY��L�VZ�����
���0^J�q�@:<�3f�xj[	�A���hw�$
����:�H�����f�n*7F�THN/��V���O�\&(�����<��NQ�M�J�$j(q�+qK�_����������%�����'�h���},��|K���*n["dv�1+X)�6G�mf:�
�`�:����nn�*Z��U���Bz���wU���N��W<V{q���3�$\�������2t4s��k,
T���ts�rJMZ���������K��Q���@R]�
G�7�!x�|��@��@�.�����#���Pt����t��U���v��.ty������_��J�gx$8����c����$��}����1�Fd�����9�%P	�iIw^�!�*S�'�pw���=o��h��S�o�A<� ��8p����pQ]����6��0���a(�P�P�Gi
�`E!��5���c�%��(�"IH�1���7�j�i����n���]e��{��S~����)o�{��S�=�{��j����������|M����yR���0�����P������f
�fW`���JC��|k�`d2�.F_9(w#e�|�������W�	����K`��lc��)��ov�^-�m/�s����)[�~�-�����s�xF�3D���4���t:�Ge
'�_�B9�� 8����wa��������e���uO�%�}2�G�"g�����9G{���9�����t@e������79]w��;�h��Z�����.��'\��+����B���M����\����\��rQ�������[#���	�}������E�f>�b�Gb���k�(}�Z;:y\c�gl�����v��^�Z{N&#�S,��H>1��3���|9���<2o1e&�x�w����d�w6���HL�q�E������L
��cDQ�V�FJ�	/���E�S���'����n���*n�Q��HJ�a���p��yww0����C�2�p������e�9 ������������8�S�������7r?B����:l�V���H����R�{+3nMz"	~a����h*<�$$��i�X�@��8#�����rwW��Z�R���MmTR>>�)�q"����@+O��3�E������kAT����yS%87?T/����,�;2/n�0���L����q-la�Q>�%;XAx��F9<Hc
�X�C�!�~�n�_X�������C�����^�H,{��R�e?-��5a�����X=�v�[��y`����TV�}�KHyV
(O��_����e�n�8r�S����Q�V
jT�C����w?a���Q��QC��E
����<��DJ����B��R���7@t��/�YK-Mk�h��XE�	�+�=�g�������Y"��g�����������/�i?�k-��]Qs�G�A9��[G�=XV,��|-�/��
������>za�
G��R
e%:Q�?������p�[Be\�a�R�P�Gzd�����W����K����-8X�����y�]��)�
���"�������+����'�h�*>I6i}t:�0���"����Y��+�d���@H$�)�M	Cq��#`��;m�K����������d������oR�3�r��������Lw�9�����~z��������CL&G�'�!���k0�����e�(p0�lb<�^?,��E��\8=,&|8�D����X021>����xf���F�c5wR��\4j v��s�,$&�Gg��5/c�,V�����/��8�T��V��&P�����}����0}�z�z���'�������O
���1�1�����=60���%2R�x�!�G�<��g������nC���TRQQC����^,��B#����_r!���&��L���������#������������G�f��(������q���[Q�Q���o����Q��l]RC~������um�����;2���.m�����)�>o|k����c��'�E?bZxh���%�w_!�q_�F�0��h�,��!��9���|��_z|��h���l9~�!�����!?�+����a������1cW�����
U�*mB�(�=l��?��)��(�;y�iOE�����e������l�������_��9|q�&S<�	��TP�Y%�MI�O
��J���������9:T��������K�$��]CIcZ������T���,_p�wYk��{x�>�K������������3�f��Dj����?R�n2;�l���1W��D�,���j�t?��K�|]��?����G���E�
�;��A0��,����"�-""�]h����[�(��{�M�$z'2$d�j���7����
���m��B���N���y�� ���4����d���63�dX�"��!M@�<|���1����K>`];���������?�����XBa����b�_�K���8��q�����Ti�
���rN��7g�O����/D���m��-�n0uc��h7N=�%kzjf�Ke�	���n��2�i�y�����<����ad�h�E��Dz�D#��z����F���x#GF�h��$2r0������U����r�
���j~/G������]-[���+/����=��9���j�.��c�(���g�����e�U�
������.6e�cQV������d2f�7yXW���]P�fL��0zv��{�sR�s�*OO-�0���������=�]��k��S���0
]-��@r���+�f�|_A�x!G������z
p?����P@��/��x0��3J���F����8�����F#� ����
l���4������r�H�\������6d]�O����������>/����Rm����x<���d��x���]����Y#�:r`=�>9�>Pm�%d����)����mYxz���N�IM�~�6�c�������H!'{�����-��l(��~���R��������_\���iK�����������|zO�K�0������9����}��/B�	��'�""�)@�2�P��G�L��" ��z=c6;{�TA��4�Hq(�@U�o�S������-���lkx�$e���+��2�&%G�����	����M�5v��Y�N������M������]�?�P}��%xT|�$�9<�����+�>b`4�}t��\GE�O����m��
	�\N�O�����Z������gv���V�;$�,��o����B/I����CgW�/�x������������J�_{6������H�x����:x���1��L?SY�3���R�`��j�.��������d@�2���Y,8�������,<��EW�*�f�F��7,�..r<S(���L���y�+s*3k��-[*�������#b�:/v]�-��"����������J����B��rt�M��YB�{]j�vm��wa������ix�p9�8���g��7*�B�x��Y��6�)�k�u��q������u���#Z1��nB�l�Rn%���%qw"��m]K����������Wl��r�HF�_�#E��m�J����d��bu	:\U3k~���^�UO�������2��z���/�:�d��6�Q�-;?8�;+�_�����#CrR��L!�z�R�5]1Ro��$������3~�l�Y��!I�@\���l�#�m��1��uF`
u�Y�����7F�f�g?�b��������/��|6S���l���X���M����s
_������q|X<�$-������c4 ����z����uBq-�Z�3�v-�9Y��R��;��/+mZ���L�A�i��
=�E���Cj�7 {���g�����]:f���/:e��#9�Z�I%G
+q�P�!�#��`�H^R��c}�z��H?7��/�G����s���P�=�5s��+c���-t�%��%,( d����J�����*%F����.��|�\B6KFN���$�A��x�����Le�����N�Z[3�^�w� _���\Y��WFj|���ys3����V�~����{5���o����f7���K�:F�o<�C����6���ldG�.�
	V�{g�Upo���]�{�S��X��;�K$�yZ-���p\�f��7*���_7�a���)&�3C�rQ���a����y%��W���-�;���h:�Gc��E�}G�G��5����G��l|�94�wi/�*s
��qhHR$tr-b^�1:=^�7��v
��Iz���r���1r}��)����o���>3�)��'�����W�r���e8g�3D�	�)&������Zg��o��s�O�2�sF�lmNI[�,N�����5��U��@���("Q��������ltrj��j����_��_1������������\Df\�'��{��QBtn���M�h�	�Y�i������)�K��t��$*�-�xq���(�G�����S$�u���A�{�+B5E��m�@�����y$���o��s� n9�=�p�8?���`�b�N@��r$��V�������y�A�����//*Al��/�8yc��o:�ASx����*������51u��n��}�=�/�����
��������_�6\i�w�+#����L)�p����T������_�	������>�/O�v����R5���w�	]}`c�!4'A� �_�a?���D�~37�/���	SjA����������i��&dR�
��^��@[�����W�'4�x�+��(GG��#��h����P��9���)xo'�w��'��&����9����<�v�V��n������fQ �"�<S'���A��D�Q*�%�Mgp	��p @|����2��W%O�����d��+������l��5���gOAg����U�"�!e��DB.��Q�|7���</ ��?p
<A��X������N���}7.{�v�6o9�������C�	�~����1f����P���@����z�Q���[�]�+��1��L�����M�v�Y�������/������yO$?���^W��wnF ����9\���sId?��iwsw������UAWn��?]<��O9�s��7zdWP0T9���y���Hbt\���IqX��7�:-�M	�]�(��e��w�]J�6��N�Mx�����@�{��������-@��02��k���a�YJ�07�t�9����iN�ps�n/?Q���u�P/�r$�?u�yy����,�l����m�
j?��&�>�d�A�\���J������|�Yja�����R��w��������C#||���������Q�S����C��K�����'���R�'���*c��2��������h�|��u�_�	K���}�����	���\G���tM�^&H�z�#���i
\.�:I��g����<s7�i��U�����#�7�i�7�b����|�gk6�4�����e�_6s�L�2�HAq��Rg���������q�N��1�[G���>�(�AWvv�^7���
c���MmC�(����a�^�<7~\�bA7\B�i6��W&uT�l��?&(�s��d�j5�{4%Hn�|��pN�J�X�vY�s/m���+9w���|�?�*t�}������6p;�N�?1�&�E,��{��b_���Sz3�Y���^��S�k6�{=�=�	{�
�H�Z�!�L�f�8�����P^�oJ5&��?{}~����]�.[������'�^.[C�*�I���w�T�[��Q2~WV����6o]�1=~�Ql)nP���[��Id�R����)~�7���L��0�l�3����[�S�-������P�k8L���#.F���� g���
�sf'L���6��TQ��O�/���F�"F���#�P'?z�#�YO����A����F���{������)�^��~`#�N��~��&T<~�;to=���F1��O:Mc���\��>���������0���fB�����}��n�?�T�x,�v?��d+�I�%��u��^��x�4T#��7�}��'}����>"
�C�[�$\$u	�uq�
��?��uZ%Sy�W���PI�|�9����A�?��i�X:��Cn�����u��U";t��e�L�/x%�W*�CPIdA5�{
���Gi�b�����ci#����q|qW8�����=P��p8�Mi�(����#�$�,���~��9b4����"`�}"
`B��#i�Dt!�}�:�=��w���li��OYY$���������N���"�`��I����Ew1/P�y�[t^{�@\w��9������U��D����UD���|��
�BA_ z��K:��"�����;��";�����Ou���=}����?�������;q������������N�<:]��*�:���'`-�������]�c'	�D#Ht�dc/aU�����������a���OV������%�K+���]����$&���<��g��T�d���)`�K �e��wj"���Q�MSl�vh.,/|r-z��m���}p�q�������'*d���
=��WC�W�D����:���P)�����K$�N���!�������]��%�r�^d�_C�d���n�c@i�����[�Cj�EM.�w@j�������"��$��m�oG��o�0y$����a�����.o��"�}������� �:����|�2��$y:^D����Bb!|������1�t�� 
�sm��6������a'������9���1�(:��y)L��e�������X3�#�F#1�U)L
���=4 ����|��q�h$�T�����.����GH(pr������~J�a�B��P�gU;��t��
��=|������/$RZ�pL<�-��*���?V~������t��F�a��r���~��#��d�w�JK��1�'�d��Br�����{w��������CF��%p1J�g��ZgQ��"&
��o�P�O�I�c~�G�Y�iU��&'������������l(� �E';H~D����,�y�r"BDv���}�������
�`���z�_��}h�6�����S��;A2"�����$����N��R:��2'g��N�x�Q��=(�e��������3))E�)�tt����`��&�L�����:�,��m�k�������7`���u����|�yE���>^���V�%�O�z�3�Hz�5f�0���������LZ��z��
��s7����.^Z��v�N��?�P[������xK
G�k�wj���
?jap-�����[�'���o1cP��F�zV����/!5:��k7l�T�5�p+���fH�	p�����:)5n^x��0:�tFcmvF�~1R��0���#���v�
��i������}�u:��F,Jb����V^BTNo4*d}��3�]=�R��}m���9�G���"w��r��/���Ur��N��3M[��v�b"��a��U]X��e�
�M5������Kqd�{s���O����neN��&;!�
��xb=��g�a@���2���2Vap5��^�?�h'���B����ht�
���j3�W��a"O������f�y��`{����G_X?���bRm
Y�?s�����w�<���)����7^9���{��ebQ[sc��%��ex/��c.>�y��g�_&nX�����i�Ewo0It'H�`X�*��|5e����N��*��p!"���W	��+�3X�8���.R�O��Lzk��l�^_L*X��H�������!��X�G������#�i�P"@N���P2:*��Fz8��$�1j��a���.r}�7��2�_d�F���x0*������>&�>_::�?�f���u]+2O��L����� ��"j���9��:���I��f9���d�-�������7qF��|[m^pd�����S��B|�-�{�FY�$������q%]7*gbLAS��2fN��}q��S�G������&�������N��+e;�����������n�E���f��I{dF��vbPVR�*�g����(���;IB0r}�a��m>r�C��#���sHK�g����R1����H`����o`������_`L;��+	d�`=��q�����W�?#)KQ
���9�3j�xl+��^kGO=p!��.����c���0��J}�`I
� �}@���i<�f0aC�����&:	���r%K��{@�Hax�E�D�����7�s�8��tW���85������P�bO���K	
MM

MA��w�d�g�i�O�,�4�G2�>��8I���bf
�QK�~E�#}��h��*�A+��"K�����p/�P`=:���e8$����7��������3���.H�5�m��<�}���D���}�b��s�������*���f�b�T��x��r��:9�����]�:4&��0,�5ta�Y%'E�Id��x��&{��������I������#
�-���9���� �u��h$&�=L@����7���H�D�]����������!y�C��7=�z��#���R��$���2������5�o.�Qo(X<v��</�/����������OJe��!�
8��i��\1n]���Y������Y�a������<��h.�{U�����%�>>@
�8���`������h4�p"�#�@�{��<Kz���

���o�X��D��C9F��F�8��V�}��Ux"Z WIk=I�B���9}�[��i,
��,�+��w�^����3����K&X�����&�����U�B��P�C����	�r�/�R���EH��P$�r�I��D!(��3�B/���p�y'��+��N@�vtEA<�4��E�[�}!1�&$daw���I�^zv����7rk��w������c7����<�?��]���k0�!>_B�b�1��^���O��z��K��E��N�b�-�r�&\�� ;�2-
R�R�����y�����ea���`�D��q���Y�y]K����cM)	''�.H��� )����M$������F��!��Q �uVK0�b$77�?����1\�V��n�0�����
���i��Cj��|�Z+�"�`O��"���G��_�T�����	�����EU}1��GF>��93%qf�eDn
�T�_�9�"s��:��W=_���5g��'�,.	-�5�eJlX1�*��~��D
�X'�B,F�(�G�B!��&R��v�I��c�j���|���*f�M�T�R�L��V�f� 7�����������J!���K;�&���[<3�9 �u�K��j1�Chh�/��V,
���A��&�3;�yka�s�x��p�c�tclp�7��kl�up2��Y�}�O�M��U�'������%�OL�L�Mk>>��������G�������$��[��K""JY?�42���7���V�u�����������F�N�?i�������R�r�F���$��	��=B���&��'�FF����I�$$e�:���"�)�+�1}x7l�B�E�ce0����������Ft�Oh��dM`���m���m�[�:��6�*��|�����������p��[�4�:�Hr��i~��{wv���1�m����PU����O� )Z35:l\Cz���`Kv���������8�X�l�4�F�28����j��N�� ��>�m��dr�,J�R�;0���0�j'�����y�!U#g�|����h^XP������=���b�~_���m���.���\t�V��oKAr����K����a �@
�D�E�������
<�����C�*�����l�q���'���wo��X����j�R���`#W�8��b�7��r�H�U���(�}
������S�89��|=y��!,p�[s'�Z�����K:�>6}dTAyA�N��c2�BB���h(
bgL(W>:�m��)��G/�Z\4!&4��M��
�2���B��5:������L}%+'�N)�:�$%�!~uI�a�3���;;I(Z*;3y2V���1bI;�����b�LJr'g�Tt�PT���[�_T^T~l�\��}���r���'��d&Q^��I�HZ����?��	`U����U�I/���v�,$,	$$�iV�����HD�aA1l#b� �B�"  **�����2�0��.����@df|�{:o���_��������{����+����V��f��~���Qj>V�S�h�+�����	��v���m�E�����b���d��prb� ��b����LAA���PJHR�P��n;����H�x}�D�)GK.������dK+O��p�r�P��9���o�[����T\^4�,Vvm_Tq����L~�[��.����u��\�	����B,�P�v)�a�VE�L
��k��������G�,c+�l!N�&�V�?j���c�����$v��R����c���u82�����.|sry��l��Vz��J�rI�Re�.�QS�.b��EW���������"��I!�>�!��z�PO!��<��8�cm���boW�Ly��o���� ��7.C;6��]�R�1sC�/�K4s�n����B=v�v��VOV�����V�b�P['�A�H�� ����Oz�s�������*�K���"��i�]�P�������D�LU�@�U�Q<����jNm;Z	�6��JZ�5Q�Ob��K�����x��J�oGU0y���K�Fw[[���_�HH�S\�T�ir��}L	q�y���H�5�B�� ��w\u��N*����3l5�|q��+V���)}\9����
Y7����]9�r]���������;uT�l'I�����t3s\"����p��4Y�-?��}kD�v���
mN��D���VZ����y�|���|��"�Qk���8]%��E�����%����j
�y��a�N�7���;�X"A66p�	�j����&���5�����J�q'��o�j�����T�r�i����k��
gvR�m�:N���>�����':�����L�1�?Y :�z��h���4�U*Kf���������r7w��}�/���bby����q�t�U�����.�u�G��������UC�R��]�=��*E�9_]������`�p�~7/�������c&����%z��N&�0����N�z�gu�����;QU�2���}�c�!j�������Jp?%$(X�]u�U$;�qa����}��jzc��-q��?TC�j�cm
�J�4�Mx��S^�W�����D�b���� � ����rKB(�4	kt~[��W��s�[������?��O�����/���������:,��S3������]$�@%���@f3Y��m��:�[�V@���>��_�(�*Y����G�B��Y�<8}�9��nV���e�Xe���2���T*��XK���V�y\�	tbE.W�D3Kq�E��[�v��dS�| �|�3�������� !�U��D�"=b9#1u���^��owm��M���{����8rD����e+�z��#�}RCJ��8e��*8)h���([UMi�����'��T�'q����]�#nP��"c����=���'���P����v�dY�����$���]^���s��s����3g���<z��A��#-���G��^{
j������P\x�����Bo��u,k�YH}�5$�����+x\�bi�b��K�&�-k�Z��7E�w+�g"�h.i��]�v�r>��^��{^����W��R�>k��N�����aJbB�w���G��/���Z���]n*N�������]dg��w'H�y���=���S��o^��@�)4��x
������a� ��t#h���[��b*frv\�UK|@��nF,�.��v��2�"cf����B����
`�K�Vu��^�#��D�\z"&������.����Q��kM}+�SoWe�����5{���A���kFv���-�'��v�����?��������[1<*gdf��#��v�������>taV��]!-������CLl��S��^���@��&W������GHV��sp�\2u����$nW�u,����	�)-�rR���7����Re����W)&��������~����XS�<�7��[vk�n` (.��\�T?�I&��0������s��R6��(�]�%���h�r�n�V��0_��j4�x��}�Oc����]��}|�����y�X�-��~��F�$��������X��q��y�����;�����#"������]Wy��c�O�� ��y�%Zi-�:��!��z;��&'���o�V���;�L����&<r�50��x���t?D���6=�w�h������dV��Z��l}��G�R>	�es������Y���������)BX�����|O�n7��e]{�<(����M���t��r1�D=������?������;���v�j	���Bl�����a�-�k�*u-����J��_������J�c,&<X�p�o*�yLh��D���=~H�MJ��~��!��UkK�*[3I;`�~�������~D�Iu��)-Y8��bM@]��5��J�R%y�h������I�+��T��d����F��J�Z�C�{��T5�2c���-2��O��c���"���(��9�T���XUgIQ*YI�����~#�GgIIvE�D�e���l�R9����;��������.
��v
b�M�����v�\�~�PG�X�6��b��p '.@T��X�h,����J���R����'
�;N�2����gL�S+�#\>>��O���K�G��������/y����5�#LY��b�,� !����f+3E9��k�����k�'��.!'���u��r��O������� qC�ew�Hf���N���,�T�QLt�����q��J�>���2��rI�<���>����Q��/���g�oX��t��}D���rSy���?}��w��{[XU6t::
�T������'��c(o�ZW p��k�D���+N-"��b��U"����J��>U�gQ�=;"�+�v��U�p7�����J������B7h_v��i����h�F��+�����8X�m�{ ���7A?M+���qM�G����Fv���W�����dCA%�^\�����m8�.+,i
�r��%S��o���L�i��W��d����V���,�
V�%4�!�VG,���1���}|���C��^�MN�� ,L������[��5�U�Q:�m&o,~c��g>���}V���4~U�x]e~�P���5S��N��|�,1r)P�J3�l���T������.D�c�0x����B4;�j��d�c�Z���t���6��L��y�]A�JtJ��E(�2����W_���+��o\���������5���:S��N��M1t��{���Q~tt��4Yi�*ZJ�a��p<
���B�%�X�N}r�h6����\���9E�b�>�N���)w�����yo������������x�~|��������{�{I6+����3k�f���%S6�~{�����TQ�a�.J�hS
�����(C��=�R
���b�U{v����S���o�U�^reN.8�����}�w'&c�>e���bI����;��ail�f��`�<u�,��]z3����r�
���p�Gaw,���������E����v���o�<�CU5
4�7�*��v��;���66L�;�;|�XO�`���h��
8,Tm��������X,�]�^�e=����S�N_�����U+�F���
���["����Z�Y���vC�&`�a����l��5�fIZ���R�V�F?�u���N�=��c%�]RM������(2D[�'��(t�:���/��I�;}m�'�vI��?,�
��x0���������fO����r[�?�c��v
7�EIi���(�/��q��C�����v9$iH�^���r�`�O~�C������N�}���Q������.�?����k������������
�VUNrBX��S�g��]��[���n���+L���D	�����`�g��yw�m�\���}�����hQ���[C��>����9�H8q3��{0�3!\�e/
��W��~_*faW�bL������V�[�f
.3����UQ>��|����c��W���D#u;���WeaL5��&��#O�Wu#�����D\=p��������������^\�����l�!c�*��zps@6��������H�c[Hm�����m����|��7�N��%|��E��<�`���?{��&k/wt��
�����[�����?$K�Nv��"q������a�V�S.V��%K������bk��v���;��^��'Jy`���L��\GX�HDS4��zz,����r`���J��dKd&1I<����+��w8�L�$���\Spzd��LMQ/J�o
���^=�v�.#�Fw=��3��^h�3%<�uzr�Q��t[��<f��M��G�M��qW�1�b������U�������:���!zw�"������c��Bo���z�Tf�����x$�~f?�Y�9|�k�}j��&���V��b�K
���2��<���Q�����qE�vo�f���
�R��
�{FdD�+[���p�.j����XG����ON�����`���&��LJ��I��T�9���y�GJ�k�'�\�����o��s�|�W�#SzG,eS3�_j�D��������?�9������SzG��2����>�5�9e�&���~��t��z7�i#Z�K������[l��\q��'L�5�6�_nv��%QV+�����
0a�,Z�H|��P�5mT����.���W%���'PK�K/���|�����n����7�Jt��$���cR�H�^1JE��V[]nb^�X�#�]��O�q������ U6a��-��t�xL*RJY�=��dS���X��y��� Y��[��Y�	��J�����FM�ud���������#��	NF���C�SU�����}�Po73�M��x
��k#&.�S{�I\�0��&���.���&��y�R��v���-gA&���`�2����{��>I���Hs����|���X�g��=��� rx�/�{�a��&n7�K�j71�)�c��5��||�YR?B��K��m����q��?�����q�4���gTo�Y�O�`�����R���7k����j������'L;�������-��21�v�c�c���F�6t��������� ��!�U��6G4��c�w7��o� >B���b���/��i$�{��_�-�s�S\	�4/���{����N��pd�ha��~@t�X}5Q�(Q]J1@Z�Rz�m,��b���a��2��T�`�����U#�y0�f}���{�*�����X�z|�z�!�~���"�|5�����+c���IC��e�
�S�,���^�{[k��������QX��f�Y�������,��'<�1a����Iaa�1x�%"���K��]�X����")S�NF����UA�H=�����V���f���{�jf�pr���s��X03������U;O19���eKmV�"�*������������4��_[���O�K��W?V9�(�Y�4k�������i�O����,����p��t�'Hc�D��b%����;8�	���U�s@{/K�	�kX�r|
S6�~l��p:����6b�v�X�W����G��bSI����A?���$�N&&I6���j��|u�(�G����8>)1�d>]���&���w���>���y�*2m�`�xl��X��8���DS6�mS�E�����rL�h��v���Y&ef���V�:R�/�E�"�GWG����`h�%s����{�������1|q���^��2���O�d>�D����`j�`S=6�U
��������HV�����=uB��~!!����QV%���';���n���W���
H�R�h�y���5R�_��zjD~��O���� k��i�f-��v�s|����<sfM��|���%���+',�/��
�F)6�85�Z���5>Y��N��d�������]���f�P*��Y�.�`�h���O�Dl�����Y?��~t�ZG���"E��b3�
��y�-$��M��~j� j.�f�����n�R��
8d�$�E����H����X����c���l>��!�Q����#�S�l��_� ���%q>���0�YN��N@��p�v%�e��,�EE� N��!u#]-���3��l���Wd{�)�o��#�yS����M1/:G���d�|�����3$W���2����"�)�C�x�9i��>����t3���9*��^�*��:�]�$������K��r�:GZ�:�_�;����Pe�lD����A�����h��B >�m`��a�������[�m�+b��mv-��G���~P�������Bp�\��DNX�m97����
p�?=�@{�v�Q�z�5��+rG�Zg�N��q_�b�m�xp�"�_����B&�t!�)�����D
���IP�D��H�&:���Q�C�^�h���.?��D
��b��W���')Z,�hT���'��Cg��5�4Y��������@��g���>�
`��J��y+�z=������9���	`�-v�S�(	�|R"@Z���+�J�?zM��h�d%YB+���I`-���W�>��E�6�m����m1���9�������x_{�������O{����1��v�9;e���:c�:c�2u���
?���+�J7��n�����F{��oz���D=��z���"����w��~�>�wp��/�m_���yD�8G:|��8o?�e?��>��}E}�_{?�{?�e��b;�8Q���~<�=��=	� �oP�������4����+���$�Hg�m����3C ���64����������`[�Kr�9�o�M�9��a������#�8y���H�:��7r1�ra���c���\��\��h?�Qr����B���0�Fa^��<�.=
��3��xn4ll4�6�9@_�`N�E������o�����YCy��1�#������&�=f���E�K0�'"���X?��m&aL&�100000�7c���ADS��MA���1�������b@^01t�u�'���i�u�#ox������B�^�)@���_�����r�Y��g�.��\�Y��g������)�=�\��t�6�C�0����G|}��0�s"w(<E4��E^?�#�yv�Nw��k�(��a�Hp�h!��"�JE�S�����{��~.B���-B��y�b��bw��c	t�����������8�Ka���	��;Q���2��e}A�+��c���J�A������!��|A�Z�A6@���0���5I ��x���g�J���{-�_�>�
��
h��8���m������7��	��	��4��9���J��on|�Aw�A:���i� +�~p��g���i�@<�r�����I��A�Z<�3)��*P�����UVM����'[�������Sr���l+���c��W9�F9r�r�,��������|�����T9�\9��mf��l�x[[��mY�c��9�m
������m�B��T�<�"
��*����<��[���v[����V`~W\�����Q���T��K�b`��gG���_��n������T�=E��4�}���P�����Do���D��u���o���#��	�_�kDG������m�5��`�?�	�_��w>�+��K��Ot"�p��G�}�h���O}*�j��Q`��x���}������w�v�"^~�8��Z�s-�9��������1���7S�.�"���%�w�����[��?7&�.������v����D�9�Qt��"�F����2���Nb��[O�&&�#&� f&PM��
1�
�,��Y�$f�F���
�\�/�X�(b�"b�����
�6��F�B�]E,�������H���s����<�G�o�k0�X�#>#�1���DU�<��k��X�>�_�X�
 �8�X�@bM����������V  ����{����!6����x�`_K������t/�pL�i2���|'��[���x�<.�oy[uh+5�"���@�M}�s�)#���-�����]V�wp�X�vm�G���K�:�<���`8����}�;����u�9;�g�u��:�������t�q]���������6�m'~e��|�F�z�9��n���c�FOp�X�rb�w�i����N_�{@z��������7�/�
��pl��i�d�N��~�������S�
L�W���������?���
0^"�}�'�8����`��`�Z�a ��"YxO�����\���,{zs�!���a:�:3�03���0�r�Vdx��a�����p�7�
G{#0�G�i$���b��Sn�z$�����`����=]��q���uy��p���?����`����1���?����c�?���=���$�����S�W>�h*b���MC�7����m�:Il�G�f��gf��>�<{6�������?��l.r�����#��~A�"��p�0�����<o	b���^�K�x#����_��/G����hk%�yqmb�kh�9�jlW��k�^G�*E��~����,� �z7�7����������&�����-���!�n��r�w�+s�#^T�; ��b���.�����=��^���
b��b�~���>@��6�����:A�0l���#������!zw�����2���|���6vy���%>�1����O� �;���)��g3����g0�>�����_�6����#��,���C�����*�^�����]@n|u�7x�"r���m�TF���ebW�K_�j`�����*|����~�����YC��bm����o�bj� b7�s5�^ �l&v��8g9���'.�%.�%n�g��?#�s���r�����2P��*��G��U���H��E��~ �:H���M<�0��Q�����!k����``�3������U��v��7�x8�y8|F���4x=���xd=p�x|G�F4^k��6<@<f��@��x#;�ojfoB`&����K^�����s��^���������"��h+�p�x^KN'��l�$����m+3�G<�~s��h��[��<���:G4�Z����sM��1�50����`>z0?;�"�	���7t�x�K�H�kk���c}wKp�x�e�{`����=�#za�{����q��Z_0	`|�"��yM:���)����x����>�{��r��o��k|�@���x-2e@�����o
:E����i>��N�R#s�����!N���z:���<�<��j�C�����x���xc�0��p����|���k����	����<l���<�L����J|��Y�G���q�1�����A�2v�L|r�q�d��m�C�|��c���O|�<������pl�R|���9���5&�����1%]�����O�5������~J����j��N|r��?">����Y3�?;��l���K�����������
����?������$_Q�����<�( �X\L��N�K�_����w"�2��2�^��JO��a�q��5+a+��^��Z��_�C�>d5��j��������R�+���~���o����=s���:������HP��`�Ez.�%�Q�KE4���5����tWu��g��u=GY�!'�����p8��J��|`�%����I�d�&FW��k��w��{�����z���7s~�_U�������L����6�:���p�Y��GY���c�2�����;�+j|+�����b�}���;����}�N�G���r�w�&R��Yb;�?�c���3���{�H�����]"u/��{���}����>�D��{��8�|����l��#���P�L��|�:�������x��Z����a�yk����!��C����X~�����+�'R�`�������8�<���7�����'�O�e��I{���H�;����"��+��������?8�=�s�/6����>����K����m`+�0�0�_	� �&�zV0���Q�~}xo�y����A�^xZ�^|]�^�{�9�
�w�����E��1�a�z��z�H�w+���Z�
��"���
"������,�g���[#R��Z���"�&l}�A�zk<�&Xv�_���x�6��6|��j�z��������n����R\�K���M�`��Y!S�)G�+���lN�6������� ���
�e��p�����*�H���m)�m����P\#��	��8�)d�L�g�W��9f:��T���<h�X��[�F�������m�Z������[��Br� z�	yhQ��0�aS?d��y�)�OMLN�dA���LHm?��9�����|f��Gm����?G?'�D�����I���Pw�rr<)d�<�Z�D�;����
�SP+S~(�����!��P��Q#���7�G��q@-~n����p<j�x��y���C����0s=�O�.�o��.����]�N@��[ND]���'�����/���Prrs��}f������-B�AM��z2~��!��9��p�;��0�0�0�0�0�0�0�0�0�g�����y��D,e�?C���s�������S�7�>�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#���`���mr�F!O�^����
�E�E"A��"�Y���g�n��%B~Q�{����\|�O�%O
y6�]:!A|O�s�5��T�e)p�����u�5!�������
B.?t�b8@����q!���B�Lk��Bf!�7���^`�fyk(��B��G�,����
B�:��^���a{�B!K��`�:���T�K�����)!#���?��1�!��w�G�����?>�Sv	�y[C���W5����+g#���(�|<m����J�a��S��4�s��s�G���f|J�����&�FWZN�Q�wXY�#���rs��01~��V��?B�#RVn�F���b��z���K�G��-���&T�Z+(���u%�ms��������Mbx��VN��#�,���1VnN�&��?c����#���N+������������[�q��#�q��X�M�o�n��h�����1_�&M����y��a�������t�%�G��������#H>����&FF612�����mL��<<q����&FF612����M��lbdd##�i�5a�H���$�%�����cHn����������-cO�rJ������0NZ�9�f���	{G��}VnMm���b�1�>M�A	��Xy\��!Z�q�H>��2�*����|��M�d���rK�?-��������Y8b�Pb��i��EFD"�1����2}���C
DOf�"~��{yQ��
]y�����Y�\�o�5�t �V.��V��T��q��Zg�~�+�,��fl�9h]�f�u�f�z4�~�g��^�piO���z�-q�
�E�f6�\�(�UDw24Fhu�>���j����������m�t
0���i�Q����PV�y��3y�<I.Z���4��\k������bF(YG�<O#x�*�kC�/���&,�LZ�6�u?i
��l��=6N��u�Et/&?��w=�[��V��L�,��Q(Q���i����%���nm�HI?���U�
��WgA��;�g&��Z?qm<b�W�}���h�����\@����y���t��dq`G�6�]��u�d]���'�2���5����(Os�|��3��P\���1�L�9c��OS3%�Sdrv�"Yfj��[!�Ck������x�OV������U?c�=[k��UEa��{z�����3$���e�M�F���2���pHYS����Q�'��<�u�������&oL�h_��~jv��,\c��M�e�)�+B��}�F�I��(��������P~�W����R�B�����r���`e����e
�O�Gy��YY=�kp���{��}�{�����h���J���>��!/h�t�t�5U�E{�\3w���v���r����o_�SL�����z��)���n���ly�x�������Q�������+K���X{�y�>j�Z�*j�
�X����/���.����OYu��T�T!Iy�L�0���T���iZ�O��&>�N���"}\Z_�����K{��a�����N���o���I���N�i!yGWp���[9�U�1j9d�~2��1-V���<V!��)�w�����"c�XWi��!�=����x��q���=���.6��;6Oc����e�]�V��j�Cz��}��\zy������;��
���fW��O����s����1����/Y�{�Y���OU���^}����r"�K�]�<�������A|;8��~Q5����zo�g�S��DL�j:�������������S�}Zjr��U�=�OcU�����iN��h��)��T~�5���Ffp�z����:
������?�j0�t�9:����)W��LUSf8�LV�\��
�r��igv��t��B\q����y��B��j��W��������}�sJa������������*~>��N:y��s���Vg����-kN����[.{n��	1J&����q+N�=��N9��8��kB�P�0r.��g���D����|�YR����^�%hyN��(�V0mXFc7����Q��N^���~O���Z��qc�R��^�T0i���ek�[�3�i���x��+��[3��=�[�1R��9&�;.���a=88�Vc?���n���9�~\p���S��R��h���7*��O��i���^����r�Rv3�����������S��L����_�cDm+�0����N������=Y�d�������(�P_+j����X��LU�J�j��X�
d
AX������y�x%�J:��A�d����({�����j�g(si�r���W
�&_\'
{���\�����f�j����H�XW@��Z��G�~������A��s�L��Z���W��Fq��.\���Z�HOS�r�#7�����d��(�<R�l��k}d���OuN2�.�dz������Y������u#(\���������t�>Xct��0��B�3��
�D��d8pr
����JT��r��r�E�,�"P5��8���m�7T�{�J0�B���F|#��^T���Y��F�����<]���rz��=}���V3H]�2�o��S�5d�3�Y?-!�b5�e��} �&��:^�G�Q��~���Rs������O�98�����<0��,�W��k�c�l�C7;�{�q�I/j�*�%R��XH���M�+��z�uP��u@0 �S�{|����4�$��� ��8��Z-�?}������84��d�_��m��bz��������:y��W���ykb,��\�~������5��o�'����j����p�\���'��}�~U]�r�t#���������TM+�V��N�� �{���Q+�-��-��
��{7�?�{����8�Toik�op�E�*X����.<F�����@�+���4{hMU/�{�
��<|���/���O���*�����\�����7�F�^hw�jZv�Z���P��A��}h��{{�z��o �24�Tk�d�w�*������`����v��u��|��d��L-VuF[h��: ����/c��^���������W����d;^u�`�\�u��z��e��V�����M�/U�&]2��j�i�|��;������|K�y��%-�+�n��7�fc������i�����	���������*��he4��f���^��|���z�����G�+�c��"f�W[T��"m/���:������ro��j�jZs<��"�K��������wy�[�E�_���X��e��W�E����]^P�������!�B��<�yJ����6�����\9�aV��l���O������4���&�J��0�������-y+^1�<��������G.>�^,���t8���;�;�S#����]�s�vF=w���3L��SD�����	9{�r<_��<%�r�����u�����
endstream
endobj
2850 0 obj
[ 0[ 1000]  3[ 340]  5[ 449 804 621 1032 727 259 439 439]  15[ 349 439 349 449 621 621 621 621 621 621 621 621 621 621 430]  32[ 804 804 531]  36[ 678 673 672 749 618 571 728 743 403 444 661 557 831 741 762 596 762 683 635 636 729 683 1001 669 631]  62[ 439]  64[ 439]  68[ 580 608 507 608 577 335 607 618 254 329 551 254 959 618 594 608 608 413 498 379 618 566 833 556 566 506]  116[ 621]  1836[ 804] ] 
endobj
2851 0 obj
[ 340 0 449 804 621 1032 727 259 439 439 0 0 349 439 349 449 621 621 621 621 621 621 621 621 621 621 430 0 0 804 804 531 0 678 673 672 749 618 571 728 743 403 444 661 557 831 741 762 596 762 683 635 636 729 683 1001 669 631 0 439 0 439 0 0 0 580 608 507 608 577 335 607 618 254 329 551 254 959 618 594 608 608 413 498 379 618 566 833 556 566 506] 
endobj
2852 0 obj
<</Filter/FlateDecode/Length 355>>
stream
x�eR�n�0��>����	!%�H�Pi?��%E*�2������GS$�fv�;�������D�w=4L����0g�9������iA�����|c��q������)�?Lq��LV;1�������Y}����Y��AN�zYF�f��Z��=����0�n���sS|�
w�a�f0��]�x)5OF��<�R<���m�k���QS��S/|tQ�6}v2Z�z�Y���m�P$�H��8��]���G2D�X`��1h;Y8o���!�Z��6�"D;D	"c��������G�N���?A�����$�9��C���[���-�oo����u ���f���!���I����u����i
endstream
endobj
2853 0 obj
<</Filter/FlateDecode/Length 48433/Length1 105640>>
stream
x��}xT������3��$gB�3d�d� H��d# �IA���������V�<��a�����-�Vk����,�E����I�������W��7���k����{���~�		��(�L&N��Ork5�i}���%��Z�%*� ��4._�=����D�O��^r��?KU�D	��V�~��a0Q#�x��9M
�>��m}
>����;�~���Y�l��E��%Q�j����)W�9Kl`1Q�+V,I���C�%��6-k��X�Rb7�@~����M[sJ�#Ve!4a���e�����B�5MKl����"{����|w���1#��/�z�oA3���_�8w�J�I�Z
}������������*u��!���8���TBq� �F���_�RIZ�6�Be�R�\1*��f�d��L2 �A��b�a�z�
mi��(G;'��h�$�F1i~e�)���&��n��o�*���i�@��O�5���|)�QWn���c�b`
0+.�lNy�����(5�sJ
mT^����?$�O�LE���Qw?��P�������	��Q�����?~:�
��V�]�)(��m����wc�.��>�@�+�g/�2�Z�"�c/FB9(����
9�\��������@v+�,�aMz����~�~�6�+��t�;�����w��������4�	�����
�cO��m�������W���]���������z�z��F�=�J=�f�@�@�@�@�@�@�@�@�@�@�@�@��@~�f�\�;��-=��)�6��@�@�_������W�S�7�o'��An��R2��Ut�<�.F~���i��r��T+�Z����I�����|���n�^U�_uMU��y�QjT>�G���#��K�F)�������kh,{�n�>���F�x%�+h������L����6�N���(�t1�B��<���&�	m����������I�t����![H��*��@������l�e������������
=����r��}-`z\68�X���]���������������� ����L��p�t�|��%�|�G#)D3h	����$��n6��7MA���hyZ��D[��''5��wP�"
P)�4�5F��o����N����h#�����-��d_��������v���g��m{��.�����?���I�y���Y��Ml�xM����9�7��Cd�`����:�{����gdf���c:}r�}/��?0`����C��^8�h��b����+���d����M�|b���Shj���iWN����*�M~�?V��H����'f:x��e��,]�x������s����u�W�L��xyi�d����F�(6� ���A�����?��/��y�{�]Y��i�)���jR���`�Z�&E�8��������e���K����������ut��P�.�Bs��hc��nM�j�T<p�V�����>-��M�W�/��'
~��o0xx����9�����
}��9���r4��`��d8�Zm	`����%�,}43�^1������,_y���+�RnE�,�jRmE���

��1���:������Bc�nt��lt����;���wFT�Y����j�^�K
!��3�~����Od|�E��cj��_���s5�
��j��I���zE
�
���c��c���pb�
��5�Z��A���Ul|M�
!����V_�oNx^=�&+�����������q������>�^������)���=3�e^X2p@���9�51)���3M�eg��rr�g���7�k�,��aL#D�4���#�1��gaF���1�au����������_�;�����������+��;�P����������)lm��
�<�}�%��Q|���{�b���i&2z���X^���6
�B:�%�JR���������>Dr��1���'IM�U1g�������Xy�_��i�ZE�>����r���eqN�5�Vr�8�]�Q�����,2�v]���d������4$L����������'+E�gD-�|S-n�>2pa~�����%,�ye��p�vAB-���8A�Su�W��T��\|"�#�\z.#1Q<{��+��":��.������
�h�L������/�/�K*��'�s�K{g���F�%���V�r�M����p�!}b ��g|^_m��:�����1�8�����I�A�n����*��u��m��1�e��>(�����0�\H�Pd4��J��q����$j1JeC`�#���K��1�c25����(��FcD����e�,1YKL����%�(�C\��DaZ���
�
�#����y	�G��
�=���}4+a�V�9�GXK���k�����f4���[���y
�����~3���j�G�7Rh�	;-�8
���+�v�����.�y����3�>���+F���Vz!��vk(��8w(��������X*��7Z
�-3�t]n��7Y;�q��{Hwo7t�v
zL��;��[{��:�R���0�u8�b����u���x���E�q;�Mt��`�&�fN���kI��I������A�A���*fAC �a�,�6+$�|b�����J�<%q����Q]9���oX�������X�����m��d��<�� �Viccm�|�Qy��z;�������f|��K!�jg�<(���956���r�'}Q��&�'0lQhHGo���CZ=�6	�vi������� ����x����4���.�is�f�g��|bs�E���/l�aM����C01w,���_7��������I��f��]S��s
���\>o*<��%��6S$�aqo����prX+
c������5��c_�Tm�fLu�98a����PL��+Q�������:s�7��8S�����K�l|�,
�<}
����i�����Sr���AD�K��*�����EUW����A�:���l]��;�t=�r��.8v`k���i�xx�&���S1h�6SoOD�����ym�������-���[�+�n�	F$_{rj~R�@I��g�������x��!eC�"����|
��C��T.n%Ro���y���R&�fbIR:�F��LG��48��h2��d1�f�~��$(���S����0H���F�!��^gd�����I1Z>>�62�6dhL<�,F������Am���iR��� e�9Jb�<�UJ%�%S\���������db��"O������R���xo��S�d���lOt�o)���G;������]��>GZ��<<
4��x��y��CI��,�n�������m����6�������HU�{��H��[���o���m�E��
&�g<�q&�g���#��m_�CD�1����R�Q����!�������]x������ ���_'
X�.����
jnn�@DR��C�W�o�``X�����M�i��yJ����EJ���_���A_���%�l�C���l�&��PGUA�P��g��${��N��� ��'g�M|?�i��IF#{�����F4�#�����<A��&����!��m����}����=�D�����D��~58��,'��y�D��6�H���!������S8q>�J��u��u��u��u$���C_�������m�����n���Lf-��&�rkY�Z�Y�U�%�Z��%��Y�^6�ha���E��r��<�Z�Y������>�Ec�����/0H�A�K���x4v�$��G��y/���H��F.%-'���-hN{��X~����X>Q� �� ������h� HBZ�<<
�M������4	i�8x3�4�d�s�iq���a������2?�'��{��U�P/���YR6����������d��a�]u|�WYK��n�^l�|C��o�[7�����)Me?�l�����rAGP��Fn��C���os��ZR��gK�vy�p�����`?v���V�����H��y�}������}������#<O2TW�`s��&Avynt���wM�����&y&��y.A{����`3���)q_�)�i
uvy��@��c���N}��tx�M�Zas���������|����1�6��)�d�jI��-6��b��n!KJ$z<_@��TA�_$e$��E*��[�p���^R%��R�*��T9S��N�E�
/~����d���2}D�2b�N�������V��A��uxu������q��Xvc�5w��h�]�e�-/�(I�,[�-I}<
|������Sj��m���,��|4
�R���*f7�3;SQ���I�P�ni4�s�d!�F��B�Vc����=���=Ni�G�%;��9������#��V�5�r�VCOfB���OEyk�>�N�F��Ns�v���\���:i-t��9��"t�����
�l�����m��Y��R��J^\��n����$���;��8���8��?Me�kj�.����U4��;���7r��1�~�_?�q�����|M�z��\k5�[����Q��V�^Q]�:=�T�6*8���PjW5����n��kh��4V%*�W�-���x���P�U(�g�EF�W��Z�,4fz��������4u�h#�Gy3nr���e%B��W�;��h`��RQ$��5��w�����Fy]{��x�
��WF�e�6_Ks�c�fD������(���
����*��S*���������!�#�d		����p�#�P����X���������q:F�������2jIzve5��P�Rh.V��ha��,������P,Ob�]���8���8��D��.�t�pV��c��f
w���&J��<*��y0�@������R^0���x��j)�$��=fS����P��=�	�R�L�OD����97��(��]3G�m�$�KO�~�;�Z;h7u��U��������8)�Ar;M��@~/��vP=���A:�+�&�Ci,#�G���HGQk
9(����t�,z-M�c��TH��"Z�Z������D���n���s�@Y���p������p�t�!�G��=��D/-��	]C��:�E��~	�tl�ifx�7�G,�������F��s�rS�����
c��W��=Li�cZ���h�=Co1�r&�p�e���t�����ynug	<��K��%����"��|�Y�X�+�JP�>�:���
kE��_�Mxn�^��F�(~���6=O��,��&���/�H��=�3�������;�]���H?���2��<M������z�90R�5�[��}>���?��I�����67`�W�B�����d6�MbW�9l[����c��k�c^���|~Z�#-�����L���[���;Lw�v>�����F����$��jX�Cz#�MG�M<��=����Gc^6����&v{�mc����{���_�W�67q�R�F�����z/������!�K9x�&K!i1�Z+m��SzW����Q�9_��lQ�)�+�P����[pax�������N�\������#�.�bq���7��������AG���b��hv<3��cK�
x�{l3��a�Sl��[v6;���y���D<W�&�w�{x�)��)IJ��K��:�IZ&��6J�����=���5��l�=r����8y�|�������2]yY��d3-4�f����+�hs�y�����������y�v�������VK�N����x+z�<�fI8"�oc������QV�F�Q�r:#����~���&�J6���!��L)�v�b� ���al���&;���6���s�=/
�����t�����������Q�
Q��<Z�%�t?=%-e7�N^Ad��r'��r��B5�g�KQ�_�(*���[i>���:^G?b����n*`��#z���������^�s�0��:�����[��0II���:i��4���#�������G�S���2���
��n�����R����&��P�|��*)_����]e:��]X�{��J �@�\����b3�M�'dD�\��+���J�j���D�]�H~�s2M�>B�E��E�{h ����Uhq}@�i[�y-����X��)c�elt �7�������sY}��)dF+{),���PI���o�a���f��{�<�.�PA���5:VZ���I�G�f�9�4�����
5��c���������2��s.��^�����n�����_��X���l������a���Kxl�������:8;a2G�}�^��'$����2-&���!���rQF@=[|��r���	�����5�!��N�3	.���&�:��W����J����8���F}M���d|��I���K��f)�F2�w��	*9�a���m��Q��dKxY��TF��4zR1�c�e�-a���M������	�I��8�����	��qIoWp�bj�Z

��4��&�wPFII�����CB�$g�S���~Txl�O����Ut������>�1\%����1$�������9�C�H��`�����
���@E1%��Z,���l)�%Y[����N0��4����b���P�i_�h�0= <������+F���EE�f��+hg��F�	�Y������R��n�?<�C��Y��3����}kU�$^�%�.c��&��,�lQ�+h�-�����%�*�TI�$�	�O�_w��I��IW�	gu�vJ23a�g~�Z8���d���2v���N��o����,�9i��%�z��W����>����.�h�a��"~���6�Q�U�d�"1��"]����PU>��IIs���0�O�I6����I��O$��W����%Y�,��#���~<i�i�*?���������M�p�s;����{cx���:����?wZ���`
��w!B��Zd�_X�E��d]d�m_(lQ	�3�WL3��n�g�'��������3#�mf�G���e�
���DP�:����Ko���Y�R�~;[���$�g���:	K�w��n�-�F��%;mX���"�*�7�	��b�q	2�0���Sf1����yk�X:���*,C��k��Ix�o������2�R���DX���w���]����/.>������+aM)��y|!���
�d.�K$>�M�!>�Y�(e�K�9Q�~HyNLK1-m���e�nz
����~,�s'*��@�b��fp1���@v��:[ec,g��0�h��ex��=�������xbN�yl7I�w�R�x$�NPK)�����E�!qi9����tm���?F,>�gE����X��������@���s"��N��cvEX*+`��
�����_�`�N�~$;�������y���Y�����p�c����o�3E�[�dJ�������������1�v�[�-�DKb���`fB�I4�
	�v�H����o�^.���u	��^JT���^����K3���{MO��9�5�<?�����������:�������6�7�/e���0������n�J��gd';������J��������AgMz�5��
�ujU�{��P�K��W#C�����n�GX������c,��g3�m����Q��K�,qU�����
�/�!�C��D*���w�[Ju:��j;LZ���������G�S0�!�C�������:8r��2^CJ%�j������dl<&_N_/5� �S��r�����n]���l��__�����Z��c7����e2�������:;;>��i����>��y����?���+���%�k�u����uy��[��N	zk$qJ��o���}�	�Y��p��0;g�l�wmb���RE�����'A��n#\�p����"�"���,������E[
��6����=�����V�46# ����1�8����8$9����bev��uIrvlh����4����}��:J�V����e�
�Wy�wh�P��m���y�o�*A�Sud��e����4�SA����NQ��BM
���4����l�av���M��t��:qq������Ay�)OX�D����%��;�''s���5����9LH���f��h�
M�
#!�OM����o�M�j�����,8n�2��W�o�k~����<��W'���J�>��^�'�K� ���,����{�l�j1���R��,�;;�%�-9���}��9#,c����a���m,w�y�����5�����h��g{�j�He#�v���/�7s���}��������������������dH�&
$b;��b�%��T��[�VM?��!3��
�Z�#BT�����S�p������c��8���_��"g\*��T��5|���X����E�cw!�Y6]��s�����n��~�����:z��G����'�,-n<p�s���������������=��a"�&����H����	�A1�nbb����~>�#���m��K�v����J?��a���EJS�"��~%B��'�x�x(��H�c��������E|Vi�
�m��y�s�K���@��2+�Z�������]?s���D���� ���^&�jq�av{����?L�|N�
���H� .�����������b�kbi-�*���d>����o�~F~��1�����fD�����l�k��`B���a@����I#����g���3��	��p?����jS4	�a�[*�/���H�!vv.HJr���=���#3#��jD������T��WR N��4qQe.�f�LD�Y�����tx~8���XpYJrBs��ys�L��~���C�g��eC��o<e�f��V�e��)�76����i;_��m���e?s����|(�����x�����E��#{����;j���t�$�.��}�t1J��b�b���Mc���-]���t�X�u�G���Q�Sc�b��X��&��>������%�r�t��^YJ��Ev�dVl	����qH�S$I����,��{qq�lk�F�:d�#|���b���us����`N�+[��`�o���;��!��5��HJ\��E�E0'v�:|gb��i�����!N����P�~�����;����/������{k����z�������gc`�akC"2.�t�(b���1�A�I���c����>EB\b��h\����<���'��w�����_��?�U��kj����|g��,
�o����G���W+~�����e+��,W^�F�����O.�������Us��ZY����~F_S}a��*'	�qI�NB]��]ickk��K!@A���HU�
"��5������)�F�b{���P�>@��� ������$����!��m�B�7�OCwA�	��jdQ�.�"�2�8Y���T��#&`��
0��#�Gn�/���Qu�]NK\Q��|c�����7�w������#V(�[����nh�s�9uN���n�"�����^#�0$�o^l�2o69�[c�M1��(����c�����B��{�����:,��eC�,O�<�/:y@�<����7��VL������fe�I��A��<)Y�D�a���|����e��e�a������|�9��@_���,�7����,�	�gf�G��%��lY?k}��7���w�X}�n$^r���Q��������}��(��/��+���o��!��t����r�}Z�9+T��#%�R9
i��$_�
kr
15&!Z4�2S1��N�����b^`���/���U(���'*��8�&r�����\�,g1{^�<�B�<����k�5eo��G���a���*B��DJ��e�k.,�^#\��xL�"�]���!�SS�?5%�S����c"���{;��pns�0��q�)��R>�5���I�lN���8�*��Lo
�zG,J��k������b����R};�:N�0a����!`=�N���������9���VGuJ���J�Sa-�S���u���&����I�h�UU����W�p���G��aSwL��}<��E=������
�����-����q�i���������/l������{����������4�#�����{/��9}�����0K���������@��^
q���N�S3F��j+X�i�AY-���B�3�r>f'��b�
b���0�u�M?t�4�0�yH���]`.�{L�H*�Bl
Q[k��eP�Uc,k�9������O��|q=wd���V�h�;[�g����9�&Vc��f������L25��1�o�����tJ��R��"�&)��E�A2t�t? !���Y?}��{�E�c�#*�=B��&�EMtt��D�|�Nz!�!�{!�h�����w~�
�c�J�����f�b������'�s���/b��GGQ}tjtjf��i3/5�������K�Ne�z��2v�����W+��5�����Y*����i8*�!v�*���o����HH�d�ELc���%{7��@�
#�
�1L}����7}�7}�O��+����������������J����;�\G6�|��5��������)�g+��C����0P9���2' ��qF�U����m�E����w2��u��
���L
V�K��X�fi^:3z���T��-�p	�B�p������l���7��v��-�_���k�?�u��n8���[�Y������M�`��?����������Yt��2�����
L�0���k~����}��RL�;�S��T�w�	�o?L��8y�l�(�#zi�bi�$h�5*u)������f��A�f���P�J|�����o���Bt��I��{�)�J.b�.�(_
R[���=�WN5��D���'N�������:�]]�XT�2qUj}���]�GO%>��w;���F�D����	�.5C�OxU9	z����=���jKt��D�+|�'2�2J�~����~J�~
�%[�_�|�o5���VP�"X��`.���X�@�<�/R�A�$S��j����#8~����P�)��a����z��,D��t�;x��Z��`���[A�Y� ������Dt��W��Ac�\�{�����+�v�/��_z��n�GW���4W^t�����v�b$��2�*�w������_=���Y�������~�a�.Ck�n]��XAHXh��6$p2n��`�#�O�j���0i�!K!!���D�0�-�FHM���_~������!���~���@�`t���qR9D_����e�d;_"s�\x
\1U���_9��
�&(�����7b���7
��F�$��(~�,�~����_��%�n���t��!��=��%E
L������r��l./����������AS�9���([�/�/�/t�S9��YE�x�S5]dQP�aHi��	\'���#��d[�lcN
�oI)�S+��e9��Osa�)��J�Rfa�=��{���c7p��C(���������i^	�U���f����"qx��$7�oK��������K#-k��t�K!D6�����]��k`I��*gN��:}�kysg�p+v
$e\��,��M(\�In�>vdN]"�=U��zZ'N��U��*����4J��Z!�������{��g����v����V~��)���d<m|��o����S�� �W�w+R�`�zR���)UU�W��VK������O��(BmTb���T�\��I��r|�$gwHR�J54��3e�)���T*��6�n���v	����*�]���*!nB���\
q�E\� EDr�U=!L�R8�f�q�F)�q����ZF����h*Qf�KM�k<.B��$��r���S�E��p��j�+n�A���|��yv���o�'������n���L,�����M<h���M���Cr�d5������&���|�R��K�v:�B�7o��J�gc	|y#�l~i�����yV������w��)��[x-�^������}}a�k���pk�S]��-����?}���G7�q���q�#�?�1�S�F�
����r�\�N����|"9L�v.������Y]�����}H{�����^e��Q���`y9� ���������HG�~q���
�]���]e���xs��z�	3	3l&8RZ�^��T����P2�R�d����q
�!����?�1�c�����#"�e�V�����������<�@�K��3s'��r���dN\��T�d���������;W�Q�	X���j������2���H�"n���sB��(������{�E�&<����G�{���k�3�#������?|�fn����M��_��[�,|��)�5�6���yq���T�E�:�f�`��+Z+������*hQ@�&!��vl�-����HT�������Y3]�Fe~k���oT_�F�������X������a�Qy�9!n'l,(2`��
�h8��B���������(*�L#��5���(����_oj������	c���t�W��������?�s���V�����m({�C#O���%�m)���)?���W�>R(<zN��1#O����oH����AqH/������(��)�������a�8�=��
�	��p���y�"�I��I�7��:�l�
�)��[~��}�!���HQ��#�C��Z�pF���~����l��?���][
Y�����@���Fb^�cSI���*��v����x������q�!O��������&>d$v����X_���{�>�[�������>\�R��'_k�#���p2�����!d���L���&�)F��"$�R:���P���z��W�Xzu����j�eak�:�>:2�z�?QM��P'g���jQm�?���`�A�<��H.��LM9�9��!�:���F��CI(O1�	���X�d���'sU��DY����Y�Td�.SUck�i&j���s8��]%_�Fe
{8���N3�,,h�>=i�+1b�L>���UW�u����!��Zv.$+�c�uvHe-H����	A�h,0��������
����7^��V��=�����#tk����{/�v���qk�����'���|��{o��V�,����e]�O_=����-|�u�Xy���`��2<
4!�����$o�_���c����CTA,Q�W����D��@N���f��W�PR�()�wiH�������;;������������������E���][�-��	s��|g�q��\ujls���Pe�#��@@�Yf5�-aY�yL
r� �&e�W���#{��������#Spw�t��g���1gQ;�8a��Y_�o X&i^����3�����0Y��u�������0ig�wmk�n�����u]����q��)wm'�6������y�w�+73���7��1���A�����ay��H������9��?g�s���9��{cN��>q���]���t.o�/�@��H�S1��p�^O�g��h�y����9$�Aq��B�H�_*\�]$�z=
�>���R�$
Qq�D��A�2��-l��C�(${En_��}�����\�%GJ�	!'������0�/���������L�Y��p0������nf�@#� �E���/�{�c�8��?f4-Ld&<Xv�����y��g_F���?:q�������~{����Bd��A0�E�5�V�����Zy�0F>Y���a�d��o�ou"�O)_��[����L�e����H���9�J�b�:��f-������#�r���mE���s'���55'�R<~�`����/ ��(�,�9��yx�$��d��1����ne+���������M�V~7�!����d��@��[l����F���8�j��� 9�L�	��|�?�y�d��ci#���F^�-$�@:�`m�B{@4��64m�}�����	��7����7�� �����G��n���$�`��shs
���R%���x�#��d����(���@�@��be8���Y2%;j@�dKrs��Q��|#C�I8� p,LEOnz���n�l��7��o�@�������A�z�f������V�\]�h���n�6���xFtH>?�#�������9��9���b��b��y�����>}uM����?F}A�#p&�z�Aq�0����ur��)�$�'uDR-�1o��� ,J�����b����^
@&C�D�;����c=C:xIek�������&ME���0~GoE���@�,]rt���H���H��b ]�����A�.~�P$\A��x�:�5���`�C�I�Z���@�$�`,��9����?]����5q��|`R���K<�k��*b'E�2u���:U�j��\�6L����]��P_��
���6F�����9q��]]���nl7�����c",����� ���(�0EIV�I��I�i��eak��c�v�����$�I[/3��:d'��R��n[G
���`e f�\RN`�/R	�bc���>�����]<xh��;HxP�4����~�;H>�%J����m�O�����\{Ms�
|M1�9�?��8����i�i[U������/��2���z�7����i�P����2��;�`���8gyg��#2_�s�<��
/�I��l"����(
tU�������F��d����l~���o�������L�^::���(A����U��cj���'�E?����R|b*�j����_G��qU0����J��R@7$�����9h��"�`Kh�o�%�O��"��][��KP��;
r�ve��L�RxE,�a���q�����bY�x:]�eK�Zc����K���W��EJ���Z�*�����w�;X0�ugd3��@z���,���)Y1���-�x#��������dk����R�
�ax���C�!�]����VtO���]ERY�A���%7;���G���g����@k��V��t�"����{����$����%6��d,��8�+1%�=�����X�Nb�<���%f���Y�������|�#1+yC�Nl�S,k�)2�kFJ�$�s���H�	���%#@��|� mdR�M�y
����p
��DW9*7|�i�*d#s#C4������:�w�e�f:��g��,����B>����X4��Hl�F�,[�<�n�H��F�cM���	����J�\t���XO���W
�6����|%��������EK�={
��Aa�����/��F�d7Rn+|�f<�~�u���p��..�i������aNQS�L�v�E��	����+#>	��V9��VD�s��r'1�$�O��?��?�Z��h�j���4\���V:�)������`��2��*M@�:I@�_��j��0�K:������N_r���^,\��|����#W��w�����O��������$�����������D�:���}~����F�R�U��M�"\%4�M����-6>s*jlj&���������]��g���3w�2��d����(���(��~���[���?f��hCfT4��jO-;����i�qvpfdn�����Y�����Gg���TvS���L\�Q|��d�!���,g��~<�a6Z��2v�g�4J���a��T�`�X�
H�!J�(Q�DIA+�	�dvC����0D���o�7�PQ�B����������}5J
7���U�i�I�U������N�B�Zi������L��|�|1�2���)w.O�"<�;��N�E����l���v@2R��
��[�`F�m��!@M4��
%�0b��u�g�Ac3���[�<{�=����S�oE'�Hp������>��v��(����^xO�qm���w�yz�����C�Q�����Qv;�o+�Y�����'�xx�-�6S�WQ}L[���1es+��Vp}DH��]V�d�(� T_P|���s����������}y�(�[�>��<�~����|��
B�~J�)������e���W���?�5��O��
��	�`��d%q:��<�����%�����K�6���\,��+)��������C���)�TF�[��
|d���8M�	���w��UwU���6>���w���;��I	����{(���j?��z��7����O������&K~a�����3��9>h�'uR�I��A�*��\Y������W�|�In��$�S���2�u�Jj������fc�X���a�(�����}x������k��f�:ph���f5�����������B3�k�W��FyM�i�:�����)��K���W�|y&o����_���fv�Y	2�%}H�����ez3���*�~ZI�_-����DN�2������+��:�e��V��p\M�h6[v";5pj�I�������	�+�Uw}H�"��<��P�_���*�W���P�_�%��)D��2�����c���\s���NG���%���b���B�
e�������zE�v�r��������'5�j����67�3V2��2�(�0�	�k�a�hMW$�O�dMTkJ���>�K�|�IJ��,�N�l�w�d��O��8��K��j�uM��e���8����	|*�������(�D@4�0�����m@�C[sjS�	��;���'&��w�R�N����M��C�S��	��u<���5��DKZ=�c�]�0F(c������#�U����"@������d�Wm�=-��G��|�>�8DF
���{�11��I;m��������)m�iJ�I��(��~E��mvK����[]K�<�3Q^�>�E��g��2�vj�_���_��>oBa��?X��������w[�z_vz{v��5G�y�����M��g}w���U��i�����=���Z����������n���.}e�%�;����"�h(F#X����/~�!�O��_e��*�7�S�l�CR^����U;�������|�S(����������1�n&�Q���4�F�a�����o��
���k�?�F�W@PA��e�����P��[WH���-G� cw�s�*F���������"���c��	���2�a�#�28Hy���.1��`i ��~D��=6�*��nD��N9��(^]����o�z;4Z0����=�zO����=e�����S.zO9!����t3����Wd(o4Lh$q����]"HV����5��k��@
An���
G_�}���='o���^~��m��=p�>eg��������n�H��������T��a�C{�k�@�\�8�s�(3CB��:��E��&��v 
|V�z�/�t�aM{�;�~#��zV�/�	?[Dv��9Q�_��$���H}�F�2�K"�0?�����^��2n��+W��QS���#�fu�z�x��A��TGmW1�{-�R�w�8�6�o����|Xy��a�y	N��#3��PD�H�vu�vu�Dx�PN����|�n�?��-A�o�q3�������<����VlvS����x��M�[(���M^O$i�tS���t�v�%��v�Bd%�I~�������s�\��6�/��y$���)`���(��S�Q��lExR�@W
��lB������:�f������uC�����>ej��s���^�e�@qv����]��P�C�(����7d}���*���Q��F�V^��h^��'�Z;��L����Yf��1�T���T�d{63+8��e�w�w8h�2�I�Si5Q"���R'���i������#�����#����WF>B���X�1��&�b���K��c!�'�H�nj8dY��>�W�u�����j�:77"J���SF���b*b�#�R%)�@���a8f0l�AKRE;�A�.�gm�0$	�����`��X��$��F�t&����{��������C>�������~���N�_��$8	��A�[|������@-������h��K�Ps�<Xb�L�pM�>k(��SK������j�����@�\�<���%>1��`L���&�s�VB���,X�ZQ"���[�����d��3������p����j�p�E���?��/�������|qC��#S��zg��G�}*XV��M#
�1K��/�t������X���`�;/M��T�&B��Q:.��5t���������84�'���i������l�HM�"�+Dk���@�[B*��_��]��W�S��5�/�W��M<�������Y�"���P\��@_h]��I�p�uyh
�.�N���wZ�q/�oro�o�oXs������a�5<=J��H��_v��YEe"a�����?��D2k�b0�Yy����y��2%	������!���V(���aMa��� ��!I�F-�X��
�*��e1i��2�����9jN��c�w:�y���}�o�|����d�'g�����	;�d���#{���4�v��_��(~  5��\�17��0���6qo�����s�{p��E����Bj�,"Q���Z�58�
�+�<-�����,����e�.�;WQ�
A���K������� J �H
�K���VVQ��' �<���D�DRC1���6"a��Zi���A�_
L�;5�T�W� �4��|������1���y"�}��7,�\�)l������.��>]�?��?��4�=U@���=����)�GoTJ��$�(Q�iU(zC4�����":)���c%��HI$9����^������,7���n+Fl����K�������M����V,6�#t�t�p�������$��J�Jz�Y	��"����DA�le��`!AU!R�p<'�2��<��9I���������GU�����s�e�%�I2��L$�L�h(�"��h�(nhX� "**T�*��j�\>���$,������.[�����3Z\��^�W�$��>�����w�yfr239�y���WK4^�lU����?�~�6�0u��"�-C���I��i��j������B��!��c�u`���S���p��2�H���7�7G�I��(ET�]��2#GI��D
��xa��%N�Z]�������d�����2N��
������Oz�sT5{���P���v�K��g�Zu�z��������`���=8e��b�1��G'aq��������cpKn�n��	���4��p���E���#��{UO�1����*6��D����]nKNl8��[�nX��4�w��v�"?L�������:`B#������w���[������YTIJ&I�,���j%nc���t,��Phg��a�5]����
e��[�K����V�k4e���P��17������N�am�6�q�M�����������z��G�a����������Y��Z�V���I��s-R�m����
�RU�[�)uRs���\a\AM2FM�����r�_r��AqsUY��������7�]���a����j99�Y2�&������j�����Vg�L���M�\;���*Q����a�-�kOm��weMa\�@;���G	sy�h�����b�MYK��79��m����{y:�w�4�r�P���y��E^�28�U>�o������5���@3���*�s�U���
=0�.e������������A�;����N5�����r
�Tor���������BZz�:�i��c�h*�p����NAS��d`8�T���_k����8���V$E�5�/h���1W��p�+So���h���e��w�R�9v����}q�!F�_IE�|��y�Kz�{�������=3��ij"���?����X���+�����{N������M��_:���I�f-^�dR��*h��m�S�,��M�����4�NW�ZR�SK�����`G�#q^��Dw�[�X��\�XX�^�_�>1����?�?�_�����?�8�I�3\���u�6w�>�[����'{�P����4�La'+�S�L`k�ry���� lvu1��'#C����j�u22�Y9��h�:GG�!Q�.Q&���"*Q%y96����n/�-����Y�k���L��ZJ)&����L��Z�6���b���B"�7�h!(� ��v#�X!�h7�&�h?YVph�|d`�P�rj���Q�e��><7��h��pZ��ps\P�2���H2��D�Y>	@d^p�g��^��k����J:lP5�uL(�C���\��-Wn������W��������i�K���><���o�b�����z�o��o�[���9��~#A_�T�#G�XF���'��`x�D��OA�SG:1�������VJb)VFZX�s-���.�\���zg4�����7`�E�Sg���
��������!�����P��B��Y���,UW��*����6E�(k�iF��\�A�Sgt���];��������H���N�e��S��f����^��Z�Mu�����>����aTV��q���o[�;-��gd�g
�w�p?zf��M�J�j��
{�;��v�5�U�pv���B�@��H����G�$(��NM^+��5����0���.��eGI�|�=�����������DIp~������WJ�&��b
��Yj!f:�T|���������~����������3w/|���U �%D���dr��_���_���l��8�^:�r�D�jN-�g�\k�5u}�t~hn�Z�j������@������G��B_D?�1�N���NO�*������D�U�NOQ����H*�����GG5�M6tl)e�����>g�4�T�P��D�.G�T��GYU��-[�s���D�i����&��d�8�����2!�!v����2���P�':ajD'Lo����G������u�(�yLa��m/ZY������y�_�
#K�o�����!0*��
	�����Wf��$����^2���3���e��[�'�eCI&%�[b$q��`��Q��XJY�K��b�C�����x��m#c�~:�	��v��7-|����o���t���|���O���O<�1���Dk����7_�_{�������o���2�5.MS�0����n�B�fw�x�;|�p����T�N*�O����{�51~jj�5#1)5��??u��$qEj%�2|�>3���htv�4K�HJ_ol4h�`�)I�v�/���y�.��m��Al����������q��������!3� �56�HM�	R!W[ �;H��F��n/ �^����A������lC��O�\3e��d���B)P!���@y�DTh������ ~��1(%x��qy@:�z;\�J3�I���{n�+P�H��5"D���e�3� cHl�5oR��$x0��/�n��-M��>�L���*h�* ����v5���O��@����4��!i�=W=8����L(���T�>���8FQP����_�M��C��=��gI)��p5�*�.s&�B"��M�qq;�4�C�G�j �����q6E�D�PPEOI(L�CA��)iC�F����Q�l
����Y�q*�R��q��S'`�6�J�S(n�Ul�����jb��F7���;�r�\>��
����x��q�N����_A��*��(�P���$�at��8�?���1m��@"C����Y�!ZI���$�Y|��5(�M���6J�I����/�0�"!w������imi-��n7vT�O�	��
���V�7/9������e~�`����Y?�����_- vb���Sl'�����e.�(�B��SB�X�h�kC�5���������p�|�|\�gX[�XwF�u���o��(��?���l���)c.��`L�pU�Uc�7�n�_w���5_����Io��O�t�5�����8��o�
.���)�)E��[r-�1�����Gm�-J�Xl_Q;:?�:�6��H_�^(
^(Z�BQ�B������B�(�_�z�����v��}6����J1�\G9�:�)d�S�����b:���W�@�������1�gVt�S�-�`V�Q;���R�9�:x&=�o\^E�S~f�������?���s�p;�\C�N��F8��4�PT0�A$���R
L�����`=�����:a=�Q��`��,=��u��[�V����Z�In>s����4�b���\���_���k����>��������+��81'�|�%m�@G���W��_{W��ix{��7��W����(�L����F��G	���
�}�me�0�T�
G��h�T��!JOqBH��Q����*��m��������
�(�L��z�
�I�BH��9N��!p�C�G$�}H	<>�083a�!Z_�9��F6F6GF"l�yJ�%��W(�������2x��X=v+���(X3�C���������|����O�����y���?:Z�<')$�M�c�	9�W�H
`F�B�*O���e��[�q��9�!�$�h��-6kLP>l���c`������h��;p:��G���������n����C����+D��R-9H^���n�q	��n��+_��,s>����"-{y�'�� `���C���,s>��u�Y��2��{���'-W��2���R���(�'�y��^�(n��#�@�iq��Z��>uP���>���gv����Pd�@����9�b7����{���#,M�v~��N����-���J�#��4Y�i���K�Q;vf�d�[{�������^�o���J�`%�'�`����s��*uo?����'�l���=���4��Bk})!=A)
�x���=�x�Z:�[��'(����e��r9�4��[�q��	,K�\�B�L3!�59Y�]��&2/�L}=���Q���$��QZ��g���m��C(�P��+�~��� �r�D�C?��z�!����i��R�3H�'�
�+b���3a�0���!%��	I�Y�'
�&��^�����e�����
9�dD�������z|�m|����a?y��/o{B;�v�������;����3c9�0����i�I)�-��%zr���Ny'���%"����;�3��p���K� zA��0�~!s�D[|&��#}Vim���O@���}7~�gY�����X�S������������,�j�Z!h�'���,����/����[�'�=�����A����/aK�8�ai�����5��9�-�e��y$�#C �LI�N��"�B[�:@�3P�1 �z�H������K='����)�=]b
�s�X����-5���
���rh�R�2)v?P��\E���US�5�
��pi�12\z4����iw���8�H������n���:]Di�n�c*��u�v9���$6V��������ZA@��l����*��������G�V@nk�����h6��G
�m�=�$�B����(��w�:��L�o��_�|K�9uw9-��@,�t	[m�b�����J�q�
�g[@��'����?y'���W���CW��[���Lwa��<k��=K-�o��'������O�t�W��_�Q��}�E��������;��w6V�s8���4����cg��#���r�����D�'H"��RgG(4@!;��#��#�
_��(���������fb]gF�dG;3��H��e��G_�]}��\<�����N����|����t��>cf�B��e�'W��p�''}r�'W��1S>9��>Y��{�>Y���O��5�'[>���A_���-�l�d�e<t�)�g�j!����_�e�w�c:����dFd���&����D����������NV��7��B�0a&tL�n\�����IC�|�	�R��k�;Qw_�+:�a7nsH-�r��(	��,�S�)IL�NI��P;O�
IER!�����I�V�)���{��<���9T���}"m:M#�������� �����W^
����Q�����N������i0A�k;u�I��!�/�]��nt���������P�6��Id�a/��*d�6D�%CJ`S�x9����eAd�J,n]�;�m3A�x�0��(�CCB�j�d��W<�����x��f�K���������>:��+/��i�P����O|������+W���w���e��uAC�%�1|�~��i|��-x�9�YTc���@��bc#16i����W�GTI�mT
��V�VJaSE-��5��y�y�\�[e�wr5MM!o���t�����<�@eH�e���3c��&H;���6�6�bl��[�O�"�6F��+�X�i�T���J'���/ue]{<`['��3�@�\�r�������A�c��|��r>�MQ
H���F��kI�K��v�l��I[T�V.��@�8�VRR'�?���uO�t`���
��a���ck�4e�����n��^�d�#o����Y#��:�-*G#D_��c.�����o_C�8����2��(�]�k��@�`L�&FZcS�������<n�x��muG��-���WK�%��c7���s�������b��i�"ES�`bU{�:@�R��(��I��%A���fo�y����R��;��.@�[��
�D	���4NB��`K	�����e�S�R�����Ix
P�F���LKA�J�RA��5^`�)���l���*����,o���&��)����5���w���{�~yh{��	���\�J�J�%a�-��t�d6�l(��m�(P�����z��_�En������u���}���JQ�C+��:��g�B�H}��7�����?i�p[����*��`��+�)���t���l�������9�\1�bif}&01:1yn��dW�Re^t^ra`��c,�.Jd�:;��C�`h��`f$�a�F>��N4�f�5.1>�?�6dSc")2��GR�Li�Q
�)T��P�b<�OB�dK�������.��cg&O�y�/?+��8#Y%:�l��`�Rn z&��$������o���/���1j�����0l�}^����������E����g.�w���J3��g5�>��9�����Ft��a�p8��L��0�����u��[x��]��X��+�����p?���Gz���M:�<��ko�����v����`�1��d��D�j�{&;�]�.gy��Q
��J1$���$�~}�3A��O�����{����Y���e�>���*�8�M��M�����M��A���2B�I�r���e�v�\:��Pwr	p� �d�����4[l��y����K/;c���.U��O�N��\�������!��s����ql%�[�V)��JF,�z���okP;j������5>��'W��L)LXUd�C��s�����k�W��wg�
�����*F������E�$}!M�H����I��y�<ua`��PZ(/T����u:�]f���^"u�W�^]��fyvu�����G�k|t�3���u������6R�����P�	YO�w
-�1D����'T�Io����@]N��D�6��c+��To�A�xg|V������8�������t��8�9V�0�p�Q�!r�A���2p��"�]�6����X\AW����LB1�c����$������Jd�v0Vh&�����sK�I���g�o�3���P��C#��t���F��2���(d��mK��k@
����4x<
uO�O�L6��.z_�!�����0�y���l^�L7��|��9�?,��s��%��D�A>d����b&��)���3��"�Z��f�����fQ���+�Ou;���3�<����/��
c����_�K���<���&1I�M����<u�9����.�Xk�4�Z�$)�^H"�|S����$U]�*�1R����g�T�� q��77�n4���YC��9�Uw��@N�A!T!��V�u�x+��px�py���z���u�uc������a��?B������}��Z�����'fM��������s�rc����HS��W+���}�����E��9���X���53��R��O�������o�IU�l��U�.�p�K�ZeG�A7pOPQt=� 2�r~y��,>���a5�-�n�Y,��#
)��*b�y]�q#�F5U��op�.�Z5v�
S�)����ja��R8@�(l�}tK.��QXA5��������tt���$� �_7uBla�����[�T����������� ��li1~���Hna"��������#IUMM�yK<l������z��3D�f���]�H��q��������-���|r�q�5O�W=�����~p��3������A��N�4AFc���	F��;n�
� ��#2v�&>�TKdT^��h_^���$L@v��2jA3�4V-e����Vw;�Q(ZDIF��S>EQ���7I&G�������H�M�)���~�#��R�@6�����"+z��X
�&��Y@�@;�I�����R����z��0�������L�54UW	��0����U��0��HC���c9��&$9��tzC��$X]-tE�e�X�s���==���e��9s:��G����j��~d����N�3��{����$H�k�D_�����>�5��@k:R*�R��!P��%hy�m�PR�G|	D�����K
P�����v�xm�l#V� 74vU}�������U��@$/V�
T��G��;������1T�X+�S��4j�TDE�+p��-�{=�J�ft3}K`�x�����2�	��L=.~Gz�zJ�9�C�"������zW���P:A���#���TO�Jm�,��D��"�q��� �y�u��O��#�x��8��
<Ks�"���<>7����[y��5o��@ 'J!Q�(��s��$Jr��� ���&)�����"-�D�m6���9,�b��Q�����:N�����������J����>�I��\�B���&�n��~t7 V�-�lx�/s�X�����gk�����V���VL�����+X�JI��_�F0T���nF���R��.�'3��P�`����e�����8�|��;"P>�x���ZE���0�<�#0�jTI��])a���#���p�z2N��}G��8K[3�%W��/��C��
"�d���"CQ���f�����,0���(��5��?`7����d2�Rp>�xk���V@��hVbM�-�;~�$&�e�������],��r��C��#��������qvTv7Ke=�$�MLW�T��x�w���W� ���R,/���*���T )WhY*'4�Z�j&N��b���0#0]>S�j�k]��o-�\k���*,�����[��O���YO��uZ�^g5�&Pm�����������������6j;�K�
��'�{H��u�?.�d �R���P�C�5+II�Y�2B '�9�'4�Q��Sw��g�7�b�����$��R���=_�g.6W����)��V���\�����G�Rc��sBg�?i��
8Q���H�i�bzGY88�^ �Z�W���e�9!�q���sN�B��L]�K��uB&�Z2�F��tS�T�x���)��Y:a{�B���V����l)3KB7Hw�&}�-�2�
��&!~���
�� ���s������T�g������'F�;��D�U4����G@���Md�=}szn	��f����A�P��_?5N�X��������0��%��E������7���#�����
�����8��o�=����8�6[�	�.��K�X��������}R��P��]�����;��v����-�2���e�
$�����E�x�`��:M����N����7���}�p����������=��[����U���K�Z�3�{��;��Z���V�E+�P�:�y�y�W�R�!����`C���Bzu�aW�o�D�>�����n���E���'��VF+�(�A��&�"�K��/�C�K��;���o���7����������$�*�X�S
��H:�H��`�3?/C��� @�U��`H�N�����#�F���GEj�O�@ ���u�z�R-�W����C�6?�_
[��ik��z>�������}��"pa|d=�56���nw�t�{�2`x���w�t�����*��/W�+��v��[��
�S
����v�N��������
�>��;�:��(	L��LS�tt��}zl�1��������8�	]����:nr��ae�w����n�sU�s��c�K�����j�Lf	����<Ag=�"���5���'(��K-��M���{��Z+'�u���I�u����m��V2�z������[��A���	.6����N������PQ�$1�jc���+�FPD+���:�N�S�+��V�	S�����"]VW�+�c�{���+�[�[C���Q�7��z\z^~��m�
}*�-�Ou��24����1M+��D�r*��g�w��/�NQ�*�����b`��c�x(�YR?��>r��e)H��2O^�J)�)�j�N��;����������i�}���E[;���:���$%�#8gvF��R����fL�k���;���U���S8D6���OH�c����1��{83��5�py)��Hd-�t�7k���6x���8r�x�Lph���m�Ru[�����p��Xv�<�l����/F�'������8���gbt��T��k������g�w�Nk��5k9yx�/������O��[U,_��Q�M.�+���'nZ�j���o6M��KV�����y+�8������&�o��~��I��9���&B���E���| of��.y���G���Q�w=��^�)4�>����CMwy(���C��Q�Nt�-���8����KT,w�b�3���WD�K���m9��_����}����Q�W��7��n���n�4I�8�2 �}&����
z
���U�8�Hy��+aC���.������U���������}��9����$$��l���-m)k�(B��-�ei����.���v��uN��Zq�q������u:���}�6��y��4���;	�.����{	�������?��+�\��Y(�,�I%��6&tX%e��}&D�I���+�c`P	0%�-���	i
�yS)[�-0���������>���e�>����'���!�]�����������=��)��8	H��@����� �*�Z��T���Jkz	H�J��M�J�(�M�B���5�t��V��D�Z�k(;\�?����������B��G�gC?�geX������WV&�d����f�.y�F6H}V����@5��"^5h�j���
�DJ���,)�v�o-�$���]n�T�i�������h�Q�.O��Z�Q*�e��/gdZ��OC��j��x��DS�+��/G��s-b98����Y3�w��{����SK\�TTT����)��twn]�������O�~�%���Z�D�wi���I"���3~N�������oerw2.O�dJ����Sz��'�{?F����9���8b�6l�| ��]���B��@����r�F$���KI�X��R���4$,��=rKK_���]���3&��)5o��#P\U_��0�$I��J��M��;�F��f/_z���w2��K���#��$����a�Z�na�^��V��������If=���+I&�X��
"�|������R�f��y+���?����3�o����s�����V��J�8x��>��"����IF���D��=��n�����s��Y�������'Z}�@��5�]{�����5���5��q�u�h��h���5�k4�5�7��Gp�	�"
�*GU��
h%Z���6��]��~�����}�Kn������=�Z!���HB�6��$���,amy9��l�_�u���+g�<P���KZ\��3���;mE�=�i����k�iO��2���i�(x�\Q��;��)t�A�;�4�����st���<�?5������O8`p����C���>�iJ|N��}�������������y�������I7��s�t�����g���0^L��d��>7v:'/N�7�o|3����|'�c��M9�/����������
�
�
�����]99y��8��������r����$a���j�����'�E�J,��j$%#VzPE�
�P�h�S���U����G��z!G����&V�h������X�0�U��SK2��^�>: B��aFx�������yI����o�W�wu�����{����.3�����g�_!�4?'�R��d����$'/Q#�Orh�"a#L��	mi���Yp�l |���zu�!��?>��n!��-��+�[��F���<[FP����K�{������J�eX��\!70�����O�T�P��G�P�����p������Q�H�3h����2��p�@G����O�oy�� �����!4�2��-��z�F�����V�����	�R��t�zLg00Z�b��*��65N
V����/M�����|���@B�c���F'7�����;�����pCYe���k~���7�wc���yK�T���W�-�Z��������s+���c���	�������MZ��F�r�
���5��D�(w��Gp��R^5-�Sz5
~H{��"�h�d��z2��|8&���0h_;S����.�!<�� �>����;��7,���e�ue|���E���'�y��,������
pgY��0\9s���+"c=������Y���>�"Z "��'��������1s�y��{.�m����_��F�kB{��nD.�k��F$�`R������m6�?��,U��l���A����I�]�$_�[-�x���q�����1��Wr�����@������+
�/^�T�+=��ymw���9�#X���/����?�S^�W�����M�`��l���w�8K����>$4����FUT�J�E�'�*�S�I��>!� %�o�J���1������,"�8���"��+�&�"H#!���>q�;|wv����E�o�,����Q8p������%'�y���ZU����/��#��Ct�3�k���"=���h�:4�`���*�e��a,�5���L�q��`�)���,���a�>)hK�tv�j{m�/����VFC.�{�������mOo+)�?�s����o?r;[Zw���Cn����������]){��7��������Hq���.��d����l��p-��e2��%���0)���'�6n>S1�s��H/S]��}"{w�c5B��	����h{���'��F�7B���0��>�H���4_zzJ�~1���/&�G.�x�'|���}�&��>�����g� �W��>����@/N��t>��<Nx��/<��e���$�'�n�J|.�=��|�C��e��t^F���<�/�+c�	Fs*�s2���2���@��9kQS���g�9��������/j����r�LA��@$T]V�s��I��o:�2'{i_MuW}��[��S����OxSB���b���0��\X�����3�*:��~���.#���U�tP��%�(���V��(�����t8��^Q���.��!���f5,P�	~u�<����iw��59H��h�{Q���v�*���yh���^�p�p�E0}�4�I�8�-��m�vfJ)}B��2����\�?�V1��m����y�s�O����I���_��Q�M�z3�5����������m��xwik+UFW�U�=<0{��c+,w�����������^KQ���e���v9W��2'�������%���l1&��BUQ��������U�Q�v����.T� &!�~F.��V�	o�I�(��B$~���L�B�
���0����-~m,v~�����"������CWz���A�������s_�������5�Q��:d}2\#�Zi��K�Tr0��&�U������YnC&��G���l�+�&��dd��q�Jf2�V�%	9
 U�c��9h�tJ�m��,�������N@��������'����/&������_��(�;i��>��_xKu`���'�2���&����<��e��]�Xtm������x]0�[�`�5pAd4q��5�U[�pP	3��J<G
K�V�2���B-a��V�
��z��FZ��N����������'������)8�*�@9]d(>�S�m����p�/���cW�}�=�"A7����c�����;����c��+��������0����4����?�
�y��O�]hI(�w2���e�<�r����v�q7p8���L+������g�P���5q'F�L�1.����|�%�y1X?���g�_����o&����D
I(
e�G��[�a��h�����)����
k����l�e�=F�b��z���A�
P�W�~��l%�	�=���G��b�W���Q�2{R% Q$�k�����V����E2i*���i��?"�`����B����Q��:�\�	�����E����~��_������m��Zw>����a,�����z��;�����}��7�����{�7��Yz������]��
����h4�R��t�Z;�a$I���$�b�v,��
�E�TP��<���K7�?v�m�4j�Y���M���;b�T�]�J�K�����N�'L���pF��B�8��m���Vt=?V���0�~���?_y���q�[>��=t�����=��.���$����|���Y�������z���O��W�2�=Z�KXLg�!����6�^"���j��M	B,'�a���~�&	�I�q���.'�&�����h{��;���bd1��:r>=L���@����-���h�z�p�
Q�u�#��{�9Uh0:�������(���?�M�e�Pe�����_(�����
��T5��Y�U9a{R�,������R)��$T���	OL��'������),!�H�t5L�:��`g�`��t�
E.�������m�/��(�������a_t�{����/�����{���@$�Y�"w���5kn��y��x����(���;��W����M��,���������w�����3*o�x��U����J��
��"W�m�)ZQ��k;�"��e7����}�
{����c���4��g�z3T�������e�+aP��� ���f�>��l�;�n�"���j]�D-K�a�;��.����E�i� 8k���@"UK���@�)��^a��o��ht���N�KU�E��M'_�|������9~������E�v���S��������B���j��m�m�v�	����]���|�����+�������g��~!Q3��
F�[�{�x�f�`��Fv������I�
#��	��iR������&��XacxJ�����w=�������U�����}!S;�|O���_����h�b�a�'z����<�(��4)M��V���m���Y������U�Pi���9��Ka���B[��u�#ZR�m�9����+��O%&��dN�44���r�x�M�t������w5�kr�l�7���7�yy����`����k_"�7�[��2S�t/��~nz���O�+�-����PA4������Z�� @nG+�J��(�JOK!gj@;estM�|W�V��"{�a*�����:V
&R](�������������C
Q"��=�4R9P?�:��&9G�$����J����9�����0b���u��	�G�9MQ:�I���O?�m��s������iv��D�V��o����H�s<'�H�F�$��A���$����I}�m�a�sR�T��4#C$Y��@2�Rp��J���@�qY�iH�b4��a��l
����a`X�c�s:���.�.Z�_��^y(���c
�xl.��%_uu��D�����b��P����
{��*�!W��>�� N��nHv��
�.�O��T(J�v��C��0'	L�*#nWC'	�,�E`O2��R�Vd��l��k2����q:���������Ts^��I������$���	�/Mhb���	!�N����7�1<1�I
�������GX�Kp=n��,A�� a��k��zvv�]/������|O�s��hnY�?��2�������s�>������5��Fn~T'���r[�>���1��V�%����'�~{��G�����';���a>�/��	:1"?Z���W��HZU.�W�q����IR���P�FI�[�F��$��������r��a�i�$#�S\J����j��3|-Qp���#��!S8?�)]�t��G��#mn�9����[�1~����2�5*���\����.������G����>g�kV����d�����ma�G�(����\Q�=b�|�f1*ND;�\:GK:��Et�v\�;D/~;[������o{j����H��*�r�d:]?���N0�Y:-�A"��@w�/����-������1O��fB��������#�16/^���5�q"��5���=r��XF�@AQ�T��D����'��hY�ID6�BNtu2D��;�U���rS���0������'��g�V��1����"��D�[�����k���rQ�OiQ�\&��X,��H"�<q�:�s$������8lt��g^~��/~��8��t�����-47��7
��j�\
:����,�[&K%����mv�\��L2�M���������p��Fy�j�L�:�i��}��=5�Yh����;�����7��6�-;��ypi��2��n����1�����,��b}�Y7���n��s�	���k�u�?�ex�L���	�	V���]����\��MN�4B��*�W�G�[��M<,����~;^NMB��Q7��y�=���v1���v=IwPy�OW��B����0@��

�����D�������[����[W��X2s�gz��yV����7��u�����Y:{��@��
���]'��e��������n��;��-m����-��}9X?P�`�<��M��;n��\ �:�xj���5Ma(
��)�h7A�:T0�<������ds(�g4rr4k��^8+�=
hv:���n	Ju�aJ}K<����2Q�z��X��	���� u��c~QF�2����'�Kf>������`������:��k��fo^�^�}�j���3�9�g�=��������W��~����\!*.�s!}nwu�v���w������\(1��s�\���M�&�3��tt�Z����g���2��Hl�kDP(N"��]>}���D*�@�����d52���Tf!36�Q/���$�s$q�	/9A<J����c���	���V5�		��k��"|-pUZ�:��q2.��l�G�������5[^�W���Ie�(��H���6B%?�n�m!�,?��ld�{��u��B�9Q6�!���5n�����J��ck�5]�c�� �C����)F�Ne���4g@q��x:- �M�%-�hKK�J:�N�E������t�Uz��g���E�J�:�His�=���>o���)X��d^��o���e��k/�XgmXt�U����������QW���l��,'��.�r��z}3��qV�W�bwp��hU]DR!b�Z%TK`9�,c��D6������S�'�L��[�v���ks����r��i��i���&�_���7���Y�����Z�+���5m�vGr���
�?P������{6�7?[�I�H3������ok+Xv��������8X�|���������;�&SI�IJ�&���*�B�1�n����j���A�Kd��@Dr?�J�w:�j=g��x��i�����|t�r��+����L���?�����/���o��c+����$.R9��I$r���!WH�!:����K=\q�DL�H�i5���!��0a-��$���
���J/�����X?~��t���@������R��� F�Te�X��c1�,+���~J<��S�F{`� J��;�Sb�g�����x	�o\��mrm��k��I������4���%J(�U�p
�,���&���j���R)��S)lJ���oN���N��F)p�j�(x}z?y
|'����S���s^��*��i'{�K���j\|������Gf�o;�.�8�r��V�x|����w}p�����|��{Wv����m|��l� ���N��b,RJ�H���q��X���'t�����7m9h�������3��x�Y,�}Mt�^����3(9*e��C����<@PD�,�����������P:�Fc��%:r�3�\0B���+�c��7?��E�w9�CK}�1��.�8tu���������.���N��G�{ :�#9��!E#���q}2��s�d��#c2�`��&��;H�a��r����k�%�a:�A�����$P�	vbXd�$�1���)p�����O�=����'a�Q~�8��qoO�9�w�G����86aV�P��=Q���DD�����8�n���G$�1������o�F����yX��2:vX~�o��Z9��aa�R��J�~�����V�^�>�j�"�c��Mb�C�xb)c�3d���D�O�|K���f:]h�>4O�a7���#��,\@�����������i �a�J��n�$s�8��WZ	���nt��-��r^*�yc4��!G��j$�O$���3HH�#�h� �*��tbX�1�m��*�$�*�B<j�B--�f�,b���x��*�P�0m�b��"�,���q-{�i����CL����b�'�E�|hU�|��:`�
F�`��V��0C�$P ��1�����8,���w�SiS�M&���M������p���������{��������]�{oG����8�f��e�����b������C�9�t�=�l������%�����]\�����c�����$<W!������v���H�!XJ��*��r��J���2�t��N8(�;�
N��^h|���m�o��{h�������}�3�a7e���nw�����+�
hN?�~C8m%������a���lI���9�8b���bc����D��D����(��654�����kI��H�s�5��� ��j�^7l#?���j{��6�NP(���S���-j�S�5���2$ �=��S��H�`��Wh��]*j�
�-�U�=j!
��X����(?7��I'(�]�*��m��� ����P~�����Mi���������6�������v�T��p^S��l�]a��?�o�0���1�eH����5B57 ��16�,�,�����`08N���@$�1��kJMB���H9�q	^#�c�	���'����{J�ks:�m��n*�����b+�xdtp�"U-�a79j�5��?��=��[=�k��Z���[�Ao!�q�H�����������
���g�v
,��J���+v#�>n��L���F}���[����$n������B�=���� ��R4)8%%3-���
(M���`h\��N��^�M0Eq��������h�t}_�L��lf�2���[
WV�l�+W��%y�C���<T��a����v��[�i?�(���5��U�L���F��Jw�
9�{k�/��V�(o)�'����f��M��kJ+zH��x�b�a)�/�-%*��Cb,S��)^�����9��N�~�,������ ��)z������{���h����d�`\k�d@R�x���zE����,�z<vj����l�>���������6<��RgY������Z��EzOy����e������5u�����]|$vS`i��`rn���x��ZBlc)������z����b��b�z��
�0X�F��:��`!5��
X�"F�l$�,�����Ze��H�?,� ���a���#-���}�/}�%
�D�%5T���q����iN��U�ef�'{��T�=|o:���W�&n(R\K�Q�Ih���@�M��T,k_{{�������l�k�^���Z�����������o_�}8����9}������;�w�{���o���m���6�V�LK;���L����h��Z������G��wq�-��f8���9:�Y8Z�y:;�9;�9/D[�x���6 �=�qg �����p�+����0pW����������i%��������hx
���a4����r\�\���;����\<]���3��X�pK�Y�(�:}
�tH�Y��al��
G�fGRh~g~`�IZ/occxclw;]��{�Zk�wn�q]�;+:��Y5~�����5v���ik+�;W~�the�3�mm�C�sC#ZY�?���P0�W���"mh�?
���G�&sh�;(��$h?8�;����lef�Y��1�5��5s3[������7�/��v��f�vff��`�h���,1�aa�[����hb�fv��hh�cfMz���@V����Gm��Z��J��	~���nkk���_���)��?������am����y�bcV�;w������x�7B;�n��iB�[�.����nx��{��Za�tw7�4b�3p+O�".���j���P�������s�������:�$$�������4z�i����l���zt�ll���Mo������������l�+4/�P3��.K��_>c���g���@���B����hh/pf8���3���
q�����&X=�}��L�b����u�k��\u�vk���0O��������z@���y,���"h{p2C��]�l��`����x?�Lk=�<�W�fv��P3��v3G���q!�Yl���
����z8O�b��c�U�&�L��e!�-]
�Q
�j�����:A�~�Ps=�@���tAK��O3�;A�.�\ �M+�v�&G0 -c�`�iI��S����e����1x9(�h,Z:m$���1�����4�Ln�����+/�������V�[/���]e��^���P���T����k�����{��l�a�!�������A	�
�sf������!?����C����UETF����%(��u����&c���\���o*#�����<���Gd�==��uE�RZJK����KY�RZ�a9��j��-������RZJKi)-������R�JI��TSZ�U�h)-���������	I�����r,�y��^���z�W�7
������{�g�_��FB��^�&<���:+�UZF���[�s2L3X�f��tfP�����%��^�������}�N�������
�������q���T�iDsD/���,�
���Hy��o��I%��`I�$E2@R !�,Y(Y'��?VNH.I�J^����RZJK���"i0��3��;��!a��Q����gE[�����Hm�a0�s���������	&��1�H�m��dd��3�����~;%���������rm��������X{��:�`�fi�F[7�L�i��	���1��lk�f��L[g�������t��k]{������P����&�����T7���j���:�C�N���3�P:�����	���X[�tH�)Ru����gT77���������V�����6�7�0T���~\T�3o�d����hn:��A�(�nc��;��RT���jT�G�X75������A��N���a$���@M��bR���)09��`���D��
��������`������L�ZR�.��W	�%��@�+=�����I���B��x��������!���X0�y�[a� �`,���C��i���\����G�^&��#���F� �(���+B�h.#�G���@T
T����l���U��B0J�4G�~�=x�'��'G����K�)VhBMK�+��H7�@�j����[�I�.d`�h��FR��!��HE�s�.�_��/GF6�
}(�#�!00^�$P�����!]���tx#�pL��������_�_����A��b�'��r�h�lPdZ�������� ��jS�l��<I� 2����Iv�36����x8����DRR�f#~5�~�H�Z��H��4z��F�>�.�}���'A��Z���:�#:J�55W��"��E�IPFi��B|����m4����~������o7�����Dm	�#m��O�z����t����X�������H+���|�zt+�K��9�����6���c�x�Wuk�t��B���7��M�������$�,DOUh�#����_�"��%�|O��������RRQu���H��YS������|���r�e���V�L�e��2��5Z����.Kd������i��W��eD�.����#��+�Ev(g$�EdH#�-)���A
��:X���/���v�6E�^c:n��<��>����M���@e'��HQ�����&���\���?�g�r)���6�P���@����|Y��;����*��� B�����c����NQ�y��+r�����|�e<�l�������]����B�j�4�q����>�����m��<�,�k��H��L~�8�{���24O7�����Et�����PkT<5�[�W�n�i�4e"�
Y(�+�l}[j�!0nQRlM��:�"�f�B�-
c	e�@���h���y��������j��))
3Ms�n�D�c��hG]6��A�V3R$��l�� 0Bl�;4���/A�2^d�(.(�|}M��tY�I?�L��#���|��
�VYZ���sE`Q�^z5�R9�N�"*�f��t�-�"h2Z� [�Q��}+@�@+���o0B��{#K��<���G����$��D1.#P�z��I���2
.�&@#�w"�M�\�88#���6���(H�K���O�)N����K��+���,�����y���E�$=��ZN9HG3�
8J@-��
�S�8��A2S�&!b����8����R��~��h#�_(MRq��7M���)�s�?@�(C$��1HR�W�3(mj5IEY*I�
u���'N�;>z�x�`k��toE����F#�%�e�h�"[A(KkK>��K����hI,�{H,�^�{�wR4�
8��A����j�O��EO�Z��z�Z� �@�z�����D�#��R"Q!Wh��R"Z�R*T"�L! 8��_���Q|�Z�,�Lf�4K%-"��R��I+
5D�"G&&�
e�
�! z2���oa,�/�W��"�X!��=�r"�P�����25�o�'[�"�dY�2�(��Rc�(�V��R���)��D�\"U(OH$��R�Z��PK��� K*�H%D>�KH�j�J��"�F$�WpT2@P�H"-��E�kG�I��Ks
�E*�'Q&V) k�iR����%
����bT�"�<�H����_�%�I2q�"_�f)"�J&�����&��Az
��P�����rM��($
D�D!�S5
�	����"��EHdj%�2��%�R%P1"�"5���
d
@�U�������U�J6����H�zv�*��P�a�W�\��#+��pV�����B	t,�
y~1�#��lg0`�3n)SC}��j�7h�&p�Wg����@��d��DQ$�W�$��'�T\����k�F	\U"�b�1��|es���#/���~reY2�s�	+[���@.�U5����
���uF���h����Ry@�,O��Jd��*'���Z���En���A4__�_[a5�	p�y��A
 T�t�4�>���k���jf2S�q�����@R0+G%����lX��{��"U���
XL'Y`E��RD(�����K��
�r�H��`��e�@3>c3i	�6���EI�0Pv��8�H���������^��?�hC\**�
hA	YD�B"���R�e!H��,@�U�vj�HWKA����Z�*���$�E��4b�(WQ�'2�eP��f��D�.�e�T��9X��������\\��,5�
 ��%����L��)Z�:W���6[�"AU��Z�	^�x���g
��-�K�c��>��	�~r/�Cxs���"�y���T!F�9I�L"9��$e=yI1,�����
D2��%�$��������K�#����d�|x`%��d���qY"���(^O��"by�$�3 �)������)���d��h�xI�|@���M������!��$$ R�T�=������������.����8Q	\�*:��Kd1�DN�JX�h����x.��8�������NN�A����S�y.���y��X~2@�	f$#$`^��UM4���n/1\N�%��
0��F��I��"G��,�g�C� �~�L:�@{���c��������~�����oh�0��z�r��r��r����n���\��o^�S�k�vo�vo�vo�v�2��\�7�z�i����������������S��	]�6:�J��r�����$�pg�=q�.�5�����T���7�t�Px�U��A���c�gol�����~�[�/���]�T=�9�9��V(5��X��"�T�<� ��9*Q�������h���q��vi��d��rc��e�eo��	���m��N�q�ifl�gE��a�����g��a4�Q. {�,��e��]�oPIF�W�4
3uWX�v�vs�(��pG8��{����W*N���K��d)��,��/��p�6�x"�����S�2�'H��[��U����2�mi��-�
6Lm��E�\�<G���mH+�ibk��J
r	��t�=���M�������N�uj�eR�FT�$R�9��#���� ��a���!�A3��I�l�[8c�na�HLN���IO��.��)�Ux��KpI���1����\n�6����$r��D��Y��7�0n��Kqk���Jq��N<����hP�$������m���k����m0��q�/�u��g6���sZ�����f����o����/I��������Q���k�y��y����g��.ojb�>={��;�1=�
Q��9]�x%�jL����mY�n��n4����?�3s�!��+��~�}�D��9�/��:�^��a�k�Q|=�����e��MQ��#�����aUK>X�D[���Q������5������O�X���P�b�En�!��E:=���:oQ��.O�����E����A�U]G`�N���:Z^����n@�nV���m���)UsV�4��\2�������y0�H��v!���c�����a�����m��h�H${����rnY���X�P��S�XQ�����@�# u��������+�2��,L##g$�=�x]���}�%PTT�5R��`����_O�%i�CI7�bA���,�e�������.��YiQ����O��y��$���(�`��Ac��'��0�"�����:r�5��W��7��7���:�*{%��5�"�,�jjc����N���;����uk�M_���x�q��^�NSB�����]rn{����]O���gY�cA�%��%?IpS|�M���cW>3e�������c���5�{�Y]�����][z������aD����;��������������}������?=y��C�����"���:�j�ml��v.������f��& ��Sa�\��������k
�f3�&~��%����lg��Y���Tl��Z���1_�A�N�-�4R�S��U�d�b��02�f�� J�Q3����\��G�fiE�����gv��|{��c�{y�l<}�)����s��%l��D�'&���y��D��4�/�u�{8l���&�o��&V��)����/_���>{0�������=�����1;�����(���V��s���X�����|b�7�%��-��YM�N����$�yi������|Wc��t�����;}i<�#.���o���w���X��������J��}�:�_��b:�!c��������pi����z���c���v�1�||�p+~�}O�������@�hd5i
�-�f�t�fy�X`�p�f0����6�f�Dm���,�GE���d���vVJvO��{���c������wWT�W��v�,�)��P��|��u�k�)�B�DGr���9e��zH��U�"�e(

�a<K����&B9�)�1��>wRU_zL����o,�v��W"�%@�m�K�����+�B�e��v��~J"lS�_��.}oe���nx���C^~w�ig�y��i�F'���5��'��y���AG�?��q�8��;�W~x�������&u�}NI�����f���X����������}Gt�3q	����c0������ce����mo1Mm����I�w�����_~���Q�.T���������;��Y�\����7��3��>�m\Yu�������7D$\xS|p���,��e}C��\�Nvq/h[�`�#k���m�~{:b��k4����}���k��7���������m����K�>�.n7z�=��0�u�K��;����������A��:�w��qZ�����T�/���z>��������?l�eb�`�vy������Z+>M
���x����'��/v�ZB��_�9m��v�vl>%�>Dht���a���C�o+�S�re�x����AkL��}&{,�{���'��'<��z�K-F����/�z�i��g�c}��&���}��[@�C�I���@*hR�o;���g�Hwp�+�	S
�����KH�!�����.�Y�,���Jljc�f������ 6��
�7��1����v8�����qv��(����zaY���5���O�;�\oS����j/A����K�=��G�rB�7�������{��w���xXO{���w=r���I����o#6�����9���~�� �~����K�Uy��w�����kw���
n�3�a��U�����(�����Rsr��4*[w1��:���as�G���z�r��������=�>����Y���C�/?L�j��&���\�s]�����p���r�^�e����Rr�_��P�]�4�������}�dX�]��gt�c4��pj'�	w��C[�)��\t�|����g[�k�M}Q�,?�-���I{I>�b�m�
���U�F�~A�$���"CIq'i�8z��������!"����p�4�*!�������{)F�K�9����Q��T!m�����J5��]�_�
�y|�'���p�D� �Y�t���t�OHhHK}�����%����
2���?��0y�����5<Y���8�#k���z
zp��k��F��=���g���q�5�=��[/�b��=\:vE�c���w�}z-�V[q�����ag���?<���W���j���D_����+�]��7���������W�����O\������c����n��O���4�!������e#����*�����J�&9���bZx���������f����&�|�/|��4��u���O��6S�a���:3u���1�KG�cL���n�����g��7u�����W��;�(_D��g��s���>�g���}������[�i��=����vM�����r���x��~��e��LZ�/���i;n�;dW]N-uO.rr���f�N���mgl��|xA���A���������{
t����C�b�����f�M�C��qe�����������k��:���<.�b���N���c��*�����<���d��+����x�~�}x����#��w�v�]�}�H��]��w�(�9�#���5��7������}��(����&C�R�,���jz
�}�/sA���%��$\}��.�)-��Y"<���N�P�M��<m��~�h0!�@Bkn}�{��k��Z��R���=/�h�4�M��G�S��2wa�����t��w�u�EC�����OD\���Q�'2�%�G��!�r	o����57
����*����4������S]�e~��j�`�i��m1;��
���}�S�����c��
�l�KB��*[������;7L�����>`(�-:0�K��;~�m�&��,���:r'���g�3�\�uXY�+]�L��pb�X����w�w���qlg������]�l��>�f�h��Ii3��zVE�%�{Yot����=��)o4���<k��C�4��|~���	�������[fnr�X�6������>��&�y�;��gW����:��
�x�����u���m����6�J\;d�m��=DTX?���s�3�{�p�j�-��7��?V�5���)Oy���So>��������u���{v�Y�<���>�V��}R��[�^N_��`����gU>�X���%�=.f�Q��cVFjf���Bd�l�
���kr����'8�X��z��}����jn]�0Y�z������2�W���~��a�n�	�#�h��������a�S�G����w�%�~��G�9��!do*��+������e���[�j�b�g�d��� ���$;>�B&$���v����d)d�`��%Kf�%3�J
��}"�MG��;���*Q��@2Y�HU,V�r5dw=�D�a	�e��~z�G=�--����T�t>�p�Z��yY�r�-a�K��ZMN��sZ���5gDM���������T�
�4����T��qk���]l�rn?���#��MI���9������o������)�NW������Yya�[����G��1]��xe;b�t��)����v<2�f���F�����
�]��[������L�{���c^��*�����g����=7���~v��+���>s�%Zu�xi:�R�� ���c���,���0?n~���M��^�f?�7#<�[o�Q[^{����$d��fN��+V��Tu72^�w��Z��61�����_oO����]=�^����U��YeUn�Ns�n^}���C���?��{�y?1�N�E���3�R����H�����mnr~��y~C�t����sj�K��3_�]i�3�f���g1�c[���-r=^�l���C�����v��8���.yw0og��uO
��<}6�����K�<r�W�������e�+?��	So�,,��rnqZR�����+��
j7��c����5�+����0����x�����1���x����N�����)?�K��R���%������g���%�%Ga��:��mi�$p���`[��P{��i"�
B����&-�n������_2�����[��`�%;��w������m

��~����+�Fw���-,V*rT"en1�Enf���L�h���c_I���#v��}�A�������
�����xY?u���w�m���Jb��w��7�����']�t�Vn�I���q�c����2�(��Y�y~�����O��'G~�?��Fz.nv���}�^�x�n�k�#��7��oC�Y�1�m���Ey8��}'�MB@��;#�_s:�P��N�&"s���%+�/������F*��a��GU��������hB���I���o<�4HP����n����w��n�o��U�S�y��������������8v���[�+Ji>`{���F��R�=�j�\s��v��O�|��d��MOq@\1b[�]c��N�!a����:l�9s
;����������=���/������s�f2�~������l)|�����������j�g������{>�~a�i����}��?�����s��=?u������S�O.-������J�o�*����Nu��v����u��f�������`^S�X,7�I
����Y��'&*L^��
)�����R:`�*��(���
���K�NG>ofH������j�T[~���*��
��f#�w��2����s����������6+z�,J�Y����=�!�"�������2���f�VV�7,��/���P�"
endstream
endobj
2854 0 obj
[ 0[ 750]  3[ 278]  5[ 355]  11[ 333 333]  14[ 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278]  36[ 667 667 722 722 667 611 778]  44[ 278 500 667 556 833 722 778 667 778 722 667 611 722]  58[ 944 667 667]  66[ 556]  68[ 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556]  85[ 333 500 278 556 500 722 500 500]  135[ 350] ] 
endobj
2855 0 obj
[ 278 0 355 0 0 0 0 0 333 333 0 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 278 0 0 0 0 0 0 667 667 722 722 667 611 778 0 278 500 667 556 833 722 778 667 778 722 667 611 722 0 944 667 667 0 0 0 0 0 556 0 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 0 333 500 278 556 500 722 500 500] 
endobj
2856 0 obj
<</Filter/FlateDecode/Length 226>>
stream
x�]�Mj�0��>�������B!PR��M{�V2�F6����+�a
� ���g��{��'��l�	FO�q	+[�'O�T��6�]��l�����p�h��A��$������wJ��C�4��������qFJP����z1����`�����v����E�s�O�alp�Dc�
M��J���"�($�O��a�W���x/����-��=s�{�Pve�<e%H��	ok�!f*�KoN
endstream
endobj
2857 0 obj
<</Filter/FlateDecode/Length 6914/Length1 14180>>
stream
x��;	t��U�3�����	�F�B��[ 0����ii����� �N��M^+�������|``'��$	�lv��m��	�s�<{������X������p�yo��.��W��_����a�P&�L���gm�koM#�}0z�' ��2�d��W`l�gOD|���3eB��2|�Bk��s��t`���B9����������lZ�Bm��@Nnj#�Z�e�@dd�S�_E�{��z���+�@h��N��/����b@�H��'BM���J��co��P����Cj82���0�G�C����a>uB�Dd5s�W�w����[�2x�<��i��tB3���j��N���P3��P��f�����������#��,�D���]������#3��^3��-��b:L\���#��u^<�Y*��F�����YB�c����hKJ9��"��g��-t���K�������c��\�����ey�'
.�jA�A�.�C�7]9�.{����CwA�����4r!����!����������fg:oK��������K��jZ�T_W[S���tT�\Q���t�}�M\�x�U%��
��rs��df����X���s9:���b��?f*�o�TI�v	�����C�sqbb?E�b�s�L�t�1q����t�v1���vq����}��>16E��6��Ntl6X!v����;b�{|c��@�HZj��MN�t�#�i���������\gG�Y3���{{Gl�����K;$o�{[oG{���W���6��C�
���mb���@�"�/q�:v`2��+��v�t}o�����������[�U:&�S;zc)m���=����=�yo{{�-���^�^����+��:��t���c��&������V:�����k{������JDq��$cDL&�l� #�7����o��~0V�Xm�-��:>���C��k����������������6���sg*G�����d.����d@��Q���6T�	G���"1�#'��W����Uh��
�����Q��?��Ba.���c�#p���sG$}�R��>" q������**b+WO�����Z�o�t��u�CYb�T��{aQ_�Tn�+��t!7tb{������%G��Y�������L�N2����/���;�D9?f-��[�U���k���O���<�O�x�d.��-���������tB(��u�����1irv��.f���tu��:�
�&g_�_s��aPj��i#�����p}�J��J�JG���JN���I���n���N���Y�k�a�!�<�����1�<�����������k��f5k�Yca��5<k��h��z�/��;��A������0�����4�G�>�a���	��FJ�EF�0k�e�S�y�5O�����f=k��fk��Y���\��������������M�/A=���~�(T���������I���YL@�OW�q�0> �������na�O��Y�ZE�b�U�bk����g��fY3���T��j�����X.��u�l�]�W=��-�>��O��m�cf���B];6�VU��}4�M��#���%$�G��}_����������9����W���x��|_ �=0:NG���8-�G�Qm�����p���8;�C!�v���
}m�����
�����6d��R�ZmE���0!|�A<����LU��\O���N�2���O��j+9��SY0�
���/���gj�xp/w;���"7����� |�Lp���hz�|�"��������(�:��a�
���]sh1�1���spU�@��q'��tv��B0X�����8�w'z�	���������dP�������~�{<�u�(&��!��~��~�����x�89�����^�9���
)[��X����8�k�*��;����|�i���%��$��
�;��ABB�j�;���q���sx��}��� �p
OA��Ur�@��|��7���1��r��Sx�j�f�P,F"*E� U��
x����-��
����;��� z=�����dOt��>�,�B�j��x�>(�
����T��_���	��G�����?H����{�{���/���s��?��O�o��|����1�c�&�A�c�7Lo��9F5�c���`����"	w	_��Z�
A.����FA����}�Z�����P��?9��������q'�	���@��H\�'�S�~	d�9���Y�[�G�-r��������p��!���������#�q�p�so�����A�4>����|'��u�'�?�����n��5�����@���s�w����7���-P|���6�~�#��S�)K:�J�%��j��������i!_(�B�j��/���	o[�OY���h��,|�|���}��{�
'*�g�n��Hb�K�)
w�p'��r�����|
�2�F���������w�!6����;���Ia~�����'���V�O�!�YaT��N/��}B^o��q� �5�
}��G�;G���4�<�����3a}g@������������|��6�,Xb>���P>|�����f�v$��������aw-~�M?�_�o�Yd�����#�����B���wMu]�-���m������A�3��k:C~h�2{V�`��i@��Q+z�Un�XS�r���m�4.3;��o.,��k�����JK��#7�2'����$���@\�"���|gN_VZ�jiDbIydqevV��\q��x��?��h:�E�u��9==��5�LkvN!T��I�����t�������\���e�qc]m��(��o���������2�Ran�o1��n�G��*�������i��_c�mU��%����~uz�����=#s�������gT�������3]��P���l�x��,��ua����j�6[�����2K��
���m�~���4{sYn���ii���'�N�
��hA�t=z���jm���������h'h��=�[�h��o�k:V��g3�@]����l�'��'u�J�k�����]�����e�E�����.�����q-Y~��N�k����o<�m��9U�*uNM�L��_a���f���`�����u{8�5�XX^�|yYC=h�|X�%?����'&(���/,,,����D�on��c��R��L�A��KKk�;?�������G�����M���r7�nZT<v��kV�\���C={m�9��������Pe�G%5VtO�5l�W�^q���YW����j~����u�
~e[��'hu�m�OM������iz��j{R���{���]C���[j��~��jBEKB���������7����6���Nx b���>�R�*PDn=j��A�*KV�tT��9(=�dyEUMm]}ZiaC�����NkjYc�(,�#'��I�e�%m����56�jnIk�\���u���O�L�O�k�"Y�J[~f�"G��2��8��8���N_8G��"�c3�j���q0Z�);��������&f<b�&7y�8��,��)7�����\h�Bi����sy?���gg~�j��#�y����kRT:�����{�X������oZ1��������XW��u��&��/�<���?�F~x_qz��}�V=)�K��>Q���L���+�}�,.]2�K��d����9�����\6���wMX�������)'��$�O��@ ��;4E���JAy|��+�nF�q�QsN��4��p+��21�7�!����,�!i%�T75��q������j��
����4}�vz?>>��<������������NLLp�c�>�m�3����ub���]���]/���1o5�#y�B�;I��	7�v�t}�tp�t�b?�Y�T���J����t��Iw�+������s��R���>nr�d:����Q�DxMui�-W�n�e��Ob�)3�cZs�����O��L/�����(���T~���Y�+��
�c)>����-c��F��`~G�yTb~S�MI8f�n��[P�����k1~���<��u8��<���4TkyV�3��-o�_�M���n=Ha��e��<�S�k}E�1�I)�ae��a5����)	����^�aZ�wZ�����a+*�7����Q���� K�3�}
�>~L�4�gq*�����o:�pNq1���pJ�Z�%�/#k�W�Z�O��}F���n�*M
��M�B�&E5X%�������/��aY�#{�v�dq��B
�j&�eM�rX�^�=*viJX���rX��^��'i~�7(��_��X��\M���3R3R	�$���*A���-��g��+��=j0��k�:-�����QE�����������#JY�
��t�|k�*�n�5Y���r��
4�/Ka��q^+J�$�����d#>M6$	i��+��*�AE�������rDTD����4�s0�(%�P���L�nxUA/t8�51<���j�Lf*�����)@���X0 y�p\��j	*ca@���6�HX���C�G���y�P	5�3��8�H^��){`�����H� H!�\
�Y7��=���(G<U��a������h�������R!`cI���[�a`X	z��=~%�sGd�@n�0R%n����Ov$y�����~}�a%��*�@.�
�"��K)����	G=>���03���i��0���$��
t&Cd$�Q�a������j�
�>�3$��%)&��Q��R� �g@����=���L�pO�XDS�� ���&=�����A��D�����lC<F
#�P���4�-Q��a����h�XT�p��g8V��0?f4����T�|s���@4H�%fI������U2gX���F����s��M7Bd�,���;:�h� �=��@�O6�J� 7,��GY�*da��h��-�GF�D�Np�=����Q&k $y"�B���/G�!d�����T������f�	�f���aPVrDS<"����Q`��C���|)p��F���X���vy0���qkOM���FDw
U�5q�J-)Z��
u3	<lP!�c�-���
�,0����,!�&6�	YE��:��'P�5!�J$v��T���H$��tW��*�QgD���C��Z�9l��LP	GC!?Q(A���(d�Q��)��== v#,����(S%�_��d���#�D"��#B��$�`"L4�"M���;p&x��X�T�$U�o��(�%q6,���7���s�\Y!�71I�x�'pK�i�"^e ��YJ��J5P��.p�cj�������w��$#��q����P8����'�Cs5
�����N��3�����T� R��HB~��"�����A"���4�)��*
C\���!��`D(_�"Z���n��A���0�������^��s2��� `z��`Pjl�0]E0����4D�F����y��n�u~�I�=&��G����(
�*P��"�A�P�����*UJ���z~U�� �(Q=��9���.�im��	#��F�<��
>�u4�W�E�*�'�Aj�����="06B�
�	D8Rt����a��K�M���-����Id'�R�tK|��@���������Z����]��$nIK�_j����jA��E���k0�.�,�g�Zt�rk�������y�W�'f�O�V*�m����t����$���n�dj�Z:�����9^��=H#3X�{F=�� �?�����Js��k��X���jquCt{Z��q22kF��T=�X�fC��=X,Zq+y�UH4����4���]"q
��H%�V3fCt�!�C��
<H����0��?��O�3�����h�Gza��%,�$���d��d�j�A�U�Eq����;����?"��BL#U4�)�������+�X�������x�R������W2mI��l>�e1�P�y(�G�N�f)_��5��M*�q���t(�;R\&������d(���1Lc���[��C�6o����O����1JS�M)�u}_�����K������.,�XnP��I�Eh�#��`R���&SK(�������^��0��\���0�1r�D��b��L�Z��#������C�������v6�sY�O<���g�����
���|���W�D���G2io�r��(��!�-����2)�o5����4�qI�4�~�^I���d�	���.����tt?����]?D������^��!�2�z	�{i������z�|�n��sG�[�l��u�P^��F���x�D�1����)nrD���]r�";��D���C��i.�[0���7�Az7
�1�z�8'�_!�'��
�nqr7L��[�������|>��FX��G
� r����q��V�����T
����U^Bm���E����$=�
������l)����|����?;��'�%�Wq�S���I��J�jp��Ixh�	��4�t>.v��B4��b�FG�����!���������Q'�'�{=����Xv���d�;����2!�o
5����L�nBb������9�#�����T��,D�at�W&�_�~���3����ez#W�[[������J$�`|����������
Z�i�}'x�I�c�}�*����~�������w�
�o���-���'k��H9���������o�m�z��2���.=�%H���|�&������`�������n�Az�KW�4q^����I�S��@�=�}��4���I�De�eu�$���Z&�C�u�3J�%~[��z���_[�����-��
��*^D~���gW��K6������U����)�`�w�G��7�8=
endstream
endobj
2858 0 obj
[ 0[ 500]  132[ 747] ] 
endobj
2859 0 obj
[ 340 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 678 0 672 0 0 0 0 743 0 0 0 0 0 0 0 0 0 0 635 0 0 0 0 0 0 0 0 0 0 0 0 0 580 608 507 608 577 335 0 0 254 0 0 254 959 618 594 608 0 413 498 379 0 566 0 0 566] 
endobj
2860 0 obj
<</Filter/FlateDecode/Length 43720/Length1 222992>>
stream
x���\T�������=3����
�3�1$�(�Q��BzP��+��)�YfyILC��,�����,uk��]�cjo������:�e�ML��S
{�g�=\B�N_'����y���������0�C��A�C�A$��c��O���Cf� �a���������� ���\�3����
�Y�16������{� ����a���5/����3���0��"�����%cF�����t��w�M�o+�?i ��2o��)�e�����E;�:�������5��t����q��F}7�y���S'��4n�-#�k��X�j�������4��qU�<����#L�w��#�����1��o]P�rk
�����s�w5���_7�z�@��f�Cq�b�w��t��V�������4���3�B)����6�pB>Y��:�j��LT]~L���g^#�p�`��`u����\�����l)������+5'hOA�k�W���H,�
6�eB3I�^S�.H�v���0N�k����}a	��&!�G�Dx���BFS:��u��Ok7c��Q�*�7�x~0l�`���J�!���V�_a7d/���{W���[�4�!C;���;�DT���U�}�t��\��yp�i_CJ�8�����6�%�� Rx:��n@X�������!��_���E�I��x~��@��a�R�]-6���D���{d�Z�����o�����MdkoB������{%|/
`�f�����i�f1���aNs�N��x%���e<�&��	Xf	�*<qJ���\�>��V}�����2���"d�e��C��N��v�J.RO�/l�}(�PF�G9��NV��o��b�;Q
P���h@�����p�V�w�%z1����7~��R���2��t@F����I��N���������8��P
0���P�oI����?�{�MLO�����B�<�G�<j��V����`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0~ut�um���z��a0�pu��u��V��!w������)��
�[����r�}��=i�~��m��+�[���B$��i�ep��o���`0�?2:E������4�����~*�b�^��aHN���U���-B�K[���/.,����i���
�E������}yyuh���_,���B���<�r&��N����%��4���V�'��@�-e�<��`0�*��]�m�O�]*��`0~K�MiOZ�_*o�����������]*��`��a���`���>|�=i�~��m��+���V��w�x�qy`6��`��0��`0�pJ�I��K�m�^����:���K�3�x�~��?�~��)a��(���Z1�;�t�/�t.�����`0��`�v��{E������b��P������=���yJ�c]�7[�K��i���A��n�W����<.�Mf0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0��`0���	���;x<z�t�\������m����iS/�S�`�/i_��pal��C��J*�r��{S:9�Z�7��Fa!��y���a�q0�{|4����2�-�?"�xX�K����`�\��`�����`0�MPx/�O��"J��0L>9�����n�����AP�a"Ta�|�ZO�xW����S���m����u��������o{?���~�����_�����������������rAw���2���E�a��`[w�j�[�S�[���������mZ}[}��a�����~�U�o�l��j��zmp��j��E>����������k�X[>g�����3��N_e��|���������-e�/N����n!i!��E@��}Gp����q���+1�����r/�,��eD����A��wk�C�:|L��$��P��-�����
�CP��}:}fY��#W�����0�Z�.���(�n=#�������*���0z�}����c^�������P��/����������@�T���jM�����C�d����l�a�x����~
Lk�k,�0�~�&�n�J��*�6���`�T�p���<���:&���U�'P���2T%92���2�������o�����,�8�z���-�\��y�6��1�I���~f��|3%��0�c�	n�cf��=`�f[�����Y��`�{q���Xe�c�-�|i��3�/a��p�F�w0�s�7P=��������b���w�OZ�����=���h��{�c��:�Y�g��5�B�U�+�f�=j������LX�bO�%3�O��z��a���`�K�N�t����w\KOZ���(�)Xc��,`Y��,�e���?�����+-[��|�;p�h���V�_��m���.B�*�����&x@c=ma����-�:�}?���FkS��a�P���>A�Km�����p�m�������*���
S<+L��j�<�>f�|���r�O_5K����a�������c�������0���
	�}}B���?$��6($t��$�e|���!�eJ��P������	��NJe$���P}��jT�SE��p���1�f���7T{-�#(��lI��(O����nF�
�����M�D=�;TI��>�����S�'���*)��w�*):t������:�1���o����wQ>@=���@��E�U|�@�3U|x�������_����_�
�����8}��+���{��*t,����}�}��}��~Uh[�UI���QU�O��
����yP-"�G�w�S��<��yzf�<=Tq=�*��S-(���8�A�*"�o��*"�o�JUD�5�WE��
�����88@��:��88��8��a��8��U����5+����*�[��R�w��$�B7AH~)0l��Q#G/):����������w�@�5Wg_�3+�GF�n�����]�L�%_��SR����v�w�������t�mV��n4��uZQ#��-E�)���b��JFO_��%��*����X\���+C�$�O[�d/(���I���2X��_��� �+W��XV!uZ�������^�e��>�n�S��;��;��U!�0��TcHPPL�.�Q&FB���C���M�������#�����I�y�1�O_	�������L&H�-u��"f�)�A�D�_K�&� T��M�b�3����JOn�D����1=����U��Zl��WQ:_:4�x�!�����0�%��0�@#���m�x
Q<�1��6_^p��T�\*�R`q)z<}q�0���R���u`�&�M��JHbI�*��(�$X�����fI����������_����;�H��/�Q�J������N�+w���4o)>=}���(�b��R�LH��/���/t�uJVts%�O
�l����kr�'�h��f�KZ���Ju�'.�hT�&���ae������6O��T(�X\�����T�^������1K���8;8?XR)���J�re�fn��f�8��K���zu�V��B���������	���������u��-XS�KU,�@�U�1�E�'�>����E�E�`����%��P���M)�[R�V��J����.W
�Q�(�}f�~L�{eJ�����N�������hg=����I4��I�w�c�_�����	M��"us�3�YC��Z�D;��?��WZS��q�������������mFcMUn�K���w/vJyKJ$s��'�������m�:=y�	e�����3�nKIS���%���x\�t���O�nF�HNW5/uh��9�nS���b����U�?
�r'�)|Ib�����j-j���b������u�i��b5�����H�������M)��h�������������X���s��cue�*����
io���LI��n[�b���|����0��l)���c�V���q����>I��x�3��e��y#��������{^%�v��,�l�D�x@[��t>*��+��4��Zw+tTLh�o�����9�������b�B�:1��%�[�1�D���X�8�<P_g�bZ��C�+�5�N��*����g�����������4�3���������_�sq��[R2W�H���c��n)*�R�3��h[hW~��<�My0����{~��B��(i����X���j��|����m�4%����y;=>8���C
� �
����"���������.�����]xE(����4���'X�vN��w�
�UR%B	��P�tMq��85���a����8�m�E�eM��*�bp�����r���`-���nIL��P�+q�����Q)��~���2�h�����P^"��+�,$=����9��2�Jc�r\Xe�������H%>�h�DZ����+�==%1I�S�DJ-��z�s/&Ja���G���Rb���J��5���L*/u��P^X��&�~��j�8<u��q��9C���vCx���B���7t�
��-)Q�WBC�m�d@��Z
e��&
���w!�J��L�RC=��~�J+5i1Y
OP��A-o�OfSa�K�D�:���Z�s���YT|�3���+S<xz�N|�@IM�i9]��p%��F�~u�t��.F��!w�j0�rRA����"��t��d$���bR�n��S���o��"�C�(<<L��W�k�Dn�x�T�L!�A'���Ew"��(t�������^f2�If@���+���n�����g�:f���;�`hF�(�s��#������;"������7�?�V|�T��IS�q��H����L��~��wC%>�O���	v��	n���y{��L�^=�@�:c�Bn�q���y!7�d*n�\���	����������r������n�Y����A2������xW�������������z}�g�u�n�`Pl�������>�|kW��5(�|�ky���������z_�r�� ���y�}(�W��~+9�C(���b��[�ev����NgV��'2�����kq6}d0D��c���We�"�����x����=5_M5�;=[��7����������j�[�rw5�[�2�Z���;u�r�pDg8��n��aLw��bW���.��N�;��})>S�'��1u��p��Lf�Qf0�Z��4F �1�O��`�!�<e:o�����s�/���_�9�����
f�b����]t�����p�9*�*��!�tw�������I����lWv�lgvt�#��m��g��|6d���d��������[�[����x�P)��/�Fo#�/%+q���I�"4�Exw>�������	)�t��K|�R}����DJ��eJ�=0}������e�4�9?���m��r���2)%��o�rA%>�G�~�QR���m�MO{\0�w���w^]�)���C�����|�eU�C����s��]�������I`���xX�<AP��_�+�����P�S�V�!O�f4���u��w����K K�Y�O��
T�����o	����G�����e�����`7l�����FxH��;`T6�{uZ��Fx�b)<�P�����j[�n'�������p����p?>��K��0��dX[��
�Z�>���#r{s�(w+�j�i���n�
�OI]���	.���5*�� �����0*`"�m�w�]�{|/����c�%Z�-����uXf0M������f5D7=[�kG�	~�>���~�
e���o7�5�?�!��G��8V��W�����pL��?�hA���j!�9�@^��I>R�S�	}�uu[��D|,pn��68s�?��X�����h=��s�3v���� ��@NZW�{x�����v��������w
�uxk�
�{�7�;i
q�p�@�����mj�5+�r�de������6�1�q'7�
����55� �	�@x��D"-&j���Z�r|���:^�9�(��+I���k�[��������y7�!~�����_sg�4N]�������}����l��jN��@��D���������E!��l��(��N^��r���7���3��5O�;����=�Q���[�yd��#������ �/���'b�1'YE��������"?+�#�]�9d��Gt���-K��=7@z �[���rk�0^���zB�u�lMj}:��RSsr|�;�N�g�����5Y�����7��>o���h|�+	�
�7B��	3:A�A$Z<"yf!�	M�*��s��>�z�!�B��S��A��A�O����3���%��s_kN4<������Dx
G2	
�I"c�o�#��-�[�l��7�����8�6�q�##�qw����N��3��(�b�JUU��U��{Bbw�;=�{��N�II��y��Q�$�{T���s��[(����$�G��$K{^&)g"^�O�}�������+�}��'��w��;��td��������jOFTn~����2�����/,������d��j��\g��A\a���1���h���&u����NOO��?B;�+�"�n�fwQ�$P�Q{O���=�����E��c�=������=D� o-���������$����������{Z��A[���v����p����-�=���k ��&j��l���H.l���s5�K&]���T1E��&j�rA��x=	�%Wpw�;��0��^~�`������X9w�.�o���q�Z+�����%~v��>�%�p����?��w��@T��"jufW���r�xX�X�k�w��QT�u��Rw
�<�<l������Z���In||�n���{_���s��1$�8��\3j�='�;�����7��^�$8��f3�nExdt�[������i^������M����������������=�����'���	���~��<l��k�E���2��|��;��_,��-GF �XD~���kT ��a#�L��8�2_�n������7����F��p���p������7W=O��'�WI�w�����{��Ow��D��hx���(�~�7��~w�K�8'x$�b�A��Z;	���2��z=��a���G����Z�����i<�Z��p;�)AC��.�(�hd��S�p�ii��C�GL���8{�{YC�����G�t.����A�C�?��/E#-���&�C$��(�W�������
���v����F�i�a�r�D<�a��(+V1>~2R�0���h
8�.�*��h�QN�yE���d��f0�]��%�l�vu��ANOG{�����G����[����<!/5n���gp�b�=�E����J���3�yg?���9+�����Ln���f.o�"T.zb�.yX�K�N(@�,������Za�� �}�QW�}�v���M�o�z�C(��/x�<�o�����/
��������0�7�����Z�l��H=n�h�|��������R]N���6np�������++z�QIz�Q�^B���-�����_��w�:y�-����&y��[
����&��pN���4�������E��M]������:�f��V�}l7��^rG�p������[y;?�qR�O��<�����R"�0��y�
���@g�#��='�L�XNcz:.eh.���l��>��^�i�P�eKX�}Y�QZ���'�h���?�3�#��u���L�]k5�"�8�v{���d���tIm�(���S�G���P~=��p�j6qQQ���H>?�[�_I��[����9������g.��z���9��J)�Z�-�v������W����q];����e�s��\�f+���@�Q����&�U4�"���j�O=�{Z����F���B�4}E��m��$��w�V�D��V1x`�xk$��MYFr�=���>1����JoZ7�����&_:u��_i��RB��n����^"7��B���Be�_��T�x\E�-Xw
&�	�R��R-mS�7N|�
9�%2�L*���!d5l�G�u�VM�A�
q�H�-_�$N��VN�xq��D4&��DWs\�(=_������y?���&{gV�Q�����9�l`�"$YOm���)����U�f�+���5x��;�����w����NP-��@��������t�,&����Xt�jSD���7iR�E����L=�4��us�����q��\�m�	��M"�DG�������e"�v!
��>�'����\���h=�������j�������t��Q\�Y�����
������Wy�V~������n����@^-k�y2?�e��F>$��gI&~����Yr2D<��#�����H��G�/�s��N���(������#�I~v�������2Y~Z�:94���8�W�5N�cm�h�
��Uv��������p�%6�Qm��g�������C���oL�����k9�Al��(�I�4T�8M����!��!�w)=����S2�����R�4�=�|i*I����v {m>���]fJ���N1P�����+��LNN�Z���j���7�4uJ9�h���W]��'z��<�^'D^����/���O���kM���J�}2y�:C�~�e2�t��om\s�:+�ssbg�{ZWuG�;���)o��AZ��>���d��Mci�L�tI�D�]�^�=�����l	��j��WCw��@������(�uT�#��R��h�x������CO�?i�K��7�-�����c�[r��8������#�t�����4�&���l����>v;J�k2\������[r��K���>���V��	�Q��5b�Y��(�G�*W���M9��?���7����M�7�����������2���d�<ovc�U��������vQ�)`����i'��3�B��My�00���H#Z����P_i��'dM4k���!7����O;}6"M>�S~[�J��U��-9W~��s��M'����r�
+��N�%���9�4:
�q������������A��A����.��T=��Z�N�L���w�D�����
�o~��|~	�[B��mx�~���_Pn�W���`0���F��"D�G����k4:<�9���z�ni�J��6�_�����/`���8�����d����)�i��a1?������2l=G������'We���y����{Y����><pE�DTT�N�*�P���o<SQ�+2##4�#1����w�g���������y������aw���<���f~�3S���"���/�5����0��}��S"�6��:�m����e���A��= $)����,>,48�{����_�]x�������`#��&J=�7��xO
���w%��������Z�hK��))������y/mZ�����`��gn�����(H
sFz+i��T6�`�_�����r��=�%B5`���"�H��B�����BJw�D�����4�Nj���52;J��p o���w�������k^O��29l���,��`��!\
��������V_��	
|i��$x%��6��5/n����|�� ���,/�iW�������X:V��%r�]2��Q�B��C�I��� I���H�}d��L����o}�9�k6|��$��(�*yf���7�z�B�.��W�P���Y������ND�g�G��"e�-�O;h����ZT���H4c���Q�d��-i�������&D�g�^����:y�7�|!�o������o��?yv��/A����r��������%jZK-�JoS�\K�}�J���.�.t;�$2
�Qb),&����9/���w���JO���/-]�s[�[���S|���M�y��	�'�{�xBxm��3��'���Y��5��v+`����
���|�������kr�@_��0�G�����j�R���u�v�P</�����l?��������nlh�W������u�.`��O�����N���7]]�����vq���)�Da���g��A��\��\�F)S	*�F�TzF���i)���T^�3�8l�� -������"G(v���IR\���|�gg��T������+�V*��#xK����]�c��>c�"�Cx�x,�3);:Q��{.f��G�F�i�1�6�~�E�����s�(�F%��C"���]�(�b��aNs	;�+^m ��^N���2HG���s��.�9��IU ����8����+U?�E�!�\�,6���l�"����l&�.��G�jQ� �z�������J��i2$J5;^`�c�!H%����;}��)�T�=X��g��m�G[�����ftK��b+���~���@��4a�n�+��u�����5�������N�T�����hf�Z&W��������Z�����=���A<,s	T]�oI�;�@��
(��_���#��|��G�+��,;�h�h�\g�&q��m��<F�Y��D� ��?�I@��-x`��o���7?~b��_>�
pk�/6�w�h�C���PVX�V����(��ND��XZbUF+�*J��;o��Z�=��Z��L���| {_5,�T�m�u����C/,�������a���@��4"����jj�nN3%*yA! 7���<��Rk�Z):������X����`�D
c����q*C�_r��M�\��3�C�p-_3����/�;#(u������������V2g��"e�F�h���������H������'�6(0,I*I��D0��p����l.�p�Bx����"eg>�g�}q&�����_�5kRNt���'=�����O�
�����F�.l�������k�3X�d(o���f�����0+��{�,�����U��4DNLU�"�z�);��X��I��(��<��=��4>��xS�uU��!C����-���N���s���$�n?��:1�
q�4�8���
��-��8#>BQ�'cP�~�6>���=t;��k?���!H;�l�4��@��8�fy��2Fo<�����y�3BR��.�y�����`v���l�����\�����7����jCy36#��//�	�3s
�WrJ3���z�I��������h���Rl���C���g ���^���0'��!����"�@5�K����bU��1D�GbP��.�@����;�@iu5%y.�E�1��P0rI~/�J���EQ��j2�������Tr�X��5��7�n�K���t��=���u��J�o���E�
00�%�l�r*xy�>ep�}�DH�,
��R--�k-}�<�F�Qb���� ���E�^��v������i���*��.:C�V��&��,���Yb(��+��2Pf(6j�:i7q$F%>��a8:�=~�����������%w��� �U��^��S����_s�I��F��S'�'�H*(����,�~��]X.��x_��
G��VDDvc�v���C�R)�er�\�T ��1��S������HdloU�Z��(���h�o��+����uT��D��
�[U�/��+����Sg%'z"#��q���jN�;X�	���!�F��p���� Q��|��2��]|�����
�cb���� �[Ag���������`t�������w����32���Y����R������yJ<�(�%��%R6�������a��sk���9	n}>��e0b���t?�\��A+�@+k)+��Ng�B�U��JW-����R�m��j��_������]>F}
z���S�u�8�=7��3�v�~���x�������@$��]�V����[�JYz��.�/��X>�|�#v8�9��A���=��I���9&���oYX����D�0Kh/����� uF�R���D���G<U-$��Evl���a���J��+o�����75c�� 	�����_n���|��+BIN�)?�V�pQ�P������Hm(�(B�z/�=��^R�$V�r8qc	�
���^�o6�����w���f�?�R2��� /q�4��Ip%��*0J��Wl�����L��N����Z�<��Isg����E��B��Y���%���K8N%2��P���7
�����36�N�yj����!z��H�0�K��/�i<36�c�^L�S�s2$��h�F����W-�+H��Z�
U��UU��*z�� {��6�9:�]d~7��=�\A�2%G+�b#��U$`m@!�Y�,VP�b8�tA	v��������6WT�b���wz���y9|K���%��v��cd	�H4V�*��K����=�����j����9��������2
��6���,%��P���
��*�e.�r�k�,���������������y��X�S/�����x�*%����x �KS#H/��'���;��o��]]�O�>��\�X�!��,���K��d��n�����w�1!}B<MW�[�<�L�z���?g?���7>��L	 1�ax���f+�����W���J�<��v������Uae	#��
�hR��t[o�M
����L���*\�h�?4�����^��h����_�+�a��Ey��8+9/>1���xT]��SE��
�����T|�tq�JVG�-�4�U���8�-���B���G^+^[~�:���{]si���t�cXk� �JE�D�9C�� yZ��?(�%��fK��z�
j5��AB(��c_�pNN&N��N�]Q���`]��� ��)MY�y���������C>���l\U\Ud;�������E9C&��c�;�m�7vgd`��������A'��x��p+��9�T�o�'blf��C�����`���|��(B�`����G���Y���d��N�q�F���=�s�y���9��CV����b�`eh�4���t�+0�FF�<'`�r"]
IH�b!�"����
Z�O���}��������P�O@��J�	?�	�s���iM�=_�t{�'�b�w�y	�����-���%�O�C�*O�425G=n��������������h�9��U��r�C9�B!�5�8GC�#����37�������M<x�����z�����8e�|��rM(�r*�*�JF����`7��tD.0,T'&���y�hi�d�����p���g-�=;���q{�[n)���6X�5���P^Z���*.��q��|$�V�K@+r
(x���pZ�H.:����z<qT�@����K�<�X4��09,G+0�$�y$g
�a�g1���������������U��4��u�mF�3�j��F�I(es����(>~5VB1+t F\}$�b�H�>TRb'��������~���������>���z���;�;N.�R�`P���V<�{����'N���"
<�(w�����O���y(��:3�]�o�P	N#��T�����Q-��b���[n���4uF���
�d}J#�r�PD{O�
�I�!�*�/��/�Kq���k�����z�������[����L,���p��=���)5e���y���}��/��r�)�����/����el���_��V�Z9��Dz�b��F��LH�F,�$�O$��^��� �%B�d�sg�g��}j�s>��}��1C�|<} =�8T�=�r����]�����w;/X�On):����A(�SeT�^o6E��U���<�����EG:<�����O��k�a�:��?�����^��d�[	�������g3��f	A����dl6�F'�P�yI�Q����:��(�8Z��M
��:bO&�������N��|���IeeY������;J�/��W����=?�9���qh��h�&��(��|���j}�(�:��{�
�����j�m��D��Z�^����|���O_{:���`��k��R�����G�VM�Y|����n����+E����9�;��9J����\T
���i�G71���*Q���-�S���	��ax�|�&����[�u����n�(0�q%�����z������K\���FO��W��mU@v�P��,tZ�]����h�.��������@� ���J�B��h����hT�:=r*y^�fxy�T�V6�k=TL�x�x�*Y�+e��&�`i��a{��F���M�5'`��'�h�HV�k9s�'*������lY��2��e�|v%����JPg��D2����b	b��GzLHZ�w�[Pn��#G�����������s�n����o��F�U�hJ[� S����� �ilX-�R
��a_zf/|����*� l���U�@g�}%�^��7t���aS�K�l�*05X�2��Y4���K&��In�Q�n�������3c3$2�O=^�j��#+�T�y�r�����n���o��Cx���e��gp2������s�=���4T�	�������9N��J���K ���e���1��Q�����{2qs�T����;zTA�����v*������P_�m����������W�����6$����;:S�8�S�����G�
�g��<q���g/<��Z���9���ASd�7����gM8]8wrfh��������G��������@�H�r~�|���K��i��2�}�����H�L�Fp�jG0;�N�e+����p�-jOf6����t�V������r��!h�4�v
���<���������������JL_������3�<��0�-W��4�	�X��������h��'*a^5���?~�I��L6����L Fx@y�x�8|/���"�"���K"�0w=��ZZ�B�9%rw������@Q�a2�����cD#�`9�^�$����Fv��h�� 4�-zW��D���4��^!7���cd�G�U�����t���o��}��E#��d�����$��y������F�W���(C�5D�D�#�^���<F#�v�4��!��F��P������]�,1h�O��#�:���|r2��K��y3)I����;INm4=��v�
��l�&#�-�s�r/���<(��
"��H#hfid�>�����j���E-p*�L��E�eDa��2fh��*mPFJR�5N]HHdFB@XtJ��Z�U�V���b��3�jY�
}��lMlqNr�d�4�����)���������}��Fx������4l��0���PZV�~��q����S���p�dgO�������=���|"�{a	:�L�w*4���;����-o�'�7#>>2�&:�6���"U��,�(�b��h�!Vre�$wB����!q�������5����/���r�Q�5tjdel`�hmy�����"'��eJ�9��X�b����63�~���u��1���+7�~�G�)��7�D�sFh"56m�R�M�u�	������%�*������\
x��������1�q��g������w��T�N<:y�#��/��1u�������O������
��L	�g�Lxs��E���;sM�]c������j��w�K^c�a^�������(������Rj*��G
�q��MHH��L�I�}E�L��[!A�bx8Uk�*cL���UF����g���OwF�l}���R��,��~��`G��=O&OH�Ey�<����1�����a�I�����X������RT��#|��l����dOc�
����[�_}����w�#kh��Gb�����G���/�8�������������/��y�)�D=�e;8w����G����#��z?�oX������?���MnN��vW	�&c�h�LW�.|�3��4��[�4���O�pj����#z�'��k���Lu"�.v���1���2��
�KOQ`R���������D'���,)�����������{[:�P�+������[�=,'��WPX62��k�GN��'���?2���TW���v�Q)�M}���u�m�R����1��$b��q�!�^N��M�1����a!�f�}�����gU/�2��c�M>���*c�P�TOj�S'�l����O���������Hk�#"E���xGw�I��z�G�H#������'�a�9&��P��������o������g/8}�����S��������"(j�������GOc����'2C����
��3�������������������7N	���7R�
G����tj�Sz	}{&��v���{g80�N8��d3��}�^���"���bj������BH[V`�U��^8���f�JpL�p�[���y�>E�N}�6�z{maE��=�O���~��>�:g�{n?�:��l�����e����:K�^A���"�jfr�]�7�O?���]�q>�&c�W�M\�����kUxhF7�t����^Uc!�������5�<U�6s�k��nF����9���S#+�%�e���q���D�i�L=�z�����+w=4�h���A3�������%F���Gx����8>�}c��"x����Q�rK8�[E�RY�\�1�G?�'�;�Vp`F�F�0*�7������)��������5�S��,���{�������pKJ�=�E�nL���L�����d�MQ����~�N��@��^}}��L��3%�^w�Uzo|i��
�^4 ����p�������{U�)��}cZ��\rs����<��.��x>��T�""��]����I��t
��LZ96@������5 ���)��?��&#y�s�N�Kz�����>�
 ���AL?�����w ;}(~Y�~�5|����S��:5c�����8��������
�9]��n�g������i�W_��3Z��|������8}��v}�%��w�&��T�����A���������}G���:Tq};�X��������D���A��D�H&�����J���B��bX�gi����wvdZ/{��)s�������9S�d�{�E�*M���|��>0������o>sq��wk�i���ks����?�I���co�z�����������$��7�.^���G?���_����'~�k��{9*>�K��dL�����Qg:���t�/��iK�wI��+�$��������8a�Q'�t[�K�:�w���:2���~���{ ��[V��l��UT����^���`i�����.�~��.H����[�'p U�nl+��e=rf>vo�~�7��2Z�����4�!`,�t���qHmS�<u�D�N��$\�O&5�$O�H����R �`�p�O>s{��m����G��7)g���J\�$ 5;#���mU�d����O�����q]A��]��?��`u�����KR�w���k�Pu��ve�rR�����]{�=-�^�l-;q����[���ywY��%EM�1�����-X�����[3���G�q��=z����i���r�X';}���vM	LY~�:����H�9��
.9����IE����m��Ma�;#��x4�~\0��S��k;a�3���nX��A~�m�h5{��F��������Woh�;�.��i1��6�_��Z�t@&��M%9
���T�wH��B���jMR�X������8pf�h->v��7���(a'�|�1������L*1���@��m�����60K��^�<^�<����V��85Qo����@%HJ���^������Q��1�����pS��z�� C������H�M�
!G���3�������oaI%�rZ�i���5])7�id�B�o����7r\'��E�%�CS)b�Wk*��qA��\
!g�OG�!y��T �7<�w�-��~"��0{������<`�n`����y�=�N~)u�J7M'W����b~��l�N����S*���J{w�Xx�=������DI�X�Gp���,�3(�~P�<V�i��C�N��7f
����]t��~#��,���x��s�U��5������`��Ox���?��bI��)%rF�B'���j�bA�x�������[��u���k.�z]9��g���wee�����&������������N8���i�f�/���[�w��;M��=�?����%���"AMG������_h������l����W_������$��O{�� �/�2fr��[�mn����zL�	��4T ���=m� �I�����^q��Np���B�cm�C�]x0��*{`%Y"5x������F����wv�!��4��#s�����R��L���<4~hD|��>�M�"Bj�Ym����O�������!��>Z��_V����x��
Yu-�#Crm�}����;�����:x=_��d��?�z]i� _����{���[X��������40ST*bJ�^��^6�c�G6��
5J����]\x����/:��\2V�����a�=rCF&O���u60�v�� x9FIl����y��^N�3��l7���z�+�e�����c9��*��t��j�o.�.7������K�����e��E����7`�;�U������ ����
�����CL�������]k1�_�iJG�(/*�)*J�Ea0�����pB&��Z+BB|�q����[D���
�WT�]s�u����p��;��)����vv��*�A�|/T���#gPs�6�*Z���#���}���MS�d����^5��.^U�Sd�E�kc&�5���V��i4N�IJr��'�K�������L&!	�B���A�.QQ��{])�*�*���/� Jq��Z�V��+Z�Yo{k����z��������?g&		����s��}�y��U�O�w�O/	l�
��v��!�6�"��8�gTp�V�0���S7['���4�����B]o��g'��56-c��5�0C��^����4�]�F�waw�V���|�������0�m3^�XU�%��289��^�'r�{#����.1�L�e���s��h6����;��|�&���y�65��N1����\?D��K�'O�t.646"&��N����i������b_2�O8���������|�Ur�"60&Xn��5�������]�{v�wtt���N�m�=1,�'��\^8����a��_,v�X�8��8Jl���j<�T
�����������Z.����|T��K�8��*#����c�7n����<�E�DY�R��w������}��O��K<1��E,���i���6�W���C��>����#������y	��r�w�0.��D�'�%E�HMKKO� 'CD�'�5��3LH���Pfe����R9��Y.x��]���=~�9BU���x�M��w�_>SP"zQ��"c2�O#���
I�O7��x\G:�|�3S��S1h"�<'#q�?V��EX���FMXx���[0eKJrbpp|_
d��Zrg���� ��l�m���a��s�J�#;���Y�rl���^*�u���]�r_R�������/O;��_�Z��37�{w��^��(������?<�,��������z9�WT6����#!�������i�����>\���:x{�g���#^{r��
y4
H�G�����M�V�g��!uw�����O����b~����l�$I�y0��N���9����~��K�a��3[?��z���y2���h����8���<���q�M���Np��^r���O��R !�-x�@��D��
�{s��& ,�1B�3"_��Lq�XK����'5�7@}�&(Y�~����������e�C���}�l�/~��Ux�g�$��o�Q����-��%x03��p�k��^����Fj���/�3�Js���9�
<��$�5T�b��* Dj(���N�3�3�8�W-�>x���S���7���1l��d���XE��Fc���(����zd�"{g�Dv���n�=�,���w�|���uK]��;%>V��<��/���M����q�I����o��s3'w����5(�^���6�?������O`AIo5s��fBc� �*�{�/\Q�?X����_p���l$C��K��u�����~������k-�'���$�Q�!i{k�KYkK���5�3q�v��/9������<�BR�$x{^�X��"��`4|��p�:��C1����Hv���P}�G+'r�1�*����j[F����l��C;�1��r�1������f �4PF��u���i���f�2��%�P�����H
L��VjT��tm=������2�
���w59'���z���i�����#��/,�Z-�KhB`�/K^���jv~E(��AD-�({
h������?�
�k��r��1�G'��s-�����'v���o����
�I����U[�^ZZ�8T�3TnG��TD�����&�R���O]{)������l��`0b��=�I�A��+���*�z���]��)\yL���M���C��1�ho$K^"�X�y��!�Y������l���n���x�c��G���(3i��x�>Q\<k�;�V��O1��j_�G��o&���6#�`���rv�%� ��h����<�]��L������h6�y!V9k�E�^/V�	�F�Y���xZn}�3rz�������02����K��A����7�����)��,M]J�8��N7��{
�g!!O��(	y-����Q�����N���'y�}���� O���/�FV��� X	,c%B�$P��T-U#�9j�Y�"2�*��k��
���N���_Q�>��f}���l�l��'����?��y�0j��I'��?��,�\����uH���������q3�j�z�b,7y��6�#kls��]D.Aj��O������I��RW���h&AZ�r��5����&���T;~�;��f�?���8��'�FP���6#��mV����n�6�-K���F
	�J�4��My��S�h6���T��.;p~��������]�	;s2k�������D?�J�-����tX���TD����X��Huq�cN��8��]F��32�V��i�+���`�)j���+g��f��^<PO�s���a���"w���kp����"I�����W��.����{xs�o�c�2D���<���;���h��l�'\y^���>�y�$��,����w�26:!���"����F� ���G��w����������18�������_�as3����I�+�m�XZ�h�j:����r�X�|lS�gli���+d}Z��$<1yu�rX���`����V}������leB4d������ ~�
���["vG��J��{�9��!�]���j�����G����{���)9E?<Z��1��U�	�{�W5��D��#%w���`���+�|�ZT]b��]��Wt%�f�^,��+��6�}��y�<�w�	�H�
�>i����P���F�]��g��+q_�����0��Id���
�VL��.!G�������=E��{��j�a��m���B����E���5*w��n6n��h�#(����p�I�|��P�b���6���Z<Z��u����ic�N*��1tR��z�I�#0J�~��h���K���;���F�n,�p�ug�0����?�/zDU��2G�3�=�<_O����/���7-��\67���!9�O{�)3��&���������4z ������6��\3����Wj4��d��j�ZB.gD|-e&Xpl�*��;]�?��wF�v���t�U���y��&���TbJ������m�V3��KK0���%
c�3�aU���Z�V ���ST���(��mt�Q�=������f#l�=f:�H�E�����H����H�x���
4{����[s��2j6��E�,�z�X���f��_�Z�B!��R�\����������[Yb�e�5P���1�7����	u�����O���c��dt�X���c|#o�K��D����>v��j�X
�9D/t��PJeX�8������E,�-J�AO�aI��I�Z��-Uq���W��$��Oo/!���V�$����QE�=c�}��C*ap��{G,��esD��Xl�h�f�^#�*�cW�z���hs��_���)�������	����S�h�F
��s����;���H�\�n7Rl���F��}��Fj&o;SL�c����KP�kX��&�<�x7�����==%$�W���5�mQ3��_������t�����X��gB_8Zl��EeN�W���f����[?-^D���@��.V���[����.�(^	�O�_�$���F�,�N�X�O���.V|����b�Y��_���>}�=���-�#��X"��TDDw1���N]���OT�,��f����G eT��h�n�cS�p����5���/X�H>�m�}��^V�����X�����!���[�L�X�z�Z,��/�[��?kl���&�/���t)������A��`������9u7*T���/�?L�<}L��^X~����H�~���P~���"��Rt���2�W����hD��h��~j4O����6[��s���(�����	�,�}������nUt��@������I�0�0�	�B�yvL�y+f�����Y`��_���L�����^V���b�x
�t�R�~��v���I���^�y�'2���}�������_c����q�U����o��y���T�� p��%H������>�s�V�b����}�r������Q����e�~�6�������@"��N����B�Q|��1�� E�����5R??m���AEP�������b]����c�������b�@9�q|D�J����k��Z��*�r*���0��%?{���t�	��#�G�����#m���p��;R�@z���HQP�=~AE��$�dA��Wy�l+��~��5�<���R	rA.����B!�i�n�*TJe�\��������r�]�AB�d�V��1�b'��+7�A���8:�$�,�n���r�3�r���dV-�n(���<u2��.��h���P�e�����Zl
�/��������{_�L�]�)�A���g���-���aZa�������:b6#��^��R��5n�)�6����� 7w�����-���p��WN���n/g�}����!�3�YX�$V��y����t>bi����]$��)����'��qe�S�91�3��y�e�u[x�[���%&=X��6�G��������T���\�G��1��Z������?_������0�<t&#���V��A$�z�������(_�7e	
5Z\��^!�x���<�����6��������b�jr��u[w�/��_��}���i�Z��R>�����gX��}���}�|��Y��:,�j�HD�V�X �KR��z's�f�2" �7�%s�Xp���h<'�MI��&��:���4#t<�����f\���� .������\����J�V_v1�����E�kd��2�Q�����2AM
�c��.������iB�B)�[Cz���&������Q��L�ee�_�D��*:,�gj�b�F�]�N/���d�F{W���R)O�u1�\��S.b9�n�s��RD{��,�V%�r�6Pd
K�L��������Y���%k��;�(/�o(��NK��N	����]���m9����u���)����	Hz�"�Q�W�lL��(
��S�6_r��v�������Mo6����hBr;��w������V�Z�Gg� �3�
��.C�U�0���@]�3�13\y�R��%{�?���/��w�����de���\^o��)�<��)����E���8&5��R��QH�/���4)l����Q���m��0��J�M����������K�3+��JJ���=1
d�o�s�KP3��C��(�
K����r
����'�!!��B����	��3��d�A��*�]����v ��B�-��{�]���d���P�>V���m;�EEX�qLB�X�7��������l���[�7�h����]���l#��X���-'O�Rs�D�g��F�a=�����j����{�9�_���U�Y����-\��O���O/<��k��,*o�.���Vv�����:��J�A-�5�)�5������qi��^�}����M�
�$�_3�lQ�_:��n��dL�x�������l���8�q�2x�.d����	JOjd2��E��E��4�\o[�W����}@
�d\��C��rj�m.�VvV.f���iF.�����3jh��y���TE5<X	$@B�����`&����\e���V?	�N�UEhF�d�I��#�U*I`��X8[�����}�d�F��K�'5�P��;C>n��o"��'��s�[{��f�s�v�UD6h���L�z���]Bn��;�v=g@��U{�����������k�f�[4�����H%��.�
�wV�`����Yo�f���%Y3Ef`�0�8�l"��j�2��G	#� ��j���`���mN��6��+��//'��e���d��z5�������!&�D0���|@�yB�'�"Z�i4� ��>������������g@9��
������A�v�x��c�&75M�Sm9��vi�����b���&l�I��i�v�k{��F��,s������z��������w��oJ�u�QxoAN��k�����ggoJ�
��;_��2+�vW��1+Q�bm�2)}��+������#e���	E����@�EJ�+�+U{Q�
_���M`�X�.�9n�R[��.;��F���q]�����[Bo���=�-kV�����7�,)�����K~�i���T�+�L/mP�$>�~����������y��b�hU���e*�Ld�Q��Gn�V����wc���l�������S���YV{D0;����u����`��������l�$P��dL(^w���C6����V� �J�Si$� �:w��L��X�\��Z��g�-�Z�������Z�����t�Y7�����Kr�)��"0D9��!X.����!z��O�<�qO�tc��J��kj��9���~�����o
�3��� L���]��y������#^�p�����dU���r_��,7zQ&#+�.����V�l���b�Rf�G>���=�������_.�(t�F��\���n��&N�p����|�$o��@Vv���l���Gi��)���R�t�
"�#.����jq���/Mj�K+��&I���fd��74xB����Yk��p�MI>����FI)�q��Y^����"�m��	S�a�$�Z�������\�r��uuO�MM��5���Q"��2��r����Vo
��?5��I�Z}"��P��T������P�Yk���o�)�ha��s�6�����������/�|l������)m-�<5� k�!2	�.]:-�)����R������i��V@��*��*
���r�Z��j��0� '���z��_�a������S�Z���L:>a���V��d�"-���4�@�4P����N]IN���-��)k�taQ�7W/-����i�D�b����3d��
�zz�M*m�Y)�*�fSP�F�z�Uw��3����g���j��e��SYXP��g������:|v�1m��n -v�������w���"��X�Z�F�o�t�87.z`������jk��{�i	���g�F��M�����Jt�F��h#����*�#��_a����dR���`���K����7��t�fZ���s�t��ZRu��������-b_�������I#�^M�h������W������(���tz��Z"3
�V�#"��""�I���	��hyU����� hD+=qX������}��w��Wm��e2o��E����=�z���+�h���o������E��u/%��Wp{)x�����[���g���o\o����rrF�I��]�����U��T-� #"U2m��}/.�Pz���t&]�������������c�y�>u�:�k'�.0P��(:=7
��fR��r�8q�����
_���)��d�x*��������Ps��R��-������U�����?�����U�����T��T�$
�D�V�0���G5$����?�4���H��������mw-��B-��%*�Z�}��������1�������w�!�@H+���z2��xj��(9�i�q�g��Z�A�������qr��d<����d��'����������/��}a�^���I����:h�����V\������+H�5%u�Y�a�������&eb��]���df��&�=����	��C��
�*��P�Z�F��O���6�o0�=6�5�F��x����sg��q�
?��������5@�-l��9�o./
�^XT&(�V���b&��iL5x�<��H������E���I�s��}v����1D#���v�	�� ��l|�\�1H����r�-8���k��6( �����w��K�}���i��U�uhU�p�������v A�#f�~�7�����&E���������8�G�?�����_aJP� D���Gq�F��!
��gH���
�2���"�?5�QL��.�0��0��Ue�~Q�G�I>2yU�"�N������>049�������\�E�iL��F+	4hU�u�o��AZ����e�����
�\��V��yr�����|�������m���,�:���w
N"����&<6J����_6lm� 1��FD��V�����\*�z�
��C����3�Nj7�s��xJ�l='�slS����,De��~PT\�_���Y[�?����&����as*F���GW/�>�fl-p�<u��G�f���\T���
���V��-7�����vp��mf*P�_K�O�G
d�K��s�M?R��@0D�X��Yw
�3M�U�s���HD"��9���-��`�e�v���y�ny�����[[P-v�r�^|>�[��KFo�N�p�7���qm���`�1����v��n�N�51����n�.��
6��J�;F�;=��Z���]�Hf�v������9o��m�^+9��X�e:����Cr�m���6x�m�y���x������&Q����fD*�?���z��T�V�������t��Q�����=8<�h������`�BWE��\+T�=����zDm�U"Ia���Q��~-��FG�kcI�9a ����g����9Y�~��u�bVHw�:0
����R�?,.��o���.oz�L[��*W���A�N��tqJ#O�n�,-LU{9R��~[�4g��!)��B��/)����tj>��{���o�_��?\F��(�/z��.KP,���8<��=���
���9N|���Wm()9��kW��?��|�
i��������R8?'�� Y� v<�wppHJ �v�Ku,W�l>�d�|�f�W������z-�t����++o�m���l@}��L>����A��u?��2���U=z��u1.8h�)�`�1���]s�z5�_���o7��>=�IT�������[AoxU��c���A��~-4l*���b����
3HR%�Zg	����B���=�fo�sd��EY�����i�g6-�6����fy����v#$�E">���Xn'���c�m?�����@�c'^�S3����F��z�=��IA�Z���0��1�H/�D����4���\2s�~��m���"��E��er���$�m�ak����[[�6��������b�$Wd���d��� �#=<�&��|5�.�5i��ss�����*��'�|zv^n����vJ#�����o��=�@�9�y�b���_�7O�<����t������P
�@!�J��9�;Wn�QVFf���@
���c�Yhk<�-F1�
����&E<-|�H�����f�q���hK�������5�a���`4]�?N�O3�D��i#}�6�<��"Y�9����S�q���6���
����>��F+���@z���Q�N�[��o�'9���]�f]t3�������U�I��)Ba��������`��E� ��U7!L��;?{��*6����{��\z��>���e�d[�$�3��G�2�������A�����y���UA�9'����������#3�=G}��T�@��s�@3.�q~1��Tih/������Ze��{�����;��l���#�L]��aI��/Z����sg�����Qa��3E�A"���NMK�f�7��v���`X�M�`"��9��	G������2�PL�Z�O�$R��1��-+��_�w-�?���+���|�r��eV��Y���,��R��\�a���b��!q��@��Hd����6YG���y_������D��[�lE��
b����[���u�����;�������(���r�0�������x�p�us���o\�5��&\�kD�Z����HD_%? �En�#r�������0a��l���6\��w����[����^��};���������h
���u^�������c�,|ytu���f��PlaU��
�B����B�P�HT�=-�4
<���� nyH�����`(<2o�9�����'�Y�u��
.�j���r�t�5~�B���R�R���|�<�d'�����8��Ev��kS���R������/7�t��b����(��aW`��x�����Km<��M6�"�����D�O��x2?��X(2�?��;��k��9���d@X	$��LqO�RD��Gq��Q���uk��V[q����z�j�k[m�U{�C{�����B���'@V����x��I����|�y?�|<]Q�
��He�r����Z������3�+�5ys��@D�Er��f����A������s� '������u�������#$E#��F$�K��V�@$�1z�u�th���[*+��>32�,A#�C.8=z�{�.mw���yiB�+)�S�!Y��%5����K��>TSo���Ap�PYdg����zq��7>�3���$�	������X�l�?��=X��u�)/�Vh@1K�@/~�58��_0:
I��Y�Q�q�j@F0I�^�9o���%O����p�����(h��c�Csd�x���e���<?	J�/[�R�����p�@�T�����v���C����}��[��v�q�u�����6�<9U���D4����J%��C,l��C��B�	HC��i����#e���9m�w�^�b�����n�{ ���3�'��8<����&D��9��L:�9x��wP���`^u���\�7����J-�R��J�JD�Z��I@���.���]������>�l��OL��"�#"F�i�����G�9��[�=*�O3���BQ�yB<6�9�}�������r���L�+���6�����Pl1:�$�I�b�#`�=�=��r`���-�������Rkp!��4��p�fzy
_��r1+C!+f�2���d��,7�Sr8gx��,"e����HKM��0�[��W\BU.�<�����$�;m�`6tG��[�0GO#��oW�Z<kJ�W�"������� �`j7�+"����2m���,)����G>�NsG�����-GT�9�� Y�	$�L���,��K�u�.�yd��������Mr���c^�������P�B	%b�B��+�y���"��cn7���S��T���������M�q���kj�GA�g�Sj�����h�M���[zr�"�����~l�?�fn_�����K�xp���A�k��������l�o]��b�;�����1r��mR�~7v�k�q����t}����a�����s��+�<�
��4�Z�7��f���������m�$�n�����Ix�B���SR��O��z���
3a/m��0%j)U�^�'��R,^������a3��O�wn^M��]���W~�YS�fSrt;�bFDW���cH�����x�F��R�����;�}n������I����okB�V��	�e
	�]����Q|�W�|~t�sC$W�M�������!
��D[7`S��B���g�H@h�!�fM�_�o���H���t~Ia=B�/}c�F��=���))�#����%i�������G?����=���C]$����Gk3���������c�\)66�a�.�C��k3�����=\�y]�~o����_/��h����%��0{�,X�����?���%�}vL8��"]��1�,@��pKO�=��_a-��>^0��W��o��:,"����p���Im��a��SG��DI7��F��ri�9@�.������w�!�OD���##��M��#��x~M��k�����^+%�����v�QU��^��`�0�Y&�`(���e�^���Y8����Jr���&�9N�,����f�%=0aw5��:��8��;�����FBZ��N�^���-�d��q ��+�Y,=�0��P���B��$|"3Z}
q�-V����B�=��GHZ%�?���]��}W�zu�T�~�&�*��v�VLfm4�1Q��J�I�ebR���#���
'�dL�I�I�5:�]D�1=9��z�Cj�{���p>����Dk�i�~[k�M�M]d+�[G��N+]�z���N������\[S{�
���\�Sz�t
�J'.Z����k�	�1E��"LF��/&7��FDX���q^���i]e>XOK�?�?��m���9���-����A��^�C+��w�!Hcg5������
��"@�d��)����NW��G��L0���z�G���{%sq����s�^m.&y{p<�7�����H�_���T��de��n)OJr�����c��N�Q�N���G}������=�������>j,9
ra�������o������F�^T|���z��3���D0�~y�)�j��<��0�= @c'�$���"�
;w^�t���I0�����r�+�*E���Z�$���5������91����K�z�7j��6�vm���~�__]�w��t�5g�s�-�~�E�Sd�Z�>�_#
L=Q�����r���?�G��i�3?t8B$)�b��,�d����WkA�i�%�����=7~h�����C��iN5�d��B�r��':�|��"��l
�X���t=#
�X�>��@K��s�S������M�]kgR�[�������[1u�p>�z j�>Mk~�z�y�v+!�Q��jl����&���f��)�Sm���a�"�:��������(�i(����=����-����_�h��A��t��]�|���P��[�����ElU<�����[�t��&�7~��=��������GOB����@x������gO9rj��&o���m�B6�� b����lC��&+M���g�DYMcX��/�A�Sx�~�g�z\�%����Z��;d�;�1����J.���9��&[T�%"�l������u����s5Z���7���fs{WT�����=�f\���kj��e�G|i��[XT������������p+�����'q�uR���+?�*~^��g��r�Z~�'����a����lv.}�'�vH�<�*G�y���)�Gi���>���@�z��~���� ��_I�R/|������,O���n�rAB7�����n��h{�	���j~-��E�e��]2���9��WY�4�y�3/�����>�f������hk�\�UE4�:�y�+�F�g(B<y!������q4�~n�"���]������4BC�Q��Ke�h�W�$B�����)T�f����i�>����q�1��|�G#�b����I"O�4bF�LZv����a���c�=���������~M�����X�5���1����y�
!;*�(R���62�.'�������t��l��P���]-1�;�Z�]}���1���7WV�a����k�������MR�!�!��P�eD���o�Gg�#��)�45Fi��~>�����V�Z_J�M"���g�M �������Oc$7"��_�������;����Awi����8�)J�
2R�X(�=���6Q��������������D����`��D����
�����l�zd��a#lnc�ox�365M��L\�K4��q#O���=�����5�G���*�IQ����Tn��'���s8fr���i�B�s�/���7�87
�����^��B�7�q��F���NG�gh��(ZD���I^s��i@{k}�j��9��WT,q����%ri�������I	I���(���n	O�������>�{#�MSE�7 �q�N���F��3h�D���:�}����� ��%����p*--�g��i��d$B���p�@h���F��0F!�j4���i{���|�����Q�c�
�S� ���{@������TJMf�KG�R��<��r}	6q��X�N|�H�����,g��*�����?�$�Gi!��>G��x�W�N���� ����11V���� �j
�dUZ����3P����v�:yv����q:�	!����i'���p8 �I?<D6��rc�z7��RZpD��� ��gOM��=��
},"�_
]��1v\p��|���^��gb��������`�[S���M*��}�P�}f����c&���S�'������c���2ch������'=6&���.q�P���ja��r�"L0b��,��0��F�P�R�Ta�LtW�1��������n���?�Om�_21y'�^jo��C��>7|�~������'
7���3'm�m��[���%/� ��Sd��e`�$���?�����+���|�h�*dk�bA�{}A^'Q���a�5�)e���P�m�dG�v�yl#��F�f����cc�uv9���SpF�2:��m�������J��{�1��4i�_��&�Z6��`<�PzIFPVVVSYVF
�����.��?4� ����s��U53������+2��K���z�X�������*���aY�m��w�Mpe�/�y����u���Pz�#?���)=���w ;����BK��:��)��Debbx��,
��z��(^teb�<��mh�M���#��A�Z?|���
z<�����_A��k *�{^Q���*+{{��7_�~���'���
JJMO���U^�n��k����v��OTp�aVJ�������vl���3�ma������l��G��%�bI�'������*���'r����Z�"���)��E�y^y�����S�C}���	i�|
��������l7����xi��	� 8q��	">��4���2s�~���)#��\��Q�
����Aj`<�W���j��%�S���-A_2��������W��V1�t�T����Y�R�N���oy5`i��e}���v�L+k-�%��+��_���/A_vh��i��=���0���?a���������w=�0����H�R���?��(��5�2I�E�a`h�G���R��UX+�z�;���m��AEL)�.�>�l���i���g���d����h���_����K��`�Fc�]�}l^P�F������]y��c����U��M�����c�'�������B��h�J:�U_i��[�������_�)����	�%�C-eX���w�:�4�B��Dm?�LV�"w�����[��$�h�TK�+f�*�����/�����N����jru��KMD�)�@�����$2�r�/s�v��J:>N%�p�6������������GB�Rh8q����$�d��w���{g2p������w��'�3���q'����=���}h <��������������>����+�w(��B���T�)	)����"�B�K�IVR%�o�����i|=�3
�������b������.
s��.9�w0��AJx���Ti���x��xd)auj(BB�eP�q#�R�:��3�P8��C�g-��3��eT��'P�������
�8�!���~t��K�oP����Xy�0\.���c6�0�d�?aQ������=���Y����t������������X�$���J���V������y����~�y�����-_������'}����8��hnr���,`�g���J
m0i��IJ4s�B�DI�9��{���F�l�$�=��"2!I�����WO�L��
,�i�w����ef��`�C)�/T�]�?�����W�4jJ������F
E@��sa�����{ z������4�@�
��7�
R��TJ�j5��YV, DUbT���n�]�pI�-:��x�>I���A����
�O����~����8�=ku���
�-u��S~��=�n���[W����C�n��|���MkT�{u�%���*�����<%���-�>U�v����^Aie�rGf���:���Y%��8r��������E�gV�-yk�a���w
<������;%j��3�X��J�Z�N��q��p1��]A�����R��L/��q�8;4�� ���a��*�}��w�<y�A�=���z�L�[��[�����o��{��bc����3����d�����@H�-;��!���[�"��P�
����QO;������=�t���AT���	'k+�D���R�3�7�������-�+6,��~:e�~�Y���5Q���2�lrV�Ip>�B�\FTB�Z^%AQD"�V��2wA=�u�-�}fH�M�b�^�;��7���~��L�y�6R��5�Y��
Y��� t�d��?�A���f��#�q~$�B��i��8���g`L����Mt.}�~��*���Z�]����PN�����{��R&k�+���u|O�O���!"�N��O�B(���%8 �t�2���TA�4�CFt�;�@��UO�ky��9;�*z�A��V������L.��)���WwrAQ�lk�;����%{?��G�T���uAf��
_K��2�l��������6=���,��QO���k�����(O��rH�\����!��4��C��RSO$��x��=nbzd�s;!o��l��~qVc�������O���/XU�M0����\G��������A�W�}���rW��������0���G@w6?���*?w~#�2K)����Z�t��:�i�R$�)�5�0�9��������(�����s��
��D��HJ]�z�G�=TD�7L9�m)��ch������T��l���i�wLL.{���G		[���ZG�.n�.3�B���k:��!�d�u���#��rk�A'�)~��B�f����Pa@�C��#�z
���;�>!y��x����w���W��>*N��|K^>e���<�[�M�o�P����sv��/����\�M��C=��5�Av9�j�S*a�$��$�z���B���T�x��J��pw_�ITY� :
^��P���}���������T����&��������s�Yc3��a�#A�j���E�?��w����H�SB0�$���j���L.��;�d(�h�7��]_��h2����BX�SLA�%���6|8"������6U�>�M�P���U^9����!8R��/;u�F�!�1_c��
�W`N����|D��a�0���",���0>�������6�3����`G��
�5	l0n6���%�����,���T�C�5�V��C��,����1�z��S-VRbB�T�	�Z��(��x�T*�C$)�BQ��B�����g������7�E������HL,�N
���m���N�K$����7�.�K$����.�E�mcT!�bI��W�zQ�F$ 4j�&�Y�SW)��+
B ���*���cq��3�0���`)�P�7{'��,F�������8/r}R�0�7��7�~�z���_p{@Q������'�1a��1��. b�V����D����-�n��75�2�^��/|���/i��F~���A����f���X�^����$���������FME��i�3i�����l�R

��j�n�*�R�����[�X����5/�\��{����|38�g����x^~G`ccq�fpJh���c2N��+��Rf�\��^����]��0�}�X�l��,��D��E�`�q+@J&�s\H�<��2�Fi���	%pP�Y���clL�N����4�<��>�u�/{���,�#@*?�A�bIU�p\Mh�~�@mV����M\Gp=�����Y
��l_���B�X��*(Z
U{��D�@�=�4�+�L$��T(c3�N����*H8^Q�B��a�j�R	E�E2��!�%�k���8���m���$!�n_��=+?{V�>�KS���V[+�u�F���'I���w%Z,���&3�jW���;�sm���?��L9�
����AD�d����"S,!B�@��T���`��x��D��	��c�D�W2q
u�O��'8=A��9�8Q���]���.�����[��Wo��7w�����v��-��@Y�#9�q����<Ry
���BYK�.'�-u
YFX�����i�~.����(A��1B87�C7� � q��N�'x���2W@Y���\���lr-#��Y�f�l�x��H���?a�2��)CW���d�ZU	IP���4A��)�*$�DL��i���S�&j	��-���tzGr
p����i���eqz����*
�����ModTM9�-~t��Z'��aFZA:�#����O���$b�S�z�
,`f(��6��(H���v��W��^��oE�3mH @����
`��P��$�qN��m�h@�H��]��~@�_���:L�HT�
��~R��)�?K�b��6HorR�L��)���3��E��&�l~�1�����H�)=2��#�]J����oF�����yyE�y��a���M�y�9�;�[��Z�o��Wc���j���S�5;wN��k�FJ�!h2�g!m�er�}����H���(����`������N���B��*u�S���@�2)��X����o�O0���]�� `-k� ���X����$j�n����Y�����o&�������2{���]�AH�0s�Fp������~`!�{��l��/���� ��O(�D��J���mUj0��H�VS��y�������-aZd���O�V	�N�iC���w�E?�����y��[�o������c�F\�?�^p�d����X}��%4e:
�TK�8%��4�0\L,�����1G	B�BE�[p8P$����4�M�oB�F���{�O����`����/.������#������^��W��i�[6i�IcG)�A��	p���$��Q���T��{�A��/��W���C���eC+w���z�_���=w���-[z��E�y���=����o�y��s��^�i�nC����(���8{\"���4�G���i�����p�S
���Fc�� �Z*,��*�v��L:|�f=�j8sB�
�����MW/�s�w��|��2�d��]������F��� ��}��b���HsIP|;XzC�0vN@_BF�H���Py��8a�@H�l&!%�bF$��0\������#��L�S%b�V�uh���5��&�#���O������zG3C�7����R3K��<��2[I�enb�)��;	y�����I�Q/����C�U�cy�W(�{&}
4���:D�dd������bc��������e�����E���6B�������<g�����/�l��b�SB���f�:#-��,w*�ui �1P������T*�Q$��������4R'�T!���G�c}��W��[������e��~F6{��9���9�z���'l	�~d�}�o<��UA���V�*hbWe���r��TS�cL�(����CP�mu(O���B������|H�R�������������=@��������Z�����h�}��*S����v���c���ZU_.d@�;�����|��u��x�7�_oo������yH`�<�'w������������8Nr�4�TC���'i��x�ce]�T��W�������'/�y~����8�Z�|}��8	�A�������UR����DF��(&���9Nj1�
I8�^M���cVm`�:e�?a9�"l�+N35�t���_4�e^��7� �E,��)b"��_���b?��P-
P��0�)��#����'����ui�uq|�)=%	�����/���%c@B�q]�:M^���	����J

J�����'���5��Y>�*2-:LcL�:�m�)���{zi�I��Qf�����;���+rb�9���q��SkR(7??�;����@����)XZ�*�������f(�@i64�K�����J�O�=�������n�;��CA4�j��$��R��q���(\��	��� ���D����cH��*.�|ii���7��U�����9
� ��II�M�Y�3;���(\0u�c�SD��:<_	�J���M���"�)0�)e+��~��I�����T%a����+`CjLIi��9�G�=)zN�,n�q�e�,�a4Q3�;'[�^w��j)2m(��c����b�$������FXCJQ!i�bb""���
��({(vJ��X@�-����P��c0�e)|f� Hk\]�������~p������<w`Jo\E��.s=�G $�����_��=�������� !$H��Q�������B	�G!���y�M���������SE��E���=���n]�Ek�V�v��yh��V��~�U�]=������w�M�Z�[�~'��s������d��{.��E��+�������;R����m���?x]��o���p����}{.�Y��Y���}��������3o�{��n��U���}5z*|_��!84����w�s�d�b?��0/��������K�VDg#I�}��J{��J�:�L�
��<~L�e�Q��x�Q��>��
;>-2�� l//)�]�����
H��NEm�V�
x�rj���6�O����!�;��v4p����7t��k��PUY�X�V�<]�)�����������U�7�~����/p�S��q�8�0I��6��"��A�d������9�o��N�����+G^=�`����6p�k�����~x�8$�>��S30�����9�fB�5�k�G ���1k��K���kknnE�$� � � � � � � � � � � � � ����)'�Rp�x� ���#sN�t��Qe�n*r���_8tFO�_�y�C}��SJNY���9u�����t�����I�y}��c�;������q����L�_�����
x4��|&���p���b�c3c�b� O#���R7����W�+�1�6�2��/�{���(��;�������Y$���y!���4���o���
dg���s'�o��<�������
��A_�3��9�6��"�O'�������u���S��������SO�z���L��;g�9������<;��s�����Bl&�V|t���6�����3�B~���8����Wf6��O�	� WO�zr���U?,r����>��9��l��k�8�"d��w��l�����W�Oi�k~���y�����K>�G,�k��-�[��li���S[ud����XP��X�
xu![�
lA>X���7��w�hg�������?-�`���e���������e���e_���Y^�v�\Tpm�C��s�oV^���e{��t�?�����U?vu��q5��I�'�'�����Bd��b_:W�G����1�&��� ����q��=j�ll?,v��',�������I�,�q�1���y�c&������u
�Z��]`;��C�{R��#��G�3�fW|-YKAAAAAAAAAAAAAAAAAA���+���`5}��#C������r����7���#[�G�QN�s�����;�]���������I|ivAGEQZ�w�5���^�Q��5R.Q�(�H9���(.���P�Wn��1�P�^)T<�Q)�)�#s�<Hi��T����E�K�����f)W(��6)WF7�='�!J��B�P�L�xL�ePeD�%���r)G��*>�rih����J��(e���<P�Zy�����OIy�rze����*��<X�0�n)W(�}Y�����~$�!���_�%��(�VQ��@Z��cx��
���a��\�r-��d��,r$d�#!�	�44F�H�"GB9����E��,r$d�#!�	Y�H�"G\.�;}��rE�}�.���s�B�V���
�[��*�oU�����U���d)���7,��0X�z�	(�m8�H�#B�5��1�OD����BcF���p�T��P��e�������W������D�)
�d�ZS�G�~��EU�	�����A�	����g��Te���4��xg���{������:u��(hS��J�L)yXS��6\���T�/�LK�������h������,��
m\;�IC���M�}��G����{
�0��8��ng���2�E.u�>�R�S����f�����Y��g�wC�lS�%�O\z~W
��u0�[�J`�1�X�	��!�@�
kr�i���<\����(<�E[x<���"����@r���VF'��g��x�(�6SF����	������_WWq�
��`����hXU�<�,�i0"�w����-m��7K��XnW/����&����h�c,� ��!�k��I���S�O���/�Z
W["��[��X��2���pCV�+���?KF&����e%�q�N��xT;e���~�l�0NY][]��+�&�%���,V�?W�����������o�p:Q�"��D���'�(�y�&�����d�a���������V�f�Z�$��cK��}��8?���i�.�q5CY�������KHD����\��p�Dm���t0�E�6V�����*^����3��ke�3�'��.�lK�W$����^����O�=��s���"�����,#�o����c/N�N����)�s��Dl���j�l�
�������y1<�48�}E��Zq��7���BO�gLqwk�s"��<y"��,�`���Ix���N�����O����a�l�������O���(���A�����0�d5���Z�3y�:�c�w����:�(,Nam��A���t����NIc����^�"qy����q�M����g.��4����I�+����'"�ui�b\��q�{��<����s�,�H�Z�����>��h?���i<��}N�X����6���'���T�a^�X���������������"���%�S��G<[0G�����&��={{ N�p��/f���/&��� ����9b����qXeY|�$���0_%�������g���+�������]�B5P��h�d������'z�����l�=����*C������	��^����M�4������x��df���;��Q����s��q>r�A�$�G?��F������x�:�5LV[L��];��3m'g;�g�V\������T�s�E�k8=F"����S���M��T>�9m���<ur|}K���U5�s�����n�N�^��M9v>��u;��,�p�3��Q�,=>M�m�z�T���=Mm�<������p���N�_\�>c�Y;a8��j����&�,�5a�f�2�g�)��P5K5.��wY�d
��1�M����,�P�%Ww�������4-5���W�<n�
+d�5�r�v`N���:��0�T\]g��Y��1��a��j���*��96���d$������1��������Y0�pT��1�K,-k���������2ZA6tZ�+���I
\�O/
�LX��t{����i�g�9�P{M/�.��������s�i������H5Z�G/��u�s��i:DC5�4�u����kl�� ��L���7���d��Y��2�j2c����KkA��cUK4U�080�*��2���)�s��`-������=m�;U��Y�����@T#k��d��E�`�5����C�Dg����>B��|g�t�X�^4��;��$��'&���>�A�e�Si^���z|?�1����M�.��l[� �1TC�}�-�����Z_������.j�A��r�\�P�{IH�����u)�������2&�:���<D���!�����
[@���_��Jq����|Bs��5�<jg���_��\�B�k��{|�nI�u�~H����+��)Z���W��p���$����N~@�M����p,M�p=���(*�����ajM��Y~�:&hM��V������PA-�T9�>syN1�&�62���s�*��<!� �'mv�`�!�A}�1���P�+���8�����
D*�����������i�'8R'�7G��>}~wD��ch-������k�t���>c;�V���If��nh�
w)���d���g�X{���?g�'��,��
6+_{�q��:�-c����o0�m������O,/r
�;{o������Y�?����c�3�BvKm�<��J���`��9�|�`�z��������0{��l)�2�Z�t���v�����
��c��cY�^�6{�f����]�v�na[z������q�\c\���c���uXa#Ko|x�5�kK������4����9po��V�[�r������kX��e���}<����X/��.d�:�Z�}��9c�����,�5~�,��5�����j�B�X��_��������`]��;�g����!d�|�s����'`�vX��=D�r�c%,(�A4&yf/y��D�M�����#���0�]�p?�mcV(�I�Z�x��y=dZ������r����\�0"�3�$����c�X\�hY�<����_���>�k�T�����'�6��+�S:�gC�k�V��W���#���g���(_L�����D@�����O-�/K"c��|�+�Y��oT1u��hpu���l�'bL��Y������s��2.���<Kj������2�A���8c��qF;��G�K�h{T{���6�7\}�4
endstream
endobj
2861 0 obj
[ 278 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 667 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 333 611 0 278 0 556 0 0 611 611 611 0 389] 
endobj
2862 0 obj
<</Type/Metadata/Subtype/XML/Length 3185>>
stream
<?xpacket begin="���" id="W5M0MpCehiHzreSzNTczkc9d"?><x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="3.1-701">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about=""  xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
<pdf:Producer>Microsoft�� PowerPoint�� for Office 365</pdf:Producer></rdf:Description>
<rdf:Description rdf:about=""  xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title><rdf:Alt><rdf:li xml:lang="x-default">Fujitsu Standard Tool</rdf:li></rdf:Alt></dc:title><dc:creator><rdf:Seq><rdf:li></rdf:li></rdf:Seq></dc:creator></rdf:Description>
<rdf:Description rdf:about=""  xmlns:xmp="http://ns.adobe.com/xap/1.0/">
<xmp:CreatorTool>Microsoft�� PowerPoint�� for Office 365</xmp:CreatorTool><xmp:CreateDate>2020-06-16T15:02:08+09:00</xmp:CreateDate><xmp:ModifyDate>2020-06-16T15:02:08+09:00</xmp:ModifyDate></rdf:Description>
<rdf:Description rdf:about=""  xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">
<xmpMM:DocumentID>uuid:C6A4CEEE-03C2-476E-838F-EB7F759A3B71</xmpMM:DocumentID><xmpMM:InstanceID>uuid:C6A4CEEE-03C2-476E-838F-EB7F759A3B71</xmpMM:InstanceID></rdf:Description>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
</rdf:RDF></x:xmpmeta><?xpacket end="w"?>
endstream
endobj
2863 0 obj
<</DisplayDocTitle true>>
endobj
2864 0 obj
<</Type/XRef/Size 2864/W[ 1 4 2] /Root 1 0 R/Info 151 0 R/ID[<EECEA4C6C2036E47838FEB7F759A3B71><EECEA4C6C2036E47838FEB7F759A3B71>] /Filter/FlateDecode/Length 5914>>
stream
x�5�e���a^%b"�����bwawbw+vwv7����b+v\�PQ�3���|~��ff����?��S�������d�:��R�����}����A���p�x�p�>��6(~Z���
��-��L����_���k��m
�]\����#�*<}t�����������Pa��U�q���w���p�����.����9�.y�p����/�Vxv���+o�W������3���0zPa��O�����
�������y��
�Z�q\a�����n[�~D��r�:�����A�1�X������~R��Q���e���eHG����	v���0{��k����V���R9u�\[X������tlYN]��ov�[�w����G�T8�������p����p��(����j���W,Y������q$�'�q�����;��Z��\|��^�����pw�'��A����I���/�8���������U�Ta��Ov,�<K���j�t���m��d�&/'�K����<��]��]��������',�37�U�e�'C�.]��t����NKc,��*:]�iRtE4�-_���#����Agt`tG7L��=11&�b��������d��E�H5�[�mg��`JL��1����v�����/fDL�0f�L��`.���1�'�u;��0/��<Xb~,�-���@�lE����UG��o{���.����Es�����a%��U�*V��Xkb-����`=��
�!6��8�bl�L4�
[c0v�.��a{���v���{b/��}�7�`?��?��8�p��p$N�q8
G��p<N��8	CqN����q�t����z\W_gk����8��\\��q.�E���R\��q��U�_������ho�Mx������=��;q+n����A��{p/���x��Q��x��	<��0O��z����/�Y��sx��^��x��5����o�3��w�.�����#|�1����.�+~��>������7���w�?�G�����?������|��?�~�����8��\���i�}FZ��?��C��Fv��Q��n&��9���2Go#��HrD8��M/�nd7��]��Z)�����m�6Ze��o$2���>8���FS�������VS#��Hr@o�@����v���@Go���x��fa,O��,S��>��3�����pt:�i��F�#�����Z��W�_��jN��=��q#��FZ�����n<:�A�9:���Fv#����nt:����-�g����C��sN���n��G�#���pD8"��^�^�h�"����tt:���$G�#��t$9�VG�c���e�\G����tT;z��@G�#���m�9r��@G�#���u<	�3Q�2w��yn��>����m�3b��$G�#����X��O�������t�8Z-�`F>s<3��En�$G�����hj$9���@G�#���md7z���Fh#�yz���Fh#��(l6����F>#���(l�6oBa#����m<�DE����mD8*��Fh#�Q�xPJZ)��G��������FS����hj6z
���gWk�j��z�ztF����+&�$��	�b"L�^��19����
Sc������1��Z��Y�dpM�f�L��`	,^��7�h��<�0;����aA���0?�@,�����X
Kb9,�e�"V��X	�ce��U�
�������u�.6�z�`}l���6�&�[b[l�m0[c'l�������`w��]�/��>�{a�����@�#p�a8G�8�cq��P��p"N��8��4��3�$�,��sq6����W�r\��p1.���W�\���6n����U}S���z�
������9:5_��p+n�-��j��lG��;q;����3����^��{�0��~<���cx��i���x
��sy���x��Y��sx/�E��Qx��u�����q4��w����[O��v���|��1T�9{����
��s|�/�{���v�����'����~��h��K!��{<����Ds�������3S=�3�	FS��i~(��U�|�)����nd7����Fv#����nd7����F}3c}����Kk�5Z-�G��3@�����(s�2
��$G��*���$�3b���f�zd��GL#�Q��t�����Ba�B���,
���F42�>P{��F}�� "����#�����$G�#����nd7e�;_�6�I���5����b���2���G�#����o�7��G�#����n�8���G}��Q�Q�4B[������#I�@G��c9�zc��j��G���Q��\�����Hr�;���NG�#�Q��tT;��@G�����t�=���j��7B�-K���4�\7+��u��sq�6�m��G�#��hx4<��NG�#�Q���0�=���d��G�����x���G�#���Hrt:���F������n�8��G�y�k�)���Hr$9�I�nF�#�eZ!��(st:��L���k�.��Hr$9�I�$��h���LYSVx&*K��bh��o�-��]s3������$�6��\G�#�Q�hqt�,B�]w�����/lw-���(s�9����G���e�Z�3h�����u�NM��_�I�X6����.��I�=0zbBL��1	&C/L������h{�)1zcrl��1���m�U_��V��>�n�f����1G=��v����1f�l�san,�y1������h4�z5�[�j1,���"X
Kbq,���������h�V��X��#�jG��5�2V��X
�ccl��0kc����>�OsCl���9��9����s�f�m�-�����~���os�����G�nG����+v���{��~���@��qE��z��8
G�p����e����X�cpN��8�����p���x�B���h.��p>.�#�����v���R\�KPw��a���q.����:\�kqn�m���V����0��sy���Cxw�.��{p/���x_a��cNd��zO�I|�g�4����<������x�b$^F���"F�
��W�^��h*�&���x��]|���>�gh�9����;4��9���o��
���[�����~�����#lG��_�3~�8������O������&�tss�xJ(������������Ze�xG�����pt::���GE��:���#L�>P��tt:�)/�
�/�
A��F��2���6�J������W�e�v.��2G�3o=��v�@G�#�e�[1'�;���|�����;��@G�#��hxt::��NGo#�Q�hq:i��F}���?�v���5Ga��e�[���i��`�m�7Ze��L��#�Q��p$9�'�;�i����\��d�\G�#����t�8Z�$GZ#����pY�Vt:"��G}��Q��m�7Ze��Fh��Q��i�5�e��Eh#�Q�(sd7
�-���b(6zeN���C�l���E�#����p�6B���FS����(l�4*M�G�"���������Fh#���gd7���|FL#���(sY�VHr�5��,+�
.����FZ#���f�6BU�(FE��g�6b1��F0#��f���|F}����g�6���0��Q)#��(l�6�a�,;+�6M0��,;+<�D��Q����6��3��6*����fY���iR������������c"L����1zajL�)1�bZ��4��c:��aX�b���0f���y07���X�c>���1�aQ,������X�c9,�e�4V��X�cc��&Y�b�ZXk`=��u�66����cWl�-�96��h�
ckl��=����;c'��C�'����
�b���p��~�Cp0��8��S����o�18����0'�x��q*N���4��8��6g�|�W��_�vf������=��b\�q.�e���j\�+q��u���A���qn�����6��{p7���x��>���(��x��$���x��i��Sx�a$���x/�%��7�:^�����&F�=��w�6�����|�O�	��+|�/�9�:}�o��k������~����W����'����0;�E���i�9�+��H]$2���E"#���Hr$2��E��xQ�Hd3���`F0#|�f�,�*D8���E��xQ�Hd3���`F0#|�f3R�`F0#���Hd$2�Q�(F#���bD1�Q�(F#�Q�f5��E��q%��]u��H]�0���RF���Q�hqt3���R�9��u�.j��RF)#���(W/2Q�DF0#����b$2n�9���2M&"u��(et3*m�RF7������P��ht:������hc�1��K>��RF)��Q�hj�1�-����!����b$��)+�/���6F�����Y/j5�F�"���hc4.�-��E�xQ�fD1r��F
�����_d7�m��E�"|��H]�2�Q�(F�"��H]�6j�(F��q��`D1��F�"|���b�.��(Fv���_d0R�F#ue9�����5R�&uu"�[���L����������+Z�,��jd�z��v�RF)#�e-Z���Y/�������uCWt���F.7���;z`L�	1�����0zc����}1=�C?����3aF��Y1;`6��91��\X�aA,���(��XKa ��X�b,���"V��X+c%����*���X�am��X�cl���1��&��aSl��������v�������aG_�f���3v�����W����7���`_�~���;;���	8� �Cp(��8G�(�cp,���8'�$����x��h�y&��i8�����q%.����\��p9��M�����vJ7`������:\�;p3n���
��.���p��=��A<���(������x��<�x��9��;x��e��Qx��5���xo�=|���>��c�>�'�M���W�?�[|�����W4�?�'����;��X����/���B�kp<��C�+��
��DF"�����_D1n����bYV7+���b�2n��4���\��"JQ�RF)3O=rp;��CY�UmYEV�f3�i��FS�����g�3��`F0#���(e�2
���f�z�������g45*����#���M�GZ���m6���`FL�����Yo\{<M��Fo��Q��g�6
���Y$2�YV��U |Q��o6
7��QMi���)�f�6����Fo�����|�v�����4Wd3%�N�]��FL�b�Bo����fT4��-K�
Q����.lg�����m�6J��FEsY����f�3�i���u��
��
�2����Fh����m�3��$GSsiu�j����p6���f�����nd7���6����;�����i4<
5�$��e�
���*���i�6B��Gh#������Fa��Q�hj�/z���Fa��Q�hx45
���F7�����o�0���ui{��4b��G�����Hk�8�i��F��������5�Z����k�q�[������F�����Hr�8B�,;��YU{���w�j�ne7���xG��B��.h��fi-�2G���r���A�]OL���@tE7tGL�I�Tt"L����c
L�~�[�l����5y���4��az4E�?��L��`V���s`N���1��|XK`!,��h�O�`Q,���7]~!U�����~Jy���S��_����[kz*�#���w�-����z�7m���<���c��5L3������	f;�S���o
�
endstream
endobj
xref
0 2865
0000000152 65535 f
0000000017 00000 n
0000000171 00000 n
0000000468 00000 n
0000000767 00000 n
0000006566 00000 n
0000006619 00000 n
0000030716 00000 n
0000030885 00000 n
0000031126 00000 n
0000031179 00000 n
0000031344 00000 n
0000031571 00000 n
0000031884 00000 n
0000034208 00000 n
0000042694 00000 n
0000043461 00000 n
0000043605 00000 n
0000043635 00000 n
0000043807 00000 n
0000043881 00000 n
0000044128 00000 n
0000044441 00000 n
0000046702 00000 n
0000047062 00000 n
0000050114 00000 n
0000050304 00000 n
0000060038 00000 n
0000063015 00000 n
0000090497 00000 n
0000090624 00000 n
0000090654 00000 n
0000090809 00000 n
0000090883 00000 n
0000091129 00000 n
0000091442 00000 n
0000093617 00000 n
0000093975 00000 n
0000097140 00000 n
0000100753 00000 n
0000102635 00000 n
0000102984 00000 n
0000105178 00000 n
0000105505 00000 n
0000113357 00000 n
0000113670 00000 n
0000116316 00000 n
0000116639 00000 n
0000119444 00000 n
0000119577 00000 n
0000119607 00000 n
0000119768 00000 n
0000119842 00000 n
0000120084 00000 n
0000120397 00000 n
0000122889 00000 n
0000123248 00000 n
0000128995 00000 n
0000131032 00000 n
0000132293 00000 n
0000145356 00000 n
0000149626 00000 n
0000157179 00000 n
0000160786 00000 n
0000161160 00000 n
0000165985 00000 n
0000173507 00000 n
0000176750 00000 n
0000185133 00000 n
0000188279 00000 n
0000188603 00000 n
0000191544 00000 n
0000191868 00000 n
0000194205 00000 n
0000194529 00000 n
0000197431 00000 n
0000197745 00000 n
0000200572 00000 n
0000200886 00000 n
0000203376 00000 n
0000203690 00000 n
0000206856 00000 n
0000207180 00000 n
0000210289 00000 n
0000210613 00000 n
0000213774 00000 n
0000214088 00000 n
0000216995 00000 n
0000217309 00000 n
0000219852 00000 n
0000220166 00000 n
0000222679 00000 n
0000223003 00000 n
0000225615 00000 n
0000225929 00000 n
0000228710 00000 n
0000229105 00000 n
0000233333 00000 n
0000234026 00000 n
0000235830 00000 n
0000235944 00000 n
0000236053 00000 n
0000236161 00000 n
0000236320 00000 n
0000236495 00000 n
0000236740 00000 n
0000237115 00000 n
0000238207 00000 n
0000238354 00000 n
0000238462 00000 n
0000238571 00000 n
0000238680 00000 n
0000238788 00000 n
0000238948 00000 n
0000239347 00000 n
0000242646 00000 n
0000243153 00000 n
0000244232 00000 n
0000244379 00000 n
0000244487 00000 n
0000244596 00000 n
0000244705 00000 n
0000244813 00000 n
0000244975 00000 n
0000245383 00000 n
0000246509 00000 n
0000246656 00000 n
0000246764 00000 n
0000246873 00000 n
0000246982 00000 n
0000247090 00000 n
0000247251 00000 n
0000247612 00000 n
0000253993 00000 n
0000254309 00000 n
0000258340 00000 n
0000258666 00000 n
0000263388 00000 n
0000263704 00000 n
0000266713 00000 n
0000267029 00000 n
0000270431 00000 n
0000270747 00000 n
0000273663 00000 n
0000274007 00000 n
0000277613 00000 n
0000285195 00000 n
0000290860 00000 n
0000291032 00000 n
0000291265 00000 n
0000291489 00000 n
0000297029 00000 n
0000000153 65535 f
0000000154 65535 f
0000000155 65535 f
0000000156 65535 f
0000000157 65535 f
0000000158 65535 f
0000000159 65535 f
0000000160 65535 f
0000000161 65535 f
0000000162 65535 f
0000000163 65535 f
0000000164 65535 f
0000000165 65535 f
0000000166 65535 f
0000000167 65535 f
0000000168 65535 f
0000000169 65535 f
0000000170 65535 f
0000000171 65535 f
0000000172 65535 f
0000000173 65535 f
0000000174 65535 f
0000000175 65535 f
0000000176 65535 f
0000000177 65535 f
0000000178 65535 f
0000000179 65535 f
0000000180 65535 f
0000000181 65535 f
0000000182 65535 f
0000000184 65535 f
0000306050 00000 n
0000000185 65535 f
0000000186 65535 f
0000000187 65535 f
0000000188 65535 f
0000000189 65535 f
0000000191 65535 f
0000306101 00000 n
0000000192 65535 f
0000000193 65535 f
0000000194 65535 f
0000000195 65535 f
0000000196 65535 f
0000000197 65535 f
0000000198 65535 f
0000000199 65535 f
0000000200 65535 f
0000000201 65535 f
0000000202 65535 f
0000000203 65535 f
0000000204 65535 f
0000000205 65535 f
0000000206 65535 f
0000000207 65535 f
0000000208 65535 f
0000000210 65535 f
0000306152 00000 n
0000000211 65535 f
0000000212 65535 f
0000000213 65535 f
0000000214 65535 f
0000000215 65535 f
0000000216 65535 f
0000000217 65535 f
0000000218 65535 f
0000000219 65535 f
0000000220 65535 f
0000000221 65535 f
0000000222 65535 f
0000000223 65535 f
0000000224 65535 f
0000000225 65535 f
0000000226 65535 f
0000000228 65535 f
0000306203 00000 n
0000000229 65535 f
0000000230 65535 f
0000000231 65535 f
0000000232 65535 f
0000000233 65535 f
0000000234 65535 f
0000000235 65535 f
0000000236 65535 f
0000000237 65535 f
0000000238 65535 f
0000000239 65535 f
0000000240 65535 f
0000000241 65535 f
0000000242 65535 f
0000000243 65535 f
0000000244 65535 f
0000000245 65535 f
0000000246 65535 f
0000000247 65535 f
0000000248 65535 f
0000000249 65535 f
0000000250 65535 f
0000000251 65535 f
0000000252 65535 f
0000000253 65535 f
0000000254 65535 f
0000000255 65535 f
0000000256 65535 f
0000000257 65535 f
0000000258 65535 f
0000000259 65535 f
0000000260 65535 f
0000000261 65535 f
0000000262 65535 f
0000000263 65535 f
0000000264 65535 f
0000000265 65535 f
0000000266 65535 f
0000000267 65535 f
0000000268 65535 f
0000000269 65535 f
0000000270 65535 f
0000000271 65535 f
0000000272 65535 f
0000000273 65535 f
0000000274 65535 f
0000000275 65535 f
0000000276 65535 f
0000000277 65535 f
0000000278 65535 f
0000000279 65535 f
0000000280 65535 f
0000000281 65535 f
0000000282 65535 f
0000000283 65535 f
0000000284 65535 f
0000000285 65535 f
0000000286 65535 f
0000000287 65535 f
0000000288 65535 f
0000000289 65535 f
0000000290 65535 f
0000000291 65535 f
0000000292 65535 f
0000000293 65535 f
0000000294 65535 f
0000000295 65535 f
0000000296 65535 f
0000000297 65535 f
0000000298 65535 f
0000000299 65535 f
0000000300 65535 f
0000000301 65535 f
0000000302 65535 f
0000000303 65535 f
0000000304 65535 f
0000000305 65535 f
0000000306 65535 f
0000000307 65535 f
0000000308 65535 f
0000000309 65535 f
0000000310 65535 f
0000000311 65535 f
0000000312 65535 f
0000000313 65535 f
0000000314 65535 f
0000000316 65535 f
0000306254 00000 n
0000000317 65535 f
0000000318 65535 f
0000000319 65535 f
0000000320 65535 f
0000000321 65535 f
0000000322 65535 f
0000000323 65535 f
0000000324 65535 f
0000000325 65535 f
0000000326 65535 f
0000000327 65535 f
0000000328 65535 f
0000000329 65535 f
0000000330 65535 f
0000000331 65535 f
0000000332 65535 f
0000000333 65535 f
0000000334 65535 f
0000000335 65535 f
0000000336 65535 f
0000000337 65535 f
0000000338 65535 f
0000000339 65535 f
0000000340 65535 f
0000000341 65535 f
0000000342 65535 f
0000000344 65535 f
0000306305 00000 n
0000000345 65535 f
0000000346 65535 f
0000000347 65535 f
0000000348 65535 f
0000000349 65535 f
0000000350 65535 f
0000000351 65535 f
0000000352 65535 f
0000000353 65535 f
0000000354 65535 f
0000000355 65535 f
0000000356 65535 f
0000000357 65535 f
0000000358 65535 f
0000000359 65535 f
0000000360 65535 f
0000000361 65535 f
0000000362 65535 f
0000000363 65535 f
0000000364 65535 f
0000000365 65535 f
0000000366 65535 f
0000000367 65535 f
0000000368 65535 f
0000000369 65535 f
0000000371 65535 f
0000306356 00000 n
0000000372 65535 f
0000000373 65535 f
0000000374 65535 f
0000000375 65535 f
0000000376 65535 f
0000000377 65535 f
0000000378 65535 f
0000000379 65535 f
0000000380 65535 f
0000000381 65535 f
0000000382 65535 f
0000000383 65535 f
0000000384 65535 f
0000000385 65535 f
0000000386 65535 f
0000000387 65535 f
0000000388 65535 f
0000000389 65535 f
0000000390 65535 f
0000000391 65535 f
0000000392 65535 f
0000000393 65535 f
0000000394 65535 f
0000000395 65535 f
0000000396 65535 f
0000000397 65535 f
0000000398 65535 f
0000000399 65535 f
0000000400 65535 f
0000000401 65535 f
0000000402 65535 f
0000000403 65535 f
0000000404 65535 f
0000000405 65535 f
0000000406 65535 f
0000000407 65535 f
0000000408 65535 f
0000000409 65535 f
0000000410 65535 f
0000000411 65535 f
0000000412 65535 f
0000000413 65535 f
0000000414 65535 f
0000000415 65535 f
0000000416 65535 f
0000000417 65535 f
0000000419 65535 f
0000306407 00000 n
0000000420 65535 f
0000000421 65535 f
0000000422 65535 f
0000000423 65535 f
0000000424 65535 f
0000000425 65535 f
0000000426 65535 f
0000000427 65535 f
0000000428 65535 f
0000000429 65535 f
0000000431 65535 f
0000306458 00000 n
0000000432 65535 f
0000000433 65535 f
0000000434 65535 f
0000000435 65535 f
0000000436 65535 f
0000000437 65535 f
0000000438 65535 f
0000000439 65535 f
0000000440 65535 f
0000000441 65535 f
0000000443 65535 f
0000306509 00000 n
0000000444 65535 f
0000000445 65535 f
0000000446 65535 f
0000000447 65535 f
0000000448 65535 f
0000000449 65535 f
0000000450 65535 f
0000000451 65535 f
0000000452 65535 f
0000000453 65535 f
0000000454 65535 f
0000000456 65535 f
0000306560 00000 n
0000000457 65535 f
0000000458 65535 f
0000000459 65535 f
0000000460 65535 f
0000000461 65535 f
0000000462 65535 f
0000000463 65535 f
0000000464 65535 f
0000000465 65535 f
0000000466 65535 f
0000000467 65535 f
0000000468 65535 f
0000000469 65535 f
0000000470 65535 f
0000000471 65535 f
0000000473 65535 f
0000306611 00000 n
0000000474 65535 f
0000000475 65535 f
0000000476 65535 f
0000000477 65535 f
0000000478 65535 f
0000000479 65535 f
0000000481 65535 f
0000306662 00000 n
0000000482 65535 f
0000000483 65535 f
0000000484 65535 f
0000000485 65535 f
0000000486 65535 f
0000000487 65535 f
0000000488 65535 f
0000000489 65535 f
0000000490 65535 f
0000000491 65535 f
0000000492 65535 f
0000000493 65535 f
0000000495 65535 f
0000306713 00000 n
0000000496 65535 f
0000000497 65535 f
0000000498 65535 f
0000000499 65535 f
0000000500 65535 f
0000000501 65535 f
0000000502 65535 f
0000000503 65535 f
0000000504 65535 f
0000000505 65535 f
0000000506 65535 f
0000000508 65535 f
0000306764 00000 n
0000000510 65535 f
0000306815 00000 n
0000000511 65535 f
0000000512 65535 f
0000000513 65535 f
0000000514 65535 f
0000000515 65535 f
0000000516 65535 f
0000000517 65535 f
0000000518 65535 f
0000000519 65535 f
0000000520 65535 f
0000000521 65535 f
0000000522 65535 f
0000000523 65535 f
0000000524 65535 f
0000000525 65535 f
0000000526 65535 f
0000000527 65535 f
0000000528 65535 f
0000000529 65535 f
0000000530 65535 f
0000000531 65535 f
0000000532 65535 f
0000000533 65535 f
0000000534 65535 f
0000000535 65535 f
0000000536 65535 f
0000000537 65535 f
0000000538 65535 f
0000000540 65535 f
0000306866 00000 n
0000000541 65535 f
0000000542 65535 f
0000000543 65535 f
0000000544 65535 f
0000000545 65535 f
0000000546 65535 f
0000000547 65535 f
0000000548 65535 f
0000000550 65535 f
0000306917 00000 n
0000000551 65535 f
0000000552 65535 f
0000000553 65535 f
0000000554 65535 f
0000000555 65535 f
0000000556 65535 f
0000000557 65535 f
0000000558 65535 f
0000000559 65535 f
0000000560 65535 f
0000000561 65535 f
0000000562 65535 f
0000000564 65535 f
0000306968 00000 n
0000000565 65535 f
0000000566 65535 f
0000000567 65535 f
0000000568 65535 f
0000000569 65535 f
0000000570 65535 f
0000000571 65535 f
0000000572 65535 f
0000000573 65535 f
0000000574 65535 f
0000000575 65535 f
0000000576 65535 f
0000000577 65535 f
0000000578 65535 f
0000000579 65535 f
0000000580 65535 f
0000000581 65535 f
0000000582 65535 f
0000000583 65535 f
0000000584 65535 f
0000000585 65535 f
0000000586 65535 f
0000000587 65535 f
0000000588 65535 f
0000000589 65535 f
0000000590 65535 f
0000000591 65535 f
0000000592 65535 f
0000000593 65535 f
0000000594 65535 f
0000000595 65535 f
0000000596 65535 f
0000000597 65535 f
0000000598 65535 f
0000000599 65535 f
0000000600 65535 f
0000000601 65535 f
0000000602 65535 f
0000000603 65535 f
0000000605 65535 f
0000307019 00000 n
0000000606 65535 f
0000000607 65535 f
0000000608 65535 f
0000000609 65535 f
0000000610 65535 f
0000000611 65535 f
0000000612 65535 f
0000000613 65535 f
0000000614 65535 f
0000000615 65535 f
0000000616 65535 f
0000000617 65535 f
0000000618 65535 f
0000000619 65535 f
0000000620 65535 f
0000000621 65535 f
0000000622 65535 f
0000000623 65535 f
0000000624 65535 f
0000000625 65535 f
0000000626 65535 f
0000000627 65535 f
0000000628 65535 f
0000000629 65535 f
0000000630 65535 f
0000000631 65535 f
0000000632 65535 f
0000000633 65535 f
0000000634 65535 f
0000000635 65535 f
0000000636 65535 f
0000000637 65535 f
0000000638 65535 f
0000000639 65535 f
0000000640 65535 f
0000000641 65535 f
0000000642 65535 f
0000000643 65535 f
0000000644 65535 f
0000000645 65535 f
0000000646 65535 f
0000000647 65535 f
0000000648 65535 f
0000000649 65535 f
0000000650 65535 f
0000000651 65535 f
0000000652 65535 f
0000000653 65535 f
0000000654 65535 f
0000000655 65535 f
0000000656 65535 f
0000000657 65535 f
0000000658 65535 f
0000000659 65535 f
0000000660 65535 f
0000000661 65535 f
0000000662 65535 f
0000000663 65535 f
0000000664 65535 f
0000000665 65535 f
0000000666 65535 f
0000000667 65535 f
0000000668 65535 f
0000000669 65535 f
0000000670 65535 f
0000000671 65535 f
0000000672 65535 f
0000000673 65535 f
0000000674 65535 f
0000000675 65535 f
0000000676 65535 f
0000000677 65535 f
0000000678 65535 f
0000000679 65535 f
0000000680 65535 f
0000000681 65535 f
0000000682 65535 f
0000000683 65535 f
0000000684 65535 f
0000000685 65535 f
0000000686 65535 f
0000000687 65535 f
0000000688 65535 f
0000000689 65535 f
0000000690 65535 f
0000000691 65535 f
0000000692 65535 f
0000000693 65535 f
0000000694 65535 f
0000000695 65535 f
0000000696 65535 f
0000000697 65535 f
0000000698 65535 f
0000000699 65535 f
0000000700 65535 f
0000000701 65535 f
0000000702 65535 f
0000000703 65535 f
0000000704 65535 f
0000000705 65535 f
0000000706 65535 f
0000000707 65535 f
0000000708 65535 f
0000000709 65535 f
0000000710 65535 f
0000000711 65535 f
0000000712 65535 f
0000000713 65535 f
0000000714 65535 f
0000000715 65535 f
0000000716 65535 f
0000000717 65535 f
0000000718 65535 f
0000000719 65535 f
0000000720 65535 f
0000000721 65535 f
0000000722 65535 f
0000000723 65535 f
0000000724 65535 f
0000000725 65535 f
0000000726 65535 f
0000000727 65535 f
0000000728 65535 f
0000000729 65535 f
0000000730 65535 f
0000000732 65535 f
0000316150 00000 n
0000000733 65535 f
0000000734 65535 f
0000000735 65535 f
0000000736 65535 f
0000000737 65535 f
0000000738 65535 f
0000000739 65535 f
0000000740 65535 f
0000000741 65535 f
0000000742 65535 f
0000000743 65535 f
0000000744 65535 f
0000000745 65535 f
0000000746 65535 f
0000000747 65535 f
0000000748 65535 f
0000000749 65535 f
0000000750 65535 f
0000000751 65535 f
0000000752 65535 f
0000000753 65535 f
0000000754 65535 f
0000000755 65535 f
0000000756 65535 f
0000000757 65535 f
0000000758 65535 f
0000000759 65535 f
0000000760 65535 f
0000000761 65535 f
0000000762 65535 f
0000000763 65535 f
0000000764 65535 f
0000000765 65535 f
0000000766 65535 f
0000000767 65535 f
0000000768 65535 f
0000000769 65535 f
0000000770 65535 f
0000000771 65535 f
0000000772 65535 f
0000000773 65535 f
0000000774 65535 f
0000000775 65535 f
0000000776 65535 f
0000000777 65535 f
0000000778 65535 f
0000000779 65535 f
0000000780 65535 f
0000000781 65535 f
0000000782 65535 f
0000000783 65535 f
0000000784 65535 f
0000000785 65535 f
0000000786 65535 f
0000000787 65535 f
0000000788 65535 f
0000000789 65535 f
0000000790 65535 f
0000000791 65535 f
0000000792 65535 f
0000000793 65535 f
0000000794 65535 f
0000000795 65535 f
0000000796 65535 f
0000000797 65535 f
0000000798 65535 f
0000000799 65535 f
0000000800 65535 f
0000000801 65535 f
0000000802 65535 f
0000000803 65535 f
0000000804 65535 f
0000000805 65535 f
0000000806 65535 f
0000000807 65535 f
0000000808 65535 f
0000000809 65535 f
0000000810 65535 f
0000000811 65535 f
0000000812 65535 f
0000000813 65535 f
0000000814 65535 f
0000000815 65535 f
0000000816 65535 f
0000000817 65535 f
0000000818 65535 f
0000000819 65535 f
0000000820 65535 f
0000000821 65535 f
0000000822 65535 f
0000000823 65535 f
0000000824 65535 f
0000000825 65535 f
0000000826 65535 f
0000000827 65535 f
0000000828 65535 f
0000000829 65535 f
0000000830 65535 f
0000000831 65535 f
0000000832 65535 f
0000000833 65535 f
0000000834 65535 f
0000000835 65535 f
0000000836 65535 f
0000000837 65535 f
0000000838 65535 f
0000000839 65535 f
0000000840 65535 f
0000000841 65535 f
0000000842 65535 f
0000000843 65535 f
0000000844 65535 f
0000000845 65535 f
0000000846 65535 f
0000000847 65535 f
0000000848 65535 f
0000000849 65535 f
0000000850 65535 f
0000000851 65535 f
0000000852 65535 f
0000000853 65535 f
0000000854 65535 f
0000000855 65535 f
0000000856 65535 f
0000000857 65535 f
0000000858 65535 f
0000000859 65535 f
0000000860 65535 f
0000000861 65535 f
0000000862 65535 f
0000000863 65535 f
0000000865 65535 f
0000316201 00000 n
0000000866 65535 f
0000000867 65535 f
0000000868 65535 f
0000000869 65535 f
0000000871 65535 f
0000316252 00000 n
0000000872 65535 f
0000000873 65535 f
0000000874 65535 f
0000000875 65535 f
0000000877 65535 f
0000316303 00000 n
0000000878 65535 f
0000000879 65535 f
0000000880 65535 f
0000000881 65535 f
0000000882 65535 f
0000000883 65535 f
0000000884 65535 f
0000000885 65535 f
0000000886 65535 f
0000000887 65535 f
0000000888 65535 f
0000000889 65535 f
0000000890 65535 f
0000000891 65535 f
0000000892 65535 f
0000000893 65535 f
0000000894 65535 f
0000000895 65535 f
0000000897 65535 f
0000316354 00000 n
0000000898 65535 f
0000000899 65535 f
0000000900 65535 f
0000000901 65535 f
0000000902 65535 f
0000000903 65535 f
0000000904 65535 f
0000000905 65535 f
0000000906 65535 f
0000000907 65535 f
0000000908 65535 f
0000000909 65535 f
0000000910 65535 f
0000000911 65535 f
0000000912 65535 f
0000000913 65535 f
0000000914 65535 f
0000000915 65535 f
0000000916 65535 f
0000000917 65535 f
0000000918 65535 f
0000000919 65535 f
0000000920 65535 f
0000000922 65535 f
0000316405 00000 n
0000000923 65535 f
0000000924 65535 f
0000000925 65535 f
0000000926 65535 f
0000000927 65535 f
0000000929 65535 f
0000316456 00000 n
0000000930 65535 f
0000000931 65535 f
0000000932 65535 f
0000000933 65535 f
0000000934 65535 f
0000000935 65535 f
0000000937 65535 f
0000316507 00000 n
0000000938 65535 f
0000000939 65535 f
0000000940 65535 f
0000000941 65535 f
0000000942 65535 f
0000000943 65535 f
0000000944 65535 f
0000000945 65535 f
0000000946 65535 f
0000000947 65535 f
0000000948 65535 f
0000000949 65535 f
0000000950 65535 f
0000000951 65535 f
0000000952 65535 f
0000000953 65535 f
0000000954 65535 f
0000000955 65535 f
0000000956 65535 f
0000000957 65535 f
0000000958 65535 f
0000000960 65535 f
0000316558 00000 n
0000000961 65535 f
0000000962 65535 f
0000000963 65535 f
0000000964 65535 f
0000000966 65535 f
0000316609 00000 n
0000000967 65535 f
0000000968 65535 f
0000000969 65535 f
0000000970 65535 f
0000000971 65535 f
0000000972 65535 f
0000000973 65535 f
0000000974 65535 f
0000000975 65535 f
0000000976 65535 f
0000000977 65535 f
0000000978 65535 f
0000000979 65535 f
0000000980 65535 f
0000000981 65535 f
0000000982 65535 f
0000000984 65535 f
0000316660 00000 n
0000000985 65535 f
0000000986 65535 f
0000000987 65535 f
0000000988 65535 f
0000000989 65535 f
0000000990 65535 f
0000000991 65535 f
0000000992 65535 f
0000000993 65535 f
0000000994 65535 f
0000000995 65535 f
0000000996 65535 f
0000000997 65535 f
0000000998 65535 f
0000000999 65535 f
0000001000 65535 f
0000001001 65535 f
0000001003 65535 f
0000316711 00000 n
0000001004 65535 f
0000001005 65535 f
0000001006 65535 f
0000001007 65535 f
0000001009 65535 f
0000316763 00000 n
0000001010 65535 f
0000001011 65535 f
0000001012 65535 f
0000001013 65535 f
0000001014 65535 f
0000001015 65535 f
0000001016 65535 f
0000001017 65535 f
0000001018 65535 f
0000001019 65535 f
0000001020 65535 f
0000001021 65535 f
0000001022 65535 f
0000001024 65535 f
0000316815 00000 n
0000001025 65535 f
0000001026 65535 f
0000001027 65535 f
0000001028 65535 f
0000001030 65535 f
0000316867 00000 n
0000001031 65535 f
0000001032 65535 f
0000001033 65535 f
0000001034 65535 f
0000001035 65535 f
0000001036 65535 f
0000001037 65535 f
0000001038 65535 f
0000001039 65535 f
0000001040 65535 f
0000001041 65535 f
0000001042 65535 f
0000001043 65535 f
0000001044 65535 f
0000001045 65535 f
0000001046 65535 f
0000001047 65535 f
0000001048 65535 f
0000001050 65535 f
0000316919 00000 n
0000001051 65535 f
0000001052 65535 f
0000001053 65535 f
0000001054 65535 f
0000001055 65535 f
0000001056 65535 f
0000001057 65535 f
0000001058 65535 f
0000001059 65535 f
0000001060 65535 f
0000001061 65535 f
0000001062 65535 f
0000001063 65535 f
0000001064 65535 f
0000001065 65535 f
0000001066 65535 f
0000001067 65535 f
0000001068 65535 f
0000001069 65535 f
0000001070 65535 f
0000001071 65535 f
0000001072 65535 f
0000001073 65535 f
0000001074 65535 f
0000001075 65535 f
0000001076 65535 f
0000001077 65535 f
0000001078 65535 f
0000001079 65535 f
0000001081 65535 f
0000316971 00000 n
0000001082 65535 f
0000001083 65535 f
0000001084 65535 f
0000001085 65535 f
0000001087 65535 f
0000317023 00000 n
0000001088 65535 f
0000001089 65535 f
0000001090 65535 f
0000001091 65535 f
0000001092 65535 f
0000001093 65535 f
0000001094 65535 f
0000001095 65535 f
0000001096 65535 f
0000001097 65535 f
0000001098 65535 f
0000001099 65535 f
0000001100 65535 f
0000001101 65535 f
0000001102 65535 f
0000001103 65535 f
0000001104 65535 f
0000001105 65535 f
0000001106 65535 f
0000001107 65535 f
0000001108 65535 f
0000001109 65535 f
0000001110 65535 f
0000001111 65535 f
0000001112 65535 f
0000001113 65535 f
0000001114 65535 f
0000001115 65535 f
0000001116 65535 f
0000001117 65535 f
0000001118 65535 f
0000001120 65535 f
0000317075 00000 n
0000001121 65535 f
0000001122 65535 f
0000001123 65535 f
0000001124 65535 f
0000001125 65535 f
0000001126 65535 f
0000001127 65535 f
0000001128 65535 f
0000001129 65535 f
0000001130 65535 f
0000001131 65535 f
0000001132 65535 f
0000001134 65535 f
0000317127 00000 n
0000001135 65535 f
0000001136 65535 f
0000001137 65535 f
0000001138 65535 f
0000001139 65535 f
0000001140 65535 f
0000001141 65535 f
0000001142 65535 f
0000001143 65535 f
0000001144 65535 f
0000001145 65535 f
0000001146 65535 f
0000001147 65535 f
0000001148 65535 f
0000001149 65535 f
0000001150 65535 f
0000001151 65535 f
0000001152 65535 f
0000001153 65535 f
0000001154 65535 f
0000001155 65535 f
0000001156 65535 f
0000001158 65535 f
0000317179 00000 n
0000001159 65535 f
0000001160 65535 f
0000001161 65535 f
0000001162 65535 f
0000001163 65535 f
0000001164 65535 f
0000001165 65535 f
0000001166 65535 f
0000001167 65535 f
0000001168 65535 f
0000001169 65535 f
0000001170 65535 f
0000001171 65535 f
0000001172 65535 f
0000001173 65535 f
0000001174 65535 f
0000001176 65535 f
0000317231 00000 n
0000001177 65535 f
0000001178 65535 f
0000001179 65535 f
0000001180 65535 f
0000001181 65535 f
0000001182 65535 f
0000001183 65535 f
0000001184 65535 f
0000001185 65535 f
0000001186 65535 f
0000001187 65535 f
0000001188 65535 f
0000001189 65535 f
0000001190 65535 f
0000001191 65535 f
0000001192 65535 f
0000001193 65535 f
0000001195 65535 f
0000317283 00000 n
0000001196 65535 f
0000001197 65535 f
0000001198 65535 f
0000001199 65535 f
0000001200 65535 f
0000001201 65535 f
0000001202 65535 f
0000001203 65535 f
0000001204 65535 f
0000001205 65535 f
0000001206 65535 f
0000001208 65535 f
0000317335 00000 n
0000001209 65535 f
0000001210 65535 f
0000001211 65535 f
0000001212 65535 f
0000001213 65535 f
0000001214 65535 f
0000001215 65535 f
0000001216 65535 f
0000001217 65535 f
0000001218 65535 f
0000001219 65535 f
0000001220 65535 f
0000001221 65535 f
0000001222 65535 f
0000001223 65535 f
0000001224 65535 f
0000001225 65535 f
0000001226 65535 f
0000001227 65535 f
0000001228 65535 f
0000001229 65535 f
0000001230 65535 f
0000001231 65535 f
0000001232 65535 f
0000001233 65535 f
0000001234 65535 f
0000001235 65535 f
0000001236 65535 f
0000001237 65535 f
0000001238 65535 f
0000001239 65535 f
0000001240 65535 f
0000001241 65535 f
0000001242 65535 f
0000001244 65535 f
0000326198 00000 n
0000001245 65535 f
0000001246 65535 f
0000001247 65535 f
0000001248 65535 f
0000001249 65535 f
0000001250 65535 f
0000001251 65535 f
0000001252 65535 f
0000001253 65535 f
0000001254 65535 f
0000001255 65535 f
0000001256 65535 f
0000001258 65535 f
0000326250 00000 n
0000001259 65535 f
0000001260 65535 f
0000001261 65535 f
0000001262 65535 f
0000001264 65535 f
0000326302 00000 n
0000001265 65535 f
0000001266 65535 f
0000001267 65535 f
0000001268 65535 f
0000001269 65535 f
0000001270 65535 f
0000001271 65535 f
0000001272 65535 f
0000001273 65535 f
0000001274 65535 f
0000001275 65535 f
0000001276 65535 f
0000001277 65535 f
0000001279 65535 f
0000326354 00000 n
0000001281 65535 f
0000326406 00000 n
0000001282 65535 f
0000001283 65535 f
0000001284 65535 f
0000001285 65535 f
0000001286 65535 f
0000001287 65535 f
0000001288 65535 f
0000001289 65535 f
0000001290 65535 f
0000001291 65535 f
0000001292 65535 f
0000001293 65535 f
0000001294 65535 f
0000001296 65535 f
0000326458 00000 n
0000001297 65535 f
0000001298 65535 f
0000001299 65535 f
0000001300 65535 f
0000001302 65535 f
0000326510 00000 n
0000001303 65535 f
0000001304 65535 f
0000001305 65535 f
0000001306 65535 f
0000001307 65535 f
0000001308 65535 f
0000001309 65535 f
0000001310 65535 f
0000001311 65535 f
0000001312 65535 f
0000001313 65535 f
0000001314 65535 f
0000001315 65535 f
0000001316 65535 f
0000001317 65535 f
0000001318 65535 f
0000001319 65535 f
0000001320 65535 f
0000001321 65535 f
0000001322 65535 f
0000001323 65535 f
0000001324 65535 f
0000001325 65535 f
0000001326 65535 f
0000001327 65535 f
0000001328 65535 f
0000001329 65535 f
0000001330 65535 f
0000001331 65535 f
0000001332 65535 f
0000001333 65535 f
0000001335 65535 f
0000326562 00000 n
0000001336 65535 f
0000001337 65535 f
0000001338 65535 f
0000001339 65535 f
0000001341 65535 f
0000326614 00000 n
0000001342 65535 f
0000001343 65535 f
0000001344 65535 f
0000001345 65535 f
0000001346 65535 f
0000001347 65535 f
0000001348 65535 f
0000001349 65535 f
0000001350 65535 f
0000001351 65535 f
0000001352 65535 f
0000001353 65535 f
0000001354 65535 f
0000001355 65535 f
0000001356 65535 f
0000001357 65535 f
0000001358 65535 f
0000001360 65535 f
0000326666 00000 n
0000001361 65535 f
0000001362 65535 f
0000001363 65535 f
0000001364 65535 f
0000001366 65535 f
0000326718 00000 n
0000001367 65535 f
0000001368 65535 f
0000001369 65535 f
0000001370 65535 f
0000001371 65535 f
0000001372 65535 f
0000001373 65535 f
0000001374 65535 f
0000001375 65535 f
0000001376 65535 f
0000001377 65535 f
0000001378 65535 f
0000001379 65535 f
0000001380 65535 f
0000001381 65535 f
0000001382 65535 f
0000001383 65535 f
0000001384 65535 f
0000001385 65535 f
0000001386 65535 f
0000001387 65535 f
0000001388 65535 f
0000001389 65535 f
0000001390 65535 f
0000001392 65535 f
0000326770 00000 n
0000001393 65535 f
0000001394 65535 f
0000001395 65535 f
0000001396 65535 f
0000001398 65535 f
0000326822 00000 n
0000001399 65535 f
0000001400 65535 f
0000001401 65535 f
0000001402 65535 f
0000001403 65535 f
0000001404 65535 f
0000001405 65535 f
0000001406 65535 f
0000001407 65535 f
0000001408 65535 f
0000001409 65535 f
0000001410 65535 f
0000001411 65535 f
0000001412 65535 f
0000001413 65535 f
0000001414 65535 f
0000001415 65535 f
0000001416 65535 f
0000001418 65535 f
0000326874 00000 n
0000001419 65535 f
0000001420 65535 f
0000001421 65535 f
0000001422 65535 f
0000001423 65535 f
0000001424 65535 f
0000001425 65535 f
0000001426 65535 f
0000001427 65535 f
0000001428 65535 f
0000001429 65535 f
0000001430 65535 f
0000001431 65535 f
0000001432 65535 f
0000001433 65535 f
0000001434 65535 f
0000001435 65535 f
0000001436 65535 f
0000001437 65535 f
0000001438 65535 f
0000001439 65535 f
0000001440 65535 f
0000001442 65535 f
0000326926 00000 n
0000001443 65535 f
0000001444 65535 f
0000001445 65535 f
0000001446 65535 f
0000001447 65535 f
0000001448 65535 f
0000001449 65535 f
0000001450 65535 f
0000001451 65535 f
0000001452 65535 f
0000001453 65535 f
0000001454 65535 f
0000001455 65535 f
0000001456 65535 f
0000001457 65535 f
0000001458 65535 f
0000001459 65535 f
0000001460 65535 f
0000001461 65535 f
0000001462 65535 f
0000001463 65535 f
0000001464 65535 f
0000001465 65535 f
0000001466 65535 f
0000001467 65535 f
0000001468 65535 f
0000001469 65535 f
0000001470 65535 f
0000001471 65535 f
0000001472 65535 f
0000001473 65535 f
0000001474 65535 f
0000001475 65535 f
0000001476 65535 f
0000001477 65535 f
0000001478 65535 f
0000001479 65535 f
0000001480 65535 f
0000001482 65535 f
0000326978 00000 n
0000001483 65535 f
0000001484 65535 f
0000001485 65535 f
0000001486 65535 f
0000001488 65535 f
0000327030 00000 n
0000001489 65535 f
0000001490 65535 f
0000001491 65535 f
0000001492 65535 f
0000001493 65535 f
0000001494 65535 f
0000001495 65535 f
0000001496 65535 f
0000001497 65535 f
0000001498 65535 f
0000001499 65535 f
0000001500 65535 f
0000001501 65535 f
0000001503 65535 f
0000327082 00000 n
0000001504 65535 f
0000001505 65535 f
0000001506 65535 f
0000001507 65535 f
0000001509 65535 f
0000327134 00000 n
0000001510 65535 f
0000001511 65535 f
0000001512 65535 f
0000001513 65535 f
0000001514 65535 f
0000001515 65535 f
0000001516 65535 f
0000001517 65535 f
0000001518 65535 f
0000001519 65535 f
0000001520 65535 f
0000001521 65535 f
0000001523 65535 f
0000327186 00000 n
0000001524 65535 f
0000001525 65535 f
0000001526 65535 f
0000001527 65535 f
0000001528 65535 f
0000001529 65535 f
0000001530 65535 f
0000001531 65535 f
0000001532 65535 f
0000001533 65535 f
0000001534 65535 f
0000001535 65535 f
0000001536 65535 f
0000001537 65535 f
0000001538 65535 f
0000001539 65535 f
0000001540 65535 f
0000001541 65535 f
0000001543 65535 f
0000327238 00000 n
0000001544 65535 f
0000001545 65535 f
0000001546 65535 f
0000001547 65535 f
0000001549 65535 f
0000327290 00000 n
0000001550 65535 f
0000001551 65535 f
0000001552 65535 f
0000001553 65535 f
0000001554 65535 f
0000001555 65535 f
0000001556 65535 f
0000001557 65535 f
0000001558 65535 f
0000001560 65535 f
0000327342 00000 n
0000001561 65535 f
0000001562 65535 f
0000001563 65535 f
0000001564 65535 f
0000001565 65535 f
0000001566 65535 f
0000001567 65535 f
0000001568 65535 f
0000001569 65535 f
0000001570 65535 f
0000001571 65535 f
0000001572 65535 f
0000001573 65535 f
0000001574 65535 f
0000001575 65535 f
0000001576 65535 f
0000001577 65535 f
0000001578 65535 f
0000001579 65535 f
0000001580 65535 f
0000001581 65535 f
0000001582 65535 f
0000001583 65535 f
0000001584 65535 f
0000001585 65535 f
0000001586 65535 f
0000001587 65535 f
0000001588 65535 f
0000001589 65535 f
0000001590 65535 f
0000001591 65535 f
0000001592 65535 f
0000001593 65535 f
0000001594 65535 f
0000001595 65535 f
0000001596 65535 f
0000001597 65535 f
0000001598 65535 f
0000001599 65535 f
0000001600 65535 f
0000001601 65535 f
0000001602 65535 f
0000001603 65535 f
0000001604 65535 f
0000001605 65535 f
0000001606 65535 f
0000001607 65535 f
0000001608 65535 f
0000001609 65535 f
0000001610 65535 f
0000001611 65535 f
0000001612 65535 f
0000001613 65535 f
0000001614 65535 f
0000001615 65535 f
0000001616 65535 f
0000001617 65535 f
0000001618 65535 f
0000001619 65535 f
0000001620 65535 f
0000001621 65535 f
0000001622 65535 f
0000001623 65535 f
0000001624 65535 f
0000001625 65535 f
0000001626 65535 f
0000001627 65535 f
0000001628 65535 f
0000001629 65535 f
0000001630 65535 f
0000001631 65535 f
0000001632 65535 f
0000001633 65535 f
0000001634 65535 f
0000001635 65535 f
0000001636 65535 f
0000001637 65535 f
0000001638 65535 f
0000001639 65535 f
0000001640 65535 f
0000001641 65535 f
0000001642 65535 f
0000001643 65535 f
0000001644 65535 f
0000001645 65535 f
0000001646 65535 f
0000001647 65535 f
0000001648 65535 f
0000001649 65535 f
0000001650 65535 f
0000001651 65535 f
0000001652 65535 f
0000001653 65535 f
0000001654 65535 f
0000001655 65535 f
0000001656 65535 f
0000001657 65535 f
0000001658 65535 f
0000001659 65535 f
0000001660 65535 f
0000001661 65535 f
0000001662 65535 f
0000001663 65535 f
0000001664 65535 f
0000001665 65535 f
0000001666 65535 f
0000001667 65535 f
0000001668 65535 f
0000001669 65535 f
0000001670 65535 f
0000001671 65535 f
0000001672 65535 f
0000001673 65535 f
0000001674 65535 f
0000001675 65535 f
0000001676 65535 f
0000001677 65535 f
0000001678 65535 f
0000001679 65535 f
0000001680 65535 f
0000001681 65535 f
0000001682 65535 f
0000001683 65535 f
0000001684 65535 f
0000001685 65535 f
0000001686 65535 f
0000001687 65535 f
0000001688 65535 f
0000001689 65535 f
0000001690 65535 f
0000001691 65535 f
0000001692 65535 f
0000001693 65535 f
0000001694 65535 f
0000001695 65535 f
0000001696 65535 f
0000001697 65535 f
0000001698 65535 f
0000001699 65535 f
0000001700 65535 f
0000001701 65535 f
0000001702 65535 f
0000001703 65535 f
0000001704 65535 f
0000001705 65535 f
0000001706 65535 f
0000001707 65535 f
0000001708 65535 f
0000001709 65535 f
0000001710 65535 f
0000001711 65535 f
0000001712 65535 f
0000001713 65535 f
0000001714 65535 f
0000001715 65535 f
0000001716 65535 f
0000001717 65535 f
0000001718 65535 f
0000001719 65535 f
0000001720 65535 f
0000001721 65535 f
0000001722 65535 f
0000001723 65535 f
0000001724 65535 f
0000001725 65535 f
0000001726 65535 f
0000001727 65535 f
0000001728 65535 f
0000001729 65535 f
0000001730 65535 f
0000001731 65535 f
0000001732 65535 f
0000001733 65535 f
0000001734 65535 f
0000001735 65535 f
0000001736 65535 f
0000001737 65535 f
0000001738 65535 f
0000001739 65535 f
0000001740 65535 f
0000001741 65535 f
0000001742 65535 f
0000001743 65535 f
0000001744 65535 f
0000001745 65535 f
0000001746 65535 f
0000001747 65535 f
0000001748 65535 f
0000001749 65535 f
0000001750 65535 f
0000001751 65535 f
0000001752 65535 f
0000001753 65535 f
0000001754 65535 f
0000001755 65535 f
0000001756 65535 f
0000001757 65535 f
0000001758 65535 f
0000001759 65535 f
0000001760 65535 f
0000001761 65535 f
0000001762 65535 f
0000001763 65535 f
0000001764 65535 f
0000001765 65535 f
0000001766 65535 f
0000001767 65535 f
0000001768 65535 f
0000001769 65535 f
0000001770 65535 f
0000001771 65535 f
0000001772 65535 f
0000001773 65535 f
0000001774 65535 f
0000001775 65535 f
0000001776 65535 f
0000001777 65535 f
0000001778 65535 f
0000001779 65535 f
0000001780 65535 f
0000001781 65535 f
0000001782 65535 f
0000001783 65535 f
0000001784 65535 f
0000001785 65535 f
0000001786 65535 f
0000001787 65535 f
0000001788 65535 f
0000001789 65535 f
0000001790 65535 f
0000001791 65535 f
0000001792 65535 f
0000001793 65535 f
0000001794 65535 f
0000001795 65535 f
0000001796 65535 f
0000001797 65535 f
0000001798 65535 f
0000001799 65535 f
0000001800 65535 f
0000001801 65535 f
0000001802 65535 f
0000001803 65535 f
0000001804 65535 f
0000001805 65535 f
0000001806 65535 f
0000001807 65535 f
0000001808 65535 f
0000001809 65535 f
0000001810 65535 f
0000001811 65535 f
0000001812 65535 f
0000001813 65535 f
0000001814 65535 f
0000001815 65535 f
0000001816 65535 f
0000001817 65535 f
0000001818 65535 f
0000001819 65535 f
0000001820 65535 f
0000001821 65535 f
0000001822 65535 f
0000001823 65535 f
0000001824 65535 f
0000001825 65535 f
0000001826 65535 f
0000001827 65535 f
0000001828 65535 f
0000001829 65535 f
0000001830 65535 f
0000001831 65535 f
0000001832 65535 f
0000001833 65535 f
0000001834 65535 f
0000001835 65535 f
0000001836 65535 f
0000001837 65535 f
0000001838 65535 f
0000001839 65535 f
0000001840 65535 f
0000001841 65535 f
0000001842 65535 f
0000001843 65535 f
0000001844 65535 f
0000001845 65535 f
0000001846 65535 f
0000001847 65535 f
0000001848 65535 f
0000001849 65535 f
0000001850 65535 f
0000001851 65535 f
0000001852 65535 f
0000001853 65535 f
0000001854 65535 f
0000001855 65535 f
0000001856 65535 f
0000001857 65535 f
0000001858 65535 f
0000001859 65535 f
0000001860 65535 f
0000001861 65535 f
0000001862 65535 f
0000001863 65535 f
0000001864 65535 f
0000001865 65535 f
0000001866 65535 f
0000001867 65535 f
0000001868 65535 f
0000001869 65535 f
0000001870 65535 f
0000001871 65535 f
0000001872 65535 f
0000001873 65535 f
0000001874 65535 f
0000001875 65535 f
0000001876 65535 f
0000001877 65535 f
0000001878 65535 f
0000001880 65535 f
0000334806 00000 n
0000001881 65535 f
0000001882 65535 f
0000001883 65535 f
0000001884 65535 f
0000001885 65535 f
0000001886 65535 f
0000001887 65535 f
0000001888 65535 f
0000001889 65535 f
0000001890 65535 f
0000001891 65535 f
0000001892 65535 f
0000001893 65535 f
0000001894 65535 f
0000001895 65535 f
0000001896 65535 f
0000001897 65535 f
0000001898 65535 f
0000001899 65535 f
0000001900 65535 f
0000001902 65535 f
0000334858 00000 n
0000001903 65535 f
0000001904 65535 f
0000001905 65535 f
0000001906 65535 f
0000001907 65535 f
0000001908 65535 f
0000001909 65535 f
0000001910 65535 f
0000001911 65535 f
0000001912 65535 f
0000001913 65535 f
0000001914 65535 f
0000001915 65535 f
0000001916 65535 f
0000001917 65535 f
0000001918 65535 f
0000001919 65535 f
0000001920 65535 f
0000001921 65535 f
0000001922 65535 f
0000001923 65535 f
0000001924 65535 f
0000001925 65535 f
0000001926 65535 f
0000001927 65535 f
0000001928 65535 f
0000001929 65535 f
0000001930 65535 f
0000001931 65535 f
0000001932 65535 f
0000001933 65535 f
0000001934 65535 f
0000001935 65535 f
0000001936 65535 f
0000001937 65535 f
0000001938 65535 f
0000001939 65535 f
0000001940 65535 f
0000001941 65535 f
0000001942 65535 f
0000001943 65535 f
0000001944 65535 f
0000001945 65535 f
0000001946 65535 f
0000001947 65535 f
0000001948 65535 f
0000001949 65535 f
0000001950 65535 f
0000001951 65535 f
0000001952 65535 f
0000001953 65535 f
0000001954 65535 f
0000001955 65535 f
0000001956 65535 f
0000001957 65535 f
0000001958 65535 f
0000001959 65535 f
0000001960 65535 f
0000001961 65535 f
0000001962 65535 f
0000001963 65535 f
0000001964 65535 f
0000001965 65535 f
0000001966 65535 f
0000001967 65535 f
0000001968 65535 f
0000001969 65535 f
0000001970 65535 f
0000001971 65535 f
0000001972 65535 f
0000001973 65535 f
0000001974 65535 f
0000001975 65535 f
0000001976 65535 f
0000001977 65535 f
0000001978 65535 f
0000001979 65535 f
0000001980 65535 f
0000001981 65535 f
0000001982 65535 f
0000001983 65535 f
0000001984 65535 f
0000001985 65535 f
0000001986 65535 f
0000001987 65535 f
0000001988 65535 f
0000001989 65535 f
0000001990 65535 f
0000001991 65535 f
0000001992 65535 f
0000001993 65535 f
0000001994 65535 f
0000001995 65535 f
0000001996 65535 f
0000001997 65535 f
0000001998 65535 f
0000001999 65535 f
0000002000 65535 f
0000002001 65535 f
0000002002 65535 f
0000002003 65535 f
0000002004 65535 f
0000002005 65535 f
0000002006 65535 f
0000002007 65535 f
0000002008 65535 f
0000002009 65535 f
0000002010 65535 f
0000002011 65535 f
0000002012 65535 f
0000002013 65535 f
0000002014 65535 f
0000002015 65535 f
0000002016 65535 f
0000002017 65535 f
0000002018 65535 f
0000002019 65535 f
0000002020 65535 f
0000002021 65535 f
0000002022 65535 f
0000002023 65535 f
0000002024 65535 f
0000002025 65535 f
0000002026 65535 f
0000002027 65535 f
0000002028 65535 f
0000002029 65535 f
0000002030 65535 f
0000002031 65535 f
0000002032 65535 f
0000002033 65535 f
0000002034 65535 f
0000002035 65535 f
0000002036 65535 f
0000002037 65535 f
0000002038 65535 f
0000002039 65535 f
0000002040 65535 f
0000002041 65535 f
0000002042 65535 f
0000002043 65535 f
0000002044 65535 f
0000002045 65535 f
0000002046 65535 f
0000002047 65535 f
0000002048 65535 f
0000002049 65535 f
0000002050 65535 f
0000002051 65535 f
0000002052 65535 f
0000002053 65535 f
0000002054 65535 f
0000002055 65535 f
0000002056 65535 f
0000002057 65535 f
0000002058 65535 f
0000002059 65535 f
0000002060 65535 f
0000002061 65535 f
0000002062 65535 f
0000002063 65535 f
0000002064 65535 f
0000002065 65535 f
0000002066 65535 f
0000002067 65535 f
0000002068 65535 f
0000002069 65535 f
0000002070 65535 f
0000002071 65535 f
0000002072 65535 f
0000002073 65535 f
0000002074 65535 f
0000002075 65535 f
0000002076 65535 f
0000002077 65535 f
0000002078 65535 f
0000002079 65535 f
0000002080 65535 f
0000002081 65535 f
0000002082 65535 f
0000002083 65535 f
0000002084 65535 f
0000002085 65535 f
0000002086 65535 f
0000002087 65535 f
0000002088 65535 f
0000002089 65535 f
0000002090 65535 f
0000002091 65535 f
0000002092 65535 f
0000002093 65535 f
0000002094 65535 f
0000002095 65535 f
0000002096 65535 f
0000002097 65535 f
0000002098 65535 f
0000002099 65535 f
0000002100 65535 f
0000002101 65535 f
0000002102 65535 f
0000002103 65535 f
0000002104 65535 f
0000002105 65535 f
0000002106 65535 f
0000002107 65535 f
0000002108 65535 f
0000002109 65535 f
0000002110 65535 f
0000002111 65535 f
0000002112 65535 f
0000002113 65535 f
0000002114 65535 f
0000002115 65535 f
0000002116 65535 f
0000002117 65535 f
0000002118 65535 f
0000002119 65535 f
0000002120 65535 f
0000002121 65535 f
0000002122 65535 f
0000002123 65535 f
0000002124 65535 f
0000002125 65535 f
0000002127 65535 f
0000334910 00000 n
0000002128 65535 f
0000002129 65535 f
0000002130 65535 f
0000002131 65535 f
0000002132 65535 f
0000002133 65535 f
0000002134 65535 f
0000002135 65535 f
0000002136 65535 f
0000002137 65535 f
0000002138 65535 f
0000002139 65535 f
0000002140 65535 f
0000002141 65535 f
0000002142 65535 f
0000002143 65535 f
0000002144 65535 f
0000002145 65535 f
0000002146 65535 f
0000002147 65535 f
0000002148 65535 f
0000002149 65535 f
0000002150 65535 f
0000002151 65535 f
0000002152 65535 f
0000002153 65535 f
0000002154 65535 f
0000002155 65535 f
0000002156 65535 f
0000002157 65535 f
0000002158 65535 f
0000002159 65535 f
0000002160 65535 f
0000002161 65535 f
0000002162 65535 f
0000002163 65535 f
0000002164 65535 f
0000002165 65535 f
0000002166 65535 f
0000002167 65535 f
0000002168 65535 f
0000002169 65535 f
0000002170 65535 f
0000002171 65535 f
0000002172 65535 f
0000002173 65535 f
0000002174 65535 f
0000002175 65535 f
0000002176 65535 f
0000002177 65535 f
0000002178 65535 f
0000002179 65535 f
0000002180 65535 f
0000002181 65535 f
0000002182 65535 f
0000002183 65535 f
0000002184 65535 f
0000002185 65535 f
0000002186 65535 f
0000002187 65535 f
0000002188 65535 f
0000002189 65535 f
0000002190 65535 f
0000002191 65535 f
0000002192 65535 f
0000002193 65535 f
0000002194 65535 f
0000002195 65535 f
0000002196 65535 f
0000002197 65535 f
0000002198 65535 f
0000002199 65535 f
0000002200 65535 f
0000002201 65535 f
0000002202 65535 f
0000002203 65535 f
0000002204 65535 f
0000002205 65535 f
0000002206 65535 f
0000002207 65535 f
0000002208 65535 f
0000002209 65535 f
0000002210 65535 f
0000002211 65535 f
0000002212 65535 f
0000002213 65535 f
0000002214 65535 f
0000002215 65535 f
0000002216 65535 f
0000002217 65535 f
0000002218 65535 f
0000002219 65535 f
0000002220 65535 f
0000002221 65535 f
0000002222 65535 f
0000002223 65535 f
0000002224 65535 f
0000002225 65535 f
0000002226 65535 f
0000002227 65535 f
0000002228 65535 f
0000002229 65535 f
0000002230 65535 f
0000002231 65535 f
0000002232 65535 f
0000002233 65535 f
0000002234 65535 f
0000002235 65535 f
0000002236 65535 f
0000002237 65535 f
0000002238 65535 f
0000002239 65535 f
0000002240 65535 f
0000002241 65535 f
0000002242 65535 f
0000002243 65535 f
0000002244 65535 f
0000002245 65535 f
0000002246 65535 f
0000002247 65535 f
0000002248 65535 f
0000002249 65535 f
0000002250 65535 f
0000002252 65535 f
0000334962 00000 n
0000002253 65535 f
0000002254 65535 f
0000002255 65535 f
0000002256 65535 f
0000002258 65535 f
0000335014 00000 n
0000002259 65535 f
0000002260 65535 f
0000002261 65535 f
0000002262 65535 f
0000002263 65535 f
0000002264 65535 f
0000002265 65535 f
0000002266 65535 f
0000002267 65535 f
0000002268 65535 f
0000002269 65535 f
0000002270 65535 f
0000002271 65535 f
0000002273 65535 f
0000344103 00000 n
0000002274 65535 f
0000002275 65535 f
0000002276 65535 f
0000002277 65535 f
0000002278 65535 f
0000002279 65535 f
0000002280 65535 f
0000002281 65535 f
0000002282 65535 f
0000002283 65535 f
0000002284 65535 f
0000002285 65535 f
0000002286 65535 f
0000002287 65535 f
0000002288 65535 f
0000002289 65535 f
0000002290 65535 f
0000002291 65535 f
0000002292 65535 f
0000002293 65535 f
0000002294 65535 f
0000002295 65535 f
0000002296 65535 f
0000002297 65535 f
0000002298 65535 f
0000002299 65535 f
0000002300 65535 f
0000002301 65535 f
0000002302 65535 f
0000002303 65535 f
0000002304 65535 f
0000002305 65535 f
0000002306 65535 f
0000002307 65535 f
0000002308 65535 f
0000002309 65535 f
0000002310 65535 f
0000002311 65535 f
0000002312 65535 f
0000002313 65535 f
0000002314 65535 f
0000002315 65535 f
0000002316 65535 f
0000002317 65535 f
0000002318 65535 f
0000002319 65535 f
0000002320 65535 f
0000002321 65535 f
0000002322 65535 f
0000002323 65535 f
0000002324 65535 f
0000002325 65535 f
0000002326 65535 f
0000002327 65535 f
0000002328 65535 f
0000002329 65535 f
0000002330 65535 f
0000002331 65535 f
0000002332 65535 f
0000002333 65535 f
0000002334 65535 f
0000002335 65535 f
0000002336 65535 f
0000002337 65535 f
0000002338 65535 f
0000002339 65535 f
0000002340 65535 f
0000002341 65535 f
0000002342 65535 f
0000002343 65535 f
0000002344 65535 f
0000002345 65535 f
0000002346 65535 f
0000002347 65535 f
0000002348 65535 f
0000002349 65535 f
0000002350 65535 f
0000002351 65535 f
0000002352 65535 f
0000002353 65535 f
0000002354 65535 f
0000002355 65535 f
0000002356 65535 f
0000002357 65535 f
0000002358 65535 f
0000002359 65535 f
0000002360 65535 f
0000002361 65535 f
0000002362 65535 f
0000002363 65535 f
0000002364 65535 f
0000002365 65535 f
0000002366 65535 f
0000002367 65535 f
0000002368 65535 f
0000002369 65535 f
0000002370 65535 f
0000002371 65535 f
0000002372 65535 f
0000002373 65535 f
0000002375 65535 f
0000344155 00000 n
0000002376 65535 f
0000002377 65535 f
0000002378 65535 f
0000002379 65535 f
0000002380 65535 f
0000002381 65535 f
0000002382 65535 f
0000002383 65535 f
0000002384 65535 f
0000002386 65535 f
0000344207 00000 n
0000002387 65535 f
0000002388 65535 f
0000002389 65535 f
0000002390 65535 f
0000002391 65535 f
0000002392 65535 f
0000002393 65535 f
0000002394 65535 f
0000002395 65535 f
0000002396 65535 f
0000002397 65535 f
0000002398 65535 f
0000002399 65535 f
0000002400 65535 f
0000002401 65535 f
0000002402 65535 f
0000002403 65535 f
0000002404 65535 f
0000002405 65535 f
0000002406 65535 f
0000002407 65535 f
0000002408 65535 f
0000002410 65535 f
0000344259 00000 n
0000002411 65535 f
0000002412 65535 f
0000002413 65535 f
0000002414 65535 f
0000002415 65535 f
0000002416 65535 f
0000002417 65535 f
0000002418 65535 f
0000002419 65535 f
0000002420 65535 f
0000002421 65535 f
0000002422 65535 f
0000002423 65535 f
0000002424 65535 f
0000002425 65535 f
0000002426 65535 f
0000002427 65535 f
0000002428 65535 f
0000002429 65535 f
0000002431 65535 f
0000344311 00000 n
0000002432 65535 f
0000002433 65535 f
0000002434 65535 f
0000002435 65535 f
0000002436 65535 f
0000002437 65535 f
0000002438 65535 f
0000002439 65535 f
0000002440 65535 f
0000002441 65535 f
0000002442 65535 f
0000002443 65535 f
0000002444 65535 f
0000002445 65535 f
0000002446 65535 f
0000002447 65535 f
0000002448 65535 f
0000002449 65535 f
0000002450 65535 f
0000002451 65535 f
0000002452 65535 f
0000002453 65535 f
0000002454 65535 f
0000002455 65535 f
0000002456 65535 f
0000002457 65535 f
0000002458 65535 f
0000002459 65535 f
0000002460 65535 f
0000002461 65535 f
0000002462 65535 f
0000002463 65535 f
0000002464 65535 f
0000002465 65535 f
0000002466 65535 f
0000002467 65535 f
0000002468 65535 f
0000002469 65535 f
0000002470 65535 f
0000002471 65535 f
0000002472 65535 f
0000002473 65535 f
0000002474 65535 f
0000002475 65535 f
0000002476 65535 f
0000002477 65535 f
0000002478 65535 f
0000002479 65535 f
0000002480 65535 f
0000002481 65535 f
0000002482 65535 f
0000002483 65535 f
0000002484 65535 f
0000002485 65535 f
0000002486 65535 f
0000002487 65535 f
0000002488 65535 f
0000002489 65535 f
0000002490 65535 f
0000002491 65535 f
0000002492 65535 f
0000002493 65535 f
0000002494 65535 f
0000002495 65535 f
0000002496 65535 f
0000002497 65535 f
0000002498 65535 f
0000002499 65535 f
0000002500 65535 f
0000002501 65535 f
0000002502 65535 f
0000002503 65535 f
0000002504 65535 f
0000002505 65535 f
0000002506 65535 f
0000002507 65535 f
0000002508 65535 f
0000002509 65535 f
0000002510 65535 f
0000002511 65535 f
0000002512 65535 f
0000002513 65535 f
0000002514 65535 f
0000002515 65535 f
0000002516 65535 f
0000002517 65535 f
0000002518 65535 f
0000002519 65535 f
0000002520 65535 f
0000002521 65535 f
0000002522 65535 f
0000002523 65535 f
0000002524 65535 f
0000002525 65535 f
0000002526 65535 f
0000002527 65535 f
0000002528 65535 f
0000002529 65535 f
0000002530 65535 f
0000002531 65535 f
0000002532 65535 f
0000002533 65535 f
0000002534 65535 f
0000002535 65535 f
0000002536 65535 f
0000002537 65535 f
0000002538 65535 f
0000002539 65535 f
0000002540 65535 f
0000002541 65535 f
0000002542 65535 f
0000002544 65535 f
0000344363 00000 n
0000002545 65535 f
0000002546 65535 f
0000002547 65535 f
0000002548 65535 f
0000002550 65535 f
0000344415 00000 n
0000002551 65535 f
0000002552 65535 f
0000002553 65535 f
0000002554 65535 f
0000002555 65535 f
0000002556 65535 f
0000002557 65535 f
0000002558 65535 f
0000002559 65535 f
0000002560 65535 f
0000002561 65535 f
0000002562 65535 f
0000002563 65535 f
0000002564 65535 f
0000002565 65535 f
0000002566 65535 f
0000002567 65535 f
0000002568 65535 f
0000002569 65535 f
0000002570 65535 f
0000002571 65535 f
0000002572 65535 f
0000002573 65535 f
0000002574 65535 f
0000002575 65535 f
0000002577 65535 f
0000344467 00000 n
0000002578 65535 f
0000002579 65535 f
0000002580 65535 f
0000002581 65535 f
0000002583 65535 f
0000344519 00000 n
0000002584 65535 f
0000002585 65535 f
0000002586 65535 f
0000002587 65535 f
0000002588 65535 f
0000002589 65535 f
0000002590 65535 f
0000002591 65535 f
0000002592 65535 f
0000002593 65535 f
0000002594 65535 f
0000002595 65535 f
0000002596 65535 f
0000002597 65535 f
0000002599 65535 f
0000344571 00000 n
0000002600 65535 f
0000002601 65535 f
0000002602 65535 f
0000002603 65535 f
0000002604 65535 f
0000002605 65535 f
0000002606 65535 f
0000002607 65535 f
0000002608 65535 f
0000002609 65535 f
0000002610 65535 f
0000002611 65535 f
0000002612 65535 f
0000002613 65535 f
0000002614 65535 f
0000002615 65535 f
0000002616 65535 f
0000002617 65535 f
0000002618 65535 f
0000002620 65535 f
0000344623 00000 n
0000002621 65535 f
0000002622 65535 f
0000002623 65535 f
0000002624 65535 f
0000002625 65535 f
0000002626 65535 f
0000002627 65535 f
0000002629 65535 f
0000344675 00000 n
0000002630 65535 f
0000002631 65535 f
0000002632 65535 f
0000002633 65535 f
0000002634 65535 f
0000002635 65535 f
0000002636 65535 f
0000002637 65535 f
0000002638 65535 f
0000002639 65535 f
0000002640 65535 f
0000002641 65535 f
0000002642 65535 f
0000002643 65535 f
0000002644 65535 f
0000002645 65535 f
0000002646 65535 f
0000002647 65535 f
0000002648 65535 f
0000002649 65535 f
0000002651 65535 f
0000344727 00000 n
0000002652 65535 f
0000002653 65535 f
0000002654 65535 f
0000002655 65535 f
0000002656 65535 f
0000002657 65535 f
0000002658 65535 f
0000002659 65535 f
0000002661 65535 f
0000344779 00000 n
0000002662 65535 f
0000002663 65535 f
0000002664 65535 f
0000002665 65535 f
0000002666 65535 f
0000002668 65535 f
0000344831 00000 n
0000002669 65535 f
0000002670 65535 f
0000002671 65535 f
0000002672 65535 f
0000002673 65535 f
0000002674 65535 f
0000002675 65535 f
0000002676 65535 f
0000002677 65535 f
0000002678 65535 f
0000002679 65535 f
0000002680 65535 f
0000002681 65535 f
0000002683 65535 f
0000344883 00000 n
0000002684 65535 f
0000002685 65535 f
0000002686 65535 f
0000002687 65535 f
0000002688 65535 f
0000002689 65535 f
0000002690 65535 f
0000002691 65535 f
0000002692 65535 f
0000002693 65535 f
0000002694 65535 f
0000002695 65535 f
0000002696 65535 f
0000002697 65535 f
0000002698 65535 f
0000002700 65535 f
0000344935 00000 n
0000002701 65535 f
0000002702 65535 f
0000002703 65535 f
0000002704 65535 f
0000002705 65535 f
0000002706 65535 f
0000002707 65535 f
0000002708 65535 f
0000002709 65535 f
0000002710 65535 f
0000002711 65535 f
0000002712 65535 f
0000002713 65535 f
0000002714 65535 f
0000002715 65535 f
0000002716 65535 f
0000002717 65535 f
0000002718 65535 f
0000002719 65535 f
0000002720 65535 f
0000002721 65535 f
0000002722 65535 f
0000002723 65535 f
0000002724 65535 f
0000002725 65535 f
0000002726 65535 f
0000002727 65535 f
0000002728 65535 f
0000002729 65535 f
0000002730 65535 f
0000002731 65535 f
0000002732 65535 f
0000002733 65535 f
0000002734 65535 f
0000002735 65535 f
0000002736 65535 f
0000002737 65535 f
0000002738 65535 f
0000002739 65535 f
0000002740 65535 f
0000002741 65535 f
0000002743 65535 f
0000344987 00000 n
0000002744 65535 f
0000002745 65535 f
0000002746 65535 f
0000002747 65535 f
0000002748 65535 f
0000002749 65535 f
0000002750 65535 f
0000002751 65535 f
0000002752 65535 f
0000002753 65535 f
0000002754 65535 f
0000002755 65535 f
0000002756 65535 f
0000002757 65535 f
0000002758 65535 f
0000002759 65535 f
0000002760 65535 f
0000002761 65535 f
0000002762 65535 f
0000002763 65535 f
0000002764 65535 f
0000002765 65535 f
0000002766 65535 f
0000002767 65535 f
0000002768 65535 f
0000002769 65535 f
0000002770 65535 f
0000002771 65535 f
0000002772 65535 f
0000002773 65535 f
0000002774 65535 f
0000002775 65535 f
0000002777 65535 f
0000345039 00000 n
0000002778 65535 f
0000002779 65535 f
0000002780 65535 f
0000002781 65535 f
0000002782 65535 f
0000002783 65535 f
0000002784 65535 f
0000002785 65535 f
0000002786 65535 f
0000002787 65535 f
0000002788 65535 f
0000002789 65535 f
0000002790 65535 f
0000002791 65535 f
0000002792 65535 f
0000002793 65535 f
0000002794 65535 f
0000002795 65535 f
0000002796 65535 f
0000002797 65535 f
0000002798 65535 f
0000002799 65535 f
0000002800 65535 f
0000002801 65535 f
0000002802 65535 f
0000002803 65535 f
0000002804 65535 f
0000002805 65535 f
0000002806 65535 f
0000002807 65535 f
0000002808 65535 f
0000002809 65535 f
0000002810 65535 f
0000002811 65535 f
0000002812 65535 f
0000002814 65535 f
0000350381 00000 n
0000002815 65535 f
0000002816 65535 f
0000002817 65535 f
0000002818 65535 f
0000002819 65535 f
0000002820 65535 f
0000002821 65535 f
0000002822 65535 f
0000002823 65535 f
0000002824 65535 f
0000002825 65535 f
0000002826 65535 f
0000002827 65535 f
0000002828 65535 f
0000002829 65535 f
0000002830 65535 f
0000002831 65535 f
0000002832 65535 f
0000002833 65535 f
0000002834 65535 f
0000002835 65535 f
0000002836 65535 f
0000002837 65535 f
0000002838 65535 f
0000002839 65535 f
0000002840 65535 f
0000002841 65535 f
0000002842 65535 f
0000002843 65535 f
0000002844 65535 f
0000002845 65535 f
0000002846 65535 f
0000002847 65535 f
0000000000 65535 f
0000350433 00000 n
0000350814 00000 n
0000494305 00000 n
0000494731 00000 n
0000495100 00000 n
0000495532 00000 n
0000544059 00000 n
0000544434 00000 n
0000544775 00000 n
0000545078 00000 n
0000552084 00000 n
0000552129 00000 n
0000552378 00000 n
0000596192 00000 n
0000596405 00000 n
0000599675 00000 n
0000599722 00000 n
trailer
<</Size 2865/Root 1 0 R/Info 151 0 R/ID[<EECEA4C6C2036E47838FEB7F759A3B71><EECEA4C6C2036E47838FEB7F759A3B71>] >>
startxref
605843
%%EOF
xref
0 0
trailer
<</Size 2865/Root 1 0 R/Info 151 0 R/ID[<EECEA4C6C2036E47838FEB7F759A3B71><EECEA4C6C2036E47838FEB7F759A3B71>] /Prev 605843/XRefStm 599722>>
startxref
663306
%%EOF
#48tsunakawa.takay@fujitsu.com
tsunakawa.takay@fujitsu.com
In reply to: MauMau (#1)
RE: I'd like to discuss scaleout at PGCon

Hello,

It seems you didn't include pgsql-hackers.

From: Sumanta Mukherjee <sumanta.mukherjee@enterprisedb.com>

I saw the presentation and it is great except that it seems to be unclear of both SD and SN if the storage and the compute are being explicitly separated. Separation of storage and compute would have some cost advantages as per my understanding. The following two work (ref below) has some information about the usefulness of this technique for scale out and so it would be an interesting addition to see if in the SN architecture that is being proposed could be modified to take care of this phenomenon and reap the gain.

Thanks. Separation of compute and storage is surely to be considered. Unlike the old days when the shared storage was considered to be a bottleneck with slow HDDs and FC-SAN, we could now expect high speed shared storage thanks to flash memory, NVMe-oF, and RDMA.

1. Philip A. Bernstein, Colin W. Reid, and Sudipto Das. 2011. Hyder - A
Transactional Record Manager for Shared Flash. In CIDR 2011.

This is interesting. I'll go into this. Do you know there's any product based on Hyder? OTOH, Hyder seems to require drastic changes when adopting for Postgres -- OCC, log-structured database, etc. I'd like to hear how feasible those are. However, its scale-out capability without the need for data or application partitioning appears appealing.

To explore another possibility that would have more affinity with the current Postgres, let me introduce our proprietary product called Symfoware. It's not based on Postgres.

It has shared nothing scale-out functionality with full ACID based on 2PC, conventional 2PL locking and distributed deadlock resolution. Despite being shared nothing, all the database files and transaction logs are stored on shared storage.

The database is divided into "log groups." Each log group has one transaction log and multiple tablespaces (it's called "database space" instead of tablespace.)

Each DB instance in the cluster owns multiple log groups, and handles reads/writes to the data in its owning log groups. When a DB instance fails, other surviving DB instances take over the log groups of the failed DB instance, recover the data using the transaction log of the log group, and accepts reads/writes to the data in the log group. The DBA configures which DB instance initially owns which log groups and which DB instances are candidates to take over which log groups.

This way, no server is idle as a standby. All DB instances work hard to process read-write transactions. This "no idle server for HA" is one of the things Oracle RAC users want in terms of cost.

However, it still requires data and application partitioning unlike Hyder. Does anyone think of a way to eliminate partitioning? Data and application partitioning is what Oracle RAC users want to avoid or cannot tolerate.

Ref: Introduction of the Symfoware shared nothing scale-out called "load share."
https://pdfs.semanticscholar.org/8b60/163593931cebc58e9f637cfb501500230adc.pdf

Regards
Takayuki Tsunakawa

--- below is Sumanta's original mail ---
From: Sumanta Mukherjee <sumanta.mukherjee@enterprisedb.com>
Sent: Wednesday, June 17, 2020 5:34 PM
To: Tsunakawa, Takayuki/綱川 貴之 <tsunakawa.takay@fujitsu.com>
Cc: Bruce Momjian <bruce@momjian.us>; Merlin Moncure <mmoncure@gmail.com>; Robert Haas <robertmhaas@gmail.com>; maumau307@gmail.com
Subject: Re: I'd like to discuss scaleout at PGCon

Hello,

I saw the presentation and it is great except that it seems to be unclear of both SD and SN if the storage and the compute are being explicitly separated. Separation of storage and compute would have some cost advantages as per my understanding. The following two work (ref below) has some information about the usefulness of this technique for scale out and so it would be an interesting addition to see if in the SN architecture that is being proposed could be modified to take care of this phenomenon and reap the gain.

1. Philip A. Bernstein, Colin W. Reid, and Sudipto Das. 2011. Hyder - A
Transactional Record Manager for Shared Flash. In CIDR 2011.

2. Dhruba Borthakur. 2017. The Birth of RocksDB-Cloud. http://rocksdb.
blogspot.com/2017/05/the-birth-of-rocksdb-cloud.html<http://blogspot.com/2017/05/the-birth-of-rocksdb-cloud.html&gt;.

With Regards,
Sumanta Mukherjee.
EnterpriseDB: http://www.enterprisedb.com

#49Sumanta Mukherjee
sumanta.mukherjee@enterprisedb.com
In reply to: tsunakawa.takay@fujitsu.com (#48)
Re: I'd like to discuss scaleout at PGCon

Hi,

I read through the symfora paper and it is a nice technique. I am not very
sure about where Hyder is used commercially but given that it has come out
of Microsoft Research so some microsoft products might be using it/some of
these concepts already.

With Regards,
Sumanta Mukherjee.
EnterpriseDB: http://www.enterprisedb.com

On Wed, Jun 17, 2020 at 9:38 PM tsunakawa.takay@fujitsu.com <
tsunakawa.takay@fujitsu.com> wrote:

Show quoted text

Hello,

It seems you didn't include pgsql-hackers.

From: Sumanta Mukherjee <sumanta.mukherjee@enterprisedb.com>

I saw the presentation and it is great except that it seems to be

unclear of both SD and SN if the storage and the compute are being
explicitly separated. Separation of storage and compute would have some
cost advantages as per my understanding. The following two work (ref below)
has some information about the usefulness of this technique for scale out
and so it would be an interesting addition to see if in the SN
architecture that is being proposed could be modified to take care of this
phenomenon and reap the gain.

Thanks. Separation of compute and storage is surely to be considered.
Unlike the old days when the shared storage was considered to be a
bottleneck with slow HDDs and FC-SAN, we could now expect high speed shared
storage thanks to flash memory, NVMe-oF, and RDMA.

1. Philip A. Bernstein, Colin W. Reid, and Sudipto Das. 2011. Hyder - A

Transactional Record Manager for Shared Flash. In CIDR 2011.

This is interesting. I'll go into this. Do you know there's any product
based on Hyder? OTOH, Hyder seems to require drastic changes when adopting
for Postgres -- OCC, log-structured database, etc. I'd like to hear how
feasible those are. However, its scale-out capability without the need for
data or application partitioning appears appealing.

To explore another possibility that would have more affinity with the
current Postgres, let me introduce our proprietary product called
Symfoware. It's not based on Postgres.

It has shared nothing scale-out functionality with full ACID based on 2PC,
conventional 2PL locking and distributed deadlock resolution. Despite
being shared nothing, all the database files and transaction logs are
stored on shared storage.

The database is divided into "log groups." Each log group has one
transaction log and multiple tablespaces (it's called "database space"
instead of tablespace.)

Each DB instance in the cluster owns multiple log groups, and handles
reads/writes to the data in its owning log groups. When a DB instance
fails, other surviving DB instances take over the log groups of the failed
DB instance, recover the data using the transaction log of the log group,
and accepts reads/writes to the data in the log group. The DBA configures
which DB instance initially owns which log groups and which DB instances
are candidates to take over which log groups.

This way, no server is idle as a standby. All DB instances work hard to
process read-write transactions. This "no idle server for HA" is one of
the things Oracle RAC users want in terms of cost.

However, it still requires data and application partitioning unlike
Hyder. Does anyone think of a way to eliminate partitioning? Data and
application partitioning is what Oracle RAC users want to avoid or cannot
tolerate.

Ref: Introduction of the Symfoware shared nothing scale-out called "load
share."

https://pdfs.semanticscholar.org/8b60/163593931cebc58e9f637cfb501500230adc.pdf

Regards

Takayuki Tsunakawa

--- below is Sumanta's original mail ---

*From:* Sumanta Mukherjee <sumanta.mukherjee@enterprisedb.com>
*Sent:* Wednesday, June 17, 2020 5:34 PM
*To:* Tsunakawa, Takayuki/綱川 貴之 <tsunakawa.takay@fujitsu.com>
*Cc:* Bruce Momjian <bruce@momjian.us>; Merlin Moncure <mmoncure@gmail.com>;
Robert Haas <robertmhaas@gmail.com>; maumau307@gmail.com
*Subject:* Re: I'd like to discuss scaleout at PGCon

Hello,

I saw the presentation and it is great except that it seems to be unclear
of both SD and SN if the storage and the compute are being explicitly
separated. Separation of storage and compute would have some cost
advantages as per my understanding. The following two work (ref below) has
some information about the usefulness of this technique for scale out and
so it would be an interesting addition to see if in the SN architecture
that is being proposed could be modified to take care of this phenomenon
and reap the gain.

1. Philip A. Bernstein, Colin W. Reid, and Sudipto Das. 2011. Hyder - A
Transactional Record Manager for Shared Flash. In CIDR 2011.

2. Dhruba Borthakur. 2017. The Birth of RocksDB-Cloud. http://rocksdb.
blogspot.com/2017/05/the-birth-of-rocksdb-cloud.html.

With Regards,

Sumanta Mukherjee.

EnterpriseDB: http://www.enterprisedb.com

#50MauMau
maumau307@gmail.com
In reply to: Sumanta Mukherjee (#49)
Re: I'd like to discuss scaleout at PGCon

Hello all,

I've overhauled the scaleout design wiki I presented at PGCon 2018
developer unconference and assembled the research of other DBMSs'
scale-out features.

Scaleout Design
https://wiki.postgresql.org/wiki/Scaleout_Design

I intentionally have put little conclusion on our specification and
design. I'd like you to look at recent distributed databases, and
then think about and discuss what we want to aim for together. I feel
it's better to separate a thread per topic or group of topics.

I'm sorry, but I'm not confident about the readability at all, because
I cannot draw figures due to my visual impairment, and the page is
full of text only.

What workload do you think we should focus on first, OLTP or
analytics? I think OLTP, because open source Postgres probably has
been so far getting popular with OLTP. Also, I don't expect many
people will use existing popular SaaS for data warehousing like Amazon
Redshift, Azure Synapse, Google BigQuery and Snowflake, rather than
build their analytics databases on public IaaS or on-premises.

Regards
MauMau

#51MauMau
maumau307@gmail.com
In reply to: Sumanta Mukherjee (#49)
Re: I'd like to discuss scaleout at PGCon

Hello all,

# I'm resending because some error occurred

I've overhauled the scaleout design wiki I presented at PGCon 2018
developer unconference and assembled the research of other DBMSs'
scale-out features.

Scaleout Design
https://wiki.postgresql.org/wiki/Scaleout_Design

I intentionally have put little conclusion on our specification and
design. I'd like you to look at recent distributed databases, and
then think about and discuss what we want to aim for together. I feel
it's better to separate a thread per topic or group of topics.

I'm sorry, but I'm not confident about the readability at all, because
I cannot draw figures due to my visual impairment, and the page is
full of text only.

What workload do you think we should focus on first, OLTP or
analytics? I think OLTP, because open source Postgres probably has
been so far getting popular with OLTP. Also, I don't expect many
people will use existing popular SaaS for data warehousing like Amazon
Redshift, Azure Synapse, Google BigQuery and Snowflake, rather than
build their analytics databases on public IaaS or on-premises.

Regards
MauMau

#52tsunakawa.takay@fujitsu.com
tsunakawa.takay@fujitsu.com
In reply to: MauMau (#50)
RE: I'd like to discuss scaleout at PGCon

From: MauMau <maumau307@gmail.com>

I intentionally have put little conclusion on our specification and
design. I'd like you to look at recent distributed databases, and
then think about and discuss what we want to aim for together. I feel
it's better to separate a thread per topic or group of topics.

Finally, MariaDB is now equiped with a scale-out feature.

How MariaDB achieves global scale with Xpand
https://www.infoworld.com/article/3574077/how-mariadb-achieves-global-scale-with-xpand.html

I haven't read its documentation, and am not planning to read it now, but the feature looks nice. I hope this will also be a good stimulus. I believe we should be aware of competitiveness when designing -- "If we adopt this architecture or design to simplify the first version, will it really naturally evolve to a competitive product in the future without distorting the concept, design, and interface?"

Regards
Takayuki Tsunakawa