KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /domains/mandarintools/download/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /domains/mandarintools/download/chinesene.doc
��ࡱ�>��	j�����i�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������Y	�΁bjbj�W�W	o<�=�=�a������]�������������t��.�����ccc�������$���x���ccccc�[������[[[c�������.������c�[�[O�����<L@���R���!:�




Erik Peterson
Computational Linguist, Applications Technology


A Chinese Named Entity Extraction System


ABSTRACT

     For many information applications, being able to identify the proper names and other entities in a text is a vital step in understanding and using the text.  For example, in a Chinese-English machine translation system, if a word is identified as a person name, it can be converted to pinyin, rather than being translated as a regular word.  Other entities, such as times, dates, and money amounts, are best translated by modules with special knowledge of these domains.  This paper discusses the development and testing of a Perl-based named entity identification and extraction system for simplified Chinese text.  This system can serve as a first stage to other Chinese language processing systems.  Entities that are identified include locations, person names, organizations, dates, times, money amounts, and percentages.  The system uses a segmenter and a specially created pattern matching language to identify these named entities.  Useful criteria for finding each of these entity types, along with the major problems in finding them, are discussed.  Initial runs of the system on a test corpus produced promising precision and recall scores of 52 and 46, respectively.  Finally, the paper proposes possibilities for ways to improve the extraction system.











Introduction

For many information applications, being able to identify the proper names, among other entities, in the text is an important step in understanding and using the text.  For example, in a Chinese-English machine translation system, if a word is identified as a person name, it can be converted to pinyin, rather than being directly translated.  Other entities, such as times, dates, and money amounts, are best translated by modules with special knowledge of these domains.

Fortunately, these entities have common characteristics and occur in regular contexts that make it possible to write patterns to identify them.  To utilize these common patterns, I have written a complete system for processing Chinese text and identifying named entities.  This system is written entirely in the Perl programming language, making it portable to a variety of computer systems.  It runs on texts encoded in the GuoBiao (GB) computer code set for Chinese, as used in the People's Republic of China and Singapore.

An important part of any Chinese language processing system is segmenting the text into character compounds.  How the text is segmented is influenced by the needs of the subsequent processing stages.  The segmenter used by this extraction system uses a simple Maximal Matching Algorithm, augmented with routines to handle numbers, transliterated names, and Chinese names.  Development of the segmenter occurred in close coordination with development of the extraction system.  For example, compounds that would otherwise be considered valid words are removed from the segmenter's lexicon if they cause conflicts in finding a named entity.  For example, the compound �V�N (England + Person = Englishman) was removed since it interfered in finding "England" by itself as a location.

Decisions on what to consider as a person, location, organization, etc. are based mostly on the tagging guidelines established for the Message Understanding Conference sponsored by the United States government [1].  Each extraction type described below includes a summary of what was included and excluded during name finding.

English text mixed in with the Chinese is not processed, as this is outside the scope of a Chinese named entity extraction system.  Once a word or phrase is identified as belonging to a given entity type, its position in the original text is stored and can be a useful input to further language processing, machine translation, and information retrieval systems.

The rules developed for this system also reflect the target documents on which the system was run.  For development and testing, I used simplified Chinese news summaries from the Voice of America broadcasts to China.  The writing style used by a mainland China newspaper or a Singapore newspaper would lead to the modification of existing rules and addition of new ones.


Pattern Matching

Although the Perl programming language provides a rich set of pattern matching operators, these operators are designed to work on the character level rather than on the word level.  To facilitate the matching of named entities, which are usually one or more words, I created a simple word level pattern matching language that is the basis for all of the entity identification done by the system.

My general pattern matching language allows for the identification of entities based upon the internal characteristics of the entity (the entity itself) and the external characteristics of the text in which the entity occurs (the entity�s context).  For each entity type, I wrote several rules.  A rule has four ways of matching a word:

1.  The word (or phrase) is a member of a set of words.  The system has several word lists that it uses to identify entities and parts of entities.  The name of the set will start with a percent sign.  The different sets currently used by the system are:

            %geonames:  Names of locations
            %geotypes:  Suffixes that indicate place names
            %surnames:  Common Chinese surnames
            %notname:   Words that do not occur in names
            %titles:    Person titles
                        e.g. HQu Mr., 'Y+Y Dr., �S��XT Sen.
            %persons:   Known person names
            %orgnames:  Known organization names
            %orgwords:  Words that are commonly used in  
                        organization names


            %orgtypes:  Suffixes that indicate an
                        organization
                        e.g. lQ�S Company, 	gP�lQ�S Ltd.
            %dates:     Known dates
                   e.g. �N)Y today, �St^ last year
            %times:     Known times
                        e.g. Y� tonight, �e
N morning
            %currency:  Currency types
                        e.g. �ё dollars, �eW yen

2.  The word meets a particular test or has some desired feature.  The system can run tests on words.  The results of the test are passed back to the top level rule.  Word tests are indicated by an ampersand at the beginning of the test name.  Some word tests used by the system include:
            
       &allforeign: Is the word entirely composed of     
                    characters that are commonly used 
                    in transliterating  foreign names 
                    into Chinese?  Useful for finding 
                    locations and Western person 
                    names.
            &isPossibleChineseName: Could this word be a 
                         Chinese name?  Looks for a Chinese 
                         surname and an acceptable given 
                         name.
            &isChineseName: Is this word unambiguously a 
                         Chinese name?
            &allnumbers: Is this word entirely composed of 
                         Chinese and/or Arabic numerals?  
                         Useful for finding times, dates, 
money amounts, and percentages.

3.  The word is an exact match for a word in the rule.  This type of word match is indicated by being enclosed in double quotes.

            e.g. "0W:S" (district)

     4.  Using "ANY" in the rule will match any word.





Each rule has the form:

           (TYPE (... BEG ... END ...) ADD)

where TYPE is the type of entity to find with this rule (LOCATION, TIME, etc.).  BEG and END delimit the part of the match that is actually identified as belonging to TYPE.  Anything outside of BEG and END is context that still must be matched for the entire rule to match.  If ADD is included at the end of the rule, then whatever was matched by the rule will automatically be matched elsewhere in the text.  Before and after BEG and END can be any sequence of the four types of word matching mechanisms listed above.  Finally, an element in the rule can have an asterisk "*" or plus sign "+" appended onto the end to signify repetition.  An asterisk means the match can occur as many times in a row as possible, or none at all.  A plus sign means the match must occur at least once, but can match as many times as possible.  For example, '&allforeign+' would match all the words in a row that are composed only of characters used to transliterate foreign names.

Not yet implemented, but potentially very useful, is an alias mechanism for entities identified by the system.  This would be useful in those cases where an abbreviated form of the entity is used after the term is first introduced in the text.  For example, it is common in Chinese to use the first character of a country name as abbreviation for the entire name.  A country alias system would take the first character of the country name and then look for it elsewhere in the text.  Other possible alias mechanisms are listed under the extraction types below.



Extraction Types

LOCATIONS

Locations identified by the extraction system include countries, states, provinces, cities, towns, bodies of water, islands, and named geographic features (mountains, valleys, etc.).  Other types of locations that are tagged include military bases, buildings, and other immobile structures.  Not tagged are movable structures (planes, ships) or regions denoted by compass directions ("the southern state", "the west half of the state").

Examples

 - ��V			America
 - �Nr�R			Israel
 - wmYr			the Hague


Location Rules

    '(LOCATION (BEG &allforeign+ %geotypes END) ADD )',
    '(LOCATION (BEG &allforeign+ END "0W:S") ADD )',
    '(LOCATION (BEG %geonames %geotypes END) ADD )',
    '(LOCATION (BEG &allforeign+ END "D�я") ADD )',
    '(LOCATION (BEG ANY END ANY "$N�V") ADD)',
    '(LOCATION (BEG ANY END "$N�V") ADD)',
    '(LOCATION (BEG %geonames END))'
     

A productive way of identifying locations involves looking for a likely foreign name followed by a geographic suffix.  In my system the majority of the locations were found through look-up in a large location name lexicon.  However, while this may work well for international news text where only a limited number of locations are seen on a regular basis, it would need to be adapted for text from local newspapers.  Each time text from a new area is processed, its locations would need to be added to the lexicon.  In the near future, I will also add rules that find a location based on its context ("(W ...") in the sentence.

Location names that are composed of a foreign name followed by a geographic suffix can be abbreviated by removing the geographic suffix and just looking for the foreign name.  Countries can be aliased by looking for just the first character of the country name, as described above.



PERSON NAMES

Persons are the names of people, either real or fictional.  Person names do not include people who are only referred to by their title (e.g. "the Pope").

The Chinese language has two main ways of expressing person names.  The first method is for native Chinese names.  Chinese names have a one-character surname (or rarely, two characters) that comes at the start of the name.  This is followed by a one or two character given name.  Surnames in Chinese come from a limited set of possibilities but there is not a limited set of given names.  Complicating name finding is the fact that surnames can serve other functions in Chinese, as can the characters used in given names.  My rules try to improve identification of names by looking at the context in which each occurs.  If a word has a title next to it and has the form of a possible Chinese name, it is matched as a Chinese name.  Alternatively, if the surname character is only used as a surname, then the name is matched regardless of context.

Examples

 - �_�e�z			Xu Wenli, prominent Chinese dissident
 - NgO�ޘ			Li Pengfei, Chinese smuggler
 - �gwm			Lin Hai, convicted computer criminal

The other common type of name is used for non-Chinese names.  In most cases, this is simply a transliteration of the sounds of the name into similar sounding Chinese characters. Fortunately, this is usually done with a small set of characters, but unfortunately, these characters are also commonly used elsewhere in the language.  Finding a group of characters made up of all foreign characters that is in the right position in the sentence for a name will identify the character grouping as a person name.

Examples

 - ς�TXb			former prime minister Suharto 
 - KQ�g�			President Clinton


     Regions around China that have been influenced by Chinese culture sometimes do not fall into either above category.  For example, Korean names are usually three characters, like Chinese names, but can vary in the surnames used.  Japanese names are often four characters long and use a different set of (usually 2 character) surnames.  Vietnamese and other Southeast Asian names all have their own peculiarities that make identifying them difficult.

Japanese Name Example

 - \
n�`	N			Keizo Obuchi, Prime Minister of Japan


Person Rules

    '(PERSON (BEG &allforeign+ "�" &allforeign+ END) ADD )',
    '(PERSON (BEG &allforeign+ "." &allforeign+ END) ADD )',
    '(PERSON (%titles BEG &allforeign+ END) ADD )',
    '(PERSON (BEG &allforeign+ END %titles) ADD )',
    '(PERSON (%orgtypes "�" BEG &allforeign+ END) ADD )',
    '(PERSON (%geonames "�N" BEG &allforeign+ END) ADD )',
    '(PERSON (%titles BEG &isPossibleChineseName END) ADD )',
    '(PERSON (BEG &isChineseName END) ADD )',
    '(PERSON (%titles BEG %surname ANY END) ADD )',
    '(PERSON (BEG %persons END))'


Aliases for person names can be created in several ways.  For Chinese names, the surname alone could be use later in the text and the system could look for instances when just the surname is included.  For foreign names that include both a surname and a given name, the system could look for either name separately.



ORGANIZATIONS

        Organizations can include a wide variety of types, and consequently can be one of the hardest types of entities to identify.  Organizations include company names, official governmental bodies, educational institutions, political parties, and military divisions.

Examples

 - ��V�VO				U.S. Congress
 - -N�Vl;NZQ			China Democratic Party
 - T�T�V				United Nations
 - R-J-R �~�k�e�y�c��lQ�S	RJR Nabisco Corporation





Organization Rules

    '(ORGS (BEG &allforeign %orgtypes END) ADD )',
    '(ORGS (BEG %geonames %orgtypes END) ADD )',
    '(ORGS (BEG %orgwords+ %orgtypes END) ADD )',
    '(ORGS (BEG %orgnames END))'


The main way of finding organizations is to look for a person or location name followed by an organization suffix.  While imperfect, this finds many organizations.

A problem in identifying organizations is the fact that it is hard to distinguish between "American Oil Company" and "American oil companies", since both would be the same in Chinese.  It can also be hard to determine the start of an organization when something other than a location or foreign name is used.  Organizations that are the same as people names are hard to distinguish from regular people names.

Organization names are often abbreviated by taking one character from each word used in the full name.  However, which character is selected from the word is not standardized, making it difficult to build a generic algorithm to find organization aliases.



DATES 

Dates include specific decades, years, months, days of the month, weekdays, or combinations of these.  Dates in Chinese have a standard, accepted way of ordering the different parts of a date expression where each part is listed from the largest time unit to the smallest.  This makes identifying dates in Chinese an easier task than finding dates in English, which allows for much variety in constructing dates.  The system also finds a few simple relative dates, such as "tomorrow", "next year", "last week", and "March of last year".



Examples

 - 1998t^				1998
 - 1970t^9g28�S		Sept. 28, 1970
 - ft^				Next year
 - ,ghT				This week

Also identified as dates are holidays and special designated days, such as World AIDS Day.

Examples

 - #Wދ��				Christmas
 - NLu~��n�u�e			World AIDS Day

        However, not identified as dates are time ranges or relative dates with no fixed reference.  For example, "3 weeks", "the past 4 days", and "5 years after the election" would not be found.

Date Rules

   '(DATE (BEG &allnumbers "t^" END))',
   '(DATE (BEG &allnumbers "t^" &allnumbers "g" END))',
   '(DATE (BEG &allnumbers "t^" &allnumbers "g" &allnumbers "�e"
 END))',
   '(DATE (BEG &allnumbers "g" &allnumbers "�S" END))',
   '(DATE (BEG &ismonth &allnumbers "�S" END))',
   '(DATE (BEG &allnumbers "g" &allnumbers "�e" END))',
   '(DATE (BEG &allnumbers "g" END))',
   '(DATE (BEG &allnumbers "g�N" END))',
   '(DATE (BEG %dates END))'

The date rules find various combinations of year, month, and day.  Work needs to be done to identify other dates such as centuries, decades, and parts of months (the Chinese calendar divides a month into three ten day periods).



TIMES

Times include specific time references (e.g. 4:17 pm) and time periods during the day, such as "morning", "afternoon", and "evening".

Time Rules

     '(TIME (BEG &allnumbers "��" END))',
     '(TIME (BEG &allnumbers "R��" END))',
     '(TIME (BEG %times END))'


The first rule finds a number followed by the Chinese version of "o'clock".  The second rule finds periods of the day, such as "afternoon" and "night".  The limited number of times mentioned in my test corpus limited the development of these rules.  Future work needs to be done to find other shorthand ways of expressing time in Chinese, such as the equivalents to "a quarter after 5" or "half past nine o'clock".  Also, the words for evening and morning can serve other uses in Chinese.  A method for distinguishing when each is used as a time or as an adjective is needed.



MONEY AMOUNTS
      
Money amounts are a given amount of a legal currency such as dollars, yen, pounds, or the soon to exist euro.  Other financial instruments, such as stocks or bonds, are not included.  Stock market indexes and points are also not included.

Example

 - AS�N�CQ			1 billion U.S. dollars


Money Rules

     '(MONEY (BEG &allnumbers+ %currency END))',
     '(MONEY (BEG "$" &allnumbers END))'


Finding money amounts is as simple as finding a number followed by a currency type.  The second rule will also find money amounts expressed with a dollar sign.  While this finds the majority of money references in newspapers, more of the different currency signs (such as Britain's pound sign or the Singapore dollar sign, S$) of the world need to be included for complete coverage.  Further questions to ponder might include how to handle money ranges (e.g. "5 to 6 dollars").  Would this be tagged as one unit or would "5" and "6 dollars" be tagged separately for future processing.




PERCENTS

A percent in Chinese, or more generally a fraction, is a number, usually 100, followed by the characters "RKN" (parts of), and then followed by another number.  A percentage expressed as 100RKN30 would literally be "30 parts of 100".  Percents can be expressed using the percent sign "%".  The system will also find percent amounts expressed as percentage points.

Examples

 - ~vRKN	N				3%
 - ~vRKN19			19%
 - 	NRKNN				33.3%
 - $N*N~vR�p			Two percentage points

Percent Rules

      '(PERCENT (BEG "~vRKN" &allnumbers+ END))',
      '(PERCENT (BEG &allnumbers "RKN" &allnumbers END))',
      '(PERCENT (BEG "�" &allnumbers+ END))',
      '(PERCENT (BEG &allnumbers+ "�" END))',
      '(PERCENT (BEG &allnumbers+ "~vR�p" END))',
      '(PERCENT (BEG &isPercent END))'

The percentage rules closely follow the description listed above.  No major problems were encountered in finding percentages.



Results

Development and testing was done on Chinese text drawn from news reports published on the Voice of America web site [2] during the months of November and December.  These files are in the public domain, making them easier to use and distribute.  The files are also scripts for radio broadcasts and consequently are closer in style to spoken Chinese.  This works well because written Chinese is often much more compact and lacking of contextual clues than spoken Chinese.  The news reports also provided a rich store of entity names and introduced each entity as it was used.  These factors made the VOA corpus ideal for development of the system.

Identified entities in the output of the system were marked using SGML tags as adopted by the Message Understanding Conference.  These tags are listed below:


      TAG TYPE       START TAG                    END TAG
      ----------------------------------------------------
      PERSON         <ENAMEX TYPE="PERSON">       </ENAMEX>
      LOCATION       <ENAMEX TYPE="LOCATION">     </ENAMEX>
      ORGANIZATION   <ENAMEX TYPE="ORGANIZATION"> </ENAMEX>
      DATE           <TIMEX TYPE="DATE">          </TIMEX>
      TIME           <TIMEX TYPE="TIME">          </TIMEX>
      PERCENT        <NUMEX TYPE="PERCENT">       </NUMEX>
      MONEY          <NUMEX TYPE="MONEY">         </NUMEX>


In addition, I also found a small corpus of hand-tagged sentences made available on the web by some of the organizers of MUC.  This "Little Grove" corpus consists of 100 sentences picked apparently at random from various mainland Chinese news sources [3].  As such, the sentences give little context for the entities within.  Also, they use the more telegraphic Chinese newspaper writing style.  These two factors made scores on this corpus much lower than the VOA corpus.  The "Little Grove" corpus was used as test data; no reference was made to it during development.

The VOA files were split into two sets, test and development.  The ten test files were hand tagged using MUC-style SGML tags and then put aside.  No further reference was made to them.  Ideally, development of the test set should not be done by the person doing development, lest development be biased by a limited knowledge of the test set, but this was not possible due to limits in personal resources.

  As part of the system, I also wrote a scorer in Perl to measure the accuracy of the system.  The two measures of system performance are precision and recall.  Recall measures how many entities in the test corpus were found by the extraction system.  Precision measures how many of the entities found by the extraction system were correct.

Recall and precision scores for the two test data sets are listed below:

VOA Corpus
  Total Test Corpus Entities:			1117
  Total Correct System Entities:		514
  Total Extraction System Entities:	971
  RECALL:							46.02
  PRECISION:						52.94


Little Grove 100 Sentences
  Total Test Corpus Entities:			254
  Total Correct System Entities:		43
  Total Extraction System Entities:	147
  RECALL:							16.92
  PRECISION:						29.25



CONCLUSION

Initial development of this Chinese named entity extraction system has been promising.  I identified major problems in each extraction category and created an infrastructure that will significantly simplify future system development.  Most efforts to the present have been in developing the word-level pattern matching language that allows development of high-level pattern matching rules.  Future development will involve modifying and adding to these rules, and refining the word sets used by these rules.  It is anticipated that two or three more months of part-time rule development would bring scores for precision and recall into the mid-80's.  This would be near the scores for the professional Chinese extraction systems tested by MUC. 

Other avenues for future work include further modification of the Chinese text segmenter that the rest of the system depends on so heavily.  Adding the abbreviation detection mechanism described earlier would also help scores.  Finally, the pattern matching language itself could be enhanced to include Boolean operators such as �AND�, �OR�, and �NOT�.

This system can be obtained from
http://epsilon3.georgetown.edu/~petersee/cgi-bin/chinesene.zip or chinesene.tar.gz.  After unzipping this file, the system can directly run on any computer with a Perl interpreter.  The main file is chinesene.cgi.  The system can also be run via the web from the URL:  http://epsilon3.georgetown.edu 
/~petersee/chinesene.html.  This web interface allows users to either paste in text to be processed or type in the URL of a web page to be downloaded and processed.

REFERENCES

1. MUC-7 Tagging Guidelines
    URL:  ftp://ftp.muc.saic.com/pub/MUC/MUC7-guidelines/guidelines.NEtaskdef.3.5.ps.gz

2. Voice of America Chinese Radio Scripts
    URL:  http://www.voa.gov/chinese/mindex.html

3. Chinese Treebank's 100 Sentences with Named-Entity Tags
    URL:  http://umiacs.umd.edu/labs/CLIP/nrdnetaA.html

Enpyzo	z	�	����-�-�-�-a/j/0�0$36678D8�DXH�I�I�LNRQYQ|W�ZV\\\�\�^�^�a�a�a�c?dAd�f�f�f�jmnn<qvq�q�x�xsy�y0z:z;z}���΁����������������������������������5�>*CJ OJPJQJ5�CJOJPJQJCJOJPJQJo(CJOJPJQJ>*CJCJPJPJCJOJPJQJACDEnopyzo	p	q	r	s	t	u	v	w	x	y	z	�	������������������������������Z���$CDEnopyzo	p	q	r	s	t	u	v	w	x	y	z	�	�	abp
q
����12�����EF��������������������������������������������������������a���b�������
������H���I�������������������	���
�����������
������������������������������������������������������������2�	�	abp
q
����12�����EF������\������������������������������������\���>�
p� h�v�$ & 3"@"z"�"�"#Q#l#�#�#$<$v$�$�$%O%o%p%�%�%&&(&�&�&�����������������������������������������~{xu]���������7�8�X�����
���1���k�������������;���V���������������-���g���t���������������� ���D���s������������!���"���#���N����������������@���y���������.��>�
p� h�v�$ & 3"@"z"�"�"#Q#l#�#�#$<$��������������������������������<$v$�$�$%O%o%p%�%�%&&(&�&�&�&�&�&�&�&�&('*'Y+Z+�-�-�-�-��������������������������������@���&�&�&�&�&�&�&('*'Y+Z+�-�-�-�-�-�-�-�-`/a/j/k/ 0@0d0f0h0�0�0�0^1�1.2�2�2$303232646485868����������������������������������}zwtq����������]���^���d�����������������G���z��������������	
���������������?���	@�����������
����
������M�N���?�@�X�Y�Z�[�\�+�-�-�-�-�-`/a/j/k/ 0@0d0f0h0�0�0�0^1�1.2�2�2$30323264648���������������������������
&F
&F��48586878D8E8�8�8^<`<r<t<�<=x=z=�?�?�?�?P@�@�@�@CC"C#C`D����������������������������
&F��6878D8E8�8�8^<`<r<t<�<=x=z=�?�?�?�?P@�@�@�@CC"C#C`DbDdD~D�D�DtE�EDF�F,G�GH6HXHYH���������������¿�����������������|yvspm�����O���}�����������/���c�������������������	
 ���!���Q���R���h���	
i���/���0���1���L���t���u���~���	
���z���{���������������������	
���W���X�����
������)`DbDdD~D�D�DtE�EDF�F,G�GH6HXHYHZH�I�I�I�I�I�IlKnK�K�K�K�K������������������������������
&FYHZH�I�I�I�I�I�IlKnK�K�K�K�K*L~L�L�L�L�L�L�L�LMxM�MNNN�N�NOPPPOQPQQQRQYQZQsStSuSvS������������������������������������}zwt���������������
��H���I���J���I���J�����������������������������A���B���U���	
V���W���X���Y���Z�����������������������	
����
������������*�K*L~L�L�L�L�L�L�L�LMxM�MNNN�N�NOPPPOQPQQQRQYQZQsStSuS������������������������������
&FuSvSS�S"T^T�T�T�TbUdUvUxU�U�U�UbWdWzW|W�W8X�X�X6Y�YZRZ���������������������������������������
&FvSS�S"T^T�T�T�TbUdUvUxU�U�U�UbWdWzW|W�W8X�X�X6Y�YZRZ�Z�Z�ZS\T\U\V\\\]\�\�\�\�\2^�^����������������������������������~vspm=���f���g���r���	
s�����������
G�}���~������c���d�����������������7���n���w��������������� ���	

!���������������� ���	
	!���|���}������������������������	
)RZ�Z�Z�ZS\T\U\V\\\]\�\�\�\�\2^�^�^�^�^�a�a�a�a�a�aVcXchc�����������������������������
&F���^�^�^�^�a�a�a�a�a�aVcXchcjc�c�c�c�c�cd?d@dAd�f�f�f�f�f�f�fjjjj6jTjvj�j�j�j�j8k���������������������������������}zwoli"���#���1���	
2���S���d���s���������������	
������������
��������������f���g���h����������������	

�����������	
�������
���������������������)hcjc�c�c�c�c�cd?d@dAd�f�f�f�f�f�f�fjjjj6jTjvj�j�j�j�������������������������������
&F�j�j8k�kldl�lmmn	n
nnnn�p�p:q;q<qvq�q�q)rer�r�rsQs������������������������������8k�kldl�lmmn	n
nnnn�p�p:q;q<qvq�q�q)rer�r�rsQsRsSs�u�u$w%wzx{x�x�x�x�xyCyYyqyrysy��������������������������������������~{xurS���T���l������������������
w���x������������������������������&���a�������������O����������
���������o���p�����������
����������������������,���\������������,QsRsSs�u�u$w%wzx{x�x�x�x�xyCyYyqyrysy�y�y�y�yz-z.z/z0z;z������������������������������sy�y�y�y�yz-z.z/z0z;z<z%}&}�~�~�~�{�|�����������(�Y�Z���́΁�����������������������������c����������������2���3�����������������������Z���������������
�����������
|���D���E���F���^���t�������������
���;z<z%}&}�~�~�~�{�|�����������(�Y�Z���́΁������������������������/ ��=!�"��#��$��%��$3$�LPv4e Times New RomanRegularVersion 2.45Times New Roman��#�$"|���c�W	h1��:9<.�A�)@gPM��w��2X�d3���hq
適��rM>�3�)`]� �2kU���D
j�i�$�\���9DW�&x��X�F���M-L�F�)����
��,�T�fB��$�H����Y�@�4�����$	���{ �CU\Q��Cw����3�q`n4�z&02�泷:�Q�H����koi�Px�$~�vZ���:6�k���-���Аx�8�P�vc�U�����5�=b�D�I6`
[$@�$NormalmH	8@8	Heading 1$@&CJOJQJ<@<	Heading 2$$@&CJOJQJ>@>	Heading 3$@&5�>*CJ OJQJ@@@	Heading 4$@&5�CJOJPJQJ@@@	Heading 5$@&>*CJOJPJQJ@@@	Heading 6$@&5�CJOJPJQJ<A@�<Default Paragraph Font6B@�6	Body TextCJOJPJQJ(U@�(	Hyperlink>*B*@T@@
Block Text
����CJOJPJQJ�a�����΁F�	�<$�-48`D�KuSRZhc�jQs;z΁GIKLNOQSTVXY[]��&68YHvS�^8ksy΁HJMPRUWZ\�8�@�����������0�(	��
��B
�S����	?�		����;B�,4��HRy�IV��� � �%�%�%�%�%&/&7&9&A&d&o&�&�&9*@*�.�.�.�.�.�.�.�.�.�.�.�.@1G1N3S3T3Z3�3�3�3�3�3�3�3�34$4E4P4u4}4�4�4�4�4�4�4�4
5+585�8�8�8�8�8�8�8�8999$9C9K9�@�@�@�@�@�@�@�@A
AAA8ABAHARAoAvAxA�A�A�A�A�A�A�A�ABSCUC�C�C�C�C�F�F�G�G�G�GLLWLvL�L�L�L�L�L�L�LMM<MEM�^�^4_A_�_�_)a3a�a��(0����;Btz�����,4q}������"GKpu������HR�����3<ejy��6:IV��OT�������LZC ^ �%�%�%�%&&G&L&z&&�(�(_)c)�.�.*101�2�2�3�3�3�3*4/4^4c4�4�4�4�455>5C5r5w5�8�8�8�8*9/9s?t?�DE
QQsW|W�\�\w_~_�_�_�a��
Erik PetersonC:\My Documents\chinesene.doc
Erik PetersonC:\My Documents\chinesene.doc
Erik Peterson2C:\windows\TEMP\AutoRecovery save of chinesene.asd
Erik Peterson2C:\windows\TEMP\AutoRecovery save of chinesene.asd
Erik Peterson2C:\windows\TEMP\AutoRecovery save of chinesene.asd
Erik PetersonC:\My Documents\chinesene.htm
Erik PetersonC:\My Documents\chinesene.txt
Erik PetersonC:\My Documents\chinesene.txt
Erik PetersonC:\My Documents\chinesene.rtf
Erik PetersonC:\My Documents\chinesene.rtfPuB	����������h����hOJQJo(��PuB�������@�%%��Z��%%�
k%k'^)^*^.^/!1!2D3D4D5D7D9�>�?�A�B�C�D�F�G�J�K�L�M�aP@PP$@PPPD@P&PP@P0Ph@P6Pp@P<P|@P@P�@PDPFP�@PJP�@PTPVPZP�@P^P�@PbP�@PhPjPlP�@G�Times New Roman5��Symbol3&�Arial?5�	Courier New75��	MS Song@��U�"q���h�<2�<2{�,f�M���M��!	

 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^k`abcdefgh1�����lmnopqrstuvwxyz{|}~�Root Entry.gov/chinese/mindex.html
\par 
\par \hic��������	�F[��3���R��@with1TableTags
\par \hich\af2\dbch\af16\loch\f2     URL:  h������������.edu/labs/CLIP/nrdnetaA.html
\par 
_Kn.edWordDocument16\loch\f2 /~petersee/chinesene.html. ��������hich\af2\dbch\af16\loch\f2 face alloo< to SummaryInformationly.  Adding the abbrevia(����echanism described e�ich\z�K����N�eb?;���E�BX��S%|@FN��	��G��I��L=7�*�8#B��j�3��h���u�U�EI8Or�F;£���2:"MATM�[' ����&�T�pe4^�A��H ��Y�6+�"Y���[9���C��}�D
W*���X���V$�>�пԈۑ��6y���q��K�vGk���v�$����K4J��vâR��"����KP�Zk �J����#�#b�y�&Z1������4ZO0��'�W=#����Gyh0F�v�_5�S�w(��k�ǹ���rd��֢s2#���I�n��H"�VaC�>p#=�d���5��
q<=��>\�W�e����e�F��XW;q&|�cd��~<�M�c2���#ˠ��I�6��o�j7r�(+~�ə0s�<�����!�ج���v���$e�3ۜG"az-�9��q��*m-Ӭ�j}����._$H)�����:_C����yh��|�_��������d��6XxBk<�da��8����Ô�e�M��3�%/6�[ٸl�%�)�"���%�23�hð��p�d��?�^~�J���r0�\�b�F��ô�0b�',B0!��RX�u9�I�섞5͵3��i0�џ9>��{v�v�R�W=)��N�뷻��R�Ī���J�U��y��`
��9���{��5V]�'�ЙU �t=�mj�pk���u�ک�o�tj��������]E)��u���:^����V�Y:fj�B�����${�������}�C��v���ŽG�Nv̇bU��z���*}����7��+0���zĞ(�n�>9]����u�6�H��jk*�6������P3�n�{!�Nt�~y7�����*f.K�ݏy��i�l��[׎�lZ�ߙ�k4br�ɕ����n�P*�o��:���(8�>�L�Dϴ؈	�x�4�	������逳���t%�c_'B�4Bff^��1�=@Ӑ��s�ʅ�e��G
��7��N��p'��F7����A�� �S�d�ƃ9zݕ{�U�uxՙp�J+Ft��H��֥)��'�tL�q��bkD��KFV@�&��Mf�VS����}�;���Y�15ʺ�+W]��F<�sFG��i� �VT��u�ŦG�O�7%~/�8[��;��e+���S,�e�qaj�<�	J0H��.���tKO��3xt`�WM�`x�9��s*,�{��ͿQj
�;�٦��@z{O?�Yt�wu��Ǐh@����e�`�i#A���-�\�Rj��:�jN�gJĠ�I�C�ԃ����^9|a�E�%_��d(5ĩ�=���վ6��8�5�}�t�9[�,���VP��itA*���0�h�8A f�ܰ
� �`�X�p�H}�B��u 8��:R� ��[����Q)Erk���Y�_�]�Z>8�Uh��(�����&��Lr�H���Խ��BOG^q`0��T�Z?>#��/�����c.���IN%��A"���n���ߏ�t�.x���p0"��Ґ
��DJ֡G��B�G_���J,0)fv��X�(��j�]�7�&C��إ�:(F��a���T�2*E�,R�P�"�:�`.�,:$&k�ײ�#h��mQ���JSǕ�P�N�'$ʙ��ǫ�.N�eL����w�}#<��8jA3�lf�l�D�GЮ��2�EE��a�&�]g~1�C�HXdZ�y�+�&�fE�N5c�T�nBN�q�l���Tet5�mjh�Is!�n&�:8�Tl��|�F�5����9���HIt�s������$�������e��"5��F�����qv"�^u����O'B���e��L�����6q*�V����
����"ۙ�e	A`E>�`��`<��Y?.d�g�f>8G+����6�$�޿y&����0镭�m$� E�ZHO�ɾ�����1���2w���1O�_Z�x��4?ld_ՆU�!�4���&3�
&�8x��GE���k)��]�ܗ�V�kdCy�Z�B"uY)�
%�"�+@g@��r�t_V���Ⱥ#p�y��,��DB�
-
�~:�@��j����J���<P$.�A�oF�xu�,qΥ�T��ѩV���N8��+o�ٲT���e��>e���0&�'���eπ��7��vd��U��4���Q�&ݙk��H<���2-{�Hٽ�TE�Z�-s��f�Ffv��Vvy��m�U9��|Nd��Hf��f��,=�
��{���|�P^�IW4��X<��nU2GDV�7v�0+��w	����ԋ�	#�ʑ2���.�׉ �&Un*�����P*��1~��>G�4�CsM��'�Z��6U%Ƭ:��p�Gܬe���`�@�S�]�*
s��)����9��"��%=�d_Obx{"�����y�Dv{$����|8�b����;#�k�^�[���p�V��m���ֵa��L̅EC]�CᲚ�Q|]���D�<F���SˌG�7J�
���1�B��W�I'���OI��
/�,� ��|���2����y�*�x���g�q"9@E})��N
�
��p�X2�[�
VF1����M+��7���N����a>�ʧ�"��)�V�.�2�[Gn�}W �)zv�x٧��V��Q`͠�֯xтZ��[64������m""詊EL�!�����ìe�]G���?r�G�+�\�a������D�C�`Y������5Ș��b��3s�����Y���~�ɑ�|�0���IX[�����█Mg�5|'�w[�T�����k�c��Aʁ8�I��Ma��M��3��o�5l��;Lf�#���ศ�#��s�_�2�{8K�`�lX�@�H+�]i,A�)����(�n'�3����n�[|��5����"z�F�N�A�4Z+O�yJv
�p�Q�?6r����,dcP"��Yx{�DZ@�%��o�:�^&�IHO]���C�F^�ߴg�T+���1j�����F�r���m*]ܾ�d��T*���������Gz�9W�-��1�(7vG��1rW��+�Prl��is�7s��?6��6���B0� ��q\V��4�x�7�<�ų��t�]�u���9�τ3��^�p��_�P��`�a\�yG�!�F���;�ݨő�k�Fӎ�iN��h��M�SL%�v+E?:�������� _�aڅ�I����u�h����O�a!���1�@"
���~%���
R3]��C�;%g϶��.���cr�%�D�7LJn:ޥ^MV?Y@�'����.��sb�����N�_�Ȳ�����	
ぐZ��k'��
̹`��&����.�Q\�o'�趧��w$�Qz�}4�:d�a
�}Z� E)glH�Ę��80����>���P	��<��x��6�T�&�gg-ϱ��
�q�+�0Yyt`�$��A��H��qߚ��m����p�P�w�F��:���G��1Y�t-�C�T�8�]>6�$�O
cZPt3-��R�S1��ŔB�'8x�fܹ���촇V"T� �3mLHɝ��np���,f�u|�l*j�cb�
���%{�n4��ZK�K��3�HO��`)}.xFc,�p�e)���R�,8�!ц��Ki�d5�T5��n�"��oB��BPD��C)?#D�
,`/9�ٳ���Э�{@�Eb�k��E��I��*���b���z�A��i?@9�d��Z��^(7K�����{y[MN��Pi?��`€��U��	ć�s�+�x��=�����;j{$\��i�4!�v��E���(:aY�j�N���I F��O3�|"��TWJ���I��H��!�����(e�چ��3�_V*�|O�u�
SQ��ַzbp���)�ϛ���H�(�%� h	S~t�ʴGh$�7v ��;~�q�m����i��ù��Ȅ��{�\'�^׌�+LW6�Y����x@��{
/��`�\�F^G�A�3�@Yg�A�h�f+�,�p$sc�0��D��.@&/L\�M�̜�D����6!����� Td$��M�����[�⎬����
��[�&���Y��`pa�M�׮�5��(��5�a��:(.l���<�2A��(��c�²\!K�G���J�'�8��]�gȗaS�	HFC`�L��'�1�p2J��&a�!S��?���͋�G�+c��֍k�a�_9�4*P�Ҵ��c��PU�'$�I�Up��a0̕2���;����5������?v�T
����ˏJ���emi�392L�*�̯�#���Q��/N�|�!�p6���������� ��0ggkx�#�Xgo�8y"Ad-K̼ݰČ����\��ץw4G곤V��7l4���.R	{B��$��l�F�X�>s]i;˴��7AP%�`"ĸ�6@j��'Is�2Y�ߍݤ�y�t~{���UZ�
�EV���㡑b�Vq
?KŹ�AѠT�Z�HT�!��-���/��� p�?�}u���b1�uI>���Yg�CEH�	�3�{�W����8�K��m����i��H ��K�
�/
�DH��:l�ë+Q��'���׵��6&�lB!->Az�cM)?���2Xn�t��b��e��*���Mf�*a�Ԣ�m�RH������W Sx3� ��錈cC�Ȓp|��[B��qN�ͤ�-XZX൬�ׂڎjS���?+� �)���_!V�֤=_C�w<�ݧ�Bճ��6e�:Zp�l$iV-�Ρ����@C~�O�O���4������*��/�8�kR�b��̅���@�׬���*$������D�`� �
�9/�ܘN?��VrX[�Vv��Q4t��51(rm���->�$��][noB.���*��ܮ�A�����K�|<�%GP6@h�lYz"4�D�q�����A���>�0� �W!b`�M4	@���0«�Q`�@�����C�Cc-26z�@v�t�:�l���F#@�O݊X�#<
b,��B��>{��KBg\����$W!�K��=�>蔩��^O�ZzѪy�(��M��>���	y����0X�x,WZj�c�X�(.�f�����߻����9�1��RS�8=��?�U8ri�Rsq@>2���s6
zBfW���L�J���&æ����-�UV�?�>y]�@B������.��A�O�bD��/D�N��)RعR��u-�K���|{"�|���[`<����皩+
p�9�@x?�7H��Hߒ��>-nVr�@��2µ�����R�rT�)$��=��'}̪�JT@���K�+�����B�ڂ���`��r����jȅ���zaJ����rE��ڢ��V;"$H�T��!l�%� -�Y��P�n�����H?Cs��p����/�tߑ��9��	et��|f�R����#��T?��%��$���7�.���0����5�G�rY�u�N�x��BF���s���H���^o!�T���	�h/AL`A,�AN�_M
cQ�7!H��C8��Y�h��tI�L���	�c�@���#H��H��ѻ�&eB��k�7Y3�{N.xBC�G�B33B޼�2tq����-�u:���±M�u�m{h;ES�ׯ����U�FJ'��mđǔ��?B2ʧ��c��:�Hy�'!���*G���C$4qOp�^�4\���tUv8[��sF��d�-?=�+oQ���o&���C�6�Z�N@bun%��MK3mh��P���&��.��Z�.6Ҡ�@9����V�l,�l�����^[=�=�@�9��>x��_&�Ek�Z���8�Be�J�G�9��W�n�p2�g����tˤڳ�w����B�[%���"������1Cu�yU�RO/�o�K�49@�l��!�^�Ze���mp�u8]��:](�w@+Y�m0��V<��!���ȊJ��$^
$a��r�E[�RØ���{�º36a\�@[1q�aja9�ij����,J lb3���D����)�`в�L4���-���*����M�pp�+���/r�"H�PV�?KMC�&K�ŧ��I����~n?M.����	o�$6}]��A��J�:��P]{#����M>Q�?2$��Y¥�Q*��K*U��K2��	�Q��\>�[A�A޼H0��&���;pK4vb�����PI�c))w��.D�?��7�Jj�����#5�f�0v���	7��c("6A끫�� H|m)��"�M�����C��#�R`��8�U�2��_�TMK�q�A�=1M�R�ns�˝���`�E`0��e�Õ
��jչK�	>��P�`,]�BI7�� �k�ν��/���d�h�A7@H*9L/�s�h��V������i���A��Ԡ|�b�3�z	�u�`�y<�wQ�X�cq,�H�yYǃ�E���#���/���	�1��&j�\0h����%r�Q^J�\�����b�6�n)>�M�?̲0�`75[�֯5z�_3C~b��
G@݇�"U�~а�@ۍ��oˢ��H���v"a�����[R=��̠M�͢Ad\5�w�UR(!�Q��a.2���ج\��1i���o��Zv�g�Z	츄*G�a��ȭ�J	��z�U��Ov�/�s�fΓ�:�T��.~pP��@a#���(��ֱaAQ�
Y�/�]I�f�B��5�2(���"��!�/:��h���$�c��TI�N353c'P��J�0t�M�3�A��B��1�1C
%
$x�.��Ś.8ФTh"���$p҅���+B.�,5W+�,MA�3�)|9�t:_yN�W/�)�%9e֮$tX
�o��C�Ս5����,Hb]	�i�SKD]̺�@�0� 0J�A<���x�3� '&���X`qt*- 8,S((%� T=��q$�­c^�����#
�2�qJ��0n��W�;Meoö�v��!�
�a��>�~WJx���`������Kf�Z�T��-1��5$	$�O�㷹ttl|�g�?�U�R��괞�uᯁh��%گh�;��V�Z�U���p���eE�+Z���!$ܔq$�[	�*;M��,��gߪ��P�*�7�f=	x��^"/kF��������P>T�L۸��
��y�r=
��z.1=����.�{A�f��+�9V1
c�U2h"%5��^5
�Q
��es-s+����K�rG�-s��e�p����ï�d?��UR̪0�H��_q�כ�9$�M�`1��R`����:������$�!���،���H�$]����S����Ϗ@X:��6�:"���0��wA*��Xفnc�����1�Ӡ@�9�õH��B�7 �h�Ɏ&���
�y��Ea�-��_�57naK��(O�SR�c=�3��:t���3S�n͈��pv�ø"�*�n@5dމ�5>��3���_my��+��Rmz��`�H~�,$�3r���N���;�$Ś<�ߥjH�
�n�QҨ�0��q+2�	��ĺ�%9,�PPnW�B�1�����A4ϤU1o6)���d}�kH�j�Z>�R�8Sp��[$�#ʗ�(�L�=T(6�8:Ramϐ]�t�@�y�\%�uaE�ષ�ۃɁ<�2���[�bqܒ=;��ć*��� ���a�2�Ru���B ��aX6|'�Wh�o}�j�S�U}���Z?)��!:{�mO� �����8:�a��)I��N8�.Io��4I�+�rL-�A�"dj��=��^]���t-ETeB�?l�RO�@o__�q��\��e��5�6ȹX<�E:��9[w:X0b�g�S#��2�2�fp�t�(_�#4#[ ��B��^C�m$�A3}+Y
��ȒWjiY��d�6��{ʹ�+�$�"{c�W��r�C��@v4#�3�	��`~�<�Or��k9��@�L�>f\X��Pc�e We�M��Aph���1��Tͥ~�soW�Aп����c�v�AqΏ��M�]:!Q|��V���!�*��5V5� b[("�c����J��51��P�L}�"R2Ժf�?\!���޿�8Uuق�6��Q֕�0��v�c����&���=����C��q5��*Jc�UセbK�s�����dT	e «��tDs�(Rd�A2OU!F�~�7�	"�&��T���
A1Q�s6�'E���.,��L�B�3�r��\�,Y�?�a�/���Kp�:H�x��k����\�����(G�+2����m���՘ܸI®~4����P^�`���D�]����7���B�D��'��C
������E���T�f��cU��
���}���s(N�byMh��8����W�죝b�~����N8�}g�;J�t����L�MG�6A�Ò�5��O&?�ְ<�Jo�K 9���X*�Jʀ�0�d�H��" ��%�&��@FN��Gx��a�� #^���~畵�s2��,0�f��a��?q�5���	?5f8��E�Ia�~�!��9��^z��x�����Ў�;�0��O������P#+C��BC��HC�����)���@�	К�p�x�DC:�|�	�LP�P�Courier New
BoldVersion 2.45 Courier New Bold~�VE��E���Ո������'(�K��7�"��������
��q-H�g�'�,�f�Z�R�ͺ1�? �r�c��5�ZQPD��1N,�&E�y��f�FZ���Ss�:�>Y!L�)�v���f�����qZʬ��
}Y:f`"9��üZ��\��y���p(��ڿJl��|���߹4?k�
�Y�P7����0��3�����!u7�V�ݎ����h�o�՝�V�����m����)����T��8ꥉ�m%3@9.闚W�A��l�Y���w4Q���VF:SIĊ��^��L(4�$*NT��	�0��df#q�&B��@��TýNQ��9�K�s9����Zi��]w�Ȋf^�M^“1�]z��闥܌ �8[����IWPqt�A��r0u�}/��u�xx�H�p�����s��=�q�I�c���G�����,g�CB`z�7�NW�.��Fz�$+f��\�#���PE'p�b)r	ꚪ�M�Y:����d<�oz��%��߸W��E�R�F�T��k7�_-
�����6��9'Dc�%L��h���T;��xЇ��vi���tAՑ�7��2��%y�s2�0T'����d���v�!o�v���$�|�
e2�9�A�-���캑�)#
�B�1�&�o}�9��}�oH��TI{�VROJ��G�zk�p�1�s2����e����B��y:�<���H�gh.���Ip<�����M�6+L�~NF�p��c�l��11�{��LyG����`*z��k�m��V���i�l�&FD�*`Ր=6�����ѣ��'��S��c+e�t���D}��ucK*�0t\(&.5���"��`V�`�<���&�^zqk?!(�N��M���s���ee-�k�9'9�r�lS��d�D�-�9��%J�MRqKZI�MUf=zU-��O�QM��s��\��v�5@��5G\�\��;z��X���i��-��9����K�Q�jt-0��Ƒ��b�����7�Q�=�� UYLƪ��TA?s_ƅ|����N�c�AԶί�����o�|����_�#�
��N3���{>��3�5���c�+]!TD�Zv>�MU��c�3��A��_C E�cckZp����;	U�D�B��p��_���g�n[�D�xz�1tM\�3R�U�ũ�T2A4��H�;�u�}Y��Sm%g�dL
�	��93����������x�V��LIVH�:���%��qv�Ӷ�g8�LT���1HL��1X<�g�s3X��fRBl:��h2au�UL���&a�����L�,�sP��N�Qh+�'�s"]�*LS��د�z��iQ�_�#Z�^��i��x\���(-2"�+i�ٙU`zbغjv�أL[���u����Y���Y#e�r�����W�Ȋ��
�>K���0����g"Ń�e]�W���Q��&�1F�$���=B̋AJM@K��(��ˈ�bh�z5��u���������������������������������������������������������������������������������������������������������������������2���������������������[̃�h�D�G�/��*�\+�*�x2��侐�����e����z-�;@c��uփ8�E�ª+��v�emUi���ty�K�QNy@<�1�3�ʔ%����y�9���N�ڒRTO2��״�dؒ���\X�-�6�D��r[���۸H �����/
�Ii
�e^��V��9�>�<W4 &:�?����I�T#+=�,�@K�^s���;"<�_�;~��P�/���1�8��M�L���o����a�a���2�
7���
���ͦn���ŽH�&�&�a��zZ�<.��/�,Mw�g|r�a	@����K�V�>;�\��l|���1/��M��+,�S_��Z��J�tA�P;�1����'	��#�p�e����;��;�aPeH�G�U�+�1t���Nq�Ac���%��N�Z�3��)�	o��Y:a2�+�3�r����z����E���W
���^�#��1���ə����Q��P}�|��۱���($�KN���T
��5��hy6#�"��`�e�dRYR
e�LQk�Kl�la&��6�����q�Ƣu�Xe�Ϝ�s^G��m��\���N��mvgw�D�a����.����|G���'�;�F��0}�ceBJm�����I��Z��S�d��[�"�ş�8���3 H	�
�m�
�i'�,��m��y�n܏�J�	��ƋA�a����b;Q�d�Z;����*��k=�d2��p�:�7hО��VsiE���.]':��`:�%�KH>В�*t��d��˂O�ZB8Hm��ԯ]��9�¢&?�j�! |�����+��>Osz�4����V�} �cv8R�M�����W�h�3
��msJ�Ey4��k��'r�H��d�k��c�̑t��}��q�b�@��P��T�y�<��Z�o�*�5����3�'���p�1HM	�l��I488w".*�A��a1����{��}�%�����&��Ȉ��F|!95�^�%�DBd��ߦ���Fg�����E�U��$uH؀�U�r�J�4@�-�`A�p�^�W�l�=Ͻ�t#EO��!L�\�c7Q1�mX�g=���ݜJ7�,+��`�7�!�ƒ0�bAu��)���?��}���WA=d�Q�6ޖ�N��
�U�2
3R��m/<J�p����sk���6�J\����]�V=Qd�Ԇ?d���lD�X)��C���R�4��F�%52@���Q*N��봖j�4K�)��d���s* �:`k�*�ݑGi�j�M�#���Ţ8���DlrU��S��iv�E�"���.؇�1�%pjϮ�&9YuZXJ��D����N}/�+����h���E�Sz$��/]���衡)Q�s����wu��Qo~�ʶm��G6C���/=�~8���?^�=X[������Q�˂��Iׯ�0�j@�o�ՓА���Kv�U�(^�xx�D`[sDU>� E�ăs�ȓ�
B��2�t��*��_�69�VZ֟*�N��!�2z��<��6=ئ�t
�.+�3��j�	�Ƞ�
c�$\����p��Ic��}�8�aڃ����VCgU��0P:���d9�V���1h�ݐ�� =�a]��$��U��[��n�
������<����Iv<X�/�Ȏp�����H��Bӡt��]r$���-Ǹ���[��4m��"@���mڶ�<��y��d��
]U��Kr����޴��E���03������>�g��n+X�h	��Ќ�I�!�~���ҋS7�(�d���c ΍���'l�x���b�'l�A�`��+�q5���0����W�'�}P��h7� ���q���IP��+�s����X�o����,C!.&6��1R��{��sp�2��v5K�/|,���H�:�m!�Md4`�4��C�_vt��Ѝ�rDMGG�Y~�>	w0�Ý��X�LH@=bE�4 W�~k�>?��=*���@�W	���R�Aޢ�E˒��X���(��̞j)�%�>����.����?�h�bT�XP�2�E����JW4����ق/����vR�@>5�����4�!���=��,خ��8UPe8l�]��0���<\�z�'�[H�x��FN3��Gx_k�l�rɎO�SnKC��F����o�oU�������S�c�l��ٯ�t�=/S{�����Ea�i�櫗�%@�䐸�M*�2�!���v�~�‡D&7��&"قb2�K��X��`XU�
���,t��S��6
a����*!7S#�#eq.CӔn�X�C��H�T-K�R%8�H����"�A��Q�B
�#��EP$�7tI���+��(��@E��n���tHe����U� W±��z�Ox�Fz�~Ct|Z'P��h4_%Z��RYJO?:l���>��8�����lB�Y�b��xH��3H	E=��=��I��D�A�F�
(�z(����(�!��A�]���*K/�����r���;�f#l5�GN�4�t$(�(����]�po�m
2��lG��p�t�JK!&�,�D�~*L;XLD!P�����ʢ)!��vy�p;�V�H����^?��֜ �|PXj�Y���U�S�p,���Il���ꀌ�����6���04��%'t?!��
�
k0ȏ4,!���.��.�r%�6�`�p <G,1���!��������Էd��@�׸��r�&��������&ͅk
��`}���
�]ʙ`��DS��X����Ǿ��*׸��d���և�_GW'�	�ޝj0��BRcV�S�i��B�EJ��d��������Ch�V�a�{A�ʨn<_�Hԥ�%�0�"O�Ql-v/��r��IF��b~�I��x7�e�Er�R��\���s�䐫����ZCb_�g
2�B�P?��5�
șX\)��c|�/���3Rh�df�)��ӹh@�Z�vH{�~����Gb�䭻����-Z� k���L6�L2rJк�ĭ��:O�g�چ7��Ř!9�
�?���ˑ�}c���Y�#kk���d��e0��5RD��ۥ�B��&^r;�M�&Ś��*e[		�<�F\UȡR�)I|���K��� F+"��mF+_b�Uқ;�0%����9��C+E�ƻ�j*�Є��E�e"����1�~LP�$��W��E0�q�g_���K�ADe������l�\����9�	�n�o\��]C�#���/��2�UM]
�.,��q@)1����;��]������@��!.U��@
�8�Y@�WC&)�PD�,��4��揰n4x�����׷R`?hh�~b)�+�)��4�aok���h.����B
7r�vo!{�����WK¥G2��Ӥv&b������9�ĩ�h��4{�G	t%S��A�`���%�����	�Ӫ��l��I6�l�M�K.�^C(�Q���U�%�5���4��W��u��7l�(g3��tq$ġ$7��{:�����D2�Һ�9�5�y�*	
�G��v���ޅu�p�rq��R>�f ���qv� ��"j4*В`����?����	����#���U.;�|��E�p�J�!��yx��	v�P��y�Ȭ;��4I5���c"��G[-No�8{�d�6S/�:�,��@2��("~�v�����l���N�,�c󆅣=��)Ӻ3Ҿ��7[��Y��vߦD�مL47D�<���f�z��_�v���/!_&]Ă��X�>���(�%�.$�:��vAN��[��T��C�@���8&;�	�v}�|��|·'�;*T�|��K����y�}7K!嗁�|.ҹK��R	nM����RTb��ě၁��J�(]y�qA�Hj#����&�T��k"�aɚ�b"����g��Ne�޹�2�$l�)Ө5�+�'P�p��O���sl�4IX���#1�V_�#��f����R���q����Y���<��#�e(ݝa��A��Dx��nu
v
&�T����}T:�MYZ�p,	y���>�e��ꎲ�.zUr^�
�L�%��|gf�>-��㤒-�~1n�s2U����Q|̏�2�i昦�Kix��y��E�Z�.��JX'r��	7OY�̫-Ҙ��`��,o�D0f��ᢦ��!��h$l�3
!|�.�P-�
z�����u���2n7��йS[D���ȯ;��Ԇ���>ݟ
N��͞�0�����&h��6��2
ݚ��~�k���j���\l4w�?n`�u�$�7� B�h��Km�ܭ�-�z-����$�-�ij'��O��lyK�y�B�W�*�7��� ����F o�F�F شFɩ	X�9\EL�}��r+�����H�κB��9�Q�aj4����cv�8���@�B#�
DC�n�ĆB��A��sgI8d�y:�2��vW�BD!%����C�	Y�͎�[��;M����]m	s�Bk�b��0Z��t�B�Qй,�6*�YFF�H�]�
(Hask�K\�bP�c*�=�?���U.3',���(������溷��ݷ���:v�z�1g͌��m̹��t�ݖ�2�	-�~��_l�C��;�HRq������ܷ��,J�0!y�V����@|	!q�65,$;-D�Z���!A���3��~=�Mb�ή��CW&
�ڍ��{�,�e�&K�ֺ���cx�>G��|�m0+�s����v3���i�;BZ� �8zVdc�ܻF|I��E�|�-�"�ޔ�;PCx�>��[z#��"z�r���v%$DZyh{�F�M�:� =2��!�b�p7�9ϷMM5��tq�oДr��m�+��p��f��p�LĆ63�ra�(@��{�Xw$��5)�	Xh�C��A .����1-pidխ�c=�\��$}q��ŜsK��*��m%���O��L�pC�a1�VL��@�7j�^@<�>�z�~S��"�$eĊzt�I�#>�;�O�L�Vk����8�D�*M)�����&Bd��#��|��-Q�k��Ģ����D�QSԳ�^Jv����ZMA׈����{�ў�`k�i� E��$,u�P�a5o�<��b�`
*����ٵ]�k��^f��}��Eku����w��Py��.�͗��E
gf.S[.>Ti8�;+<�9.��t��@)�o�CxN��."l�&#�J\Ca�-��1��.�õB�K���md�2Sa:��箮��s��p��a�A�R��ȹA�žU�>��$�X�)x��4IL�x(LEJe�@���d{�����p���1�� �����4\#�a
?N�M�n~^!��]y� 0�.�o�ߪ�q8�lY��4tL����� &�^�	��4�SHE����†��s|��fv`��zHCu��ER�J�M'��.zׅ_;'+���5�@*;EBk���D�*Á�5����v�'�pC�U�l�����@����K�����)|1�D!x��'�Ahw
��S\��2��
�c<�����꺓d��8B,5��%g1=��Hq^l;��=��ğ��i
FB�;�P0��g���H+Q��������6O����0�B����ST�)��G��D�(&�59tn\��8
�f��1j`�9���QVЉ�S\ј��/���C��a�[r[r�Ga��)'q 
\˲6=p�4*I#?��Q��q7����H=AP��إ`5�X�O൭�?�)�6gz�ŨC��1��}�XF�ź��[�G��!�.ע,kh�b�Q�L��[^
Œ6�X��ފq[�M��xs@�����URε��V2N-z��{�ߴlW��z� M
�@l^:���e-��
��L�[V�«ıCS�$^�p�.pȂ�b��`OQ��!먦kZ:�����r��E���`o�c����#��A�
�=�?�����<���y��w�&nFj��'��X��Ƶ�D�;�L�����x{zK������N/�iQi�bH��
�#�.��<�œ��Y�u�a^���pyR�z����#�|B;���5��x�#BBL�%�8�f�;�@B��$tk��|6vo�<0�UPέ ԙ��Ր�/�L�F�-����c�x�o�`�zx�ȍ�|Wɴ���k�Q��8	�ۖ��!��,����J/��=
�r�T��t�؅�����`�Z����̙2�aR��]>���(
��:zdq�&0ʬU�d:H��:�̚�.&"9~hț�äA��2(��xX8O���u�l'�H��Pq�������y%����p�(�z<�#/%!"�6�T�������Q�'�a���ދ�
?z�򔍋��V�
�,�$�`\�Q;�D��p(�~ؼ"�6��f���T��o�L�]b�I�B1�	P�hΣ������mj�ގ�ڠY�ޯed�-����Wɣ8�C�'HZr&sŲ  4d��c�qtӔA�I{���7��P��\�3	$y��J���	�(K=��.P)���equ��f'��=	چV�����=��h&����׶y�r�q���T�*�x�Q��/�/�C�x��[�#��|]��Z�[7���Ԃ�q$�/1�����
�X��a�	�rV}�5
;���1�{R�#_��d��l��I�� LX�s0�M7>x����
F�{d"�9�3��"S�[T�;�7R<� 	�X�8[ͮ�#@2�_J1��$�!�s��{�&F�����,gC81K�����2�r*1�&��7DQ�3��;"<<R�
7	>!er��T��ف��S�`��U~tq�$o�m�x���!��b\���@�
���<M�����J��Q��?�>���LI��l4�{֟��|��RУ)"�HM�8I]���$-7b�M%D�F̖M��<�Z�Ql?!�~�ǕG�Ec����$`����ɰ���i�F
%bT�R�J��
�GD�_�p0�)�WqZp�1`��'�*�TQ��kco��ʐ;$�s`w�*��y��)dj�����$�J�~Zn�m0�u'tMT#��kM��A�C�`�� I)���	Ud {�ք*)�G ��	jA�A�w*�0�*<�1�/+8�3�2�ڨ%FP��BM-��:���|ȃMcGQ�����?L���cK*Y�O["L�7Q5��j�����4�TP� 4�"!\h�Z ����͹�$�rө�rh(e˛@�DQ�@�T^v$�]��8�reL�ӳ�����)�4LB�B����T�}�ē=�S,ť�l4r��=�dNvRP�S8̷�U�6�7��a�l���� �Wm�7uy�Z����)�c`</�Ջ0�g���Z�g�}>�X�b��o�� X���hg#��+�u@i�̀jU�b��V>��Hn�S��55Q#<��1��
Y�W�1��ǟ�6����AÇ�x�OG�(*r�P*�"@ME�d�?��p�L��(��R��1O�4���D}2{��PN�dM�6��p�n�Kn��q�)���-�Xo������|̬����
ht��@+�0�mTF�XGy"�0�H\0Z��۱5c�O�a��p/���˒�Pa� �1��[E(T1L�,�,�8�1IJ���e$(j`.��o�0��Z��tU-�J��ۇy`�B�M#��N�A�o
o�͗|�������ݒf��~dw�\�խbJi�S�X'!��+	�A�'�d��ǥ��۵+(�Tw&9���L��&�����͗�F��=7�$�Q��Q�4���ӂ@[,& ApAɨ�L݇����p�W�gj���:��!���I&"5hk�Pal� ��"�z�ɒT�>Nn��s����R��e,���1�]3�����=���Gӧx�k�
��w�#�h�8��G��E�
�&
q+B��s6���7j�Ȟ�$�JF�%��*t!��Sۆ�"��X��{�:�����.���{?����Ik���9�<�`�A ���dB`��RHV���hQ�fD�k��H+��a�%�(@�A�"�����#��t���A��=�i&P��.��C�T
j�,��l=�3��rO��={����/備(�Ė�Zc���q�U��xv^��e��\
;�]N�@}V
�, a�Auxu�����9,�ƙ��4�`��x^J��GZ��Ԉr~��l����d�)N�]w�=�_����B��aGm8��#� �A�-�`����l�OX�B���gnj�\(�L�*\�.�d�У94�����F��
��.���6�<,����7��ł`���ͥ�g6�����b���Q�L�}'��f�\��~�F��M���q�B�zT�h��J���)�l��\	D�l.־+�>� �f!��L��@�#���֨��l�c�<���,-��i�2�^7��1�}gOފ?l��D(y=�P(H�z��lK�r�B+ԋ��h�Jo���{ŃX_��4�q��eXl�s-|y�_�~���'�M��%
OV}&ּ�[��V<��*-��hD\޵p�p��4��@�p?�M�|����ZP<���M>)�9,g����D#��&� "z�@y�j�C�rLٳb�],�]�/VM�+Ü���B�ő̃!?�6/�t%�U���eeC�9�P�#*DjyĶ�+$��,(�띜�E}J	��I"j,L�ŷK�>�̷�"e�B��G�������X��3v
1p��câ��@��_�^�a����-��]�Ѫ�1���M¬�5�D��D�e�����F�%��(Yj
`0y��Б�$S��˄�8�V��#�ꪄ��\N�Y��t&�z�w�+dE���.(fZF�j�8�v>?śQ�CT�!4�c����֩0��Sv���0�lg5�Ǫ.���3̮���t���O"��cA R�r[hg���e��n�&��&|�bX�9��6����өWY�k%�Xb�HJd����j��f8!d���	\����L
��m�l�E�:]�sl&&�3;jJ�h�L�)Sy`7���fh�^�0��v>@9z���̉��o���Ř[�Ѩ�e�%W�6v��_�?ŠW)(w-؛�y\_9����q��q/~X��,�a�y.Z��Sb�Ӭ��c���fИJ�C��{�.�ov�WbġA!y�$��]�͢-�d�dNj�]@�4<
L?Ib��۞�E�cL1A�\�L�:ܾ8�B��Y����s���c�8��*�@���#g��O����U
x��РV�6
HW�U�K٘Z���c�9��Sp�У��>
� �w�UBNv����ġo�(�㦓��a5�0�1�W���&eۗ��8��~ԈP���5C��(e��`=4T�uo(R�u T�G
�dE�#�M�F�����d�]L�ߛ.4�K��|�2�q��6�[�T�W��À���P{�ŋ���U��@��D��+�0��Pp'�X�󼼀ҋO:�VB�P=W�<�
�B\���|��I�纂�?�\��}؂��:(GK_�3�(��
nHt��/���Q����0�4	�5�k�ȼ����XeQ�����>��%�;�1A����&���87�}�`o�� ��W<nX7=6Gf��3a�3�@��)P?s�
�ɴ��;��L`���ʒB,�>��}���+�D��,�l���x	��eh
���m����1H��2��M��,N�ˡ���'2����p~{��zd]@�~��Ϋ��(�@��J]�סBA�Ĥ���8��i��	�v�
6�X���	�c�A�p�(?��
Ի��<jA�tl�k��>1�`#00dЄcԁ
.���"�)����X+�g0�cΤ��K<Ⱥ���X��n5�d��'St�x
��l$xx\������\n��c�1P;l/�b��LB�I�f5,3k��B!��8�[D&��䣰.��|�^<T���b����m5�M��Z���ga�1����;'z���z)�,����싋��&�
!��'�[�>��`�P-����3
07KغVL#��k"���ڃ*�b_����60{�p96~�� �b���e
��fw����C��e���š���aϼ�k�z ����������L�����ss(q�	
��-�nozt%���a�<N�9���֯���V_D��8��md)d�G;�x���D�5W�H� Me<6h�Ss0�8Iُ�=�iM���6j��Vy��eT�<8�n#	G��d�3G��i����.����D��Ae#%�K��M8I��
�/�|yf�60�.��0�o��>�T¶L�A�=�GzO/w�\@��.�I܍�-���U�`t���F��8M�����h�]�}�Ƨӳs]�L��#�)��kpsT��傒�Km˪�}�DL^�3蕟�C�ߩe㰽;r�A���T��U�p�|�`Y��_�<Q�r��nW���E
��e�UE����ri�O5�J6c�'�v�3�����r�����-�MapKm7��JGE�1���<�e�J�\�U;'���S-�88׽fRh��ǵ�v���T?O�A�en�J��	�߱k1|j`&�3�Pk����ơ�׹����8��H����$�$�k0+�q^t>�A��K�d߸���"AE*yP��*Ӳ$�;�d��[hH>�d���; ʎ6g�����F�"sD�orI@ k"B��
PR�,�
��X�
��$!��
y���&�!�J�g=�s�\3AH�ס��{��F��9&
@:0��0�IG��bd�0KiA��Agp'!L��3��'.q
W� ;1@a�7��OV;�Fh-M�,���'�����8��0
W(�$��0nb�,D+�VI�"���d��wmy{��;�%nN�^G�a��3�_#�a��ho��p��=2O,�́�Qe�U6���<	�q<:Op�n+��~�������(�p��œ�`���`I�`�Y��!l	�/㤐��Rcϑ������}3���{��~�u�F�����A,�M��GqK�����`_�x%�Y���Q�$��I���DD�Ui�_����u6�(Xo��%�e�ž�"�1������I�.�'���x{�8��el�C�g?Q�N���Gʢ�����q�i}a�^a�6�֦��*��[�(���ai���\�~(^�N�u�Ȭ��
I��j�E��h��i. ��Y�� ���?I.͟,y�H�_�#�3����b��x��^\!���/f\9��|�yB��(����5�K��M܎���Y�`���݌��z�]�}׋�ت�/����R1U�d�O1��c�o�q�l����H��/8c|tߙvC���u��A�%��D"�i�Jc�����$�hIM�P��/���uo�njX7�H2�Ȳ�,ߐ�k�w�UY�!H �y<�$:{h���F�/N6�+6��vV�H
$�bG�b��(C�n0Kg�J	ND�9��-"������K3Uݨ\�.87K��>�4HeYV��+R	;M679E����;�r�g%"HN6�
�+r��~���,�Z8�d�T��C��c8��NEK�ۉ=5	�_�ҒL�!I��$�X�j���2�dxI[�w*��$rz�S@L=�-����*Z8>��x
=���l,��ʁ%������ �m+"�uG�s���P��j�:��x�
�ڦM��p��8���@c�
��q�7�Ӝs�m�'rm�$���g�
�������?>@�����Yk�<���[�o�6{`�Z��z�R�yD}$�r4�<���9Ly�	�v��6&�d~+xSRQ�� �H�$2�)_4"��S�0�7l��޺���+�ԕ�e\�7�9���)�u�F�gr
�Dˏ���)�V�AFP^��qOq��������+�:ZO��9�)^م���Z��w:b����"��Tf3xyG��	��6���TGNC��%G�	_�)v��f��A�*P�U9
���ќ��@L'?G�`~�q��2��aS�&�O��(�H�г���;;!�����&�O{Ť�dف�K�YO�E���t	�6fq������G�5�ը�Z�"�X8���u�\v���Y�T:���&�Mh�-��VV��ܢ��`"}���2������|@>����[��W��pbd75�U:Du%TSYe(�4p��1�V��c��SC�o7Pm�%d��ٕ��SX��+B˻���$8PQOڇ����]����V�y"(���w!�Z�zަ1�ð�y�be�
���	^NhwG6n"��H�0/a�Z)e`2p	b�[�\��(t��q�1�/�LX�?���1��!�&!�W[�
��½�Y]g�p�,����W�!1�yCCV,_�mf52g�ƈ뉉��W����h:�W�ڢ, �Kcz���6���e��#i��c&��"&�g������%���M�B����E;�����h'"d��?c@x�A�*St,=�.B�	����=�t7��a��&��W��R�0�5�x7,�*UE�Uo�I�)�N�����''�4�B�V���d�*>�fam˖�vy���Cc�hf�1�@k�l���x�r@ Ƕ�!����n%��S]0q&�l�; ��$PR��6caŮ��(�x�ڤ�u�D���2�
Z5��d6���T�j���Kt���́��v�7*��GdI�J�i��o
L�
孅6���fG@�V8��HR������S�4x��--�_���:�VX_�W���l\�<��YɊ9�ZP�R[n�~�u�Qf��x�ɶ/�ka��1�mSU��NY���_���Q��#q�f�����C� �-�\@�n��ʬN�n*���Gy��B^�«^��8-��L�W:�L�ԯ�ΌCO|�2��-�1(T�8KG-���^9�T��G��x��X���z`w3��Οh�^hZΰB�

�IA�∌l.��BͲ���|0�G��2�Լn��0UJ��[���<���r%�
��H���n�����L��Jj�p^��k�+����!�O~�;��q#lf��ྨ"���\�ۆm���DZ�F�t�"���0��Ef�c��G^�� �5H��"r��
g͐�����V�-��/|�]PĽw�tk�պ�§�1Bˈ3?�vHP����͓��d0⦪�/w��'?-H8��,C R�J���P��Z�����y�@3�]��!�����d|e��C�(%�!�G���Ѿ��d-�7�������Eǝ$�J)涷8�|���@��	�jg�(�B��>�˒�H0Bb�ǟ����0�<\e14
�(uߔ8D����1�!Ҝ�D!�́ፉKO��3��
���~
si�K�a���IӼ�]�O"'/]�/��}@㡙�8�Jb��TC��:}���9�X�5�m�d�{s�u�A���5ͩA}^��1���������h���h<2�@�d`>a_�
�����"Q�U�X|��o�V�MlUK���c��+�q�Ǿ�,�.?�/�BW��Y�ωq�J޼��a�|���4ޠx2��`�[���]�%.E'{�r6��	����J��9ԙ�0ˠ�F�m4l��bWVH�V0z��	�	.�⅁~_X"@�9� ���.+B�C,���+���
(2��؜�R�1��s�<`3���D�
�0��e�a�vʴ��������DƅZ��,(�� -�^솗�����<���J���ŵ	��԰aJ�zO���Y��;�㌪�2>���4�R0D��S��>�1џ�i�rW�~��t*��$�W
�'{�W*�#�"��a�^8����f�IF���ǚ��G���Z����P��T��#L���j��-���X���:C��Ö�0A
DR�����4=v��5�O�2@�n���K���2� ��l��(���TVd�.:������zɿ�8V5�a��.m�!Rg���&j�8Q�)w|�Q��7�u�%��("�rFJ�EG����rm}y��l7����&��������L*h�O:F�]���q2�]��S�l²�133�<홢SA$}�\�]���Q�C;~6{�s�k��� $�H�:���#���g��ڂ&*"��q�MTt�������u�f�So�S��_�8�y`��}���Ӕ}����%$��Rxt��J^��U%AI�e�-�w�ɾ!��C{ɺ=ɧ����v�l�,��
��"B�AQy��[�F�T��3����e�	ΙB��U���)$�U��%+�f���
3�C�g䇮�yZ��'�"
̸��r�+]|�X r=xH��|b�]*�b�2�|W%BS+rc?�h<dQ��8OML�[YA��i�����3��j	xT!n,��/D���(:?T�k�d��Q�������gw,-s|� F3�!9��O�al��7��')���o��8j٢�>���ayH���Αr%�\��-�$v/ɹXV�_��C�T��Sg�+�1%o�q2(47��<�O
�]�M�1{a�$��X��U�˞
���c��L
��	�d���hoL�',eb�w \{��];x"E/���-v�c������D�0"�܍��E�
���><�T�I�=��jl��A�0�777\�.����ߨ߶#���c1��G/��1����Q��-�/;��<��/�⇚n���(D��9%RbT�HF�΢����|��c{q��-"C��cSNs�J��<q�]��,̈�e��<ѳo�j[��&t���H���L�O�.u08\m���E��|)=S��j8/#MQ�*�3�k�Y^�YzQ_q�5`{[
�D=\Y$_�
'Dh�/l~�)���:9��D��9I�P���Y��aqd�^^������c�<�B�rf��C4��p��;_ػ&A\ؖ~0Lci��k?
���	:朥��0�T���&���宰��[��������1L�ډ@�oZ���;6�#tU'}�Y#�%�PG`�� Y��&��MHk�	���}`l�
��-��"�Qa�
D7��q��D��Z�o:�I�)d*�I�{P�s�E�P�kIsQa��!�Q��ΨjN�W��ASY��@|�_*��h��I~�m�u#���;���<Tʋ���M[�[�#���ʻ�^�����N #@\�	G���5}��!G��Q381:�IL��d�o���`�ճp�z����-�=�#��&O,�Y��N��I�������
�U
1F�\Qȓ8դqY
'�
�F�A��I3q�5oR/&���D����E��7��al{�@�R���c�����&0\2��`2��s�s�/�gL~��ݶ��{�o��?g���V2��;l="�������8Yȏ?�q��u{���d`D;�8ܰ�����3J 9��݃_�g�/��x]0��ܟ���Im��[����a��<V�L2����� �ۥa��g�S���|ދ�hЉz5�%�y3*���g���n�Z��^�N�Mlymg�k�8P
`��%��G+E���D�ؑ7,�I��;��Nj�ۀR���0@���ܽA�t����8Q��PL��z�u�x�#k��re4+�WIO�e�k�d
�����$+�P�Jˬ����9�21Y
�A	�L�8��8�{�(���D�j�h+���k*q�cmb�;�D�0A�O쉔#� �J,/��)�ΈL��%@5㐲�*Ӟ�?�>�n4�4������һ[��}��T�D��S�$�;W�$����Jί�r3�MBk��E���C�St
�����"�3���.>�ȯ�J�@u8}g9^a���ˋ���:��'�F��Hm��~��[a;��X{��~���!�H�ǜȡ��?�+nA~�kclh	y�* X�@AY�Jn��x@�[��sr*��[|�A�@��	��O���,o�p)t/��P��0X��1�R�g	�m�Sx�Z�dQh�1�|
hƀT �)��y�2wEq|��"��%7j���������/v�`������=�r�<�<S�_����*�1�V�ע��ܮ�.�O�AT�<2<�kB�V¯���QY8
Y�M����+#��@U�� ���̃Â���o6Vtγ�@z[y���
�	o {��`�k��-]�q.��Q��:�
�?���?'�M����x���a�w0� ��s͎6<D〵�ac�����ҸBw.T�i+�" 
�_2C�%�X�ZNJ��(܂�gڒ�f�wX
��
xTio�j���|_N�f�y�8v8��'�,�*]���d8��T.'���N�Ë(��ȫ�˦ͫέ�oK�E	��e��N"�/�F��а���Bzڸȳ�3l�c]f�;,X�y+���MW_d�8(����S�O��#.Nұ��u�ƣ$���N�Py�P��Q�;XC�*��H Fjh�Ș<H@ht�ɠ�[1
w$�5�jkٳ���Z�`�Ԅס00�eB��F�a�

MF.���9�al�6C����!X1��Cg�0^����p��]F�Ðz]x�&(�V�_d甦dД��1��d��ż^����JD�e?�n>��*�|y�0��C
�Ta3��Ph�UZ!|%i	s��ӊ�vjSB��a;�t���a8�^2����n�őD�#+1���w!�3l�4�%x�=͛���&}V�#��}�%=͂��<I��dH�:�w)b:R�V���OmA��+��J�����2 ���Zd�T���]��Pv��`35)v׸�㛏@P`u�]X�(%�Tx�-p`��p+�}
�'@�Tˌ��ҙ=��!H�I��y��y� A��K?b� g�g�A���S&��1��{g�R�>h����.�5��P.Mh*H;�\(@1a����m�n�0�S�y)����-��ät5B1�C��uD�A�(t2�(�FW�ނ��b��;�j&
1���ў%��F�m;��|,#����p�!��_��	��~�q��voyY�&8 �%w��_ ��Rm�a���4���ʡ>���0F�B�M�������p1}#
}b)7N���F��?b�$pQ6����Z�	4�r�V	^���u7����|n���*yU���=��ڡ��*���-�k�Lz�1\?��5\Ҕ�[:td�>Qħ�)��{����
�J|��������'�#I>�b'B,ď/�����*�@.��)nQ�V��Ҿi��h؉��!�7"����O����iE��@7-�.����
\��=�m�v!�p��M�tu���9
x��j��B'�tF
�B�覸�=O;UCX�cPJc`9ؐw�p�#58J®x�p� ����[��v�&�T��)��T�	S�
&�j�	n��;Z�th2*Do����y�Q�~){�`	��;������ݟ�[�B#�뷢%�n1�����<m޻+�o��X-kէ6�Y8��B���[w�[��;s�I�N��m5DT�f���w�٪�Y�q��Tޭ歚��(�QH|�R��<���Q�/�]�SQv����Yw��1~d|թ�&��0�PIc$��ᡢ��c[�m�<��Zw^��[^v(��7��d�ƹ���=ԉR|H�J��P[���hy�)"�X�(W<�3��%2�.��~Q�%� �?6�zj���(B��#�e�|���{J��#�U	�j#Ё�`��J��kE���hg�"��I�n"
;4>1�K��Q�b��ũ&�OY�S��O�ⵓF�!�����R=tqS�:���ʵ'9A�& o��jN�HF�n�i�zFO`G�qD�)Ev�`G�pO
�;?љ��w�1m.�Dr��c@(-c	8R;�$J03��,0���#7p�
,��/\G��cU���]B��<�x��]����F.�����I�ݰ*D��a�LZ[H��َ�fHo���-��=�p	S��T�$�������Di����4����?lAbU+P��^_�/�k�p�������	&�$~�f� ��G�ֳW2�^ȡ��RN�z�3�}÷���Cr`Yikv��1fmЙ
į�LԄ�&�J��QP����BI�fA|tѥ�WR
-dF�`��{:�5��j�U����us9uY9��Q���i%�ek[�ck�(8���K�j"�Y� z��nb�rUE*����j�-4�]��rISC
�9;����#�@��T����/1�LFZG�I�n�0'S��KNl#"��D���qܞ8"B��Fҟ�W#/�k+C����Z$���L��LR���A)蔊!f1��a�B���:�c�v�3�\Shd*\
�D��P��T���
6��"��2������nS�4��>�ȲK�y�\=fO�V����QG
G�S��7�w��d��U�Q~.��]�u��l�l������o͙+m/$�r�9���F��Hջ�+�;�7g�N���\�ڸ.gnN�^�䍮}�=��g����P�PjS*_�IC-T��K�5�n���ճ �C5BmB�1#��:u�va����Ҕ�LY�s)/�#�F�J��� �]���NB	0�P�0.�9P+�/�-�@�_I��7yByvy�59�˯�P�u��
wt�cK[[C0o�W`��i�i2���d�x���/jSv!��V~�.���*�b�@!R�ڪҫ���s�G
���.Q8QnQ|jBoDީ�����CN^XiZD
)�Ѯ�<k���p�bЎx��DYV�QK�S��{�v�Bl�wF�)9b�+X�~�+-�I�J�zS�h��<Z��je���{��
+Lǭ1�Z`���ʓ�L)�0��δ�t�0�%����.b�����`�M�G`
�T2����N��|���˺�t@��:��**$���(�x�Åxbӊ�a
�n�0Y�w�����fŴ�s�7;ԑ����f�.v�&���v��~�ՇU�u��n5�
Z�*��z���W����Vl�6��J[�b�W���ep;]k��t��
���E�6�u�r�0v~�㛙*��ʨ��
��07h:N�}Cd{�{Cm;4^�+8|4��G���2\�d��Ra�$���%!�'!7wrŇW+�a�3��W��!*mivңP�x�ܝ�,�u�$Y<ȮA�8�\H��5�PV�f)�}��,@�#�r�`M&��FI��6�����"��f0�X�K{����{t-Q
XQ�s�_�d�����g��;��&D�6�M?�Pf�3�/6\'��0l�hM����?U�n���!�J^S�a�zYfk(��5�V]h���h�.�y�$ҭ%�߄�YJaH-h����-.���p=���~9�4��.��$,��h���Ɗ��y����1L�P�ށ��5"�jUC���H0�aS������/��H�b��E��ی��i��Q�{g(�1�y��$?������?���es�b��{�5�"FR2��6\�`n��������	 ��&��\�!-�.y�d��M���M��4���cH��Y<\�S\ =B`":�3����R
@�2a�����9WȌ����J�������&9��Ri",�U �(��ŗ��TQ@/��������K�q���-���`��d���9Nhx��6�%pK(D5D �X,�aZ�*J�����
K�ma������4\{	�P(����/��V�8�'�D�N;����=�bp9/q�_�F�sY���$9	��E�ƕ~ņ)�g���@��H\�,�T.��2�ݮ�!Q]���w
^eu�e~D�
5IĨ��Ty�ב�%�o��K�n.�$iE3<́���VS
�J��3sҸ�tW��^D�,v�=�ʱ��1
���
D��je��%iJ��s�ё����,�L�U:wA~�B�!������:$!�mUD�$j�y�M�F�&��Vs��9�=�T΍������C%"����y��V�s�zG�`�P^#�����L*E�
}�<�䴱8
f`�H�!�T�Y^G^sF!^h$ORE�
f�4�w'����K{b,�n�5=E<�M��X�x��Ax��*/���6T����L���C�:H/�Z<�{�*��(��*S2��}ɉ�q���Qf����Z�4�t\��W	���¯*�[��A�gӂ�Ce~��К�&2�z�|Ⱥ3LO�A҇~���Dgޭ�z��)�S�(X�)9����$������^r!Ѣ}�!?��5�G��yUe3$�8��@�ͿLע�$�+ ��|��l�H��shK���:�*�R�
J1ڟ�2��ͮq���n��+�/*���@^��\��z��T�Z�YTM�*���,���6���m2� ��/Q��5�PI��*mV}���p�߬$��Ur���*�~_G�̐��)���JRsr0K5V����íDt����c"N�b)U���O]�ɾ�� �K�JP�HP(�w������\0a���3�������L@7 b���=B�_q*��M46���c�#V���!�B��IO�ɽ�t����V��#��$��g�x-Ww�)r
=2H�!���T
fUT�q��V��H�@�eP
}��[�O�0R�RQ(��$DP�|�8�@v�I�Q�G��!�^��� M� �4�n承y��$��؋��\^ϥW������5ҳ(ѕp��t�٘�Q�7��c �Eҙ�ѳ���"
����6kO�䨚�%�ܩ��B�n�!�"��JM� q=����2͞����
�XQ��jD�9�T������Z5���L�� Tt��l[�c��ⱹ� S�̧Lt�4RJ�(ӡ�"v1;�nt2�"ʎ
��) �JA�?�$�A���Pd���vD��l�`sx�D;�tJP�G�Z����;�:�ڔZ�\j�A"�����_�4�󳴱��;��^��-�뮃`%���{�!��&��!��YI@����of��j�;���:�97�,���d�2Yq/;��ˁH��f}�a�Eċ�a+��r����W,N+�u-I��qB��dR�A�������jQ�&&v���V����CGr�u�{�MOpk����Άa�`�i��~�xR�vՂ5��/��^��]<�t>�*z�LJ��L4 A��`��vƍ44�Gl�|�����]���6i�z�{��S�‚�������nzM�"�O�=��7M )��j����!O^c^l��x	���y�4<v�F�	�
A�F��˦>̬qĘMD���K���t�g���?����&�8�������S�.,z*������h�0K�In��E?{
�0D#�J)K�z�\?;���1�����3�i
�ӎ�~�+
IT9���\Ҹz�Z���!N-s������s�����;&�ۢ{TTk�B�xj*i�C0��pO�ys$�qLÛ�3Y�x2��&
���#]����֍'�x{4����&�(����M���ћ�a��ߓe2a�Q���������@+F�������'�v��H�nL4I�#����Vǣ`��"U�l{���(2YͨtFD̶��b5��x���
p�f��Am�O@�t�%Ml(*�Z@�L�o��Y���B���xD��?�^
.���W0���Q�]�f�	j4m�x��T�
HY� R�!�"4QW�J�������͂����5��*<��A�k��M�A����|�#��� :�f8"'O�fQ����4�NP�Sʰ5��R��&B�P@5"!��~͑���+4����u�dހz	�k�)�N��@M~}+�))�r��5�^F�-�'��Yõ)\}$=N`q�+q6�e�"c�C�@��V,0U$�JHnp�3���	Ĕ= i�f[Sk�L���,2�1��3��,�X�+o肣��o����;�Q2|8�[�Lఓ.R��y�����vL�x��J���lPq�&ku�����*.8>�QDhi�!�3� ���@3��^B�l��"�5�f��\?e*��M�'�_J[���L��O*]��e>�ŋ	�J6��b�{@!v���jy��:��!���d/Z9�D�%���]�r�����ft+@K`����G��d=3�d��OG'#��HG=I?E�T�U#�@{�u)..`5�6J�8��zS,ZBmj\����g�\�C�P8 ��!V�{��};��ჩ`D��B�"8�v�Cz%������7
6�PXk~�@l���G���\�Y=�7���7bd����c���2����
��cb-��V$��d����#�^�V�<*ء�W�;�:�H��Y��N�~�
aF��/�i�ĂL�v�0À�k��-d Ml�xڒ���}(�ńm'���R:�"?L�=����M�u�+�
�E4����@
���b+�R
T�lu@���E=ڷ�B
n��zTu�-'�`��ѻ|/��$S�?>ƺ��8�'�)�&��(D����/��SS�o�(Ԓ%� ���
�8�D��J��m����%��,0R3Li
~]�&*-��b��p�a��l���T�e�� /�B4*:l`�=,���Lz}����bd���ÐU�_���A�����1ж�`;��HF��(��S�j5u�R��c��ͦ��"�_P�l����3�{�k����@V�B�����W4_��4r7�L�̙,��
P�,����B���5{�d�C)�HP���&2X�е1�UP�pl*���-�Lp9�_{,�q�d�=��=C
W/2ϭd���2VFgU١l�}{z��Z�p4g{F5oA��0o�f"�_�ex����Ɖ�໕���m��q?�S�a_X�k���W�,˳�� �&�~�+Dǯ�@6T�b 	���J��F}�E�E�j%���=$Y�e��
Ƃ���i
��<�)��5_��D�_���K��	�$"!7H�������,��U�6+1'4�,��s4y����=�8�V?>�Xsٚ��\�����0��K�l�TNbb�h��A���9Q��;O���[�����`��d�#���$:�8�����!O6J�x�U��"��6�&p"�xh��ޘ	���$��%s̃�i6�	1��b٩T���0��_��ZW�L���z+��w\D|o�5*�u^ K�L�FS�gXDʦQ���1��%ְ\�i y�$��!�7����xR�Ӑz>�Am��-�`ۄ�d���*�����~��T��` ��azu��E�HC-a��)`��S�*X`yl_��=��{Yk��|��獳e%��6{fu��"�i��n�9>�����Vh0`�l��{�i8�)��<�m��F����u�=��H�.+�D��@�OoD�U��g�8��\4�.6J�a�X+��0f=��Fq�O���'+�p�
�ȹ�?��u�PX�F�H�i��{8;�'��T�tK�����-)��Ĵ4���3ק��bP����}`�B��rp����%�G&��U�C�a���S�*Z ,#fݹ���Ӽ�"�2Q�+Ê�ӧZ(�I�rZH��g8bӍ�>�����Y=��G�z#U�\�W^S5�a�pԌ"K�a�H$�R31i%�Ṍ��G�F��B͘��{�xj[�*cG�p�5�3a�:�jp����/K�.f���Q�Ux�c��𤓞`�6�2a.�q��fg���57}=����X�0��PyR�3�'����[�=�G1�օ؇�N%T$�V˖���}Z�Jl����T�0���Oe��ðh����{RrV�
�=M�:��YX�/��ʯ\?�b�:=�GU��>��Sb�-Ch�	��o>����H]�t��-G̨a��^��H4� �P�ƔRo����:2��d�� �0��
�rU/��=��;�:��{�b��#�wl٤$�,��୸F�s��l/ORf�HB$"ڇ&Rj���X�DY�M���&���FY�8#��G���bC,��c�=)���Ts����D�J<��l� �ǖ��TL��1"Ś���@��{I���Y�-�m6���񘀺���<���B���×�dҀ�IQ���dA���1?=Ț
�DH8n��~4^#����8�3�Fc�z��5��O�Vx�"p�~�9���
Ӹ�?ßڴ���!�"X.S�[mެ���h�d�N1eA��a(9����jC\.���2�{-��?�b�~)�zG�$(�����
�����2��S���|*t+r&�Kl��Z�lϩ����2q��%A#�aN~�����KT�W�w
�tY@��#������5�#�i�0�&r���{5(�Q0n��;���0�hX1�k|��o����sig�/���L&}��<�a5��e�A.3���5��(�T����~�����Ƴ�K��0Ř�r�2�`�$%�ab�.Z��7�k�	��:�Z]t��y'+��q�#1�$�(���V(`��M���~�MK.�Z��U�Ӱl
�6��I��RP&��*�\�����я���Ā_@e�G�M-|�3:
�ʣl���ѶjfU����)�̂�U$�SNru�"9B+B��� �c� u��7��@��V��9���d������Vк5^rc�Y�:	�#�Ah��@T�uL���0�2�T\E���YYvg�E|L��U~/u%�v~��6�4�[�'�{7��t��M�"]5q�{"�T��_n+K�{���^H�Pr(��[W�����<��2l >�F��B��8�)g��0P}������Hy�1���pbYt (�J�}SM�7p�>:�t���a�~a$`��(.I%LC�gF���1Q �;̑d�x�t]ɟ"	�G�P�HJ?8�N#m����K�L��l)���s��檋M��c�XUz‚
T\�����XP��
�js[�6��O�3�m�0Br^�,7�=}�q��|L�U�t6x;1�oܙ"EE���kY�bJ�vE
����]Iv�
+幊R�yaz.���d��+B��n}F����/��n9��h�:6g^8��B����6��Mh�.�ƃ<���5��v�%I#����5���g�YؠÎ��2I��#�c�!��N��AE����Z8��[�c0�;���6��<X<s��V-k`�и��\�$p֡���Eg��ݙQE�*6/H�I$қA�x~���aCݰ�"D ��������CyoՃ|Z�/�sD��Ibv��_�I�
Ya�r�MPYF1!�:S0>gc�dE�Yv���066N���9$��Xt��0X��Qǣ���U�\0%¹��D��h@'SPOUۆ�״
G�(bf9M�0���zqs��v��G\�C=�����7�^�o�9!<�˚$�+�AK#�m
�������`p��8
.�?N9O3d�0�R)Ĉ��sHK�_���)�Y����eA��ȁ�+�l �h��^��&e�,l�G�U�����w�8|��@'��( �Bs���qkݐ7C�Ea���^#����b4N�ohpY�b��t�)ع��~P0)��
����4{������y�aw�T*
�d��� �7?
�E\|�%��jP9b1�[��V�3��_ߴ CRM�;Б}.�#��n���i �EX8m!��J흡�h�����I�;�8�؀�dϐE�!�r?S2�x~BT|�#��+|.�j��N�q衴�Q�5v	�i02'�:��@�C�3#z���B��j�ANb����� ��A�9l��IX�	񙉣���P�}[ 8��#�MO�z
�L�f���ۛX�*�_�3�bʣ[ˊQk��s+�
�ʵ��0��$�pF!5�&�T.�}�����FX%]9�{fl$PY�6���z�X�TN�+�sb�P��kaކҐ���>�LS�/�T�����'
�3w|Bz��J�eN��9:s��T\����fs��u�5�*�
�e��[��p��E9�O��Hp[�����R%���!z �=�h�9�E(�V�9H��30�r@�[���0c��:�Je������C�,)!�s����y�!�Y'0�hƸ4���N��E�<����}كt��P���J�E�bo�l�\�(o��L�迤m�n,V,)h��b1�K�G��
k͊e��\��mN����	���;����a��+~��!Ę�
�P�=�Iv�ئ��'�K�(ѿN	2����C�PG�M�'�-�EI��s	���gKt��Z��f�;3�H�~�]��6~'*��U�
g��v@3����k��ճ���/>HC��bO���!��ܤ�c?эe��,G߃�/�ksZ$�����L����0�G��J.@Z4���O/��C�$&�ht���7	'C.ɨ���b�R�(<��O���/R0�P����pHU���пn�� �C��<���$�/�/�4|LH�.!ڜ��F�{�ޞ%�+��/!i�����d�6���IQ&Fș��=]��B��6Cf����V��w�� �� 2�6IN�t��N�$Po����%�������@���\���)9
��S&t���i��p襬��
ćЂc� 4�C�5��/|�w|9-�&�
Y(
H��q��?a�N�u`��!�l/$c�]��k|R@0D��J] ;���A�hF�G�O6W�����U�F0!�l����m�ak܅ra�jeRg37dž�Ox�Sȵذ��;q�x�E��S��RT�L�tnY���� LL�d��G�q�z+��5��&	�a��.ׁ�`2J�6W#Ј;l`�/��GlZW�Y�|,p�;x���G��_9R��� /P�R��ٖ��
���H`SK�c���(^�8~�����"�yĆ:��K�S���'��2C n1E6�Ɍ�0�@o��%\�9W���*�@Â짡���/���L�Geć8�f^%)�_N��^�j��wK�2�	�a���YT��3�z?a�-�'cV��\�~�t�-��v@��Y��"��z��}4������N����E�j7��-,	���QDn�=��OHG�'>�d��) LBB�%�������5�/��4$���L*3Cݼ�d�����e^@�Pv�A�Q|e����b��=�񆈱��zC̔�x`q>�(|��,1��٥F��{8P��~��B@�6��?#=�T6��"b�`r��g�- L	6�+�/�$���A�M9��b�1��ܫ�(zJ	�,��,vw��MK	��T����
	���}2R[�
��
T�b�0�?Ve�φ�͌iE��:��\Xj�^{*(�ׂM�a�˓�O��ŌZhO��Z����>�Ƃᯗ��0�P̂?q��9<D�f�0─)���v�Ma~�	�k�2󊇿��s
��{�
��S!��+`���t`�ۧ$��G7:��&�H�33�N�J�>C���?@G
�6��BZȴU��I���! �|}�y�x�N���I��C
U�TYۚ�U
A���H�͇E��fJO[��`����<;2y8��QY[���9m2����Ź���%���Q��a��ep�sc�V̆�� �B�6�e���N&$��5��t,�,�e��m�JeF����Ժ���(������5%�#Δ�y������X�MV_|�n�O��~T7N�;���Q44H��飱�c��dK�B<�!�����4ݶ��@��`/Y-b�4,�8Y��V��W]VYT�V�%d�v���3\Pk�Gf�7y���I��p��[9�O��ط'���tPؿ�;���y��: 1tUX��Y�IW�r�^�2ʑ(�'p��)Cx4�M��o�G�u�^1� 49�l�Fy��&vWz������.���¥f��$�Å�c�z�U7��P���Iɐ��s��Z�3ljv#u�N]����#ß^� Y��MO�'+�{ۇ7�����2l�H�M�#G�V�(A���U*�Ȟ}?��T�(j��[�:lv�^ؓn�LJ�Xe�oW�d�1*�Z?��9�~D7z��$�pOR�sbg�S#2sdc}��{$�q�jW�

m0���8�c�f��-9j�xC������D�6���:��g S��94O�qd�0W�r4��?��뷛,�(���H���B6�M�l�	�)���Tu"`)$k��z���'I�A��jU"�Ue8d�$u�������`6#��\W}�
�{	��.�ȩ���&V�X�� �m��Bp�E1lvX�����T��}���1<�HLJ�T�6[���PA3PY��>4F%�)�
�(9�"��eD7��Fp$�% �	A�W�bo���($^=���\"T��R�y�&s
ӥnؼ�����lt�:��$;6(��	F�0��^����*�����v.���P���p�q�x"�mo��0��r�<V�@� ����lDW�ު�p��pE��̚�DŽ��gs�j,� &��-Ht:��
�����Z���bo�aʨA��%�4�4�#�~Pv[�2��4h�#��O�d\M��R�m�D[����1�u��(N��D Ani'�IҌ�Y��X�tzП�_ϊ���|	11�p��tX�*�!*	Ŧ���5�u�/���ĘC�ڀ�Ѭ*F�sPI.���j#6O��F�T@^��M8.tNw�H�GYDeEC<\�<�r�-:��ZNExUi� ��N,o��<��š+�8:8�N[�Of��K_���b\!
h$�d'(m�\��[9�n�`�Y"��T�S��#F�"��`{���a%)Pfe����{	.���'�+l�@�ShD1�\�tuAf�Hen�57TѭCEᢂ�,�5.|����ƕ[!6b���c�Q�j�bG�5z(f��
¼�9�,/^*��9f��u[k�G�'�B��0���ֿ���+�.�˸z=-�Il�	��^$X�3���2�R��a'�.]��TX�eQ���l�H�8�X��LO3��fM��Pȷ\��8���u+����.��5)��vh蕜]�|���UV�������v|
%H	;*���d"�`�����y�w�e-�>�\Ǫ�G�H�tm��.�C	oRh���W,�s�O%��5Ō\��k�U�˖�����!��ށ*�t���3Hb�/4�XxԶ�K��4D~��Ќ�L�74�G�S)�H��n�ߦ%�?ޒ(d���Q��hΣ
�lB��I�l-
Z���d����>�H�3�NI5X)��C��0z�\�
�3���FXF(!�k��(:�%I������$2|# P��|�p�8�
����a��F�^`-	A�QY�wf��
 �֣��r@\�!{
�(@C��\�}3`��]:�d!:3R
rrd�c�%whd)Q��}��i�JB�QU��{6d
xOlȡ�î<1���B���	H�!e�N�B>Y��A/B�3�?�ֽ#�j��L���)���L
�(Zc`袔���B���yn@�n?_Up�6O"ZU;3w��ԮO��Q�=�D-;09�%���c�p����0��x� P���Y�Q1�E�>oVv���3�EU� t�		�9aF�`�p�3��S\��k�=_�l),��B8!<��{A	�B��.��s*-�(l�
��
��O�dP��^�	��F�5i���(����u���<L�):���k��H��c1���cgGyC{<��a����6�a����I��fB��d�c�U�v�"b�(Wv
6���ik=;U�/6c�d�X;�r_��C}xT�����nE�XIs
�4�G���4���q�`�U/�6�P�g��D9�^�Q�����|HXD�?�Tו>�&���@�_�ť��2�+�MÑ���KF1'�G�CR������I�:����Y�uf�ѣ��g4��I����jO��"�6h���e$��NK�kfi�D���]L|��4P��������Nqm��W����ߙ��$<�[f��.�KTF��C,=�=?s��|oO6�;/N�S*�'�i�:�����0��h���-2
b�E�l�4q�8��l��U�#M����]��C�f�T	OS�� {�k	�)�0��D��da�c�#0:7J���mi�[�sÃ����r��;Bu�Pf�|��t��3Ƽ��MrMq�h	���9
�]b8N�U�Y��"c��� �!.�ފ�ʹ����E��J�8+D�'�Sg!�ۏ@a�Ύ��;q��`K����hE�D��V;@f�`��^�� 3F�"���jb�1��-4K���2�8m�ːvP�C�D9�P�J,����^&"f��$$Ӵ��"Ku�6�m��g����ϩ�FK�g��j��#��^��,�ZX��.
}�L�NO�\::�G7AR�ʒZğ���y�w���%��奍��.�,t�E�nX����|�K-��%ɲ�M�9�iԋd)[b�>��r��7 <e_i��_l�txs�mF%�|�xȚ�fZ��e��{�����U��L����\�����u��ѭ#�ݡ~���&��~iˤ��.I�kb\+D�н��+���x���g�.A[���z��Z%O��W8 3
eW7v����G@����ڮ�'��
]
#�TY0�X�1��D��~�!VD��b���`F��%��ΙE��Fs�}��U��a�$�zs��U8��+�R`* ���y��;�27�i>WbGFп����3�L��?#����2��4h��
SW`ȼ��f4P�ν�p���cx�9��2H6���v����4��
�I��GEp�J��2\Ό&NT��$؁#�G�j�s:%�%"�Se%�d±�nC`m4�Ȓ�z>;]9D�����N��a��3 ���	dS����|c�J��>�i����igX�sq��#SV2xD�30�5��k� \�e��:��hH�z`�\�7]C���*J ���4aУ�<k�)�(E�y��ć�u��~u�rTk�w�S�NJ��@
&@�ʐoԶA�0&�R��ЯC)��!�1�(Za`CO�U������X��ӡ���Y�eY֐ŕ��r�C�h��Gօ���� }o+,��(q��p��C��K·�d1Fp�'���J�I��B���s��3�i��Q���K)��@�PgS��8@ͱN<���:wW#��F�8+��H(ˆ#�!��d�2���e'��!�h��+uK�Tb�3D2�X3&���J����������Ur�p�ӯ�꥓]��(��a�ûf��H?�Mɵ+�v�q�.%���`��M'�Ce�z��(ZW�l�ϣ�K^^��0�nߓH�&E�}����F�rKLxt��IM@��CRQ��d�Joh���NM
C=|�P)E��+q�}�A��9ӌ���Ø�?���Q�<d'�1\�laN]�'�C^S]l����HX'IY2��/�@jP��Xu*wj��i9��Sa��3e�l;��(@n�)�׃�6hB��\%GC�P �V��`�s��Ca݆4�z�(��F!O4?��	Ot��>����G��X�+<��KK�A� 
	.��1n�=��!�r�x���6�EH�-s�J����5%aMr��,|���q����	\`B�fT�D̍��L��(l%��	�J�w)C�-R|FW�v��vێ�`�rD_��s���BM\e���E�(��|��썠��Ȓ}Hӈѿn�w�l[�0�2���+p	�c��Y=��I��bt_:qv� k��5%�E��8u���f�tԇ���aM�)�B���P�h�X.ME(˦����nL"媷(Z��d���Pꔐ5��a�u���g�z��U��E#��Sc��_���%d`u�F	A�
�7s"K�>lĿPk���!�:j��g��p�=(��ѱ$�A$��ǭ���FlLVN~�*�%�W���%(�a���ޝ�^DM�,��U����"m�I��#&
;�b��Z��l�lhj��i�[�"!�.&0L�ɚ.6@����@r�6����0^��?�mց|��s���X{Y��U
_��?2�8zD)g��4���XIg00��ǻQ�A�x�����B��i0�d2�@c�I��n��ge�x���5G���F|�L�jſxmE�"	a0�J[_"�@�p��mD����3[�T�?\�ϟ�4�ȅ������e�o�Z�e<	��2D+@����8
�ܘ ��	�DS�#]��K2j�Ɣ��a�$pyI�ye��HA�Y��t$`���P�Q�ʅW�t���!���c��?qJ� ��r"����H�
,�<f,a#�����g���&[C�� Z>)���Ɲ@1�ђ"@,��6�L(Z����k�4ĸS^��4�z��dW?F�I�ɶ�;s*�̞ç�sn���B_iYPʏ����i7��M��K� !h�)��A�G(n�К �HO	�n"�B��j��Ҕ=dx�1����L�|�FVS��m�L*[��I�t�,�H��M����W[YڅӨ4�ԙ%^m�qf��͔��dm^����d����mX�ϐ�j�H�YXb%ur���"z�Q{ai}g���8q3Q��@ߔwJx,\�W�G
-fO$�\+V�L�ӕ�ّ�J�`�th��2jl�E�� ;��R� 芵���H�2���O_t�)5g����K��5a���܂n�C�㒅3t�zDʎ
!���ǭ�����0VW��U3�Joi���>zЎ��aJ*����A9&$f�<$�|һ�y��4�c1}���&S����?�A6�v�#�ni�s��<�[L����!��fމ}�����W �2��I^�{հb&�?�솅�R=9�T��E
ٯ��e2u�i~�)K�jJL�v�B]lٜх?�.�ƒy��Q`��$@�q�*S���c[U���m�hN6�ef��fK����;��鵚%�E�RQø-���0@�	i�Ò��"�[�ӂZm�п�B~����Z:j[��-;�8��g()K`u�g$�����2�L�`��du�Bf�Y,*���C���֩�� ܨ[Q؊���x)iA@�e2�	�d,�b*vK����OB����M��7C�H@�S�c�^����!O����c�Og�����䤍O~���@�P��_,|�<����&gs
E�o�G����Tq�]��YMa�@�x���$��ꚨw>�4j�����[Iz{a�!��f�����Q��F��XML\�����d�K�������k�B
Q��
��}�N"C@d�-j�w���BjxM� 7?��2g����OF���!Y2��bF�`S������g���r��ˇ�B�x��J�)wk-GyKl"�	�P�po>HpX2׺[c�
pSO1��\��)E���_�@v/<�t�_�4�N��-#~����娣�cӆ�U��c���g��Y^	V-�eh�l�p��]ĩBCeq�l�Oc�B3d��M(�!��Yp�3d�iSЖ2S�Z+��dU�芔��T�!���l�jB��
(�;p��6��tX��B�`ńL�\~j�=���KHBx����&���2�Du,�z��mv��T����8
BD��f\5v-,�2�(0
��E�,�zc�7�"��@h�<Ep�L����n��۷�b�4]]7��Z�s`��A�Q��uR�N���`�P�餽>7"��sl�Ǫ�9@@����)&&���4�1P�8t ]��_f��.h:�	�D�4��e(�"�O��@ئSl����,^��--���Fn_J�$"���)"�-��O/V��m�W�>$F6GL�MM�Y���O"K�^�qxNR��&ҕ2�.���8H�
P8h0�!`��	o
�fV7+iB]ط��]0�#������
��A3$�ZAW�]:�K1�#4���4,ca��@7���o�Y�k{�Q�f�S��o�loYn����А��	XpdO��.���8�寱��a��e�5P�U�k�H�0���M��n�FH��ч@�% ���Y�zޚ�9n:��#��V������V@&/�Ea��ĝ�6��-7��s9;Z��-IӀ`��R�/�뫢
�C��a(h5��}K@�7�ӊ�e�g�pKR�rY�)]��q�<�'�"��_�~CN���Wuz�B��\�ߋ'��d)) 	�ױ�"��IaU�(`�xI5�Fq� ���SB5"��&R���3�,$�bTO��*f�<o-���[�����l� Jf	�21,({!���{9�e�5<Ff���&gN�
��i*%Xద�I���m�7��>"[�8���7�btL��]z4M'�<vLJ�����ЙOА	rR�R
:�&I=D�P5�	p�uW�F
c'�Jh͕��+�n�?s!�NS����t5�ת�<�)^C\m7LAg<A̍��4#B�p������@vRy�ы23�T�Ǒ�º`�%��$�	�Z�����K�K��$��Z!]�%�^�����������Dt
A��܉�!��R�
�4A>�Q�7�A~Z����2�iӪ ��:�l��b`�O��M&f<
�-!�!�5Q�6S>�終!0/W�2ƍL߰�����:淏'V���֘f�#�}��,$e���M�pb�$�(�W�a�s;��3A���W��Q=
Ć����A���P��/D���C��sJ2&���[!R���(��h*J�,�h��Tb7��XH�ȥ@�TB�؟�``u6Xk�Cx
#m�@�Ҽk~����8�F7R���k�XKN��LE������0(� ���ݔ?�wR��*��Pl��\�R��M2�~+I��K���HO�H%ج��O��	)�w��Αz��"�����bZr`��}9����Q)��w;�:ԧ8�i��j�NIk�v��#�S���C��ץS��Ip{ݙ��ZxQ���N6��">1ũ��w9�ls���Ca$�V!Q,���#����
c&�%�sX�p���*21�-[r�꾿͞��ٗKQ
�љ3�J�S�ko��e_8���'�J�3}������7nvˆ�Y�+�8r�5��*Z.��4]D$7��~�0�)
<�`�ʠ0�0jL��^]�\r;m��$�I]ƓZ�u�o�<(o��&�@"F�jXZO�O�x��7��#<8�G��x��Ke�R�[_�x
c�6�wz����Jv�U�OR��1$a�"�Lgn�[.��QטN���.��ؠD�t�&��@d����z����
�X*���*d�ܦ��;�
���ػ����w�#�t=�
y��\��|;�\^P��Uͯ'���hb8����t�x�M�@C��I
ެ�����gG�t-�cզ�Dq_~@b���ئ�<��ˤP�8fViQ�a��I�'k��d�� �T�h�9L+@����C�W��V�!�?Ş�#��Y|$�4a�	��RY!�'ԉ���h�>�MϹ�B�b��W��ߘ0�L^J��,�P�b�*Bh�6�=��5�|�{_�R����]����@E�VDDa�X1�ٻ8f��H<�}{���D����^�N�1ܹ~ih�#�0?������aJv�^L�;*CP�F�Ҹиp2�l,���)�L�
JZ�b��݅��eux6�)�	"��@�Ԅ����ȼ�_�ق5͒蘦�k,���=��*Ό�,�i3�*X�ȁ7c]���gL�|Vq��<`�~���l�>"��͊�ǐ
���R���P<�d�t��9�8�7U0�}�fq*�X�N��/��B�Xk8��#kn�Q	����	��e��魤��A��ʨ�@C/�y����d
�B�w�~��F.\5�W��
�Y
A��:�&�յq��ÙZ2�Å?S�(�����3��kd(����K�)W��J�a���J�/�P�"<N��:w�>��Q�^�ư�uy�E�gl��%�6=U�*��Z�%���l�`�������J���E�?߿�	�Bi��/H�ŧfJ3k �OKq�"B�h)?
�
��4MI/�"�(��gz�N�F}Y��9^�4�ܱV�MI�_C��5+��$#zs �37�����X�.�uI�V.��/=�Ru�>��桟]%�$�搟�t��+�꛷��b�[gқ�ǎt�"d��+�~_�3�'�lRM27��f�
H��8�F���67����п�{���+$�c���w12��+q�G-���j"�0#+8�f}���I��%�����z�ۤ
O��7�%�Mc��0ᰱvq�
*	��8���i4��d���Z�ͩ#��⼥����?�"=j~U�J�
2�B��v�:�.���+�wd���V���G�3Jj��o \ Z�̡�*�v;���ӕ�b/��m>`��Ѭf�AiQ{/#?D����4x��N׳�f�

73?Zk�s7T��Ra�ix�A֫2Ε���T��LP��3&8�0J�(T��d{��u��͛3�0qZ'SXb`��H�A�@ˊ�؛#FpɽwŒ+I��{d��Μ!�6	�<�b���j1j.1e�;#r�Z�u�X+�9g���p�[�Ձ55�yWrɈ�R��K�U�-��ݶ[��غ"��a�Z9���F��{k/$�l�}ӻ�	�
������*�L�/�0�C��f����T�m<	�LZ?���OfB�)4r�e�\?R��pXE^ࢁ&@OR�<�
�"�Z	�j���
ʍ�&������K�5��򴼩�[4�73����	4��]��;�g�΁1��ܚUzvbH�N�z���8o���ʠ�
�
2hC*4xY�!�*���ur=��� }h�(LPC���j���~jhCrnS��Ԏ���[Q/J�M#@W��$�@�A��D#����v�<���Iq~Yo��t�D�ld	�S�D�E��Z�6����/L(:��_��n�x��p
����ԭ��=��,�8���VS���%<�m�u	���{�VW
z��=���j�bm�|�?v���r��I��:�JIH&�����X���a��X���ԃ�D��K��Sbsw���S�ӕB��O(�A�G#Zbx$Q��4����P�
�a����~���n��M����m!֠�)�@EJ7h��G�-�A�
XUm����"Y5�#l��o��2�G9��\6�}
h��4b��TK�}�X�Db�h��2��X�^5��H�\F� LLgoj����
	��̺�8ݮ٨g������gF+���D���X�3��W�d�	�0��Fkl{H��MX"sY���8�RO�o�)���^XA$����S l�_8b֏BJP�mP0��U�� ���X��{`�4!�6b�D�!�tTm�$]�R�tA�A&{��,�X��3T��L5 ڡ���
;��!��������L����1��s;>[�;h&���-�F
��Vp��Fa�YM�m<z�9.�[G`Wƫ�/5�1�0��FCÈ]�CJ���hOwŧ��A}�B�#-��!㔼^I�f�F�)�6FT��+!a�����W����؂Kê���V��2l|��R���4
rU�!J��:�f4X}�x��A��� ?q8Qa*6E�5��zY>Cg��dG�'�EԄx� )y�!g�q�ef��رp.�����
CEf�&���	G`��tb�^R�=�_��Bm��@<�<�"z
�4r۲��(��[&��A�1:������)]��:CeЫ��շlS�Y(���k9��r�"�"tp��B��	Nz��dq�W�B���&��n$b����#� �단�� �� ���������
��;�H�d�
b�D��]e��h�luߓ�Bۣ���F[[�<xi�Q�'AJ�i���P+<�������!L?�mH�bڸ�n3� 0��yʓ"=�1�u<ji��%�0���j�bNT��W)�O�rΖ6@�bv�
+2�M�I�����}:IVZWM����*��,�٭��m��P��3j8J�R��J&�Y������X|U�-ϫӒ������b�t9�e1ىD�%3���V���-��Ý�Bp5�Qf���%8���=7R��$�l�l6�M�R鐰�@�Hnv����������
f?�q��vqZ��ۃ��	�Y!{d�$�Z
)�f�#�<�=DzT,
�
��j���;�uO_i�{�9ADiV_���-+D
�n�H`BJgFZ:P�.�\��(�D*�����Fo��M�^0_J~YR!p�A��JPQ����ee�r�]H'NA�/
��4��8}`y�J�.���g��"
��b�S#V�Y���9r���:�	B:ґ��?�O�g2��I����Uw1�|�k��V�x��]��yĭD���
-�W�9�t�Zw^&7�^�[ݺ�%�q�X�eh�@�x��E^���C�`�;2P19��5���1��҅Ix';t��f��A���iY0N�$�>��t�o4L;țZ�~�['�!�`Dݑ7-��E�DO�R���(����AĪ7�N<���A��$��x�bBÅf�xy�h�a��U?<��eg:�p@� ��h)�y/��=5K#�o��Y�42��"��aܚ�;
س�l��m8�e��ݍrY�sZFs�ڗ<6D\I.v��5d-L h�$J�\a�����B�P��|
e�������A�BO)xy�y���EH����� �9�ط�*C1��Ry%:�3��AeD�3�C�N���A3� ��Jj�;C��= ��GIL�XcywN��>lJ�,3Ŭ7;�~�+���+m�;��@hs���l�0Y�o$������%���g�XQo�v�� J�Z&B�~��$�(��{�Ҭ���/],��j�|Z)��ؽ��HB����гj���S��wk*�Ó\:s��
��	֛Y^�;��@�9F�B�[��;�I|�'�U�*`k�GDŽ�6,�n��%/�����A�T��v���2k���[��Mw~�RL�T�R�>k�Rp������x�(�P̛���vaxQY��Ɉ
"��9��n-Qzp��gf��e[<�2ܨC
EL��'�����������i^�d��N���~�z-|������P	�%���NO�X��܍�)!��0���"pL0�m���3��_P7�A �9�X�q�R$��F/�L���]����nυ�>���I:X�W���
�rF��[���}����DLȢ싂�m:|w[�݁�m��������A�Y�n�(�i�9�3�r4d/��c�Da=hŲ�	4��:r84���ְTyr���$��T���GƮ��l�H��]�;1������]
�3�<�&�=�Y]ČK��C#�o�
}*o�\C��vWp���0���Y�߿��C��i�e%o�A��]��
1����2�!�-Tf�$kE�Vb�˻���R��!�%�k�7�r:B%�~
@��<����s|0j�[�;��k'd��hx���
�GƵ��Bz����H%_[��?`2Pl�{?�C:6i�"�J$�y�M� ~#g�� -����e��D�����FK�,Q��x��y��s���� z���c���u� ͹7�e��>��V8H�O!�F�mw�x��Y���(C��h��#��%DLx2����
5��$���'�jY�fа��^y\���{�	��~,����Ħ����N��*^�OIe5��|M4��}"��2���4�H�2v�+$Y3$GQ~nf�Z!P���[��K�t3�α����<����S͗�m:l���10[
�Ή;�^�O����|�'��8k�,����W�j��BK���a(��d���-���@ �nw02�Sk`��o�B�����qdl��5oY�1V&��A3�<��;�q�#-z�R߃��]��br2��5�զ�P 0�)�6�0T>e:c�t�w�B��>NM�O����� ��-
EpБp ��2��O���#�똳�N�|�7r
/Ž���W�B5x��0$��b��x�U[�5��U-�K`�Ђc�Ft?:���i�t�����SNU/I����b�*dr*r1�#vڮA7o�kӞ�t�hwnR,f���_�V(`T����K�*|�`+:F�f�O&�V��t�
k�����%�l�e`�1�?(uw5
���Y@�����y&��S���YW(o��8����Fk�4��FU�8{^b�\,P�K���k���f�{L�b�~%�
����Q��"㍣~C�궯��}q�*�vPNGWh�5x��Ŵ��s`#=���t,��M�b�9��R'�c�ZTp�)�W�l�F�T,�P(�0HwC��\�^j�~����3�PR�e�f�$n�Q����Ɔ���(��G�A(����xLQ8��7���5E|�<l�4ئ/�!��I!�����~�v��y�fCǴد+B��&�C�8��_�V���"Z�Ufɛ����J�\�	$m�	=���rt���l(�jh����E��w��ޒѫ�v�tq uZ��-� k��t�%_y�ڏrX��W>>>�+�@���#C.��Ar;�݊U���@�\��{w_�����]�f%�Ey�)1E�-p�$6�Z�%�R,��6!=*U_^��E�Z�!@�Z���x���	����Js�OK�7Զ�Y���r�p�8�Z�D����p1B������HR�*���Ng/��v2��yL0�B�y��l�(9n �e6�)� :5z�vH�pc!�(�7�áƹY�ݷ�saHY����F	�C�"e��a�n�|�#:����W� ���M�B����{�?c�7��OO�;��>;����!!�4�87G�:�E6������vhV�,�Nܹ���SA@�Y�G-iC�I�0�|wv��P�
�#�\C�d��HX]���F�K�D1���R��W4K�f�����a�ԣ�+�Dt9�ՠr��GiU��9�����̙ee�4���ړ/�qs���e��1J���Vb��j]�qH����?<	( ���GjI����Mh�m݄i�J����	��9ȅu/���l�@�����R��aa���P����u��T䯳س,��`�]�Cpt�g���])o��n)Z�=�Ou]��z��^L0�a%���9D���Zk�D�k���'m���#T%>@��s�2��#��K�)��\F�O������c��2ct�+sg��U�h�X�/#�~7
$�vaq�\y��Q)3�\\U{���d��`��`�^Cs�r�J��4�c:}S��灄���%�j�M����m*�8?e�e���A�u�6��6�.;jI#����P�f<)1��TH��&��cD-Y����qzZ5���)R/}�}(V�F�;J��	H����@�KUs�d�S�	4�s���@�d!�)�͊�n��PP��ayv/"Fp��y���8E�4��JP�d�iR��r�Q��"]�.R���3�/�^
V6��Y��p�d05�_CՅP�U\�*q��; �΢h�	jOس�.��`�,��p t�Ԓ@~���hhe�"���梫�ue�t<�&A�G9��X�j@9L��!�d��N�
s����f����,�dax#=�p-�Nu��M^6��D^6 a1K�nm�.�,��v2�xZ�)��0�D9/f�%�K޶�}&ꐣ%=�5�ޱ�\��G��ݚ8SK3u)��0���
s�p�{�P�o�p�	��:��&/Z)������� A�¼�>��Zc�^�V^5]]<HM;v$	��7��2��K��k�XI�o��+�#[�hX�\�e�A��.9T&�p�~?�R
��J퍣�?)H�&��g�eTj�H��\���`��v2�]v?�Zؓ2W�$�$�f�R3��j��Px�@���"���R5�<��᮹3�</K��G�3��Xr`�C��=���n�����kZ�k����Q�1w|Ћ�RkSf
xm�����R]UxVp7k��z+�:$�ytT�V� �T�[vA�`
�;[88�Yu&&�B(��fU^ƥ�8��+����o�kBA�.O�����ij�$��·mD�
��a��y㠹�U{
LƵq�LYx `dv���XY_���'�S�x�W@�Qx��@��Q
�'#���Ks����*��j�a�2R�Q#�&� �X�?��nQ��'L��/rI���f
�@C�uܗ�K��/qV_.1��y�
�
�a�}�+�������D�
�i�C���^���)��
Qe�����B���P:��Qc%#��,z��B�im�"�������EM��P�9�m&�g�6I���	0�(�f�r�Q�	���T��p��^c�v��24��d`ߙ(�]�[�!#�+�p#X��t[$��Q�~U`MH;
�0�t�M
�'4]�BۉS�+UNJ��GF���x6
��9�|?]�W4�?��	��:�羥iJ��9h�01�vaq�7��;&r4+��jP��C�h�t��H�y�M����K��D�
��$A��j^�#Q�0�ܟ�u$�ê?��.�l�#2��@��ճ�.�>��>~}X��|���?(��;�`R�:(���le5:��8ڦ%x(�(*Cپ1i/d��
Ĺ�E��`�5">�t!x;�Q��lH�|�e��LN�K�/�*���Q�8�<��S�L��}���o}���ݞ
J�r��mO5���^W�c����
�Su�`���p8)b�df��7d�R���VE��$�Di��5�
��4!v��;�৯��v):�ײ�51C��"�eP\F3�Q��L<?]'s��<�w�C���1ޤ�
(��,���(W�P����!�2�����$�Te�yә$9��Լ���m �\h�$Q@b9r. �kOS�X�>��W�[	�~�� �ce�@����Ȣ	X���Xڸ6#4���Aۿe(����'0�W����@DH�`%�u�����L�$��,NW
��O�d��C�o�@�^��!Frǃ���F �~��$�e��<���]bA�j:�d�=�k��@�D9�o�k
z���� T�F�	b�-a��Kng4�eDS�DR��,I�lf�a����|Z�B�@x��ihd]�:&b���SݬTTKJ�
1���H/q�8���(��$4P`u���/�G��#�SX:݇1Y
����eH�{y��!B/"�� 
���~�W?j�tWo�!l��%+/[� W��2{;%bB�I�P��A�R0B�H�t\�5�!nyF1oIB����ζ!7>�4	Ҳ����u4�)�&9OY��=��
q'G%b��24���7��W�UhB���P��Q��`��/�{Fڎ�����f����~�皷��@��,��$
}Y)h���	piZ̰=��wOi�UY~��f���"�O���3<8���j^��6�62�[K|�a`�D+�ʥD(�7��p�Y�(/�)�>P�I<^�9���uw�T%�}%�#�)-����sfK���i�X�T�HW�%�؅�i,�ۼ��t��0����:f�`iU��{p�B�T����A�˔���"ʹ����E����Db���N��PDXF,����gN���1��`c�r�?����)�
�����p426��2�N�
�C�D�|�iQX��o!�՞���B�}���`w�X����J!�PZ�hm+T�αX�j	�F��,'iܡ��Ct-�n���v�m)/fg�\x�-�%k�^G�0[3�/�.:�!��ѫA��3'��a��&���3�>�H'R�d�wWa9����R
^��|4P�N��z�@�ޒ��by��#"�BĄ� l��pS�?�r0���ʪ�x��n���3��.!���HJJ귑�9����+�X�8밋y7ח�T7�ԶS�2�u)M��h:���l�<Ai���H}�&�Z_Z��B�y?1��& �����
4cP����¼]ʩ�5���@B㊯	<x��y�8tósej���>�&������غݔ)t^�18�e~�a���;�.�i+�Ou2J�SK�1�8���8���F���G�G\�0��^Qȕ�-�4"ޒ�ܐ�t�$8�`�\�a�ɡ
����NL��t��3���9��XfHQ�X�t���<��)�1�!f�qMt�ҥ
����2b�ƨ���OS{0q�൏��W�S�MU�
��о�LdIR��D96�����RX��<���n?FES�����V�0��]r7HQ�؀-�A��6`Թ���e�BlLR�_�5A �T�oTt�&��D]��R��#-�lb1�zZ�ɂ���l]�d�4�V$����A��G 	�֕���:уB�����6j_G3f��&�<($j�sD"kt����G�Vݼ,��Z����_�Ȼ�d>�"�4���5������yct� L�L�R�.>L׽����ҪhE�)�JnSh�q�#S���!����@�~�	��LP���MS SongRegular
v1.00MS Song;��v�z���������e����\�%���슌��#�"�w@��U�ࡍ�X��|e��B���PJQ���ΰ�@�|8�=M:���#��k�c^qj940�b��!���tMt�kG���Q��:'�p�u���#��*����4c��u �=x�cK4v�i�$�؞X���]�h� ���%Dx==�~EA��M�~�8e'�/Tޅ�۬�f�བ@lim�׏2 �Z�t�������g�&�j'���1�
?k�漓��"��·�1��NTT�aɢ*�%�y(�e`���}��l���Pѹ����Ma�q�����q�v(0"��gAA1�"	Z����*�����az�{h�1�L��Q?,��Ucb"��Ic�~��L�`2�(�x|�F8��5���Ѳ%�>����OYh@B:��{ԧ��F�
�%;|@��^��e&ɮ9'A�H�r���M2�����X���^�A�����9�Y�`E�B�FD-_�[�\����"�E��r!&zS<�� �'�Iv��X���^��ORGuLՑ�0��~>��af�
��,�Л�;d��h���>�ZsE�SV���k\���$G���I����4�p'Q��K��)�m�}ݱ"�G���0��Ǧ��ya�
~G��`R��.�s�x�J*��\��(;���o��Bd��@��|��"��"�O��n䃬Ʉ-��抂e��\���aB��T.1Ѳ�`��h���Z�
�,���í-@W'��^��T�
:�V5ե����(�'�R�@�E�5�d���4���+^ኄN(R"�[�`L@��7�����&1�@K���i}e��iPɸ�^N�������5�o�6L!a��\QՏ�v�j�}1�sYa����:f?����C�?%��Gt�C�%�?%�7�Չ>F��+j0lt��p�y_�^ϕ������N��95�M�&<��D�gC�K�^�T���p�������*�p8)I!kE �@h��t�Me1�h��u�X���vQ��r�6 �t���?\EL^ů6��0=�K��0��A��4V�pZj�	��0�2 P$<�<���24�_��n��P�Xu��J?��}듫pXMG���)
.�7rZL�Ͷ\��ئͣ�9|�;JX�P���1nւ
#2�;��1N>����}]T�Q8�<Aµ%�
l,Nz�) ��h8��o��V��P4(���
ye�����I����uӭeţ�L���=Y�8��h�J^
�۵�O�_�$�Rg�T�rr�*J�q����\8AN[W�s"��7bi'��w�O�rpixu��!d�7����H�P>Nc
A��YF�/��nM۞f=^��ac
�C�DX����s�,C,��
X���t�W0)N�:Ǎ�[E-�Cﳍ�^]��&z`���&�6Q06��GA�Q��n���>���I�9��h"�W�+�q���(2�N �ޮK���"6~�P��K�`
�)�������X�8@��JH�QK�O��E�|X:��d�+\ؠ=J>lg�,Y%�ZZk$���ږ�pl�� F4�
�>vmN�G�P�)�<���M"�f'V.!E�m�^d�H��~m�R$�ׯ��g��$�Q�>��jE��-�:m���-���O&�CWs�v��JR��Kj�2Ᏼ���MŠ���I�v`l�\@����84B����r��I#�(R�&�1�����
��D`Qj�1�ӆ���e�\�������M�-W�#�#3����v?x@���@�� �S�0�'�M���Z:���X:{Qh�ӧ��a�H�	������ׁ�ݪţ�U_}�K��~�[�64-c~n/9M�8���x�F��#C�[|��N���k.�pм��Dt�dK�E�l���	,Es�44��?l�{sɖ�U��j�}z�V��uf[!@Zu�_g��}� �뒇a2�L��VR�dK������K�R*mv>o�B��["� �9|vo�[O� :{�4�4}b{�	b���ل��t��$���,#��h�q��1I���l<~\1q���n��8(��'F��d=m��k�LJ�+p���D�����%1���)�I���'K3y�*:hE���*L�B�=�1S^6�o�.3B��(.�h�3|�&�vtd��G��2��TQ�������Q�
i���w��$X� ��V3��rh!��k��\H=X.�U'^�I1���8�C���,�Ů��@�@X���h(�祹.��#Κ���|+��H��@���@�g\؉K\`�/��B�� ]g��r�-��
}���>7]�Y �xq�j�Ri`
~m�%��,)�͘9Cu�k���?�KR�7�UdS���A�uY�਄��^u|���zjȽ��SU�����l`�@!^�D�1u1y�!��Ct;T�6�;q�����A
<a�4Y��+�L��ە��L��Q0�Y�.�hH�L��|'fh���O��8����H�B�a3�Ir"�%W9�6vgҖb'�3_=��>o�2s�81�5�u�%�A�i��!K���fV�a��6
�PW�n(IL��z�'`��v�~w
xLt�nד��\ 	Z2α#�oOQV��
��`di_�ϾQ���9!T���@���.��g��c��h��Y`"9�5��\)FjB���`M���	�A��pn�8��K����˜`Ԑ��B�aW��r4hx&���t
0�N�"#���;��H�U��n �4,�z�|�y%i��G5H��b
Vxc;@|�C�M��\���0��/�m6�����
���"R�"�62:�L����j�4�.dq�϶E��`�"���1SV�k��B|c�n?����xRg��"������O��l,V�.��"LY۹j��ٺ�����,��(��#��-�3+N��tX�de��łl��0����ew��Olcl����f��䡺s�ͯ��c�qM�j(��5�B�ȓ �y�zU�*��D��յ���Ɍ�I4�A�*�iX�8�F�ڵh�lU�z�g�Ȁ�팺�]K�R��^�I�4
iwbi�d&C9��=.8#
7#0$����X*XjHk�o�PR4��&���Ou&�!��hE7�
c�R�2U��i#�L5��;i��O4�P�|G�8���\/o�Y|*���&K���O`Q@�t��3U0�ia���k
H���,r��V���<o���J��
�uM=��Eg;>�F���#=[��-H����6���? $]�9[1�%�4Zȍ$$��a���D"O��Bə	���e��3����7��R��$Ϟ{�̿��sQ��`�,�V�C#3Z)ݹh�}/��ǎ	}P� S�nI�|Q��财�Kἄ�H"u�*������DP�ypf�Ԣ�aʮ���ʖq�
8ń�bB����C>56Oٚ�]׼���c�fM�56�;�:0�En]�_K�t�'���j�u��E�PY�y�ko�(B!:���0*d�Ɂ1��s�O��6|F*E��Y��8���i/w��˘�EJ���L�I�g����km�y)�`�<�xP;��ϣ$�[.�����.�_���
�[,�1h8�A�w��N�FAl"�cҙ�.��\'��V�Þ�6�Ve#��ͳ�,�qJNm̉�[P){C!#6\����m;�;��&k
��js(O��@���3�	!)�B����ZtS//+�"a"��q�w ��üQx{�<�����*�Dpu���1����k���|��.�y�@P�f��`g<�|R�2��=��7�(FfS����=�ӅH�E��Pn�� #��LD�kSt��#(d��U���J����1���ŧ*�VI{�m؏����{c�c{����et+,A�|`0�5f�.�c8���e�]"�'���A�#�Ci�͖��Si��
�R;7�z��8&B��UC.�[��f�L��
7��Փ�1�GC3������r"��K� '���t�hSd�L]����c����
3�c���M���4�J8��4�;�Ɓ�V��9Q�E��Sٿj�jt{�<�0�͘tK�S�]@���#�.�i�4Op�/�`��U܍�P�?����P�b�R�6r��
�]�b�p���͉���*ȭz�}V:)��wkc���H.�r]�s�"Օ@�^]aT�Q��Q��(�-�G�J��b9��BP3jr��y�{F��T�U�����|�"�X�ܡk�L2&L"s�	*�@=�e@e���	�/3'�3Ft�]C�D2��lF*�gEO�m�y;du6c���B�ԇX2x��n�,�"��Ö�
���|Q��FU���G�0�ǼǮMb1�ݒ:�������Xͨ�f�[5�xɀ$�^��(�63r,<�38���;����0	_0N[�Sh���1�d�V�-��`]O��i̾��،���Hl�tm�#�����.��K��M� Hd�[E	���ī勫G�l��Rbd�����A�NW�O��q�����ʉ2�8��{�:�]�羰b��0�B�� f��ʚ��CF�'�00��^��$��9�@���7�s��5g6$�ѡH�#�]�jPjE��S#���\Q�0X�^�;D�$f#(� ��^i�����!ʼ�wȾ�!����"+}ⓧ�d����d"Q5�q��bx�
:��=^��'�H�S׼嚵���Wq���`�f�[��u��rl��`��wPx�*N�J��c���Qٍ;�}AC��BY��m��B�sOQx/��h���^q�c�I~ÐA��='�[5#	O�D'�Ĺ��8�lK�`Kk��2ʟ��3@W��J�X�;���~��f
�9t*r��*?�Ȗ��~���6��`���-Xb�䍞R���@��;Vnll�Unh\�Q�(�Q��K*���

vwSוN-π�:RC�羘Pd���d��M=�n�;L�Zvq(T�^W�5F�N!�� sV�����Yc�Su#�{MV����Б��L� �v4�^�e:�K�f&�E�g���B.Z�&���O�G�t&(��D9	%j���l�@<�(���|����Œ9H��)P�h�r�����
�^p�PKr�j�\La��](�����0vB�r�֮+RD'T�l^��2L����j=ߕ�Լ.K�%�t�.����ؠ9恕��P��cUj�-'x�=Ȩ��F�LbW�2��*g�V<�\�T�m�(��'Q�+�K�i�l�P�#��y
�Ĕm�
�lW~�zx��a��,�-�2*6�����%��9�]�V'��Ǝ�P���nu�Ņ�R�~�KP��|��v�Y^l�]`�`���2?�o힗`Q,�;�[��Y�`���@�ӫ�������>�'�M�N��pr�'��7m��q���Jg�R��J ����n��K��nf��ϥڭ� ��ϯ~���<şT�.RҠ�>ϡ�v1g�̕jZZ�0n_)��yݘ���'7|q��㰪k��9u�{Hn�~�=e:�/��w�8�9�^Al�Y���q!�`�"�@'�{�@�P������/,*1��zHi6+���=�`\��L+����D.AG�T rb�u����.��C �Q�TB�U�A����!y1��u:0g�p��R���`�Qn�h7J�@Y����jtJd�R��K!?�.+n�w��(v
WXO��"���}�AC�l6�>ZNQ��PC�!mF��$.Q�`���
.��*�,�6�P��H�@������H(5f��UDx��Wɉ +Y�e�	���v5fT�ǩs_703,�P�_8����k��{��.6X<�ʬ٬�!d�kW�4���3�L���-�N��&"
��[pN�-��v��H[
)2R|��eF��.[�>33aPl�R�dl^[Q������O��4p����䎔�:F8��'ʚ�%<�9�l��m-��%J@1�+*�`�d��%�8c>�$Z&�Ӝ��o��Y֏���8
���M=2(�`K�^����$�a=�T�ciX�c�m���1>��.���c��6��T(zA(�~.tˤw�P�,1O�J�w(1�Y��A�=L��j�|�����Y^rZ���W��S�1
*��J(�&�ni���RT���PF&&�N��b
Yc	�h;i�!�$�A�!����m`�1\6u]��@z�|�C����2i��,_�wBz���$�`���@ff�Ic����SCZcKt�}C�Tȃ��&N(�D��G9Ǜ���p�����So)m���$�V���p�D(���]��NQ\��0��6�(��d�D�(G��=�q�gD�:��+�pdŶ�vmwA2;^�.~@Gx<M�
4�5�e�:��n����b��D�
���A�Әp
�B
�UgJ�.H���\ܩ9r�
F�2-���Z���� T7?�ǜ^�"6z�����K���C��p}�Q�W�AiMR$.�r��jD�&�����8t݉A�9A��o�Rf��VTX�:�o��xW��3��*�4�Ì=TAY|�HR����<~2��%�
v���˂ɂ5��V�˷�9aa�a��E�'�f�P��Í�_w�#v���B�G�d_�-L�@�m{�d��Ǟh���Q#n��>p�sǏ�t�3�ۣد5u\��=�4�{�Ta2��7�p#����@�q2\����	

����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
��Oh��+'��0��������	
0<H
T`hpx�Erik PetersonorikErik PetersonorikNormaltErik Petersono2ikMicrosoft Word 8.0@F�#@r�u&4�@��R�@��R��M��
��՜.��+,��D��՜.��+,��DocumentSummaryInformation8�������������CompObj����jObjectPool��������������R���R�������������Php��������
���Dell Computer Corporationet���_jErik PetersonTitle� 6>
_PID_GUID�AN{F5BB73DC-9FB7-11D2-9169-20A451C10000}��
����	�FMicrosoft Word Document
MSWo	

 !"#$%&'()*+,-./0��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
0�H��84n%�:�t�	IvM�����`�!0�i���d���b�IG4$��
S"��0��|p_��݌1�a�0w�9`�er5�Qv��zk��e�깇Q�VҲW��(UN'!�r"{B�c/���[BL,��4����_�K����SeQܔHT����#���yO�#�c10�[�q��_�@\Kli�^���b�|ƶ�c�a5*�*��e�%$��2��&̎D�#�@�[WO�)�|���Y?)r�40	�Gϡ�h���$fnS[��D���
d�E ��%G1���n��L��ǜ
�*�
�;V�#�<��9��u��s�ǥ�[�h�h��D��m��D�H�s@Nxy\=
	T#��x��8ل
�6+<��6YH�J`�R�FN+�q�2k�T���O�P�|Mը���,�����=���"O�Z�O��[\F�����a��K#gH�!ˣ�$2C���4��#S$2�XǷdN����>c��[��xPDLϥ�]iA�@�à�>0�5�ryC҆���^�SW``��Ƣ�99�\�L~b>DG�kw��oiE�a��$B:��2�K�
_&#yL`,_4p�]�0Foʳ�ݞY�:^�Y]l��
U �5���}�E�	r��1�3"�8`>jA�cv�P��H�5G �:
�T���r�!�@q���A@p�W�J�b���D`��(5�"y�;Ơ)����Ph�d�>��pl��ςB�2���f<��0,�@Y8z������#L��@���n���$f��_�\�4d8��c�d"svcR�ш���̶���A8F�~���̙	�΃��1ml�y�FbL�#���ULp0IW۾]t<(rj��n
%��Y1����(�G����C���v^ld9"c�TT�(�����@H]���!�Ę�q%̲���<�d@H{Շ�Q�U�tA�<(8�@z�6�S�S��8�N����D&��T/B�?�4T|��"Ik�^džM�Q
�7$x��w��kӜQGT�����7&BN�bPLJ�����ʭ�'�k�3���E8�ĭX�S�.0�'}?QO.Š�xhF]�M��.mˇ�3�q2NX`��q-˖^��jه��cȕ"A��"�^�_�e�X�%����b��Դ��$&�%&�L4�����H]��4-X�UE�d$��r�|�h-��̢`���~��jS��N�U��QҚ(��O~9�-oC��Yű��D��O"+x�bӳ��'CB�%~ <(�a�@+Kړ��
A��j�nka�Όwm[=��	&����5��ҰTn�,0k(����&�`\D�S�E�m�hn�*,�����6c%k�E5)g��0|C�w���%�$3�ً�t��!x�k�XDc�!r�
��J��cR}
gx�OB����O!�3�=	�"��Bb{q�6�&�� �4�Do-΄V�mRﶮ�_{�Dݿڎe�
v1G;"�eH�=��|H*i��_��EG�B������ �7�#���"|�BGc�cZ��+$ �<;d{xDTҶ7��ꕝ����Kn�"�c�x5
x�ը��E�2��xj	�ϞWm���x�,�؊T��#"���
&���w�.�Ѿ)���fw+�#� ����&=�)&E4��&Èk���u0H��}�tKhk��1����Fe02�J�=�Ȟ���c�ߚd�2�Ʋ�ԭ=���-4/MOX܎B'P͊��I�y7�D��`8�i@{a~�.�[��§�EZ�� K�U�!꣢����l=#�rZ�Ó�"������⥈�?�-Q�j:tW@�TG"@l�]L�JF���5��|R�U
9謱CH�b
�@�a�ZT��X~"y
���J�A?�� V��D�Wsz�OҊF�R��Fd��bR?��H���4p�_[4(�l����2���$�l�`�uH88���TC�gW/fD�N)�+����E�3�l�OU��W.0�l�V��]���*�Hv���` ��`��n"0��.���ѓ��7*���>4	���D�R�ܯƂk���L��^W�ѭN�T�<&$�"�1P�0�Z�\�*P�`�J\sm>q9�5.�]���
I��˶D���_���p_�h���m��.h��)��'^��������0�#K�|ۅo�?˵n���o�`��������KR��f;��"i���篂,ERb�*�Э�4�U�?CHЊY{�gEAH����/�`��o���
dJ2�A�(�*7��k;�,��	>Gԝ�HP�%�z��0��_3-m��=��.�4�D��$�]����w�QX.��.��\`q�3�s�ӏ��S>O�F\���r�8��19�?�m�͌��'���L��O�{�L�������*C�"{“@�c\�h<w�p9�s6���"���q0���=_�
c��`ц�?\O�:ׅ��@Lqv�tjc�v>��#l#��?^��Ćy���S���4�14�Ν���PO�¡�rǺLET� ES�b~ُ�+^/j��ش&8^|��^�m�6�5[\57��ş2w9K`��`�c�7F�|@Sѐ��h2]�?K�:�YGNΈ7_i����
�̾d˫^�A�Y0`uB�hh?�%�@ Xj�o�(r[1,+ꯨ���R!8�d-�}�1s��m���?�=+D�~FE��1���aK��v�P|���IT"�![b�qV$��c�@ō-5F�gX��Y�����yy�m�$D�EEw�a����i9�)V!8<&4{��$
�Ԕ�n���$#_
c�$Vր�6 Z�G�'q�{��8
����満���!j*e�,�/s���Tb�����x��`��'^H��x�_o�*PbvIę���*��ރ$���jYo��R|8�Z��|g$�o�85��<�5@ׂ��/&F��T�0�!E@@4�л��}��bz<:l�i�A3.ؽ�L3�@+�p����7�1��K
n��z��n�p�_�p��1(/�M�\�f�sͼ��f›
�{�ב�=^FK�W^+�kE�����8���֎9�;�@�c w�0��8��73&��B*I�Lh-��D�O�'��!Ԇ"��Q��2�jy��4Bė"�D*榥Zc�ǡ)�d�$�x΁��G���Jr��S'���q%��Lݥ���d¼�ġ���9�);�!�@sL��Z�K�"p�<e�.�"B����}OO��H;lw��C�4
�s!�Yԧ@��&}����")C�"?[ŇR�R�I���fcJZ̈��|Y�c�;R�G&;#���=C�
Ms��'�Gd�� \�QX[����T��m]���m�3x���C1��ړ$C�� X�q�`<��
C�%?�qf��JVt�|4�������kO�`s�l�P�T3����h8��G�3�R�I�3�R�c{<>��]k\���s)TD�.���*�,�xw, d��S	�����(�_�,A���{��<��ѥ@Y����
t3dA�'sI�Z��p��.�O�U�/�Y���Vx{:��]��N��IP��!���wx'IG�����†_b�ʎ^b3-.O!�}��V�دE�;��I����d��#حh�6>���XT����*��L@.�oY�2�f̤��X@�ҙ�'�,��sa�q�P"�
c�ސ�5
ݒ�]�y�Kkj���*�]����DV{�0)����H�^�&�ћ����p��,]$�C	�8?l�V�.Kl�H
��vj��C�Q����7����
�É��aLZX�c��.ʗD�8V��e�גL�D,��mT<my�<�4�����X��Y�a���VS�H�Й`�;P��*{f�c"��Ir�/��X�Ž��H=:l�$h-=4��D����Y�#(�e����7�դ�x��T3���6�я�
%$�
s�N��FR\R˃z�;FF���gA�V=�hˬgj|�W�'
(��_Շ	g�
}���
q���I�(�&�YY��pE(��O	_�vM�xӤI�%0�"`�@�d�A1�ceǢ���T-��%1����F�|*�'@l[��K��ݙ��n��Z/���_ޔՔކ/6�W���h2g�%���޸` 8�������GE�P\B9��H�*��P�
p�o�e�xI��a�U��X�}3��"�#��p��#�v0�U8�Eu`��ZF��9Z@���"/�	�J޽�e*R@�-cT�͋��B*�R��_՟Qx���8hԭ[���j*��	:���dvs*�N(��A�f���&&��0`T+���%�m�X�D0"�L�ݚXnm����[�`��@W,�5��he�u�Ъ�|A���:��S���e��or������Ӻ0����Y��#�:q�s@�C���x�۔����[\أ�
� ߹h��r���
�]Ŷ�L�P$!�_������H+R�e6f��ܳZN��L�k����4G��FJ2od>�x"}�fVJҏ��J�'�Ā��H��
�ZK}�Đ
<�$&����f]��O&�+���_�1;*Q`{7	u�X�a�0T��7!U(��x'�o�3"�;(�!����d@�C��Y1�{��c���&�c�śIb��.B�Ɗ{xW�,9���g^�Џ�S^�c��4 ��-���Ɉ^�Q�Œ�Hb��~Z	�-����<V�@rӌ@'����
; #P@΃��"�n]|�w�w����>����e�a��2]�tʠ�����DQ�҂Bf��n�ѯj�2�[n
?x��b4���+3����Y��620�; uѱ�=3�W5	�%bf!�u�b�B�s���޹��D;��#h�s4(no�c�pQ"��J��O����|q�abG����$��D�qF=B�$&��:/1��Bۮ�Cf�7C���NW'ؙZ�~a�{wc&\���K���׃&"� ��ĄB��2���3��B�΁[=��� �쳼9XE����4���d� :���
 
n􍍩7�
g`<�)�#lN�O�a�6(�c>L�� �.kBD��J��\~�fm���6&t��U)0�Z?�{�Y��o\
�ۏ��@zL���^�إ��a̼L9�0��Lɨ�e��4R�)9�PA�+���,�*'.0��^�dT�L�6���dlKFq�D�_�O�.@5�Z��}A��f�>�eh��w�b�q��JA��B�����Ng��>�Re(����D�;u�5%�$'�֗IQ�'UW3�/\��/ҿW�$5=���{�`�=���e��1��O:ֱ��h�0��n�\q�f6�5:
GP	@e,��2*�[��X��\���`o���圶{���S��^Xk�2�7
V5��
P�0\
�~h{t�<W:�5���sB٣��lu�ԑ���G@��
�߰��������N7���P��>~��UPb��ڸo_X6��0�2(�'zE��
N�_�#^��5S3���թ'��G��7�§7|��xS!4̲�r\�ӑ��*�� �^���!�`�ե���an
Ja��������hAvj�gx g|��¢
���г�
N(!�7 7}�z�����c�?�`�-
������
�1z����
i\���!�T
oe�<�eZ���`�}�"k<�;��OA�6��ސ%��h^�T료��S�?}A�uY���Vm�;�u��%4RW�"-֢%�����,~ߚ��*I���?xF^�?��������z���@�Ի�e�~���y�̒�D�j#�/ή�-U^{��IR�R'�o,���D-
XDžsY#1��I�cC�å㍙����tO�lq͐/#�e�Kڤ�L�e0+\��&�l-�~�2{���U�/�!|b
����|w�����d�t����Ԃ�0/�;Ίr��F����&t	C�6-5=���@m�63�pP�qY��i=XF~Sx%��,��
|�i%��u���Fh�������㚇1���N�f����ѯi�Hʵ���4�Ty<(N�#w����D�gu~`��-<G�T��51=�j�K�@��έ�6�n�oIB�����"��W]��\g��l�#,{�!(AAN�+`���L����̈�Z#�����&�$~�';x�%y�>��A�"߹�*�S���Y	.d��t-�=�RB����g��#���|�M}(�����-(�)���p�\�"����]֡�|�l�.��
)m�i�<��IaK<[ݑ��l%Z�J21�hJ;"f�z���-�M�������s��P�CI��ͱɵ(ˑTt�iLi�k�����Nj0x�Ѳ�uؠ�iۈ�,�x��Ŋ-�_
��uUtu����Z���h"�!��C36��M8ƚn*Z�~D��yTyM83��Ԃ�M&Ӕ�,�&����ҊC���F'P�G��jv�ΐ�N%�GQu�J�����Ku5�(H� F�հ���[r��I6�9�N֪���pa*Üw�\î�v%�d�s1]]	��R�^G��Ϗo��s|l&�~$k��߳"P�@���G9bcn�șI��1��;C�G��Lz�'$o\�U?Z�����<V��~����6}Y*68R{ވL���;�M�����f)R��4�jm=~[OYQs4�.�C>|}C$���B�F��)�4�&���1ג��%��12��E�A��j�"�'�_N��M�
�F�K��hb�b(@�Vϖ!�n-���u��j��@(TC����4M���d���I�`8����(x�
A�5Y�!�~���������#
tU$6?�?p�q&x$A�~�R	'�E���r.�L�u��^�Xd�^��ׅZ� 3*}H�'0$4߸� ˪�X�T�I������+t#�@�04�ܕ�Z����F�?���u��[{�'��a\�� ���9��9�u�
f��#�<���=B���4�E�FC���0wi�P��;`*�5�a��=a��"ED���;ߏ���A/��j97@�3�"�46ޕoĝ.�M���y��аd���ّW!�ʐJU�n�H	X�mD��%�D�u��v;ԺO�����_E�N��҈Fe1LG#�C���,ܻ}�~?
ǫ'"S��-�-��d�r�zK`9��QK����Aw��}�c5*#l3q�l�1��:
U݈�ၽY��ިya��iTBmw�������QoX+�
�9L�D�d�lf1
	�	�"����fE�r���M�c���c���i3�ՕP������|�A�̦A
�h�0:C���Nd�Z\������=�2�Q��V	�H��a�>3h�Ȏ^'YV��%6��:#py)]oM�@W),Ȑ�p�f`d1����s����������?(`5����RJ�	NL�JО2$A���6Դ�*j$�&���Ċ3FK&�w��0۬B؞�o��9��s�"�/ZJ����'�� 
?�/{;���JN�v�&z��6�p�"X��̾�=<_*�?�}:��4�}۴��v̈�k{�'�J7Kr�/f��w|��lXͻ������8�Q�M}��
M�X�
�Q�u�;�ט[W#	�m�j ��^���UM�F3p�^�pȈߤc%ܔT�듭pI��:�F�)�q^Q�I�Wju+�!g�KvR���Pa4�`�
�*�X�U�)&A�������XT'���q����9��{���=ڏ���N��������I�Bf$@ͤv�7"����G�8M>]���[RuԎ-��@��\F}0
���.|Z|�AC|!49UR�Yv��{Jr��\���e��+-��_���Z~��̶)C�ʛS����,g<XD�f�e�w^k($�[j���zv���z˨�Lҙ6oF��w�t�}����@+�:�Z�[�V-~
�J�Y��/���y7��ΟTSa�|̐AX����ҹ!�$'2���pƃ\k�/W��gK����I0a�zm�7X���D���ڮD�x̔�˭$��P���B���=
V�V2@�M(P��4#L&�U#�H\���)lA�b�O<[���!�bdn\ɺ��D.�����vϗ��۩
s��L��I�{[e13D�,"~e؅���Ej�t֔�'̶x{@� bv[7G����4yL#F���I�����ۉ�=�x��0�[JC[�qgA�RF�a�G��'/�*�7sQ�J�.h4�21_'M&��/B����<�!�]�[N����n��ڈt�Q�
r�
΅xS���
�F�=�_#Ea:�L���b�#�^<��R�kE5�x��RE��0��a���r��R�W��B)5�h&�{���%0�+�l��:�� 9�0�l��-����F�6�����ZO�d5�?b�h�T�?��s��K#2uzO�b�܄n�Qϣ��(i���ܔ�;��B�/-�ً��V�+,E�d�8�I
9�O�6�m%����t]O8G*+	A[N3�����'t�v��_Ƅ��X�
`��H��*�k���Ǔ�����9)�)3�&����������d���6zۖ8��>CD�[2B��:@Eײf̙�j��G�9΍៊X��rqۜ%SI|/�n� ^�!�10�-�Ȱ��C��&���c��Yl���2WB�:�
�&�X�A%M5�?������·�_���,HF�F� +y�N��.��{~�
����(��6�m/{�	`b��5�C�)P��b����ѥy�x��}@�U2�2Yy`���MD�%�Kw҂=�W,H�-F�4��8��>�������~a($�������B؁:�/db��To�������\s��Tn��8����/��$���t�:�e�BM��91U3��zI��*\G���gXI��9U�NE�˧U�r�-c�����dL$�(|^�A�@��rH��"b��0$��G,����KV?����"%�mp�hL����o�q�_b�[� +V���1�UcQ��3T��1�?7����R�8��(mj�gl��X�fmvh�["���g:�E>��f��JU��8V`p}���~��u��@�'fc����ȎC$0:�$�D^`ڌD,���l�����ͼ/���>$�o(�F��I�0(6�Mgl�F^��&s$e_D�U%�Hj�H��[�����h����[�P�:S��O���FM�θi~�J��C(���$�wDP�Y��kb2���W�U�܀t�s��,3ԼE��m��x���
�"��#�`�7��hԨ�$6:ܝZ��N��b���ԅW�
�;z�A[�b��2ҳv�K�K�[��DX_�S������yR�G��[�欰F��
��90��D�V2p��詒��<l�8Ŵ�@�u�0�OliP0E$���$	ڄG�D�"�I��bE�C��L���S�Ƥ4��!�nD�h�iI��41��������D]�DV��o�N'�M�גM?�FH)!�J��r8f´����n�>)��A�f��U�ؗM0h�ӆ�"��6���pp�V���]�9@u$���8/3
��_�&�d.#i�i�E|%4��Z�
��� ט�3����O���e�!Q���T����_��-)�w^�_
q!w=�{�%�t�S��<I'R8�8��v�-ZT���4B���'�H���I8͡{�}�Q��jd��K�(=I�@�I�1�@F�t��쵥�E��YQ��5��8)�.xLM	d�F��7�(�g��
�JΪL�����ˀ��B��<�S$xU�0�Y��j� ��-��W�{��6^�}�@�T����*�}���Ch�&8#ۮ#^�^e�\�!0�O%�3.��emz:6��a�2ߜ9�;F����KپW4��!G���Xl>��žB�����N(��#���h��R���
Hx_>h}C57�Noir���A�_���.��.�0�E9�w�J��s5UI]��@6&�\�{���6ȦviR�?7Q�֛"��*�a�`�&&L�t���F�%<��m������n|D%�m2N-�
y~|o��B�F�ɢG�E�t��"6�5�`�
O*Q�Pv€�an�'��C�R^�~V((�a�p�D� �<��-��$^��/��Al��D|`sF
8�� ��q��\P�W�2�*X��PR�ȼ�^p�;B9>榜O�EPV(&��5>ɞMB�3��‘
�WD�ԫOnKϬ�L��x�ȹ���}1D�vP�
�.�ȋ����H�=���=�{�n��h&�u*t������/-����3 ��E�V�ϸ�$��&)�l%��MA�*�,
U�{�0[��)�A��f1���*>� ��:ns��J��`��Y�E�EK�.>.YJ���4�ۑ���]N�F+��G�.^�Μ� �%X <
1��e���!\a�2K����f
�ط��3@\$4Y1��qR�JҘ�&�왺�-��UQ���e�	�4���%cc�5`Cw�P���m7Je�FL��b�S=\�V�r�y�u�{���!�t��C�r�j����x$X���7������L�O
CA��2�W�	,e �3�s�g˴�t����Q�IzϊR��Y�2$px��t�PH\��zߋ1סd����.�	�*e�?]F�L��:�`0���1�eӸ��sBj�L�M��I��ҹ�вЉK�„�RmIi}'���l
���/���,�E���C�NY�d�(G�_��?�Ph�9>�
n��մ9�#_f�w��bB�K�!(�HK��_flG�'u�C�8��%��_c�;'$B$J�"!�7Q��c�W��Q�@�~���_�`]կ�/���䍮���̶t����kL�.f�ׯ ��F��]p�9��h������<i"��ݨǮ�pf[(�:*����7��բ<����W���~A�=�����dò��(:��#)����oF�w��$���%aG'���~n׊[(HZ����+X�OXpu��SĄ���eu��X�{�m�
� o�.�6ZpTe�EU
����|��
�N�W�E���̞�i|kUw.���b�j
NJ
1 �~f`�Q��ix4Z��$ɀ*p���d�3Ѐ��E��1���!N��4����\zJX@�\O,�v�tm��-���w���MU�g�@q���+�c��g~������R�ms���~��߅D`V��€�B��;����ct?[?D����m��8�f\�o{)��@u�l �޽2��jH�\�ď�&t� �]E�|�?%��.�-u���R�������{k���GШ��qh?����������qv�w�.:hHQx�K<�a�B�F�^�h弖��W�7-�'u�<���SJt+���[:�G�G����i ٜ�XaC�ܮb�5�	"[�p����G�o�8-�=��svpw��Z%��{Qy�{{&�rӍʼT�g�@�)q�S�P6�u�~�i�`��]�U�aMl;��t�'�p�p����	����h�fu��`̑��pJ���l�{�1z�|�9��p�w�.��W�F�tI�6�l��3�U��٦�\=��n�V�}PH�m�tP����S;�h͝��e�c&bڳ.�jn"9���6�+r͠*��l%KrW�FO��?t�W{�n����T
�A��BU;A��Xn���<U%u�Æq?�2�$���ez"���75q.E��b�_���*@�[;ƚ�+��W����!�E�+,kofX�tCDV��"8��
f���2�/�����c�2�lf������K���_�偌��=�55[ڍ��l�b�x�6\Hh�h�(�Z�R��>v�}�8�%Q��.Һ�y~co����V�ཎ����Z���������y�,��>���#/R@��?*�J�Lh3;I�756L�����U%W��-��ኪ�1^�*��M�d�7D#�Z��R0�<�Ӏ��&$s��v3L�z�N7Qj$�Zg�B�H^K����陝��aS���2A4�C6pԂ`	��¨F�sA�8���SҥS�AQ�����c���a�'�|��p�8�@h�p
J�	x3���<R��@r&��%T��-$R���]dx3�su��5�h�H���$�M��$I&!�A��m(�[�?~鐃T��sak0�xiSdsrg����h�*��5���92�]��m� qKe�M!��}6��Sv��ݓ/Q6_���1�����K���A��-�����T��0�9��Z�<�)=Es"�7�F�*�5�/�`�db~�J��%u2�3H���uu�h�ʿq5���؁��؋.(z���@5շ���ڈ��9�9�q�[��sQ�[ƨ)����A5Gd5�A��ٓB�bm\*�&݀����j�����/�/B�&n�+X�JrRvJ�4��\,�=�R���A�'��	$��j۠Hi���Ihz
���Y%
z�(���G�#�IVs�n�;
�0jzD]�Z��a�{��a�#!cAŌE�S�	@Q%�1T��̅Cݟ+T�B��gK��;�4S�#�`���;	��Vk��."���a�<t�6o@��^�|���LZ�%
�Ѿ00!`�)��Z�!�6"�r��J"i���l�+������z@C��lm����`����.���{��!j�wM��h���BR�0ԅ-l�\P}���3�Ό1�G�1�kF�sxRH��b�S,�����x+R~�����h�x��E @�@�,�ƸjYF�:o
Ȅ�DXC�[���P'����Z5�$�)�.���/�����a)�}�H���i��e
&~�#B(Km�$_��FV��HJi�f���ltx��Ikب�HJ����y�z�@��/����S_���y��,x�Q��;��!%�2x.��&�H
x��w6]$/���@�p��R�\5ʜ�D�(������(}d*�v-)��_[�x9�@�MH1��uo��K�GN�L-��`�����{�_�H(���0-�^QOBd?��p:e첪��IeSU_����2���)+j"mY�ӽ�����;+=�ύ�'TMv�+쪅B��֡<ieKO�m+���1�ka�&oVL[��nWX�[�o���///VW=
���\���m3��
:jS\
�@�Θw�M �Kki�F�C`��Bo�w��_dP=SI���Fz�BofSQD)��&`s�]��x�\�ZXa�!<6�E�b��M4�]�]�����2a�
h��H]�P�q�J�[���06[�NP��\���-c}m%,	4�k(l����Md�B��*$B�-'H*��U�5U���#�RXx
"�!��Q�Y#�k$��'���+�J���A4�EC1�:iCѾC�)�����"�d��0Ɲp�MR�@�'�:�4J��%wB9��t/P��:,�1��J1�Xb����"�2�t�$r��,p	C��F��M�\|ґ[	�x4)7� #*�QIQ�S��FKW��N�)Dz@��P@��+><�5ߞ�(<l9�iOS���G�5~�
v4�NJ.�]NN�kO{��(��=�էZO:��Ny�[|h����w~�z�sY��`��p58vA@����M޹�������]�%�Z�o���d���Rt�0$6`)@aJ�E�%�As���^W�[$��Dn�99j�Z��+F���]mT̮����l��p��T][*�q�́Vy\�U��1UV��R{��FMqa�h�'��}Ю˟�:�V�Oe�i��AR��@Z�Pt��66RY�e
WQʛl��ty��-	MS<���en��4�����������%�{m����W)1��Z��3p���$;Xk�#�%P�N�J��2��g]g ��D�)z��B'T��'L���bC���TB�y�9"� ��ҼET����JZM(0]�i\ȆM���s�J���#���U�ɮ�z��2�B���v9Wb8!N�Q~Z�3F�
-n��ug���IH��p���8<_֕�R�u>ҟ�9��i����g����t��8Z���6�=�d�R�(��j�FV�i�,�:	ie*S�u�R-��C"C
e\
we�"�X��řP�.X9���,]fT�9A���Pz2���l��k2�~��QR�FX��4q�B�h�Q��)4ې�}
�)f%�n:�K4�"�c0��,C��b�8��pbl�����d�Z_{'d�f<���.��5M}8�`��׈���V'�ҖB�$����D���\D���j�Zmc�[�p��l��>N����^����0:�)1�8J<�+�*8�hbv�)�P`�pD4��W%&j)#����8��/��aMd�Fv��f�S�,�$]�5}�*^*O��*OJL�IH4 gPإ#ݎ����$��J����� M?7��1!+	��\��4���L�C�X(6=1~[I����D�L�[�]�*���'!#w���	p��ȝ���V�ر��D�)@  ��K�aG�	$�@x
Y)���$���������-�ƒ�1e�z'6��C�Ev�5K�`](�92r�0���o������q�(‰!�'!qy#'1��DN>��;��k��;/���)�^��N��"�#\Q>�bR��eSD�^$<��'�D�� �!�vYR%)a2���x�GY�:�p8e�m]Q���D(�曁I��0����,�!���&�r�:��	s���B!����&$��@k~#ix����:��G}�Jq���:.�BC��i���˺>ϔ/��5����
�"^r��2�d픹��j�kֵ� m7�����{	s3d$vm��V&X��n4�[L6�Z�R�J4r��8���pt�ؔ�v�F7��#3�8rv�{�O��dT�R("�j�j�mĮ�k�Y�ù@�"<��o����憘�P�-!ʭe6X�KD^$����+\��s5`$��2�E�r��m���WHf�`m�C
9�l�	��
X��G�l]���R��ere�bbd+�aZ�Qј��?�%��B�!�Z��&�|��5ߴɀ���l���zJ�8�_	a�1hm���6K
�E�i=���H�N��ʧ/@ä�WMd��3`�

�!
�{(8\sv|�w��rJ\�F��Ӌ�!ǣu"(W�r�T�Y�%�l���&Շ�B*�39g�Nn0HFX�
���V�)2캶�lD�,rGn@|EjD"D�Z���PĊ�"�"��+"����,�1��xQ�����"�v"��
��#���!�,�B��Î0�B��`�`��tP��H\���0
I�;�a𦜦"k`��%(d��чZ":�B�TNZ���k�G lsX��CGR�ƿ�y�R�9L��/��..��2a3��;����Y�R���1D~!�Bd��<l�{�n0�|� �2��CXkZh�<@m��6;6(Swll��c!�+�PZ�!c�\댮A��8�9U�$�17�u�O~ĕ�'�LH�y��4���W4�Om�S�>$5�x~�J��9���	�X�Y��Ќ<�6��>i������̟�PFQD�)vz:6̔`����D�ޔ(Ǹ ��˃g�����v� �㎰�0�j-fx�f���0X����/�'kРvG=�
����D�I(y��Ƕ�1�Y�t([~��Cp�à�"K�ɤ��PK"����Їb��͜����@�@:8�X
��
XK��@:��'�&8�2
������!䖹 W_,:���o&a]�v�D��*�&��������
��q0"6��O4� Q�(���mf���	R��2	�����E�=�����{ݏ�O�"]�Nd����$��yy��߲��x� s�Ԩ#: JT죏A�<9X����������D阈u���Q8�t�_4$/�
-�C�_��_p`X��K�A�O��f��0�`�t4p�ª,��I����	F}#���K�[�{k��ĥL��(�ς'�xUH�uR%w()�
#װc��>�\*�-��%���&���F����s����P8��4k5���+˅V�X���5���A����Μ��#���vu7E�P�X��Nh-�G� �$�؜7�gA
��=d���_���$��y�%���X?�z������i�H��>�[��1��o�C!��!��e�1<����-����>N�L3c���6��u��'�#�#
k��z�^ݑ�v� �9�,��=��d�����&���R҄���`�X%3��DkV G?��j����a�"FGC�uOC�E�o0�C���xM?�2{f5,��ԭ �������@
�K�v��yC��������p�����U촮=K�����z�2���C�B��\�3Γa,++�r�G
�H��	\"@�j`xb�YoR�z��J�O��Np�~2�ĖxX�˔��~,��@~	b�ā�hsw�$�`��;x����ܵ��e�	���8@N�m�`!��㚮��QZ�Rլ��	&Nm�3�����I��͗�N䝜��-��fD�<SzH=hV�k�{˳�z�|sU�±���������p����ӕ���6D�]l��^o8H�7.5\g$wx��m�W��5!@3 !��+gk�P�����������;
#�s����������&�2���"���`��n�PV����oP!n����͹t�GG�G���q�qSn�n�>W�]�Ʀ�hpm�s���Į!�NMP٭�]"@�Ev�֔u9��t�#�Z��TX
	�c�v�/=��Փu|�d�OVsi �F4ZeTM!p�c�(�ڬ�4S΄�ᣌ��x��!���@��~�@�����@���n7A3���66NO�ܶZ��wk��
Y��vW�Y�jp��P�嗢V���:^�s���>Qu�iCc0��&L��T�SdRuAm�Y�>�H������:��#J�캛�{�_���K��IF8.@N+�dΫR�����=���-�Qw���swT�Q9Dvv�L곢#94���ڥ불����5:d��j�X ��m���r\ӣB+P��6p�1S�az��‚F+��y`��j�*(T#L���+}AS��⡪2�k�gz��fV\�����ԁK<���Z�P�LT��t|�&�o��A��:���pf��œ�Pr��YE�J2/lw�c��O-�x�(����L�GV�8�ě$s<�8ęf=�UoQ;�HÀ��^�K�B�6����5֞{�-�}���K�s�C<$˨ʔ�UcU7����52�I�ůF��@��EQp���#��{���u�w�H�AQ�0	�u��]�y+nݟ#Y�"e9��m�z٥z�B$%�{�����Q|�"
F|"��q�0Bv��r�@O�1����|�w1�G�(0��[f�h^��Ae�@�,�0�J���1��-E�����-���q�;l9����?�U���$;s��
��"O��O�N��b�a-�Ȩ3W��8e�Z�VbbbгpGR��_ѲC�;���orG�i���k��MQ(CzT��$

����U�.5�
�p6�)|'������A�&����SA�c[0['cʡ�g�j��]e���Uvm���O��i�И�0���}��	�Z@1?.q�rT;+eIdBŒ��r����5�I%�yԤH�X�۶w�������&���2N�����S9��(��J�L�6ފ�)D�L���t�p�6T<�9���q��g�6
��E��1i��CP���l�R��b��w���0p��/�&�)���e��؁>M����t��a)J-�b�Ir5����Z\0b2&�*�/[�^;���]����!�>G��L%�],睝���E�(��m�=��ʤ�hUdQm�D��[U�kD4�9=�MU��{8D9AX\Q�ڕ9F8�-�GA�c�w�Kv
R���u	��������w�|I�b���Ϥ�8�[��Ѳ�J�z.��Tn�Ќ�p��`M��Ѣ	��{q��y���,�V�A�ߜ�ZH����j�V��9a2��0s"��r�~�V��\	�P-p�f�y��bqK��j�Ի�䋒�|f��b�i�&�(�P�?�))� �z(�
A��5�w�8�E�̀�_���i�H"D��C�&�;��8
���A�5��F�#Ƅ6z,�i
))���:���:.�\ٻY�2-{���]ĺ3�F�r�R�ΐ���2�A1L�CLt>bH_i@[H.#
�K(3nL��A��M	�Lr�mv�0���G�ח��S�.
�Ϭ߷�d��
���nɯT"����o�M�0�2�%�\��2���V�����֖�zKf�2��p��:)�I3��s!T���Ԍ�~aa��3㤀�JL�1� �ѮѴ�1�!�1�X&p�HqP�#vl٬�i���7a%���#�k����yN��n�fO���puvV��t�X0tEb#r����Aw�Ac�O�4���4���vO�h�v��)�'��B$Dy-�r��pw��\݂4Á�'tsYtN�<��wv���t�/�ì
A�����CL� #!&qB�y��J�̉u8�/���EW�k�K�Ž�x�[�K-3�'S����k�����{l����
g0O��4�0���D��0s��5LI�I21�
f��5������D�ˁ�����\��b}tΗ@{�Sko�-,��޻2�*�w�$��KތP ��Et-rPau�`>!)( ]�T�Aby�0��~z�q�H:�u�J�����[3*���vє�~랡�#km
64‰q7�Q��n�@G����ۚZ�ԾC c�]1����3�KxU�R��e!�\������
!��FL�x��7�@��3)fC����1Z	��W.q
����E�̘L�A���B�s�/�J�>:^�+�������4�; JA=�L))ci�R����I����C��I���r�#�T04�$�8���K�O`\�Neg�Z9 ��P�O�2�ˮ<�j}ڷ�v~t2�բV�M`"�)*\�&��иyW�2�T�2�\�� >�൒�X�N�)c��$�*��OBLIH��AmR��_�‰}�2�U!�p;A�d��Ns��K��g�iy4��(�4��#��a���*�
�e_y�džID�F|���%�(�F;�k@�9�D]�d�N�C��_ �X��gy��[",�����ͺ)9$��$[�R���&ȹ;�"(\�I*~���qҼ:�$�	"%�m	2A؋�RN,��R�r�)�&z/IC4���A1�R`k���P� �,�62��#8�`>M�������Y�K�����,	�Y"�[Jw)���L��RXH�wR�h��@l�l����:�&���&P�Q|��#�d(�-$���?g�M��1q�\��$Д����#a䚱�`��JiMSiyJLO�PQ�bO"0�� a�J��Z������&��k�V�é���g@�I\�@I��,�LL�V�J�K)8���6��u�%;�1,7��^/~���"��^�Qs"�_{��Y<�؍%�B{�/٘T(�`KQ7�&.��c��c0@��Ek�A6���	Cn�����x�9�`�(�|��0�zQ��A�m�b�$XHr"�|��8}��k�W̮$QA�n�E���0Ekn�� h��\�H�ڰ�Ƃ�`/�S.s����0.q.0��c+g�95�#��
3&�JΛL�sаPN��DAZVG�P[d���vd��!SXb��)
R9�W�%�A}m���5�ʏIY��x�7�`�V����k�H�n\�C�čފ�p�X�,WZAr&׉m��p+����b+0P�%c�dކE�~C�fEܨ�7��X�F�f����Vi�jWl�E��զ�%��B�Z�N%hX��nTAS�0	%J$��U���C7����W�h�.P^�X]3�V����C�[S��é�iTD6=:p���R�-?����2
VID"Z��F�z2|'$';��ɲk!�-�	�k��15�4Qs����'�j6鏓�<�2�''��4���|0\���RD�Q�$��G���N��!�Qo&q"<2i4���'�(��vp�0P�8�JË\{tڦ.�	��g�&ʀ�@į�VdR����2"���iF�Ii���F��B�cX3���V������K����",��&�$�r n�x4�g	ͱ	L��=�Ns>B�v���c�о9��#⎏~W�Aq4Orb��Cd�\]0dZ����4J@M��E���<��n�?
3f4��I�	AWby�+mF��D ��b���Om�2p�������k�dˀ!����G���2���r�ZH@�\�e�^��;����VLs��.n	��c@���N�fLP�����#�D�4��Jػ�x�;��WPK�
��&8���C"؂dA�P��?�I�H�ew\��y9�dm�*P
k��P1��u��"���|q4�A#0.ָ����c#i<S3��Yj�ON��-hF��	�U�L�,+L�
�yzH�&hH[��aCK�pڂ����� 8�A���$ij:3Y�	�C�cR���7Hy�.vi�3*G�Y��ѭ4�='d����J��z���,QF0�e�ē4�B&�-P��/����3�bf�t��� ɼ��d�I鈁}#;��a��0�*�y�@&������RiՐ�i�@Ȕ�;��I��a�����!��2�'?��I���U�DX� g��
s���Q���*{6!�4h���`?�o���ҿ4/��PCu�á?$$�
�×��Y����b��܂���b�=l�u�&�����Y��^K�L;�v�C��(��2��v8:r�Vp��|�C�
e�(�(�`�K���ъ�WDb��n�~ȯX��Kd�4^%D((�Ӥ�S{�M���}�Ϭ�3�(�|��dHU�=��Pu�б�^s#��03�CA��@a�9^O�
Ҧ�p�K�9�/�0)��D��J�sn}�`df�g0�G�*l* ���Q��?
/@w�p�ݧ�ԫ3Ql�:Zq�G��@~5���ǐ�B�w�a�j�1�(��B�⹐2��E�e����y��=�	��<gύ�XUm�}	*6�nV�<�&?���7�y�_�:Yݍ]��y�I��1["����?���R%�tuk�����q:>�f�CqebE2�8la		(b���2��[e�r�r��F;�V"IJK����|�D�VI)d��/+w�
8&�.
�p���'P�V�e<�%���
�q��6�PM�}�>W�K�&Zw.�wv��Y�`��)��t8�H�0>{%L�:G�0Q����=T'(G���I���$O�[����-��:�fi@Fe�t�0_���=u
� 8��߱+v;s��9yB�geҰ�!���6��<�">u�9���/�
I%�b@�(�Jx��@����j�I'�����=%��؊�N��,a����+�
d����[�͜~iE�P$��K��HI%�g�7S:i�9�*�{v�i��DpR����u� 隗Ԫ�M1 V�T1'���86e<�7�I��4�&��I���M��x���"��U�\��z�w���&#b^7s�_o��1=���l��dF�;�f��l>yU��8�vI"D]�`��B	:MX!9��Hbk��yRLU
���V��D�n�U�ȝ=`.�jc�'D
������ФT8��#�'�-v�1����\�r�M�6 ���`��uԛ�!��H��Acq�"����!p?P`�@����j�[�EY�\F$ڪ�,�P��~Cb��RN�":0!}��|3� �ҥn�~>�-~BWd�3��9�;�p<DJ�ʽb�k���L+�XÚK\��"K�ɨ݊-%ഋ1V��>ٌ�t0�KVӏdL�	��E�W7S%�fr� �`�]H���W{��wp0;�\�X��
�1����A�8�^V�9�v����X�Ҝo����ɫ���4�rD��+p�8V��Ԝ``[��2�*���3�t#���k�xx%�1��A�5$32-��^�H�
�g���h[�)4@�6Ϣv{Ȃ�/�[<%����q�B#-E�96�ޗ�a�W�q�"�N��߁kȲ�nj�����SonB+�D�ȥ�0�E	�>>&�"9)X�}Wu�Iؔ�F�z�[%i�� �{1�O7��'&=�	�nP��d�F�����[�O����.�;n��F=�@�R
�G�>�-�&��d��GI)<�T]�\�.[�ʛՂ{���B��	�`]-9�N(�EJ��TKY�[�5F�M�8�Fy��t�#P4�V��\P�,���@>��Nd���F����`�z�e�M�^���D/rh
FIZ�vk�"	p�t���YB�Ur:k�x��~�&�	�,�ȱXF��bp��W[�n�Ĕ���2I$:�L�K"u���B���ه���4$QOM�
���m���&��Pc�zP]6^4#,w�����JP�\0!hk/�@�ZW�j����F� ���9C*s�oR"H!C��v�#6S>M���4�C�@�A�ơ~7y B�F�
Z��&���&H�VVXL�o�NP	�^q��oGSP|B7��f}�6&�+To�6��s��l�(D�%��虽<�=q&�t&��=��h�a~>G�R���D=S�ި/�/>Bwe��M�ڜd8H�
���
#�^��hHQ{M��� 	"�@(�I%R,��B���F�4'�����[m�,�z�tm.�ApC���iy���vB��al��a���読���p����bD�yU�l�f0=�,�΋I����iMn� /�XC��eEL#��"S�>t��`��������I�
x�ߔ3���|&��t'S�����j�y�b*��4��9��OMkt�LW�P��ŗ�#��W���"ljv��aE�4���;/�f�஧�A���� �� OD2�"
N# ���j�\�`We�6AVv�D��D<Q�0�>m��A�'j

��\-�	�MaP�a �IE��"��gՍo��96��*�'Ɓ`V7K�!f~/� BI6��÷�Z�%�	�f4B�PU�Q9Q�(���#��Zz²,4P�sI��5�W���چ!Aq7BY��d��N
�_|+P�ӎ��Mބ\�ϣw�6$-��"mG3�ȁ���ܣ�Yp,�L-j�>oB�����e"'��k�����h#�Z8
3���m���\�{sdAf(My)>Anr�:uS�C��)�I�a
IK��X.��ʊɰ��!�
܋�:HF�S1F|(@�ko��b
{��3>p�6jn�:��PdC*Y^a�7uhDU�-��+}�
�?V3F�݊�j�a�
���70z��T� ��A�ͳnh��4M1�8��Z�f�����Pr�8����=�D@0�Qê��-m�'�ӽ�%!����Q��Ҟ���8
=*i�1�r�	L(����↟f�g�Pl�h*p0Ω�)]��������l�S|�N2�+��&	pצI�1?�&�j��31~W�ШE��!�$II�H	8�o�i�D���`rث�cBT
��„��4�X�0�i(����� �D��j������t9nƠIG��!"����Hobe��dt����ԓ���P�\�!i���"hȊ#��F2)�Ѱ���d2!I�)o���o�Sz����m���
��C�PD�X��/J�!�*
��Ǡ: 0�ڈ�H�n�0�ɕ��:!w0�<DJ0&@2±nW��(�I���P䬑��tl$��x�.)��b�!
#C���܆�ր�%���3(�JVvR��=`+�ȼےn.`�H,0S���ED���C��Ѹ�Ѧ�
�kIA�I
)������)�*Jke��N�h���6�YN��-P� B����t����
����+�!"Pd]��9��hB
�,`�T†�tj�6�����hj��DJ�`Ԟ��jD�
�ۦ4='_I�\�\�K�B�@���y���t� �"�{���o��l�y.�]�j"�G�.�nڂ!
q��,��lJ�n��cX,@e�A}m��0^�T>�7� 
B����F���6�Q�-L� �Ҁ���L�Y��9F!ݨK�%�`��s��[(ц��S����)���TZ��OxK�╬��}r��S�I��K�av#�F��Q{�D
Q$�$\)�6Js ��0C"{�*�P�����ٴ��T!��!DgZp���+/�U�B��Qn3)��������K��f�A^��=?�Zx���	�<�/���^���v4H�Y�x%4}'{���4���!��8�Ԩ*�����ė����u}�؛��y��՘/;��o8XEph�G�3�&z�f�o�x�>Ls��5)��Ŕ��$^�z9���s�D�+������,����1�i]:�r�%ϫ7�Î��(kH��kU�ں�#TG��'��8㋣�_2�G=��
p�1,�I��[	I��&����M@z�?�+g���d���6.r������'s�q���Y�o�P��#%�CL�z4"�LJ��v�).s]N��s$nY�Bq3qt'�	�ؽ����"��E�?�
�at+���s�-�v����mqY�`��$3A�lE�dz�
�u�j�Kh�k���D�� ��7]@�-�3�	�ܦK�������s1h��ب5��m�S�n�J���3�WX�Soۣ��g���\IWC1.������Y����'�hp��m�X"�S붠��.�C0�b�B�4��*�dPah2v��gw�E�(��M
@�̊4U�w�RP;u3�*�긖L@�Ca!ʱd�{ĈT=�`�7�j���V�L���
��!`f�g��0;2��ؗ/I�A�[�(?�<�Н��(J�gvf#�1��7;g�vf�+�`�d���ew�h���[
��@=CD�l�\io��qV�ݵ�]��k�A�N9:�����i�Yn��i5� ��b��OZAι��.�d,٭���,�#M�D�_T�seOI�Z/���6��B.�zh�bv&s-ނ���T@���Q����煐�
�Քb��.
�rXJ�Qx�x^��Ѫ���&�>�\���+��ILQ (�!�
WlB�e�����[fXB/Y{=k
�n�&�=���`R��R�DCd(2$�4�.c�e�1�|� �:�0+(��z]0Y(�Tp��Ig,�4�u����L��=��h��D�i����
6K$�
d��ՉDŎT,#8�$C-������%�C%� _li�7+X��h6!��5��
P_6։��NK�c	���:ZxX��f�Yi�yH�T
���(~9�*�(}�]ů�U0J�l�)��L	��t���
��S��(����Vw��p]F��i�[9P �!�Q�f����%F|�S�3�L{H�f��ɱL�4�E�����ː20��\�2�(4�~LQ���t��suqԠm��4�a�yPZ�&�-�����i0⋦�1�ŕ�K�iY�58��dz%�b�?�26%�����#�_��~zY�
��ccF
K9}����q�
�h�f+�e�p��p��	I#'Y|c���qy�����ڲ,�lKG��I�C�85&�����Ez�C#�#���E`��j�V���,��^�k��M-���!���~�>N�V�]@[�`�J�&6�4`<���XPiH�td�3#��R���ܑ��&��B
�4lA����1f��.�$�;cKk3J*,Q��ϕ��l�{s	���wX,&�&N��z=
�;45B�h�}�Mxp,�H�#�M����(�jl�3�Y��Ƞ�s�Q7��Qd lڪ�wBC`�����#.�dl�-C�!�A]:��*�If�$
�8�c�o@�T��1ݳ(��8�D���ь�g�ic�c��G����:D���՚���������B���	0m�0�r.Rǔ	����+72l�GJe��P�o�� �!P�D$R`@�mt��x!$�؈�IH�1��9)��}�z�B@7O _���C�zx�a�u��I��}L��ܶ���X"c����w��k�C�/E[�[�Y2�j^C0������W8��Kɋ�t󲭼�
�`�t
E=@C�K�S:Z�C`��/t�F֙����bGt.>���H�h�B՗���7��Xʈ�,r
�%�"c
�\e�〈�&~�c���|���ԎA[n���4�'��E�����ԔО�f<����x�\ �5fD��)�('��$h�3hLK��Ng�_^��|@mZ���D�Y%��U4"OV]ap��E�nk�0�Q¥���H�z8�g���7���Cxxd�Pt��@�-�3-Z"s�::UE)R�f�WJ'¡�]�M�6})��T{�Xӛ�jX��n�J���
�"�q��&1ց�D���Ų�|yv:�'�s�Ê�,:�It;"sz���E(�9<ò�`)B-��8���
ݑ�A�OM��پ��<��������m�^���ҥ=$����pvK/r��q�=�6��K�Jq�{�p~u�X���ާl����w�F�E���($��/P$�`��^��1I\&G�rj�V\��L�%�L����T��I�G1�"����Cv	�aGb%4Gs!$w?�
By��-���qR<B%k{Y��z�f�l-����wQ�::�`���`x�շ�L�!ve�_L�]M��*Ş��
��Jy���Mf�0��B5vČ����(U)5?��(�Ϋhe"�	
sn!�n���ƞ�j]���a��<k�&�e�ͻ'=OcWDXE(��qPa:�ŜZU�y�p���|�b�#jx=9���hp2m�w���[�`P��#3�n9�%@����§��{O�����r�V4���ɡ|���`D�`��zPNWU����
��B��"��`>Z�gW-%H��fE�(��9i�,+`�3�N�]��SZ�*���/R�A�L�;�ib�HR�P|��c��%�GX�/Q�w
�
0��H탧`��!ޏ�
��8`�M��{�{lz�(��	�j-�F�: ��A�e��
�!�({о8�M��X|O	�����H0@�_Pl��ؿr��2s-�ՖD�:���%��k��$Y^�^E�R$��w�#6�G!qngC�yO!�<�A�dx���N�� �W��$�龆��W�#S96�ް��$)+`�-4�/�<D�V��a�kma��w�Nt��]'i}zW���p=L�`��V����*i�C�V
�5�7��E=o�]���i���_� �F`��[,$k��\�6/ !��)"�w�I�5+Jә֒R�:,g��4zM����O�A>�`�ڥH�K1f��.��XX�E�=���$8�[O�ܑ&��v:�K�ߖ�}�r��)NЁ	�6a�lO2�!iDb�HH��=YS��#��E(��kLBǧ%@nY�bx��c��^�Q�g�79fQĕ���k���u[*�8�"��d�u�Ǐi�|��Nr#�gJG�1mFM�C�)j����lF@��E��ay�.�+te��K�Z�ǫ�u���V�#��O���Ș��aB�Y��q�}�`(͓~�@S�h��[K���ɫ�ms&�*~TР�{���wbL~��8�+�6����0�f�~7X�����q6p�ԛ>�h�X�rߟ}�B��r��{��\��Ҟu��#9ঐ.���f�V����k�qЕE���ݨ�Th�P�Н.�0�fq�ھ"���w@����%5X��<�z��Q�Ң��J��a�~:E�Ș�+��L
��p�	��l�QjLŨSx�!��,���E�3����fj��v}*���W�Z��5*�g��4_麱bW
IO��:G�U��=���
/����� ��P�����j��(�"^ǎ��p��%aM�����^<gA�-!>-&��4���J�H�Ճ��LS��l;�g�2�_]hIf���gH�Zz��3ʭ�dC&bjA5BLGm�#���0�aU���e��F��6:�g�|���K���R��0��/�-1�PX�DJ��P܅:��P�壸���n�,�X̕SZ���7;�,���U@)��,E8}��4��a�8����g���V����P�K��5NX<f�
|�����]�@���턔�T`Pեi��R�(]p�:��	C��V2�j�0�"&�����
� ޛT��j��X���V$�
��x�z�/�$�>ڕ�1f�"�T]��PŅ��x�	)��"C`�i&���k0[�:"�h�ƫ1̝�L �e�$;�~$<yJ�UB�0��d��P�s�
]�Z>�{�u� 7�4�2)0�I�gD/�f�x*��d�+��30Ri��H�;�Z���P�0Q�U8͆m��Y�����,�E6-*dKү�B��C�
&6dHCV/V�G�Q� ����G##
ީ��
�'���\�eL�v��[Y��N1���S�(PO���0
�y���(KF����#�>I��g6�Ѐ������8Q
�r�.�9�iY�B�C�
�#I -�M�����3j�&/����
/
��۷j��
b�e��0�Y�m�(&����qB�%����P�
4�����-c��dd�H	HNs�E���S(&�~K{�E��œC�u�/"�,�aJJ�Ą��5����޾�=�o/i��-�9�ƈa
�Cjv- E;��l�Ħ�ܤTBR���b)�L,�s�`�ACTFk����l��U���*H¸�\�H���w0�Jj���u3�kC��3r9���$5��������C< _��vL�^��I�8�q��U��p��j�` &�"[�07^i������I�R"
��-�|$�BdI���,���?%��S���#�_��J+��0�IM��P��̣`C
���L�̔Pt���~�*q"D%�.?�[�	���K����.��t��>tD&N�h�Lo(�2�֔�'ҙt�F����V����	J�R�BY�%�E
�6��a��H40���MO�"1ܞ�I���;N�~o�ԛ�ɞ(��X	HW��s��r�q�2������m2�y_-���v���*1�O�P5�W`j�m���`Rc���f
{����͔@�8���כ�}��j8Y0�b��wt+�@e\(h f��<0g̔�V����tnr�=���X��Y��\�ŀ��ԭ��/H���ʛ��Y!o��In|��R
}æ"�X��(�����ľ�����F.��Z�
T�n�9p�xH������Wՠ�Xxs�1�A��7�l����&��0)��.��I:#��D�P�����e���iY��0w5�-�%�Nˆ>-?��^�1I��FuЊ���`�0w&�l�)�U���ʠ���I��8Th�wĴ��>��"���|!AbQlԖ4��G��()WWՒ����ڳB4��@υ� r1We=L�L�S.X=k�X�D��|A#�Pԝz�C�!�ԉ^��P������:MW��k#t�D��鋡ix�,;SQF~"�X�3�^'i�4�z��.�GtJ,�u�7װ�t��,��hTG!qz	��H��� ���������N�=D��E��'}ޖE�&�(���^��s<@Z-�N�$����J��e�dH�8B�l-�BahK��]���K6�tk>Ep�<-��R�Ss�>UM�	E�~kq
lFLt�ir�La�Ĵ���0/<�J'��`�v��䲀oV��.w�t�i�#�z��xJos����Z��627�1�\�zB�d�%��8F^{	�3�`�0�!��1|����~��/yn�%��%�XJ$R�{-\��&͗]��O��m���6B�2��ŕ�׶����8Ba�n�@�nA���b1�St�)�ötu l)����sR�Di�����Sf�d�z��q���T,Ή��9�8�5���PR��ƼR�M ��I��&I'��w�f�f�N�L��oA�\5��y�'���]�9�G���@�K%Q`;�B
�Ki�Kkn䆁�Ά���Y�@eJ �+\?���B�%R\lĀX	}�U�bֶ$������y�o�	�!@'�'E�fQ$���͵��r	�"�I \GТ'����,ۆ`�v�E�[Z�Cj���'����X^�L��r%
��&I	���%��Ic�x,�I(!�gA��T��|q���6��K��k��o�?�B�<ź� D��
���B��%�`��v2��@���v@�&i	��Y��lVO�9�S5	-�ME$�̰�V4'i %��|,�ag6t�6�Z���t'?!��$X`2�l���曁��bC��Sd(�5�+�1A%Yi�4�:S �1�¼�V1�5^¤�ɤ˳v�^�s��7�Aȃst���G���K%n^*Y
���n#F�w�-�P�.�f�Gd�L}ʊ�$�d�$�l�?�.����q~G�_�u��l�Vl8v`�Ң8��� ��^X�GRp#n�0\b�g̥�&����8G��D���Db��Q�Ȧ���&f�Jv�b�*+���Dž�n�8�t(�	7N;Sq�S��Q�J��Kp+���&�T88�lL�3eB�+#�N(�Vd�M�8b�8�VO�u�����m(b!��UF�����A-/1G"�-â�
U�.G��[���E3��Y"q]����,���ƛ�DQ����ā�->�v�EF��!sp���#'0QO���#�ULƩF@Y��l���F �Ɍ���(��:M��\kb��!��6
GLIӄ$�	���
�\�S��K,TT��8�$�X�%O�б
gn�����"X@�1O��+h^Q�lЌUiTJ�C8�)ir�>�th�Ԇ��%�n����<h�!�6����X�|L�����[�ш6 ��C�t[<f��xyV<I�����=�_�
�o!��
U��0kn��#�����.CA~�D�^.�z��7�D�8��yX}���r8^��#��
#@:���K�uҰ;�ʦx&���o<qy�@�
��L%7)덌����K����D�cu�����^�8��,�0Zt�(�d*Jذ|PX\&+Ÿa�{� �OągFq�F�v9�U
��s 7��L7��Y?yq�
5�����T/��U��7��#bU��fZ(5ӑ�����و��7���4��iF�r@;`�T9܁�fA{�0����D/����,����Մ�4�֣1W��®�3A��e�����n�v�f�ܢg:TQƖl-7>gF��6�p���H��<���AR�I)uNvv�
���U�$!_��rRͭg���B��Al[&)��VZb�pӻ, �n7$/�h�$��،-�j1 $�L��sJ1͓F0�	p7�\�W�j-
�metk�dQ�/ Y��3�Ƌ:��l�\��6�e�I�Zrp�w����`�Wfi�
aX�1���3T$� 'L�|<Q	ġ~�:tP�D�R�g�6>[���L�;��
o
v�S5և���r�E�(�j�������\l���}���b_6�^-Ld좪Bɱ��$
��▰qT�R5��%A@��n�:�h��<�0�#�)�ػ=aF��
�,@��M�NJ�
�j�Ʊ���W�0W}"&`U(��2Q �%���:�w��dĈʹU`�k&�kYu.��ͦ�/4Jv*�h#C�e�$�*Eaz����!���r�V�nT7���)��
�\��v:VE��*AX�޳1���Fh�i^p�,d�le�N��"����c�w�}3dZ�5i3 d�$��  �J���E�^@I:nk�����2G�[У��+7���5��[{8N�s�9$Ŝ��f��9�n;���L��L^����Q�PB��>T��@��M{R� m4�V�������X�zGۡ3I��&�1gJ_������.du��s3�LI���x�ȞF�M����(Y��)j�נk�6B��&q��\�������	ɒ��BI�H����=+(X�����+S�W��V�y��)ǿ)�"� mE�Ҕ�:��QYsly^�W*�C�*)
g(hh&���I&��Á$m�Ӂ`�.�%CA�	A���R��ܤ'�9�4	",�JD�Z�Y:�GIޤ���5�0�]�F�J�J��+DB�,�
�T�'	J+ȥ�a&:�T��I���
QܣK��Z����`�SH�B�F1.����)�<Al�!9�9�.�����%��ndNU�m�f�BX��#��E6
�ځ�&+����Y4�n8�WF��!]4п]4�q��K�XӘl_��,FȀL�'���6a"{"~��E��AP�*��и�W년̘m��f���ۅ��n�9��j��T¯/�g��E�٩p9i�ЈMZ [Z`9Ր6�,2
z�5k���{5a56��civY=g'�2�k�1I����)x|��v�hы�ңddnnP�f�����m�Yn�(�~�:��Lij��D�1�NeR�
�r�&�ˊI�h�X�.ˏ���@@�� �ES�N\�7� K�Lj��h8vm�
;Q����e�hS��M�H���А���[a�	��ȫQ�	�^M
I%Z�)��P�G@JI������x<�aT-�61#L�&�)B�[+"��������0d�_�_��
Erik Peterson
Erik Peterson
Erik PetersonrdDocWord.Document.8�9�q

Anon7 - 2021