From 589855fdeb20a044904f329c9c3cf3ccd0ae0a7a Mon Sep 17 00:00:00 2001 From: Clair Blacketer Date: Thu, 14 Jun 2018 16:15:03 -0400 Subject: [PATCH] CDM v5.3.1 updates --- BigQuery/OMOP CDM bigquery ddl.txt | 95 +- .../CONDITION_OCCURRENCE.md | 6 +- .../DEVICE_EXPOSURE.md | 2 +- .../NOTE_NLP.md | 4 +- .../Standardized-Clinical-Data-Tables.md | 1 + .../StandardizedMetadata/CDM_SOURCE.md | 2 +- .../ATTRIBUTE_DEFINITION.md | 2 +- .../COHORT_DEFINITION.md | 4 +- .../CONCEPT_SYNONYM.md | 2 +- .../StandardizedVocabularies/RELATIONSHIP.md | 2 +- .../CommonDataModel_Wiki_Files/_Footer.md | 2 +- Impala/OMOP CDM impala ddl.txt | 20 +- Netezza/OMOP CDM netezza ddl.txt | 44 +- OMOP_CDM_v5_3.csv | 407 -- OMOP_CDM_v5_3_1.csv | 408 ++ OMOP_CDM_v5_3.pdf => OMOP_CDM_v5_3_1.pdf | 4087 ++++++++--------- Oracle/OMOP CDM oracle constraints.txt | 20 +- Oracle/OMOP CDM oracle ddl.txt | 82 +- .../OMOP CDM pdw constraints.txt | 20 +- ParallelDataWarehouse/OMOP CDM pdw ddl.txt | 84 +- .../OMOP CDM postgresql constraints.txt | 20 +- PostgreSQL/OMOP CDM postgresql ddl.txt | 90 +- README.md | 44 +- Redshift/OMOP CDM redshift ddl.txt | 52 +- .../OMOP CDM sql server constraints.txt | 20 +- Sql Server/OMOP CDM sql server ddl.txt | 52 +- 26 files changed, 2804 insertions(+), 2768 deletions(-) delete mode 100644 OMOP_CDM_v5_3.csv create mode 100644 OMOP_CDM_v5_3_1.csv rename OMOP_CDM_v5_3.pdf => OMOP_CDM_v5_3_1.pdf (91%) diff --git a/BigQuery/OMOP CDM bigquery ddl.txt b/BigQuery/OMOP CDM bigquery ddl.txt index 837c165..581d410 100644 --- a/BigQuery/OMOP CDM bigquery ddl.txt +++ b/BigQuery/OMOP CDM bigquery ddl.txt @@ -1,3 +1,4 @@ +/*OMOP CDM v5.3.1 14June2018*/ #standardsql create table concept ( concept_id INT64 not null , @@ -9,7 +10,7 @@ create table concept ( concept_code STRING not null , valid_start_DATE DATE not null , valid_end_DATE DATE not null , - invalid_reason STRING + invalid_reason STRING ) ; @@ -46,7 +47,7 @@ create table concept_relationship ( relationship_id STRING not null, valid_start_DATE DATE not null, valid_end_DATE DATE not null, - invalid_reason STRING + invalid_reason STRING ) ; @@ -88,7 +89,7 @@ create table source_to_concept_map ( target_vocabulary_id STRING not null, valid_start_DATE DATE not null, valid_end_DATE DATE not null, - invalid_reason STRING + invalid_reason STRING ) ; @@ -107,7 +108,7 @@ create table drug_strength ( box_size INT64 , valid_start_DATE DATE not null, valid_end_DATE DATE not null, - invalid_reason STRING + invalid_reason STRING ) ; @@ -120,7 +121,7 @@ create table cohort_definition ( definition_type_concept_id INT64 not null, cohort_definition_syntax STRING , subject_concept_id INT64 not null, - cohort_initiation_DATE DATE + cohort_initiation_DATE DATE ) ; @@ -130,7 +131,7 @@ create table attribute_definition ( attribute_name STRING not null, attribute_description STRING , attribute_type_concept_id INT64 not null, - attribute_syntax STRING + attribute_syntax STRING ) ; @@ -146,7 +147,7 @@ create table cdm_source source_release_DATE DATE , cdm_release_DATE DATE , cdm_version STRING , - vocabulary_version STRING + vocabulary_version STRING ) ; @@ -159,7 +160,7 @@ create table metadata value_as_string STRING , value_as_concept_id INT64 , metadata_DATE DATE , - metadata_DATETIME DATETIME + metadata_DATETIME DATETIME ) ; @@ -185,7 +186,7 @@ create table person race_source_value STRING , race_source_concept_id INT64 , ethnicity_source_value STRING , - ethnicity_source_concept_id INT64 + ethnicity_source_concept_id INT64 ) ; @@ -219,7 +220,7 @@ create table specimen specimen_source_value STRING , unit_source_value STRING , anatomic_site_source_value STRING , - disease_status_source_value STRING + disease_status_source_value STRING ) ; @@ -233,7 +234,7 @@ create table death death_type_concept_id INT64 not null , cause_concept_id INT64 , cause_source_value STRING , - cause_source_concept_id INT64 + cause_source_concept_id INT64 ) ; @@ -257,7 +258,7 @@ create table visit_occurrence admitting_source_value STRING , discharge_to_concept_id INT64 , discharge_to_source_value STRING , - preceding_visit_occurrence_id INT64 + preceding_visit_occurrence_id INT64 ) ; @@ -265,25 +266,25 @@ create table visit_occurrence --HINT DISTRIBUTE_ON_KEY(person_id) create table visit_detail ( - visit_detail_id INT64 not null , - person_id INT64 not null , - visit_detail_concept_id INT64 not null , - visit_start_DATE DATE not null , - visit_start_DATETIME DATETIME , - visit_end_DATE DATE not null , - visit_end_DATETIME DATETIME , - visit_type_concept_id INT64 not null , - provider_id INT64 , - care_site_id INT64 , - admitting_source_concept_id INT64 , - discharge_to_concept_id INT64 , - preceding_visit_detail_id INT64 , - visit_source_value STRING , - visit_source_concept_id INT64 , - admitting_source_value STRING , - discharge_to_source_value STRING , - visit_detail_parent_id INT64 , - visit_occurrence_id INT64 not null + visit_detail_id INT64 not null , + person_id INT64 not null , + visit_detail_concept_id INT64 not null , + visit_detail_start_DATE DATE not null , + visit_detail_start_DATETIME DATETIME , + visit_detail_end_DATE DATE not null , + visit_detail_end_DATETIME DATETIME , + visit_deatil_type_concept_id INT64 not null , + provider_id INT64 , + care_site_id INT64 , + admitting_source_concept_id INT64 , + discharge_to_concept_id INT64 , + preceding_visit_detail_id INT64 , + visit_detail_source_value STRING , + visit_deatil_source_concept_id INT64 , + admitting_source_value STRING , + discharge_to_source_value STRING , + visit_detail_parent_id INT64 , + visit_occurrence_id INT64 not null ) ; @@ -304,7 +305,7 @@ create table procedure_occurrence visit_detail_id INT64 , procedure_source_value STRING , procedure_source_concept_id INT64 , - modifier_source_value STRING + modifier_source_value STRING ) ; @@ -334,7 +335,7 @@ create table drug_exposure drug_source_value STRING , drug_source_concept_id INT64 , route_source_value STRING , - dose_unit_source_value STRING + dose_unit_source_value STRING ) ; @@ -356,7 +357,7 @@ create table device_exposure visit_occurrence_id INT64 , visit_detail_id INT64 , device_source_value STRING , - device_source_concept_id INT64 + device_source_concept_id INT64 ) ; @@ -379,7 +380,7 @@ create table condition_occurrence condition_source_value STRING , condition_source_concept_id INT64 , condition_status_source_value STRING , - condition_status_concept_id INT64 + condition_status_concept_id INT64 ) ; @@ -406,7 +407,7 @@ create table measurement measurement_source_value STRING , measurement_source_concept_id INT64 , unit_source_value STRING , - value_source_value STRING + value_source_value STRING ) ; @@ -427,7 +428,7 @@ create table note provider_id INT64 , visit_occurrence_id INT64 , visit_detail_id INT64 , - note_source_value STRING + note_source_value STRING ) ; @@ -448,7 +449,7 @@ create table note_nlp nlp_DATETIME DATETIME , term_exists STRING , term_temporal STRING , - term_modifiers STRING + term_modifiers STRING ) ; @@ -473,7 +474,7 @@ create table observation observation_source_value STRING , observation_source_concept_id INT64 , unit_source_value STRING , - qualifier_source_value STRING + qualifier_source_value STRING ) ; @@ -498,7 +499,7 @@ create table location state STRING , zip STRING , county STRING , - location_source_value STRING + location_source_value STRING ) ; @@ -510,7 +511,7 @@ create table care_site place_of_service_concept_id INT64 , location_id INT64 , care_site_source_value STRING , - place_of_service_source_value STRING + place_of_service_source_value STRING ) ; @@ -529,7 +530,7 @@ create table provider specialty_source_value STRING , specialty_source_concept_id INT64 , gender_source_value STRING , - gender_source_concept_id INT64 + gender_source_concept_id INT64 ) ; @@ -553,7 +554,7 @@ create table payer_plan_period family_source_value STRING , stop_reason_concept_id INT64 , stop_reason_source_value STRING , - stop_reason_source_concept_id INT64 + stop_reason_source_concept_id INT64 ) ; @@ -581,7 +582,7 @@ create table cost revenue_code_concept_id INT64 , revenue_code_source_value STRING , drg_concept_id INT64 , - drg_source_value STRING + drg_source_value STRING ) ; @@ -606,7 +607,7 @@ create table cohort_attribute cohort_end_DATE DATE not null , attribute_definition_id INT64 not null , value_as_number FLOAT64 , - value_as_concept_id INT64 + value_as_concept_id INT64 ) ; @@ -620,7 +621,7 @@ create table drug_era drug_era_start_DATE DATE not null , drug_era_end_DATE DATE not null , drug_exposure_count INT64 , - gap_days INT64 + gap_days INT64 ) ; @@ -647,6 +648,6 @@ create table condition_era condition_concept_id INT64 not null , condition_era_start_DATE DATE not null , condition_era_end_DATE DATE not null , - condition_occurrence_count INT64 + condition_occurrence_count INT64 ) ; diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/CONDITION_OCCURRENCE.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/CONDITION_OCCURRENCE.md index fc38392..06a0638 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/CONDITION_OCCURRENCE.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/CONDITION_OCCURRENCE.md @@ -16,11 +16,11 @@ Field|Required|Type|Description | stop_reason | No | varchar(20) | The reason that the condition was no longer present, as indicated in the source data. | | provider_id | No | integer | A foreign key to the Provider in the PROVIDER table who was responsible for capturing (diagnosing) the Condition. | | visit_occurrence_id | No | integer | A foreign key to the visit in the VISIT_OCCURRENCE table during which the Condition was determined (diagnosed). | -| visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). | visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). | +| visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). | | condition_source_value | No | varchar(50) | The source code for the condition as it appears in the source data. This code is mapped to a standard condition concept in the Standardized Vocabularies and the original code is stored here for reference. | | condition_source_concept_id | No | integer | A foreign key to a Condition Concept that refers to the code used in the source. | -| condition_status_source_value | No | varchar(50) | The source code for the condition status as it appears in the source data. | -| condition_status_concept_id | No | integer | A foreign key to the predefined Concept in the Standard Vocabulary reflecting the condition status | | +| condition_status_source_value | No | varchar(50) | The source code for the condition status as it appears in the source data. | +| condition_status_concept_id | No | integer | A foreign key to the predefined Concept in the Standard Vocabulary reflecting the condition status | ### Conventions diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/DEVICE_EXPOSURE.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/DEVICE_EXPOSURE.md index 5dff22f..fdfd3a6 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/DEVICE_EXPOSURE.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/DEVICE_EXPOSURE.md @@ -16,7 +16,7 @@ Field|Required|Type|Description |visit_occurrence_id|No|integer|A foreign key to the visit in the VISIT_OCCURRENCE table during which the device was used.| |visit_detail_id|No|integer|A foreign key to the visit detail in the VISIT_DETAIL table during which the Drug Exposure was initiated.| |device_source_value|No|varchar(50)|The source code for the Device as it appears in the source data. This code is mapped to a standard Device Concept in the Standardized Vocabularies and the original code is stored here for reference.| -|device_source_ concept_id|No|integer|A foreign key to a Device Concept that refers to the code used in the source.| +|device_source_concept_id|No|integer|A foreign key to a Device Concept that refers to the code used in the source.| ### Conventions diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/NOTE_NLP.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/NOTE_NLP.md index 0d7523f..be71359 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/NOTE_NLP.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/NOTE_NLP.md @@ -12,8 +12,8 @@ note_nlp_concept_id | No | integer | A foreign key to the predefined Concept i note_nlp_source_concept_id | No | integer | A foreign key to a Concept that refers to the code in the source vocabulary used by the NLP system nlp_system | No | varchar(250) | Name and version of the NLP system that extracted the term.Useful for data provenance. nlp_date | Yes | date | The date of the note processing.Useful for data provenance. -nlp_date_time | No | datetime | The date and time of the note processing. Useful for data provenance. -term_exists | No | varchar(1) | A summary modifier that signifies presence or absence of the term for a given patient. Useful for quick querying. * +nlp_datetime | No | datetime | The date and time of the note processing. Useful for data provenance. +term_exists | No | varchar(1) | A summary modifier that signifies presence or absence of the term for a given patient. Useful for quick querying. term_temporal | No | varchar(50) | An optional time modifier associated with the extracted term. (for now “past” or “present” only). Standardize it later. term_modifiers | No | varchar(2000) | A compact description of all the modifiers of the specific term extracted by the NLP system. (e.g. “son has rash” ? “negated=no,subject=family, certainty=undef,conditional=false,general=false”). diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/Standardized-Clinical-Data-Tables.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/Standardized-Clinical-Data-Tables.md index 50e95cd..01469c2 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/Standardized-Clinical-Data-Tables.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedClinicalDataTables/Standardized-Clinical-Data-Tables.md @@ -3,6 +3,7 @@ [SPECIMEN](https://github.com/OHDSI/CommonDataModel/wiki/SPECIMEN) [DEATH](https://github.com/OHDSI/CommonDataModel/wiki/DEATH) [VISIT_OCCURRENCE](https://github.com/OHDSI/CommonDataModel/wiki/VISIT_OCCURRENCE) +[VISIT_DETAIL](https://github.com/OHDSI/CommonDataModel/wiki/VISIT_DETAIL) [PROCEDURE_OCCURRENCE](https://github.com/OHDSI/CommonDataModel/wiki/PROCEDURE_OCCURRENCE) [DRUG_EXPOSURE](https://github.com/OHDSI/CommonDataModel/wiki/DRUG_EXPOSURE) [DEVICE_EXPOSURE](https://github.com/OHDSI/CommonDataModel/wiki/DEVICE_EXPOSURE) diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/CDM_SOURCE.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/CDM_SOURCE.md index 381b017..ec049e6 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/CDM_SOURCE.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedMetadata/CDM_SOURCE.md @@ -7,7 +7,7 @@ Field|Required|Type|Description |cdm_holder|No|varchar(255)|The name of the organization responsible for the development of the CDM instance| |source_description|No|CLOB|A description of the source data origin and purpose for collection. The description may contain a summary of the period of time that is expected to be covered by this dataset.| |source_documentation_reference|No|varchar(255)|URL or other external reference to location of source documentation| -|cdm_etl _reference|No|varchar(255)|URL or other external reference to location of ETL specification documentation and ETL source code| +|cdm_etl_reference|No|varchar(255)|URL or other external reference to location of ETL specification documentation and ETL source code| |source_release_date|No|date|The date for which the source data are most current, such as the last day of data capture| |cdm_release_date|No|date|The date when the CDM was instantiated| |cdm_version|No|varchar(10)|The version of CDM used| diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md index dfe9c5e..681cbb7 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/ATTRIBUTE_DEFINITION.md @@ -1,7 +1,7 @@ The ATTRIBUTE_DEFINITION table contains records defining Attributes, or covariates, to members of a Cohort through an associated description and syntax and upon instantiation (execution of the algorithm) placed into the COHORT_ATTRIBUTE table. Attributes are derived elements that can be selected or calculated for a subject in a Cohort. The ATTRIBUTE_DEFINITION table provides a standardized structure for maintaining the rules governing the calculation of covariates for a subject in a Cohort, and can store operational programming code to instantiate the Attributes for a given Cohort within the OMOP Common Data Model. Field|Required|Type|Description -:-------------------------|:--------|:-----|:-------------------------------------- +:-------------------------|:------|:--------------|:-------------------------------------- |attribute_definition_id|Yes|integer|A unique identifier for each Attribute.| |attribute_name|Yes|varchar(255)|A short description of the Attribute.| |attribute_description|No|varchar(MAX)|A complete description of the Attribute definition| diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md index de0fd37..3c4d8e1 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/COHORT_DEFINITION.md @@ -1,14 +1,14 @@ The COHORT_DEFINITION table contains records defining a Cohort derived from the data through the associated description and syntax and upon instantiation (execution of the algorithm) placed into the COHORT table. Cohorts are a set of subjects that satisfy a given combination of inclusion criteria for a duration of time. The COHORT_DEFINITION table provides a standardized structure for maintaining the rules governing the inclusion of a subject into a cohort, and can store operational programming code to instantiate the cohort within the OMOP Common Data Model. Field|Required|Type|Description -:------------------------------|:--------|:-----|:----------------------------------------------- +:------------------------------|:--------|:--------------|:----------------------------------------------- |cohort_definition_id|Yes|integer|A unique identifier for each Cohort.| |cohort_definition_name|Yes|varchar(255)|A short description of the Cohort.| |cohort_definition_description|No|varchar(MAX)|A complete description of the Cohort definition| |definition_type_concept_id|Yes|integer|Type defining what kind of Cohort Definition the record represents and how the syntax may be executed| |cohort_definition_syntax|No|varchar(MAX)|Syntax or code to operationalize the Cohort definition| |subject_concept_id|Yes|integer|A foreign key to the Concept to which defines the domain of subjects that are members of the cohort (e.g., Person, Provider, Visit).| -|cohort_initiation_date|No|Date|A date to indicate when the Cohort was instantiated in the COHORT table| +|cohort_initiation_date|No|Date|A date to indicate when the Cohort was initiated in the COHORT table| ### Conventions * The cohort_definition_syntax does not prescribe any specific syntax or programming language. Typically, it would be any flavor SQL, a cohort definition language, or a free-text description of the algorithm. diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md index dc7916d..37cb1f3 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/CONCEPT_SYNONYM.md @@ -1,6 +1,6 @@ The CONCEPT_SYNONYM table is used to store alternate names and descriptions for Concepts. -|Field|Required|Type|Description| +Field|Required|Type|Description :---------------------|:---------|:------------|:------------------------ |concept_id|Yes|Integer|A foreign key to the Concept in the CONCEPT table.| |concept_synonym_name|Yes|varchar(1000)|The alternative name for the Concept.| diff --git a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/RELATIONSHIP.md b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/RELATIONSHIP.md index 211ad26..2f69aac 100644 --- a/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/RELATIONSHIP.md +++ b/Documentation/CommonDataModel_Wiki_Files/StandardizedVocabularies/RELATIONSHIP.md @@ -1,6 +1,6 @@ The RELATIONSHIP table provides a reference list of all types of relationships that can be used to associate any two concepts in the CONCEPT_RELATIONSHP table. -|Field|Required|Type|Description| +Field|Required|Type|Description :-----------------------|:--------|:------------|:----------------------------------------- |relationship_id|Yes|varchar(20)| The type of relationship captured by the relationship record.| |relationship_name|Yes|varchar(255)| The text that describes the relationship type.| diff --git a/Documentation/CommonDataModel_Wiki_Files/_Footer.md b/Documentation/CommonDataModel_Wiki_Files/_Footer.md index 0d10ef6..f85f272 100644 --- a/Documentation/CommonDataModel_Wiki_Files/_Footer.md +++ b/Documentation/CommonDataModel_Wiki_Files/_Footer.md @@ -1 +1 @@ -***OMOP Common Data Model v5.2 Specifications*** \ No newline at end of file +***OMOP Common Data Model v5.3 Specifications 14June2018*** \ No newline at end of file diff --git a/Impala/OMOP CDM impala ddl.txt b/Impala/OMOP CDM impala ddl.txt index 4c71553..4918e93 100644 --- a/Impala/OMOP CDM impala ddl.txt +++ b/Impala/OMOP CDM impala ddl.txt @@ -6,7 +6,7 @@ # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. @@ -51,11 +51,11 @@ -impala script to create OMOP common data model version 5.3 +impala script to create OMOP common data model version 5.3.1 -last revised: 6-Nov-2017 +last revised: 14-JUNE-2018 @@ -590,15 +590,15 @@ CREATE TABLE visit_detail visit_detail_concept_id INTEGER, - visit_start_date TIMESTAMP, + visit_detail_start_date TIMESTAMP, - visit_start_datetime TIMESTAMP, + visit_detail_start_datetime TIMESTAMP, - visit_end_date TIMESTAMP, + visit_detail_end_date TIMESTAMP, - visit_end_datetime TIMESTAMP, + visit_detail_end_datetime TIMESTAMP, - visit_type_concept_id INTEGER, + visit_detail_type_concept_id INTEGER, provider_id INTEGER, @@ -610,9 +610,9 @@ CREATE TABLE visit_detail preceding_visit_detail_id INTEGER, - visit_source_value VARCHAR(50), + visit_detail_source_value VARCHAR(50), - visit_source_concept_id INTEGER, + visit_detail_source_concept_id INTEGER, admitting_source_value VARCHAR(50), diff --git a/Netezza/OMOP CDM netezza ddl.txt b/Netezza/OMOP CDM netezza ddl.txt index a9d4ad7..f4a0954 100644 --- a/Netezza/OMOP CDM netezza ddl.txt +++ b/Netezza/OMOP CDM netezza ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -26,9 +26,9 @@ ####### # # ####### # ##### ###### # # ## ##### ### ##### -netezza script to create OMOP common data model version 5.3 +netezza script to create OMOP common data model version 5.3.1 -last revised: 8-Jan-2018 +last revised: 14-JUNE-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -348,25 +348,25 @@ DISTRIBUTE ON (person_id) --HINT DISTRIBUTE_ON_KEY(person_id) CREATE TABLE visit_detail ( - visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime DATETIME NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime DATETIME NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime DATETIME NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime DATETIME NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) DISTRIBUTE ON (person_id) ; diff --git a/OMOP_CDM_v5_3.csv b/OMOP_CDM_v5_3.csv deleted file mode 100644 index 838a229..0000000 --- a/OMOP_CDM_v5_3.csv +++ /dev/null @@ -1,407 +0,0 @@ -"field","required","type","description","table" -"condition_occurrence_id","Yes","INTEGER","A unique identifier for each Condition Occurrence event.","condition_occurrence" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is experiencing the condition. The demographic details of that Person are stored in the PERSON table.","condition_occurrence" -"condition_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Condition Concept identifier in the Standardized Vocabularies.","condition_occurrence" -"condition_start_date","Yes","DATE","The date when the instance of the Condition is recorded.","condition_occurrence" -"condition_start_datetime","No","DATETIME","The date and time when the instance of the Condition is recorded.","condition_occurrence" -"condition_end_date","No","DATE","The date when the instance of the Condition is considered to have ended.","condition_occurrence" -"condition_end_datetime","No","DATE","The date when the instance of the Condition is considered to have ended.","condition_occurrence" -"condition_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the source data from which the condition was recorded, the level of standardization, and the type of occurrence.","condition_occurrence" -"stop_reason","No","VARCHAR(20)","The reason that the condition was no longer present, as indicated in the source data.","condition_occurrence" -"provider_id","No","INTEGER","A foreign key to the Provider in the PROVIDER table who was responsible for capturing (diagnosing) the Condition.","condition_occurrence" -"visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the Condition was determined (diagnosed).","condition_occurrence" -"visit_detail_id","No","INTEGER","A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed).","condition_occurrence" -"condition_source_value","No","VARCHAR(50)","The source code for the condition as it appears in the source data. This code is mapped to a standard condition concept in the Standardized Vocabularies and the original code is stored here for reference.","condition_occurrence" -"condition_source_concept_id","No","INTEGER","A foreign key to a Condition Concept that refers to the code used in the source.","condition_occurrence" -"condition_status_source_value","No","VARCHAR(50)","The source code for the condition status as it appears in the source data.","condition_occurrence" -"condition_status_concept_id","No","INTEGER","A foreign key to the predefined Concept in the Standard Vocabulary reflecting the condition status","condition_occurrence" -"person_id","Yes","INTEGER","A foreign key identifier to the deceased person. The demographic details of that person are stored in the person table.","death" -"death_date","Yes","DATE","The date the person was deceased. If the precise date including day or month is not known or not allowed, December is used as the default month, and the last day of the month the default day.","death" -"death_datetime","No","DATETIME","The date and time the person was deceased. If the precise date including day or month is not known or not allowed, December is used as the default month, and the last day of the month the default day.","death" -"death_type_concept_id","Yes","INTEGER","A foreign key referring to the predefined concept identifier in the Standardized Vocabularies reflecting how the death was represented in the source data.","death" -"cause_concept_id","No","INTEGER","A foreign key referring to a standard concept identifier in the Standardized Vocabularies for conditions.","death" -"cause_source_value","No","VARCHAR(50)","The source code for the cause of death as it appears in the source data. This code is mapped to a standard concept in the Standardized Vocabularies and the original code is, stored here for reference.","death" -"cause_source_concept_id","No","INTEGER","A foreign key to the concept that refers to the code used in the source. Note, this variable name is abbreviated to ensure it will be allowable across database platforms.","death" -"device_exposure_id","Yes","INTEGER","A system-generated unique identifier for each Device Exposure.","device_exposure" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Device. The demographic details of that person are stored in the Person table.","device_exposure" -"device_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Device concept.","device_exposure" -"device_exposure_start_date","Yes","DATE","The date the Device or supply was applied or used.","device_exposure" -"device_exposure_start_datetime","No","DATETIME","The date and time the Device or supply was applied or used.","device_exposure" -"device_exposure_end_date","No","DATE","The date the Device or supply was removed from use.","device_exposure" -"device_exposure_end_datetime","No","DATETIME","The date and time the Device or supply was removed from use.","device_exposure" -"device_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of Device Exposure recorded. It indicates how the Device Exposure was represented in the source data.","device_exposure" -"unique_device_id","No","VARCHAR(50)","A UDI or equivalent identifying the instance of the Device used in the Person.","device_exposure" -"quantity","No","INTEGER","The number of individual Devices used for the exposure.","device_exposure" -"provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who initiated of administered the Device.","device_exposure" -"visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the device was used.","device_exposure" -"visit_detail_id","No","INTEGER","A foreign key to the visit detail in the VISIT_DETAIL table during which the Drug Exposure was initiated.","device_exposure" -"device_source_value","No","VARCHAR(50)","The source code for the Device as it appears in the source data. This code is mapped to a standard Device Concept in the Standardized Vocabularies and the original code is stored here for reference.","device_exposure" -"device_source_ concept_id","No","INTEGER","A foreign key to a Device Concept that refers to the code used in the source.","device_exposure" -"drug_exposure_id","Yes","INTEGER","A system-generated unique identifier for each Drug utilization event.","drug_exposure" -"person_id","Yes","INTEGER","A foreign key identifier to the person who is subjected to the Drug. The demographic details of that person are stored in the person table.","drug_exposure" -"drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Drug concept.","drug_exposure" -"drug_exposure_start_date","Yes","DATE","The start date for the current instance of Drug utilization. Valid entries include a start date of a prescription, the date a prescription was filled, or the date on which a Drug administration procedure was recorded.","drug_exposure" -"drug_exposure_start_datetime","No","DATETIME","The start date and time for the current instance of Drug utilization. Valid entries include a start date of a prescription, the date a prescription was filled, or the date on which a Drug administration procedure was recorded.","drug_exposure" -"drug_exposure_end_date","Yes","DATE","The end date for the current instance of Drug utilization. It is not available from all sources.","drug_exposure" -"drug_exposure_end_datetime","No","DATETIME","The end date and time for the current instance of Drug utilization. It is not available from all sources.","drug_exposure" -"verbatim_end_date","No","DATE","The known end date of a drug_exposure as provided by the source","drug_exposure" -"drug_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of Drug Exposure recorded. It indicates how the Drug Exposure was represented in the source data.","drug_exposure" -"stop_reason","No","VARCHAR(20)","The reason the Drug was stopped. Reasons include regimen completed, changed, removed, etc.","drug_exposure" -"refills","No","INTEGER","The number of refills after the initial prescription. The initial prescription is not counted, values start with 0.","drug_exposure" -"quantity","No","FLOAT","The quantity of drug as recorded in the original prescription or dispensing record.","drug_exposure" -"days_supply","No","INTEGER","The number of days of supply of the medication as recorded in the original prescription or dispensing record.","drug_exposure" -"sig","No","VARCHAR(MAX)","The directions (""signetur"") on the Drug prescription as recorded in the original prescription (and printed on the container) or dispensing record.","drug_exposure" -"route_concept_id","No","INTEGER","A foreign key to a predefined concept in the Standardized Vocabularies reflecting the route of administration.","drug_exposure" -"lot_number","No","VARCHAR(50)","An identifier assigned to a particular quantity or lot of Drug product from the manufacturer.","drug_exposure" -"provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who initiated (prescribed or administered) the Drug Exposure.","drug_exposure" -"visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Drug Exposure was initiated.","drug_exposure" -"visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Drug Exposure was initiated.","drug_exposure" -"drug_source_value","No","VARCHAR(50)","The source code for the Drug as it appears in the source data. This code is mapped to a Standard Drug concept in the Standardized Vocabularies and the original code is, stored here for reference.","drug_exposure" -"drug_source_concept_id","No","INTEGER","A foreign key to a Drug Concept that refers to the code used in the source.","drug_exposure" -"route_source_value","No","VARCHAR(50)","The information about the route of administration as detailed in the source.","drug_exposure" -"dose_unit_source_value","No","VARCHAR(50)","The information about the dose unit as detailed in the source.","drug_exposure" -"domain_concept_id_1","Yes","INTEGER","The concept representing the domain of fact one, from which the corresponding table can be inferred.","fact_relationship" -"fact_id_1","Yes","INTEGER","The unique identifier in the table corresponding to the domain of fact one.","fact_relationship" -"domain_concept_id_2","Yes","INTEGER","The concept representing the domain of fact two, from which the corresponding table can be inferred.","fact_relationship" -"fact_id_2","Yes","INTEGER","The unique identifier in the table corresponding to the domain of fact two.","fact_relationship" -"relationship_concept_id","Yes","INTEGER","A foreign key to a Standard Concept ID of relationship in the Standardized Vocabularies.","fact_relationship" -"measurement_id","Yes","INTEGER","A unique identifier for each Measurement.","measurement" -"person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the measurement was recorded. The demographic details of that Person are stored in the PERSON table.","measurement" -"measurement_concept_id","Yes","INTEGER","A foreign key to the standard measurement concept identifier in the Standardized Vocabularies.","measurement" -"measurement_date","Yes","DATE","The date of the Measurement.","measurement" -"measurement_datetime","No","DATETIME","The date and time of the Measurement. Some database systems don't have a datatype of time. To accomodate all temporal analyses, datatype datetime can be used (combining measurement_date and measurement_time [forum discussion](http://forums.ohdsi.org/t/date-time-and-datetime-problem-and-the-world-of-hours-and-1day/314))","measurement" -"measurement_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the provenance from where the Measurement record was recorded.","measurement" -"operator_concept_id","No","INTEGER","A foreign key identifier to the predefined Concept in the Standardized Vocabularies reflecting the mathematical operator that is applied to the value_as_number. Operators are <, <=, =, >=, >.","measurement" -"value_as_number","No","FLOAT","A Measurement result where the result is expressed as a numeric value.","measurement" -"value_as_concept_id","No","INTEGER","A foreign key to a Measurement result represented as a Concept from the Standardized Vocabularies (e.g., positive/negative, present/absent, low/high, etc.).","measurement" -"unit_concept_id","No","INTEGER","A foreign key to a Standard Concept ID of Measurement Units in the Standardized Vocabularies.","measurement" -"range_low","No","FLOAT","The lower limit of the normal range of the Measurement result. The lower range is assumed to be of the same unit of measure as the Measurement value.","measurement" -"range_high","No","FLOAT","The upper limit of the normal range of the Measurement. The upper range is assumed to be of the same unit of measure as the Measurement value.","measurement" -"provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for initiating or obtaining the measurement.","measurement" -"visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Measurement was recorded.","measurement" -"visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Measurement was recorded.","measurement" -"measurement_source_value","No","VARCHAR(50)","The Measurement name as it appears in the source data. This code is mapped to a Standard Concept in the Standardized Vocabularies and the original code is stored here for reference.","measurement" -"measurement_source_concept_id","No","INTEGER","A foreign key to a Concept in the Standard Vocabularies that refers to the code used in the source.","measurement" -"unit_source_value","No","VARCHAR(50)","The source code for the unit as it appears in the source data. This code is mapped to a standard unit concept in the Standardized Vocabularies and the original code is stored here for reference.","measurement" -"value_source_value","No","VARCHAR(50)","The source value associated with the content of the value_as_number or value_as_concept_id as stored in the source data.","measurement" -"note_id","Yes","INTEGER","A unique identifier for each note.","note" -"person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the Note was recorded. The demographic details of that Person are stored in the PERSON table.","note" -"note_date","Yes","DATE","The date the note was recorded.","note" -"note_datetime","No","DATETIME","The date and time the note was recorded.","note" -"note_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the type, origin or provenance of the Note.","note" -"note_class_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the HL7 LOINC Document Type Vocabulary classification of the note.","note" -"note_title","No","VARCHAR(250)","The title of the Note as it appears in the source.","note" -"note_text","Yes","VARCHAR(MAX)","The content of the Note.","note" -"encoding_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the note character encoding type","note" -"language_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the language of the note","note" -"provider_id","No","INTEGER","A foreign key to the Provider in the PROVIDER table who took the Note.","note" -"visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table when the Note was taken.","note" -"visit_detail_id","No","INTEGER","A foreign key to the Visit in the VISIT_DETAIL table when the Note was taken.","note" -"note_source_value","No","VARCHAR(50)","The source value associated with the origin of the Note","note" -"note_nlp_id","Yes","INTEGER","A unique identifier for each term extracted from a note.","note_nlp" -"note_id","Yes","INTEGER","A foreign key to the Note table note the term was extracted from.","note_nlp" -"section_concept_id","No","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies representing the section of the extracted term.","note_nlp" -"snippet","No","VARCHAR(250)","A small window of text surrounding the term.","note_nlp" -"offset","No","VARCHAR(50)","Character offset of the extracted term in the input note.","note_nlp" -"lexical_variant","Yes","VARCHAR(250)","Raw text extracted from the NLP tool.","note_nlp" -"note_nlp_concept_id","No","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the normalized concept for the extracted term. Domain of the term is represented as part of the Concept table.","note_nlp" -"note_nlp_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code in the source vocabulary used by the NLP system","note_nlp" -"nlp_system","No","VARCHAR(250)","Name and version of the NLP system that extracted the term.Useful for data provenance.","note_nlp" -"nlp_date","Yes","DATE","The date of the note processing.Useful for data provenance.","note_nlp" -"nlp_date_time","No","DATETIME","The date and time of the note processing. Useful for data provenance.","note_nlp" -"term_exists","No","VARCHAR(1)","A summary modifier that signifies presence or absence of the term for a given patient. Useful for quick querying. *","note_nlp" -"term_temporal","No","VARCHAR(50)","An optional time modifier associated with the extracted term. (for now “past” or “present” only). Standardize it later.","note_nlp" -"term_modifiers","No","VARCHAR(2000)","A compact description of all the modifiers of the specific term extracted by the NLP system. (e.g. “son has rash” ? “negated=no,subject=family, certainty=undef,conditional=false,general=false”).","note_nlp" -"observation_id","Yes","INTEGER","A unique identifier for each observation.","observation" -"person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the observation was recorded. The demographic details of that Person are stored in the PERSON table.","observation" -"observation_concept_id","Yes","INTEGER","A foreign key to the standard observation concept identifier in the Standardized Vocabularies.","observation" -"observation_date","Yes","DATE","The date of the observation.","observation" -"observation_datetime","No","DATETIME","The date and time of the observation.","observation" -"observation_type_concept_id","Yes","INTEGER","A foreign key to the predefined concept identifier in the Standardized Vocabularies reflecting the type of the observation.","observation" -"value_as_number","No","FLOAT","The observation result stored as a number. This is applicable to observations where the result is expressed as a numeric value.","observation" -"value_as_string","No","VARCHAR(60)","The observation result stored as a string. This is applicable to observations where the result is expressed as verbatim text.","observation" -"value_as_concept_id","No","INTEGER","A foreign key to an observation result stored as a Concept ID. This is applicable to observations where the result can be expressed as a Standard Concept from the Standardized Vocabularies (e.g., positive/negative, present/absent, low/high, etc.).","observation" -"qualifier_concept_id","No","INTEGER","A foreign key to a Standard Concept ID for a qualifier (e.g., severity of drug-drug interaction alert)","observation" -"unit_concept_id","No","INTEGER","A foreign key to a Standard Concept ID of measurement units in the Standardized Vocabularies.","observation" -"provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for making the observation.","observation" -"visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the observation was recorded.","observation" -"visit_detail_id","No","INTEGER","A foreign key to the visit in the VISIT_DETAIL table during which the observation was recorded.","observation" -"observation_source_value","No","VARCHAR(50)","The observation code as it appears in the source data. This code is mapped to a Standard Concept in the Standardized Vocabularies and the original code is, stored here for reference.","observation" -"observation_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","observation" -"unit_source_value","No","VARCHAR(50)","The source code for the unit as it appears in the source data. This code is mapped to a standard unit concept in the Standardized Vocabularies and the original code is, stored here for reference.","observation" -"qualifier_source_value","No","VARCHAR(50)","The source value associated with a qualifier to characterize the observation","observation" -"observation_period_id","Yes","INTEGER","A unique identifier for each observation period.","observation_period" -"person_id","Yes","INTEGER","A foreign key identifier to the person for whom the observation period is defined. The demographic details of that person are stored in the person table.","observation_period" -"observation_period_start_date","Yes","DATE","The start date of the observation period for which data are available from the data source.","observation_period" -"observation_period_end_date","Yes","DATE","The end date of the observation period for which data are available from the data source.","observation_period" -"period_type_concept_id","Yes","INTEGER","A foreign key identifier to the predefined concept in the Standardized Vocabularies reflecting the source of the observation period information","observation_period" -"person_id","Yes","INTEGER","A unique identifier for each person.","person" -"gender_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique gender of the person.","person" -"year_of_birth","Yes","INTEGER","The year of birth of the person. For data sources with date of birth, the year is extracted. For data sources where the year of birth is not available, the approximate year of birth is derived based on any age group categorization available.","person" -"month_of_birth","No","INTEGER","The month of birth of the person. For data sources that provide the precise date of birth, the month is extracted and stored in this field.","person" -"day_of_birth","No","INTEGER","The day of the month of birth of the person. For data sources that provide the precise date of birth, the day is extracted and stored in this field.","person" -"birth_datetime","No","DATETIME","The date and time of birth of the person.","person" -"race_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique race of the person.","person" -"ethnicity_concept_id","Yes","INTEGER","A foreign key that refers to the standard concept identifier in the Standardized Vocabularies for the ethnicity of the person.","person" -"location_id","No","INTEGER","A foreign key to the place of residency for the person in the location table, where the detailed address information is stored.","person" -"provider_id","No","INTEGER","A foreign key to the primary care provider the person is seeing in the provider table.","person" -"care_site_id","No","INTEGER","A foreign key to the site of primary care in the care_site table, where the details of the care site are stored.","person" -"person_source_value","No","VARCHAR(50)","An (encrypted) key derived from the person identifier in the source data. This is necessary when a use case requires a link back to the person data at the source dataset.","person" -"gender_source_value","No","VARCHAR(50)","The source code for the gender of the person as it appears in the source data. The person’s gender is mapped to a standard gender concept in the Standardized Vocabularies; the original value is stored here for reference.","person" -"gender_source_concept_id","No","INTEGER","A foreign key to the gender concept that refers to the code used in the source.","person" -"race_source_value","No","VARCHAR(50)","The source code for the race of the person as it appears in the source data. The person race is mapped to a standard race concept in the Standardized Vocabularies and the original value is stored here for reference.","person" -"race_source_concept_id","No","INTEGER","A foreign key to the race concept that refers to the code used in the source.","person" -"ethnicity_source_value","No","VARCHAR(50)","The source code for the ethnicity of the person as it appears in the source data. The person ethnicity is mapped to a standard ethnicity concept in the Standardized Vocabularies and the original code is, stored here for reference.","person" -"ethnicity_source_concept_id","No","INTEGER","A foreign key to the ethnicity concept that refers to the code used in the source.","person" -"procedure_occurrence_id","Yes","INTEGER","A system-generated unique identifier for each Procedure Occurrence.","procedure_occurrence" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Procedure. The demographic details of that Person are stored in the PERSON table.","procedure_occurrence" -"procedure_concept_id","Yes","INTEGER","A foreign key that refers to a standard procedure Concept identifier in the Standardized Vocabularies.","procedure_occurrence" -"procedure_date","Yes","DATE","The date on which the Procedure was performed.","procedure_occurrence" -"procedure_datetime","No","DATETIME","The date and time on which the Procedure was performed.","procedure_occurrence" -"procedure_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the procedure record is derived.","procedure_occurrence" -"modifier_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for a modifier to the Procedure (e.g. bilateral)","procedure_occurrence" -"quantity","No","INTEGER","The quantity of procedures ordered or administered.","procedure_occurrence" -"provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for carrying out the procedure.","procedure_occurrence" -"visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Procedure was carried out.","procedure_occurrence" -"visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Procedure was carried out.","procedure_occurrence" -"procedure_source_value","No","VARCHAR(50)","The source code for the Procedure as it appears in the source data. This code is mapped to a standard procedure Concept in the Standardized Vocabularies and the original code is, stored here for reference. Procedure source codes are typically ICD-9-Proc, CPT-4, HCPCS or OPCS-4 codes.","procedure_occurrence" -"procedure_source_concept_id","No","INTEGER","A foreign key to a Procedure Concept that refers to the code used in the source.","procedure_occurrence" -"modifier_source_value","No","VARCHAR(50)","The source code for the qualifier as it appears in the source data.","procedure_occurrence" -"specimen_id","Yes","INTEGER","A unique identifier for each specimen.","specimen" -"person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the Specimen is recorded.","specimen" -"specimen_concept_id","Yes","INTEGER","A foreign key referring to a Standard Concept identifier in the Standardized Vocabularies for the Specimen.","specimen" -"specimen_type_concept_id","Yes","INTEGER","A foreign key referring to the Concept identifier in the Standardized Vocabularies reflecting the system of record from which the Specimen was represented in the source data.","specimen" -"specimen_date","Yes","DATE","The date the specimen was obtained from the Person.","specimen" -"specimen_datetime","No","DATETIME","The date and time on the date when the Specimen was obtained from the person.","specimen" -"quantity","No","FLOAT","The amount of specimen collection from the person during the sampling procedure.","specimen" -"unit_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the Unit associated with the numeric quantity of the Specimen collection.","specimen" -"anatomic_site_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the anatomic location of specimen collection.","specimen" -"disease_status_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the Disease Status of specimen collection.","specimen" -"specimen_source_id","No","VARCHAR(50)","The Specimen identifier as it appears in the source data.","specimen" -"specimen_source_value","No","VARCHAR(50)","The Specimen value as it appears in the source data. This value is mapped to a Standard Concept in the Standardized Vocabularies and the original code is, stored here for reference.","specimen" -"unit_source_value","No","VARCHAR(50)","The information about the Unit as detailed in the source.","specimen" -"anatomic_site_source_value","No","VARCHAR(50)","The information about the anatomic site as detailed in the source.","specimen" -"disease_status_source_value","No","VARCHAR(50)","The information about the disease status as detailed in the source.","specimen" -"visit_detail_id","Yes","INTEGER","A unique identifier for each Person's visit or encounter at a healthcare provider.","visit_detail" -"person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that Person are stored in the PERSON table.","visit_detail" -"visit_concept_id","Yes","INTEGER","A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.","visit_detail" -"visit_start_date","Yes","DATE","The start date of the visit.","visit_detail" -"visit_start_datetime","No","DATETIME","The date and time of the visit started.","visit_detail" -"visit_end_date","Yes","DATE","The end date of the visit. If this is a one-day visit the end date should match the start date.","visit_detail" -"visit_end_datetime","No","DATETIME","The date and time of the visit end.","visit_detail" -"visit_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the visit record is derived.","visit_detail" -"provider_id","No","INTEGER","A foreign key to the provider in the provider table who was associated with the visit.","visit_detail" -"care_site_id","No","INTEGER","A foreign key to the care site in the care site table that was visited.","visit_detail" -"visit_source_value","No","STRING(50)","The source code for the visit as it appears in the source data.","visit_detail" -"visit_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","visit_detail" -"admitting_source_value","Varchar(50)","NO","The source code for the admitting source as it appears in the source data.","visit_detail" -"admitting_source_concept_id","Integer","NO","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting source for a visit.","visit_detail" -"discharge_to_source_value","Varchar(50)","NO","The source code for the discharge disposition as it appears in the source data.","visit_detail" -"discharge_to_concept_id","Integer","NO","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge disposition for a visit.","visit_detail" -"preceding_visit_detail_id","Integer","NO","A foreign key to the VISIT_DETAIL table of the visit immediately preceding this visit","visit_detail" -"visit_detail_parent_id","Integer","NO","A foreign key to the VISIT_DETAIL table record to represent the immediate parent visit-detail record.","visit_detail" -"visit_occurrence_id","Integer","YES","A foreign key that refers to the record in the VISIT_OCCURRENCE table. This is a required field, because for every visit_detail is a child of visit_occurrence and cannot exist without a corresponding parent record in visit_occurrence.","visit_detail" -"visit_occurrence_id","Yes","INTEGER","A unique identifier for each Person's visit or encounter at a healthcare provider.","visit_occurrence" -"person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that Person are stored in the PERSON table.","visit_occurrence" -"visit_concept_id","Yes","INTEGER","A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.","visit_occurrence" -"visit_start_date","Yes","DATE","The start date of the visit.","visit_occurrence" -"visit_start_datetime","No","DATETIME","The date and time of the visit started.","visit_occurrence" -"visit_end_date","Yes","DATE","The end date of the visit. If this is a one-day visit the end date should match the start date.","visit_occurrence" -"visit_end_datetime","No","DATETIME","The date and time of the visit end.","visit_occurrence" -"visit_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the visit record is derived.","visit_occurrence" -"provider_id","No","INTEGER","A foreign key to the provider in the provider table who was associated with the visit.","visit_occurrence" -"care_site_id","No","INTEGER","A foreign key to the care site in the care site table that was visited.","visit_occurrence" -"visit_source_value","No","VARCHAR(50)","The source code for the visit as it appears in the source data.","visit_occurrence" -"visit_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","visit_occurrence" -"admitting_source_concept_id","integer","NO","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting source for a visit.","visit_occurrence" -"admitting_source_value","varchar(50)","NO","The source code for the admitting source as it appears in the source data.","visit_occurrence" -"discharge_to_concept_id","integer","NO","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge disposition for a visit.","visit_occurrence" -"discharge_to_source_value","varchar(50)","NO","The source code for the discharge disposition as it appears in the source data.","visit_occurrence" -"preceding_visit_occurrence_id","integer","NO","A foreign key to the VISIT_OCCURRENCE table of the visit immediately preceding this visit","visit_occurrence" -"cohort_definition_id","Yes","INTEGER","A foreign key to a record in the COHORT_DEFINITION table containing relevant Cohort Definition information.","cohort" -"subject_id","Yes","INTEGER","A foreign key to the subject in the cohort. These could be referring to records in the PERSON, PROVIDER, VISIT_OCCURRENCE table.","cohort" -"cohort_start_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit first match.","cohort" -"cohort_end_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit no longer match or the Cohort membership was terminated.","cohort" -"cohort_definition_id","Yes","INTEGER","A foreign key to a record in the [COHORT_DEFINITION](https://github.com/OHDSI/CommonDataModel/wiki/COHORT_DEFINITION) table containing relevant Cohort Definition information.","cohort_attribute" -"subject_id","Yes","INTEGER","A foreign key to the subject in the Cohort. These could be referring to records in the PERSON, PROVIDER, VISIT_OCCURRENCE table.","cohort_attribute" -"cohort_start_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit first match.","cohort_attribute" -"cohort_end_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit no longer match or the Cohort membership was terminated.","cohort_attribute" -"attribute_definition_id","Yes","INTEGER","A foreign key to a record in the [ATTRIBUTE_DEFINITION](https://github.com/OHDSI/CommonDataModel/wiki/ATTRIBUTE_DEFINITION) table containing relevant Attribute Definition information.","cohort_attribute" -"value_as_number","No","FLOAT","The attribute result stored as a number. This is applicable to attributes where the result is expressed as a numeric value.","cohort_attribute" -"value_as_concept_id","No","INTEGER","The attribute result stored as a Concept ID. This is applicable to attributes where the result is expressed as a categorical value.","cohort_attribute" -"condition_era_id","Yes","INTEGER","A unique identifier for each Condition Era.","condition_era" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is experiencing the Condition during the Condition Era. The demographic details of that Person are stored in the PERSON table.","condition_era" -"condition_concept_id","Yes","INTEGER","A foreign key that refers to a standard Condition Concept identifier in the Standardized Vocabularies.","condition_era" -"condition_era_start_date","Yes","DATE","The start date for the Condition Era constructed from the individual instances of Condition Occurrences. It is the start date of the very first chronologically recorded instance of the condition.","condition_era" -"condition_era_end_date","Yes","DATE","The end date for the Condition Era constructed from the individual instances of Condition Occurrences. It is the end date of the final continuously recorded instance of the Condition.","condition_era" -"condition_occurrence_count","No","INTEGER","The number of individual Condition Occurrences used to construct the condition era.","condition_era" -"dose_era_id","Yes","INTEGER","A unique identifier for each Dose Era.","dose_era" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the drug during the drug era. The demographic details of that Person are stored in the PERSON table.","dose_era" -"drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the active Ingredient Concept.","dose_era" -"unit_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the unit concept.","dose_era" -"dose_value","Yes","FLOAT","The numeric value of the dose.","dose_era" -"dose_era_start_date","Yes","DATE","The start date for the drug era constructed from the individual instances of drug exposures. It is the start date of the very first chronologically recorded instance of utilization of a drug.","dose_era" -"dose_era_end_date","Yes","DATE","The end date for the drug era constructed from the individual instance of drug exposures. It is the end date of the final continuously recorded instance of utilization of a drug.","dose_era" -"drug_era_id","Yes","INTEGER","A unique identifier for each Drug Era.","drug_era" -"person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Drug during the fDrug Era. The demographic details of that Person are stored in the PERSON table.","drug_era" -"drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Ingredient Concept.","drug_era" -"drug_era_start_date","Yes","DATE","The start date for the Drug Era constructed from the individual instances of Drug Exposures. It is the start date of the very first chronologically recorded instance of conutilization of a Drug.","drug_era" -"drug_era_end_date","Yes","DATE","The end date for the drug era constructed from the individual instance of drug exposures. It is the end date of the final continuously recorded instance of utilization of a drug.","drug_era" -"drug_exposure_count","No","INTEGER","The number of individual Drug Exposure occurrences used to construct the Drug Era.","drug_era" -"gap_days","No","INTEGER","The number of days that are not covered by DRUG_EXPOSURE records that were used to make up the era record.","drug_era" -"cost_id","Yes","INTEGER","A unique identifier for each COST record.","cost" -"cost_event_id","Yes","INTEGER","A foreign key identifier to the event (e.g. Measurement, Procedure, Visit, Drug Exposure, etc) record for which cost data are recorded.","cost" -"cost_domain_id","Yes","VARCHAR(20)","The concept representing the domain of the cost event, from which the corresponding table can be inferred that contains the entity for which cost information is recorded.","cost" -"cost_type_concept_id","Yes","INTEGER","A foreign key identifier to a concept in the CONCEPT table for the provenance or the source of the COST data: Calculated from insurance claim information, provider revenue, calculated from cost-to-charge ratio, reported from accounting database, etc.","cost" -"currency_concept_id","No","INTEGER","A foreign key identifier to the concept representing the 3-letter code used to delineate international currencies, such as USD for US Dollar.","cost" -"total_charge","No","FLOAT","The total amount charged by some provider of goods or services (e.g. hospital, physician pharmacy, dme provider) to payers (insurance companies, the patient).","cost" -"total_cost","No","FLOAT","The cost incurred by the provider of goods or services.","cost" -"total_paid","No","FLOAT","The total amount actually paid from all payers for goods or services of the provider.","cost" -"paid_by_payer","No","FLOAT","The amount paid by the Payer for the goods or services.","cost" -"paid_by_patient","No","FLOAT","The total amount paid by the Person as a share of the expenses.","cost" -"paid_patient_copay","No","FLOAT","The amount paid by the Person as a fixed contribution to the expenses.","cost" -"paid_patient_coinsurance","No","FLOAT","The amount paid by the Person as a joint assumption of risk. Typically, this is a percentage of the expenses defined by the Payer Plan after the Person's deductible is exceeded.","cost" -"paid_patient_deductible","No","FLOAT","The amount paid by the Person that is counted toward the deductible defined by the Payer Plan. paid_patient_deductible does contribute to the paid_by_patient variable.","cost" -"paid_by_primary","No","FLOAT","The amount paid by a primary Payer through the coordination of benefits.","cost" -"paid_ingredient_cost","No","FLOAT","The amount paid by the Payer to a pharmacy for the drug, excluding the amount paid for dispensing the drug. paid_ingredient_cost contributes to the paid_by_payer field if this field is populated with a nonzero value.","cost" -"paid_dispensing_fee","No","FLOAT","The amount paid by the Payer to a pharmacy for dispensing a drug, excluding the amount paid for the drug ingredient. paid_dispensing_fee contributes to the paid_by_payer field if this field is populated with a nonzero value.","cost" -"payer_plan_period_id","No","INTEGER","A foreign key to the PAYER_PLAN_PERIOD table, where the details of the Payer, Plan and Family are stored. Record the payer_plan_id that relates to the payer who contributed to the paid_by_payer field.","cost" -"amount_allowed","No","FLOAT","The contracted amount agreed between the payer and provider.","cost" -"revenue_code_concept_id","No","INTEGER","A foreign key referring to a Standard Concept ID in the Standardized Vocabularies for Revenue codes.","cost" -"revenue_code_source_value","No","VARCHAR(50)","The source code for the Revenue code as it appears in the source data, stored here for reference.","cost" -"drg_concept_id","No","INTEGER","A foreign key to the predefined concept in the DRG Vocabulary reflecting the DRG for a visit.","cost" -"drg_source_value","No","VARCHAR(3)","The 3-digit DRG source code as it appears in the source data.","cost" -"payer_plan_period_id","Yes","INTEGER","A identifier for each unique combination of payer, plan, family code and time span.","payer_plan_period" -"person_id","Yes","INTEGER","A foreign key identifier to the Person covered by the payer. The demographic details of that Person are stored in the PERSON table.","payer_plan_period" -"payer_plan_period_start_date","Yes","DATE","The start date of the payer plan period.","payer_plan_period" -"payer_plan_period_end_date","Yes","DATE","The end date of the payer plan period.","payer_plan_period" -"payer_concept_id","No","INTEGER","A foreign key that refers to a standard Payer concept identifier in the Standarized Vocabularies","payer_plan_period" -"payer_source_value","No","VARCHAR(50)","The source code for the payer as it appears in the source data.","payer_plan_period" -"payer_source_concept_id","No","INTEGER","A foreign key to a payer concept that refers to the code used in the source.","payer_plan_period" -"plan_concept_id","No","INTEGER","A foreign key that refers to a standard plan concept identifier that represents the health benefit plan in the Standardized Vocabularies","payer_plan_period" -"plan_source_value","No","VARCHAR(50)","The source code for the Person's health benefit plan as it appears in the source data.","payer_plan_period" -"plan_source_concept_id","No","INTEGER","A foreign key to a plan concept that refers to the plan code used in the source data.","payer_plan_period" -"sponsor_concept_id","No","INTEGER","A foreign key that refers to a concept identifier that represents the sponsor in the Standardized Vocabularies.","payer_plan_period" -"sponsor_source_value","No","VARCHAR(50)","The source code for the Person's sponsor of the health plan as it appears in the source data.","payer_plan_period" -"sponsor_source_concept_id","No","INTEGER","A foreign key to a sponsor concept that refers to the sponsor code used in the source data.","payer_plan_period" -"family_source_value","No","VARCHAR(50)","The source code for the Person's family as it appears in the source data.","payer_plan_period" -"stop_reason_concept_id","No","INTEGER","A foreign key that refers to a standard termination reason that represents the reason for the termination in the Standardized Vocabularies.","payer_plan_period" -"stop_reason_source_value","No","VARCHAR(50)","The reason for stop-coverage as it appears in the source data.","payer_plan_period" -"stop_reason_source_concept_id","No","INTEGER","A foreign key to a stop-coverage concept that refers to the code used in the source.","payer_plan_period" -"care_site_id","Yes","INTEGER","A unique identifier for each Care Site.","care_site" -"care_site_name","No","VARCHAR(255)","The verbatim description or name of the Care Site as in data source","care_site" -"place_of_service_concept_id","No","INTEGER","A foreign key that refers to a Place of Service Concept ID in the Standardized Vocabularies.","care_site" -"location_id","No","INTEGER","A foreign key to the geographic Location in the LOCATION table, where the detailed address information is stored.","care_site" -"care_site_source_value","No","VARCHAR(50)","The identifier for the Care Site in the source data, stored here for reference.","care_site" -"place_of_service_source_value","No","VARCHAR(50)","The source code for the Place of Service as it appears in the source data, stored here for reference.","care_site" -"location_id","Yes","INTEGER","A unique identifier for each geographic location.","location" -"address_1","No","VARCHAR(50)","The address field 1, typically used for the street address, as it appears in the source data.","location" -"address_2","No","VARCHAR(50)","The address field 2, typically used for additional detail such as buildings, suites, floors, as it appears in the source data.","location" -"city","No","VARCHAR(50)","The city field as it appears in the source data.","location" -"state","No","VARCHAR(2)","The state field as it appears in the source data.","location" -"zip","No","VARCHAR(9)","The zip or postal code.","location" -"county","No","VARCHAR(20)","The county.","location" -"location_source_value","No","VARCHAR(50)","The verbatim information that is used to uniquely identify the location as it appears in the source data.","location" -"provider_id","Yes","INTEGER","A unique identifier for each Provider.","provider" -"provider_name","No","VARCHAR(255)","A description of the Provider.","provider" -"npi","No","VARCHAR(20)","The National Provider Identifier (NPI) of the provider.","provider" -"dea","No","VARCHAR(20)","The Drug Enforcement Administration (DEA) number of the provider.","provider" -"specialty_concept_id","No","INTEGER","A foreign key to a Standard Specialty Concept ID in the Standardized Vocabularies.","provider" -"care_site_id","No","INTEGER","A foreign key to the main Care Site where the provider is practicing.","provider" -"year_of_birth","No","INTEGER","The year of birth of the Provider.","provider" -"gender_concept_id","No","INTEGER","The gender of the Provider.","provider" -"provider_source_value","No","VARCHAR(50)","The identifier used for the Provider in the source data, stored here for reference.","provider" -"specialty_source_value","No","VARCHAR(50)","The source code for the Provider specialty as it appears in the source data, stored here for reference.","provider" -"specialty_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","provider" -"gender_source_value","No","VARCHAR(50)","The gender code for the Provider as it appears in the source data, stored here for reference.","provider" -"gender_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","provider" -"cdm_source_name","Yes","VARCHAR(255)","The full name of the source","cdm_source" -"cdm_source_abbreviation","No","VARCHAR(25)","An abbreviation of the name","cdm_source" -"cdm_holder","No","VARCHAR(255)","The name of the organization responsible for the development of the CDM instance","cdm_source" -"source_description","No","CLOB","A description of the source data origin and purpose for collection. The description may contain a summary of the period of time that is expected to be covered by this dataset.","cdm_source" -"source_documentation_reference","No","VARCHAR(255)","URL or other external reference to location of source documentation","cdm_source" -"cdm_etl _reference","No","VARCHAR(255)","URL or other external reference to location of ETL specification documentation and ETL source code","cdm_source" -"source_release_date","No","DATE","The date for which the source data are most current, such as the last day of data capture","cdm_source" -"cdm_release_date","No","DATE","The date when the CDM was instantiated","cdm_source" -"cdm_version","No","VARCHAR(10)","The version of CDM used","cdm_source" -"vocabulary_version","No","VARCHAR(20)","The version of the vocabulary used","cdm_source" -"metadata_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Metadata Concept identifier in the Standardized Vocabularies.","metadata" -"metadata_type_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Type Concept identifier in the Standardized Vocabularies.","metadata" -"name","Yes","VARCHAR(250)","The name of the Concept stored in metadata_concept_id or a description of the data being stored.","metadata" -"value_as_string","No","NVARCHAR","The metadata value stored as a string.","metadata" -"value_as_concept_id","No","INTEGER","A foreign key to a metadata value stored as a Concept ID.","metadata" -"metadata date","No","DATE","The date associated with the metadata","metadata" -"metadata_datetime","No","DATETIME","The date and time associated with the metadata","metadata" -"attribute_definition_id","Yes","INTEGER","A unique identifier for each Attribute.","attribute_definition" -"attribute_name","Yes","VARCHAR(255)","A short description of the Attribute.","attribute_definition" -"attribute_description","No","VARCHAR(MAX)","A complete description of the Attribute definition","attribute_definition" -"attribute_type_concept_id","Yes","INTEGER","Type defining what kind of Attribute Definition the record represents and how the syntax may be executed","attribute_definition" -"attribute_syntax","No","VARCHAR(MAX)","Syntax or code to operationalize the Attribute definition","attribute_definition" -"cohort_definition_id","Yes","INTEGER","A unique identifier for each Cohort.","cohort_definition" -"cohort_definition_name","Yes","VARCHAR(255)","A short description of the Cohort.","cohort_definition" -"cohort_definition_description","No","VARCHAR(MAX)","A complete description of the Cohort definition","cohort_definition" -"definition_type_concept_id","Yes","INTEGER","Type defining what kind of Cohort Definition the record represents and how the syntax may be executed","cohort_definition" -"cohort_definition_syntax","No","VARCHAR(MAX)","Syntax or code to operationalize the Cohort definition","cohort_definition" -"subject_concept_id","Yes","INTEGER","A foreign key to the Concept to which defines the domain of subjects that are members of the cohort (e.g., Person, Provider, Visit).","cohort_definition" -"cohort_instantiation_date","No","DATE","A date to indicate when the Cohort was instantiated in the COHORT table","cohort_definition" -"concept_id","Yes","INTEGER","A unique identifier for each Concept across all domains.","concept" -"concept_name","Yes","VARCHAR(255)","An unambiguous, meaningful and descriptive name for the Concept.","concept" -"domain_id","Yes","VARCHAR(20)","A foreign key to the [DOMAIN](https://github.com/OHDSI/CommonDataModel/wiki/DOMAIN) table the Concept belongs to.","concept" -"vocabulary_id","Yes","VARCHAR(20)","A foreign key to the [VOCABULARY](https://github.com/OHDSI/CommonDataModel/wiki/VOCABULARY) table indicating from which source the Concept has been adapted.","concept" -"concept_class_id","Yes","VARCHAR(20)","The attribute or concept class of the Concept. Examples are 'Clinical Drug', 'Ingredient', 'Clinical Finding' etc.","concept" -"standard_concept","No","VARCHAR(1)","This flag determines where a Concept is a Standard Concept, i.e. is used in the data, a Classification Concept, or a non-standard Source Concept. The allowables values are 'S' (Standard Concept) and 'C' (Classification Concept), otherwise the content is NULL.","concept" -"concept_code","Yes","VARCHAR(50)","The concept code represents the identifier of the Concept in the source vocabulary, such as SNOMED-CT concept IDs, RxNorm RXCUIs etc. Note that concept codes are not unique across vocabularies.","concept" -"valid_start_date","Yes","DATE","The date when the Concept was first recorded. The default value is 1-Jan-1970, meaning, the Concept has no (known) date of inception.","concept" -"valid_end_date","Yes","DATE","The date when the Concept became invalid because it was deleted or superseded (updated) by a new concept. The default value is 31-Dec-2099, meaning, the Concept is valid until it becomes deprecated.","concept" -"invalid_reason","No","VARCHAR(1)","Reason the Concept was invalidated. Possible values are D (deleted), U (replaced with an update) or NULL when valid_end_date has the default value.","concept" -"ancestor_concept_id","Yes","INTEGER","A foreign key to the concept in the concept table for the higher-level concept that forms the ancestor in the relationship.","concept_ancestor" -"descendant_concept_id","Yes","INTEGER","A foreign key to the concept in the concept table for the lower-level concept that forms the descendant in the relationship.","concept_ancestor" -"min_levels_of_separation","Yes","INTEGER","The minimum separation in number of levels of hierarchy between ancestor and descendant concepts. This is an attribute that is used to simplify hierarchic analysis.","concept_ancestor" -"max_levels_of_separation","Yes","INTEGER","The maximum separation in number of levels of hierarchy between ancestor and descendant concepts. This is an attribute that is used to simplify hierarchic analysis.","concept_ancestor" -"concept_class_id","Yes","VARCHAR(20)","A unique key for each class.","concept_class" -"concept_class_name","Yes","VARCHAR(255)","The name describing the Concept Class, e.g. ""Clinical Finding"", ""Ingredient"", etc.","concept_class" -"concept_class_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table for the unique Concept Class the record belongs to.","concept_class" -"concept_id_1","Yes","INTEGER","A foreign key to a Concept in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table associated with the relationship. Relationships are directional, and this field represents the source concept designation.","concept_relationship" -"concept_id_2","Yes","INTEGER","A foreign key to a Concept in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table associated with the relationship. Relationships are directional, and this field represents the destination concept designation.","concept_relationship" -"relationship_id","Yes","VARCHAR(20)","A unique identifier to the type or nature of the Relationship as defined in the [RELATIONSHIP](https://github.com/OHDSI/CommonDataModel/wiki/RELATIONSHIP) table.","concept_relationship" -"valid_start_date","Yes","DATE","The date when the instance of the Concept Relationship is first recorded.","concept_relationship" -"valid_end_date","Yes","DATE","The date when the Concept Relationship became invalid because it was deleted or superseded (updated) by a new relationship. Default value is 31-Dec-2099.","concept_relationship" -"invalid_reason","No","VARCHAR(1)","Reason the relationship was invalidated. Possible values are 'D' (deleted), 'U' (replaced with an update) or NULL when valid_end_date has the default value.","concept_relationship" -"concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table.","concept_synonym" -"concept_synonym_name","Yes","VARCHAR(1000)","The alternative name for the Concept.","concept_synonym" -"language_concept_id","Yes","INTEGER","A foreign key to a Concept representing the language.","concept_synonym" -"domain_id","Yes","VARCHAR(20)","A unique key for each domain.","domain" -"domain_name","Yes","VARCHAR(255)","The name describing the Domain, e.g. ""Condition"", ""Procedure"", ""Measurement"" etc.","domain" -"domain_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table for the unique Domain Concept the Domain record belongs to.","domain" -"drug_concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for Branded Drug or Clinical Drug Concept.","drug_strength" -"ingredient_concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table, representing the identifier for drug Ingredient Concept contained within the drug product.","drug_strength" -"amount_value","No","FLOAT","The numeric value associated with the amount of active ingredient contained within the product.","drug_strength" -"amount_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the Unit for the absolute amount of active ingredient.","drug_strength" -"numerator_value","No","FLOAT","The numeric value associated with the concentration of the active ingredient contained in the product","drug_strength" -"numerator_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the numerator Unit for the concentration of active ingredient.","drug_strength" -"denominator_value","No","FLOAT","The amount of total liquid (or other divisible product, such as ointment, gel, spray, etc.).","drug_strength" -"denominator_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the denominator Unit for the concentration of active ingredient.","drug_strength" -"box_size","No","INTEGER","The number of units of Clinical of Branded Drug, or Quantified Clinical or Branded Drug contained in a box as dispensed to the patient","drug_strength" -"valid_start_date","Yes","DATE","The date when the Concept was first recorded. The default value is 1-Jan-1970.","drug_strength" -"valid_end_date","Yes","DATE","The date when the concept became invalid because it was deleted or superseded (updated) by a new Concept. The default value is 31-Dec-2099.","drug_strength" -"invalid_reason","No","VARCHAR(1)","Reason the concept was invalidated. Possible values are 'D' (deleted), 'U' (replaced with an update) or NULL when valid_end_date has the default value.","drug_strength" -"relationship_id","Yes","VARCHAR(20)","The type of relationship captured by the relationship record.","relationship" -"relationship_name","Yes","VARCHAR(255)","The text that describes the relationship type.","relationship" -"is_hierarchical","Yes","VARCHAR(1)","Defines whether a relationship defines concepts into classes or hierarchies. Values are 1 for hierarchical relationship or 0 if not.","relationship" -"defines_ancestry","Yes","VARCHAR(1)","Defines whether a hierarchical relationship contributes to the concept_ancestor table. These are subsets of the hierarchical relationships. Valid values are 1 or 0.","relationship" -"reverse_relationship_id","Yes","VARCHAR(20)","The identifier for the relationship used to define the reverse relationship between two concepts.","relationship" -"relationship_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique relationship concept.","relationship" -"source_code","Yes","VARCHAR(50)","The source code being translated into a Standard Concept.","source_to_concept_map" -"source_concept_id","Yes","INTEGER","A foreign key to the Source Concept that is being translated into a Standard Concept.","source_to_concept_map" -"source_vocabulary_id","Yes","VARCHAR(20)","A foreign key to the VOCABULARY table defining the vocabulary of the source code that is being translated to a Standard Concept.","source_to_concept_map" -"source_code_description","No","VARCHAR(255)","An optional description for the source code. This is included as a convenience to compare the description of the source code to the name of the concept.","source_to_concept_map" -"target_concept_id","Yes","INTEGER","A foreign key to the target Concept to which the source code is being mapped.","source_to_concept_map" -"target_vocabulary_id","Yes","VARCHAR(20)","A foreign key to the VOCABULARY table defining the vocabulary of the target Concept.","source_to_concept_map" -"valid_start_date","Yes","DATE","The date when the mapping instance was first recorded.","source_to_concept_map" -"valid_end_date","Yes","DATE","The date when the mapping instance became invalid because it was deleted or superseded (updated) by a new relationship. Default value is 31-Dec-2099.","source_to_concept_map" -"invalid_reason","No","VARCHAR(1)","Reason the mapping instance was invalidated. Possible values are D (deleted), U (replaced with an update) or NULL when valid_end_date has the default value.","source_to_concept_map" -"vocabulary_id","Yes","VARCHAR(20)","A unique identifier for each Vocabulary, such as ICD9CM, SNOMED, Visit.","vocabulary" -"vocabulary_name","Yes","VARCHAR(255)","The name describing the vocabulary, for example ""International Classification of Diseases, Ninth Revision, Clinical Modification, Volume 1 and 2 (NCHS)"" etc.","vocabulary" -"vocabulary_reference","Yes","VARCHAR(255)","External reference to documentation or available download of the about the vocabulary.","vocabulary" -"vocabulary_version","Yes","VARCHAR(255)","Version of the Vocabulary as indicated in the source.","vocabulary" -"vocabulary_concept_id","Yes","INTEGER","A foreign key that refers to a standard concept identifier in the CONCEPT table for the Vocabulary the VOCABULARY record belongs to.","vocabulary" diff --git a/OMOP_CDM_v5_3_1.csv b/OMOP_CDM_v5_3_1.csv new file mode 100644 index 0000000..ba34a9c --- /dev/null +++ b/OMOP_CDM_v5_3_1.csv @@ -0,0 +1,408 @@ +"","field","required","type","description","table","schema" +"1","condition_occurrence_id","Yes","INTEGER","A unique identifier for each Condition Occurrence event.","condition_occurrence","cdm" +"2","person_id","Yes","INTEGER","A foreign key identifier to the Person who is experiencing the condition. The demographic details of that Person are stored in the PERSON table.","condition_occurrence","cdm" +"3","condition_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Condition Concept identifier in the Standardized Vocabularies.","condition_occurrence","cdm" +"4","condition_start_date","Yes","DATE","The date when the instance of the Condition is recorded.","condition_occurrence","cdm" +"5","condition_start_datetime","No","DATETIME","The date and time when the instance of the Condition is recorded.","condition_occurrence","cdm" +"6","condition_end_date","No","DATE","The date when the instance of the Condition is considered to have ended.","condition_occurrence","cdm" +"7","condition_end_datetime","No","DATE","The date when the instance of the Condition is considered to have ended.","condition_occurrence","cdm" +"8","condition_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the source data from which the condition was recorded, the level of standardization, and the type of occurrence.","condition_occurrence","cdm" +"9","stop_reason","No","VARCHAR(20)","The reason that the condition was no longer present, as indicated in the source data.","condition_occurrence","cdm" +"10","provider_id","No","INTEGER","A foreign key to the Provider in the PROVIDER table who was responsible for capturing (diagnosing) the Condition.","condition_occurrence","cdm" +"11","visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the Condition was determined (diagnosed).","condition_occurrence","cdm" +"12","visit_detail_id","No","INTEGER","A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed).","condition_occurrence","cdm" +"13","condition_source_value","No","VARCHAR(50)","The source code for the condition as it appears in the source data. This code is mapped to a standard condition concept in the Standardized Vocabularies and the original code is stored here for reference.","condition_occurrence","cdm" +"14","condition_source_concept_id","No","INTEGER","A foreign key to a Condition Concept that refers to the code used in the source.","condition_occurrence","cdm" +"15","condition_status_source_value","No","VARCHAR(50)","The source code for the condition status as it appears in the source data.","condition_occurrence","cdm" +"16","condition_status_concept_id","No","INTEGER","A foreign key to the predefined Concept in the Standard Vocabulary reflecting the condition status","condition_occurrence","cdm" +"17","person_id","Yes","INTEGER","A foreign key identifier to the deceased person. The demographic details of that person are stored in the person table.","death","cdm" +"18","death_date","Yes","DATE","The date the person was deceased. If the precise date including day or month is not known or not allowed, December is used as the default month, and the last day of the month the default day.","death","cdm" +"19","death_datetime","No","DATETIME","The date and time the person was deceased. If the precise date including day or month is not known or not allowed, December is used as the default month, and the last day of the month the default day.","death","cdm" +"20","death_type_concept_id","Yes","INTEGER","A foreign key referring to the predefined concept identifier in the Standardized Vocabularies reflecting how the death was represented in the source data.","death","cdm" +"21","cause_concept_id","No","INTEGER","A foreign key referring to a standard concept identifier in the Standardized Vocabularies for conditions.","death","cdm" +"22","cause_source_value","No","VARCHAR(50)","The source code for the cause of death as it appears in the source data. This code is mapped to a standard concept in the Standardized Vocabularies and the original code is, stored here for reference.","death","cdm" +"23","cause_source_concept_id","No","INTEGER","A foreign key to the concept that refers to the code used in the source. Note, this variable name is abbreviated to ensure it will be allowable across database platforms.","death","cdm" +"24","device_exposure_id","Yes","INTEGER","A system-generated unique identifier for each Device Exposure.","device_exposure","cdm" +"25","person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Device. The demographic details of that person are stored in the Person table.","device_exposure","cdm" +"26","device_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Device concept.","device_exposure","cdm" +"27","device_exposure_start_date","Yes","DATE","The date the Device or supply was applied or used.","device_exposure","cdm" +"28","device_exposure_start_datetime","No","DATETIME","The date and time the Device or supply was applied or used.","device_exposure","cdm" +"29","device_exposure_end_date","No","DATE","The date the Device or supply was removed from use.","device_exposure","cdm" +"30","device_exposure_end_datetime","No","DATETIME","The date and time the Device or supply was removed from use.","device_exposure","cdm" +"31","device_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of Device Exposure recorded. It indicates how the Device Exposure was represented in the source data.","device_exposure","cdm" +"32","unique_device_id","No","VARCHAR(50)","A UDI or equivalent identifying the instance of the Device used in the Person.","device_exposure","cdm" +"33","quantity","No","INTEGER","The number of individual Devices used for the exposure.","device_exposure","cdm" +"34","provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who initiated of administered the Device.","device_exposure","cdm" +"35","visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the device was used.","device_exposure","cdm" +"36","visit_detail_id","No","INTEGER","A foreign key to the visit detail in the VISIT_DETAIL table during which the Drug Exposure was initiated.","device_exposure","cdm" +"37","device_source_value","No","VARCHAR(50)","The source code for the Device as it appears in the source data. This code is mapped to a standard Device Concept in the Standardized Vocabularies and the original code is stored here for reference.","device_exposure","cdm" +"38","device_source_concept_id","No","INTEGER","A foreign key to a Device Concept that refers to the code used in the source.","device_exposure","cdm" +"39","drug_exposure_id","Yes","INTEGER","A system-generated unique identifier for each Drug utilization event.","drug_exposure","cdm" +"40","person_id","Yes","INTEGER","A foreign key identifier to the person who is subjected to the Drug. The demographic details of that person are stored in the person table.","drug_exposure","cdm" +"41","drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Drug concept.","drug_exposure","cdm" +"42","drug_exposure_start_date","Yes","DATE","The start date for the current instance of Drug utilization. Valid entries include a start date of a prescription, the date a prescription was filled, or the date on which a Drug administration procedure was recorded.","drug_exposure","cdm" +"43","drug_exposure_start_datetime","No","DATETIME","The start date and time for the current instance of Drug utilization. Valid entries include a start date of a prescription, the date a prescription was filled, or the date on which a Drug administration procedure was recorded.","drug_exposure","cdm" +"44","drug_exposure_end_date","Yes","DATE","The end date for the current instance of Drug utilization. It is not available from all sources.","drug_exposure","cdm" +"45","drug_exposure_end_datetime","No","DATETIME","The end date and time for the current instance of Drug utilization. It is not available from all sources.","drug_exposure","cdm" +"46","verbatim_end_date","No","DATE","The known end date of a drug_exposure as provided by the source","drug_exposure","cdm" +"47","drug_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of Drug Exposure recorded. It indicates how the Drug Exposure was represented in the source data.","drug_exposure","cdm" +"48","stop_reason","No","VARCHAR(20)","The reason the Drug was stopped. Reasons include regimen completed, changed, removed, etc.","drug_exposure","cdm" +"49","refills","No","INTEGER","The number of refills after the initial prescription. The initial prescription is not counted, values start with 0.","drug_exposure","cdm" +"50","quantity","No","FLOAT","The quantity of drug as recorded in the original prescription or dispensing record.","drug_exposure","cdm" +"51","days_supply","No","INTEGER","The number of days of supply of the medication as recorded in the original prescription or dispensing record.","drug_exposure","cdm" +"52","sig","No","VARCHAR(MAX)","The directions (""signetur"") on the Drug prescription as recorded in the original prescription (and printed on the container) or dispensing record.","drug_exposure","cdm" +"53","route_concept_id","No","INTEGER","A foreign key to a predefined concept in the Standardized Vocabularies reflecting the route of administration.","drug_exposure","cdm" +"54","lot_number","No","VARCHAR(50)","An identifier assigned to a particular quantity or lot of Drug product from the manufacturer.","drug_exposure","cdm" +"55","provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who initiated (prescribed or administered) the Drug Exposure.","drug_exposure","cdm" +"56","visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Drug Exposure was initiated.","drug_exposure","cdm" +"57","visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Drug Exposure was initiated.","drug_exposure","cdm" +"58","drug_source_value","No","VARCHAR(50)","The source code for the Drug as it appears in the source data. This code is mapped to a Standard Drug concept in the Standardized Vocabularies and the original code is, stored here for reference.","drug_exposure","cdm" +"59","drug_source_concept_id","No","INTEGER","A foreign key to a Drug Concept that refers to the code used in the source.","drug_exposure","cdm" +"60","route_source_value","No","VARCHAR(50)","The information about the route of administration as detailed in the source.","drug_exposure","cdm" +"61","dose_unit_source_value","No","VARCHAR(50)","The information about the dose unit as detailed in the source.","drug_exposure","cdm" +"62","domain_concept_id_1","Yes","INTEGER","The concept representing the domain of fact one, from which the corresponding table can be inferred.","fact_relationship","cdm" +"63","fact_id_1","Yes","INTEGER","The unique identifier in the table corresponding to the domain of fact one.","fact_relationship","cdm" +"64","domain_concept_id_2","Yes","INTEGER","The concept representing the domain of fact two, from which the corresponding table can be inferred.","fact_relationship","cdm" +"65","fact_id_2","Yes","INTEGER","The unique identifier in the table corresponding to the domain of fact two.","fact_relationship","cdm" +"66","relationship_concept_id","Yes","INTEGER","A foreign key to a Standard Concept ID of relationship in the Standardized Vocabularies.","fact_relationship","cdm" +"67","measurement_id","Yes","INTEGER","A unique identifier for each Measurement.","measurement","cdm" +"68","person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the measurement was recorded. The demographic details of that Person are stored in the PERSON table.","measurement","cdm" +"69","measurement_concept_id","Yes","INTEGER","A foreign key to the standard measurement concept identifier in the Standardized Vocabularies.","measurement","cdm" +"70","measurement_date","Yes","DATE","The date of the Measurement.","measurement","cdm" +"71","measurement_datetime","No","DATETIME","The date and time of the Measurement. Some database systems don't have a datatype of time. To accomodate all temporal analyses, datatype datetime can be used (combining measurement_date and measurement_time [forum discussion](http://forums.ohdsi.org/t/date-time-and-datetime-problem-and-the-world-of-hours-and-1day/314))","measurement","cdm" +"72","measurement_time","No","VARCHAR(10)","The time of the Measurement. This is present for backwards compatibility and will deprecated in an upcoming version","measurement","cdm" +"73","measurement_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the provenance from where the Measurement record was recorded.","measurement","cdm" +"74","operator_concept_id","No","INTEGER","A foreign key identifier to the predefined Concept in the Standardized Vocabularies reflecting the mathematical operator that is applied to the value_as_number. Operators are <, <=, =, >=, >.","measurement","cdm" +"75","value_as_number","No","FLOAT","A Measurement result where the result is expressed as a numeric value.","measurement","cdm" +"76","value_as_concept_id","No","INTEGER","A foreign key to a Measurement result represented as a Concept from the Standardized Vocabularies (e.g., positive/negative, present/absent, low/high, etc.).","measurement","cdm" +"77","unit_concept_id","No","INTEGER","A foreign key to a Standard Concept ID of Measurement Units in the Standardized Vocabularies.","measurement","cdm" +"78","range_low","No","FLOAT","The lower limit of the normal range of the Measurement result. The lower range is assumed to be of the same unit of measure as the Measurement value.","measurement","cdm" +"79","range_high","No","FLOAT","The upper limit of the normal range of the Measurement. The upper range is assumed to be of the same unit of measure as the Measurement value.","measurement","cdm" +"80","provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for initiating or obtaining the measurement.","measurement","cdm" +"81","visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Measurement was recorded.","measurement","cdm" +"82","visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Measurement was recorded.","measurement","cdm" +"83","measurement_source_value","No","VARCHAR(50)","The Measurement name as it appears in the source data. This code is mapped to a Standard Concept in the Standardized Vocabularies and the original code is stored here for reference.","measurement","cdm" +"84","measurement_source_concept_id","No","INTEGER","A foreign key to a Concept in the Standard Vocabularies that refers to the code used in the source.","measurement","cdm" +"85","unit_source_value","No","VARCHAR(50)","The source code for the unit as it appears in the source data. This code is mapped to a standard unit concept in the Standardized Vocabularies and the original code is stored here for reference.","measurement","cdm" +"86","value_source_value","No","VARCHAR(50)","The source value associated with the content of the value_as_number or value_as_concept_id as stored in the source data.","measurement","cdm" +"87","note_id","Yes","INTEGER","A unique identifier for each note.","note","cdm" +"88","person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the Note was recorded. The demographic details of that Person are stored in the PERSON table.","note","cdm" +"89","note_date","Yes","DATE","The date the note was recorded.","note","cdm" +"90","note_datetime","No","DATETIME","The date and time the note was recorded.","note","cdm" +"91","note_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the type, origin or provenance of the Note.","note","cdm" +"92","note_class_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the HL7 LOINC Document Type Vocabulary classification of the note.","note","cdm" +"93","note_title","No","VARCHAR(250)","The title of the Note as it appears in the source.","note","cdm" +"94","note_text","Yes","VARCHAR(MAX)","The content of the Note.","note","cdm" +"95","encoding_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the note character encoding type","note","cdm" +"96","language_concept_id","Yes","INTEGER","A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the language of the note","note","cdm" +"97","provider_id","No","INTEGER","A foreign key to the Provider in the PROVIDER table who took the Note.","note","cdm" +"98","visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table when the Note was taken.","note","cdm" +"99","visit_detail_id","No","INTEGER","A foreign key to the Visit in the VISIT_DETAIL table when the Note was taken.","note","cdm" +"100","note_source_value","No","VARCHAR(50)","The source value associated with the origin of the Note","note","cdm" +"101","yes","integer","A UNIQUE IDENTIFIER FOR EACH TERM EXTRACTED FROM A NOTE.",NA,"note_nlp","cdm" +"102","yes","integer","A FOREIGN KEY TO THE NOTE TABLE NOTE THE TERM WAS EXTRACTED FROM.",NA,"note_nlp","cdm" +"103","no","integer","A FOREIGN KEY TO THE PREDEFINED CONCEPT IN THE STANDARDIZED VOCABULARIES REPRESENTING THE SECTION OF THE EXTRACTED TERM.",NA,"note_nlp","cdm" +"104","no","varchar(250)","A SMALL WINDOW OF TEXT SURROUNDING THE TERM.",NA,"note_nlp","cdm" +"105","no","varchar(50)","CHARACTER OFFSET OF THE EXTRACTED TERM IN THE INPUT NOTE.",NA,"note_nlp","cdm" +"106","yes","varchar(250)","RAW TEXT EXTRACTED FROM THE NLP TOOL.",NA,"note_nlp","cdm" +"107","no","integer","A FOREIGN KEY TO THE PREDEFINED CONCEPT IN THE STANDARDIZED VOCABULARIES REFLECTING THE NORMALIZED CONCEPT FOR THE EXTRACTED TERM. DOMAIN OF THE TERM IS REPRESENTED AS PART OF THE CONCEPT TABLE.",NA,"note_nlp","cdm" +"108","no","integer","A FOREIGN KEY TO A CONCEPT THAT REFERS TO THE CODE IN THE SOURCE VOCABULARY USED BY THE NLP SYSTEM",NA,"note_nlp","cdm" +"109","no","varchar(250)","NAME AND VERSION OF THE NLP SYSTEM THAT EXTRACTED THE TERM.USEFUL FOR DATA PROVENANCE.",NA,"note_nlp","cdm" +"110","yes","date","THE DATE OF THE NOTE PROCESSING.USEFUL FOR DATA PROVENANCE.",NA,"note_nlp","cdm" +"111","no","datetime","THE DATE AND TIME OF THE NOTE PROCESSING. USEFUL FOR DATA PROVENANCE.",NA,"note_nlp","cdm" +"112","no","varchar(1)","A SUMMARY MODIFIER THAT SIGNIFIES PRESENCE OR ABSENCE OF THE TERM FOR A GIVEN PATIENT. USEFUL FOR QUICK QUERYING.",NA,"note_nlp","cdm" +"113","no","varchar(50)","AN OPTIONAL TIME MODIFIER ASSOCIATED WITH THE EXTRACTED TERM. (FOR NOW “PAST” OR “PRESENT” ONLY). STANDARDIZE IT LATER.",NA,"note_nlp","cdm" +"114","no","varchar(2000)","A COMPACT DESCRIPTION OF ALL THE MODIFIERS OF THE SPECIFIC TERM EXTRACTED BY THE NLP SYSTEM. (E.G. “SON HAS RASH” ? “NEGATED=NO,SUBJECT=FAMILY, CERTAINTY=UNDEF,CONDITIONAL=FALSE,GENERAL=FALSE”).",NA,"note_nlp","cdm" +"115","observation_id","Yes","INTEGER","A unique identifier for each observation.","observation","cdm" +"116","person_id","Yes","INTEGER","A foreign key identifier to the Person about whom the observation was recorded. The demographic details of that Person are stored in the PERSON table.","observation","cdm" +"117","observation_concept_id","Yes","INTEGER","A foreign key to the standard observation concept identifier in the Standardized Vocabularies.","observation","cdm" +"118","observation_date","Yes","DATE","The date of the observation.","observation","cdm" +"119","observation_datetime","No","DATETIME","The date and time of the observation.","observation","cdm" +"120","observation_type_concept_id","Yes","INTEGER","A foreign key to the predefined concept identifier in the Standardized Vocabularies reflecting the type of the observation.","observation","cdm" +"121","value_as_number","No","FLOAT","The observation result stored as a number. This is applicable to observations where the result is expressed as a numeric value.","observation","cdm" +"122","value_as_string","No","VARCHAR(60)","The observation result stored as a string. This is applicable to observations where the result is expressed as verbatim text.","observation","cdm" +"123","value_as_concept_id","No","INTEGER","A foreign key to an observation result stored as a Concept ID. This is applicable to observations where the result can be expressed as a Standard Concept from the Standardized Vocabularies (e.g., positive/negative, present/absent, low/high, etc.).","observation","cdm" +"124","qualifier_concept_id","No","INTEGER","A foreign key to a Standard Concept ID for a qualifier (e.g., severity of drug-drug interaction alert)","observation","cdm" +"125","unit_concept_id","No","INTEGER","A foreign key to a Standard Concept ID of measurement units in the Standardized Vocabularies.","observation","cdm" +"126","provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for making the observation.","observation","cdm" +"127","visit_occurrence_id","No","INTEGER","A foreign key to the visit in the VISIT_OCCURRENCE table during which the observation was recorded.","observation","cdm" +"128","visit_detail_id","No","INTEGER","A foreign key to the visit in the VISIT_DETAIL table during which the observation was recorded.","observation","cdm" +"129","observation_source_value","No","VARCHAR(50)","The observation code as it appears in the source data. This code is mapped to a Standard Concept in the Standardized Vocabularies and the original code is, stored here for reference.","observation","cdm" +"130","observation_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","observation","cdm" +"131","unit_source_value","No","VARCHAR(50)","The source code for the unit as it appears in the source data. This code is mapped to a standard unit concept in the Standardized Vocabularies and the original code is, stored here for reference.","observation","cdm" +"132","qualifier_source_value","No","VARCHAR(50)","The source value associated with a qualifier to characterize the observation","observation","cdm" +"133","observation_period_id","Yes","INTEGER","A unique identifier for each observation period.","observation_period","cdm" +"134","person_id","Yes","INTEGER","A foreign key identifier to the person for whom the observation period is defined. The demographic details of that person are stored in the person table.","observation_period","cdm" +"135","observation_period_start_date","Yes","DATE","The start date of the observation period for which data are available from the data source.","observation_period","cdm" +"136","observation_period_end_date","Yes","DATE","The end date of the observation period for which data are available from the data source.","observation_period","cdm" +"137","period_type_concept_id","Yes","INTEGER","A foreign key identifier to the predefined concept in the Standardized Vocabularies reflecting the source of the observation period information","observation_period","cdm" +"138","person_id","Yes","INTEGER","A unique identifier for each person.","person","cdm" +"139","gender_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique gender of the person.","person","cdm" +"140","year_of_birth","Yes","INTEGER","The year of birth of the person. For data sources with date of birth, the year is extracted. For data sources where the year of birth is not available, the approximate year of birth is derived based on any age group categorization available.","person","cdm" +"141","month_of_birth","No","INTEGER","The month of birth of the person. For data sources that provide the precise date of birth, the month is extracted and stored in this field.","person","cdm" +"142","day_of_birth","No","INTEGER","The day of the month of birth of the person. For data sources that provide the precise date of birth, the day is extracted and stored in this field.","person","cdm" +"143","birth_datetime","No","DATETIME","The date and time of birth of the person.","person","cdm" +"144","race_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique race of the person.","person","cdm" +"145","ethnicity_concept_id","Yes","INTEGER","A foreign key that refers to the standard concept identifier in the Standardized Vocabularies for the ethnicity of the person.","person","cdm" +"146","location_id","No","INTEGER","A foreign key to the place of residency for the person in the location table, where the detailed address information is stored.","person","cdm" +"147","provider_id","No","INTEGER","A foreign key to the primary care provider the person is seeing in the provider table.","person","cdm" +"148","care_site_id","No","INTEGER","A foreign key to the site of primary care in the care_site table, where the details of the care site are stored.","person","cdm" +"149","person_source_value","No","VARCHAR(50)","An (encrypted) key derived from the person identifier in the source data. This is necessary when a use case requires a link back to the person data at the source dataset.","person","cdm" +"150","gender_source_value","No","VARCHAR(50)","The source code for the gender of the person as it appears in the source data. The person’s gender is mapped to a standard gender concept in the Standardized Vocabularies; the original value is stored here for reference.","person","cdm" +"151","gender_source_concept_id","No","INTEGER","A foreign key to the gender concept that refers to the code used in the source.","person","cdm" +"152","race_source_value","No","VARCHAR(50)","The source code for the race of the person as it appears in the source data. The person race is mapped to a standard race concept in the Standardized Vocabularies and the original value is stored here for reference.","person","cdm" +"153","race_source_concept_id","No","INTEGER","A foreign key to the race concept that refers to the code used in the source.","person","cdm" +"154","ethnicity_source_value","No","VARCHAR(50)","The source code for the ethnicity of the person as it appears in the source data. The person ethnicity is mapped to a standard ethnicity concept in the Standardized Vocabularies and the original code is, stored here for reference.","person","cdm" +"155","ethnicity_source_concept_id","No","INTEGER","A foreign key to the ethnicity concept that refers to the code used in the source.","person","cdm" +"156","procedure_occurrence_id","Yes","INTEGER","A system-generated unique identifier for each Procedure Occurrence.","procedure_occurrence","cdm" +"157","person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Procedure. The demographic details of that Person are stored in the PERSON table.","procedure_occurrence","cdm" +"158","procedure_concept_id","Yes","INTEGER","A foreign key that refers to a standard procedure Concept identifier in the Standardized Vocabularies.","procedure_occurrence","cdm" +"159","procedure_date","Yes","DATE","The date on which the Procedure was performed.","procedure_occurrence","cdm" +"160","procedure_datetime","No","DATETIME","The date and time on which the Procedure was performed.","procedure_occurrence","cdm" +"161","procedure_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the procedure record is derived.","procedure_occurrence","cdm" +"162","modifier_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for a modifier to the Procedure (e.g. bilateral)","procedure_occurrence","cdm" +"163","quantity","No","INTEGER","The quantity of procedures ordered or administered.","procedure_occurrence","cdm" +"164","provider_id","No","INTEGER","A foreign key to the provider in the PROVIDER table who was responsible for carrying out the procedure.","procedure_occurrence","cdm" +"165","visit_occurrence_id","No","INTEGER","A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Procedure was carried out.","procedure_occurrence","cdm" +"166","visit_detail_id","No","INTEGER","A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Procedure was carried out.","procedure_occurrence","cdm" +"167","procedure_source_value","No","VARCHAR(50)","The source code for the Procedure as it appears in the source data. This code is mapped to a standard procedure Concept in the Standardized Vocabularies and the original code is, stored here for reference. Procedure source codes are typically ICD-9-Proc, CPT-4, HCPCS or OPCS-4 codes.","procedure_occurrence","cdm" +"168","procedure_source_concept_id","No","INTEGER","A foreign key to a Procedure Concept that refers to the code used in the source.","procedure_occurrence","cdm" +"169","modifier_source_value","No","VARCHAR(50)","The source code for the qualifier as it appears in the source data.","procedure_occurrence","cdm" +"170","specimen_id","Yes","INTEGER","A unique identifier for each specimen.","specimen","cdm" +"171","person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the Specimen is recorded.","specimen","cdm" +"172","specimen_concept_id","Yes","INTEGER","A foreign key referring to a Standard Concept identifier in the Standardized Vocabularies for the Specimen.","specimen","cdm" +"173","specimen_type_concept_id","Yes","INTEGER","A foreign key referring to the Concept identifier in the Standardized Vocabularies reflecting the system of record from which the Specimen was represented in the source data.","specimen","cdm" +"174","specimen_date","Yes","DATE","The date the specimen was obtained from the Person.","specimen","cdm" +"175","specimen_datetime","No","DATETIME","The date and time on the date when the Specimen was obtained from the person.","specimen","cdm" +"176","quantity","No","FLOAT","The amount of specimen collection from the person during the sampling procedure.","specimen","cdm" +"177","unit_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the Unit associated with the numeric quantity of the Specimen collection.","specimen","cdm" +"178","anatomic_site_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the anatomic location of specimen collection.","specimen","cdm" +"179","disease_status_concept_id","No","INTEGER","A foreign key to a Standard Concept identifier for the Disease Status of specimen collection.","specimen","cdm" +"180","specimen_source_id","No","VARCHAR(50)","The Specimen identifier as it appears in the source data.","specimen","cdm" +"181","specimen_source_value","No","VARCHAR(50)","The Specimen value as it appears in the source data. This value is mapped to a Standard Concept in the Standardized Vocabularies and the original code is, stored here for reference.","specimen","cdm" +"182","unit_source_value","No","VARCHAR(50)","The information about the Unit as detailed in the source.","specimen","cdm" +"183","anatomic_site_source_value","No","VARCHAR(50)","The information about the anatomic site as detailed in the source.","specimen","cdm" +"184","disease_status_source_value","No","VARCHAR(50)","The information about the disease status as detailed in the source.","specimen","cdm" +"185","visit_detail_id","Yes","INTEGER","A unique identifier for each Person's visit or encounter at a healthcare provider.","visit_detail","cdm" +"186","person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that Person are stored in the PERSON table.","visit_detail","cdm" +"187","visit_concept_id","Yes","INTEGER","A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.","visit_detail","cdm" +"188","visit_start_date","Yes","DATE","The start date of the visit.","visit_detail","cdm" +"189","visit_start_datetime","No","DATETIME","The date and time of the visit started.","visit_detail","cdm" +"190","visit_end_date","Yes","DATE","The end date of the visit. If this is a one-day visit the end date should match the start date.","visit_detail","cdm" +"191","visit_end_datetime","No","DATETIME","The date and time of the visit end.","visit_detail","cdm" +"192","visit_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the visit record is derived.","visit_detail","cdm" +"193","provider_id","No","INTEGER","A foreign key to the provider in the provider table who was associated with the visit.","visit_detail","cdm" +"194","care_site_id","No","INTEGER","A foreign key to the care site in the care site table that was visited.","visit_detail","cdm" +"195","visit_source_value","No","STRING(50)","The source code for the visit as it appears in the source data.","visit_detail","cdm" +"196","visit_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","visit_detail","cdm" +"197","admitting_source_value","No","VARCHAR(50)","The source code for the admitting source as it appears in the source data.","visit_detail","cdm" +"198","admitting_source_concept_id","No","INTEGER","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting source for a visit.","visit_detail","cdm" +"199","discharge_to_source_value","No","VARCHAR(50)","The source code for the discharge disposition as it appears in the source data.","visit_detail","cdm" +"200","discharge_to_concept_id","No","INTEGER","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge disposition for a visit.","visit_detail","cdm" +"201","preceding_visit_detail_id","No","INTEGER","A foreign key to the VISIT_DETAIL table of the visit immediately preceding this visit","visit_detail","cdm" +"202","visit_detail_parent_id","No","INTEGER","A foreign key to the VISIT_DETAIL table record to represent the immediate parent visit-detail record.","visit_detail","cdm" +"203","visit_occurrence_id","Yes","INTEGER","A foreign key that refers to the record in the VISIT_OCCURRENCE table. This is a required field, because for every visit_detail is a child of visit_occurrence and cannot exist without a corresponding parent record in visit_occurrence.","visit_detail","cdm" +"204","visit_occurrence_id","Yes","INTEGER","A unique identifier for each Person's visit or encounter at a healthcare provider.","visit_occurrence","cdm" +"205","person_id","Yes","INTEGER","A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that Person are stored in the PERSON table.","visit_occurrence","cdm" +"206","visit_concept_id","Yes","INTEGER","A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.","visit_occurrence","cdm" +"207","visit_start_date","Yes","DATE","The start date of the visit.","visit_occurrence","cdm" +"208","visit_start_datetime","No","DATETIME","The date and time of the visit started.","visit_occurrence","cdm" +"209","visit_end_date","Yes","DATE","The end date of the visit. If this is a one-day visit the end date should match the start date.","visit_occurrence","cdm" +"210","visit_end_datetime","No","DATETIME","The date and time of the visit end.","visit_occurrence","cdm" +"211","visit_type_concept_id","Yes","INTEGER","A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type of source data from which the visit record is derived.","visit_occurrence","cdm" +"212","provider_id","No","INTEGER","A foreign key to the provider in the provider table who was associated with the visit.","visit_occurrence","cdm" +"213","care_site_id","No","INTEGER","A foreign key to the care site in the care site table that was visited.","visit_occurrence","cdm" +"214","visit_source_value","No","VARCHAR(50)","The source code for the visit as it appears in the source data.","visit_occurrence","cdm" +"215","visit_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","visit_occurrence","cdm" +"216","admitting_source_concept_id","No","INTEGER","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting source for a visit.","visit_occurrence","cdm" +"217","admitting_source_value","No","VARCHAR(50)","The source code for the admitting source as it appears in the source data.","visit_occurrence","cdm" +"218","discharge_to_concept_id","No","INTEGER","A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge disposition for a visit.","visit_occurrence","cdm" +"219","discharge_to_source_value","No","VARCHAR(50)","The source code for the discharge disposition as it appears in the source data.","visit_occurrence","cdm" +"220","preceding_visit_occurrence_id","No","INTEGER","A foreign key to the VISIT_OCCURRENCE table of the visit immediately preceding this visit","visit_occurrence","cdm" +"221","cohort_definition_id","Yes","INTEGER","A foreign key to a record in the COHORT_DEFINITION table containing relevant Cohort Definition information.","cohort","results" +"222","subject_id","Yes","INTEGER","A foreign key to the subject in the cohort. These could be referring to records in the PERSON, PROVIDER, VISIT_OCCURRENCE table.","cohort","results" +"223","cohort_start_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit first match.","cohort","results" +"224","cohort_end_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit no longer match or the Cohort membership was terminated.","cohort","results" +"225","cohort_definition_id","Yes","INTEGER","A foreign key to a record in the [COHORT_DEFINITION](https://github.com/OHDSI/CommonDataModel/wiki/COHORT_DEFINITION) table containing relevant Cohort Definition information.","cohort_attribute","results" +"226","subject_id","Yes","INTEGER","A foreign key to the subject in the Cohort. These could be referring to records in the PERSON, PROVIDER, VISIT_OCCURRENCE table.","cohort_attribute","results" +"227","cohort_start_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit first match.","cohort_attribute","results" +"228","cohort_end_date","Yes","DATE","The date when the Cohort Definition criteria for the Person, Provider or Visit no longer match or the Cohort membership was terminated.","cohort_attribute","results" +"229","attribute_definition_id","Yes","INTEGER","A foreign key to a record in the [ATTRIBUTE_DEFINITION](https://github.com/OHDSI/CommonDataModel/wiki/ATTRIBUTE_DEFINITION) table containing relevant Attribute Definition information.","cohort_attribute","results" +"230","value_as_number","No","FLOAT","The attribute result stored as a number. This is applicable to attributes where the result is expressed as a numeric value.","cohort_attribute","results" +"231","value_as_concept_id","No","INTEGER","The attribute result stored as a Concept ID. This is applicable to attributes where the result is expressed as a categorical value.","cohort_attribute","results" +"232","condition_era_id","Yes","INTEGER","A unique identifier for each Condition Era.","condition_era","cdm" +"233","person_id","Yes","INTEGER","A foreign key identifier to the Person who is experiencing the Condition during the Condition Era. The demographic details of that Person are stored in the PERSON table.","condition_era","cdm" +"234","condition_concept_id","Yes","INTEGER","A foreign key that refers to a standard Condition Concept identifier in the Standardized Vocabularies.","condition_era","cdm" +"235","condition_era_start_date","Yes","DATE","The start date for the Condition Era constructed from the individual instances of Condition Occurrences. It is the start date of the very first chronologically recorded instance of the condition.","condition_era","cdm" +"236","condition_era_end_date","Yes","DATE","The end date for the Condition Era constructed from the individual instances of Condition Occurrences. It is the end date of the final continuously recorded instance of the Condition.","condition_era","cdm" +"237","condition_occurrence_count","No","INTEGER","The number of individual Condition Occurrences used to construct the condition era.","condition_era","cdm" +"238","dose_era_id","Yes","INTEGER","A unique identifier for each Dose Era.","dose_era","cdm" +"239","person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the drug during the drug era. The demographic details of that Person are stored in the PERSON table.","dose_era","cdm" +"240","drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the active Ingredient Concept.","dose_era","cdm" +"241","unit_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the unit concept.","dose_era","cdm" +"242","dose_value","Yes","FLOAT","The numeric value of the dose.","dose_era","cdm" +"243","dose_era_start_date","Yes","DATE","The start date for the drug era constructed from the individual instances of drug exposures. It is the start date of the very first chronologically recorded instance of utilization of a drug.","dose_era","cdm" +"244","dose_era_end_date","Yes","DATE","The end date for the drug era constructed from the individual instance of drug exposures. It is the end date of the final continuously recorded instance of utilization of a drug.","dose_era","cdm" +"245","drug_era_id","Yes","INTEGER","A unique identifier for each Drug Era.","drug_era","cdm" +"246","person_id","Yes","INTEGER","A foreign key identifier to the Person who is subjected to the Drug during the fDrug Era. The demographic details of that Person are stored in the PERSON table.","drug_era","cdm" +"247","drug_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies for the Ingredient Concept.","drug_era","cdm" +"248","drug_era_start_date","Yes","DATE","The start date for the Drug Era constructed from the individual instances of Drug Exposures. It is the start date of the very first chronologically recorded instance of conutilization of a Drug.","drug_era","cdm" +"249","drug_era_end_date","Yes","DATE","The end date for the drug era constructed from the individual instance of drug exposures. It is the end date of the final continuously recorded instance of utilization of a drug.","drug_era","cdm" +"250","drug_exposure_count","No","INTEGER","The number of individual Drug Exposure occurrences used to construct the Drug Era.","drug_era","cdm" +"251","gap_days","No","INTEGER","The number of days that are not covered by DRUG_EXPOSURE records that were used to make up the era record.","drug_era","cdm" +"252","cost_id","Yes","INTEGER","A unique identifier for each COST record.","cost","cdm" +"253","cost_event_id","Yes","INTEGER","A foreign key identifier to the event (e.g. Measurement, Procedure, Visit, Drug Exposure, etc) record for which cost data are recorded.","cost","cdm" +"254","cost_domain_id","Yes","VARCHAR(20)","The concept representing the domain of the cost event, from which the corresponding table can be inferred that contains the entity for which cost information is recorded.","cost","cdm" +"255","cost_type_concept_id","Yes","INTEGER","A foreign key identifier to a concept in the CONCEPT table for the provenance or the source of the COST data: Calculated from insurance claim information, provider revenue, calculated from cost-to-charge ratio, reported from accounting database, etc.","cost","cdm" +"256","currency_concept_id","No","INTEGER","A foreign key identifier to the concept representing the 3-letter code used to delineate international currencies, such as USD for US Dollar.","cost","cdm" +"257","total_charge","No","FLOAT","The total amount charged by some provider of goods or services (e.g. hospital, physician pharmacy, dme provider) to payers (insurance companies, the patient).","cost","cdm" +"258","total_cost","No","FLOAT","The cost incurred by the provider of goods or services.","cost","cdm" +"259","total_paid","No","FLOAT","The total amount actually paid from all payers for goods or services of the provider.","cost","cdm" +"260","paid_by_payer","No","FLOAT","The amount paid by the Payer for the goods or services.","cost","cdm" +"261","paid_by_patient","No","FLOAT","The total amount paid by the Person as a share of the expenses.","cost","cdm" +"262","paid_patient_copay","No","FLOAT","The amount paid by the Person as a fixed contribution to the expenses.","cost","cdm" +"263","paid_patient_coinsurance","No","FLOAT","The amount paid by the Person as a joint assumption of risk. Typically, this is a percentage of the expenses defined by the Payer Plan after the Person's deductible is exceeded.","cost","cdm" +"264","paid_patient_deductible","No","FLOAT","The amount paid by the Person that is counted toward the deductible defined by the Payer Plan. paid_patient_deductible does contribute to the paid_by_patient variable.","cost","cdm" +"265","paid_by_primary","No","FLOAT","The amount paid by a primary Payer through the coordination of benefits.","cost","cdm" +"266","paid_ingredient_cost","No","FLOAT","The amount paid by the Payer to a pharmacy for the drug, excluding the amount paid for dispensing the drug. paid_ingredient_cost contributes to the paid_by_payer field if this field is populated with a nonzero value.","cost","cdm" +"267","paid_dispensing_fee","No","FLOAT","The amount paid by the Payer to a pharmacy for dispensing a drug, excluding the amount paid for the drug ingredient. paid_dispensing_fee contributes to the paid_by_payer field if this field is populated with a nonzero value.","cost","cdm" +"268","payer_plan_period_id","No","INTEGER","A foreign key to the PAYER_PLAN_PERIOD table, where the details of the Payer, Plan and Family are stored. Record the payer_plan_id that relates to the payer who contributed to the paid_by_payer field.","cost","cdm" +"269","amount_allowed","No","FLOAT","The contracted amount agreed between the payer and provider.","cost","cdm" +"270","revenue_code_concept_id","No","INTEGER","A foreign key referring to a Standard Concept ID in the Standardized Vocabularies for Revenue codes.","cost","cdm" +"271","revenue_code_source_value","No","VARCHAR(50)","The source code for the Revenue code as it appears in the source data, stored here for reference.","cost","cdm" +"272","drg_concept_id","No","INTEGER","A foreign key to the predefined concept in the DRG Vocabulary reflecting the DRG for a visit.","cost","cdm" +"273","drg_source_value","No","VARCHAR(3)","The 3-digit DRG source code as it appears in the source data.","cost","cdm" +"274","payer_plan_period_id","Yes","INTEGER","A identifier for each unique combination of payer, sponsor, plan, family code and time span.","payer_plan_period","cdm" +"275","person_id","Yes","INTEGER","A foreign key identifier to the Person covered by the payer. The demographic details of that Person are stored in the PERSON table.","payer_plan_period","cdm" +"276","payer_plan_period_start_date","Yes","DATE","The start date of the payer plan period.","payer_plan_period","cdm" +"277","payer_plan_period_end_date","Yes","DATE","The end date of the payer plan period.","payer_plan_period","cdm" +"278","payer_concept_id","No","INTEGER","A foreign key that refers to a Standard Payer concept identifiers in the Standardized Vocabularies","payer_plan_period","cdm" +"279","payer_source_value","No","VARCHAR(50)","The source code for the payer as it appears in the source data.","payer_plan_period","cdm" +"280","payer_source_concept_id","No","INTEGER","A foreign key to a payer concept that refers to the code used in the source.","payer_plan_period","cdm" +"281","plan_concept_id","No","INTEGER","A foreign key that refers to a Standard plan that represents the health benefit plan in the Standardized Vocabularies","payer_plan_period","cdm" +"282","plan_source_value","No","VARCHAR(50)","The source code for the Person's health benefit plan as it appears in the source data.","payer_plan_period","cdm" +"283","plan_source_concept_id","No","INTEGER","A foreign key to a plan concept that refers to the code used in the source.","payer_plan_period","cdm" +"284","sponsor_concept_id","No","INTEGER","A foreign key that refers to a Standard plan that represents the sponsor in the Standardized Vocabularies","payer_plan_period","cdm" +"285","sponsor_source_value","No","VARCHAR(50)","The source code for the Person's sponsor of the health plan as it appears in the source data.","payer_plan_period","cdm" +"286","sponsor_source_concept_id*","No","INTEGER","A foreign key to a sponsor concept that refers to the code used in the source.","payer_plan_period","cdm" +"287","family_source_value","No","VARCHAR(50)","The source code for the Person's family as it appears in the source data.","payer_plan_period","cdm" +"288","stop_reason_concept_id","No","INTEGER","A foreign key that refers to a Standard termination reason that represents the reason for the termination in the Standardized Vocabularies.","payer_plan_period","cdm" +"289","stop_reason_source_value","No","VARCHAR(50)","The reason for stop-coverage of the record.","payer_plan_period","cdm" +"290","stop_reason_source_concept_id","No","INTEGER","A foreign key to a stop-coverage concept that refers to the code used in the source.","payer_plan_period","cdm" +"291","care_site_id","Yes","INTEGER","A unique identifier for each Care Site.","care_site","cdm" +"292","care_site_name","No","VARCHAR(255)","The verbatim description or name of the Care Site as in data source","care_site","cdm" +"293","place_of_service_concept_id","No","INTEGER","A foreign key that refers to a Place of Service Concept ID in the Standardized Vocabularies.","care_site","cdm" +"294","location_id","No","INTEGER","A foreign key to the geographic Location in the LOCATION table, where the detailed address information is stored.","care_site","cdm" +"295","care_site_source_value","No","VARCHAR(50)","The identifier for the Care Site in the source data, stored here for reference.","care_site","cdm" +"296","place_of_service_source_value","No","VARCHAR(50)","The source code for the Place of Service as it appears in the source data, stored here for reference.","care_site","cdm" +"297","location_id","Yes","INTEGER","A unique identifier for each geographic location.","location","cdm" +"298","address_1","No","VARCHAR(50)","The address field 1, typically used for the street address, as it appears in the source data.","location","cdm" +"299","address_2","No","VARCHAR(50)","The address field 2, typically used for additional detail such as buildings, suites, floors, as it appears in the source data.","location","cdm" +"300","city","No","VARCHAR(50)","The city field as it appears in the source data.","location","cdm" +"301","state","No","VARCHAR(2)","The state field as it appears in the source data.","location","cdm" +"302","zip","No","VARCHAR(9)","The zip or postal code.","location","cdm" +"303","county","No","VARCHAR(20)","The county.","location","cdm" +"304","location_source_value","No","VARCHAR(50)","The verbatim information that is used to uniquely identify the location as it appears in the source data.","location","cdm" +"305","provider_id","Yes","INTEGER","A unique identifier for each Provider.","provider","cdm" +"306","provider_name","No","VARCHAR(255)","A description of the Provider.","provider","cdm" +"307","npi","No","VARCHAR(20)","The National Provider Identifier (NPI) of the provider.","provider","cdm" +"308","dea","No","VARCHAR(20)","The Drug Enforcement Administration (DEA) number of the provider.","provider","cdm" +"309","specialty_concept_id","No","INTEGER","A foreign key to a Standard Specialty Concept ID in the Standardized Vocabularies.","provider","cdm" +"310","care_site_id","No","INTEGER","A foreign key to the main Care Site where the provider is practicing.","provider","cdm" +"311","year_of_birth","No","INTEGER","The year of birth of the Provider.","provider","cdm" +"312","gender_concept_id","No","INTEGER","The gender of the Provider.","provider","cdm" +"313","provider_source_value","No","VARCHAR(50)","The identifier used for the Provider in the source data, stored here for reference.","provider","cdm" +"314","specialty_source_value","No","VARCHAR(50)","The source code for the Provider specialty as it appears in the source data, stored here for reference.","provider","cdm" +"315","specialty_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","provider","cdm" +"316","gender_source_value","No","VARCHAR(50)","The gender code for the Provider as it appears in the source data, stored here for reference.","provider","cdm" +"317","gender_source_concept_id","No","INTEGER","A foreign key to a Concept that refers to the code used in the source.","provider","cdm" +"318","cdm_source_name","Yes","VARCHAR(255)","The full name of the source","cdm_source","cdm" +"319","cdm_source_abbreviation","No","VARCHAR(25)","An abbreviation of the name","cdm_source","cdm" +"320","cdm_holder","No","VARCHAR(255)","The name of the organization responsible for the development of the CDM instance","cdm_source","cdm" +"321","source_description","No","CLOB","A description of the source data origin and purpose for collection. The description may contain a summary of the period of time that is expected to be covered by this dataset.","cdm_source","cdm" +"322","source_documentation_reference","No","VARCHAR(255)","URL or other external reference to location of source documentation","cdm_source","cdm" +"323","cdm_etl_reference","No","VARCHAR(255)","URL or other external reference to location of ETL specification documentation and ETL source code","cdm_source","cdm" +"324","source_release_date","No","DATE","The date for which the source data are most current, such as the last day of data capture","cdm_source","cdm" +"325","cdm_release_date","No","DATE","The date when the CDM was instantiated","cdm_source","cdm" +"326","cdm_version","No","VARCHAR(10)","The version of CDM used","cdm_source","cdm" +"327","vocabulary_version","No","VARCHAR(20)","The version of the vocabulary used","cdm_source","cdm" +"328","metadata_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Metadata Concept identifier in the Standardized Vocabularies.","metadata","cdm" +"329","metadata_type_concept_id","Yes","INTEGER","A foreign key that refers to a Standard Type Concept identifier in the Standardized Vocabularies.","metadata","cdm" +"330","name","Yes","VARCHAR(250)","The name of the Concept stored in metadata_concept_id or a description of the data being stored.","metadata","cdm" +"331","value_as_string","No","NVARCHAR","The metadata value stored as a string.","metadata","cdm" +"332","value_as_concept_id","No","INTEGER","A foreign key to a metadata value stored as a Concept ID.","metadata","cdm" +"333","metadata date","No","DATE","The date associated with the metadata","metadata","cdm" +"334","metadata_datetime","No","DATETIME","The date and time associated with the metadata","metadata","cdm" +"335","attribute_definition_id","Yes","INTEGER","A unique identifier for each Attribute.","attribute_definition","cdm" +"336","attribute_name","Yes","VARCHAR(255)","A short description of the Attribute.","attribute_definition","cdm" +"337","attribute_description","No","VARCHAR(MAX)","A complete description of the Attribute definition","attribute_definition","cdm" +"338","attribute_type_concept_id","Yes","INTEGER","Type defining what kind of Attribute Definition the record represents and how the syntax may be executed","attribute_definition","cdm" +"339","attribute_syntax","No","VARCHAR(MAX)","Syntax or code to operationalize the Attribute definition","attribute_definition","cdm" +"340","cohort_definition_id","Yes","INTEGER","A unique identifier for each Cohort.","cohort_definition","cdm" +"341","cohort_definition_name","Yes","VARCHAR(255)","A short description of the Cohort.","cohort_definition","cdm" +"342","cohort_definition_description","No","VARCHAR(MAX)","A complete description of the Cohort definition","cohort_definition","cdm" +"343","definition_type_concept_id","Yes","INTEGER","Type defining what kind of Cohort Definition the record represents and how the syntax may be executed","cohort_definition","cdm" +"344","cohort_definition_syntax","No","VARCHAR(MAX)","Syntax or code to operationalize the Cohort definition","cohort_definition","cdm" +"345","subject_concept_id","Yes","INTEGER","A foreign key to the Concept to which defines the domain of subjects that are members of the cohort (e.g., Person, Provider, Visit).","cohort_definition","cdm" +"346","cohort_initiation_date","No","DATE","A date to indicate when the Cohort was initiated in the COHORT table","cohort_definition","cdm" +"347","concept_id","Yes","INTEGER","A unique identifier for each Concept across all domains.","concept","cdm" +"348","concept_name","Yes","VARCHAR(255)","An unambiguous, meaningful and descriptive name for the Concept.","concept","cdm" +"349","domain_id","Yes","VARCHAR(20)","A foreign key to the [DOMAIN](https://github.com/OHDSI/CommonDataModel/wiki/DOMAIN) table the Concept belongs to.","concept","cdm" +"350","vocabulary_id","Yes","VARCHAR(20)","A foreign key to the [VOCABULARY](https://github.com/OHDSI/CommonDataModel/wiki/VOCABULARY) table indicating from which source the Concept has been adapted.","concept","cdm" +"351","concept_class_id","Yes","VARCHAR(20)","The attribute or concept class of the Concept. Examples are 'Clinical Drug', 'Ingredient', 'Clinical Finding' etc.","concept","cdm" +"352","standard_concept","No","VARCHAR(1)","This flag determines where a Concept is a Standard Concept, i.e. is used in the data, a Classification Concept, or a non-standard Source Concept. The allowables values are 'S' (Standard Concept) and 'C' (Classification Concept), otherwise the content is NULL.","concept","cdm" +"353","concept_code","Yes","VARCHAR(50)","The concept code represents the identifier of the Concept in the source vocabulary, such as SNOMED-CT concept IDs, RxNorm RXCUIs etc. Note that concept codes are not unique across vocabularies.","concept","cdm" +"354","valid_start_date","Yes","DATE","The date when the Concept was first recorded. The default value is 1-Jan-1970, meaning, the Concept has no (known) date of inception.","concept","cdm" +"355","valid_end_date","Yes","DATE","The date when the Concept became invalid because it was deleted or superseded (updated) by a new concept. The default value is 31-Dec-2099, meaning, the Concept is valid until it becomes deprecated.","concept","cdm" +"356","invalid_reason","No","VARCHAR(1)","Reason the Concept was invalidated. Possible values are D (deleted), U (replaced with an update) or NULL when valid_end_date has the default value.","concept","cdm" +"357","ancestor_concept_id","Yes","INTEGER","A foreign key to the concept in the concept table for the higher-level concept that forms the ancestor in the relationship.","concept_ancestor","cdm" +"358","descendant_concept_id","Yes","INTEGER","A foreign key to the concept in the concept table for the lower-level concept that forms the descendant in the relationship.","concept_ancestor","cdm" +"359","min_levels_of_separation","Yes","INTEGER","The minimum separation in number of levels of hierarchy between ancestor and descendant concepts. This is an attribute that is used to simplify hierarchic analysis.","concept_ancestor","cdm" +"360","max_levels_of_separation","Yes","INTEGER","The maximum separation in number of levels of hierarchy between ancestor and descendant concepts. This is an attribute that is used to simplify hierarchic analysis.","concept_ancestor","cdm" +"361","concept_class_id","Yes","VARCHAR(20)","A unique key for each class.","concept_class","cdm" +"362","concept_class_name","Yes","VARCHAR(255)","The name describing the Concept Class, e.g. ""Clinical Finding"", ""Ingredient"", etc.","concept_class","cdm" +"363","concept_class_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table for the unique Concept Class the record belongs to.","concept_class","cdm" +"364","concept_id_1","Yes","INTEGER","A foreign key to a Concept in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table associated with the relationship. Relationships are directional, and this field represents the source concept designation.","concept_relationship","cdm" +"365","concept_id_2","Yes","INTEGER","A foreign key to a Concept in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table associated with the relationship. Relationships are directional, and this field represents the destination concept designation.","concept_relationship","cdm" +"366","relationship_id","Yes","VARCHAR(20)","A unique identifier to the type or nature of the Relationship as defined in the [RELATIONSHIP](https://github.com/OHDSI/CommonDataModel/wiki/RELATIONSHIP) table.","concept_relationship","cdm" +"367","valid_start_date","Yes","DATE","The date when the instance of the Concept Relationship is first recorded.","concept_relationship","cdm" +"368","valid_end_date","Yes","DATE","The date when the Concept Relationship became invalid because it was deleted or superseded (updated) by a new relationship. Default value is 31-Dec-2099.","concept_relationship","cdm" +"369","invalid_reason","No","VARCHAR(1)","Reason the relationship was invalidated. Possible values are 'D' (deleted), 'U' (replaced with an update) or NULL when valid_end_date has the default value.","concept_relationship","cdm" +"370","concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table.","concept_synonym","cdm" +"371","concept_synonym_name","Yes","VARCHAR(1000)","The alternative name for the Concept.","concept_synonym","cdm" +"372","language_concept_id","Yes","INTEGER","A foreign key to a Concept representing the language.","concept_synonym","cdm" +"373","domain_id","Yes","VARCHAR(20)","A unique key for each domain.","domain","cdm" +"374","domain_name","Yes","VARCHAR(255)","The name describing the Domain, e.g. ""Condition"", ""Procedure"", ""Measurement"" etc.","domain","cdm" +"375","domain_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the [CONCEPT](https://github.com/OHDSI/CommonDataModel/wiki/CONCEPT) table for the unique Domain Concept the Domain record belongs to.","domain","cdm" +"376","drug_concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for Branded Drug or Clinical Drug Concept.","drug_strength","cdm" +"377","ingredient_concept_id","Yes","INTEGER","A foreign key to the Concept in the CONCEPT table, representing the identifier for drug Ingredient Concept contained within the drug product.","drug_strength","cdm" +"378","amount_value","No","FLOAT","The numeric value associated with the amount of active ingredient contained within the product.","drug_strength","cdm" +"379","amount_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the Unit for the absolute amount of active ingredient.","drug_strength","cdm" +"380","numerator_value","No","FLOAT","The numeric value associated with the concentration of the active ingredient contained in the product","drug_strength","cdm" +"381","numerator_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the numerator Unit for the concentration of active ingredient.","drug_strength","cdm" +"382","denominator_value","No","FLOAT","The amount of total liquid (or other divisible product, such as ointment, gel, spray, etc.).","drug_strength","cdm" +"383","denominator_unit_concept_id","No","INTEGER","A foreign key to the Concept in the CONCEPT table representing the identifier for the denominator Unit for the concentration of active ingredient.","drug_strength","cdm" +"384","box_size","No","INTEGER","The number of units of Clinical of Branded Drug, or Quantified Clinical or Branded Drug contained in a box as dispensed to the patient","drug_strength","cdm" +"385","valid_start_date","Yes","DATE","The date when the Concept was first recorded. The default value is 1-Jan-1970.","drug_strength","cdm" +"386","valid_end_date","Yes","DATE","The date when the concept became invalid because it was deleted or superseded (updated) by a new Concept. The default value is 31-Dec-2099.","drug_strength","cdm" +"387","invalid_reason","No","VARCHAR(1)","Reason the concept was invalidated. Possible values are 'D' (deleted), 'U' (replaced with an update) or NULL when valid_end_date has the default value.","drug_strength","cdm" +"388","relationship_id","Yes","VARCHAR(20)","The type of relationship captured by the relationship record.","relationship","cdm" +"389","relationship_name","Yes","VARCHAR(255)","The text that describes the relationship type.","relationship","cdm" +"390","is_hierarchical","Yes","VARCHAR(1)","Defines whether a relationship defines concepts into classes or hierarchies. Values are 1 for hierarchical relationship or 0 if not.","relationship","cdm" +"391","defines_ancestry","Yes","VARCHAR(1)","Defines whether a hierarchical relationship contributes to the concept_ancestor table. These are subsets of the hierarchical relationships. Valid values are 1 or 0.","relationship","cdm" +"392","reverse_relationship_id","Yes","VARCHAR(20)","The identifier for the relationship used to define the reverse relationship between two concepts.","relationship","cdm" +"393","relationship_concept_id","Yes","INTEGER","A foreign key that refers to an identifier in the CONCEPT table for the unique relationship concept.","relationship","cdm" +"394","source_code","Yes","VARCHAR(50)","The source code being translated into a Standard Concept.","source_to_concept_map","cdm" +"395","source_concept_id","Yes","INTEGER","A foreign key to the Source Concept that is being translated into a Standard Concept.","source_to_concept_map","cdm" +"396","source_vocabulary_id","Yes","VARCHAR(20)","A foreign key to the VOCABULARY table defining the vocabulary of the source code that is being translated to a Standard Concept.","source_to_concept_map","cdm" +"397","source_code_description","No","VARCHAR(255)","An optional description for the source code. This is included as a convenience to compare the description of the source code to the name of the concept.","source_to_concept_map","cdm" +"398","target_concept_id","Yes","INTEGER","A foreign key to the target Concept to which the source code is being mapped.","source_to_concept_map","cdm" +"399","target_vocabulary_id","Yes","VARCHAR(20)","A foreign key to the VOCABULARY table defining the vocabulary of the target Concept.","source_to_concept_map","cdm" +"400","valid_start_date","Yes","DATE","The date when the mapping instance was first recorded.","source_to_concept_map","cdm" +"401","valid_end_date","Yes","DATE","The date when the mapping instance became invalid because it was deleted or superseded (updated) by a new relationship. Default value is 31-Dec-2099.","source_to_concept_map","cdm" +"402","invalid_reason","No","VARCHAR(1)","Reason the mapping instance was invalidated. Possible values are D (deleted), U (replaced with an update) or NULL when valid_end_date has the default value.","source_to_concept_map","cdm" +"403","vocabulary_id","Yes","VARCHAR(20)","A unique identifier for each Vocabulary, such as ICD9CM, SNOMED, Visit.","vocabulary","cdm" +"404","vocabulary_name","Yes","VARCHAR(255)","The name describing the vocabulary, for example ""International Classification of Diseases, Ninth Revision, Clinical Modification, Volume 1 and 2 (NCHS)"" etc.","vocabulary","cdm" +"405","vocabulary_reference","Yes","VARCHAR(255)","External reference to documentation or available download of the about the vocabulary.","vocabulary","cdm" +"406","vocabulary_version","No","VARCHAR(255)","Version of the Vocabulary as indicated in the source.","vocabulary","cdm" +"407","vocabulary_concept_id","Yes","INTEGER","A foreign key that refers to a standard concept identifier in the CONCEPT table for the Vocabulary the VOCABULARY record belongs to.","vocabulary","cdm" diff --git a/OMOP_CDM_v5_3.pdf b/OMOP_CDM_v5_3_1.pdf similarity index 91% rename from OMOP_CDM_v5_3.pdf rename to OMOP_CDM_v5_3_1.pdf index 7ef89ec..e65dca5 100644 --- a/OMOP_CDM_v5_3.pdf +++ b/OMOP_CDM_v5_3_1.pdf @@ -304,11 +304,9 @@ endobj >> stream xÚí[]SŁH}ź_Ác§j`úxŚ•]R@¬µf·RLDeŤÉT’™*÷×oCHb«Ń•—@ôÇą÷ž{ű€P»Ô vô ÇčÓ—Cdkśc¦EÂÄŕDă¶m@nkŃąöř}ŘŃ ÄŔ™ßÜĚgňĽŻbyÖźwtĚÁy2•íđ{ŢN&éßĐIĽJçłeçźčŹ/‡h6c8L§¶aaKÓ‘mŘËŃś«Eş\Ąq6 čź$ť\}–íaĽZ¤“ëâćm<ű\ţf ˝ą‰eó ™&łëř6.n˙™u/VWińč@L‘_ü·*žťËg§‹˘źi<ąNVÉ"›ż -6dĹ„™ś0†ČÔŇ1*Öhj„rąF ©aBSÓ‰%ž!Ĺ"ŠU"9:•YD–&ŕ$â’čÚ°‘%E] NŇI2[&kjbL›X4äĚÖďęĺíµţ°ěď žt×—‹ůz·Âř˝ŮꔚÉŤšşxÄÓFc]%YB@0źćgĚ/ä•Uy«r3qłp3q5w3+włµŮ}ŐMĆ€ŃŃ„O:PŰ~Îă/w¨-q -Y»ZÝ…uĽqw/Y¦—3‰ŕp‘Î&é÷i˛¬wͨů: űm±~«Ň*…WSéŐfAž˘ť1đňźŮO’źVôyT˛O˝GŁî¦ŤRcW]pµMé:'ɉGÓůr/n…e,"iʢ ęŘ"ą-n–;IŇTá^*Ç W"őÄ‹óôżä\ŽušŤ!î»+5جÔŕßŮ©ÄjsÚţ]H­<1+1Ř銝|č5kI+1îíË`•jwł’Š ©ĄMpęőÜĆG0ä7ĘsoŇň›ŞEľĄZÄŚ3M'ĐŔÄ,˙Gëţߺѧ˙"äĽń endstream endobj 198 0 obj @@ -704,19 +702,20 @@ endobj endobj 269 0 obj << -/Length 2470 +/Length 2473 /Filter /FlateDecode >> stream -xÚĺYKsŰ8ľűWč¶T•Eŕ{nIěLĽ›Ä^GsŘšLĄ Š’¸áCKPÉ:ż~»Ń Š˘ŹgŞ˛»“)D ĐŹŻżî†˝ŮvćÍ~<óFżĎ—g/e2KÝ4’Ńlą™Ĺr Ďőüx¶\Ď~v’ů"•ˇó®SőZµëâKľž/üÄw^ĺŞěvř8WYS7U1N¦iäRuŠÖ-çiä¨U™ëů/Ëżö'Ď~^H‘DľÉ“ń‹—"#7 ‚ŮB7 CÉó…đ¤tnçpŔł9ś÷Ź«»·Żź˝ýp{uw}sůŕ¨(uÜů"ôĽďĺ'H—F#»xcôÓŢŘě’ÍţâćÝrĽSËďŮn˙ŁźIwů“îĹńÂFŽŠ„\~-/ó¶ř4÷ĄCŃ%s^ĺőÜN÷0t“@¦N˙ÖĐMűĐ}qóęćnnřaŚ$Ď˙ă9ę˙s“ŘIžęé Ô­›><3?Ë»ëç?-ŻĆ»Ç‰˙]ŕoÖčˇŐ…ĄO´şĎVżĽ›ËÄůéÇWwĎ„‡źü ďż•űbďq×DÖ5uÍÍ»«)·$Qüçů7ç©X>1bž§Ţ^^/ŻoŢNů&ţ#WßJ“öG™]ĆĎý ’'Ĺ…ź¸©ôÉŮTŻ‹,ŻuŽŚ*‚…çúq -%IěĆ)—$ď}OŇŇ ¶!nťÇkd(&¶6EČÔ.’ž€ő}ßąYéĽý4CGuES«’†ű†žą=§wY‘×Y®é ę"|śëzÓ´PU°E¦§w=/ł˝™€†ÉŤ1 EęƠ߲q–»Âě)śĎČĺMű‘ŢěčJiSkůžÓÔýÂŘ.ôśľÝÓL·ËipR5áĽÉ×EF/°ćĐeM•ó9·xşj»:oő®ŘÓŕ{/ônŢÜÜÂŻ VÜs,–pő:o§4·ZËYčĹn"ҸdżCnÚ¦˘'–=p^ľ˝~ĹVî şoőqfźţ†Ä;”şëö?\\4Ułw7u±s›v{±?¬ŕśň±t Ë#i=7MŇź¤Ię&© ©ź•Ćl‰łĆ‚«ŕ0Bă~B ršz0vÔ¦»GÖ-qĐ4ôâň } -čWĂľ`v(—s쏋÷ždĆ{4O€ťµńaGÖĺ›Ń{řÚ(Ďâ6•*jä‡PXŔtk…7ȶ…xX^ćşŘň¦·€˝¬ŘŹ/¸¦·:­_ŽiČČ“yXęůźüA@„¨őáÖ$ăXžDö©"¦ -9Lâ$UČ©T!¤ -I! řEJ{Ăźśro—ëNÁR˝łYf2śžeIŰgßłĐPAdjťW…:犏ÓoŕčC–a"×zs(KćfERů§!{ł®°YQiZŘ5?Śhí¤(ŇqÄńćŰÚTxŹÝ‚!”Y›4rS/žI`âŘă´ qŽ  ëUy·c 4eł=–thkĐĘš›×Đo^í‹×â•;)§Ŕ/2=âfoČ[“ľ!±˝ę9!mŃŘŁ -Bĺľ;Š2Q?â9«k(Ü8ääjYD)Z6ýŞ(čňY)pÎڲކťŘµEfyĄ5:+# ÷řč‘Ö\Ńc(«RóX…Ő뢆Á­>Ěé đz ů„¸ÍëĎBŽLáCw˛Ű/ŠeĽ(©ÜĂężÔôNš ‚jOF* 'ÁČĆ~ÓŞZŁIŤsÍĐš;ŐŞ ĘÔâËÉďšWż™a,405c%6$Hë4L–?ĹŃ–“€­˛¶Ńz”‡w}ű8™3»r×-@3F3đyu~ěĚľ…—‘"t“„˝te“Ť"Iq ‡Ŕ3¦±µ–Ť5Ő ŁV¦pRkCăô!±gěđî=㺥şfŞć‡¦,ŐŠPŇR©€îY¶5D.€•OţuŻy>0)«©~J~ TÍX†UÇš#A­%Ńj”B˝Ń_tż ˛XÂ=‚o ů<ç¶č30ńwBŐ…-,Šq·#ščç:îşP"ÓpŃhÖÔ›Ľ5MŠ8§ä Ő[yXc,<±d'®ř6;™öÂAßWäFj˛W=­ŕüQQ{ĚjŻó­Ę,»¨©FçĺPR,Ý?Š(új<ň ”ć"ŽO<č3 -Ó"ŰT™ॠ<9h.‰ˇnź.ľ»ÄhftŚM”Ă0Á( 0ŕhű»ŃĆŘ/w ]ś¨ţGBgBí B¬+ O-LS*ÄŘÄśy„¤ ®ô‚Í‘Y® Ý0 -[cÁ>ěYŔ‘*LE$âă‚ÂvÓĆXřéŠÖăÉźĽ+ŘBRGMW‚/•đ+J{‹˙çnw§_r°ĺúă…—€vNFŚ{Űđ`·H¸’ÉńâjP~Ce×ß:ŕÂ>ďäđÍ ź\9ŕĚčʇ ťŕŮĎĐ ľžôfW»;íM /»b ?šl´kJ ëó %ąÇäv„ř§E·Á˘V-_Üő¤ťiĂšăĹ’ŕjGš|ý7·n çżzŃgX¬›ňĐ×:Â&ĽJäËlÝI› [ÚÚIöüTGĂś§K›l ˛G襳ĘbÁuzoµ<űW“— +xÚĺYKsŰ8ľűWč¶T•Eŕ{nIěLĽ›Ä^GsŘšLĄ Š’¸áCKPÉ:ż~»Ń Š¤ŹgŞ˛»“)D ĐŹŻżî†˝ŮvćÍ~<ó&żĎ—g/e2KÝ4’Ńlą™Ĺr Ďőüx¶\Ď~v’ů"•ˇó®SőZµëâKľž/üÄw^ĺŞěvř8WYS7U1N¦iäRuŠÖ-çiä¨U™ëů/Ëżö'Ď~^H‘DľÉŃřĹK Ä›Ál!„›†!‹äŠůBxR:·s8ŕŮÎűÇŐ݇Ű×ĎŢ~¸˝ş»ľą|pT”:î|zŢ÷ň¤żKŁ‰]„Ľ©úiojvÉfqón9Ý)Šĺ÷l·˙ŃĎw…ŕ®ŕ¤»&qĽ°‘#Á…"!¦_ ćËĽ->Í}éĐDt ÁśWy=÷…Ó= Ý$©Ĺż5tÓ>t_ÜĽşą›~"Éó˙xŽú?ÄÜÉPOžęé Ô­›><3?Ë»ëç?-Ż¦»Ç‰˙]ŕoÖčˇŐ…ĄO´şĎVżĽ›ËÄůéÇWwĎ„‡źü ďż•űbďq×DÖ5uÍÍ»«SnI˘řĎňoÎS±|bÄ„=O˝˝Ľ^^߼=ĺ›řŹ\ý}s(ť´8Éě2Ć|î‘~â¦Ň'g`fP]Ľ.˛ĽÖ9n0©žëÇ)”$±§\’Ľ÷=IKx؆¸t"Ż‘ˇ8±´)B¦v‘ôĨďűÎÍJçí§y:Ş+šZ•4Ü7,đĚí <˝ËŠĽÎrMoPáCŕ\×›¦…¨‚-2}ęp×ó8Ű› hÜ(łP¤n ú-+gą+ĚžÂůŚ\Ţ´éÍŽ®”6µ–ď9MÝ/ŚíBĎYáŰ=Ít»śOŞ&ś7ůşČčÖş¬©r>çOWmWç­Ţ{|ď…ŢÍ››[ř4Š{ÎĹΡ^çí)Í­Örz±›Č€4.ŮďĆ›¶©č‰eś—oŻ_±•;.Á[}śŮ§ż!qĹĄîşýMŐěÝM]ěܦÝ^ě+8§, €¤mđősŻ,ZáË=-(•™&:˝Zž O‘ëEé,«Îţu†Ľáyě…Áł™LQ|a‡.®+1»lÎţ§ÂĹž˛€csĚ˝ÎXăČw}yĆpć ̲6ďQôQ5µˇíâKŽśŘ\€ŕŹ'TÓF Br‚x®2ě*?nŰ8ć«Tp"y„“ä±´îşkJf™f3˘ßya”Ó~ŕĽđ’tĺHŹ“”ÄëÁË\[Ţô°—űé×é­ĆőË1 y#K]#˙“?Ő“>ÜšD`Ë‘Idź*˘aŞĂT!F©BžJňAŞŠżQ´ˇd±7ü‰É)çńévąî,Ő;›eN†ç„¨|/tĂ€ka?NŮÉHű}ŰŔé|pŠiŚ cC ›#)ĘĐ^¦Zţn ÁÔĚä±A¸3ĺčî°ľ'šťˇűyfčĎŮĐpu´sę€päެsżRM„G…eę»aĘyő†@ĐNJ¬9´šÍLJzvR8áâŢ|¤ř+ vţ ‚N~·0Üî¸:!5p÷ŞBý‹®ŻE¬A‘–5lźá1;đ0MÚ´;ŐëîÚ{Ľ48§ˇ­aPÖ¦®ÖçŹÓłL iűě{*L­óŞPç\ńqú }Č2LäZoeÉܬHĘ"˙4doÖ6+*M »ć‡ ­ŤŠR!]Goľ­M…÷Ř-B™µI#7őâ™&Ž=N»ç +˛^•w;JS6ŰcI‡¶­¬ąŮq ýćŐľhq-^ٱ“r +üň@!Ó#nö怼5éűĐ«žCŇÍ=Ş T(ő#žłş†ÂŤCN®–…A”˘eÓŻŠr€.ź•ç¬-ëm؉]‹Xd–WZ łB1ŇpŹŹiMÁ=†˛*5o€UX˝.jÜęóÇśľŻÇ‘GÄýk^‡xrb +ş”Ý~ÉP,äEIĺV˙Ą¦wŇT{2Ra8 F6†đ›VŐÝHjśÓh†ÖÜ©VeP¦_FsĽkB^ýBd†i°ĐŔÔŚ•Ř ­Ó@2YţGCZNv´ĘÚFëIŢőíWŕdĚě +Čy\w´ ÍÍŔçŐů±3ű^ +'zĐMöŇ•MVl4Š$ Ć5ĎĆBÖZ6ÖT7Ś:xX™ÂI­ ŤÓ‡Äž±Ă»÷Śkč–ęJX©šš˛T+BIKĄZ şgŮÖąV<ů×˝ćůŔd¤¬¦Fř)=řY$P5cVkŽµ:”D« S +őFŃý‚|Čb ÷ľ-äóśŰ˘ĎŔÄß U¶d°(ĆqÜŽh˘źë¸ëBm@LĂEŁYSoňÔ4)âś’3ToĺaŤ±đÄJtťD¸^ŕŰědN<Ř }_]¨“˝ę¸‚ó'Eí1«˝Î·*łě ¤ť—CI±t˙(˘č«mđÄPš‹8yĐg¦#"ŰT™ॠ<9h.‰ˇn?]|?,v‰ŃĚč›(‡a.‚Q` + ŔŃövŁŤ-°%^îş ©ţGBgBí B¬+ O-LS*ÄÔÄśy„¤ ®ô‚Í‘Y® Ý0 +[cÁ>ěYŔ‘*LE$âă‚ÂvÓĆXřéŠÖăÉźĽ+ŘBRGMW‚/•đ+J{‹˙çnw§_r°ĺúă…—€vNFŚ{Űđ`·H¸’ÉńâjP~Ce×ß:ŕÂ>ďäđÍ Ź®pfrĺ€C†Nđěgč_G}‡ŮŐîN{čË®XŔÂŹ&íščúü†’ŔÜcr;BüÓ˘[ ŤŤ`Q«–/îzŇN‰´aÍńbIpµ#M>Äţ›[·†ó_˝čł ,ÖMyčka“ ^%ňĺ6‡nÔ&Ç‚¶v’}Ş#‚aÎÓŹĄM¶„Ů#ôŇYe±ŕßŰ_-Ďţ”ń™ endstream endobj 268 0 obj @@ -1927,22 +1926,17 @@ endobj endobj 370 0 obj << -/Length 2767 +/Length 2771 /Filter /FlateDecode >> stream -xÚ˝YYsŰČ~ׯŔ[Ŕ* ž WŞňŕĄä¬7±ĺŘŠ«¶ě­ BjA€Hk•_źľ)R˛·’Ľ9zzúüz ‚Ű@=QňţáęäĹ+“ZGy›ŕę&HMj)›W‹ŕSč"3;ÓÚÄáÇ™Őáĺüĺ˙üűË÷łÜ…?Ď~ąúéĹ+ťy”'&Áĺ:R:Ú*Đ@'Jś’,Ž ¶jWwŐěĚš ™tK,3@Śú×ĹőL‡ŤĚŞŰ˛Ů,Şż -~5ő°ĆVv7˛hK(uł3+‹ëMSôµ_\vMS•ëjÁź7}·d"_g± ab·‘™0ĐmúŇŻězˇĐWŸ~Q>ĽŠýáM¤6JuĚ'o»,űŠÇ­Uá5v<`[Ë  óňÍĺ;n•Ýr‰36m˝ĆUłĚ†ŃěĚ9bë×öŐMŐWĐŃ–•P+®ˇÇ“T¸ˇŔQV >ôÝ×ë;nüęö¶=¬Ę®_đç IćTE‰\ÉÂŹČTG´Eŕ‡ä2‘I˘Ł4a‘ $e$dâ]pc˘rěĆ—i%đÓ׫uM"”Um±Ü_ß({^U ¤Jć®ö熹ëu__oÖĽ‰ op–¬EŘíÉŇíÉHpĽ“‹«“/'ă©ň(Si¸4rI”Ë“Oż¨`c?*Jó4¸§™ËŔĹ&˛ZH|8ů»ßŽ¤<-G9Zzŕ«şj€ó<Í“đ}őeS÷xť'.Ľ"bÝßqSÎAV$¨®=ΫU‘MÜ>Ż.ĎţŻ:ŕ‘3Ż_‘ˇ]{řµnăÄ)pq -ÝŮÜ ß%ŕwlME˙YĹĘ(xꤢÜë€u­·Ű˘%˝D§tč*_6 -â°Ą.Ş©ŻëĎĘ:˛ -Ä– 3Đe¶Ć # ňĎ'*OÂS ›ĂÜăö=ň¦RŽy+Ä”_ĎĎóů›S6ło/ß\śźŠ©ŐC˝&Ă -ÎL˘˘–žqH>.U6}§żI®qL‚cvZbđŽ÷,Čf®Áýů[ĽŔíí AxGi"ă»|'Ěwő{±\5˛ÇgPďkÖGŐ·ÚgŃđĐĽW%%•Ô/ž|C”Ő®,Îëˇ*†jýßÖLňŽ?ßW_A]+bž7u‹†PÂNh˝á“-&[źN˝żŮŔÚĄBďĂÝ(ß·ó? €á2«Z—ß«PăĂaMňX«ńZUáĹď$V‘č„éł“8*młĎĹíŠ~ Î]ČBÝřäb‘ôß·MW,FťIĹô!ařš6í6ëm%ѨȀ?'Yć‰,Ť‹wŤě,©Żę>śÓä#î;¤Iú Ś›xĆG$¸Ç)d• ’téóö—đw8)~Żń”čzµ¦X«ăxßzÄIŞ[ ‚±I5ELKÁ°Şo匿‘ÔüA ŃÚ&_9Ű’¤fŕw QL8z4áMŇűăLI/űÎ/ßÎ/Ţ] +dqüW@‰=µ÷µ2™±<ĹîSîGčcĂkNŻM×ŢŢťŽĂçâ(Ë’ď†&›¦V8mŁÄCá‘F«p&iŃ„áQQ}x †<®ńĘĄÓü«tťY_pýgŁŐŢšc)7O˘NfłĽ/|O‘*#i’<ěZéđÂĂNRvnq#~Lµ1Á[čşdJůvÚTť¸ŢCGÚWv`§oţ»,ZžPĂFX* (0‚µ §GPŰ“IšF&·,“)4Î$bähyKnQ!9–Š–şç ŁüŇ#<şŕĎşÉpă#˘]ć R9ˇ cţČDé´_qIŐźîQbn»şô±:™ľż«<ŽÎÁÓ—:űÁ|mGÖJˇwÄ5FôŔuQ·RżĚ9>Đ— 'e+… ­ŕ~š }+˙ŤŘAŕ€o˙v¬¬†jŹ$G î,yýČÜ°®×P>˛ŮÓ~lÁ‘ŤT3ŐŞč!ŘřÓüX%ŠC`—m·ćö -´ €¦yŕOΔBbC Ě4Gš’đMzä‰  §P)Ö~ĺď{Šă´ďx8a„ôşw,R¤Ó‘3[EŻHĚŢY5:kŞ“đ¶QîÎ(ŹřN±L•pŽÝ€}Ďrn~¤éÍf)C_ša~~•ÍĐ4ž‚YzѦp™ŚţďIŞ’%-őRĘo^{‹nEẏ=ZąéÇ ů¤ -€ćĆÚ(QŃw‹ŕťâ\tr!öÓ?vîĹA­ŤđřY…a6e…ŮoVĘ÷4¦ˇ”Ęł©GYuP7ţ&KM| -áé]¸©¶Wí7›¦áy¬JĘš/OT¸ĄĆ×čV [< D:•›tA’ Ľ›f·wÜ{{ő­äâĺĹ*ĺÎN˅δz^´ °oľţšzút–DJ¬îb[çĺéÁ:>đÖeŕ”µaËm±s?§nůÍ0 ă­őâ­Ŕ)­ű»zş+U¤ą/DŃ–’{ň"…˛Űař¤S©XţëÁj‰ÁJé‡ Ŕb~Ç’˝ cµéĺ' —ĐEćoú·1Ö†ĐQHÓq|:Ż§ýĺeŐеƚ‡&dx0©bP°ĹďYËr6E+ś k~ţćů(Ż©\îÝ 9Ęíß-.Ůl˙qŤ˙rč’~{;(Őß˙#hç"í˙DľF9 ”/čo"”CÂýŔČÇH?™wŞęüµÄ Ţsźń2u4‰ŕ -€U‹«;~ŹŐ~ü"gćkhźú‰4ţłl6XěÇą _~ެ‰ŚŢ–8˘ŻÝ 1ţ8tžúőČÁ¬jÇ”î‘b×,vnĹ]ŘV÷ň»ă\€Z-ď[ůs×îÝŞQĄđçÇ÷i ©<-ШtŁźşP3i%±yâ_ŐHL%‘Mäćř‚ţíËŮD·6üů××県š\sBˇ“ĆO-;~Ą˘LÇOýyűöÓdPµj>‹Nm–ĺ!Â’C7šú)<ÎKą–Úń©ŠkDxőnăČ:ÉÚíL†˙}î(ô +xÚ˝YYsŰČ~ׯŔ[Ŕ* ž WŞňŕĄě¬7±äŘŠ«¶ě­ BjA€Hk•_źľ)R˛·’Ľ9zzúüz ‚Ű@=QňţáęäĹk“ZGy›ŕę&HMj)›W‹ŕSč"3;ÓÚÄáÇ™Őáĺüĺ˙üűË÷łÜ…?Ď~ąúéĹkťy”'&Áĺ:R:Ú*Đ@'Jś’,Ž ¶jWwŐěĚš ™tK,3@Śú×ĹőL‡ŤĚŞŰ˛Ů,Şż +~5ő°ĆVv7˛hK(uł3+‹ëMSôµ_\vMS•ëjÁź7}·d"_g± ab·‘™0ĐmúŇŻězˇĐWŸ~Q>ĽŠýáM¤6JuĚ'o»,űŠÇ­Uá5v<`[Ë  óňíĺ;n•Ýr‰36m˝ĆUłĚ†ŃěĚ9bë×öŐMŐWĐŃ–•P+®ˇÇ“T¸ˇŔQV >ôÝ×ë;nüęö¶=¬Ę®_đç IćTE‰\ÉÂŹČTG´Eŕ‡ä2‘I˘Ł4a‘ $e$dâ]pc˘rěĆ—i%đÓ׫uM"”Um±Ü_ß({^U ¤Jć®ö熹ëu__oÖĽ‰ op–¬EŘíÉŇíÉHpĽ“WW'_NĆSĺQ¦Ň qiä’<(—'ź~QÁĆ~ +T”ćipO3—‹Md3´&řpňvżIyZ6Žr´ôŔ×uŐçyš'áűę˦îń :O\xE&Äşľă¦ś¬HP]{śW«"›¸}^]žý^uÁ#g^ż"C»öđk ÜƉSŕâ @şłąAżKŔďŘšŠţłŠ•QđÔ HEą*ÖëZo·EKz‰NéĐUľl(Äa J]T-R_ן•ud0‰-f ËlŤF@ĺ11źOTž„§607‡ąÇí{äMĄ óV)ż™źçó·§lf..ßľ:?S«‡zM†ś™DE1,=ă|\ŞlúN“\ă Ćě´ÄŕďYÍ\űó·xŰŰ6:‚đŽŇDĆwůNďę÷bąjdŹĎ Ţ7¬ŹŞo ´Ď˘áˇy®JJ*©_<ů†(«]Yś×CU Ő ű_ÔLňŽ?ßW_A]+bž7u‹†PÂNh˝ĺ“-&[źN˝żŮŔÚĄBďĂÝ(ß‹ůŹPŔpD™U­ËďU(‡qŠá°&y¬Őř ­ŞđŐď$V‘č„éł“8*młĎĹíŠ~ Î]ČBÝřäb‘ôß·MW,FťIĹô!ařš6í6ëm%ѨȀ?'Yć‰,Ť‹wŤě,©Żę>śÓ*Ľ€Bôó‚$ŐŹkÇ3Mśâ#˛´Ç$ۆ$”lňséSöîr8~ŻÝ”¨yµ¦0«ăxßpÄ?Ş[Ś±I5KKq°Şo匿‘ŔüA Qšć]9›‘deŕw ÎPB8z4áM2űăpLů~/ńÎ//ćŻŢ] +dl\Wđ=°÷µ2™±9ŔîSîGÔcĂkάM×ŢŢ“Ž#çâ(Ë’ďF&›fU8mŁÄgŔß‘F«p&i1ŔŁ˘&şď@ yH˙âµK§© VŢ:3ľ@úĎF«˝5DzmžD9śĚf98^6břž‚TFčŇ$yصŇá…‡ť¤"ěÜBFü:ecB¶ĐuÉ”ňí´©:q˝GŤ´ŻěŔţŢ.üwY´<ˇ†Ť°6T0F`ËŞNŹ·'“4ŤLnY&STśIÄČŃň–ܢÚAŇ+Ő+uĎAů¤GPtÁźu;’áĆG »Ě¤hBĆ&ü‘‰Ňiżâ’Ş?ÝŁÄÜvuéĂt>2}Wyť§®r&öůÚ$Ž¬•ď#jŚčë˘nĄt™s| /#ÎÇVjZÁý4úVţa #Ţ ˙íXT ŐIŽ@ÜYňú‘ąa]Żˇ*8|dł§ýŘ‚#)dŞUŃC°ń§ů±"‡Ŕ.ŰnÍíh°LóŔźś$…Ć;hŕŽ41%á›ôČANˇH¬ý(Ęß÷ÇißńpÂéuďX¤H§#g¶Š4^‘•˝łjtÖT'áklŁÜťQěťb…*á»öžĺÜüHÓ›ÍR†4ľ4#*ü6ü*•ˇi<łôźyÎhJäUŘ]tËş-x¨yxşđŠ4yäRQ$]ÔSŬŕzčiěZő2*dpÓWĎ©*쮇ŞgN*Ĺ‚.¶ł¤ŕÇé"ěă€ÄňÁ!ËÝ^~'/Św˝čć2,“l” Ą¶ÇÇŐikQđTb9IěĚ*®0叧ÜĘp¸Ŕčo•pU4őż âŔxŻ%řätϡůt>ďŕ$t»ˇ!Ą;ŮČ×ôĐĽ ˘Ă¤ăęl~uDĎÉŢÉUĹɨč­L!pIčÉ&¸5ăđŔĂsoü)5Ů]ÇfJA:&ËGM±4™†o@čXOÓFĘŮtoá /4¤j˦H–ŹT¨" Č[Ô,‹w T“şa·fáÓ{ r¬­Źaa v.´lú[ŕ[; >1p”‹rRxí˘™8˘ĽEfÝ »EĆ4é>sasť&Ž;pOŃĘ»YÝ4AˇŻK*ď JŁÉR†×#vW)c &2tÜş&źö6C%ű˛«ř[ś¸îˇ–.ü5Ň3ö”ŕM§ŕĂ˝zé dŽ˙}ý¦p™ŚţďIŞ’%-őR*o^{‹nEẏ=ZąéÇ ů¤ +€ćĆÚ(QŃwëßťş\tňJě§ěÜ‹Záńł +ĂlĘ +łß¬0•ďiLC)•gSŹ˛ę nü%–šřÂ9Ň»pSmoŮo6MĂó:X•”5ß›¨pKŤ%6®Ń¬¶x@t*—č‚$x7Ínď¸÷öÖ[ÉťË3ŠU6Ęťť*– ťiőĽ*&h`/^zý4ő8ôé,‰”XÝ«mť—§ë<řŔ[—gPÖ†-·ĹÎýśşĺ7Ă$hŚ·Ô‹·§´îďęé®T‘ćľE[>HîÉ‹Ęn‡á“N]¤bůĄ#G¨%+Ą-‹ůKö‚ŽŐ¦—˙/\n@™Ľé·ĆXBG!ýMÇń輙 ô÷–UCwÓkrd\áÁ¤ŠAŔżg-ËŮa®ül‚®ůůŰ磼NL¤rąr/|ä(·?¶¸dd°ý˝5ţơűůíĹ T˙Ź  ť‹´˙ ůĺ€Pľ ‰P ÷##ýdŢý©Ş;đĂ'x[Ě}ĆËÔŃ$‚c(V-®îř=VřQđ‹ś™o }ę'Ňř»˛Ů`±ç.|ů zł&2z[âľv3ÄřĎĐyfčŻ#łŞSşGŠ]łŘąwa[ÝËźŽsjµĽoĺ§]»w«F•Âźߧ¦"đ´@ŁŇŤ~ęBͤi”Äć‰ßT#1•D6‘KăwnřŹ/_ fÝÚđç_ßśCp2jrĚ …N?µěři”Š2?őÓíŰO“AŐŞů, +8µY–‡KÝhę§đ8/ĺZjǧF(®Yŕ­»Ť#ë$Sh·3ü'Ć endstream endobj 369 0 obj @@ -2708,18 +2702,20 @@ endobj endobj 453 0 obj << -/Length 2323 +/Length 2303 /Filter /FlateDecode >> stream -xÚÍY[oŰĘ~÷Żŕ#X›˝ňňć8mzě4V '-Ńq(Ę!©$ţ÷ťŮ™Ą(Zľ¤@Ń>Xä.ggçňÍe×2ZG2úë™äç×3O©(ÍE&Ó(UąH¤Ž–Űłß˙Ń -ľýI‘ćiôÝSn#ë´0™÷:ş>űÇŮ_goŢ«$ĘEžč$ZÜ Ľd&¤MŁĹ*ú=~_•őj6WZY*żî«¶ś©¦ŚImĽé,~¸źÍáQÎćIn’ř—˛[¶Ő}_íšŮ‹_Ď.'ä•ZŘ<™ĘkóěçĺMr%d®HŢĺ®Y–÷ýM÷ĐŔö(Üö¦)¶%Ę«eüy–ٸěfs—I›ą$.Ú%ŇmŠö‹tRI)á©€^e2^lüJu_¶ xSôŐ·™Nc?oâŔŰÄw»–^zXzGF¦ţ˘ąR"wŽä{Gň O1?IRÍz_¬Ë› KÖ¶™3é+Ż__®A°y˘•Šß’”ŐşˇÁźHT>ýŽ& z°0OKŰ–÷mŮ•´QŐ¬ -ú— ©xŇῳÓî§q©ł±źu”¨ThgI*+RRĘITafĐ“đSúWÄ]ç -Ńňć= ůŔNiˇŇ$šk+LÂ0˙˘•ś¬9‚ Lłfy"rĐĚĺZd,ßÂrkĂpŇ3ępň‹4ÖGS |ú˘)aƢ3đ€aV1ÝőClřaKs»;zăÍús% -ŕ°¬÷+ď$üŘ‘VŽŔŠ#ŇĎUÍ´ž(+„ᱲĚMĘX2ôwUß•őťžÖĆDÉoe‘•Ç$ŇŘüŠMŃŃlŃӳƬRt<Ú5%˝\Ăě!’i…GCä|uůîâăâćúóĺŐĺçßřkq[0Ohgę9€šK2‘$ĽzoQ2“Ĺ… <.Űűş<§YŽňśB(‹Ż/Ż~»řeţnAłď—ŕÇęŽfű ¨QŇűÝľ®čsÇysYy„¬ dXŢŃL‡x‚f‚‚ä0ĚÉ!@|ň*Źş ­HeÄ•‘Ś|a‹ň,ZňśL hi´Űň®lI:.f™‹ËvKŁ˘áékňb^ěřS×A6‚™e…®ďďUż™Š3@×µ<Ű‘Mk«&ŞZ'dÂŢ­šI{ Ě“xžJ"PEjÔqş|)‹ ’‰pĆĄŘW A#ćĘŘ\C>TĐ˙ŢVĆĹŇע<ㆲÜ?Ľµ{ţŇ2TşŽŞ&pćő'L‘SĚ­Ăjő§Ą¨ţ3ÍI¤ĺ µʱůGeůÍŠú·OL¸Ű¦B ٬Oo‹ű{®>9&w·Ý®.ű ŘÄ`׺12o řŔhęŢ\?Z"n·ď_+™ -Ç!pę–»ˇzÔxl]÷ Wц&ĘĆ˙B«îü˘eq»Ż‹¶*»ź_ňĘFk$÷!«ć2ź“;† ‰/šu]uLMe¤ םrĹąV§…„ö’B‘E[ĄČęw†Ő[yćć-<®Wź^Hש‰U‘5ąĘŚJŻO˝S^„„/ăťť ¸Ăî22B@JWA˘Żî}€/¤i©IDuŔ%ĽA]ęÇ[ozżowߪՀŘQ˘† i*IŹz čx¬†í¸żŘTeëűÔ4ĆRR-I ZíEëüô}Gł·&čP{¤˙îűż˛:> ôđ÷1m†śŁă´öËžŢď ŹčSćÔWő*ě ¦ĽŁö;f~Ç wLĂŽCŮg:D v›]•Jr{R”VľOŃlAśNţtń÷·łLÇ‹W—×ű𑾆\•Z…ąJcTáňĽÝV 3ŮTë öĚř^—ÔÍ×4,@خDŽë–ŢZ Xµ=§$XÔőiçI5ŇHBZ·i¨9« -đ°'§±ˇ1íŃđŕĂÁśŢi»=Ů\C·„ăñC1d»Ó !˛jÍĹÔp{…O€lŔ+¶Č[ęŃLýšPDG^3pîR9{młĐ–]ĐnąóÉŽÇś•·ăkŮkËŔrośsV¦#4bŁxVÇëň+ňDׄýÔoőŘęĘ×›—ÂŇŔÁFvlżŮu¨t’Rţ‡gŃ„\€“˝Çľzśegcň@éPsYćźĺŚ$áś'ŇZ’ćĆëzçĂ®Ł1^ľîËöÂ4ž&ÚaÉĄ;išŔ‘+c÷b­.ˇl‘źĽ˝×wěZń¨çí܆"VuŁÎ“Sśéâ…’5jÓV„¨Mܵ»-łťC‡íűtęôĺĽán„>«Ăççí¤ť€r<Ę݉ˀ NÜ6‰Ś2BfĎ_ŘT¤2{ćŇ'đ’J8ŁŽ/©T’—T8¶ůŁ*5őů*Ţ@çMĎ]P˝VVťYáRn~JŽow\žâíŽń·;&דŰ‹‰íŐ·;ĂŮf9ś›|źv€–`ť@ŃͲă&ňhŀšŤµŢTDçăĽ6ÚńŮ#¨Ă/@Š$±!—úZ%îEgDN€j°ŤĽ*2ÜH=mJÄ3  >±8/?•ÝŽ<ç"÷xĆŽ=c¦ž±ŢNŘ’©íѱô±sÜĎ:‡+‚a⣣˝q+yĽI8gšÁžq¸Ŕ°l,¬č%¦1ĽČéMâÄ=p48@čŇny»›ÝÝMWB1§6`®Ť˛ě ě FIŹ˛†vŐ™í·|>qGEĂDđË=źŰ ů?é ­gF•męŘĂéŔLűäQg>B8§ăV<ęQČu|év(%ŐP—řŮ÷mu»ďË×E§ŤĄ6GŃ© q…çľó•G3¸µőÇ' C:Aio¬Í‡ž€čC/úŠ(U*F’‘ ŰâÇsĐP*1P¸(~ .Ňpa¸HĂ©Š=ô˙‹ä€ ĽŠ‡µ˙.NÖd:»ţË5)Ęá2äqqĆBŞÚB)MvÔéŃ -Čđo]ń- +xÚÍYmoŰ8ţž_ˇŹ2ł|•¨Ź˝n{×ĹmÓk|ŰE ŘŠ-¬,y%ąmţý9CI–Ý4]ŕp÷!IQäĽ<óĚáŃ6âŃ߯8=˙¸đä‘ŇŚYžF©ČXÂe´Ţ_ýúŹ6đîçł4KŁ/~ć>ŇF2e ´«čöę_W[]˝x#’(cY"“hő0¬Ĺ-ă:ŤV›č×řMYT›ĹRHˇMüˇřăX¶ĹBÄ0¤TŞăŐBÚřń°XÂŁX,“L%ńOE·nËC_6őâ·ŐĎWŻWäĺ’é,™Ë«3űăň&™`<(ﺩךżëkŘŢ ·ż«ó}áä•<ţ¸°:.şĹŇX.ăĎ “Äy»vóvyű‰.8çđ0_XŻvţKçU_´ xť÷ĺç…Lc?®â°¶Šš=|zGŠ§ ţ˘Ą,3ĺ{…ň1?cyqJ•×Űcľ-î‚.%X[[ŁfŇ—^żľŘ‚`ËD +ż$)ĘmŤťßݤâµčĚńAÂ|[Ú¶8´EWŕFe˝ôŤ )ű¦źť1#ÍăRÚ©źe””IŁQ*ÍRÂp§ÂB9OÂOá›wť(DË‹7€ćq9!™H“h)5S Áü“|öÍ Ô8ËlBŞe Ë@5“If-|ż‡ď 'vŽżlŠ?âJűx˘©Ţ®y ňú‘ËŞ¤y·ăRn ‹›‡“é~K€ćˇżĆ˛^WÇ ąËwŮx3 Lščt>W5S3U- *‰ŞŇrfPµ†˝IC—}WT «Óř-+| c! îü»ĽĂFNU‘w=NljZöv gÚ§Ćç Í«›wŻ^ż_ÝÝ‚4ßÝĽ|Äą …ś©—X–"P˝üľrR[`‹— ™6 YŤĎâkľ?Tŵ ÇŢżĆÇí»›_^˙´|µÂ.)I“ËőňjŁă‡cU=âXřSÄëŇCd/8®U’$]±Moón\ň˘šBĎô4)č.PĎÁ{č:ŘßĂ + M +dRěx»\S{WÔC ďŰâä/Z/žY-,„d»Ç^^ÓđÄ“˝ę: %Řx]ć}řúKŮďĆ-.¨7SMĆrá^@u-‘U0ťĂUYĎl@ŹŔß"ž Č‹,Uâ”4˙ +—(Ĺ„ ĎÜÔŐ#úĚV0Ňď0J2ŇKó8_űŚ”šď- 3ÖGp†'ŽžŢ )˛‰)22EF¦€YL‘ Qá»rY¨uťĹż;–ąĚ!3 Ą`Â&Éů‘`'đRďJ'!ô±ń>?ÔFl*ú ŘĚ`–2Ţh ëŤ/$Ý‹ŰłoJ2vsěź<ž1ÉÉu(`mÝ 5ŃYmŕxŰ^yJ)˙ÇYµń­óűc•·eŃýř’現áTŤŚVĚY_Ł APĹŻëmUv;ěĚMĄÇčÂśSlZL¦†„ô’BŞu¶‚™Ě&&dqër¸©ű%—kü}L«sdĽÝcű{t@JXbú.±vq;ÂaSÚQú­ßŃşÓ°Ł˘ {5®ćśé* śŞŚ!ŃI_¦Ŕ“,¨ÇÄt÷áő?_ş,łz{óîöoßăŰŔU©„ü|o÷eM‹ěĘíÎUή]XÓWŘÍAŘ®wäľ[{kŐ`§í5’`^U—ťÇĹD#´®É{e˝)GtÚŃvGćôNkŽhs …’돇A쎝§•[J¦ÎŢ´‡lŔ«+”÷Xž©>ň9ˇčtśxMÁéKdrR<ˇlD]ĐnÝx˛Ł>˘đvśbÍα6Z>÷Ćą&e:\†Ë•ń¶~uk:×!„ýĐÉÚâÜęÂç›ď…Ą‚ăŤTi(›Î)ť¤Č˙đĚëŔn°÷8sMŹ3ëq6ť^(ý1ji€eţÝ!g$ q̸@k0Ěív¬ŞĆ‡]‡}404ţ8í#-Ă`Žđć2„]ę¶M8xYrŻËŐ¤-ô•íó žFĚHRÎĚÄPĂYÁĂ-‹ßř\×⫱¨v˝M{ô|™ÄĄóÜH ,NöŁz Ä ţ ł]ŃbúÜ×ĂÜ–N3s¦Â·ó»SަdršŰsĚ| (ląĹÎş‚"–^{îhZöaS +NÝ™I¬¤´:Ä‘‰Ă1^ż Y;mÚµÁ‡¶ŮÓˇŇ č\ź“ΩӧóšŞ|-Ć×OŰIéxÂÝ…+ çnťDJ(ĆíÓW:e)·O\ý„µ¸`F‰Ó«*‘¤ĂU•ëëěěžĘ@N}úžŠ6™ĘăÉkŞçĘ*­f&Ąâ' äôŽÇd©»ăQţŽGervÇŁ±=űŽg8۬§Ç!,÷őpI%HşÖž‘'_ XĘX=®ŤIt9ĺµÉŽ—ë8˛°ĂÁZ gI˘—ú\Ĺ…ŰË™\Ňn\ VĂžWžôZ΋öhO´çe—ŘíÄ3p.2Á3zę5÷Śövr…ŕˇ??–ž;Çü¨s(#xf>:ŮŰmĹO7 çL5řÁ/ě> úóĆr=GbšÂkÔ€ĎďgîŁÁ%B•v7ČŰÝ5w]ÉË€ĄTB“7\M0qHzâU0,WîÝbÇ=ťĎ&«MŁ˘¦IđK5ťŰ€üżéQĐa®_ 3ˇ+´±b§5Ż“'•ůáDǬx +Ô“óőĽÖ“TRy‰ž}ß–÷Ç‹gŹ Ń)@c.ŐItJ…«ÂóŘá… [j|ra'(éÍŕróXŕüP‹>#J…Ś‘X”aź} +Bdß ÔůW‡‹ô;¸P#.ŇpŞ"ýŕ"ůŕÂ]Čsů_ĆĹĹś,@góť˙uÍ’r¸ 9Oή‚ŕ"6B˘ezr2ü Fh endstream endobj 452 0 obj @@ -2910,29 +2906,20 @@ endobj endobj 476 0 obj << -/Length 3038 +/Length 2906 /Filter /FlateDecode >> stream -xÚ˝YYsŰ8~÷ŻĐ[¨Şć}<ě;‰§|$¶˛µ[“)MÂgx(<ěx~ýtŁHKŽ=µµ~°Hlô…>>XłŐĚš}<°ř÷ÝňŕđĚb3ś`¶Ľ›YfÁ”5łgq`ĆV8 mË´Üp¶,gżďDőWŇ­óJĚ®í¶oÁ>»Ć׋ĺáů=ŇĎ繢ĘÓĽ(ňŠĆ>ľĄO?7ő|Ói˛“ÚůÉ—Úiő‡ŰFÚ%·… ˇëľÝŔçPoóşzCŁi]áŽlçż-™gŹ% âČ´"‡$VŁ«.°Š?ž‘ĂŢ=v¸ę˙Ő4áä7ËuE#`ďVČOďę¦lMäaPöá/ÔYŘŽş6üÚfěűłe\|slkňŃXÓr&BDi;lžëş]^Ště{ČÝ„5߲ŤĽZ5"Ëq,2şV Ňo‘ďóŚžł¦_ńtŇ5ßv‚çňnÍ+wíÓW¨›éÝš)e˘ŞËĽJ; ^ű9CĎ´C6VW77@ľ»§bÓÝä™9_x^l,×y‹đ ú Śľí“˘x¤ą;>¤I+xÝÝdę‰~pP*—“‚ÚᛲĹ˝ôűfů–dKz ’h’\t—?>µfŕŽÍÖÜŔ uŢçjÜőŔ -ý–g‡ĺldÓkÝĐo[9Żlű۶K€ ţą*W‡ĺ -żB]…+š)¤2ŕŐ‚Îăz>+W˘MR(ÚľÜH`sHŐČV’‰;ß2ť@Yrťđ‰aý»čmޡäŹ4PßMW€cňŃlŐ”"Ł? ¤Í[zOŞŚTL%MřPH K_ -zµizE?˙ –gŻ8ÓÁ Ď4}cŃ꣢ ­Ž!ď9ŢŔ˙Mnű"irň7OŐtî ěóŇç×`ý,iXč÷tNX[ë)’×vvEŐ5Tdť{Ćń®řúńćzyurńqů‰ç1$˙_âś®o“×,×ĎŁg…ŇđÝQ—zOč‡ç—M ŹĆgkűͦČżĺn:Żrŕa]ŁsđfŤ(ä\»Î7ĽŻô"|¸…já]ÝŁżáN9ĎżżĽXĽŕpŘžéƉůţäóňćęäěhyĆňôňâúÓég2Ĺ^éŘôŁłv“gúađŚß?%lW%î›É©řýzĐúĚý††ôBĆs¤AO˛ - Í(`'‡ŕ GĶýty5Źă›ă“§§ČůóŃ/´ÍŔłgľą,pâ\›éEΞśâ‚eęŹ8őË‘F¤u“ńK& Cyč$ň„ŕPÂäëuÝtjU“ߣaŔő\˸kę’·RědI—¨ˇ¦îWëݢAgŮś¤bÓ±"ńđDap’a‡ĎužČ´ę:0ѦMN!–"Ű=·Ź|ÔĐb2 ŚôéęĐ©‘<Ů’Â4 ~´WCů’$ľ€d±ŞpŻ’ ĚmŠ$UěĺÄ@MořŐó¦ń]Hj>›ukM ŕdáCýG¦hi‚2®ďH‡÷jGĎ’g‚,'ĄţC¤ę3Î8 r·wŹ#"+6oEŁ)X^oˇ a…Ŕ "žWiŃ·< 频ĺ xÓ’!„h¦2;äb6yÖ7}Ĺ

(ŠµÂ@)‹uÄA?˙KZKŽ4}ÚőŤń ‰,ɇó‚'bw iY‘éz®îĂuúBeŚń$“JłÍCĂR]ťZžN(Bé–äÔNüŐŁ(—JyËy[/Îä(mÝđv5·¤ů„“*hnŐ$eÉěqö”+3Nt°ăţ( Šđ R»—hăc&&9¸EňM·ŤŮ“Ľę—ç—Ňß×e©´s, >ť+î -ʲ'ËČ1mćEthŢ,-~ýÍše0ő /ŚĂŮ\XÎyâ)S\c…WVËrP>× ‡izě´‹Nŕ€†F)Jd†˝»iÇ4ö4Sž\ߌ˛—j'Y6+ćĘdçłÔWÓJä‰K@‘Ę€ÔŞ€žçmŢĘőÓäń¤KşÉ¨Šł O׳Ë1,qbÇV<ŰÖzµŞnł<FÖ˘zbĎ­`@N¤Éf;O˙¤¬ĚtLĆÓ u žěĄpB¶{J/ׂş5°_]%Bµ¶µÉA ÖŮvý¦ěű} =vî:_༬Źx˛ł0‚„/††¦ŘăĹfčë¸+ź„Pŕ0« µi鵪;úł$g-jŰ؆+LŠ Žd©¬ĺRśP§€hO»Ç(’jŐ'+!AkWeżĹ‹ bHŇ`4•rS‰mCĂŢŵ‘K$#"řłî‹Ś^·ŕD@ň¬Gšöý„;·PrŚŁ×_ÎŢŇSB?递DăH,G”<Ě„˘’Đ~wscĢ?:™Öi¸Îuk™7~Š”9ŽoFŞ!0‹˙=‰Q4žlmCv˘‘żąŁv”v(Nw˘PÝňJůúĆ(±¬Wíę„Q%©‚o‡n#D7 ¶{ĘhŐ;WXłäí@çÎÜíq–;‘×}ą¬ęSŽleÝväÍĂĄÄ;ĘaÇ‚u ť&G5ôtí&úó7ŠY6u[áyĆ»^m7 DR¨žČŢ­wl„bKDđşˇŰŇ“đ˙lAšđ!Ú̆ly™i$!ŰDbuNLAÁ<~,S,Šâ;Y(Q„şü6¬¤çś©s\ -‡ŇJF(4ú–‹F%)6 ů5őľ F -š˘lŹžů’pc‡Śqv.r*Z€PLȶ«MaŕýĺBÖ<ĘŔ¶`§`‘dlOťpą -Jpµ -»ĚH$Ąp{\$ŐăUžČ"ťş8Ôo6b†őqxč¤Gě 0­€K˘m%¤ˇJŁÚ˝ľEČŚTť{O9ÉËÇ—çG§ÚÉ€hMî±Čú%ćĎđv×2ŻĂxű‘ÄÚ—W§ďľ.Ož‡Ü1–M0wŰ -Í(đG±Ě3čĆaMyŞÉ4†Ýq˛‘Wő„Ľăű¸ŹCҸľä --… _oäÍ”Ź5&–>jAÇ÷í» -NŐ9ű„Ä>‹EÇPkň%Ň%ŚMP>cęü۶:żĹŕ±qÇ”6ĆčŐúÄ †/Ôú`?@ěčźbĎĐ»Čě&ďrť˝†¨Â‘®"mcys$ˇg6;/Sř|ŁéB6ť„Â[ZBÝ@ŤŻOp@˘Ôšją« xđDÇ+Ôj|iáŐđV7;ÄZ…¤Hű‚ĘcYfȲóTŮ1†”qB^ĹaDŻ -cZ„ˇË×M0:ŇÁäĆ)nś`á…ÇpÖŽ÷ÖřçŠYŐ YxeĎ<(m–ϵG_BI˙7i-| +xÚ˝YYsŰ8~÷ŻĐ[¨*›& žűŕÄNâ)‰­líÖdĘC“°Ä …GĎŻźnt"iIv޶Ö&€ŤF_˛fË™5űp`ńóíâŕř˝íĎ"3ň¶xYfÂ’5łg‘oFV0 lË´D0[łßŤ·˛ü;nWY)çGÂv ŰłŕÇÂřrµ8ľĽ ń1=>ÍťČe–dyž•4÷á>ýTWó#XNâ­Ô.Ď>÷ÔÎËżäÜ6’6ľĎ%MÝvÍ>z“UĺšMŞOld3˙cńŰäröřf~šVčĐÍ€ŐpÄŞVńáś]Ň°Ĺ]ŹřŻ˘‰żZBČZÂŮěPź>TuŃČC/ěă÷n0`ćČvĚ@Řđ´ÍČóf‹¸řęŘÖäŁń LË™\"ôMŰaőÜV…lłB6 cĎEî&¬y–md岖i†sˇŃ6z’žyö˝ËR§u·ä帖z˝i%Ż?fíŠwn;§+Q6ÓÚSJeYYmQXaäM°˛ÚŞľňí(<‘ëö.KÍů‘ëFĆb•5¨Ď §otMçů˝¨ÓqÄŤä}“ĄgňÁI%ÜNjúoŠFć?”íđÜWËł[ĘjD·`˘Űěńą6}ÇtlÖć<Äů#KQâÂ54ô,.Ž‹ 8Ȧת¦gSĺďlşű¦Ť ţą*–ÇĹżBY!¸­Á-”0`bAă®ÇÉĄ,eçš…¦+ÖęBp +Î9$jd+Nĺ+ÜÎłLÇך\Ĺě1,†Ńd-Ţü‰&އé0LvÍF/i2zó#[YŇ{\¦Ľˇd*IĚN W‚»t…¤W›–—ôř×h˛¸řźö_éÓôŤE»OňśŽ:í/ůńţ'Ŕh|ßĺqť‘˝ąjŞ"żŘăĄĎoAűi\óĄß‘ź°´V1R$«%"l욪04˛Ě]ăôw|ůpw»¸9»ú°řČëÉ˙śs|Sx6YÍb%Ń]+P€O4Gĺ.ŹôÓ/Î/9ކ>â3Í5Ýzťg’߲›üUM<®*4>¬–ąZkVŮšĎUV„{PP 7>TÚž”ńú»ë«ŁW8‡íš"ňéšďÎ>-înÎ.Nćˇk,ÎŻŻn?ž"uö*æǵ»,:küů1f˝ęëľ™xĹź·˝ô‡ î7Ä0„RžŁ긊UŘh†>9€3¸m;\ôăőÍ<ŽďNĎŢź_ť#çűŃ/°Mßµgž±Ě˝ŽApÂfzˇ3¦§–8!Ŕˇ +ý!‡~5SˤŞS~I%D(ŤDyNĹLľZUu«wŐŮ4"\WXĆC]|”f'ŤŰXOŐU·\mż€8ßÍ™A(6+Ô‡…ŕ¤`‡ý:‹UXŽL4IťÄŇFd;ĄqóÄ®ţ“6“a¦[+űÓ߀”D˛xC +Ă€ü)“NOůd#H’ř’ů˛ŞÁĽ +0°¶ÎăDł—˝áWűU ×ÔóŮíÁç-•ź¦8¦D„ęď3™§ŰmC›†c{fűűďP,7’dH˘÷HŇń=Čç˝ńw ”äkË/0Np¸S>DO'ś +Ŕ.]žgzŽ ˝ÝqôČ \]; Ť˙ÎCAiż«ŕB™\Ş\BÇ8! Bˇň˝c‹ŹĄ˛k&W\rLČ8A:+mlAJůŔü(‹ÚĆ]cëřĎřű1÷<U¬ŁńřU\c0p<Ź`ޡ&cŽ›UołŠßa<‚ągů8ᶹßP´xÄz›qdŰ&'î± myCŠWŐ ćŞÍnř˘lM‚'ą\žüGÉe÷ńBf„x0¤t˘aŞXç˛í š‘7iŮD€ŰT<ÍŽ›M}ÁBCg~F’m±7˘Ľ+2¤*ť1łUŐókÄ<¤ű’éO™¤@¬hä}DËŽŮĚľee:Ž ‘lą˛č@DŔŁËŃöt(2 j9‡śâ8‚ńzŽIb3,ôCT"cUˇ¸éeGš3e#ş\ŮŞL-äL KÇxPŇŢ%C ˇ%d×€?!ĐŃÓ‡€’ĽWŰľ€t;Ô˝_˛ýaNĐ_zHívti—:*Nc,-k Epś†ÔeäînKx&~/2CÝĎ›:ÎÁRŢŞĽăŽJin(%űP<·t€ndx‚ó.B¸Ě–ěâßTÄÚÖ×ř;WĄ›U‘2+v·rË—’Í´!R©|n„ÎÓÜXťŻ»$\oA›BČ7[gÝlíż¸lŤ4©* +sir›…Ú¨uS•‡Ł¸LĦ/¶ ęĆĚżł&k©+ő˘ýg¨ĎÂĄ[Žë˘Ý í5aÖŕX‘ÖIşIĘ*ť†¦YŇĎ>®dą‹u)ĦŰN…0C2ÝŃ5á|ŢUŐž˘’ř]iŚO׳9ŹĚgăŕvŘěManŞŇÜłĐîćSř'ŐPµ öµol`-đUŃ/üŕŐÝ›iűĆq@zî°´Şhßkč]iEŤ•†^ËŞĄo×µ +«$µ±RÖ 9K˘­„''Ô  ěiaŕy\.»x)U_Yč€vôŞ.®c "G`mŘ~†šî! +hŐl©CYuyJŻ›ţÄŞ)žhŘ÷b.®Ĺ1ÎŢ~ľ8¤QLŹ¤od„côS3ú>Ě„¦Óy*ĘŁVţlifšřáfWECŐ{±™ĺXŕ*‚•Ţ·ţ÷ÝB KŃřh;„ĺ ŮŰżčŠ{0Ť®eTƦŔW§+Ę>€ HÝaíły® Űľ±ş#yÖyc‰=ˇ¬éé<Ű-Γű!!Çľs†ˇ˘jZ˛ćľŻ?č•;ÚáÄ<}–—8şćŢ@úń×Â|7ýńŰN×7rÔĄ:"ó¦Úr^[ő)$ď뫡aĽh÷§7 ІZĐň9QÁEń°NT; ó`ž=đü© +˘xôW… —îő;iś1uĆĄ Ou¨ĽKi˛kXTâĐązWČ‘‚–(žďČËźÁŤí!ČłîóěŰśpDDÔ|‘>&Ţ]_aW™gą÷ć»ŘLÓĘ8Ex°]íáj¤Ěµş˝ŇETźÄD,†m“)S$Ż‹‚áŹwŢqşŻt_ÄŰ… ä±J7ąÎ ń3ʧ«{ěj‘č!-Ă’»¸Ł(z}yr~5ř Ło:mˬFż3ľÔ^yn‰ź¨vřâćüí—ĹŮţ®8b٤-U…‚”ąý&°…¤ú•rpĄqckőc:őĆń}Z™ť¨ý-ÄV¨J5Ľa&Ż~;ňđ7QL}ôťänË!uVęQŻto·X˙ĆŰă˘ę2S§ť[ŢülšAó|Ó"ÇrĂٸ…ÎÝëQü.Śúç~ßŘ †ýsw˙ÜßŐ?ß—&éúĹÂß  Âv6n,Ć_B¶řŤ¨F endstream endobj 475 0 obj @@ -2961,12 +2948,12 @@ endobj endobj 479 0 obj << -/D [475 0 R /XYZ 72 292.053 null] +/D [475 0 R /XYZ 72 268.143 null] >> endobj 74 0 obj << -/D [475 0 R /XYZ 72 150.22 null] +/D [475 0 R /XYZ 72 126.31 null] >> endobj 474 0 obj @@ -2977,23 +2964,25 @@ endobj endobj 486 0 obj << -/Length 2155 +/Length 2289 /Filter /FlateDecode >> stream -xÚ­Űr۸őÝ_ÁGjĆÂŻ}óÚq7ŰuśŤŐ™v’LBJTH*Ž÷ë{. EŃrâíôA"xppxîŢĘ Ľżźîůóâě§k{™Čb{‹Ą'E `+đ¤—(/‘tâ-6ŢGżíš}Ţí;›ë(ó—uĂ‹Ť)·3•ř<ËíŠÝÚˇ5űʶĽ\Őö˙ls57UľŻLWÖ[ÔKxĆźĂÁFˇošŇt=ÁĂxíţa6ę˙±yÇĺö€ŹËz]7Ý9b§ľŮł?żN,‹łT©b äÉéTQ“tě×;ú¤moS1t×Ô«Ćl6ĺLú$'Ŕ@Š9QX¦ŃŐü,·mta§CŃ—u»´Ń5ĺÞŋ ĂČ«ň+bYÇ É[Źe·&&doonßź^ŽOc!•3ýe˝ŮQ´öŻLGß ý›šD/l%ÖŮ›ĹŮ—łžDŞ„ c/N´Hí図Ź^{ż‚Ž“,ń să…a"’ …uĺÝťý~Â){Z±Jfޢ–®K[łąT2ŚüöËľl@N o ô˛'gřW:óŻl›7ĺŽüëE~ŁXÄq:ĺ7ĚŇ˙ß0*ÖĚŻéŤx_ŘO·%ňq_Ăa c˙ßłTűhá0Ťú-ÚÝ®,ZFR#Î÷ŰňË޲%ĘÂ:żA‚¶a¨ó frTšߎ‰ěĚĄYM9Üš |"ŃIęŘͶ§c%uęSi*˘dÖZhPą Dl›ă§×¦ůDŠ"xČďř0+TSş`!ÚŢłCż@kěIŰ”/`ĎąůIˇç*’`ťě%Ů‹1Ń0S‘˙®~ĄčJ -éEżąř×kESr˘çőfWŮÎ Vü5ŃO™{솧4O5Ó!E -)Č5÷y˝ÍíŚĐ‘+©Ňúđ$(ÉŚŽ‹!O†ţăÚt,ĂçRô‘xĎĄ:iΫ±lD`ĐKcóş)úő®±­ ˘–ż`úO®©č<ŽźĐaűÄgÍ7FŰ’_XS.żŮX.^ĺc˛qľŢŁXÂ3ů?¸ŕĄ»‰śaB®h‰«hˇ«hšKbz(‰ĺźöX‹ó@čd"ý±eť“{čÉ„…ZdJţĺŁŇ‘ôPď"`&vĽ„Pů„§•Qµo;Ó -´ ––ȥáŹúé:LĆĘ„Ó` ¨DBÇ Óü¤d09ó’5łXdAâ…i"Tę˛Ŕoĺç™ó&ŐGąrYđČ×xä•đNŐ‹%ľpyÓ¸ĽýĺöĂ,ŤüĹýŐ›ë·ďŢ.ŢŢľs8ć>PYěb„]¶žŐłŃ·)^žK•Dh±T·DÔبĚßÖ/0,süBAăé‰_Zçb9•ľÜŹäÎŘM‰škĆ(Ă 2ŰŐ¸7+( -óŚĽŕÜVB Z=ˇ.Pb-ýŇ1ôűőž•ůĎË8čÔudđťZ˛ž»ß;˙NĐőމˇâ%®×쫸éC JfŰă´yHp$t>Ńář˛±XÄçŕÓ‘aőm ä - ŔTč’í(gšjU7ĐInÄ÷Ľz1‘hyÖŻqűl˘HŽˇt©g±vń(?ĚH‚N}ě—­kŠíÖ6eîeNę±ó0\Řܶ-LŐŁ4&ëĐ8“Ĺ}ýÜŰ&möŤsőĺĎq{ŢĽĂőD|ť‰0v^Ŕ&aJČxJ(:MšŘňł*·.cHßa“T!(oŤYa°ćŇčÎcąh­Ărţ^ %©q2‡|ĚnüŮëW˙8ó>2ń!łą€Ű…äRqüEţ5b‘φýf°×91‡ń´W—JD$#u…A†ŠIFŠAЧ@+0”’  iC4ă‹‹,§¶Pľiyg n6őž'^~Çx!„rcŹ(vÎ Ű±Ű  -čî¬ -˙…éą$Z2čm„9ô„Ě2Qä\Ä)Y’aĆŐ¬V^˛ŰG}$Ăâ‰1Í}˝Ľ(›n}îfřšZ -w6“mĘcúďßŰî¨~ôĽRDaę…Q6Ä9Ňß·ÄO -“ü0»DŠ§w55*‚&ńžŃań0´™Ha·«JŠ|é…‚Š«äW€csŹŰwtđr¸>Ŕ+…–UÍj€PŃ@ň?™ś5uťG(YŁ*Ë(`ńiř1Äjć 5Ź‹–f6\]Őt#CkŚâ÷ś}ÚÚÁú˝nŤąWąi-ö…(Y°đŤŇŐ›€ł -böŃQLIő\ěŮőńĆŤ4ü°öA?(â4f%”Ó¦Ýů¸ž¶(zěbĐÓ%ž„–‹˛ç’Ú/$=×)tn Ź°«ˇî¬^¦€ŢmžDţŤíLw/%µ©!áĐW‚5‰đĺŐÍýÝí?? ˛/ßü äő/ËCď - ·´‹ç‹ŠîR9ČńDĂş­÷żyÖ=V‚32÷)Ť ئ7î˘Čí.áxSozb=Úđ=mZ[ń™–2µôy^×Îů ŁtëĘU -î¸`/Ż]kuŚ!ć…ŘÝ>Bó+‚~YZĹ2ź«ÚżěJ¬ă\6¸mA§„wÓ_#jôNă*śá[»¬çç+T»-ÝČ{öP“îV<Ľ^öi=sô0†mnx2 Ľ}WÂŕăĐ_rÂü„Ź žĹ÷Kę Ž`Ě Y?SN¨Ă€ }- Q¤‚˛=­Ëh%Ż9ő6Äšô×ĺŽqŠŇ`WĚ/ërµ®ŕÇÇi€2Ó¸Ŕ sß +EúŽ< L ăpzů–QEZHhIýĺ;Ěý:N˛Äy¦•'Ś„'ÓÚ•ópöŰçaiÉÔ“~ć, +`é¦ÔŐ‰űK "^¶ˇ$÷úë®luń†đ$Oe<Ţ·@ żléA‡qÇî•îň¶Ü^OĘ/…—DéTţüqůEŕÉH˛üĘ‚bYčĎľ ëůX–č–ü$q˙śĄ!Y» #iýŞ^i€N”„‹î˝d]~Ýiî–…ń…%ŇÔ-_ąśtµĘqvÍ‹GŘ$€ ó đ˛(š2Y« ©M¦Č™´ś ´jrËtUűŮŹ|Eđ `|ËhgA-p˝Óů řxżÉYüZ}CjYą(üřé1Ţn/ţ`Ţ„ČBćM‚eo¶•fŰýaö;Ł™Äcí /ö„§ĘĆh‹éEŇx«ýĽËĽ©s˝í—čŢ´6źÍńÝ˝FŐťűËv.AX#Ɔž9‚Jľ”u1TŇ1Ý2ö„”cÝ\ u3Ô®t[ť7maŰŰVwř'({äšÂĘó1ŕî‰u/ĽW}çÍEşäÉGëČ6ľë|×›0:_č+Đ ÉF™˙#{q$]k›Łđ"Mx _Ĺ'ô}Yč…i2–| Öc4uw‘€Ä.~ŘÝ‹tčî„ y‰4®"°đ@ü 0ŞgÝüij"CqdÓĎźnÂdhŘťŔUĐ“qÂ4?k™ě9F˛ŘË@´0–ž´™ŔŻĺ—™ąz´@2¬0ap!č“g­ +î°kŇ0ąnąî0©Ł5ę¨4&0"=la\ÁÔ«p08›PţZŞ(đBć †Ů·ČÜşéą6”ă î0Ć)Ë w:ă[r +ąÉť1P‰šÉŤČŔ@ĄęĆ!µÂ,>„K6Ѷ„Ś°zA] Ä‘ÁŘ®˙Řg5Ä‹|ĹÚ$¨AuŹN˝rě–ťÉQu •WnňVöŔ±A6t®»’űę…—´ÚTL”¶6ü5ůîk´M˛Ţ!ç¨:žŮW›fÇ(÷Ń^hAąŃ#Š˝DC]OA÷K¸Uř/”ĺ’hľ˝ŁI…ld–YŕĹa`J%V2”ćXrJ[c“aYK†Ć 1ŁÚeó´|,Ű~}nJę†Zď'& +E‰Ödš<ĹţÇk`űţâ‡ĺĹ;"E¦Ž„őľµs¤żëź +ëűtŚŕbZL/‡&ö#\2Căđ„‚¶ŰŞ$«ÁŽŞÄ$‘í*9جŔ*Ö®%ąąs¨ć±Âďx°jř]AěG(h ůîírŃŢfśßäÚ2*˛Ś żŠ?{[ő}Ň<-AÍcŁŁz[W =P­ř#{ź®1cv +őŽ[ąę4&|çTʱpFiâŤĎ^WZë(¦¤,;†>>ňţâźcźŚ"/I Ęi†m0.§)ŠB ’şÄ ĺ˘úDé’žCYť SĹFŐ‰Č}ľCA"ą·şW>5śrjÓ‹„ŕâ2“3^^Ý.î~żGe_^˙CČŰWQ`Ç +ř ࢢ'ťÔÝ 2<Ń€bÝ6»žű{?m»*Áş•ó™ë…ÄľD¦ü łO°˝m6–]¶?†6ť®xOGž:p~×ÎyŁˇt›ĘD +S€%ŕíLjqŚGÔ Ű<Š(ó‚Ř`âIcÜ‘™ËQí…;Űă8‡ N[”ăně«>Mrő‡Źü–Y~ľa@Őuię5žÓ‡pOŮ í4/€đćÉşőĚĐCÂh¶ąâĘ€ÖíúJŁűć Ŕ oA={o‡8ÔA@-˛ŢQN(Ç‚ßYS|g%Ää­č«ŤGëÉyÍ)·!Öw]nyMQ*ĚŠął.Wë +~ĽŤ†Qfhdć záŁs‚Ă‚‰9ÁČĐśN?úAé‰$5ďň ďöäC†ägDJRŹ˝J~!Äš´ú×8ĺŔü ä +=­ŁUP`ţB +E4 endstream endobj 485 0 obj @@ -3010,7 +2999,7 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [410.123 435.975 455.219 447.93] +/Rect [410.123 412.065 455.219 424.02] /Subtype/Link/A<> >> endobj @@ -3018,7 +3007,7 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 310.593 146.194 320.824] +/Rect [71.004 286.683 146.194 296.913] /Subtype/Link/A<> >> endobj @@ -3029,17 +3018,17 @@ endobj endobj 488 0 obj << -/D [485 0 R /XYZ 72 686.127 null] +/D [485 0 R /XYZ 72 662.217 null] >> endobj 489 0 obj << -/D [485 0 R /XYZ 72 529.582 null] +/D [485 0 R /XYZ 72 505.672 null] >> endobj 78 0 obj << -/D [485 0 R /XYZ 72 363.298 null] +/D [485 0 R /XYZ 72 339.388 null] >> endobj 484 0 obj @@ -3050,15 +3039,14 @@ endobj endobj 492 0 obj << -/Length 1225 +/Length 1224 /Filter /FlateDecode >> stream -xÚ­WŰrŰ6}×Wŕ‘š©`\Iâ1ńĄÓŚ]·ŽňĐI2Š‚l΢JvÜŻďâFÝh%íÔž1A€Ř={öě&čôë„'…żQ”1$r‚3‘ˇ˛}QLŕ‡ůŐ˝±[d”bé^Wɸrń[ĂŃU;ú~Łá Xžě™~?]Ü° %%CÓĄóÍV,EÓúśHLÇJ™L.Żîfď?=Ś9M.ŻÇ_§.nhŠV©ýx‰VŞâTP$(ÁR*4mŔÔôIŹ'ś§;K,·–Üܦ×aąlWveST«ÎĎ,4ĽÔ~\ĚÇXm·›°1ZíÚ­)ĂxQ€˝1MŠ.L«ĹŃçkÓ:CĄî‚—m§ăGmxšbŐ-[Óěöž†˝—5®rśáõě>žT>gTD<ąż»˙ĂŹ.ۦ ÝňUżíÎ\č[·Łë©ŐBô¦pN2ÄóÔćrůů+A XúyČT†^܇ ’až[YÔč#hÁĺü €h*8U!í7•® ĘR*’ým[KJ$SÍëÚP$‘YrĄ»ŇTëMaĽ‰5UŠ°Bĺ˙¬Ě@Äkąhf>ůłUѢT€\˙ç<Ń6µŠ±äy,A¦´Đź -ó…H¤„‡UwNX'O–Űşö#oĚŽÚĺQę‚Ö R€:ńĺs¦ĎŤ~® -GĘ„3Ŕó;¤TĐ,Ćăá0pŢ­ĽŁ#=±ó $Om˝ĐfXŐ9‰äR`.¸Ç0·_ÔŞgK„*"„ óX¬Şżű TbtçőÓ®şĘţ°ß#·Śâ< ŐUyŔ‡:y¶éş]7*x‚Žă¶˙ÄÂě6ĹŞ<[ŐAo–hhd!ż‹=ÍOR)ĺŽáËŰű÷0™HŢEt{ćŃZ…–U†×]űhMőXą˛B jT -~čĐŰx˛ŢšŔjĹY*ŰşÖĄőŽ-. y_ş9AÚ®ŕ=¬˝ć*bŰ4…yí0ÜóZ‡©B;"¤jt,7ŰÂC«Î/ëďa{ąŃa§ď¬<™‡–4T ­Eíbü>ßǸl˘K|§7řĽ&.$ĐÓřˇ.ÂÁ˛u2´\Y.g6ąz ŢĎ Ž± ‹LZţ™Ňő}ěÓĂmTMxíĆÇ«Á÷Ť6«˘öđŔś‡ä)o{Đ÷ˇÔč!‡uk íÎ^ŕo0|gv2¨_ۨô&4Ý™é9š¤6â˙#t«šŁ¸m2NăÄw&îëém(^+Ę DY}!\”»Ź‹k_I±ŽwV[BŮ:' }†Ě AŁk *žíť“˝ććÍw§žźłNú–ńňTy®Źşç.×űMŞ0?×Ä”yY7mg«NërkL`äwVBCé˝ĂzŃů§Gşđ[í]ĎöúW˙âËŘŰEÁ¤)2ó`Ęb˝Ůýˇ›f¤?ÔłbEO¬ĺSŻ†"‘ĽŘP!Ć75čO*Ç\ ťG]ç´Ąh&‡Ę(‹eDIó ;IŘŘ?GűăÓ]DîvƢ™ok8ĄŚý °ÉŢ]č-Dgč€çC¨Sř÷+žţ›[tü—íô‚ -b7Á0µ:·„pî|ÇM€áŚ«Ť~ +xÚ­WŰrŰ6}×Wŕ‘š©`\Iâ1ńĄÓŚ]§ŽňĐI2Š‚l΢JvÜŻďâFÝh5íÔž1A€Ř={öě&čôë„'…żQ”1$r‚3‘ˇ˛}QLŕ‡ůŐ˝±[d”bé^Wɸrń[ĂŃU;ú~Łá Xžě™~?]Ü° %%CÓĄóÍV,EÓú’HLÇJ™L.Żîfźî??Ś9M.ŻÇߦ.nhŠV©ýx‰VŞâTP$(ÁR*4mŔÔôIŹ'ś§;K,·–Üܦ×aąlWveST«ÎĎ,4ĽÔ~\ĚÇXm·›°1ZíÚ­)ĂxQ€˝1MŠ.L«ĹŃçkÓ:CĄî‚—m§ăGmxšbŐ-[Óěöž†˝—5®rśáõě>žT>gTD<ąż»˙čG—mÓ@ĐnůŞßvç.tŤ­ŰŃőÔj!zS8'âyjsąüňŤ ,}€öůá6Ş&‚DňbC…ßÔ ?Ł?p €ÖuehqťÓ–˘™*Ł,–%ýťî$q`c˙íNwUąŰ‹fľ­áD8D”2x9[Řdďô˘ÓsŔó!ÔÁ+)ücO˙Íý9ţłvz51;‚`Zť[B8wľă&Ŕđ7AˇŚ^ endstream endobj 491 0 obj @@ -3121,29 +3109,30 @@ endobj /ProcSet [ /PDF /Text /ImageC ] >> endobj -512 0 obj +513 0 obj << -/Length 1283 +/Length 1297 /Filter /FlateDecode >> stream -xÚµWYoă6~ĎŻĐ[% ćŠ¤.čCb+»î&¶a+A‹ná*–b+K†$'M}‡*>ÖmŽ¶±xĚ=g&®µ´\ëă™kľÉهKY‚€Vro…Ě -©K\ZIfýjű„ęô(ő]»_•göúÉő˛•UŮ8ż%?=Küpé…{â(#4 ¬óŚČ/ŚşG<4Řç!.ő൨%"ÜĐ -"ź(ö5°ďťgÂNńÓTŰz‘ă:KŰô.mĚN6ć4ŻĺĂ";ĎđྮָZ;,´·E+7ĹžC•çYó=®ŰU'łT‚Ú|Y§Ęw<¬”EÜ*‡ÚU§>“Í&˛|ßÎćŮ4Ŕ‘ß.Ń‘Ű!'!őŃďüŹŤÓS^,Zí÷ě¶Âď^ŕ&«ôn±]çĆXC-KĂĄĚ4Äqr…‹¦.ż¸Ü[hďâô<źŮ‰öžó]¬µ´űŞ^wQ€î›§ \\™ÓűNigžÉŃ©Đ#÷J<ÚűEZ˘ {ľr»Î7uŢřÉí´1.ĺp´KÔů˘Şł©¤‘×vÎő×óŮřfŞ ŃŹÍezWääźŢ„‡śÂ—áűŻCř‰L{‚D®Ét[×Ę'Ŕ]ńäDľ­PčąÚT -^(Ű Ľá[Vř]ç †UZĘfŤG­ą*důŐ0•™|ŮV¦@©µBĂs`„ L‡yX@`̉ŠFs(¨dŤË:„ őłŔ—SÍC÷Od$2ńţĎŚ›Ä| c>’şAŘøIÎŽÂĽÁôn[¤ő^ „=şaĹצ˛ÔŘ…ť)M;yTÉZžPň YZäĽL׆@=XŚ"Ă˝,Ź,şUŤűç7WçS…§_^‘ʉŕÂdDsŹţŕÝx{©ćöă*Ż á‰0Ěeöă̿s(ŕ‚ ,´(t/`:{Đ)”ţŹ`ł¨Ä|{Ö¦e–Ö™üSÇ+ôí>@[.4”a7Ŕâ «ÄžŤpUY§Ć˝ŻV·úü @uHBxZĺ$žÎĆŁČś˘Řöq6ľĹS‡R -AWżçNäŮÉp<šŔáxđz -śMâţđ:~»%ts;ůô2gĎ%<‡ě·ĂŮ0™Źűý›é4Áë{Y˙·B&SD^<¸™ĆoväŚtóq˙<Ď@Ř;Âq;ěÇďŕ7yčŹGˇNäżpă:>WĘ!ťÉ›yGă$~Ó|t5ůďpüfI—†_Őđd>ŤŻ– jöi8yˇ& S”BJŹZćˇ(žK˛µx°×{Qá4b şBĄnjł:š]¨şPUŰögW_`—cőGMGš&SěŞ{gxTTĺR¶ŰL–iQ<áY¶­eąÄőăňBf§ -2qYç>ł8ĚB‚rt}|×ä5đúvç'ě‰\`ÔUf„¶îćpŠőÚ‹p, őXöL¬¦‰¦*Őxˇd5Hů¨ďŠ)S#(Ë×L˝j¤ZÉžĆq§MěfĚťa ćIßeö…îV•:~D’M­w0™śž ‰ëň˝XŔ°$|n.4Y‘­ú<őęĽŔv%7HÉěד–«ţ”ÖBíĺŃ8¸Ă´5Ů®NlGpÔŚŕjŻÁ˝iF°ÂŃşŞ;Ľ13Ł¶żoĹĘUh.ŕÓ~=žÉ¨ZŻ»y{§çĺĹďĘbLŔ˙TPś™P3 >LîĹÉŮ_2s¦ +xÚµWYoă6~ß_ˇ·J@ÍIťúŘĘ®ŰÄ2l%hŃ-\YRbbeÉä¤éŻďCůZ·IvۇD<枏3cŰx0lăĂ;[/“wďŻX`„$ôg$÷†Ď źÚÄćľ‘äĆo¦K(ˇÖ€R×6‡ueqf>Ę…Zv˘®Zë÷䧝Ä÷WŽ Ž2B}Ď0‡pO‹üĨ}ÂC˝CbS.lˇGBŰ7ĽŔ%’} ěă{kŔYh¦řiëm“¸ÎÓ.]¦­Ţ‰VźŤx´X`9Ü7őWk‹ůć¶ěĦ<ˇ©Š"ożÇu·ęeVRPW<4©ôki·Ę˘fÝ«ĎE»I¬8´łÝ™8ńŰ&apâ¶Ď‰O]ô»řsc ¤Y§áŽŮŐř]ânňZí˛íşĐĆjjQi.i¦&Ž’k\´˝pńÉćN¦Ľk‰5p\f&Ę{Î÷±VŇîëfÝGúo‘f¸¸Ň§÷˝ŇŢ<ťŁs 'î{”x”÷YZˇ ľrł)6MŃůÉÍ´Ő.p´O4EV7y‹TBËëz熣›Ĺ<ľťIH #}™.Ë‚üŔ€pźSřRşîë~&ÓNH[gz¸méŕ®|¶×”(tle*/¤mŢđ­jü®‹L†a•V˘]ăQ§ŻJQ}ÖLU.Eľ•)Qj#Ń° L¨Óc}"ŁŃ‹*ŃŕrŹŽP‡z'đĺTsźÚý3 tFś˙3#§&1—ˇ¶ źD IÓ"ěá@\'gOˇß`şÜ–ióŚa‡@Xň/»TT +»°ÓĄi/ŹJyˇ’Jy,%rQĄkM ¬F™ă^T'ÝI‹âáĹĺíőĹLâé×W$„rňPgDsŹţčÝ8©ććÓŞh4á™0,Dţă“ş*ľł(ŕ‚ Ě7(tÇc*{Đ)¤ţHČ8fĎ“ ąćĽK«ńáa*•Óh6Ź'G9'D˛â,ľśG3‹R +A—˙/¬Ŕ1“q> endobj 495 0 obj @@ -3190,96 +3179,104 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 485.071 217.73 495.301] -/Subtype/Link/A<> +/Rect [70.625 485.071 145.538 495.301] +/Subtype/Link/A<> >> endobj 501 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 473.116 166.326 483.346] -/Subtype/Link/A<> +/Rect [71.004 473.116 217.73 483.346] +/Subtype/Link/A<> >> endobj 502 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 461.161 175.805 471.391] -/Subtype/Link/A<> +/Rect [71.004 461.161 166.326 471.391] +/Subtype/Link/A<> >> endobj 503 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 449.205 212.611 459.436] -/Subtype/Link/A<> +/Rect [71.004 449.205 175.805 459.436] +/Subtype/Link/A<> >> endobj 504 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 438.625 154.081 447.481] -/Subtype/Link/A<> +/Rect [71.004 437.25 212.611 447.481] +/Subtype/Link/A<> >> endobj 505 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 426.67 102.192 435.525] -/Subtype/Link/A<> +/Rect [71.004 426.67 154.081 435.525] +/Subtype/Link/A<> >> endobj 506 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 413.34 130.143 423.57] -/Subtype/Link/A<> +/Rect [71.004 414.715 102.192 423.57] +/Subtype/Link/A<> >> endobj 507 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 402.76 145.363 411.615] -/Subtype/Link/A<> +/Rect [71.004 401.385 130.143 411.615] +/Subtype/Link/A<> >> endobj 508 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 389.43 183.83 399.66] -/Subtype/Link/A<> +/Rect [71.004 390.804 145.363 399.66] +/Subtype/Link/A<> >> endobj -513 0 obj +509 0 obj << -/D [511 0 R /XYZ 71 757.862 null] +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [71.004 377.474 183.83 387.705] +/Subtype/Link/A<> >> endobj 514 0 obj << -/D [511 0 R /XYZ 72 720 null] +/D [512 0 R /XYZ 71 757.862 null] +>> +endobj +515 0 obj +<< +/D [512 0 R /XYZ 72 720 null] >> endobj 86 0 obj << -/D [511 0 R /XYZ 72 596.989 null] +/D [512 0 R /XYZ 72 596.989 null] >> endobj -510 0 obj +511 0 obj << /Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -517 0 obj +518 0 obj << /Length 553 /Filter /FlateDecode @@ -3288,16 +3285,16 @@ stream xÚ•SMŹ›0˝çWřh8aŽ­˛©ş‡v»Ëeµ]UśĹj Ťňď;Ćd•UŰC…ă7~3óŕä…pňiÁç/ŕ› ™ ‚s&lNŞvqX0kŔÚÉyeN.­ät0\^ŔĺçV‘U·ř†ĎĄbŠ%Ó«š‹Ĺr-2Ŕr­)6áRĐŠ)cIQ“'j$)€Đôîćţáë—乸]®ÁśĺFÂYn/”$gŔ-V(—¤’[z—śş~čvńĽęÚŇOvF+…Ą#Côö PWu}=źÇ¦ŁuܡËŽn{Ž€Ż]ĚöôĚ +«€5±ţľý4çĚŹvCwě+ÁşËžšnŽćxßÎ ĺö~řő—\-Ŕ2P&Nb µ¤¤M™Śľ6."ŐÖď|Ună©ű9¸ţ5ŃďđÝ4©hď*ěâęśüŘLm`JlŤ·6‚}F×,P\ܨ“7f9ł€{â’Y­žž9©Ńw‹ëĚňŚś¦Č–(-ĚÂ~·äĄ4Ić]·s­ăÂĘhÖŢm‘$đLjzďGßŇ rE‹Đűyź¤řAžJŰŚ®ÜPő~šý'WkXöS…Ęűo¦™fRéČ4đ°Q”?> endobj -509 0 obj +510 0 obj << /Type /XObject /Subtype /Image @@ -3403,29 +3400,29 @@ g! †Ľ€ź‘í´"ŰhE¶ ĐŠl—S8ß?€ó9}đÁ/`pÚ«­|­|­|­|­|­|­|­|­N|L§ÓĎtĉŹŰŰŰfĎtÄ)Ź‡‡‡ĆĎtÄŃŹÉdrŽóAÁ)ĐŠÁĐŠÁĐŠÁĐŠÁĐŠÁĐŠÁĐŠÁĐŠÁĐęĎj° endstream endobj -518 0 obj +519 0 obj << -/D [516 0 R /XYZ 71 757.862 null] +/D [517 0 R /XYZ 71 757.862 null] >> endobj 90 0 obj << -/D [516 0 R /XYZ 72 174.393 null] +/D [517 0 R /XYZ 72 174.393 null] >> endobj -519 0 obj +520 0 obj << -/D [516 0 R /XYZ 72 116.209 null] +/D [517 0 R /XYZ 72 116.209 null] >> endobj -515 0 obj +516 0 obj << /Font << /F27 247 0 R /F16 249 0 R >> -/XObject << /Im4 509 0 R >> +/XObject << /Im4 510 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -522 0 obj +523 0 obj << /Length 1938 /Filter /FlateDecode @@ -3441,27 +3438,27 @@ x ˝H0.ŐšCíÔbfť+U×pí`ŃÖŚˇ)ŘŘk·RÎ8]5*´.Ç`•&Ä$ëMĂ0S&ÇaÄż!˘HĺçÂ"fCÄÜ‘Ľđ\­O¨n#HYŹ_ćÄvPlĺkŃ|>BÄBŚ.2Ďrţ±ż™ľ„µCűżÄgaAB˝đ%„Ź:˝\/ţ'X endstream endobj -521 0 obj +522 0 obj << /Type /Page -/Contents 522 0 R -/Resources 520 0 R +/Contents 523 0 R +/Resources 521 0 R /MediaBox [0 0 612 792] /Parent 480 0 R >> endobj -523 0 obj +524 0 obj << -/D [521 0 R /XYZ 71 757.862 null] +/D [522 0 R /XYZ 71 757.862 null] >> endobj -520 0 obj +521 0 obj << -/Font << /F16 249 0 R /F86 524 0 R /F47 271 0 R >> +/Font << /F16 249 0 R /F86 525 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -527 0 obj +528 0 obj << /Length 2321 /Filter /FlateDecode @@ -3474,42 +3471,42 @@ x Ż­eŞˇČ㨹[7,ě ¸_ &ĚBOt`‘oiz;Ň[O<:VXĂ%Ęaô#]OGŕ€cÝ´@ĆúĆP×L \ąu\ óvăŔĚŽul‚Ů5ń„.xľ„—9_`¦¶©çŠ® Hoű+ě/—ýcę‘"Ź UNwźzW…;,˛CŹ×m?”†f®73„Ä8>§eéظĘűĺl“p·+FĹčłs±Ś‘gkź„a×–ünÄUÜÇÎt‘JŠ™ůÝŔ“ć…P{˘5Śk3_UOłĹxëÓ¦0ľ®=e—‹lz¶-’˙›-NŁŃ«~üw§qĎ^dń,ĚűŮĹ3w0Jý8 śţă„‹ßÓś8‚D-‚dbVľk«Ž˙ý†> -endobj -528 0 obj -<< -/D [526 0 R /XYZ 71 757.862 null] +/Parent 532 0 R >> endobj 529 0 obj << -/D [526 0 R /XYZ 72 599.321 null] ->> -endobj -94 0 obj -<< -/D [526 0 R /XYZ 72 409.637 null] +/D [527 0 R /XYZ 71 757.862 null] >> endobj 530 0 obj << -/D [526 0 R /XYZ 72 340.881 null] +/D [527 0 R /XYZ 72 599.321 null] >> endobj -525 0 obj +94 0 obj +<< +/D [527 0 R /XYZ 72 409.637 null] +>> +endobj +531 0 obj +<< +/D [527 0 R /XYZ 72 340.881 null] +>> +endobj +526 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -534 0 obj +535 0 obj << /Length 2647 /Filter /FlateDecode @@ -3526,42 +3523,42 @@ S ç"†Î /cqO”ÍAóö_ ÇŚČ endstream endobj -533 0 obj +534 0 obj << /Type /Page -/Contents 534 0 R -/Resources 532 0 R +/Contents 535 0 R +/Resources 533 0 R /MediaBox [0 0 612 792] -/Parent 531 0 R ->> -endobj -535 0 obj -<< -/D [533 0 R /XYZ 71 757.862 null] +/Parent 532 0 R >> endobj 536 0 obj << -/D [533 0 R /XYZ 72 720 null] ->> -endobj -98 0 obj -<< -/D [533 0 R /XYZ 72 456.537 null] +/D [534 0 R /XYZ 71 757.862 null] >> endobj 537 0 obj << -/D [533 0 R /XYZ 72 410.308 null] +/D [534 0 R /XYZ 72 720 null] >> endobj -532 0 obj +98 0 obj +<< +/D [534 0 R /XYZ 72 456.537 null] +>> +endobj +538 0 obj +<< +/D [534 0 R /XYZ 72 410.308 null] +>> +endobj +533 0 obj << /Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -540 0 obj +541 0 obj << /Length 2002 /Filter /FlateDecode @@ -3575,44 +3572,44 @@ WPÍ° śyWŕŘwux =˙îĹÇ f'Q`ÚLi†7d,źM‚.ä_ع̩ endstream endobj -539 0 obj +540 0 obj << /Type /Page -/Contents 540 0 R -/Resources 538 0 R +/Contents 541 0 R +/Resources 539 0 R /MediaBox [0 0 612 792] -/Parent 531 0 R ->> -endobj -541 0 obj -<< -/D [539 0 R /XYZ 71 757.862 null] +/Parent 532 0 R >> endobj 542 0 obj << -/D [539 0 R /XYZ 72 563.455 null] ->> -endobj -102 0 obj -<< -/D [539 0 R /XYZ 72 493.323 null] +/D [540 0 R /XYZ 71 757.862 null] >> endobj 543 0 obj << -/D [539 0 R /XYZ 72 395.232 null] +/D [540 0 R /XYZ 72 563.455 null] >> endobj -538 0 obj +102 0 obj +<< +/D [540 0 R /XYZ 72 493.323 null] +>> +endobj +544 0 obj +<< +/D [540 0 R /XYZ 72 395.232 null] +>> +endobj +539 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -546 0 obj +547 0 obj << -/Length 2527 +/Length 2524 /Filter /FlateDecode >> stream @@ -3622,101 +3619,100 @@ I şmCŤçY’†emˇ5/ş-7'dËǢĄ™ą$ŃhAXëáˇ6϶lI´„UNCłmöµˇwŰŇóĹ®A–55@·"důËőşBłzÁ/t/ęŞi&Ä“cŮ’D(Ĺ°-˶|(CŘďÖe »iÄIłLu!•|ł©Ľo–*He&T˘É$Sˇ…DJ˘đ¬%V€>ü÷Šnâëśű‡·ŕ|= •Y\+-â”˝ňł’Ńč›!*Jd1ęćf˙lźíö‰A([ ¸mCçŢ YTű5[Ô¶bóEĂĆiĄe?(ťĂ°Ř-BY:'çŽcÄá›ŰgyÎ˙Ćýx✢×,5 %Š$ąLStoź@”Iť±"¸-¨ĹŠ„ř€ďŕ”»Í¦tF+×xž›ąáŞ6^«’ő«¶Ć»÷˘Ş´ę‘ú–¦lW“xhňL€š›h›ÎG“đ#n›Ń'mŮ|á]GC·óź;f™&”t„Jš‹"cÇŘY‡Ę—y ľMŰůĘľ±7Tőp‚‡\ěA™üť:¶)ň}í\›ŃűyzŞÍ“'XbË/M[Ő]'cPňîz°Cź÷Nń©©žd"RĚW˙ł„¤FBčDD)ă˙ŹS+F^Ţ°áhľ!HˇsQnÉá‘ĚBض1ëWj.M L†»u0B×c]mF[ Áa$ĐɡŹWmx“r·«+tň?lçÚĐݬ@:˘_=Ž…” :¬˙Č–ű„ÇZ®í’rÓô=Q˘° Y÷ţ«Ž2oµËj ţü/Xri–ďfRA ¨, ˇ•ShŐ‡oEŽÇM q)T~zw÷n~˙ËÍÍ?>~Ľ}s{>ŕfR¤Z:U˘P1A9w €GKąŢ–c&DTGŕ…#đ†W<ÔěJßçÇě†.iÎüŘs%tűx`Ýc_ˇű7Îa¤±Ďî ^wc–vQ®y?ĚHęg»0.Ô tTRˇťć¤Y®*RbZ÷RÓ“čßś™áł]ş »0ërOzÜ”~îťmů IŁ7ĺÉ×soÜܶ.RbűŶ+˙…_V¦\ŁŁâű˘Ű˘ymZłA6łřdq%Űząü¤Ĺşlű9Š58é„űHö ‰ hó‘âÄ©2ÔôhHÖćOC0€·˝ĐNSP@—űE°„Íh4ÂóDa¶fĂ}O_A»~2ŰĹ+5ëĘqDµáafí(\Wۧk žÍa3ĎT/Ę64Ă,f“ZG}KPŔÔIFj·5©ő†ôdŐâZ.=4†Gŕx(É‹:Xh :xsí§ú "CDnřť,ŞGëťmúI·źń±cĎç(‰X`Í?ĘÍníńnk ôMďĂ÷%5—@ŕšž&RÄC&BFśĘś¦…=ĺDţšC’¨Ó@GäťůŮüUg"sź*«x­8Ďa˘–‘JÓ~¨‹Se ˛V‚Óe`·‰$>[^,/°e¦s’÷Ů‚ĺÜÓB¦Rcx›6Dô)Ă?1\8˛*”ň.f|%S%ĄÖÖţľçPlĂ輸…©fvśj~Ç1ČÉÄé\íh +\üŕXRV{–†.}ÎĹ1Ęq7ĂČ0'2t¦\ćhĘ„9rH‰.Ea\ç]=<…‰WÉljwÚËĘ%*‡T@Q"—ŁT ‡ťĎ’)ÄĽÂ%ŃsżŐŇlާşÜ­ ÇĺëfśHŞŠTR 7 ‡Ś4'Ş`II(iyűńî—÷ăÄrú8ČBűůř’;=} çKóĘ^Śq‹Ś 9řáđ”ňwđV›Gôw]=Kzxôáő¦ÝĎĂüą*Ý‹ <ɬ oCďZ2e˝´˙6ś–ąÜŽ˝ą|ŘŻËÚšf -Ü´nÓ–u{żtůt"“d. ¨4ŠĆă>ałéJ›QńĹžLŰGS§zŘŘgU2‹§łG‚ńeĘRŕüĂ ­ńuL߼µĺË4UU>[¤mŰzs58q?gÄf»ô(§i<âF9)ŠPĆ‹rîĆT wŢům3 DHŻ—ýZž,öcYěv$H˙°»bzˇęß´GVB\ #źÉürkĐ@PZ~»5ôżűŻX(ńUEŰ~*0 7Ą2Í–‹˛qĽă;Ř‹ůM©\¨<=đ›ŽzüŤżAĂŃ>©ŢŤ°p^Ęz—ÔĂe"5ĚŠ~0ĂŢ퉖±l21§ěÝ}ěËä2}Äe4TŁl‰Y´|]ç+ő*a’…cp^ŘA¤Eś%$_{S`çá»8â—•ť´÷.úęĐ%R˝{ĆÇŘš«©sFŇĎTśUdhîF^fůQúqň:ާ‰F $Ţ’ĎâpÝĺŮ8˙€4…ó4Řî’Şáďőěáf KÇÓ!ăzrĚçîaĄ¨iáŠÉ.ćä˙qW¶ŕťš'ŁČ;5©ŹĚ•úż;Č8u§ma˘éŹú7bŤ‰¶–°ĚĄě(µYČşa & .k¬Î’ëĄ Üd°Đ!čůËŕ/.ë×Nw(x§)w;Ş]Ëş™Ľż§cGý*ńţđ6Ă?ßč/ťĘˇeÇŮýŔŠô0»÷VÄ·±˛ôô‰?şz°p;eBţ߬swćâĽ=p X¤"ËřËĺĆş«€6°¤Ó&ˇ˘ThĄ‹ Pé$>mˇńȲúË8Ľ‹>ŢEď‚Ń+<Ĺ8`ĹĹč˙Ć‚1ë}ňa]..Ér-rP“®8ôßwIw*é~őç= S=éPXuzlŐ]Xú\ĂócwŰ\k! ĽJŤDć×ĐĂáŰůŐ ńş +Ü´nÓ–u{żtůt"“d. ¨4ŠĆă>ałéJ›QńĹžLŰGS§zŘŘgU2‹§łG‚ńeĘRŕüĂ ­ńuL߼µĺË4UU>[¤mŰzs58q?gÄf»ô(§i<âF9)ŠPĆ‹rîĆT wŢům3 DHŻ—ýZž,öcYěv$H˙°»bzˇęß´GVB\ #źÉürkĐ@PZ~»5ôżűŻX(ńUEŰ~*0 7Ą2Í–‹˛qĽă;Ř‹ůM©\¨<=đ›ŽzüŤżAĂŃ>©ŢŤ°p^Ęz—ÔĂe"5ĚŠ~0ĂŢ퉖±l21§ěÝ}ěËä2}Äe4TŁl‰Y´|]ç+ő*a’…cp^ŘA¤Eś%$_{S`çá»8â—•ť´÷.úęĐ%R˝{ĆÇŘš«©sFŇĎTśUdhîF^fůQúqň:ާ‰F $Ţ’ĎâpÝĺŮ8˙€4…ó4Řî’Şáďőěáf KÇÓ!ăzrĚçîaĄ¨iáŠÉ.ćä˙qW¶ŕťš'ŁČ;5©ŹĚ•úż;Č8u§ma˘éŹú7bŤ‰¶–°ĚĄě(µYČşa & .k¬Î’ëĄ Üd°Đ!čůËŕ/.ë×Nw(x§)w;Ş]Ëş™Ľż§cGý*ńţđ6Ă?ßč/ťĘˇeÇŮýŔŠô0»÷VÄ·±˛ôô‰?şz°p;eBţ߬swćâĽ=p X¤"ËřËĺĆş«€6°¤Ó&ˇ˘ThĄ‹MRÔ´DńȲúË8Ľ‹>ŢEď‚Ń+<Ĺ8`ĹĹč˙Ć‚1ë}ňa]..Ér-rP“®8ôßwIw*é~őç= S=éPXuzlŐ]Xú\ĂócwŰ\k! ĽJŤDć×ĐĂáŰůŐ%ńŔ endstream endobj -545 0 obj +546 0 obj << /Type /Page -/Contents 546 0 R -/Resources 544 0 R +/Contents 547 0 R +/Resources 545 0 R /MediaBox [0 0 612 792] -/Parent 531 0 R ->> -endobj -547 0 obj -<< -/D [545 0 R /XYZ 71 757.862 null] +/Parent 532 0 R >> endobj 548 0 obj << -/D [545 0 R /XYZ 72 635.186 null] ->> -endobj -106 0 obj -<< -/D [545 0 R /XYZ 72 505.278 null] +/D [546 0 R /XYZ 71 757.862 null] >> endobj 549 0 obj << -/D [545 0 R /XYZ 72 412.612 null] +/D [546 0 R /XYZ 72 635.186 null] >> endobj -544 0 obj +106 0 obj << -/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> -/ProcSet [ /PDF /Text ] ->> -endobj -552 0 obj -<< -/Length 3172 -/Filter /FlateDecode ->> -stream -xÚ˝ŮnÜFň]_1oË$†}đ -௬®WÁ껣€Żż ¸+±J¤/t´ŠEęG\ĺŰŁ_~ VĽűĎ*đă4^Ýڝەֱ ÜW«ŹG˙=ú÷ĹŃ7oE´Jý4’Ńęâj€$~ ăŐE±úĹ{[šŞXź@F‘wn~ß—­Ágťjďb-ďn·>‹_©RďŤY ŻËŰr×—M˝ţőâ?G›‹řŇ×i´ÄW§ÉËńŤRá© |łb[ö}Y__vÍľÍÍĺ—uyYµ7Ë@ৠă%Č×RŹŔ¶ ÎĆ^ÖćHçMÖ~ -Bř_q–#PFHF<ôľYź(dĎĹ 0J)ĺvtź7–…?^5-Ýônó@>ęŮ٬ŁkŮ#NŔ4Tau"„ź†!łdÇ"ĘZ·ą^|`„¨˝ő™_©ž 2Šb_$LfQvŽW×ć˛o.ó¦ÎÍ®ż,‹Ç8ćX?( Ţ\`†ÔˇB– b8*})(˝F˘Rä©)Żkzř A›;zčľ/Ro -n>Jרč¸TOz.ëĹ‘U–›G(0 ኯłćŠx˙Ń´_J'Ο׉ňHňěóľĘÚ;zŃ"JˇÉťL„7ăşŐ‚€ "€ ¤MWZ«ś«YF—/%Ľő·'t%|%©ĐÓQčŁáĹdx'azd‡­Űú2[š~ď/Úˇ# Ôk§ôĢxĘ"ýŹ×’ÍAěë€ÉµĚMŽÍ -ę’•$ß·­#»,ňł¬l -ô •!w2m  łíč©í(¶=’úó»Źď..ĎNO:?߼?Ýđ¶ěsEŠ™&’äśÎEÄRöôTn·@vÖ›Š?:0Â+»‰?qÂ$őcťľ8BĘdÂĚX®Âř'„{䇾€h(ÂŔ;­Qô~Ś˝EEę,B.nóâęD6€Z­€óľŠ8ŕ~’"Xś™ËSú±BÚěî×Ě÷rŕ×YŽľŠµ‚5˛ŁWŔ¸¦-ŚU'\Úa2ň SF’d›™Ź¸1YŐßäYëĚ+ËË -öb€žËŚÚF}&ý—‘kÝcV•Ĺ‚l…ÜGÍŞđ™l˛j-4¨g=űČŔB€ÁΡŮfeý÷S1±í4ňÓ ^…AęË€ÔÇ>«‹¬EŞ´¨‚Ű UZzÄvXžĆ'x´n -®ďę]Ö—†lz뎟í{÷>Ą÷rň^x›­^çwôęśr<óúrt:ĂŃu oÇĎh¨SĺTsĺ„GŇ Řş4Ĺ*îL\zxŚié+I›„P¤ľiPúU1ó"tnß™âQÇ0ÄmťşŽ gIđ'ťśĄŰśo“Óßu••`(.ńZ€Xoľ]ź$ŞiÍ2< 䎨¦¸t{cřeF—™ÍX@%Z˝Ú÷íđ%¬:@Q>ŹŚłĽĽ<˛Đ”4 1{:±ńý!:…´Ă)'^'6ČĎÓRáM †-bď^"OCöiEk˙ű€`¦bĆU$ă_(Ęc4˙ÉĹeŠyÍ×,›pá ň×lŽbWQ *ţţg›>–Ű;:¦L&šśa%ş-{«Vb—ý´hžŃ‹{^ŃEëD$ˇ\  -6îe¶Oj –ąďĆ ¶ů= ę¨öČ“D´č™qŮ€ę9 dč‡BsH’ŢY§«–¬ěŰ–MÖş( DÇ;CR)ryc1TÂčđ‚ŘŻ5EÍîžş1Î"xçq––ő3ä-”†ěׇü×ňňO'ţEA‡ŢĹ’ńµ3Ą×„2fŚ€Kí -ˇlHŰF_Ürn”Oˇ¬Ŕ>l—ýő5f@ÇÜý«¤P‹Ř˘ ŁŹ4‹ŕŚ0F©F Ýë©Te/|ŔćűŞ/wŻěÚĆî- ÓvÇĂq{˝˝)ÇT9bG;‰Ö‘·ąřa -¸cdŘ×™ĽĽbŚnŠëö!ă]ŕ}ˇÁHO+¦Šc?JŮ -]iÔ™ -ŻÓIĘúµWˇmdčLG~LęVűýŘ~öµěŁĐĹ(m\Ś¬‰{Ő×ř"iVQpćWÓĚa"qőÄŐ=‰+—‹˘Ł÷¦;žó3±«Aěn±ŘŐLěĘă¶Â v5űPWŤbGŘ­ąěĐ÷Ď;*T~ś(w1-řćbמ+ö*“ Ś1‹Ú›>Ž_†`üĎ |)o-üDrdsŹŽ­Ąeáđ.ŘýŹvĘí¦Ňú1>Ud˝33ťşů‘˘B¸Ŕˇ@‚E(‘·ĽĎEňČő…ď8­Ž€ĄÄÍŠ·R8‹Ć€Ňü3Ă$ÇćÖŇ{»†´ ň´|eę'1Ë×ü‘mAgż]pqÖ˘ŽË Yp>ᣡ#đă uˇăGS”yV±eTYą:[yµwťµ{™¶¦ă’FgA“Ş“7-O·…łwí*Pl`ÜŃĘ,ĎgSż;gôź01/búš/DJ§mÓ6Ťó4¤¶©Á XDľ·ŤĆŃę`7z Řy <Űő{R?X i;×ý2čóŘhÜe-ó’4hŇZËňľüy˛y¨™SŽ0µmŽ=¬YH Ž˘•L5$ql]P'`ř_:5Ę:5•”đ­-7ĺ_,Š˝~ďÔšÁOýl˙T¤4Î/ÍJő‡L¤„’Ä: *R¨l -îňâćŠöjË‚ęMjéŰG^Yk©”Ä…/(ęĆú÷±Y?tŐTą{ë*,”÷g?nŢĐ}>¤ť´ąĄ›ˇEmű×Ď2ü Ť‡†ü¤®®ťť»tmRŘ’ ż˛G±Şżô¶î”°Z‡C…÷w[ö‘ן»™>˘Koö˝K‡&qѢĄm!¦ŁôkăuA˝Ż€A'ëaKóqpá -żě:+k—il§n;+PU ±i”‹\ŽŔ¸đĆ\Ź‡“‡¨!)É=ÚW8ŕŽÇN„”‘÷I…ń' — ô`7H„ŻĄšĂ‚3áă & 9?6Ő›  BȤgŕ!Eě ‘ľ 5˝RËcÔe‘ÚvY ×eÁ{L§9$vXŕ. Ţr—_».‹{Żô0tOpĺ\–ÎÇ»'OşH‘&ľŠ˘A‡Ű,ŹpjŹ0‰ťĹ>ŔşÄSs{îŮhęٸÔthŰ<żg“D~¨âżŇ!řpľ9ÝĽy÷ţ»KšÚ˝{ă’–‡˘Ä|$T•őo÷Č‹ˇ68•ss;śş.r¶ŰŃ/ŹŁĽŻ\QŠXű:Ś\Ďjk -˝ÍŹÓĽ‡ňßp:“ ·fÚ”˝vš¬ęIđ_Űî gj!0Ö©!XË";ÁÁa˘ĺ|m{Zá´ŮÂ#߀k2™YŘÎŤ-6píĚÎNŇi8€/nÜÍ@{cG2 €ř\VŁ&¸ˇ‚=GS–dP$ŰŁĆlškčc>I—ÚÜŇža{â*ZźŹ žvŕ©C7ŞZÔĎ´·!Ú9ŤËç!Ń4Ĺč]NĎŢźn>ŮÎÚ´Çóţ‡ŻHˇĄUr©-f°ŃO˘ĐŤś#8Ë x­„wFüÓůf:t?<™q“ąX@dŞĄŻW7®w ű í[öŢd -4BČ0ż¬»i1ľ(çuKÄ]Đv—lWÔtÝř®0­«äŮJܨȝĞ[ŰbfpP˝]úËU!+äň†’<ť P…… -•xFëłÉ¶Ž§ÍŻ–vXcÔ®Ń ‹a+›Âry$őL5©¬ĆXť]×M×Ű*A¶Č6s˙G'Ľý°a·oÝżĄŕ¬E§‰÷ˇĺŠĂ@Rd‡đ[ó¨ăţ @şŇr®‰´ťÜ\ýí·#š -endstream -endobj -551 0 obj -<< -/Type /Page -/Contents 552 0 R -/Resources 550 0 R -/MediaBox [0 0 612 792] -/Parent 531 0 R ->> -endobj -553 0 obj -<< -/D [551 0 R /XYZ 71 757.862 null] ->> -endobj -554 0 obj -<< -/D [551 0 R /XYZ 72 575.41 null] ->> -endobj -110 0 obj -<< -/D [551 0 R /XYZ 72 134.114 null] +/D [546 0 R /XYZ 72 505.278 null] >> endobj 550 0 obj << +/D [546 0 R /XYZ 72 412.612 null] +>> +endobj +545 0 obj +<< /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -557 0 obj +553 0 obj +<< +/Length 3062 +/Filter /FlateDecode +>> +stream +xÚ˝]sś¶öÝżbß.ž±)B@gúëlÚtš8×qűŇt|É"ŰLYpŤëţú{ŽÎĽvěܦă™Ňá|ÉŃęj­ľ?xüă@Ŕ­Ä*“ˇPz•Š<Ô‘\m¶żţ­Jx÷ă* +Ó<]ÝڝەRiF<׫÷˙9ř÷ůÁ7Ż„^ĺa®Ą^ť_Ž°˘,ŚTş:/WżŻ*S—‡Ç"’ZgćŹ]Őś«\ç‡2 înŹa0đ+ăUđ6|Ü.śĐcĆ"ń…žOBźl.%›{‚č}€O6N˙Đ˙eś> /3Îą ÜŇ®˙¦şZ”†*b*AÉ7¦DiĹ~Á*·Ůuť“˝¨ň“lÖş×fŹE"b2CeÍ ł%*ßc¶DŹ©żĽ~˙úüâôääçłłőŰ“5o+>Ö¤ćy±MÎ9謊(PkŚEŐ@łj»˛‹ÁÔüŃ‘îXŐ{ćđ`čJ˛˘ő!—|ó +´'@-Ő«c©ÂXsäţ E´83—§ Óił»_0ß«‘_§ô|¬¬‘=˝Ƶ]i¬˘8áŇS-řŚ$ɶ3ŹsmŠz¸Ţť3«bSŐ° +ôácÔ3ę3é?Ź\ël‹ş*dÇČ}t÷¬ +É&ëvÔ’QSzÖł‘Ś,xěÚmQ5?žmç:ĚŁt•Dy(#y)‹©Rb¤ +=Ş” í°ěG;Zăëć¦*C¦ěÁ:˘ă§»Á˝Ďé˝ôŢ‹`˝5ŕ +›Í˝:#ÓnďCú ůşÇŐ„ĚG2•­Ŕë‡R9G}itP¦Á ‘OŽ`x>ĐĂľ _˙X•°˛>[l™ČMÁ‚O‹S °XĂ€n ź­)ŔŘ4Ó÷®a…UfSěĐűđQ‡–;¶©[÷jx ćĺń\Đ*•Ş­‹/}….t.eŐLá›7:puüâÚ= 'nń‡·RImŃéŮŮú‡3†t×f{ć;S¸ÄÂÜŽ0¬Çw¸ą2ŕ¦ÁŠU€ LŠKą/MÓfU˙őů‚ú4ăĺŢ\Đ@9šy}99ŚÝčşDpĂs4T_9ăąr”t¶.M fw&.Ě3¦$÷;©ĄÍ9(R_·(ýşśy:·ëMů¨c㍲N]iHQ2"üłN.„pÎ7ďô@]m%ȆKKëő·‡ÇY$jZłĚĎ™(Ş).Ý^~YĐ0ł ¨B łO@ű®ż„ĺ (jËç‘q–—§cÖš’g &NÇ6ľď!Dĺv8ŔĎRÖYÚ ?O·Dŕ—ßá IźV1­ý÷‚ńĹŚ«HĆżP”Ghţ9’‹Ëó +š ®Y6áÂKä!ŻŮĹ®˘Ôü}T4x,!vtĆ0™hr†•č¶8¬Z‰] ~ő=Ł÷|GR™Čˇ] J"6î˝yk–ąë§ ¶ţ= Vü¨öČ“gD4ýĸF@őś2 ˇ8¤ŤIď,ŠÁě˛#«ű¶Eµ.JŃńŽĄ•€TŠ\ŢTZU†p"ŔşĽ¤ök-ÁEQł;‡Y?ĹYď<ÎĂŞy‚ĽE& űő1˙uĽúˉQ˘w±d|íLéĹčUŕE ŔĄqŐN1¦m“/î87ÚxŽPŤV`'ŰÖeDŤĐ)w˙*)Ô"¶ÄŃkĹ"8% ô$U ş1Ň­Y/HĄj;đ›gě꡺©yĺ¦kíŢŞ4]4·ăíu5ĄĘš­­u°>˙ÉÜ32ěë̦şdŚ®[ŠëvRđ.đľűĐ`$ĘĎ+fś¦ˇÎŮ +]iÔ›ŻÓIW ×h:Ó‰^ÝjżźÚďĂľŽ}şX#â^ýuľHšcťśąÄc?sđ$?$ńřžÄc—‹˘Ł¦?šó3±ÇŁŘ=n±Řă™Řc{:‰=öĹ>ÖU“Řvg.ztŕĂâNśÄašĹ,îŇ/řćbW+öjSŚŚ1‹Ú›>Ž_†`üĎ |)o%ÂLrdsŹž­Ącáđ.ŘýOvJý㮲~ŚO•ĹŕĚĚF§~~¤¬€Đ\ŕX Á"”Č[Ţç"ąv­«;N«5°”¸YóV +gz +8 Íż +Lrln-W‡6µÝä+ó0KYľćĎb :űí‚‹łp\FŮ‚ó‘L QFą oLYmŠš-Ł.ŞíŘŮÚÔ;×Q»—i+Š9.itäUťĽql ş-ś˝+WbăŽVfy>›ú˝Ř9Ł˙‰yĐ×$Ěx!2P:e{ŤąfÎŻŃş¶/`ůÁ6BG«ýäRç6ĹÍ°s!őťŐ®w}ĹOŁ>«±ÇxStĚKŇ ˙2a3Tź O65sJæ±Í±‡5 TZŻd® ‰cë‚:Ă˙Ň©QÖ©¨¤„omą)ÇřbQÄč ÷ú«“5Ť‚÷ýěđą$(VX8?7+]Ô2“a”H"ë$¨Hˇ˛)ąÁ‹3ĚíhË‚”ęMş °SŽ¬µTJâÂ'ukýűÔúźAşlëšÜ˝uĘŰÓ7ë—ôĽÓNÚÜŃĄřP)Ů~ŔŐ˘€LŁ0ĘÓ±˝ďŐUŁmśsoî¶$ĂŻěQ¬ę/˝…­;E%¬RÉXáýÝ–=GäĹÇ~¦ŹčŇŰÝŕŇ!/.Z´”-Ĕο6^{Ńűt|x,liî´b*üŠ«˘j\¦±őÝvQ˘Ş:"@csť}ÎŘ´Ęžgm÷¶”2”©ž¬Mćl ř@Y>ÝÚ6lÇł‚†YŔęLČ\%·%ěî©-Óűm {óÎo6—W;\xc®·˙Ş#‚^2‹%·l]ˇîŁ‡_Ć:$‚ŰÖÓ»ËAjKL9¦ç:ą-1]ť:\ß«ÉFŢŰq Ű¦Ç›źő,"ĎÂXë9Ń_Řť]wâ [_Tż;[ź¬_ľ~űý]N˝~ébóCÎp~óQWÍď÷o]wS(ÎXÜő,]-äĘę9éĆtcő• '‘ŞP%Úµf¶ˇ$XżńĂ;Ąy‰ßz§·Ćď˝&AççdĘ‹q‡¶IŔ IŚuµX:ľH°cĚ'ś)Ó¦©u“ř=ľyŔC EĐ?p±hĂ -ĂÄÝ·ĚŰř0f^kŢ60Čę60ör3{yë^\»‡‘öÖŢ[űwËŹ;íT@@Şe‹xöŹAö{@Ú·ŁĎMě˙‘ x +LŁšŢŻ9•Ţ<=×\l'¶‰b›¦ď§wĄé\ÁĘVânDÜIl-uŔ˝ęí˛ÜT®2J gń”˨l„*,T(8 Zź]ŕŞÔďńt´ĂŁrý,XXÜ)˛I ,—.QkP‘Ę*lĹWM۶XBݲ+Ü˙ť‰`7n¸Ůu¤ű`–hCyĽë8±6ű-ă~guü㉠ČWJ† AÄ%f'×ç˙eJöR +endstream +endobj +552 0 obj +<< +/Type /Page +/Contents 553 0 R +/Resources 551 0 R +/MediaBox [0 0 612 792] +/Parent 532 0 R +>> +endobj +554 0 obj +<< +/D [552 0 R /XYZ 71 757.862 null] +>> +endobj +555 0 obj +<< +/D [552 0 R /XYZ 72 575.41 null] +>> +endobj +110 0 obj +<< +/D [552 0 R /XYZ 72 134.114 null] +>> +endobj +551 0 obj +<< +/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> +/ProcSet [ /PDF /Text ] +>> +endobj +558 0 obj << /Length 1834 /Filter /FlateDecode @@ -3732,32 +3728,32 @@ H “ő轢k´>ugaęţ©ö5°OÔc÷˘u{Řŕ–Ĺôćę€ČbŞ!Sll¦‹ŽqĚÁĄč&OËüž$ѦlŠŁw†JŠ•Ř°rÂíWöFSµ˝ăžw>§´S7˘ýuÚ:EGÓˇŢ_­PBá‰ßŕĘDZť/§ólŢîoě]\.çÔ<ż]\.®Ű¶§/˙02§ŁśŢň,ÍL »ŚjfS7Z,cÔž§—{[ţ‡ręň©+§şÝŠćŘŠYo=ѧŰťú箞¸ÓŰ # ˇĘ„o}‚Sâ1JFĽ„:LJ«ěiIK§˙ýL|Ć#$ń"¸<˝ŕ‹ăô˙žO2.Ź„Ďă4č}}ţ«PŘ endstream endobj -556 0 obj +557 0 obj << /Type /Page -/Contents 557 0 R -/Resources 555 0 R +/Contents 558 0 R +/Resources 556 0 R /MediaBox [0 0 612 792] -/Parent 531 0 R ->> -endobj -558 0 obj -<< -/D [556 0 R /XYZ 71 757.862 null] +/Parent 532 0 R >> endobj 559 0 obj << -/D [556 0 R /XYZ 72 666.257 null] +/D [557 0 R /XYZ 71 757.862 null] >> endobj -555 0 obj +560 0 obj +<< +/D [557 0 R /XYZ 72 666.257 null] +>> +endobj +556 0 obj << /Font << /F16 249 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -562 0 obj +563 0 obj << /Length 3016 /Filter /FlateDecode @@ -3774,42 +3770,42 @@ o\ ßuéuq<SP›$”ŽJKýüŃł)zš“ă^náŁZ1Lńř¤4>«d¶ňy„IâGŕ`+Ź™ô˘äe’r8B)뉔'ę€"ŽXÄęQë‘lĹĄ±¶NRß}ykUtŐaJŚ#OÝŹĂFŤŁ`Ý®öy3[ľJł9ŮO<߸*ř *.łˇűLŞuv„ˇ ¤čÝđ D!•ĚTzŔaĐąÎö`¤%ű‡ÔÇ.ÇO“-۸zą ›G,>„Mř®ÚćžŐWHYćśüg=örÄşWë2íÉ+“r\ŁU*'JńŔŃ-˙€€ůŞ{Ö܇N'Ü5>yşEG'?Ł?śśE~,†śk#‚ f'ó˙±’«­ňKÁ>^ ‰ßrd3ĽĎóş#Ż™Î(čůÝ\s^—]¸übPXîëX<ˇVłIŕ…˙ „O'Ő endstream endobj -561 0 obj +562 0 obj << /Type /Page -/Contents 562 0 R -/Resources 560 0 R +/Contents 563 0 R +/Resources 561 0 R /MediaBox [0 0 612 792] -/Parent 566 0 R ->> -endobj -563 0 obj -<< -/D [561 0 R /XYZ 71 757.862 null] +/Parent 567 0 R >> endobj 564 0 obj << -/D [561 0 R /XYZ 72 720 null] ->> -endobj -114 0 obj -<< -/D [561 0 R /XYZ 72 478.51 null] +/D [562 0 R /XYZ 71 757.862 null] >> endobj 565 0 obj << -/D [561 0 R /XYZ 72 266.846 null] +/D [562 0 R /XYZ 72 720 null] >> endobj -560 0 obj +114 0 obj +<< +/D [562 0 R /XYZ 72 478.51 null] +>> +endobj +566 0 obj +<< +/D [562 0 R /XYZ 72 266.846 null] +>> +endobj +561 0 obj << /Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -569 0 obj +570 0 obj << /Length 2015 /Filter /FlateDecode @@ -3828,27 +3824,27 @@ xI âT¸xş‹Ć¸rAůü宜 +óe ÎD|A¶üĺAĎúY˙|¸w÷€SĆ~ďůPOëÎ9¸v¤t§b-s¸<áT$ÄÜȢCŹűˇ}Á>ŚĹ6Ľ¸Żyö'ŐŞn‡ŤČp`‘KK$LÇbXŮŁŚx4µ@ó‹@;Îđň-ńĽUrsľ(Ď?Üżżßî~~űöׇ‡»źŢŢá”á˘o&x>h-s­ĺÁ*Ĺ‹ĎŠs‡XËôîtyˇW’?Ö`kuŢşi߸­nĂž > endobj -570 0 obj +571 0 obj << -/D [568 0 R /XYZ 71 757.862 null] +/D [569 0 R /XYZ 71 757.862 null] >> endobj -567 0 obj +568 0 obj << /Font << /F16 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj -573 0 obj +574 0 obj << /Length 3490 /Filter /FlateDecode @@ -3867,82 +3863,82 @@ A ć$÷Ó€ô=ôžĎnđ'Ëm˝ĺŢ9Żaő°ăŹ—”3*äÖď7O^S<ľN”1˘×$pÉăŕ9)=`'ňhꤾÔȉWhôüGŤ.ýÓ?=#âłůFqĂľ çÂËI)[c!˛ń) ߀ńú˛’Ł4ŘŕçNí18ŚoŚŔßoíw>÷ń‰;GÁ×$Ů<1ŤŹdhsču[DáźB…ăßořŤyÝFá·o6P¸ć E ¬6ę͉’-”Č˙ÂÉÎŽ)ťPůK·$n8ŕ}ÄťŻ>)řܨH‹Ü+J]Ý÷ĎcׂY2˙޸؇äI„ŕ,a‚3L”O/$Xă O–ĚiÄ+`•`]Ę_Ę–_OqđřÁ†2ŞÉúxÄÔÍŻ®›Źiýńä8%+b÷kđ;öŞ€»ÎÁ‡ç`r3‹MnlOÝÜ^üšaj endstream endobj -572 0 obj +573 0 obj << /Type /Page -/Contents 573 0 R -/Resources 571 0 R +/Contents 574 0 R +/Resources 572 0 R /MediaBox [0 0 612 792] -/Parent 566 0 R ->> -endobj -574 0 obj -<< -/D [572 0 R /XYZ 71 757.862 null] +/Parent 567 0 R >> endobj 575 0 obj << -/D [572 0 R /XYZ 72 611.276 null] ->> -endobj -118 0 obj -<< -/D [572 0 R /XYZ 72 181.935 null] +/D [573 0 R /XYZ 71 757.862 null] >> endobj 576 0 obj << -/D [572 0 R /XYZ 72 77.867 null] +/D [573 0 R /XYZ 72 611.276 null] >> endobj -571 0 obj +118 0 obj +<< +/D [573 0 R /XYZ 72 181.935 null] +>> +endobj +577 0 obj +<< +/D [573 0 R /XYZ 72 77.867 null] +>> +endobj +572 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -579 0 obj +580 0 obj << -/Length 2085 +/Length 2087 /Filter /FlateDecode >> stream -xÚĹXmo¤8ţž_ÁGZšöb° |śť$§¬N»{™ž‘V;«4NÇwÝĐôĚĺ~ý•í2`š~݇S¤4(W=őö”Ł`DÁßn"üýzCá7 -hć$ŁđCs"˘8Xďnţü+ -JxöK‘4OďćÍ]ŔxL’4ëmđńć7?Żn~ş§"ČI.b¬^zYQF"–«2ř3ĽWr[.–4”…ŹňëA5Rßłś…«Eś…oűĹ~äbÉx–†·˛]7jß©şZüµúĺćn5Łl–‹©˛,Ď~\Y‘SĺÔ*[Ęoj-źäżµNiX·‡F>)P—ç< ˙XdI(ŰĹ2Éă8T•Öľ“ŮŔJ&âđ=ü&IŘľµťÜ-7˛’MŃicőęˇR_Ň^«RÚŹŐ—(ać{X}©mq ĐŚgÁ’R’sn5“ĹZńj_˝5zękŢŤ•%FÂrVâÜ´uel˘Q"ň3F¤ dÉu늄AŔ<"%4üv°Ĺ{«X"Ő¦˛7˙Ňĺ›˝™łś…]ŤżŻhÓď §©˝˙ţZϨC§ŞpNbýH«˘ZôĆáŮŘýOąî}a÷K†ý ž ~KĆx¸‚Č.l‹FÉvČ0_âHIPŤ@eóúĺˇíŠ¦{*!Óa1ĘF ›ł©”M—g ”0nĂwe4Śąý®* K˝Ňpm,‚‡íażßľŮµďʢµ7¬+ ×…ôá)%<Éíţ5úŕĐĘ’ś× )ç9áłź{HeGHuj'ĎhÇ)`źř"ź2šfa/`™DQ‚Héd´Hé ¬Jôł}mH$ßă. x˘oĆő4¦$‹'®0ŐňSóńR6vřˇ#«ŇĎcßB¸ĚYÖé˛dw Ľl &«Sűd6PŇô;ßLŠŁI/M˝ëŤşŇű 4çĽďŚ˝Ö÷c˙'ß‹ß[ŔŇ1`É `炠ӬР-ŇIšók™Ć©"ͦ. ÷ĐZ¤.®•ÓŮŕ«jK9É`Ő¶ÖľZÖCÁΰ`§n×tT°u—ö-(ĐÜčl\ /×'&’łÄęĐhc8ôtUm&¦vÚ=o6Ď0slköŕnťsý¸‘ëş)uR'`áëUU©Ön­ýjŇçű|¤ÍHő·ő’ă \Ő"Ŕ.!5ĐÓfŘÖ‡f=OSŠ®8G ,}Âh4Ě ÜÂ$ӡ͡o4–pÍ—Ăü§Ŕł„şčűtűŕW@Mîá[[ÔJú^Ţ4Ť.ŠŐÚMC -f×—üÔĚ§ŞľŮ“p­)żýüđńaőôۇźď~ýp75°ÍťŔĹŠ¤Ç˘aFí=§ë ččŇŇ«vçI“ĚY¤ŚŽë”)ýÁᥞTŃ!7ĚŹGh‰1Z·w+ݬß?üýZf#pą3óËmsŘĚu¨i«`}ĸ壠mOXˇőY,bËľv•Ću®ňŻ&Íç&Łe)˝!k:];z†ŽWÝiN -ôÚVĽÂM—“qxĽ?ĂvgzôęŐŤýĄT;—Í»~§rfŠn¨é‹ć›ňŘ€­ćäĎ®fĄźR{ű(G*ÄŮ:éđuŁ6Ş*¶§lµőç ŔRd3uŹ™Ţuůą>tĽ9Ů$děEĐ˙@T‹c‚6ŮS‡3SĚńID~k{PNhÁɨ"'Ď!Hś˛>$…btî”SAů4ş ’ť_”GÚäEC&Â?i.ő9¨‰Ýţčö§{–Ž;yLh*Ŕ}Ś$Ď\żÄ4š|ăwŘťˇią y”‚ADâ>@ľ—ĐęTµ6‡±f©Hg9Żľ”řdD?(2Bj‡+ĺV1Ş©éĺ&ň%”Čţi›¶őÎĚx¸ţĽ…Nů¦Óĺ.:{Ń95!Ľv˛Äść;ÎZĘŔif˙j\ ¤ó©N Űľzoĺ$¬¶E×9*R¸ě* Ví;Ç!:YůŤ§fóââź±śóýśź&ÔĎ…KÎMwŤÄÄčű{3ťi=XîLoAdŕľsL<„e4?‡<Ü@)ł -Öźqn¸ \[ÜŕâţVŻľgď˛ŮÂŢ~r§äpÝĘÚŰďŚPw©ăęNómUF.*9˘Ťĺĺ¸Č!™Ý ń⼻֨¶Co?: Ő]h\EŢyÇCUvSĺ‰#ÎăŮLŻš!{[ţ@0«!ç>iµĎ]>ë,¶ę¨ý1SŞ4©ŰwŘł°4lkKyŘq!ţĹ‘Wa«w…ŞLű®îáĆó˝đál]áŠîËćŰáLŮfŁüĂ,}ö^ďÎÖC7 EP)LśPSÝ@Ć„÷%´…˙śZ ď +xÚĹXŰnÜ8}÷WčQ ¤Q"uyĚÄöÂÁ"3ăt &nŃmîvKĄNĆűő[$‹şµú’}YpK”T¬:UuŞŠQ° ˘ŕWţ~»˘đ4Č +’SřˇIŁ8Xď®ţü+ +Jxö!HVdÁűć.`<&I–Ăő6řtőűŐ/««··4 +R¤q¬ž:YQN"–«2ř3ĽUr[.–4N) ďĺ·˝ŇŇÜł‚…«Eś‡Ż/‹%üČĹ’ń< ŻełÖęĄUuµřkőáęf5ŁlV¤SeY‘˙Ľ˛iAITP§l)ż«µ|ť˛°nöZ>(P—< ˙XäI(›Ĺ2)â8T•Ńľ•©a%Oăđü&IŘĽ6­Ü-7˛’Z´ĆXłşŻÔ·˝tת”îcő5JýVźjm,â4ăy°¤”ś;ͤX›/žÝ«×VOsÍ›ˇ˛ÄJXΊ@śuSWÖ&%iqÂ(4," î\‘0´Ň4#4üv°Ĺ;§X"Ő¦r7˙6ĺ«»™łś…mŤżĎhÓo Ż©»˙ń\ϨC§ŞpNbóȨ˘ôĆţŃÚý/ąî|áöKúý,ž ~KĆx¸‚ČL}xěęŤ/Ďđ˛PĘV¨-îT?y+@’hÝŤnöÖ=–ŽţiÚZ{ U5ŃpŚ<ŹŰ“ŢĆP^×ŐZľ´Öá)Ké™ ¦3.L†.4*yŰ´|ŤĆ +÷ó©U)ty< ß;ĹN%„ŞFaŃKU˙‘Nň2˛I>üĹXŰ”X‹ÇýVh%›>ĂĆűDJB„j*›ÇtLM+tűPB¦Ăb”30ë¶fS)ź„/Ď 0îÂwe5Śąű®RT–:ĄáÚZ›ýËËöŐ­ý0PŠĆÝXW®3éĂ3JxR¸ýkôÁľ‘%9­?)çá9sźŹĘjŐNžĐ(Ž3Ŕ>‹ü>e4ËĂNŔ2‰˘‘2Éč2AX•čg÷ZźHcŹűp°ŕAŠľZ×Ó’<ž¸ľÇÔČGLíÇHąŘá„Ž¬J8ĽÇÂeÁr°ÎĐ’Ű©7đĽ5¬^íŁi¨ŇĚ;ßmŠŁIOşŢuF]č}šĄ§ĽďŤ˝Ô÷C˙'ߧ3ľw€eCŔ’ŔNA;l{ˇAGŇIVđK;Ťc$ͦ. _ ´HC®•×ŮđEÜÄ2NrXuĄµckĐş'ě ;ó»fÂ6Q\ş·€ ą%č|HĐçů‰Ą )XâtĐĆ5]U›‰©­qĎ«Ë3ĚWšÇp3ŚÎąz¬ĺşÖĄIjč XxçkUUŞ5„[ăD?Űôů1i3RÇŰŽ’ă \Ő Ŕ>! ĐÓbŘÔ{˝žoSD+Nµ®}Ŕh´ťAą…IfB›CÝĐ®áúkÄáţSčó„účű|}7f@ÓÜĂ·i(¶¨˙´é{ząë˛“EŚĐ4ĂŘ« ŠTë‘_ą…ŹcCČnuŇHđA7ENRä ‰iěö˙¶h‹Ëb€„R0ąc¨łtOěÉGF+B+fż3˙±qwśÍ…ŤĂďŞÜ‹­»w¦7îĆŰ^ř©âLn%yDbŽw!6"đ“Ł…vE<­m@Á>IP—›t™Ó}¸ĹaŹ|Xß0~»7_ýjţ}ą»ľąÇ@0Ý3&ßsíĹ©VőóŔ<“˝˘ÜÁ{0ßuťú$ĺOˇô]5Ş}@ć[ďµ6¤X­ý„٧`~9ĺgv¶8ĆúvGL´¦ýí—»Ow«‡_ßż˙|óńýÍ`ÔŔ2»×&-0$Š'-’‹úµóśáĐѧĺíN7M07dYr:ä)Rö“ĂK=aŃ!?ĚŽhĄC´®oV¦Xż»űç1´0Ěŕôrgć—k˝ßĚU¨i©`]ĸ壠+ČĐć,‚§,ëci߸Ęŕ:Çü«IńÁąÉjYĘŃ5ť®}{†ŽWíńžÚkÇxÂO—“qx¸?ĂrgkôęŮŹýĄT3—Í»n§rfŠ…ŢĐ´/f×ĺˇ%㶚“??¸Ú•nJíš ŘGů¦›Ř>['ľÖjŁ*±=f«Ă¨;O€.Eę©{ěônčçňĐVŐ&2ž'ÄEN˙Ę:ěRĹaw6@—ą#‡#Ěá1D{kwPNz‚Ł!EŽ:B8c?}B +ÓÄŕĐ1(§$î´ş§$'&ą(ŹŚÉ‹$†4„Ň^šCP¸ÝąíŰ[– ËxLh–‚ďIRôŁPĚHaÜNőÓKG_BYř/ł× [ endstream endobj -578 0 obj +579 0 obj << /Type /Page -/Contents 579 0 R -/Resources 577 0 R +/Contents 580 0 R +/Resources 578 0 R /MediaBox [0 0 612 792] -/Parent 566 0 R ->> -endobj -580 0 obj -<< -/D [578 0 R /XYZ 71 757.862 null] +/Parent 567 0 R >> endobj 581 0 obj << -/D [578 0 R /XYZ 72 168.935 null] +/D [579 0 R /XYZ 71 757.862 null] >> endobj -577 0 obj +582 0 obj +<< +/D [579 0 R /XYZ 72 168.935 null] +>> +endobj +578 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -584 0 obj +585 0 obj << /Length 2382 /Filter /FlateDecode @@ -3958,37 +3954,37 @@ xÚ˝YYs 3,d 9ÓęśkLT‰KŻęJd¬;ľş!s5Ú¶wĐž hî,qǢ±ýśRď¦wBô(I€÷٤Vň•ř1l: ˛tu€­‡ąě>k^ąXŇs({Kîn 'S±żűíiÁiĺ‚é#śrĄG÷\ŕ˘+’r|ׇÂlXGŤ˛µZ’­IcVÁľÄńp•gĽr7Őb‹jÜUTˇżË;鏔 &9X>ó ˙XżF“{,íÄ? b@ňÇ2=ó÷^ßő{„ń0#8Ô şYÓÍŽ±âž¶éîő=ĽZ‡ĺ•ÁňçQJő>m&AP1˙Íľ5 endstream endobj -583 0 obj +584 0 obj << /Type /Page -/Contents 584 0 R -/Resources 582 0 R +/Contents 585 0 R +/Resources 583 0 R /MediaBox [0 0 612 792] -/Parent 566 0 R ->> -endobj -585 0 obj -<< -/D [583 0 R /XYZ 71 757.862 null] ->> -endobj -122 0 obj -<< -/D [583 0 R /XYZ 72 598.518 null] +/Parent 567 0 R >> endobj 586 0 obj << -/D [583 0 R /XYZ 72 488.473 null] +/D [584 0 R /XYZ 71 757.862 null] >> endobj -582 0 obj +122 0 obj +<< +/D [584 0 R /XYZ 72 598.518 null] +>> +endobj +587 0 obj +<< +/D [584 0 R /XYZ 72 488.473 null] +>> +endobj +583 0 obj << /Font << /F16 249 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -589 0 obj +590 0 obj << /Length 2762 /Filter /FlateDecode @@ -4007,59 +4003,58 @@ _/NlZ{k »ë±˛aşľ/óáśTSg¸Űţ†âˇqQýnNƬG­WßPiŔŻwťoxLjÍi °ŕçé/燳C¬Äf_Ť…ŁĄ˙Â92–ł^›üÖÜPUvC‰ž˛ä×y(ăkRW.:r/uCclB##ßĂ ´†›¦ő$óŽTKű–¶€śi?_4Ąž`~4Ą”ˇL“)`ĂÄř·@ěCöh čÖŃu4¶ő¶Ú—ü!&§Űů¶ç-ţ©ĂىĎM×TCu=®RŐNWľkz>Î÷›ÉW Š‘ĹŞsS®sˇDwé_¶Ŕp!q4ĺˇb¨¸%h!Š=ĚŰŢłvö¬ĺ4WtçLäY'ÉŁn’3ęYŹý„n†îô˛ł„kĄ°×Ë-5´\tŕĐÔ”ˇąr‡5ĺšéuzd*Ř™Ň[ěÂÔaý‰, •`ýů8SN­Ź9ƦvI_˙©*OťĂâ‹(ĹYFÝŹ¨ĚEŞBĄYmżŹ@ TÜ"”éµäEKV—`ńŠí¬Űş`hž®ß°¬Š§ÇQ‹óŐĐÁńđ×ŰľFx$ Ňëuj^šűŃčɉpőËjLd¨#VăMSUÔłľ_»ťµsG›ąx÷ţ·ÓNíĐlŮ6»ť©!±Ľ$˙Ož{T–;¨J‹˙‰ţRU2Šs%żsÂ};ţł9'@qëÜ·ąuÔÝ5űŠ3NQuͬENÖÓż•ůÔä&˙źÖwd<ˇ˛;ŕ˛}x†ÍÂľš;DŠ\Ż6€ôµŚé(•Í6ť^ý­|í% endstream endobj -588 0 obj +589 0 obj << /Type /Page -/Contents 589 0 R -/Resources 587 0 R +/Contents 590 0 R +/Resources 588 0 R /MediaBox [0 0 612 792] -/Parent 566 0 R ->> -endobj -590 0 obj -<< -/D [588 0 R /XYZ 71 757.862 null] +/Parent 567 0 R >> endobj 591 0 obj << -/D [588 0 R /XYZ 72 503.679 null] +/D [589 0 R /XYZ 71 757.862 null] >> endobj -587 0 obj +592 0 obj +<< +/D [589 0 R /XYZ 72 503.679 null] +>> +endobj +588 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -595 0 obj +596 0 obj << -/Length 2079 +/Length 2086 /Filter /FlateDecode >> stream -xÚ˝YŰŽă¸}÷Wčme ›-‘Ô ŘŘdz‚Ý g&ÝŢ‚Éb@Ë[XÉňňövľ>UĽčfÉp€ /-‹˘Šu9uŞJx{/đţ¶ -ěő/›ŐĂ{šxaH˛(˘Ţć«—P/ °ÄŰěĽĎ~LÂ`}†4ňźxůůůńéńĂfýë槇÷aěe$‹iŚ/$KAhŕ… €Ä<ôâ4"1©@Ěć ×÷4e˝uč˝ÖŠmiçőqM3X)ŽĘ¬42Ż›ťľˇ~ýŐJ‘BťYIłűVłČ/$fźj›sŢÂŽťŮ˙ű:J|QžĄ•óŻ -ŕŐÔ?W˛)rQšmuc碕űZ?€ťáŚµ! ‚Ř™K˝8a$ #ck˝EőńhĆBż=4őy07ęMµ˛m‘ă}ŕ‹ŁÝĄZř)š]ńo÷žüCTŶ‚Gô*§JŐÇ˝]üj®Â\>ˇM˛QÓwúőď”=PT§ÝĹ9ŐŃ™µ‘LŚC’ÄĆÂ!@uDÁ:‚‰‹ >Ü‚Sżnć˘)ľ}j]@!Đę\¶vŐŮĄÎ9JłŻÚ°ĂË:ňpŠbŻĄ°‡5˘­›7«Dܦîđ°P´ďs¶ňŚ¤ §*öG÷аiAF[ü®˝ŠO8 Šńăâ˘ĚÎŻM]™_'Ńę˛Ţż™ŰFžd b§‘ls‚ -­7«o+§GJ *f‰BîĺŐęóŻ·G?A®%Yâ˝ęŤ•ÇyB’_+˝—Ő?LVŹLł˘(“Öď Yî®g1ĄŕJ»×ĐĎňŰąŔ¬ZvM2BĂtôÚőfěń0LüwRĺMqŇř^˛=L ˛©íTüŻmČXnŚŻě±üRž†ţ?×)÷‘#Ź_Çr/ueÔ˙ÁÄú|,ľťR6ôĹÎ -*f3 ¶?¤ČńéÁlľ„°=poXبh}…«Ő g¨súQ­_bő›Ź¤s'ă”Äó˘,"ĎLPĐh=Áąą˙MZ5›šł«­íő ÍÎ1ódľND@ůąť×­ęäíE)#AĆŚnŻ“=ÜŔ§A3‹ŻřŰ$?·•Ŕúš×â%^›zęUČRsňNVőľ§ˇh @eĄÍjCK¨"¬cÓ™/9RŚdČ]CK_;ë>=>ż|ü`‘L *îi(`cISüĺćňdp ľOp*/C%š:‹Ň´‡ -K*'p3ŔIjŕ€W¬gp–4ł€:ĂÂ0‚7DČŹ&ÖJëŔŮś3ní@Ăü—aYŐ Kұ;AoŐşnäb{.ESH5đ?ô>ö…xŢ˙;hÖ÷1‡iěyó8*3 Ć“^ëÁ4ÁŤÜ0w|[Tú$ ±‹$Hý~ťF }F[{A˝ u(5nµR§Ń,,_ęŞ?Al…˛w¦é±Iş«ßŮÔ9Ú×QPiÎb”׎kČ( í2ťôN--ĎëŞÖď ¬.ËąC@GW™±4ţĺ›’®N/¨ŃűďrqĽ^W¸y’(µýń¶HýłrM ö©`žą-Ž¶ëŁHĆS š† -ď†ěâ,#1 ŤSPi°.‡ö˝ß<÷ëď+ďł+qgŰäě -•ź•rĹÜ  xˇ8ÄThNâKm2Ôfčő!ß]éClű2’{IŚł~@tlHtĚÝ€aNŔéR7ŽŰ˙:â)í°(IÁŐcŔͲ”^é()5”„ŐYÉ:80’9vµ‰90÷úŐ6Ĺ_56r›ę}‹úzŤěó~FŢÓeőuŁ™5| w׊XíZěÔuH± ±U,âQÜŮ4NĚĉ-Ći©'kë ăžtőĽä6KůÓ ŽĹ¸‚4CŽ1äĂšŢD ,ŠHĆíüá˘m‡>ŰsáL’3NjĆ‚•‘Wq)ô*pS¨qhÝm—(N§˛p°ĽđĚŐ±ž«żőĹÔš¬¬łőëăPGŐ÷LúÇ÷wFň÷˛¤ë®î~\CŐĽB‰ťAqš=´Đµ5:ĆŕVOs­¦O1ălç9N {ś`-FÔrˇ”k(ĺĽę˛FÉďv`u6ÍĎ>l#w=A¶Dy—©”L(ŻSď鲑ëýÓ. s/l±Ż,>ʲžž8é -m;9ó+©${rw[˘ çĹŞĆjU¸‘˙á(÷fţĎ|yg&ˇub«ú/Sř°Ô$üúp(ö‡»2ň”07¨á笢×p#éxH Í]fĐQŘ‘µfH”Ž#O{–ÓwŁXýř®űlłHˇł%ägĐ[ýšw‡CqÜË/6 8XSH‹>čZf·]Ó–Qł,Ş˘]hä±ĘÖMeÚHnŽĽÜş* ĹóK÷¸]/Ď/cýiÜ‘Đ$o„R@/JßÎ6ÖÎ~%\{‹@o˛˝ÚüI3ÎyÜDq&rBëű, _DmţKC6I®0˘$ †¦µa§SW#tȧńĄ˝;Ž]pé•ŕΨ§Şđ€$řὺ »u⌬‚.ÎQp„q†kl#{cűŇTFÔg˙Ż`ĐĆţÖ†`-ĂŔ}ł-´xŤ¦:0ÝHu×+\ߢ5nѧ\v}‹©űéO˙~ůńÝăłu ű<Ž­vÝ5ĚĂOWĘ Ż>Ş˘Ű‹źć†®ły`[÷?滍ć˙vyµjf‚ď'´{ÂČ˝{–’4¶_Hy6Úô¸Yý^Í’ +xÚ˝YŰŽăĆ}×WđÍ0ę!»›7Ŕ ŕÄłAlĚÚŮ‘cAQ˝±”¨ĺĹăÉקޫ›7‘‚ y˘ŘlV×ĺÔ©*ĘsŽçümĺ™ë_¶«ÇwÚך&gź×Y[׶ŰŰúN.#G†ŕČĐ˝‡ŔŞTFÓ +ťâ{ZîĆ!ď‘ýG` XÁśČ .áşě ´¦˛ÓŐvéˇ:¤ÇŤň]_ľË‹śđҧ›%ˇ`BBŻyQŘ‚çá2©©!·öBTUž ¤I Ęş{Ô ‰Äg±?ř0ř°´ÜhůL§8’{]f{©AMĂš"LM9¸eŻtźm]ó×QIжĂ,ËY ¨çölAĐ+űÇÄţXر؞ T†ş{ČáDöĄ* ›E®:ë4Ě űiŕő¨*Őcs†‡žŻ;x@Z¨ý­~ˇ´Ý$E:¤Řń™†!\]ŞMă$(Nb1NKíoSNŠŰEóUŔĹl›u,ƤŮJŚˇĆx î1Ď´96ŘfĽćˇ9~ŔĚ~¤Á]×X9—˘AW7y} /Öí…>>˝\ŠÜÂňĘD‚E«>Ąő'óíBף›ĂćOC%ëľ=Ő?ľ} ÉßţÉÔ7{ýs÷ăŞćŠĚ¸Ź8ă!‹ŁoKôŽ”ĽŐó\WŻż`Ć™&ś2öř±Ŕ`äu«ß‘ĽkëU›5)I|2߬Mw>ě˝víW˛DyשM(ŻSďůşgîýÓ,]©AĹZ0}”e==-pŇ Ú6Íôëłböp_r.™´ă—éŔęÜ~]y<«}jI\ő@CçŔşÇtW÷ńaˇIřőńŽw¤ ‡z!c3cŕ—l,n…¦˙ńČÁD±Ě Ł°#kÍ(Gž÷,§ďF±úű÷ݲEĚ–_@ďú˙3'Y¦çúd‚ß08¤Ĺt=śÝ®i‹Ô,ňSŢ,ĚLXeËęD»¤#Ż·^{*ĽYl1żşŃśtĄčOëúÇIޤu ô2ˇôÝě cíŻS;I ĐĆ›LŻ6ŇĚ09GwQESh˝I"ŔđUÔć?ę$“äňýĹ’ţІ].]ŤĐ!źĆ—÷î8wÁĺ7‚;ŁŠśŞâIŰqkn¬‚QĐĆ9č\šBŮ;'­„łD/üŻPІ~¦…8  čQĐĎkéĂL(ťŤYšďĄ2mzÚ®ţ ü=Ň> endstream endobj -594 0 obj +595 0 obj << /Type /Page -/Contents 595 0 R -/Resources 593 0 R +/Contents 596 0 R +/Resources 594 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R -/Annots [ 592 0 R ] +/Parent 599 0 R +/Annots [ 593 0 R ] >> endobj -592 0 obj +593 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4067,116 +4062,116 @@ endobj /Subtype/Link/A<> >> endobj -596 0 obj +597 0 obj << -/D [594 0 R /XYZ 71 757.862 null] +/D [595 0 R /XYZ 71 757.862 null] >> endobj 126 0 obj << -/D [594 0 R /XYZ 72 720 null] +/D [595 0 R /XYZ 72 720 null] >> endobj -597 0 obj +598 0 obj << -/D [594 0 R /XYZ 72 647.868 null] +/D [595 0 R /XYZ 72 647.868 null] >> endobj -593 0 obj +594 0 obj << /Font << /F27 247 0 R /F16 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj -601 0 obj +602 0 obj << -/Length 3016 +/Length 2910 /Filter /FlateDecode >> stream -xÚµZKsÜ6ľëWđfN•Ĺ @GG–w•Ší¬­dvJˇ†Ä ‡THŽµŢ_żÝč_3’•Ş¤T5@<úůu7¨8¸ âŕ'1?˙8đŚä2:Č„‰ŇXŰÝɧ_ă „W?q”™,xpwRY”Ÿ¬>žüëäűË“ďŢ40‘Ie\Ţř­â<ŠU\–Á§đMeëróëĺ«©qdr&@JĺRNëv°îýc_uöŘRO¸ĚL$Eľ\wą‘yřő~s -»9UBdákŰo»ę~¨Ú·;9ż^\^˝?;űůÇówg缤¸®yĂrßUÍ­Ű ŽŔ<«îŞ-’s· B…omŃŁűÎîl¤lĂ+7»łŰ¶+mąÍOyjEIŻ´CQŐNbąXK,?”"‰$45ZÂBSG„–€ĄŕQÔ®šiޡӹ_ź_nň$|uńăctí…Ľ¦Ťă(Éň%ă(Á•ř’ąřÔ(>ŕr&A'ËŤvËŤ®úvßő}Ůč4,ę=)u®&‘Ň‹ŽČ,şĎ±†?ř›S‘¤2ĽôB;Bˇ -›bÇŻ˝–˝`‹{vɢëGńz©P=ކČeICG+ TTĽË–\«ä9~x7žWΕtÄ—Ç}Š¦,:žzւއFŕüÜęD˙˛I—DÉHf:ĐyX˘ ˘~Ůä:dH(®÷uŃUéVqX4nS×ć#MŘvŐmŐ5 oa.6Ě´a¦MŘíÓ€‰Ô¤: t&"ť˘ćÎvvÄďš7ÖˇTô4pŢim"°!Úmnof˛·-É}ř <ç8°Řđ¨ł[čŽÍů>ŻHF3,5sX0l!,Ä=fV`Ř -̤’ŃbŽS’¬Őˇ#•ćiő»ý >Ń© _R6žľ0zî{˛rĂ>ő-í':J3ËĘÓž‚’}SĂŹT§KüĐĎÂŹągŻśx´Ă‘8<šüđI\9Ş “¬ů¦˛”ů'Íj”vt‡mą;‚N¤Ă8ůš^’¬Çáî¸ýmŤ(†çDQÁňY`Ň$ň$ äx?Âż^ź–gQOwÚ ÎJbĚS5O=ˇÓ\`#:=ĎLGąa>An1×öФˇ yŇXGťY¬Ć\FC˛ŔFkžôćFë7^ĎBC+)oŐpwĐ j%x›‡ÓöfĺÓ™"Ľ*ú+—1îw¸äš3^Č/yqGâ‰#©ÍcÂ=fĐ<‹ÜŠáő}Nηĺ\č0X?’l+)!ĺÉţt­!ó™qe2H dd13•B3BŤ #zo ŚÂŹuMLţBŚĐwo f+–Ą`N*JRćčłńjÍc±Đ¤‘‰ł Iu”ůĐúv {ŚÚ2,«Ďq’`ĘŠ˝›®ÝaK„ďŻ{Ű‘j\Ą"B^€˘Ç'EjaÔÂE•I4\ĐĂCfŔέÝŰóâ–OîŰťĄMZŘŹ‹íP}¬Á"Š^‚cU'Q–3ŽÜÚĆv`ő ý8q«đŹ}AśW°ôeC%NpîL3j÷HťŢcv‹ěďëÁaŻ ߸ŮŃbűßbw_Ű—Đ"üńýĹ»3z!2­Osj/ĚvLb™Ĺ‰¦—ż˝ŞŻ÷»'ŁĄgR ČI˛>˝/˙n¨vö×yv„R‘“Üađp#?CÖo_,ˇm¬ŹęâšGśRćů)çOě8<ÚŞ>Š@ĘîŞm±ŞSx6Ö®śś˘§¬ţĚ>KÄľeö+ÁĄ0uËŘÎż ,Ńźć `ĺöۢ´Ż°7wŹ 1§őö -üůÚÓŘťëŃ®´´ ťEC0iFâĹQp/e벧©#f.3s€ űu|lărąk©ĘDd‘l‹Íć&– -đÔ[ -&Ů´ŤěĐGżnr eęßw(śç(ĆyĵŃZ›üŢ´HďC|¦yâW‰ů1ć(Ž“•¦b ŻYSTD˘± ’ÜzűĎžěSxŰá „*Ö/a7Ř2 ‡`%׾âX˝(ç-,.:H5švŹjĹÖ˘hlíđz[ßp»˙¶#KŁ@>ÇŞ;[”|éóÍ~ô%Č4v„żó\T1Zň|vŢ·ýźđ®ôŮŢý%ń7c-Çúl­vŔ&Ó#‚…A®^zęaBł[ /hČŮ/ĺ:Éäuëôk0áÓéż­|AĂe»Śzɻ쇧+GĎWG±É|B¸Ż9Ůhqç/:lW÷”húLJM@ú›Ź™ĹĚś´c‰Śä`ôĐrĽ.Pˇ–{Î^W—Aj´o5Ú·Ëu=$ű -.đ$’Ő§{7ó1I'¶9îˇ+(•:Ź„b]÷_űÁ˘=nQ°ą }lł}˘—uôÄHBľ&s§ďŐ¨Ü+™ŔŽôč+ŚÔ.í`»Ő7ôdŃđNô.lkEŇǢGPh¦řÄ@*H×rV<âHŽ …?ŽůĄ@'HĆě[p¦Ľ@˘YuŘŇ8<Ĺ6›8/芦Ż}ş.ü-CK˝‚` -9+Çž‰Ľk˝&*’ ëuĽ]P* /^żÄ†3*ěÄEä„×E;Ä%ľ\Â1rm›šç9ŕB3Ö>#:Ł“8‹qŰĚŻi[ÔMMů p•xĎ‘^żrteFS.Ň–őŞuYâkˇřŻOg—ĚŠ!¨%)Óx3ŠöI’Î*ÖŚc˘ŃĐU€‚–ş ޳𾨺ţ%µ=ŞeŢvű=‡;Ş]±}Ä?˛ů•UöŢĚRśęťé6(_·y2Ë ˛aĆ'"ôÚAŤËÖÓXs˝|¸ x!5&Ě©XČç×®ĐA€ĺšsŽ;ßp–!ě 0MFhó-ďÓ&+ň4R‚5LĐ˝łÝ”UŻĘ{$hQ6ó’y&É»(úŮşnü…nänŇ&qóŻMŇiMĚß)/«ĺw˙Ř…Ű19{ú]rMrś-ĚĘ)BżĹ$Ăß)¸»%Üö‡aŽŇC"ÔJß©ŚtĚú~)…Nă3;9+H€dŹ˝8îĄő’şś -™1mǶK đŮlë=b«3]ÉwÇóUŞ11ÚdAǬ¬…ŢĹŮkŕŃ5źľ<_x´Öy tiĹß”Ö:h—J€ňdü“ódGNxő¶˝kÝ'şpŔÁëşu¦Mż%R¦tX[ŞÄjšDq.˛Ŕř¶r6f-ůŘŞ)Á±úČAQN9Ä0ś>€H–^ÎëúLG™HňHó… :׬Š!ÇIçáEC™)TŁ.}‡f_ {—·ô/ý;ÎÎŢż;;˙ ąĽúpţă«M­‹÷ď>ţóâ'žÉß÷ YńĆEYVSĘDYó¸eć$˙¶¸ďy¸uÂ9ž*­ZBščuÁ&Ç+Cđ žF|şb·íxS+k<0yáş×5Iᮺçh ş´\ˇ‘CË9ýłŃů}¤ă”FśŐ4ţ ŠWÍ ś 8.€tR°22BEiîĽ$mlÉV54XVŔü°"ZĹJdBO|}_S˛ČfÎÄBúß8‡€Î*9™N-úY!këz9Z|CvM3…•Ä€ňŔ &ČU"JHÖÉŃ'‚Îß’<™Uµjâ(ó˙Ť1~%ŕĎ"^‡¬óL̢ü”öž/?‹şţJŻnůę?Őp´Ň¬ňńÚFśw}¸s7ăś±M™TŢ»ńmŐó‹¸?}ŘA”{NE›ĺ¨ÁÉqU,§Uí˙#@CĐ„\‰+ËĘčÍwY•ú*sşÔ>ć6|)"Â]ŃýÎ×,šŹ›‘Ď%đt -Ł(‹™/¦ŁŹjNѦc¨łď}@›ËŞÄjG~ Äţ PŚ!ŮJFBp ¤—vu~yňţjP +xÚµYYsśH~ׯŕÍt„„©˘ŠăŃ#Ë»šđµ¶ě}°2jJjvh¶Öűë7ł2‹1ŠuWž_fV‡ŢŤz˙8 +ůűăHŔ7ô„—Ę@h/Y‡Ň[oŹľ| ˝¦~÷ ÉďÎ.ÜzJ%Aâ¶ĘűxôŻŁß.Žžż±—Y,cďâÚ¦A¨ď˘đľřŻJS«ożĎ–†A–2RfA*ĺ~ßö}0?vek–¶:Âe’R¤Ó}+™úżnW'đ1«%Dâż4Ýş-oű˛©ń¸Łł‹CöC¨,žłŻ€Č?Ë~ś‰ ̱Ű6HĐϲ0íeY¬N`mäżmV'í—5ÎöćĆ´0eŇßČżnZSŢÔÔůc%ßü˘Nßđwc°ˇŕŠ•đ\boˇŮ˛ŢŻ–=‡#ďD Óš{˙o‡˙>źż<ű@çőůUeh÷݆/»Ă5yG ZÓˇ|ż©»rX Ű›Âée]öeŢ—ő -kŔćŞĎaŽ†•ă&ň·&ďv­Ů’L`Ďź<ż¸|wzúéÇł·§gĽe/Ýb×"˙Vh¸Ţ„ą»MąFr63mżůŁ#ŃřHCaÝ´…)FŇJ/IŻ0 †ĘJ,s‰-X¦"‰$45š3Nµ ´ĽŻ›§şG€z,Ŕ—g«4ň_śżľO€lŞ#yí(I§Çľ™Zآ“ř€Ë‡ěofŞ—]łkÁú~®těçŐ”:U{‘ŇDKdćí×PĂü«ĹŇżpB[ Půuľĺi§e'Řü–á.o»AĽ‡NĎf9¨†ČeIć}Z* T”|Ęš\«ŕ5nx;ÜWL)_ň˙Ź}^yËKOđĎŰţĐě€[[ţĎ€čď‹’;R2‰ö4ŕr,3‚˙Ď«Tű ůŐ®ĘŰŇ Ý*ôóÚjŰ|epTŢ”u^ŃđÚ"é‰Ě錙Îü®oFHM¬#OG:EÔlL;BGvÍkcQ*x8(R,Ń2 + 2Óic{Ëöö¶&™˘?+9ĆN\töÇ…nŮźó‚d4ÂŇl [Hb?#+ČŘ +˛˝J‹Y¦$š«¬-‰ŐĂę·çç|ŁUA7Ąl¸}bô™żëČĘ3ö©G´Ż2s13O{Jv%đ#Öń?ô“đcěŮ3'ěp Ż&?|W•‘Esţ¤óOšŐî*mé[swťH‡qň5=%YĂ3ܱú ‰Ł SQ”ł|&´yP˛ćř×óŰ4(5eţGpV `žjŃ<őťĆĐé |*Č!"ćóäfłmMꚀecĺ2čČb5ŕF0Ú’6ÚěéAol´îŔ!ŕu,4´’ĽwpWö›'¤ą V‚·q8m®g~°żSř—ywi3ĆÝ·\q5ů%o¦T÷$ ¤ÎfiŐ 8cÍŁČ­HN߇é䱇ÁúžB&Jă@‹?_ÇÉtd\‰ô"­©čň8žÂ„ĽW‘>áź±M¬«,@ ĹĺóWPŽŤl(Kb°&D1×…_Ąg{î …YdaâE¶đ7ÓXŘaĐ–~Q~ŔŚ{×młĹ–đß]u¦%ÍŘ"PřĽ%Ź_ +Ô …›ZŞ@i8§ŹCL€­WŰ-¦ăÍ ßÜ5[C‡4pćëľü Pő)M€-±*’  #7¦6-=(?Ś,„…Ę˙±Ë‰ó˛–~®¨ÚĹÖ›iEe'Ôý<&·Čţ®ę-ôJ˙• ™-m6˙Í··•9†žţëwçoOiB$Zź¤ÔžX5ś…2 #M“ß_TW»íÁŇ1jb}~yNţĽ/·ćŰ´€•Š|d±ĂŽ|‚¤ß<›"ŰPUůŹXĄŚÓSNź8Öqt4-–ˇÜ±e¶ĺ:ź•)ĽË ‡VVNÁCVfźDbęÇŹ™˝ŔBp"&™© t)ĹŮOűdĄ@ĺfí ‚´+°7vŹ!—çŐörü÷«Ł±ŤíŃ©´5§ (ňÁFŽńÁ"!ńâ(¸—2UŃŃŇ2'x™XĽ„óZľ¶¶©ÜŚµXĄžČ +µ$Ö&‡ŤM,ŕ;¨·L˛nz٢#ŚţZĄŞ468Ôż7(\g)ĆuĵŃZ&‡üQŰw“»řŚÓČíň[0fPJ4ÓT!8ăw(Ş!ŃXIn ?ŤýgGö)śí +˙ ĺóI8Ťß]Rß"XÁĄŻX*帠…Íy ™SÓěP­ŘšÔĚ‚­ľ}gŞknwŹ;2TąP¬ĆĽjM^đsdĎ×»Á— ŃŘţŽSQĹhÉëŮóÎt‹wAJĽ‚č–&Ců¶VY`“ń‚`a‹—ŽzĎl§ĆBĆ ˛öK©N´÷ŠŞ±z˝đku Ťďł źŃpŃlŁŽů”]˙páčřŠ ~GŇ廊s zŽÄĐaÚ*żĄ<Ó%Rj¤ß]ĚL(f>ăś+d$Ł‡–ĂkňÝ·Řqň:{ R}«ÁľmŞë Ůs€7‘¨<ݸ؜ŽŮHzg91ő˛‡ÎˇTbÉ“Lş_]oĐ×(ŘÔ†>ȵŮ>ŃËZúb$!_“©Ő÷ě Tî”L`G út%Ć j¦7íěŽkú˛hř+z¶µ"éăÁ=(4R|”e¸@IAL N€d-„˙qH/:A4$ß‚ĺ ŤŠ Ä–Úâ)¶ŮÄyC›×]ĺ˛uáęĺS(ČQ5öDäťéUd)$–¬×áqA©Č?yŚ kTŘ?‹8Č%¶‹v[\µ„cä 8ÚÔŻłÁ!„f,}tF'±cŹżŇ ·6¨YšęâqpĎ+!_€–_m•Q“´eľk^•¸R(üëq)›1”¨@éř0Ťw±1ˇhEń¨`M8–!őm (h¨;á=ńoó˛íŽ©íP-q¶{°ŮťŮo¨tĹö‚$ă«ä>˝še,ˇăÇ tZۦŃ(7H|†—Đ´…›­ÇˇćrůđđBjě]0Ąb!żşBfkĘ9îřŔQţ…°ÂĚBĂ”y1Y E¸ŇÄ7A÷Ö´ű¬zVÝ#A“Ş™·Ś3IŘIÍĎÖý©vďUx}HŰř€›mA{Bţ™‚đ˛ś>qw÷˝·-ÉŮŃo“kępălaéw?ČŔ4Ü“‚}ZÂcźqć(ýw¤Pj¦o é|Äú~…)…ÎĚevrTÉ{qÜIëşś +eCÚŽm›ŕ·^W;ÄVkş’źŽÇ»0TcbµÉ„ŽQY ˝óÓ—ŔŁm>üv>ńh­SOÄ\Š)­3°r4K%@w2|oنQĹqľyµn6ŤýŢpđŞjčTűż@”ö+C…XE‹(¬Bn5ëŇšXµäkËşżęé' +ŞpË!„ÁŕţçÉS‰y^žé QÂ!؇d˝˘sŤŞr,tęź×”™B5jÓwhveżłyKwěć8:}÷öôě=Prqůáěő‹U +­ówo?ţóü=Żäź÷ YňÁyQ”ű”‰˛ćáČÄŠţM~ŰńpcĄłś*Í: ä \“Ă{!řOG#.Y1ëfx¦•“=–ślítE2Ř”·kA•†ë3rg9¦~4:~Ś´ütŔ9Mí.*y×ČĽ™€eöă˝~U&˝$ Rˇśz§d°‰MŮŔš†‹ďgD«P‰Dč=_żU”*˛•3±ü×Ö 3KMö·ćݨŚ5U5Í‘Ĺg÷B™{BÔ2OÉ@®ôĎ.ŽţhÂý endstream endobj -600 0 obj +601 0 obj << /Type /Page -/Contents 601 0 R -/Resources 599 0 R +/Contents 602 0 R +/Resources 600 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R ->> -endobj -602 0 obj -<< -/D [600 0 R /XYZ 71 757.862 null] +/Parent 599 0 R >> endobj 603 0 obj << -/D [600 0 R /XYZ 72 408.038 null] +/D [601 0 R /XYZ 71 757.862 null] >> endobj -599 0 obj +604 0 obj +<< +/D [601 0 R /XYZ 72 372.173 null] +>> +endobj +600 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -606 0 obj +607 0 obj << -/Length 2240 +/Length 2448 /Filter /FlateDecode >> stream -xÚÝYKsŰČľëWđf°j Ź{pd9QĘ+9וÔzK;Fä”I@€Ö*ż>=Ó= @z¸v+©śĚłűűú ˛ŮrĆf=bôű—ĹŃ›÷Q6+Â"ăŮlq3+˛°`b&"˛XĚŐě— Rť*;ÝÔó×qÝʨvŐ¬«ß›ü•ö' :Őváü×Ĺßű[ŢĽOÄŕŠ×EÁoiŠw|ćŰŰ4’‹…Eălył"YÎg‹ l_¬”˝= -6JÖşžGÁßQ¸(8nęRÝvř’D‚ ŰÜ4Gűń>č–~+UĎytş”kę:vŁŰ–aý%’&oçŻy(#»Ć\•xó•®pöŰ<\oU8ť¤,¸Ô0oUźŇ1Ď Աs:Fy°méÁÝ żÝʉ OźYś¨u…/~ĐHŁ~€GÎÝ˝˘A˝A)ÓIĐÁń»•Şń©Rßt«ë%ľÉZ®ď[E»đ[7ÝxĐ\*?–ĐďGť°$=ăĐUt=@°Gz´‡†HB`ŃđVGşĂÓNw°Bb5¶pgî'*° KceTŻ·Ý`š îřńŹ·^ÚĂpő§y޲F˝i’˝ŕ“őŻGĚi¤u\ăĘuăP·‡4ä”ţ°ß~R’n"1¶4s>ĽćŽUÍFęúĎĆcá…űąÖ>ib«ąµq˝/Ô7K˘8¤opŤÜ#úJ¶WŽŮífÎ…ĂD€Z¸ŘË­iě’oŕăŐ ôËľ;ZĹył m÷ÔIÎŁn¬–»Ś¬—h¦Ü›¶·ž|—u…k§Ŕťu!?·Ö“{ppPłAř`+ťít/PwůĚRÖŮăîom¬[ߣ@×n6ÓňšÂ†5“{ŘáX Kv©QĎpfž…q! -śĄČ†u=˛˙aąZYż]®ňš㜇bč­ ŻI\Ř°— j%íÎŽöîi円¶˝z_éM[Yî=Ďü ľ2ľ]”„q‘ 2_–Á'Öť}„Č˝5.îÚổ.­¬pŞóË›ëVĐ& $¦v·Ř®´:Ű—Ť¬nŇ4bTŮg4x”i¶ËNIż-§{lrż«'Ś"ĺů,cťľ;ą éy2ĂmOúx*ň0Ť‰Î§řIźü?‚śnŔĎ›÷P!ÜńÂw!l óŚ‚4”N›˘§ÁŮůâdB\Ó…YDa–—rrŢCf2ÜOAŔÁRŢv[;Ńvf[Ú‘ -Gö†˝+ŮáęŮâ°±áiG™„Ý ĂmpÄÇám7^÷ ꚌÂiőŤz̡¬J¤¨$¦bSýŢőô(_éףŚ»Ô|Ś••ěČNG_ŹúĂ‹0v’" VnŽ~ů•Í*łEŻ(ÄěέÜĚ’,Oáy=»<úÇDâĎĘ!RÔ Ľ×®E$‚ őu«Ü,0«at¶w.‚wŞ-Ťv•ĹaY0řţž¬ ĆËeÍŇ0µQÍĘjátĹ[–Ąqđ/[9x [ť#qjéHÎ3ĽíŇW_§aWË´ËtfT6&’Ąť]íČ ±ą-_T´Mí¤I3Áź+ ÜĄô’Ľř‹3{ŠÁ“˛a|$ŃŹs79ůČ–cČYP‹[ˇ9ŹC–ĹcŃűZö ”Ăţ÷ńĎ…ŞdW]VjÓ,ŤĽµ ‘:*ľŇĽ™‚É»lĽ'sâŠ7ńhíňńśââňüŚĘđ>‚AČšŇÍYG%­^iZä–‘dÇN€Yç­¤ˇ[aÖµĎ5AˇRĘ®đčL¨Ű_ßiW Y=ö aÎÁ8cń”Ň6ŢÔ€ŃĘa#3JLđ5ˇó±cĆ„xJ)NÜnčáĂöčp°‹rfy2:ëqŰŹĐö“¶?ŃjÝ‚Y(ëµwzmĹRqFPŚą„漒¦Ň˙ög¸®­q=M)Ż·ki´ę„ŰRű©¦o˙ĽŽ@ú˘ąŃK]O™oA}“dŮRµôeąËÜ3ižf0ZÓ…ĺZ¶í ©ňßćnBe/o m:')Ô(í>§…ĺ4uś;N©eIŘ>­I_¨Áß>ůp~zvü8ú^’’pLŔ˝kśE”ŰÍ®f÷’¦‹ÂY)-z<,}V\ôK_đpú2Č9ÉËů.ŞBČBŔ(†N®;[vĄ‚> *Ű ć;ilËS†-idëĺ>DŃö†;lö ‹ů~Á·ŢŇ´“ń‚ł5Ą:K±ŚJ`ŢH%‰;""F1y|w;‘/|iŤ˙ÝÄ°F¶ŘI¶~ ěDđ›~˛E8P @[ÔöpÁż8 #h’'Ľ«‡f˘Kŕ$@âÝÉÂşËŰÓĎ4µÔŮTă#â ,\ĆÄŚzŐg3đŘ› NŚ’aźóó]ÎO05ď -ÖÁë[˛J í ĹŠ;Ý­ö`Ł"ůA‚<ĎÉŻ -OCVd/ůrřŻÚE!‹ŠYq0âx;–ý&á?:öŁ +xÚÝZßsŰ6~÷_ˇ·P3 € A>ô!çŘwľImź­fÚi:.LÁ'©T\÷ŻżvA‘2eÇťćîćžD °ű}ű6›,&lň÷#Fż›˝9ĺÉ$ łD$“ŮÝ$KÂŚ©‰â,d‘šĚć“_‚ÚäU=źľŽ˘(h+ü•<ĺ’ ű"ŹL°ËÚ4¦śŠ4há•Oy”áô×Ů?»ĂŢśJŐ;é5ˇŠ8üň0‹c<ęŁŕlďŁx,̲&Ř„{Q“, Y*&ł5|?[+RT›ékĹÔş­ę›Ľ*sł™ň ˝)ś"IP4~a[T%LéŐę§Ĺ«hăVÜU5>ÔfĄ[šĂ‘Śn¶µYřtWAK»Ţ/íPmpĂv /ôĽqăyŃĐ_¦q goéŐ‹UV­Ĺá±úéžöirˇP{mE U ‹•ľ]Ńž·p䶥ý˝„¨LE:"­vpŻą©[]”ţs‡d™ŰÝ­&k]*ĘE'żČN_ËX§ÓŔ%ä,żëőfeľóxEs=<_¶ŤElľGŔş(‹µ^ŤĂ÷PQ2äŠlbnZ“{UÁ‚—`©Ëj5ođ˝şĂ_Ť´¦iż‰Ýî—Pp50[€Ö貰ָŔwŽÇ΀[|‘ šb‘}aüöý+|@dáwný1 Ú"ĚÜŇ Ű®‹¦!DXw¦É×ń~Ăw|;žYp]ŔĽU}LÇ…"!Z§#O[zpçÂ/<}d‘4«9ľřÁZ×Îl„ë}EĹĄ¬ŔP1ęŕ88^‰OsóĄhĐLáM—zőĐúÚáżÖË€ćÂř1°„î{„Ů KŇ0] +z_a”QF,A4ĽŐyGzş«‘…;qp781Ű(`idjÓém?¨«5~ńý_o˝ô ĂŐ¦)xËŞ Ś@¦IZt‚#NÖżž0§Ö‘« +KÔ…ĄnłßlÄĹGcK3ýc^áŘĽZCűÖxĚĽp?–E‹O±…É˝/ +L/­Ŕš»^Čí}Ł›Çěvm3ŠĹDZ¸Ř˦®\¬ź˙G˘ˇ”m÷ĚI. …ÜY+Ě)vŐş\ ™ +o"Řn¬ś÷Ö…üÜŞX#€‚ÜC€Ök„>Ą˝ťîęŽ#YĚZ»ÝĂĆĆ:Ěă łCô1ˇo)lX3y€9N€…aF†Ąµyޙ㌅2%gn`/C6\”ű—ËŤÍ›ĹbI”—´ç<}‡piTĆÁ•]ß’A-)ĹűLŮ;§ŃkÚvvč}Ą[4ne©÷ĽúřJČÄt* ă÷2_’fÁÖ­}„Č˝­]ܵĂ÷Ë"·n°Ä©Ö/ŻnScí„©Ý-¶+­Îöe­ç?*hëXKnUWŰŧ´_Ťĺš±Čý.ź1ŠX¤“8_ŁfήĎf7ÇÇ?^]ťśź¶,#ngÎ(٢Ľł¶ľ«SĽ«cŽ˛d®P?gŐŤ/Z°â‹}Ĺ÷,Q,^L ËöŚe +n\îBU$ký©°…1Ő2­_ů;;ę˛Iö­#Éľhż˘vĺ¶ŰţňĘĘqa±úpöî䊦;ŕČ §=ďâR„IBl>GŹDzŇGô(ňą=oNˇ`G +„ŁEHw |¦I‚´@Yˇ‰sçł“ńf ó"+&že*C ™Iđ{xRćzÓBëŇŕ۶lÚz›Űß †o—şĹ)ÔłÁáÚF§eŞudLő#vŤ#> oŰáB8ŻWÖ$M(oĚSţĄľTˇŐÓ­ů˝íč1ľĐ/ wĐĺaaĄ[ňź“ŮŃçŁnó,L§!‡źŻŹ~ů•Mć0gk^•©É˝[ą†%ŕ_i Ď«ÉőŃżFÚkż—LÂÄňd™>-\¤2®‚+óy[8¸Ěd0äć;#AďL“×v­e•ŕµ)ß—UBZą¬" EViátµ8FülK0of‹s$Î,Éi"‚·]>úěË4lJ`Yá]=¨e`4u™y!öĂĺkŠ¦*ť4q˘Ä×Jg™bA^üÉ™Ŕ…ŕQŮüŤG—C/§ţlrň-G˛ ·B …,‰†˘wĄě9(‡öü)ęâź UrW\ÎÍşZÔzcó! @‹ľň…ćݦğĄI¦ˇĚŇŐ8nâÉŇĺňśâęú✪đ.‚AČÓÍYÇ\[˝â8K-#rÇN€Y§=­´awG"Ý>„娤ě +ŹÎUtÇ·…+…¬‰ž{Đ/§Aoś±hLműnężheżŹĄFřzňş†ś)ŠUIĘ)N޶ďâýöčp´ă) “T7{Úú9Zż&)*ÜkLyş¶m¬6ĄÜ–Ě]”˘ĎZnżÝDć;ß|ëş ń˙«mť›Ăá+©XA ć­ôI’D$CJ†"&–đÎp çorz†ŇÓÝߨĂĂ]ľĄxů¦‚vx“ű'|Z$P 1" z 4«9ěËÜz°Ď˙XHNţÚěňáŮx–uŢúj(m3đĐŻ˘H$ĐۤíJ—‹­^Ľ0a¶ř˙N Î3F–6‡ËşŢecíĘm™Ů®ÔWV_]i«=čzžę.Ô®C‰TŹÚúÇ%¶/{}—ëjq" ¬>íqÖ…şŰż!´7”eňmíÚ] ŐáŔEĘ˙»Žăt †BCs`.Öâ=qÉäđ îHľđŐ5ţő&‚rdh…-ź›ĽŐ—;P”´Emü#dŤ|Ć»:hF€v$ޝ̬»Ľ={˙DöťŢVçc˝G„X¨CXô»c̨7ÝM+‰‚ÇÎLpb »śźîrľÄÔĽ«X{b®oČ* č`(VÜír6Ş’%ČđśS0˝XHłPDü%w ‡˙Ő bţ đQU› endstream endobj -605 0 obj +606 0 obj << /Type /Page -/Contents 606 0 R -/Resources 604 0 R +/Contents 607 0 R +/Resources 605 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R ->> -endobj -607 0 obj -<< -/D [605 0 R /XYZ 71 757.862 null] ->> -endobj -130 0 obj -<< -/D [605 0 R /XYZ 72 562.653 null] +/Parent 599 0 R >> endobj 608 0 obj << -/D [605 0 R /XYZ 72 506.405 null] +/D [606 0 R /XYZ 71 757.862 null] >> endobj -604 0 obj +130 0 obj +<< +/D [606 0 R /XYZ 72 526.787 null] +>> +endobj +609 0 obj +<< +/D [606 0 R /XYZ 72 470.54 null] +>> +endobj +605 0 obj << /Font << /F16 249 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -611 0 obj +612 0 obj << /Length 3068 /Filter /FlateDecode @@ -4198,47 +4193,47 @@ jC CČhřzÇY´ĎýÇ5”…łżbA“?™hJřçŮ Ş!`Gr‚ą€‡?EeŁ› endstream endobj -610 0 obj +611 0 obj << /Type /Page -/Contents 611 0 R -/Resources 609 0 R +/Contents 612 0 R +/Resources 610 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R ->> -endobj -612 0 obj -<< -/D [610 0 R /XYZ 71 757.862 null] +/Parent 599 0 R >> endobj 613 0 obj << -/D [610 0 R /XYZ 72 720 null] +/D [611 0 R /XYZ 71 757.862 null] >> endobj 614 0 obj << -/D [610 0 R /XYZ 72 573.598 null] +/D [611 0 R /XYZ 72 720 null] >> endobj 615 0 obj << -/D [610 0 R /XYZ 72 207.077 null] +/D [611 0 R /XYZ 72 573.598 null] >> endobj 616 0 obj << -/D [610 0 R /XYZ 72 177.189 null] +/D [611 0 R /XYZ 72 207.077 null] >> endobj -609 0 obj +617 0 obj +<< +/D [611 0 R /XYZ 72 177.189 null] +>> +endobj +610 0 obj << /Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R >> /ProcSet [ /PDF /Text ] >> endobj -619 0 obj +620 0 obj << /Length 1683 /Filter /FlateDecode @@ -4253,62 +4248,62 @@ fU  yÍiÉ}tJÔ:Ú7uéîłĺŇŹą}×m‚Q~7 1C‰źĂbĺŰí“źóđr•–ĹWu*` çEýO©qÓť_·ŞMîüęYKyČ @étá;g{łůT53÷ŠüÂĂUX ľfţ*đ!Pv_< „čq'V™U˘3 Ľö?¸pŮ< endstream endobj -618 0 obj +619 0 obj << /Type /Page -/Contents 619 0 R -/Resources 617 0 R +/Contents 620 0 R +/Resources 618 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R ->> -endobj -620 0 obj -<< -/D [618 0 R /XYZ 71 757.862 null] +/Parent 599 0 R >> endobj 621 0 obj << -/D [618 0 R /XYZ 72 720 null] +/D [619 0 R /XYZ 71 757.862 null] >> endobj -623 0 obj +622 0 obj << -/D [618 0 R /XYZ 72 696.145 null] +/D [619 0 R /XYZ 72 720 null] >> endobj 624 0 obj << -/D [618 0 R /XYZ 72 611.331 null] +/D [619 0 R /XYZ 72 696.145 null] >> endobj 625 0 obj << -/D [618 0 R /XYZ 72 578.953 null] +/D [619 0 R /XYZ 72 611.331 null] >> endobj 626 0 obj << -/D [618 0 R /XYZ 72 482.184 null] +/D [619 0 R /XYZ 72 578.953 null] >> endobj 627 0 obj << -/D [618 0 R /XYZ 72 419.917 null] +/D [619 0 R /XYZ 72 482.184 null] >> endobj 628 0 obj << -/D [618 0 R /XYZ 72 233.533 null] +/D [619 0 R /XYZ 72 419.917 null] >> endobj -617 0 obj +629 0 obj << -/Font << /F28 248 0 R /F88 622 0 R /F16 249 0 R /F47 271 0 R >> +/D [619 0 R /XYZ 72 233.533 null] +>> +endobj +618 0 obj +<< +/Font << /F28 248 0 R /F88 623 0 R /F16 249 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -631 0 obj +632 0 obj << /Length 2376 /Filter /FlateDecode @@ -4328,92 +4323,92 @@ _!, ş[Šî†Ý[7č9‘µ2ľöŽ÷Iž˘¶žȨ·`W$Р珸5ĺÜá÷Ů[â;âkǸ/ÎÝťóćŘzĚł’’hč­}Foq‹ÜŐ ¨ `‰”a{PđŤś÷W»Âäj›1Š‚ŔçȬŽŇM 3sě÷pĺ+4Y…Cş·AĎşęszůÚŃJş«•Ěi%óҦ!ÄŤÂŘW˙„†8ëz§ÉčEÜ-yřälŘIŞi;ŢuyUäMQţîźy~BËŇˤ{ď.M»yÚľçŃ› •műŢî÷”xŞŤ‹ú"TYŁîu@ç±mU®VţÝĽ0IŃa>d\°ŕ2cIâŢ[ ňÓPŔÓŃÉL—ŕ UÜCĺíRrŢ.7Ź·eU`™ŚÇáv :L“Ú5údSŻÝPx%n|űĐ9¬ÁdkUŔc,Î/3WĐöÄrRŤąLDx ť¨q_očôKđm]˝Ť"đRV[cŢ0ŽĎ˛˛‰´—„ia>a:˝r”ą•ŇR$iFš?fčHB4–_ÂĐ»”.ňÍśÚR5´Ť©Ű†ŘÁÇ:|*[ô˙Y4,HŚnŃąUH¬z“ sý•Y}Đ endstream endobj -630 0 obj +631 0 obj << /Type /Page -/Contents 631 0 R -/Resources 629 0 R +/Contents 632 0 R +/Resources 630 0 R /MediaBox [0 0 612 792] -/Parent 598 0 R ->> -endobj -632 0 obj -<< -/D [630 0 R /XYZ 71 757.862 null] +/Parent 599 0 R >> endobj 633 0 obj << -/D [630 0 R /XYZ 72 720 null] +/D [631 0 R /XYZ 71 757.862 null] >> endobj 634 0 obj << -/D [630 0 R /XYZ 72 628.406 null] +/D [631 0 R /XYZ 72 720 null] +>> +endobj +635 0 obj +<< +/D [631 0 R /XYZ 72 628.406 null] >> endobj 134 0 obj << -/D [630 0 R /XYZ 72 320.466 null] +/D [631 0 R /XYZ 72 320.466 null] >> endobj -638 0 obj +639 0 obj << -/D [630 0 R /XYZ 72 264.219 null] +/D [631 0 R /XYZ 72 264.219 null] >> endobj -629 0 obj +630 0 obj << -/Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R /F90 635 0 R /F89 636 0 R /F91 637 0 R /F27 247 0 R >> +/Font << /F28 248 0 R /F47 271 0 R /F16 249 0 R /F90 636 0 R /F89 637 0 R /F91 638 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -641 0 obj -<< -/Length 2002 -/Filter /FlateDecode ->> -stream -xÚĹYmŹŰ6ţľżBĺĂš)ę­ŔâK/w(Š mÜE,¸2m«‘%G’“¸żľ3Ro±˝ÜĄý˛˛Dq8óĚ3oÚŔŰz÷ź›Ŕ^ßßp¸÷’ŚĄAâ%č ?WÇR5…ni©A5"ťwEµĄ'öDżä¤GĆfŻĘA¦E“nŔôa3üľţÔ5*ďÜŰťnöěśŘďę˝"[AĂ íµBhý*zuşV[Y᪥}Őt˝¤ńY1ťŐË}>Ö˝SĄf×#Äń*ä,äÁÜóŞ­ŹM® ˝ČČ°+QcŁm"ě,‘‚Ř%Çě -Çě --»¤ŻÎ·S­6”ŰčĆbE›os.Xň©sňÚ„ńÚÂćüÔăH–“Ŕ¨˝ŹĂ€f'Z;¶ÎU&;\%ÚË~´ŇOm§÷ć•Ą8ă2›QÁ§—–isDńz˘ł +Ę"&-ňQâ«&GĹvŞyD¸đ'ÄÝXĐKµ·°@řŤ0Č1ďŤ>BĐ+ť±ÓÎÍHCH‘VIĚ%î„‚ď—VoŽ%=Ř€w(bÁąđ[uĘć%¸ijÔšTŻp‰]ÂF”p…™ pËZup8čűż-RHH;…ľY¸ę¤Ţ´±Ě•±EÄ´ßü2XµsKôëĐ 3?Gη-¤¶Á|X¦lEÂÔSĽe,‚`49śÇç -EQĺű®@v$śXJ±Ž ô\D@•#…µCşrůłpäšQH:łá™ ńhÝh¶Qí¬fFé{m™ żĐLdŘ˝ţT´ř9Ťe2 ńÍâ‹›čZň4¶Ů bý¸ßŰtú{›v -¬ş™f2xŇ -µÎn, ąčR Oćn ’ŘşU=ô"‹ń,‚lčT eŰÄß"ş=¨®°Ő‰A—çÇY&3ŚĄ”Ôé=MîąĺýQ7'ăŘĄ”Ň˙Çc>śB­Xݨůΰ®ÉĐ5ńĚ56ó-ˇ™ß¸¬e:7UN©(ÉOÉÄO‹1pϱP}‘ţXt»ˇĽ_¤ĺŮľÁŘŠęYXô¨ôGzéM ‚j;¸ňžć5ł24 ć…3%§®ĘÚmO5P¶đŮZ‚9ÍŁq0Ł/Ŕ–O.Ngizą:ÁSËÓDÔ3×·í0„ÉÔ››g.Á¨˛ś«Ď z­Çóą” ”±23Ůr0ÉZçFnN•ČE\6eD:ę ŇAŠ-Ł©-Ł×*V(2Ş<)`fIěĚ‚°j¶í‰&‚Öˇ±S®óTín Ř?‰s -ŕîJo‘řwU}ŰLü-öÝFí‹ň„Íří1 $ă±Ő2×M‡˝2`ŐîŽŐZonˇń\ˇpB‰ęŰ­®tchÔ›ř}iú -ł”I8čKÇO‘Ž§/á…qĚxfˇ€ź‚a2áˇ-]„ ´ů‰*·.…dalGÖŐ"‹ýQEą -Sł3”śĄ"uChŤ%@µOh†0íě0yÁce+şŕ8„-Ń–nmŮŘ™Ż‹Üę¤mÜ šŚRżśwG˘˝GD‚ÇÔ|ŕőLBďČ«g± §‰Ť¦gUňósS—%ĄË~Ć;ɨ+îŰvŻhŇ ő2w‚*JG‚}kĺ>n|óB&cÍ‹ :–/Ť(ňö+ëý|H -#Ô@—ć«Cö3x,ő}}ěfűęg˙Rą,96ú[»ö˛÷}RĹ°…·NăGąQdąŤf¨›m‡±0ĹÔuL¤ń”óŁ\j×ác°©÷ż›ö÷C4Ĺ}z|"čöË “lŞŇ óa¨yRťpŐčľ“3źnűŰÓ5CHuhŕ‡‘ŞîóĂ™•´kÎm8:”GÝ>–_x˙ßó ÉŰţĆ3.)OşŘü\ĚĹáç†ÉTTMmpěŠínš\”@›ŐééءG3á$ßĐ“‘ˇšíŃ}5"ô ŘmC«?éµ°aĘ q›°ľośhěËŚ}ź7iČâ8tôyĂN‹‰ťQ_÷áŐ¬ë‚ěÝfňé±o`¦mĎMap?¶ÝŮOŚŇÍvf´{ľťŔRÉ!f\lzä<)=¸QP¤µÝŁMLř?51˙…ś\»4TD,_?¸Í?>Ö˝ßî†ę–`˙Jô0ŃĽ˘ń{óüsüĺŹPŤvÄ™f*OŕĂÁK‘dqhŐŹ˘ÉK0ü ,sÄ• -endstream -endobj -640 0 obj -<< -/Type /Page -/Contents 641 0 R -/Resources 639 0 R -/MediaBox [0 0 612 792] -/Parent 644 0 R ->> -endobj 642 0 obj << -/D [640 0 R /XYZ 71 757.862 null] +/Length 1996 +/Filter /FlateDecode +>> +stream +xÚĹYmŹŰ6ţľżBe`ÍŠőV`qČĄ—+Š"h÷€" \™¶ŐČ’#ÉIÝ_3Ro±˝Ü%ů˛˛Dq8óĚ3oÚŔŰz÷ď›Ŕ^ßßp¸÷’ŚĄAâ%6ą6ô""Ă®DŤŤ¶‰°łTDb—ł+ł+´ě’ľ:gÜNu´ÚhPnŁ‹mĽÍą`iȧÎÉkĆk ›óSŹ#YN? Jô>r šťhíŘ:W=ěp•h/ţĹJ?µťŢ›W–"âŚËlFIź^Z¦IĚĹë‰Î&¬(‹´ČXD‰ŻšŰ©ćM" +ŕÂźwcA/ŐŢÂá7 Ǽ7břAk¬tĆN;oH4W !EZ &1—¸C +ľß[˝9–ô`ޡçÂoŐ)›—঩QkR˝RŔ%vQÂYf60Ŕ-kŐÁá oě˙±H! ídúf᪓zÓĆ2WĆÓ~óË` ×Î-a@ŇŻCDĚü9߶Úóa™˛ SOńr”±J€Ńäpź+E•»É‘dśˇ><0`ĺ8aMÄ®\ú,·f ’ÎjxDVCřŘ`6Zm4;«Ř@‡Qö^["ČĎ´ vŻ˙*ÚÜśĆ2Ś„đŠfáĹMp-yŰäˇ~Üďm¶ý˝Í:HÝLĽ Y–Zg7V„Üt©„'sŻ‚Il˝Şz‰Ĺx@6rŞ„’mâo ÝTWŘâĠɇóă$“†RJęôĚ@÷ŽÜňţ¨›SďŘ+΀\B-XÝ(đrÂÁ Ö'ú$žůÄfĽ%4ŕ—­LǦĘ)%9(™8HbŇYŞ/΋n7”ő‹|<Ű/,Ą”>Şgń@¶ŁŇéĄ7ŞíŕĘ{ç›×ĚĘĐ(Δšş*Oh·=iÔ8Ů‚gkg ć4Źb>ă-°Ŕ–O.Jgizą*ÁSËŇDÔ3ׯí0„IÔ“›g.ł¨˛ś©O z¬Çó¸” ”±23Ůr0IZçFnNČ…Z6eD:ęŇAŠ-ź©-ź×*U(2¦<)`VI쬂°j¶í‰&‚Öˇ±S®ăTín Ř?s +ŕîJo‘řwU}ŰLü ­őÝFí‹ň„Mří1 $ă±Ő2×M‡=2`ŐîŽŐZonˇá\ˇpB‰ęŰ­®tchÔ›ř}ię +ł”I8čsÇN‘Ž§.á…qĚxfˇ€ź‚a2áˇ]„ ´ů‰*·.…dalGŐŐ"‹ýQ)ą +Sł3”śĄ"uĂgŤ%@•Ohv0mě0qÁce+şŕ„­Đ–nm˝Ř‘Ż‹Üę¤mÜ šŚrľśwG˘˝GD‚ÇÔtŕőLBďČ«ťg± §‰Ť¦gUňÓŢrS—%ĄË~¶;ɨT)îŰĆuŻh ő2w‚*JG‚}oĺ>j|÷B&cÍ‹ :–'Ť(ňö ëý|H +#Ô@—ć‹Cöx,ő}}ěfűâg˙^ą,96ú[»ľ˛÷}RĹ°…·NăG¸QdąŤf›m‡ć°0ĹÔuL¤ń”óŁ\j×Úc°©÷ż›6öC4Ĺ}z|"čö‹ “lŞŇ óA¨yRť:oŐčľ“3źnűŰÓ5CHuhŕ‡‘ŞîłĂ™•´kÎm83”GÝ>–_x˙ßó ÇŰľa‚—”o“.6_‹ůâk~>aLEŐÔÇ®ŘÁE ´YťžŽz4 Nň M1ůŞŮÝ×"âA‚Ý6´ú“^ ¦ · ëűƉĆ>č±ĚŘ÷i3‘†,ŽC‡Aź7ě´Řiőu\]Ŕş.ČŢm&źűfú±öÜ6÷ĎcŰťý´(Ýl‡ˇaöA»çŰ ,•,b†ŔŦGΓŇű×EZŰ=ÚÄ„˙Só#ääÚŐ ˇ"bŃřňÁmţá±îýv7T·űP˘‡‰ćŤß™çźá/}j´#Î4Sy'^Š$‹C«~M^‚俲6Âő +endstream +endobj +641 0 obj +<< +/Type /Page +/Contents 642 0 R +/Resources 640 0 R +/MediaBox [0 0 612 792] +/Parent 645 0 R >> endobj 643 0 obj << -/D [640 0 R /XYZ 72 384.128 null] +/D [641 0 R /XYZ 71 757.862 null] >> endobj -639 0 obj +644 0 obj +<< +/D [641 0 R /XYZ 72 384.128 null] +>> +endobj +640 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -647 0 obj +648 0 obj << /Length 1832 /Filter /FlateDecode @@ -4434,37 +4429,37 @@ e ĚŇNv¸“J#»5ŠYDżÎ‰QŽÉ> -endobj -648 0 obj -<< -/D [646 0 R /XYZ 71 757.862 null] ->> -endobj -138 0 obj -<< -/D [646 0 R /XYZ 72 669.696 null] +/Parent 645 0 R >> endobj 649 0 obj << -/D [646 0 R /XYZ 72 602.047 null] +/D [647 0 R /XYZ 71 757.862 null] >> endobj -645 0 obj +138 0 obj +<< +/D [647 0 R /XYZ 72 669.696 null] +>> +endobj +650 0 obj +<< +/D [647 0 R /XYZ 72 602.047 null] +>> +endobj +646 0 obj << /Font << /F28 248 0 R /F16 249 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -652 0 obj +653 0 obj << /Length 2518 /Filter /FlateDecode @@ -4488,32 +4483,32 @@ XFkj üçľô˛Eb•Bˇż![d7Ő`nL˙ĂîŁFórčĐČű‡’i…™ Ł–2żj’m`( §qŰ…0^USÇ8t \ hđ¤Ý<ŤUů]QPk˙hîšZ*?NGmć3"SÁ˛"ô&çĐ‚ˇówšOž#\¤€GyP—RzŻh|NÄś6nŠđ …Łô™o°×ִ߱̑‹h_ŕ5‚˙ńi{ßLg\öp©Ăb˙ič`†Ł˙–Ď˙;34GŤęż)źľăčB>€mńrÚ–˝°ąÇ93 Ů…űĄPŁ1ŤĹŚŘmĚnÚPuľ5˝â"ŔV˘°„±ź—±bFÉdŇĺęě˙ÉzĆ endstream endobj -651 0 obj +652 0 obj << /Type /Page -/Contents 652 0 R -/Resources 650 0 R +/Contents 653 0 R +/Resources 651 0 R /MediaBox [0 0 612 792] -/Parent 644 0 R ->> -endobj -653 0 obj -<< -/D [651 0 R /XYZ 71 757.862 null] +/Parent 645 0 R >> endobj 654 0 obj << -/D [651 0 R /XYZ 72 348.262 null] +/D [652 0 R /XYZ 71 757.862 null] >> endobj -650 0 obj +655 0 obj +<< +/D [652 0 R /XYZ 72 348.262 null] +>> +endobj +651 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -660 0 obj +661 0 obj << /Length 2607 /Filter /FlateDecode @@ -4531,17 +4526,17 @@ J:% {ă·řż[Fć9˛™fbHʡ¶ @Mč8Ý„xü/39ë endstream endobj -659 0 obj +660 0 obj << /Type /Page -/Contents 660 0 R -/Resources 658 0 R +/Contents 661 0 R +/Resources 659 0 R /MediaBox [0 0 612 792] -/Parent 644 0 R -/Annots [ 655 0 R 656 0 R 657 0 R ] +/Parent 645 0 R +/Annots [ 656 0 R 657 0 R 658 0 R ] >> endobj -655 0 obj +656 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4549,7 +4544,7 @@ endobj /Subtype/Link/A<> >> endobj -656 0 obj +657 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4557,7 +4552,7 @@ endobj /Subtype/Link/A<> >> endobj -657 0 obj +658 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4565,38 +4560,38 @@ endobj /Subtype/Link/A<> >> endobj -661 0 obj +662 0 obj << -/D [659 0 R /XYZ 71 757.862 null] +/D [660 0 R /XYZ 71 757.862 null] >> endobj 142 0 obj << -/D [659 0 R /XYZ 72 562.653 null] ->> -endobj -662 0 obj -<< -/D [659 0 R /XYZ 72 458.031 null] +/D [660 0 R /XYZ 72 562.653 null] >> endobj 663 0 obj << -/D [659 0 R /XYZ 72 289.531 null] +/D [660 0 R /XYZ 72 458.031 null] +>> +endobj +664 0 obj +<< +/D [660 0 R /XYZ 72 289.531 null] >> endobj 146 0 obj << -/D [659 0 R /XYZ 72 170.506 null] +/D [660 0 R /XYZ 72 170.506 null] >> endobj -658 0 obj +659 0 obj << /Font << /F47 271 0 R /F16 249 0 R /F27 247 0 R /F28 248 0 R >> /ProcSet [ /PDF /Text ] >> endobj -667 0 obj +668 0 obj << /Length 914 /Filter /FlateDecode @@ -4609,16 +4604,16 @@ kh )}ĺÝHŚ65ýĂÝ= ćšĄ^RÁ° ĄâJÓK·´!™9Őâ{p%g˛VŹńJĐĹ˙Ć[Ć•AĽ‰±&3öŮĐÚȆţY4¶˝)Kŕ*iĆíă•UUŇXâăÁßsąaxˇ›˙Č+™f-4âM⎝măiŹ»˝{·0Ž€ě$Ůbł<-ńýő”c”čę34“V˘ˇďŕE)4 ÔB)j^lĂGçđËŠ‹Ü7Š3ň”Ä ű”Á%žásEň˘Ú‡{ô;.QŇÝŁTă(űaĂ„gµÄTL,ŕe ÎĹŻ†Đ'j&放^%µ—¨©?9ĚYC6,hIcžkę×Ët m^w0±N_Ôď4ÔÔl­üQć«7Až˙»Ćäx endstream endobj -666 0 obj +667 0 obj << /Type /Page -/Contents 667 0 R -/Resources 665 0 R +/Contents 668 0 R +/Resources 666 0 R /MediaBox [0 0 612 792] -/Parent 644 0 R +/Parent 645 0 R >> endobj -664 0 obj +665 0 obj << /Type /XObject /Subtype /Image @@ -4797,29 +4792,29 @@ TI @$W ąÉ€0üÓš}Ë endstream endobj -668 0 obj +669 0 obj << -/D [666 0 R /XYZ 71 757.862 null] +/D [667 0 R /XYZ 71 757.862 null] >> endobj 150 0 obj << -/D [666 0 R /XYZ 72 226.171 null] +/D [667 0 R /XYZ 72 226.171 null] >> endobj -669 0 obj +670 0 obj << -/D [666 0 R /XYZ 72 169.924 null] +/D [667 0 R /XYZ 72 169.924 null] >> endobj -665 0 obj +666 0 obj << /Font << /F16 249 0 R /F27 247 0 R >> -/XObject << /Im5 664 0 R >> +/XObject << /Im5 665 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -672 0 obj +673 0 obj << /Length 2588 /Filter /FlateDecode @@ -4837,42 +4832,42 @@ xÚµYY žÚľá÷ë÷xó7ü“ŘFرc‹Ô;çĆáoM=2€ť_ş'ęnma,d–8µô-1đ‡¦¨ź‹8ďQ{Ú€–ě÷í±&¦˘˙ňËzşÔTßÎu‘ĺQ")&ŽŠˇ—üuěK¬¬ť%şÔţźŇ`źžÁ[‹ń>ń ᡠ®¦8°LŹt0Ćm“om!ÜŘ‘(tő©)üźRfËh! Jrą<čX:c˝6c-’%\Ü;—iß)Ś)ăOG–Íq$ f¨ŽP8i77Ć36ądIrdlęOZ÷~ě&ż‰+RdŚĽŤŞˇ¤Ú/Fd‚K[«łI­¶şůć© šúpl}%2 źüą[oš˙S=w„ż´ 1ş§UËŠ±śdo÷}[ľě®I}O‹úËĆ5@6dzďKHęq1éśk<çĄuGş0Ô§´Ýi€aÎť] C¶Î Q–$ľůć¶őć*|őňĂ›»›ëŰ7+îßĆ‘€â€=6ÍOEN‘´ťţ„ŘöŃyXCˇ'$ŮMZh‹˙çG Ž8ú<€¦Ď Gg¨5Ä;,ňöh@‚Ä űh»‡˘1_}ë^Ô“Ý®C?;!ĺľ@Áô‘«‹zŘ—Łż*]âĺOóc€­ĺĐîU'©Z>)µŻNčé®ň÷ľÝő0gQż6Ť)ý=”<łŻʤy”Cy’E©bĎžĘ(h2őĚáĽ_KĄËç_Ęcá?'Ŕ=— Ůň[Bž'ák‡Úeg.|K÷€â*ź˙đÝňĘZwúš`ťt×Czg¬Ř\ć<ü÷&“ŽUČ,á®č@LéˇOYřňügzÝ馺?.˛q Z„Ĺa޲vńó‘ÉRběqYśĚ~céÚÉ$WŠŽ&SÉž;š¬ôÉ>.J|ę°'ŘŤzĎ•Y|ˇX=Wô 7Bߊţ4ÔőŽwíîŽNJîJ—ŘĄ> ·rfŽ e°\˙$A±&ce€č,ČJ|ĂnĹJ­+5”l°—}Â7ţřÖ6`;ŤÇ§)2wř/ž©Śă~ŚŠŽŇŢ[íćf˝A=É´Ł˛xýzÍś¦™yÖlĎÜU@Ç*´-ŔsšĎ#ë_ŽkQWz¬‹ÎXćI®P€ęącs—@"VĘ[?»ś;sŠ©9%Eż{ş}čŠĂŢ”8ř¬y3¬{ýĚ 1`˘ ~öî×W/- Ü^ă)żĐQÉőęÂú˵Ą)‘ü8–üéŮń”+¬ąŐÓĚWÍ ŚŚe”1l%řwS’9…lý/ €şŠ endstream endobj -671 0 obj +672 0 obj << /Type /Page -/Contents 672 0 R -/Resources 670 0 R +/Contents 673 0 R +/Resources 671 0 R /MediaBox [0 0 612 792] -/Parent 644 0 R ->> -endobj -673 0 obj -<< -/D [671 0 R /XYZ 71 757.862 null] +/Parent 645 0 R >> endobj 674 0 obj << -/D [671 0 R /XYZ 72 563.455 null] ->> -endobj -154 0 obj -<< -/D [671 0 R /XYZ 72 337.906 null] +/D [672 0 R /XYZ 71 757.862 null] >> endobj 675 0 obj << -/D [671 0 R /XYZ 72 281.105 null] +/D [672 0 R /XYZ 72 563.455 null] >> endobj -670 0 obj +154 0 obj +<< +/D [672 0 R /XYZ 72 337.906 null] +>> +endobj +676 0 obj +<< +/D [672 0 R /XYZ 72 281.105 null] +>> +endobj +671 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -678 0 obj +679 0 obj << /Length 2386 /Filter /FlateDecode @@ -4895,73 +4890,71 @@ f qVöqV:śŤ1úČ~‰AY‹ĂÖ¬7Z˝CKcŁôbdx{‡>R(ĂaQ¨ŮvŮÜ~C’t0’ç˙ҬŕŮ endstream endobj -677 0 obj +678 0 obj << /Type /Page -/Contents 678 0 R -/Resources 676 0 R +/Contents 679 0 R +/Resources 677 0 R /MediaBox [0 0 612 792] -/Parent 682 0 R ->> -endobj -679 0 obj -<< -/D [677 0 R /XYZ 71 757.862 null] +/Parent 683 0 R >> endobj 680 0 obj << -/D [677 0 R /XYZ 72 599.321 null] ->> -endobj -158 0 obj -<< -/D [677 0 R /XYZ 72 397.681 null] +/D [678 0 R /XYZ 71 757.862 null] >> endobj 681 0 obj << -/D [677 0 R /XYZ 72 341.434 null] +/D [678 0 R /XYZ 72 599.321 null] >> endobj -676 0 obj +158 0 obj +<< +/D [678 0 R /XYZ 72 397.681 null] +>> +endobj +682 0 obj +<< +/D [678 0 R /XYZ 72 341.434 null] +>> +endobj +677 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -687 0 obj +688 0 obj << -/Length 2805 +/Length 2912 /Filter /FlateDecode >> stream -xÚµYmsś8ţî_Á·cŞl„ń1—8·Ů»M|±/U[›­9ňŚ* Ěňâ¬÷×_·şĹŔxü’Ş˝JĹ’hZÝOw?-Boă…Ţ?ÎBţýý,‚ßĐ‹Ľ,T(˝,Ę4^ą;űő·Đ«`î'/ ˛<óľŮ•;O&"s×µw}öďłżßśýđ6J˝<ČS‘z7·“¬PˇĚĽ›ĘűŐkt]­.˘(Í˙Łţ}4ťĆű<•ţÍJdţý~u?zu‘$đűF÷egöi›Őo7?ť]ŢśP6ĚÓcee®ľ_Ů4Ź‚0ŹHŮŤn*Ý­űvěJ˝ľ[%©_Ô#¨&“(ňß·p‘JĺĂDâÝ*ňKÜÁ¶č>‡ üżn&‹ü›-<Ç1‹¤ëĺWrđŘ;»’;ä±;‚G!žĆYdߎBÍ.Ľ4kAXXżdADŠIfXĹ ´˝Äë­>.Iüđ‚xfDY -.¤)‰ü,˘đč™c*ŢXžyy‰‚±Xá~.¬˙ÁS"MŘ&=ÝThĘ4ő›v ]AnĄ»‚f+ÓĆâË& ;ö…BaŔŐßV"÷µćÓTćÎ úǢ¦ˇ˘©H i@Ň0˘šKü=F#D»4÷ nl\ăWQô\đéݛˏO@Ćí‘I¦ě“~,Qđ–^X°3z®OĄ)ęĐŞb˙|Ęîş3%«Č űs(BzŇA[ë -ƢŁ?•…N—mWqâ.:†E Đ~4} úÔ}”ěT=&0 'Gv‹!•DŃ, Cř‚? Ó mR6)ý˛hl(ă,G(Ýö ™×Ƭ)y -«ęl-®q_›˛ĐžID‹Č6‰łMâ¬p!eĘxĺä˙P­j7'ý]Űé©(°Č¶Ń/€‚(a]sžEúçGŢŰ®<;ČěÚB~ ›övĐ<Ż˙ĐÝ„‚ţˇp߶cÍkfćrŔŇŐ˙!MĐ3!­ţ„QÔ†uŚ["U3§*Wß~ˇlÝR"ąVO¬Eú˙˝~}c(´hĹďŘŮË+Vľt°Ěł@Č„ĚĽ.óŻŔGČÍ r!I¤ë- ¦˛€çp"IýkP҆CľŔ˙<´ĄBö@źňRQ÷­ËPÍWô­Ă§óŢëi-ľzŞi];"GŰŇ= ˇ2h‡óCZD3”ÚÖçŽ`ë3Î2`ěEľ h@Â"`$2ÖçŔNPő‹Š­Éç -IŹHüëÄ]eţ´*CCňŁXméú -q»3eO·o€!ÓŐÍ*E ©=ŠŘL_=wőĎ Bb lŤ‰×ĆÇ+Ěż\~\_ýëŐűőŐĺÇwŢ,€xJîÄĂ˝Ż?\߼°|gQJŕ«J©Š&ôöhXĹY˛§kË@2Ë@Ü@?ĐŐĽšÚâ U¶‘l­1cid;ź{^Úń»*Í<Ű8@SN,EĽJA6',’†ş6wkÝýéFÁŃL ˝q–™ŕ€íě@pi.ö¶2‡X…1ÓóoÄîne ÷ÝŠŐ®Ü$Âôř¶5Ôţ_Ô]JČ«±uěîiŞ7 Vy $Ę;Ô<÷Í [kv¸.čá˛iŤ{ž‚/Jl:ŰžU­PbŚýŘlu'F»09çh¬T÷1?¶‡ÄÖ>?j#˱›˝k™kyźŽ÷ŰÖâ¤<ô@í1‰ůϵk:gţĆzf]6 o[0ĺÚEý „öĆč+üs"Äž’0 ’XÍSĽD™*°dÚiGáá˛,ö¤,Ü:ŽJC$Ő=MY,Ŕa– ZgČ@Ő|t«f§Ý¶7•D^`ęŠ<‚DÁš† żÄ°±?c;â˘ú‘HÉgŢ9´ďŠ»1Ýtm];.66IbötŕČL 089‰"ĂŞyâŞÖh\ĚÄŻş±FÇ´n»v·xĂĆPŔ±+Ľá°ÂáΖ1ĺ_˘Î«Ŕ.-?ĺ#: -˘óőHîgQ"H]cO`VÄKď÷@=kęB¶úXImÉÇ' -öěX™˘-)~·›ľŔĺ Ş7Y%÷÷`łsZiĄD‘[ž)đćžµŕCÜňâ[,¦¬MÎeó“ĺËČY¤™X–Ŕ U‰™÷á÷i3WĘĄÇÝPĺžti4łűGî8źłŻíÔ2ĘĽujxëL-°ŐďÇ®hěqÎY#ŕ“tóˇÔßô’f7K¦ ĽŇ&Ń Tę]óUÄ @‰ -˛¤gH ­PnîLÎrŚRËÎú˙p¶©ü(¤ř!6e˘p¸!,†Ś–ů»"hBfŹ0p[ě ŕŢ9Ën*§żäçđŘǧ-3- u9e¬p˘Ťv†h!“ä€ÖfEłŃtďB D~á4iEgČđ.:mI6ł'ŚP§;]ô”`hLmţtśÇxꬫDĽ J´^ÄP%bDřę-$úm[Wý#X|şŕ€b¨°‡Śh‹qČĘHZ~BöÉ3ż xâ‘ł©‹/ űÔQĺ|€…ËöcÇvăťÂkĂP$ŔĄžţl#sűŮFŃg{Ň ő’Ď6ř‚(qöěg›) u'ÄcdTv?çk̲kÖŽµŹşô,Mý_°Ł`®=˙͆ Ó¬*aĘ’wŠ5}™'öĎ8Ýq.E f¤Ć%{ŞCźoŇ0HBąEý˙ýă&;q¦3+CŹdbWjbWrĆ®f ÉdşĚńCyřřVé]»éŠ=†ůü«·‡â‹íÉ­“\ ]Íο͏fO|8†áúĂűăăŮ'ÚW‚7„urbśvźF7¤µ5ĐšnXÓw˝§Î,E-´ĆsůKżW–AgÎŚř…¤łE‰>-ěĹ« fçp7 —]Ŕ÷ef€ŚmÎËÍ í™Řşz™ćŇź7‚v‘ö—š`:Čń ďP9„”0BO*k ©ţ׌| +xÚµYms۸ţî_ˇoĄfd ’ ů1Mś^®˝DŤÝĚÜ\n\„$ô(Rá‹sľ_ß]삢h9vfÚÉÄÂër±ŻĎÁb»»ř÷ËEżÁ"\¤ąźń" s_bQě/~ý-X”0÷Ó"đÓ<]|µ+÷‹8~” hW‹ë‹^üőć⇷ˇ\ä~.…\ÜlFZAćqş¸)żzoŤ®ĘĺeĘ4ń>ę/i5ös{7K‘z‡ĺ%üčĺe’ŔďÝ­9ô¦©—żÝütqus†Ů@řq.çĚĆyöýĚĘ<ô<$f·ş.u{Ű5C[čŰűe"=U ŔZś„ˇ÷ľ†Ś3&OµËĐ+đ;Ő~řC‹“Ł$M`»×[8,Đ›©(đóɦ:dvĐTg¶č¬ă@A·Żxî«éwVěĐV´ąhZăö“`ŁŔ˘łéŐ)FXŹMÎQw$`´s“ł~ŽÂ’±źrócs A,íŐ¬Ś,†vň9Ěe®äa|jŘß7Ťµ“âX5sóŻkWtNôŤůĚŞlâŢ61 v,@™+?2ŞgŔµ×裯đĎ{ŢIé'Q6 ń1ŇĚBt[ń¦ťvš…:ô˛đč:J žTu4eapě f9ˇµ†TN—AµjöÚm°µiLŕ¦Ö¤ +V”0dř#ÎŤýšUÖSNN+"‡z=ăňK×mSU¨ź8¨ŰÜ‚ME?Gčk-—w2±˝®*ĹA:XYk\Ůóöľ +”Ë +k§ČŰ´Í~BŘFĎj)ě`źżą±iźÚł5ä“ĽeŤEĂŠ‡ÇĚOŞ™đĄ+ÜťóĹAN +ŠĂŔëއ6jo@Š`Ű |_)şđˇi§†)@^ŇPÇ ÁîÔ¬±ŹĘBúc€c+ 8TPZ&zV0xÇńŰjJ’ÚŚj”ˇ:¬<€JVOť= |™˛ň!‚Ť‡ Ń{ÝîŤ%gÍa…ęirü.´ů@Đęt{o0Üh·ÁThwÔąs×z¸ô LI-{“„ ÷›Eynř ÚŢ dáŘS8Ó+ţŢÄ<Ž4†nP#Uź÷÷pńD’ůiČ ÷‡Ş!AłůDĐŮVAp‰ qCTµYŰkëý1‰‰Ś×ä.żŕ!Ř"3& Úď;mµ±jăňłGSŮŇoşŐY«1/Í´VČ”DářćÎTf¬`~ă¸dĽĂě‘Ť»ˇíôžöę‰ě™OäCú”l%Śż¤‹Ú)1‡ůÓńc}«ęNń ®¦âR`ůźˇÄŠŤký + ł5|’ZË˝­?ăJ˘ôČFk•ŮCÍiJ¶HGďj6Ýy ¦b? Ř@T N%*ß‘ýŰüĺŔj|4"‹¶ď]MszŚv%ž[ŐłýÇś’ŢdÖů}~iyçN¤cőăxĺ{Ű ©5e×0nÁîě ě,yág cÉcp\qŤ=$ĽpäÁŘ»TłödůÓÔd®s[’¤ö<‡¬ĂŞŞ €.ö0Ü@5ÜWššj[µßösąç$çlµ[Uł*ě5ź8f8Ü~ z&2bꌊGĚ$RŹË ÂVÓ:&|-9ĺ1b·aăIµLdžş› aľŤžĂ *匭Bq%k…‹Á§sw„¶îFfţHcşG7xŹ_ §±/Łç_é˛äą‡/ %#?HłożŇĹą}ĄËč•Î^,ĹIö’W:ř@’ú‰Hź}Ą{ł“B!Ů1Ö˘ŞoŃkn犧K™|䬽­#äBśĽ7am)čň2â{i˛P×]ZŽĎ^6„ŹWĂŁĺŰŰ{J˛XßŐcTÁKťŢÓźůTŹ×Ţ?yWµmî‹\ŔŻđEšÓ&)N§ýÍ5ů endstream endobj -686 0 obj +687 0 obj << /Type /Page -/Contents 687 0 R -/Resources 685 0 R +/Contents 688 0 R +/Resources 686 0 R /MediaBox [0 0 612 792] -/Parent 682 0 R -/Annots [ 683 0 R 684 0 R ] +/Parent 683 0 R +/Annots [ 684 0 R 685 0 R ] >> endobj -683 0 obj +684 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4969,7 +4962,7 @@ endobj /Subtype/Link/A<> >> endobj -684 0 obj +685 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -4977,170 +4970,165 @@ endobj /Subtype/Link/A<> >> endobj -688 0 obj -<< -/D [686 0 R /XYZ 71 757.862 null] ->> -endobj 689 0 obj << -/D [686 0 R /XYZ 72 623.231 null] ->> -endobj -162 0 obj -<< -/D [686 0 R /XYZ 72 468.34 null] ->> -endobj -166 0 obj -<< -/D [686 0 R /XYZ 72 348.893 null] +/D [687 0 R /XYZ 71 757.862 null] >> endobj 690 0 obj << -/D [686 0 R /XYZ 72 210.896 null] +/D [687 0 R /XYZ 72 623.231 null] >> endobj -685 0 obj +162 0 obj << -/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> -/ProcSet [ /PDF /Text ] +/D [687 0 R /XYZ 72 468.34 null] >> endobj -693 0 obj +166 0 obj << -/Length 2187 -/Filter /FlateDecode ->> -stream -xÚµXŰnŰH}÷Wčm) â°/$›ŹYŰ™Í`{me0ÉŔ Ą¶M¬D*$•çë·Ş«x%ŰA,˛Ů—ŞÓ§NUw0{śłźĎţýz&ŕ7‰Yśř&g±Hü(łŐöěŹ?Ůľý2 ü8‰gąžŰ™ĄŻLĎ›ŮíŮÎţą<űéf‰źD2š-Úąă:ž-׳?Ľ™Ý¬ç !˘8ôně×}VZ|׉ö–siĽçÝ|?vľĐˇ‰˝ [­ĘlWgE>˙sůËŮĺrÂŘ@ú:‰ĆĆęÄĽÝŘ(~2v—:‹đź-ďVEľ˛»ú.{C*ďSFŠŘxYŽ]jűhK4r4sŕ!d°ŇŻ„čVŮÂ*ďç %•÷P”6› ď1§÷˙şeźńEzőSZSsilYqkAm)ýTušŻÓrMŻq<84L&Ćv -BEdű ł)ĺekKNf_Ąa2jE[•ó,5Ü’ Ůß°©°ÜlóĆÉ öŰOÂPýun”–ËŘ[Ą÷ű t·ő–Qŕ űwˇ*öĺĘŢ}›‡ˇ—nö°n¨¤Ů‹ŘŁĺ -»?Ąĺ— „?ř/€dF oŮJŃóŞp¤[ó+lĹČŻ Ô”VÔ'c„Ň37-Ét& 4;‘3„ęfîĚĐŢ:­SżC˘| -‰>-ĄŠĺ4-ĘDŇQM1ŐŮ’ŽgčpÁÎtnÇC·¬`ZŞ––‡~łéÍÄě·&Čc†\{{`~…Jŕ ťé$4›4@)0şeĹ(´÷ëvhč>îMaÔ‹:D ě8ŽÂ+BŞYSĂš»¬łv‹˝şňdÓMýä †ËÜs‹×=ĂzAŰŰ -´°81¸Ńw.îIŻQŻˇĐIéñx•o‰×6×EřŞ"˙o\ŘË -ęŘŹdBJxgÔâ˛D,ŃP\B¸D+‘UŔhs\DKý#* áşU–:“ÁŻ]t ?o‰˙ţ¤´™ČuVő‚\"gO+fE[QäUA a…Đ&)Dě`BOF"HAëi‘@ ÓQťh°;ž^Ňg{Iz`Xz9Şďë!z2ÁÉš‚ŢuśŚđWă‹{6łłŚšŠöŘ{r’óC^SµĐC´cĐSŁł.îŃ^ńp‚˘#ap_s«é|?-¬- SčŻßBÝÚ~Ž€éŹ ôCü´z†#ůÔjţ8&©ę’§á“#s°¦îuŇŠa|M36âűBi«EJ’E/a˙nłÍóDîŇ‘ŻÉ]Ó(©±Möá D6-ű^­řy„ó>é čńľâ>ÎvzNą-«_J¤/#ô"»ß.Ĺu±»+m -¦kVŁĹwÔ¬ńÉ*íÚM•v<ümąÍňÔť4y6´uRä§U¸ä¬éý9E«]‹Đü°öý?ivo#.iľźácJ)8™7çI&¸p ´‹á [ăáČúŤhť>ş!Y°řŠz -Äí—Ż ź»ë©Ds¬ë9ÇŐ -ŚJömÓ•s±ˇůqۤ0®tĚ÷#E˝AŐŚPŐ¤îHgŞJ@}a˘qV<]-†Ł}´‚Ó]íë˝Đ‘Iŕ›řÍ—OŇôďsäL†€h’˛Ź%†ď¨•Ć7ügÝ#F˝«^Ű+±ź>踿[M ĐHí«ď˛ľHŚĆ wŘ‚&1&‘ź gJűR±Ć^`ˇ§lÉJŇž\ܵŤ;çăĆ!.!úđ•v©Ú 8©xĄžk[1Şčŕ ’ÍĘĂúćŢ Çđ¨xŤ5„ŁÔQ·xŁJó˙ý~yswýď÷źî®/o>^]L±ŰäČu`—Ś™ßuzżáĐĆÔAä±îZ+ńň˘¦O«tWďKK­éfĂlťfî ťkdzMÁźju(ȤëVÚŤ“úę)ŰŃ'F˘F$˙rĐ[žń¨ŽĚł**6–KË ÇŹdŃ!ěW©ó*„°(łGí,Äw -Zh¦9ÍąŰCYl©C‘sÓ59ňAÇâ®`Z ;ŠČűWŃ9óŤŘôşFé(ŮŔ u«¨©;†<<·f‘ż°ę>ĎľîíidżEb VÚËÄ-NzŹ©®M˛˘ý F´Oč¶ š1ády$ŔÜ#Đz!Ŕu,7Ü ÚuqgGʦdr †HjtŻ¨/>ÜĂ&ŰfuEÇÁ‡®Ŕrá đ–:ńžwŮ -ů<7ˇ÷î…jŻĂDľLµĺü•ŻÉ`e8&Cá}_g›ěo‡Ů;.ëčCg˝o?÷ň”vŠßĚĎ5cShoÓĽe'`¸żŻ,lo§G¦#?ÔľlŤ=H(Ç\ă¬}FÍŤJł0źŹ!/ŔÜ{DÁ6˙”ˇÂáošÓ]ş{ŮÚ5úI/|ż šLAŃ-†|Á7,˘Ü\ą'¨s ä—ĐC¸š¤ KÜÓĹ Îűůç»Ëß®Żn?ß\ľă×7¸îŐůĺ4Ţ]ťźľąąüt~ ţ4]~ýxűqŮ˙„Í”iîËĹÉkęď,ÉLCŐś0#5 uŕ˙UůYë -endstream -endobj -692 0 obj -<< -/Type /Page -/Contents 693 0 R -/Resources 691 0 R -/MediaBox [0 0 612 792] -/Parent 682 0 R ->> -endobj -694 0 obj -<< -/D [692 0 R /XYZ 71 757.862 null] ->> -endobj -695 0 obj -<< -/D [692 0 R /XYZ 72 276.531 null] ->> -endobj -170 0 obj -<< -/D [692 0 R /XYZ 72 134.668 null] +/D [687 0 R /XYZ 72 348.893 null] >> endobj 691 0 obj << +/D [687 0 R /XYZ 72 186.986 null] +>> +endobj +686 0 obj +<< /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -698 0 obj +694 0 obj << -/Length 2458 +/Length 2440 /Filter /FlateDecode >> stream -xÚ­Y[Së8~çWřmť*đZ˛|Ű·3™ek°¨šš™J [ď8vŽ­Ŕa~ý¶Ô’oq€™ÚbËşôĺëŻ[Ťď<;ľóÓ‰o~XťüýG9©—F4rVOń| -ź|‡81ń"Ş~|Ďbgµu~q.Ď—ëëóóűŰŰĺŐůrqú©+ůc)Zoq–&ˇ{)ařn#v â–<-ČŤŔ‡¬nŃîg4vë*/ŞgÜćâv#÷?­ĎŻďV§8÷Ć÷ú|yq»4~[ýëPhBĆRGiâů µRß]®ôęĹY@S·nđ÷b©őé? &ćyĂA• đÝW%hŽU! ^–ořš‹_ý€U"Ç×'»·VW=\˝ľÁ}Î/ľâĐCĆbAęţłV*ăţ/ęQ4§ć9§§Ő‘:Qy„Żđ˛­Ő<•µÚíU)0WšńŚďä^k ^ęVâSQĽ[.‹şÂůOŕ3­<7<•·8ł~Â_T ®¸[Ţ.!îţűe‘îęňúĘRĺřđuůĺ|÷uyµ2;´Şç{iÜČŔŤQâ‘”ˇš+<;śŠşüĐ”¸ő^â»´3­Ş°¦ĹߡżŕőQYëm˛Šoë}Ą>赑Q>t·u%ĚÜ/ŢŰá!ÓvVůŕW®~Ă)§8ŽF‡‰mżÓ¬…:Ay4HŃ:™ÚoĂ›gT-étO"Z\ÂçŤŕĄÜdQ‘ş»F#çĄČEŁŕR÷®>-J]*°\»3^Ůs”ĚčľEARÂTQFÜVôƵ‹ją1›uR›©u°čE›K/Ü3ÍŔ2Śy41¸ŮˇXMk2Yŕn­ĂES˘_ËÄß›š›şbťŐU¦Îßɵň¸šĄ$JóňZ”%>ÂvX˘ŘO¶8PTř+í9w”ăM^ü!Ě6 ŕÎZË—ńÇ}É›BŐĘ|4őąmń\q©µźęPhőEoů`čzßdćYcŘ'ýGchxĘąäĘ̇(Ö#Ťxľ«ěZíŔáZÄ>ďJí~źLÂŇG˝Gën”–_Ôźź—·ë›ąZß,o/Ż/Ě<Ť©÷yŹú^džśZ áC\‘[Vq5Lf‘Öi·zŚÚ€:0DÓ:ĆË…Ͷ¨:ޡSV¤jĺfw$w…őÝŽ¶őVĚnłčhÝš A¦é×)ÜŠoű˘ů;.¤‘ď1p´nĄ5ŢYö`„Äî…hł¦Ři[3@$^ÇS0ňĎ Ž˝¦  y@…{G~^$ĚŐe 5ş”_ÄłĐI©¶ŻŠo{ąHY)ž—…ć‹f«Ŕ çŻÂüŐ0ńzćÎX: Ă`bŔ…(fŇ+1+&ŐbĆsb‚x_~×EýÖÉŤŰŽ„¶U„Á(sGh9)óuÝ5’öW?ô…÷ě™J@đj ěS˝i ë‰>šÁ‡˘-ě„‹f˙¬ŹŔEŃř€ĺwM­6-NŤx2Ł‰ ď>ř;ëżnŠL©ľ™VDŠ M7bθť0î9ŁŚxqĎx)Ż·Ľ¨´{Â(ň'îyY„ě›´•Ą¨ŹB“ ˘¶Ö L2‘VČ 6}ęÂyDx$Ú`Č+č ˇ Q/¨cçѸsÍSSo‡ćJ¬ą:Ě•ň]Ť7‹_n€7(t*šFL¶WŐ(Šzµm­dWÝ0í`íČa:>{˘„ŐťaŢ‚Ł†…pźÜÍ€¶Ý-‡¶6^Ă’!Ič‘ŕ„Cm|Çâ¶űTprë’J™Í@†Ť’á!Śç×p™»čŁxaědŞDD ÇAÝgüŢU"‡W Ö•}˙P• ň22HZTh0w6\ě›^Ž¬äĹöŕrs:^•¸–jGuĺé­ŁÓ™-—Í}»§ç…Ů2j»ăUďôAń- HuÔ¬#Ł‘#uIé\Ž\Řer6j»hŘőîJ¬»:Nśő–ţ{¦íč÷¨+­«>F%65ĘŇđČz<xä™Ü›ţRD±Wa"u@te9şî`ó«=®ExÇôź%šl&{aŹă¸9”!Öč—ő`PjCyvhťůfV`®+ Ľ428+uł"kżÔv›lk)šk-E]i “~˛¤n⌡B”#—łNNF˝Ä^Î>ź±˝ş‚Ę—‘ĎZ+™ -ř^ŹŚĹüwéw©µLzÔłŔ®ĽQ¶%ďHí©®›ŕµÝ‚˙#۸sÓx=(eTB4wQµź0ÚŔZŔ%kgAÓsÂ4đv]śÍPJ  €1¦‹ęQză–7öŻďΑ‹ ž×Ź{[+÷TÜWćßńJđWL0¨çóă‰č†ĽĘFF4fm›†Y ü·.F—Ú™yŰî·»^{‹¦h×]´Đö3ŠLÓ`źŇäĆ^+ŠÎđó±0e¦atÜĎĚŚŐřłią˘(v­b‡Fýď´•á˛CŠů8.‹=’D(áMiďyüIvë˛Ţkmĺ–ď3Ů7߬yÄ÷L.ŰnFŇ|–¦D‚ĐŁ±u<Á[Üá-ŕ-¶şĆĽĹÝĺ61:ĆnWđżŰ7ë„‚_3Kü_ŹöV“O>µéČńGŞŽĎ8^%¶p*8$ ¤wľ„hŢ7Ŕ?#ą0AŮś=˘ĎršzAÔdRFq}gYcI<ÎMjâË"„ÜęĘűé×[ŢĽ©ZŇ˙Is[ź­çťatkęýóćxSgp37Ď|Đ´î Ë´`*Ť Űg¶˙;PČsĚ©^ŔÜ:bŁIËŐÉ˙´·Ű +xÚĹY[oŰĆ~÷Żŕۡ +›ĺ^Iö-'—sZ´ŤOb(šBX‹´MT"’Jŕţú3ł;Ë‹DÉJă˘0`Qärwć›™o.Šű ţsÓçÇ źqŔ‚$‹Ň8 –E:ćÁjsńŰďqĂł‚8J˛$řlWn©x$R×ëŕýĹ˙.ţ}sńí¦,Ę4×ÁÍ]żWśF±L‚›<ř-|Së|qĹNTř®ř¸+›żËL†7 ž†ŹŰĹ|‹+©Ň$|U´«¦Üve]-~żůáâőÍŚ°1Źd¦÷…•YúÂĆ,źl«3Ĺ n6 ÷ÖXá< ‹fą]›jI‚6e Y/ŰÎ4Ý2_°ĐtJ»w„›ł4b\Mřu‘Š°hW"ă<Ěq‡+% oŕJÚíńRĐcĽŞďÜgçWő‚˘hîJKAŇÄ‹ś†y4#ĺ đÉ„>˘ ňe~& ăퟆˇ¨ňż„ŕŠ‰4,… eJ9wťl´\ŐŐŞŘvË$P©áĎ°…dI–.éŠ{{\ŞyřÂ{W7Ey_ą/Ř}ťÝ!k6Ĺ]Ń´¤Bí>Ť[ôľ3•u¨&?m*!cžZ©sóĎ3hŞ,$5Ü—2kÁŠ®ü Ir0TČ~¤ĚIb”ů Ł +÷´Ośż Mk‹úĘÜîÖ¦)ÁÂt®cë'@oë]ł*–źJ…f˝qT,2}şÍ +—?ćC¬ŕţ3`•'ǡŰČ]ŻČöEo%oş3ăA¦ukJ2›Ů’ă›ĆiʨXN•)«‰oŽĹčÂ&8xy‰±r‘đŻó±ż9µ“©Ú#o‡N{Tożq“+ç9}ÝW·ENÎtdž1Z€Đ˝WŚˇ śLíEŽJ¤ ĺ\ö…“k„›śŹ^…@€*8Šô–“ĆčuÔ$tV«„EJdN:Ś38lŰ-Elëî9Đŕâˇ0ëîÁ]ßZ*¶D\``ÓűÄ‚śśŢ>Î^•E*•Nś Xs=áóĆ[űŔVLŢě lţ%=ň¬ë…%ôľşú…4!wže„ŠtBPÜ:¨zŚ…î3Ť"ĆĐÄzĘv…s|íĹÓ¨ Fęč ŽŘ‡2´â"‚’Ť2ô\ °#ŃE*ÓătÁfÜ~BbęÝCR=ÂҲęóO…vű·óşjk—Á1$3dšíqFbń@‘Ϥ ™ˇ Ň‚6öT¦IUÉ„3,S{ÎHgŚÁn]5dŃ9„QŤ§ćúúŕźí8LĽŚS1ÇIř`kˇgˇéĘ#°đúŘ1@ ş<îĽţŕž{'Ą¦!¸gK÷¤Ú7düctpXłKMWBŘâ“*â›3jôÉvĎH cÉŽ âŔ8ŹXާhĚŐÍGY¤Ĺ ţëĺƝٔëÇ™ś%uĘÎÉYóFű!ËZc‡3yu6ňęlęŐ™÷ęĚë’Ť˝şĄ5Vvwmč^ŮťA(ĐEśq'Í“ľ»WÚÚ6řduŰvővŮDťµ©dˇ¨M';ŃZő®×Sěńŕ.šMY;{ ÝPÖĂŞîS¬<ŕOíťvŘă’ú#aËşzNB>ׇÎcžž[•±ˇOGëu•®xŘx1Ç˝¬«šűI?ęšbU7gN)Ź#™Ň4eFŁ•…Ô;ŮÓ”7Ůď9)ďţŇq:Ó Ň;íŰ=r{Éo×zçK8®âŚŽŘDĚŁ ůŇi OÇÓ@đśOI§ ˇÓ0‡/ÁK ŤÂ…˝Ä łED?ŁüöŤLĆćlŔ†ËHh.~ŕ,Ţ{gjâ(Ž}ý–é(Ő¸Ô€1î+ś˘ˇ@î;D±}xâ+6ÎŹ_ť i ĺ_<])éVćE žŃNbžŁĘć°x¸uÓ©QG"`AJN(µ1˘A żŔżľ~·ĽţńĹĎËë×ďľűjνŁď©.dı{gn×v×Ř2·ó;‡6˛Ş;÷he¶Ý®)Ü]ł^Ó EgĘ5­u1{˙Šű–3#Ü]‹φeM±¶LŰ>”[÷čÉĎú‚6B<Ú#ű¬ę–„ĄşmFq+žĐŚĚaż2V+qŃ”÷ÜeuŹß]ÔÂmW}šęž–Ý5őĆ-¨+şuíU4TÁwŃj5Ö€ĺÓáëA™OΛ.a©Ž]…Ż¬á•µ[Öş[nBţXŢ=öb9}áÔ]U~Üťjá˝Ň r:':[đ°ăí(»I˛ś:pxŰ Ů'HöeŐ‚ ďłK*Łű~ź3ŘV˘î÷îţcxcÚ5Sľ4n®«Â5&żMٵý*|żW'J{ÖC˝Î}˙4źń€ĘT«Ň¬)+•íŁ}ß,R8Ů—GĘ 1î lĐĄţljrn˙!GÚç•EUîŚHV㱂×[…;›××ĺźuÁô:rń‰_…2‚Ăë©ăĚ(ë<ó(a´1Uż$žÝm[€ŻLČÍG°×®é°ąr8lČĐ·ý~C>·ÖĹ®ŚNQřpx"ŘžĹ9|’Fčťxč%­_|7REiÂýęĎÔ%x·(öŰá®A<éZč´ô*Ťt,ľFú­ÁT÷hłŢ¬řŔЗ⛬í†ô?–3Ĺ9ňË$ŇJM«Ó/”ĽgNlžEqÖŁŢ×$ ÔΚmól†lŕćřŔ×Ţ#=GÍŰíČĄ‡||tL'öţ§"sßĹń÷§}č¨1(…ľĘęXâď[ľźřît¶fN„4ŤżO)ń M„ň…ŢoWTOčýpŃ‚ž ëđ”vnŃ7îĆű~ü`żöCšdîm©myä}>‰%{™:Ęĺ‘©Z2MVŚëH šĹO9.}ˇj$ĎZäŕĐ‘5C0 uš zŞ«^öĺ7t~4Üź¶ë‡ľŘnwÔ×M×˙D{ÎŹd^K&#M“CS™őc[¶—žTA_ÓL‹{[I¸[oz{í®^ľú‰Va×î˙¶s{1÷ëŃ$FFOž…µź¨>ô 'ßXę“+Çä +]j?ą: 7ĹWQUĚ'ućĚŹW>_QĹ‚Ć»*GĐp‰ő Ľ×š ˝ĺjĽ2´!-Jű„l+lôľŻü6uK­L[´$k‡úŚB,Ć)Ůű-}ć‡NŘlW\óßeߧŤ'Ą ťQŤüXŚĘI@{bł€ăô‰q 9Hm*u¦Őb˛úĂ˙¸ɵ endstream endobj -697 0 obj +693 0 obj << /Type /Page -/Contents 698 0 R -/Resources 696 0 R +/Contents 694 0 R +/Resources 692 0 R /MediaBox [0 0 612 792] -/Parent 682 0 R +/Parent 683 0 R >> endobj -699 0 obj +695 0 obj << -/D [697 0 R /XYZ 71 757.862 null] ->> -endobj -700 0 obj -<< -/D [697 0 R /XYZ 72 618.436 null] +/D [693 0 R /XYZ 71 757.862 null] >> endobj 696 0 obj << -/Font << /F16 249 0 R >> +/D [693 0 R /XYZ 72 288.486 null] +>> +endobj +692 0 obj +<< +/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -703 0 obj +699 0 obj << -/Length 2820 +/Length 2432 /Filter /FlateDecode >> stream -xÚ•ZmsÜ6ţî_±µ3µN/)ő[/NséÜ5®íÜË´ťY˘×ĽÓJ[I7ýő Ţ¬Ý&“/%Q <P 6űM°ywđďoW!ü›p“F~(äF…™/hS®~ţ5Ř”đě‡Mŕ«Lm^ěĚĂFĺ« …qµążúéęŻWů>”›ĚĎd$7O¬ őˇ6ĺćgď{Ł«rűëĂ‹ąźĄ¬B†~„ă{xďN˙v2­^{Ő©ÉŔ ŕ콇m”zźŹŰkřŃŰk†Ę»Ń]ŃšcošĹ]˝}X1@0ą4€-żÚ2 ý ÉÇÜ”;Sďa/Fר]ż+š®ß^ÇBĆŢŹ @Ş÷K'M·…bďᔏăŘË͉ŢÂkaĹŃ“G»S÷4]x·x3§'h–n÷ KŁźăsŢňâ3Zc‰ĐW©Ú\˛$!­źšv&9öĘö´˙†¤éß‹ę´ ˝¶Ĺň×ŐŤu…•Ëó…JÓ±łjŘ˝–ëúhqŢ”+r‹†&´ćńÔëŽ7Ó8á°– ş#[îŽKËĹč¶sÍ“3Šéf‹JZt29ö /JŰkŽ§*ď5?{1 ‚É©›úݲ—>méĺŐIűv‘ëUY˝GëÁ†j´ŢîIăĆŇ(úzhŚÁ]_Ž®Ń¬_Ź®‰÷ťë€‹ pS´Ťî›lbc´,-¬|öÔ Rţ9AÎÚŠµeS 6eÁš9ĽŤa‡kžzzb¦)ôV‰ÁăÜHxCMrD'Ů®…lraQ¦m١k@QşÜĹDóݱĘëű´5Ť@Đ–8 4dl˝×í™ęq‚ŽŁŘĎâx“$™ź¤‚Ňüw¨ BŻjłŻéâV…ĎtA¦WÎÝ -°›&đZ*Ľ˙Ľ˝ŰÝţý»w·oď޸ąPa†Ą!óË(ŁĄűü±Ň Ě—gÝę%®0űÜTěŹći‘I])g4v ¦cwÔĺ^ľß¦µ¦â¸ĚÝÚ]v(9KŢé˘iËE]q’ů“˛ý'F;m¬Č!¶Ć13lännS€DgžÎż4Ě…üpjń9±u6·uלÚBď Í*›f/‘]&É3Ék@Bé Ŕu úţ$đţ†ŕĂX†ĄÂł+ŽŐÓ©2ŢyMü&6Ql“xĺĹś-kČ}aůi-âěČ•!o»©#'«‘Iä}Δ“2Ýsî/ę` -@éR”í~†ő$ŤóXŹV°.¦XŹgĹž -1hŚhÄTëŇYĽ¶ö?rJ0ó_AÖ2÷2~F„€›;TáťŐńžX¤f„wäs-j'° ć-]ô‰ë Źf2Č˙p7§ëO¦3˝Śř8 ü(á& m;b›(X8ĺEČĆŚŘTF€ŘZńuiö†;Š‰¶gWLᬰ/!I9g ~gsÍYHúg›ČXFĐE‡_ÝEĄ «˘M[‹IŤÔŮ`”0 0?năL´bOŰ­'‹X9úR~‚sćxp…ú͇űfJČkhřbŞŠF6îhhjŔĆ!·]´˝Ńj¦šč‡+ĺšÚ‘0Ę%Ę+N-Ć#ß«b‡”%±éÉ­’»A˙Üj7śöô‹~bŃÜ˙ťOÉ`Ď(~F'pş¬’P&±™q,N"„ăÖv`~T"”dŽoq ±vńu×tdž‹%H|ýńÔvn±‰X›há˘bOŰeIđ[{r€«´¦pO1xş˝ÄŇą?ťPA¨IäXtb» Şé6ßă®AÄżž›JwąDÓ­]ułzL6`"Ç+NB7ttתŠäé÷ŁMEÔšj~jj †’ć ]fä:\ŹĆr‹‘€kŁ{tZ”˝‰UÉ+‚"›aOq˝#ˇ„b•5ă öÎ)ťĆ,·:бŤW4řčßű׏yç´)ŞÜXŤ(X?#µ|6ÖŇg–ĎÓ‡ýŹËÍáĐÔsiJýRJ‚KdXdó €†€Ő6­*,”ÝĄÔŤ›NRČ\‘ŁőőlCśđ¸ě6ĘnÖzHCĺ`€O9§xşŢ¦fţvsÓß/č`ůßSץ°sMůnŮLć(5°ésŚ,›l8SpóˇÖ“ĚÁ­ŚëźÚHoŻk fňĘŃ"@u^`¸<»Čç…Yěxp"©†Ş9a·]Z潯gSÜŔMŽ Ľ°hŞ@ÎAŹ=…tÔ˙őÓUŔG«DPZîˇzÝÚĺ@PZÇäM»‡[ŹÔ¬Ú1iă´…Ą[dĄé¤=ńD®ËĽ‚›Őéö'1\ŠŽ#ďpÉ5(EW`±Ţŕ÷k° ­ŇčB°­ [O -¸‚[^:·A(ý(ËĆ€äÇ2•ÎlެĹŐ˛*…‘kĂBa2Ëů!)«Ôh/Eö‚[·Ť4•&´ć@|MaÖél”絍s¸CŽ†y웝ĎNťîDÓVö?CźlŔgÔ]Žzň^ U]—÷S[yO9˝ÂćWjŚ ¸k#î-úŤChş’ !JJMáFfĚLĺ#7O,GŔ܆ś2Î!żF‚şÎ “ymŤ3Ľç2<Ş……6¬;¶WÔXxNÖ•@NlŢÇĎV)ę…čÉÁvDX{zs¬ř&% Ř(] ËMvŹkÎ@z¸3¨ZŹ'–aĎ>M'´1k~ęÎsŔŔb3nąşˇWŘC+Fâ.\CÉÇ›ö]ą@Â6 =ôEá –ňáźH¦9ŠhÎÁF­ ›d@‹ťg[j¶ŤtˇŁGZź.LÉH5¶Ć—n -ç"hN|hś¸$™Č1ŮŞéI—}4R»ŹŘ{GyiČN+Ö‘©/3GkS)¦yKş,†ĐäuÓÓ§‰™ě÷.îąÖ^ú¦Ď«ÝŘ -”Ăסd<”żĐ÷PŰFŇ—q2mű,łts^Í&|´25ťo”Žź¶Íi˙Ľ «(h§©…`„™)3ŻÜŰ Kwm‚‹í~†‚8dzL ýb? 6tÔ ×L©‡Š3ečĽTÎé˙‚ÓBá;ź §E—ľ«Úm–Í!Ç-śQĆłĺo_ź„YčÇ*Ů„A`kÎ…#(Ę€]ř¬ědĄ©źĆĂ÷M§PÍGµPËřBŢQ_ÔŢÜü9´3Íş˛iěG©¸ô ü‹uôĄ*#]oě—6©Oo>ľŰ˝ý÷í‡űŹwo­2îż%€µ2­Ř@@úJň!Élhţ s +xÚťYŰră¸}÷Wđ-T•ĹŔ{ŢfmÍĆ©ĚX±ĺ©lín©`¶ĄD IŤÇůútŁ^$ĘžäĹ@\úrútfγÜ_.ůýyuńÓG;ś{i +gőäĉ9ó;«ÜůÍM<1›s.B÷ęö~5űcő÷ź>ňČI˝4.ŕ°s8,ô˘€;Qz,ßÂňŐFÍćqĐjhůn+K3É}{¨UC˝ZeUť›NVíf"†ÉĹ®qw÷LĂ­Ý/«š–ZŐýJ˝ŕ•:[•™,©Łh«˘ť‰ÄN ĂTN˝bgöÚ)Tq¤”p˘Ř÷b’Fxg‚“(şu}‡?ü˛^üky{˙p·¸4–wxđíŐâ×·WWww‹ĎW PČNůrsł~ÂaćVµÝ{1?‘Ě,ŔĚ÷â„úrs5Ú˛” Ýxłyš„î X+ä ôŢĂéĄĚĐę8 ŐŔŘ\±źÍAäj—hrÜćZ+Úˇ /iîRklŁ“ĐŕüHč őZ©QwB†/R­4ţ^/´>ýŇÄ´7Tń}ćľ  ŞV48i Y–ŻÔÍŐďĚvč`ě>Ů˝µşŘ¸ýt»¤}®®?ŃĐ—Śř©ű· +U¦ýżaSŐ—ć”vJĎTüŘKŚz˛l*<Á‡VYáf/¨(6ă˙¦ŁŤ­bâne[@ čůOŕ2­€?ś‰`Ä_Ň +·?ß/îfś°ôßłÄwW7·źŤ »śź¨źźWf–Sí—¦ńQ„sř̇!îűá±Řˇ+L‰[Zę·v¦UÖ4ô;ttM¤ŽVÉmuŘá˝62ʇî˘ÖĚÝËâ­–„¦p—>Hâ=ĺ’ĆÉč0±éwš´P2¤ ă'˛N†űmdýLŞ%ťîé@D KřĽQ˛l7™$T¤îľÖČůVäŞFt†Â˝Ż.G‹RC®¸Ü+frgĎA/ŃCC‚¤„)2ĆÝFőƵ‹Şvc6ë¤66Ău°č›6—^x8gšŢ2ayŚÜěI¬ş1Ť¬-h·FGaLŔ)ׇŻĽS÷禮ZCzČđü}»FŹă,*MçĄ(KjÂvX‚ä×64€¤Źż­=çľĺdť˙Qf›/3 ÎJË—ÉÇC)ëB™Őh>‘2@nS<ďdK‰ăHß$đXh@Ţb`čęPg¦­1Ěx˙ŃZąl%Z"`Ĺz¤VO@w;»V;p¸–°Cí}©ÝĎřQX2Ň{´n‰Z~Ŕ?ż.îÖË|řĽ^.înnŻÍ<Ť©7i/Ś…ÇR“Ś +CNM áĂ]•[Vq•0Lf‰ŐE·z‹šÂ€Ú7<Ó:ĆËU«ęm±ëxGł˘P«4»·#Fđ»mŞ­šÜÂfŃŃş5ABLy±X]|˝°vH„ÇČ CH,r˛íĹo0'‡o‹HôEĎÜ:A{1C ”ÎýĹ?©ŮÖîDž9•b „÷›1& ’ăŚ÷ëĐwę롨Uţ† EÄĽ­[iŤ÷–=Îc÷Z5Y]ěµ­Ď mŹŐ@Ć˙]}‘z" I}Íěiţřu–@a‡~ BŤ-ôŠzV©Đ!Ó»âëAQć +ĹJ’jAÍőTľ«$Ń5ÍV…ů«aÚő(Čť9UĚÁÔ€ IĚ(ŚcÓ·b +-f<%&H €E¨ó§®8ŕč×NnÚv$´­! Bw$–S€#°čIű; ™ňž=S(Ů@ba}IŁËÚpžĘáŁüR4…ťp]žMYĘŁh|Ŕâ;A¦ÂŤ©ŇŐâµÍmp÷ˇßY˙eSd¨úć¸B&4á[«)ŘbžÜ3TĆIlćD/ĺŐ.Ú=a±#÷|›…ęk›˛ŃR‚‘ĐÜŹ„­t|“JZ« äO›5ś¸;ÉDP¶C[ŻQÁ$âLp¡6>ýsń ŰýPpJë’šÍ@&ĄÂSŔ^ÝÂMn9,ĎGń r“© -’ +Ľ &Nř˝«CN/AWRRôýë”eEPkQˇÁ8±3ŕâP÷rdĄ,¶'W›Ë±đXŕZŞU•—Óť¤ĐĽ­ć}ámvĹC/»%ŠŞµ»ó©úe–Ů‹‡ ¦–pěň(ŐóŰ$ýX5–nŻëľ Ő@ôC!ÜĎČ'yěG +¨aVz|ĎlŹ‰ë,čŢ!3^޶µŽĘ*M2ą±đˇéŞ˝ţč\•ĹNuĺń1NHÝšŞ7Y)ÉVPj5‡a^¶ŐÚĂýőQy¸ź:ĺş*ˇpË9mŐĘr=DLŚť[Ŕ¬a…ÂďÓ€^fdÝMýăkr+=N ËĚSđë@<›ž)+Ó_D yN°ę7ŞţVč‡ěŤý¦jökŁnŁĺi +äĄBî¦ě¶ů·2{ĹJË€<źĽOëäôŔËć¶Ý‹ÓóÂđ¸.Ao÷r×;}Pz·…A$őŽÔY$ xçÂtäÂ.“ŁG »Ţ]‰uWlj“ŢŇżcĎ4ýžuĄuŐűĘĐ“F"‚ô<=ý<ʬ=Ç1TŮ«0‘: ş˛]včĺ«9ŻExçôź€%™l"{Ń Çys !Öä—ő`PjCyvjťé§,ß\V|á{©ď;‚E^ȢŃ[Vdí—Ú·&ű°M=,EÝűŃ@&~˛ďGÝÄ C…(g®fVNž^hŻfoÂ'š˛WBPůüG­• ł0 ‡Ć +XŹ»ôw©µLzÔď7f]ąÄAű }˘öT×MĐm6¦ŕĎ61\t‚ţ}~|/°›+‰Ú5o‡ś¶ŮŔX@%js?ŤĹ»)á8îö]M0ŠŹúSéšz”ݤĄM?řNw÷s×:Ż.¶T/ĚżÓŤŕ˙1Á śă‹ßĺˇsFŇj02ÂŕUÖľŃÖ˙®ŠŃťvę˛iŰ}Ż˝Ĺ@]4ę'´Đ>fŕ?…ĘaFk7öVQt†ź…câŕśy‰Eť}ĚĚŚŐäłyo%QoµjE=~§}¤ —ť2Ěűa‘&^ĘRpYÚ[ž|j»kŠőXď‚ż4¶nËYŰ?ĽYë¨ď™RöîŐý#°$Ľ”\«őK—vKŚ&-V˙Ě`ł endstream endobj -702 0 obj +698 0 obj << /Type /Page -/Contents 703 0 R -/Resources 701 0 R +/Contents 699 0 R +/Resources 697 0 R /MediaBox [0 0 612 792] -/Parent 682 0 R +/Parent 683 0 R +>> +endobj +700 0 obj +<< +/D [698 0 R /XYZ 71 757.862 null] +>> +endobj +170 0 obj +<< +/D [698 0 R /XYZ 72 720 null] +>> +endobj +701 0 obj +<< +/D [698 0 R /XYZ 72 570.159 null] +>> +endobj +697 0 obj +<< +/Font << /F27 247 0 R /F16 249 0 R >> +/ProcSet [ /PDF /Text ] >> endobj 704 0 obj << -/D [702 0 R /XYZ 71 757.862 null] +/Length 2784 +/Filter /FlateDecode +>> +stream +xÚ•ZŰ’ŰĆ}߯ŕ#XĺEpĚys¬KäJYňj“TĘv±°–; Đ(yýőéŰŕFp%•Ş– 0čéé>Ý}ş©`łß›·7|ţ~Âg° 7iä‡JoLů:6Ĺńć—ß‚M Ď~ÜľÉĚć3­l>Ţü|ó·ű›żĽ ő&ó3éÍýă +Hý@™Í}ąůĹ{c«CąýíţÇĹÚŔĎRQ! +C? Âń˝#ĽwWý~¶mµöŞS=ŇŻ@ÁŮ{÷Ű(őžOŰ[ř¨¶·* Ť÷ŞęŠÖžzŰÔ(îćőýŠ‚„éĄhůÍĐYčYČ8ĺ¶ÜťňŢV5ŞÖďĘŞ<˝}8€zafBď§f{`ď× NšĽżb-g®8Šý,ŽÇ]čŘO -ŽŤ—›3oÄßq{ĽJ˝˛ ßíÝňxłj;°Ś<Č{^n;ľS8y/úbPĘd~kVŞođĹĎř'oI ĺvŽ˝©ř;_ŐUÉ_Gmc÷Žbms~BzŻ›*K–Zi㇩ęĂ!Ż}@†ŇëľŮ†ŢLŻ†±Ôńעᥭ}8÷Ő×X$Iü(-2?hű•;8®ńž§şđÂOŰDńlúř¸Űć6RˇoRłą…°É=AŰlwjí1oÁvIE—č‚“G±LĽL<FÍ\ËC'zÝr¶¶9ďźHŮą® ë:@ `Ó6mi뜢“n7Źdřš€Ńw«ÇO&Ç·őĆŕˢéđHJÇßh5Řŕ«aČĐnć¶zĘŰc^<_7ÄcÓÎ$ŘÚóţ;–VýQ‹`›ý"t®» %âvÁ|ŁŇv’kŘ]JÄ})&ÔuS®ČťD›…Ă^#ĚGx^BŚe‚ÖÚGgHAÓMę“űd)0#ét>ä˝K!ź-¨@"Ĺ#uS˙YµÍ4˛çꋸ­ŞŃz»Ç +–~sx%@Ćj„˝Ś®Ń¬ßŽ®‰÷ťë€‹pS´Ťî›bc´,­Hľxj)˙š gm#ÚŠ©]ć56ĐĚáMÍrę5ˇ× §hšBo™<ÎŤŚ7Ô„!G +ü8Éćpu(“+B!š¶‡®QEéňÍw'(a;ńik9‹BĐ–x&0iĄrďŻUĘ4[T+•?Mb®Vß3ŻVv/ᤂŁÍťHx-UŢ^ßí>üăűźv^ß˝{˙ę+ +Ą2‰źÝâB‰O€ůů©j«%®0űÜÄÍă"“ş(2Îh" «ż¸Ł.×đňf›bÔÚ«|nď®;”’%甆ą 4+N˛_ŕľĂá“(^HöÚ +ÁŐń¶¶­ŤűeS8k°•,š§ćňRÂW8D~ ľ.Ś^˘(cŮ凣††˛*č—Iűb6N•Cš_fŘňĚČ"]Ţîq+˘˘UUĎĆ•ĚqFŚ° Ňţ“-«öĄęŃVź¶\táďąÚ ß)ńŞ.ŞSO!FŔDWC6ËbŽÂx…ń4 +lóHů¤s÷ś‰|ěAuaŕ±÷ď}ýčď^ąŚ˝Ŕ·“c˙źáÓa´óÁŠü’ak¸ÂFîćfa1HtćaŞw=h¤ÍŠuęÇĐł>'¶Îć¶îšs[T;Hł†ŇěKĄt˘3Ék@Bé Ŕ} úţ$đţ†ŕĂX‡ĄĘŁÇęéTď\ż‰MŚŘ$^y1ËZv_F~G‹8;IeČŰnęČÉnlayź ĺä Ç·Çś{Ĺ‹€:XPz)Ęv?Ăz’ĆÁu¬G+XWS¬Ç+ hŚhś4Źhńšě’”`çż‚¬eî‹#čý]ÇřęUxK:"ŢBjĆxG>G‘ +Ŕ&·*h93ŃÍd°˙ánÎß?ŮÎöţ ŔtR?q˝$ÚvÄ6SěůBý"dcAlŞ#@ě­ř¶´{+ĹD[†36ĹS8¬ŔKHrÎYß—{Á%$ý«“š( |ó­“*`TŁ]M´‰°e–±©˛Á(a`~ÜĆţTt‰­iweÔ‰r&ôµ‚ +?ŠŁĹPć‡÷ď…)ĺ2X€bdľ˘¸ăK[6ŽC3lRB5ŃWĆ;6µ#aśKŚWś[ŚÇçĺ¨CĘ’Pzr»äîzőĘ]Ng2űaV…3 ®9%ŁAŁČŹŚ§Ë*Ů|°“I,N"„ăŃv`~T"”dŽżâb/děâë®éČ<K2ŽřúĂąíÜf+6Ń(ÂEĹžŹ+’ŕó`ir€»´¶pO1xş3ż$ŇĄ?ťPaF +‹Cl7AµŞÍ÷xjńď§ćPu9˘ém„ş‘ž X(ńŠ‹Đ ß%U‘<ýq˘TÄ­i%OmM`(yÍĐeFŽ©Ă÷‘Ăw Ś‚XŠîŃiQĘôJŮQ†1n@µ#ˇ„jIAeŐ’GpNé4ą‡#ŹmčúŔ˙ô?ú·yç´)ą=Š"4ľâ B~Fjůd ¬ĄO"_–ç·)šă±©çŇ2”çĺ”_‘a±Í3¶˘´j°Pv/Ąnró„8ć6$ŕ˘uéä5ÔuôÉŠ5€9ë$uŐ‡ ¬;Ô+VXxÎäJ '”wŕń)Ĺ˝?9RG„µ§·§ÜŁ$Ąă/Ăv“Óăž3P„ž ŞÖĂYdĐlŕůd ¬8!Ĺ ěaĺ©›;ć€ĹaÜvuĂŻ‡VŚÄݸ†RĆ›ô®^ a›†ú"Šp‚eĽEř'ZhŽašs¤¨ua“ hˇuÔR‹m´ u¸zŕýů‹-©–j|é–H.‚öá,CăÄ%ÉDŹÉÖL']ôh¤ +tŽŘ{ËyiČN—ÖÉ´oÜď·dR­¦iK»$†Č”uÓó:čF0¨ ©ŻŐ¨ľćyąľL¤:‘ňޱ=,Á÷ýĺۉđ-`9Š,žĂb,ÚMGPÜrľedľ%b9µ*ăŹ|ë¤zb›TAk3Ě8ĆBh!“;Ě=Ą \Çd“^Ѹ!DöwŽl™l çîwX!šŘ– +ĺĺy·)ß•¦>Ž¶CÄŕPÁ‰l}DťŃÚg&/öĚ;Vůjs5áO§ĆÍF‡aëě§R5ü4±ýŘ% ×ÚÔĄoúü°ű€rři('ňĂš€'6›mncč7#é`u2[ë˙Y¤˘g +endstream +endobj +703 0 obj +<< +/Type /Page +/Contents 704 0 R +/Resources 702 0 R +/MediaBox [0 0 612 792] +/Parent 683 0 R >> endobj 705 0 obj << -/D [702 0 R /XYZ 72 348.262 null] +/D [703 0 R /XYZ 71 757.862 null] >> endobj 706 0 obj << -/D [702 0 R /XYZ 72 112.743 null] +/D [703 0 R /XYZ 72 276.531 null] >> endobj -701 0 obj +702 0 obj << /Font << /F16 249 0 R /F28 248 0 R >> /ProcSet [ /PDF /Text ] @@ -5148,25 +5136,21 @@ endobj endobj 712 0 obj << -/Length 3672 +/Length 3565 /Filter /FlateDecode >> stream -xÚŐZms¤Ćţ®_±ß‚ęN†ňÍÖ)±śşźä«TŮ.ZDy6ŔŢůţ}ş§»a`W–.•s%_v‡a^{şź~ş‡hużŠV?‰ř˙_' -ţŁ•Z©\…qš¬R•‡6Ň«őöäç_ŁU /XEaš§«O®évĄuꊛŐŐÉŹ'ß]ź|ó7eWy[mW×wÓXQF&]]—«źuŰ7e»-ęć¦.OĎ”Ž"¨ěşŞßťžé4h›˛nîOĎâ8Î_˝Ć‚ †âvSťţzýĂÉĹő±ŐF:4ą]®ÖäŮ—ŻÖ”+Z퇺Ż‡Ó3ç&řpyuy}óöüü§÷ď/Ţś_ŕr`Ľ3ĄÂÖkč$YĽşřpy~qsńĎwoŻ ë±öŻ«˘ßwŐ¶jpX­¶FŻ/`úo±Ďë‹7׳~–ú˝˝í«îăibb¨Ű­uĽýîęâý©R*řŕ~ż=ÍLp}ůöͱ©Żvn·ŐşĆŮĎLlLpőîâüć|ü´¬NB«’/Đ-ŃSwj IÓ©e&T©]نŽxcżhąŮĄŰ⤣0Ďc^SnĂdć IíhżĘ[BáŽä§GŰzIŃvËvŹ-Ő—ÖqTVJ/d•¦aśłněŔŔa¬ŹuYu¸ő8G=©ČpAđî—HGx6𯨦«ŠÍć3•·UŃôT¬j8•ů0uNűqťhŐ nx/ÓYˇť»íBˇ¬;Ü"pFŰ˙»}Sö˛ $Ş›u»E\=˛ĺĹvm3W ň~¸oˇ?ŚĄ¨¦č š?ąUn6~m,§a‚mëNˇÜssÔ·\›ő~#„o¸e‰A¦QRÍ-)OPólLáÂäg0n&Lc5GŻ§pta© -IšŚUah‡bsłĆăy(ş{·ČTłČ Ŕďá`0hE€‘j9ě4&i¤bP¸'q‘q•N%ŕń\C?ëĎtRjĐqeXÉ흼ܜ‚5V5íŕ`ýČNŤ -“6ú[ă†ú„ť ŕŚítT:#3L˘ŕv?đëŞC{ĂC9DLß®Aáˇíw5H‡žH„0*J±§ş­ÓúÍPď65 d§ă‡rÁ‹)Ü& ŠűŠfDůž íŮt6Ô¸C- Źx„lÚb˛U(_ĺpMş†'R ™©Ô¬÷@]ŔFó` ĎqMy@ŽµŢ8âB ÇÚ¦Řâ~[Ié'«ź]“7—W3…tŐą›µŻ†Ţ!^Ä‘Ł ŕ—'m–<1ţ÷ç?˝;ś '@DłĽŞxÉŦo—řDöŠ§ĺLöiöj›q¬âz†ŚÉMČ‹Yď±ŐÎápW:'< źZ?©¶&Saš$‡^źÝOK.龨˘«ę-¶ąÝw}ĹNó®ĺÖ÷„窣«ß*°Î„ć¶čĹ቙°jÄÁě¤˙ÂŽd掴+ÖĂľ`GÜŢnę{giý‡ýO=Ł±9řśÄőŞŰŢš”`ŁÇ" rJŞŰEkQýq«ř=!ľ•‡ĂŻ‰ö Ó(HbśÜXŰv?kŕ;a¬ ĄňŘëÓC»©úbĂë(ë~čjđ[xJn Ýq×/÷š¤af íu[8áďďPř]Ő!Az9ŁńgbR -ĘÝŔ¦ťU§&T´-Š±ŠwĆę|c6Ń‹Řs‚ţ;h±-Ö\ÍŠĺ˝ÇMKlQüŽKt´ąë45×P="‚Ě,D`’0Ëř¸ůöýžynŚţĎé¨s×QĐo „ľ =ńň(ČŞ×S?¤$®ŃÚOfÇ& -łěŦ0)ź ĆźFş?BsłŢěDZ]Ýžqć1ëŔů«×ű4ş§ůö##đÖF†1:6“lŚM· L<”ĎôŇ ‰Š5·o®Áşj×U=gś‡2â˝\ˇuÄ‹ŚĆSf+ťË?N:ŤŠ Ž…JʛNj¸ĎU°ćńÔ0•ů›ŇĺOľ)„BLÝŕ{âŻnÖKŠÄĺÚó'yĽ5€ĹÝ0öyŕvË6kĘG •é0“»Ë9[O˘q™Ć›$˛fÁ»˛»Š«Žův.¨9 „3!'tţÔˇšzÖü} )‹˝éo°%Â-KwłlůfYZ«?â a¤ ˇR°-ᡠ+*‹GĚWł9C!÷·”ÁšR§rë8NÄG{YŃé>8źźÔŮř - -Ö¬ĺŢ–ű 2ŇňxˇJb",O*ăVWŽiíeÄăgf®U’Á«Q;IŘ|ĹĎ*®iOeR8şy¦Ćů—o)GŤ×™3{貰ŽX¬ä#\…§±qzŔZ9Ń8=2÷gzáą›”ÝM:ş›”ÜÍsÂ^'a$·ŠwňéҡkRäšÔˇkBh¦ćFI4ęçőÔÂq©CÇĄŘq©éă¬Â馧™ĐË™Źç5ÓĹÎuň łtP”Ĺxä“7Éb$’Ĺ°^#ńaĽř˛°ł8ă„Fâ>†ŞBĽM;Ëg¨ÇĆzž3ŁPrMčt&Ëú˛Ôť/<Ó×2IŢWjĆ•IŽ*Ë Şś©H’ĄcędJĘ©aÚŤ@Hî\·–?AĂöó]gtS[4e”Üâĺ7ĎËéçy¨äžp®‡šM5öľÜó®ŮÇ{T=ć â`ş)ŤýÓs3ĐÇEi|?˝JůY&7|’6f™č‹Ćž×+)&,SŠ‰8äłnLł4Ôr_řH:Ę]”V|7I9cńĽPQěv~¦Łůş_r›¦\ö{ÁŐIbů\bů1‰y>ČDţm@Îą˘']Mš„Zî+Çë‚Ů× óoXŇůEĚQÜÖ„Jé4 •ĺŻĘ­ť5ş¸>ů7;$ű +xÚÍZmsśFţ®_±ß•-ÂŔ0@ľ%˛.Ń]ŮV,ŮuUIJ…ITvaX+ţ÷×=Ý »Ë©ĽÜ—efzŢşź~şgŐĂ*X}wđóŰ›“Żţ©Ě*ó3šŐÍý*đł>+µJ”o4>?’ŐÍfőŁwóXťžEaęm?P©nîŰn“uŰpEOĎuÝür +ĎŞ¤÷á±kwŹňâş­>ž†™W5Ř|¸­ąĂOA¤«µônYúŔâąu=`×O§i콄‘ňžëëěH™WBCĺµCŐÓ{NÝ»Şh»R–@Oţ4äwëęôç›-öFÉĆ„+“Ą~†´)]u_uUSŘ…F‘w‡űDeZg¤iťe»ÉkMCk„j^ă×8ÜÉĹÍÉOd•)?Jâ•I#?ÉÔŞŘśüřs°*áăżŕ’,Y=٦›Uf~Cq˝ş>ůáŔ©Ž˛’Đń,Kö4#šŽ +*»®ę·§gaâµMY7´ŽóWŻiÂăć™­1ľIÍr¶´ęËgÇ~*ší«nS1azŻŢáż˙îöâ?WoŻßż»Ŕ逼3Ąü,Ž©ý‡şŐ83Q¦˝—×—7·oĎĎßż{wńćü`ű« ő±*w›tę]ŮÁŢž_Ľ‚>#ăUő±. c§÷ęâĂĺůĹá9j˙şĘű]WmX•a|ŁCďő ˙ öy}ńććĐ8oďúŞűxo4»0öŢ~{}ńîT)ĺ}°żßś¦Ú»ą|űćë­]mUÔ8ú™Ž´ö®Ż.Î/aĚă§'‰źĆ_ Š3 Ń‰sČ©öUbVqů±ć3ţ)T\şíSń”2ăgA2őßFÖúxy·E vąµ˘ĽŻaˇp¤bQěńG|1`ĹĐÂ5dC¸í†G‹iPš >—ľ6ŘŻ§šA$÷í®+*ŞlďEĘ8l?Č#vľ<8~¨Ĺzµňc°/»ŢĽ±3 Q4€Â\WŤ5TŕŤčئ«b¨?ZTöq3´w9P»˘ÝŃşŕ—íBő÷]»™‰Ts‘©#’ÚŃz•3…ś‡GÓzIŇvËvǦęĘĄyÜ+.ö +tŃD¬[°oő±.«—e¨°k°e/Ĺß„ž <•8‰|˝ţDĺM•7âzjÜđą#Ěh=¶ÍşÁďD8ť•ëůĘşĂ%ŠŰ´Ëçý®){™PÔMŃn†Źű#Y®J|FęŞěňnxhˇ?ČRT“÷„äOv–ëµ[ë8¬MkOˇÜqsÚţ0Š|]ěÖ‚@ř…[–hděĺć±flLţÂäg0^ÉOŕ gŕő9ś]XŞBű »ëˇňőm§ówvŽŕUhÇ Ŕßá\/bhEx‘„rÖID›‘M@áv‹|=?¨´ODkp ý¬O4SI©AĆ™a%··ŰeÇޱŞi ęű Ő°ĂJđKce=a/ x­ÎJ§d†qŕÝíţ\uho 6‹ékÁ5(<¶ý¶†íˇ7ÚCŠŰŘSÝĆjýz¨·ëš™éřˇśódr»J„üˇ˘qφöl:jܡ–ůLŔˇ«°±NW:U~Ş„­ +-ó!'+•šbD§Až8…#3„r«őÚŇ2H8FT6Ĺ÷ËJJ˙>Yýh›ĽąĽžéŁ­Îě¨}5ôđ ·ŔRVB %ź‘˙ýůű«ýŇq48Ę늧śŻűv Od®xXÖb? 'ÚdŕëY“Ş_·ëĽql]ÜBä}óý;<­~s ĐÁv±ďŹ7}Tl±8ń3×ô·y]"•h8#¤}äYO˘ÔݶŠ?"‚!3Î0QOÖëOöiü†Ţk&í€č ëň–ěávô‹čôHĆ zĚ[ 5ŞpD”űâ°\bŽýLkö,2A‘3ő&ď, ň@ôti `}ť×›žĘ¨_¨Ľ:ŘÖ‘Ă4c>öj›q¬âzFŚÉKȇYď±ŐÖÂP[*'4 źZ^mŁČŞŔžÓgďÓ’Gz¨ŞčŞzmîv]/Ü}Ë­ĎTGO)®U`ťůĚ]Ţ‹ż+aÝĽŮQ˙Ł—δˋa—łnďÖő5´ţŻpŚ: !şgˇK'=­RR݆Z‹úŹKĹĎč ń+č<~M¬g¤ ‡±Ű`emÚݬ넱‚”ĘcŻ§Çv]őůšçQÖýĐŐŕ¶đ”ěşĂž![®3 «Ć&·›ż»ÇÍďŞůŃË‹78sRPnĚ"XłN J¨hY'bŻŚ-ÔşĆt˘‘ăݶĐb“\ÍŠĺ|ÇEKh‘˙ŠS´¬©ë44×PŮ‚TĎ· ĘR_…|Ü}»~Ç47B˙guÔzëŔë79bßšŢx‚€ycŐĹÔ)‰m´…ö“Ůq‡‰@,{†±)JĘ&¨q‡‚îŘÜëÝ(ŰFiĐíYđĄĆW†uŕüŐë/°1ó{m,J´Şč»8c Ăś ëio´I·ŕKk<”OôŃnknß6\1‚-ľtŐ¶«zI›ˇ‹ŇâľlˇµĽ‹ŚĆS^+­Ç?L:#BĐź˛ŹµĘ›E‹°ĎV°fŃÔ0•ů«ŇfOľ*„|LÜhď{˘ŻVë%n +ÄeˇăO˛h błČ±‰ÇŁäüŮőEËľőýrj¤ť‡CMłŘ8𣀏XČfJţÇ’y\!3ĎľÚć@h™Şííµ%©6‹´ę˝Ä—cą„Üy^öPŔ)‘5ÂŮ‹­Şy´76F¤‡sËăŹR?Ň©¸ÜŞ/şz;QEN'4S,˘«Ŕę/ď9ĄH<…`DWÉÇśĺX­Ć®wÉť"ÎÖčÉéNđ21řŢ‹.‰Ë•|Ść¤p/ňJ¸ˇ:â\‰¨(4>hŤŘ@Î~Ý‹]®„‘PwujsÍóůÇhźä^» ¤q2O3žâh z t’ľ1nú3L6ę+„˝o×”2âä‡ÜŮÜ"Őçuü¬ ]0–sz‘ŇľŽX~\şÝçp92aĐw$Ô‰ęä0ËŘ“Jv6ÚŚá3w˝„¸5×L¤×ůbŘŰR+çd¨bŚ‡-…K‰L—äHđ|7Đ×r‹`W7öK ÇýdŇ"*ô5¦IÂ`[Ô6ěFÝ ŐI„D@a!J3@G›)¤ňŘĚáş g0„’@ł7~Ęb@…ô›©$oš§ă™@+x^z~ň­n·IçđlÜűp|;^™@3cÄ•HÄe«:k&qĹŠc)gso‹V˘ +řu<Ьnú]—7ŹöâŘR’ÔŹ“ĐŃW—Y@SvĹ€‡fôÔE=ĆŁ¦´č”s6ü)8Đž#>"ŮrĚ»Ą7‹qć +f+ć®çsé»XĽßQ|ný#ˇ^Ę<ŇLROR¶a˘(W_-Ä<ľ »·f‰/r‡ĺ§(µíSĹKŮ —B›ScCK]÷5śĐŰ~´›JňMDg‡śhłŰGb»čqF7)ű›kßI/ÖśVBwdlBAŔ…ńDˇ,‡’ŮC±vɧŻ”Ç{Ťmá3ŹĄ+®¸^ ÝlJyĐ;Č+­[Rě–ěČ–¦ĚňG5cA«C L9`µp.I&ŹŢ6)hA_7ÎŢw}ÄŮlä> endobj @@ -5183,7 +5167,7 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [246.493 526.642 264.758 537.434] +/Rect [246.493 478.876 264.758 489.669] /Subtype/Link/A<> >> endobj @@ -5191,7 +5175,7 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [362.509 526.642 392.842 537.434] +/Rect [362.509 478.876 392.842 489.669] /Subtype/Link/A<> >> endobj @@ -5199,7 +5183,7 @@ endobj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [206.495 514.687 226.781 525.479] +/Rect [206.495 466.921 226.781 477.714] /Subtype/Link/A<> >> endobj @@ -5208,89 +5192,96 @@ endobj /D [711 0 R /XYZ 71 757.862 null] >> endobj +714 0 obj +<< +/D [711 0 R /XYZ 72 696.145 null] +>> +endobj 710 0 obj << /Font << /F16 249 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -723 0 obj +724 0 obj << -/Length 1004 +/Length 1296 /Filter /FlateDecode >> stream -xÚťUMoŰ8˝çWč¶Pł$őÝ[»Ţě"őÂVNŰE@[˛ET ‰N›ţú9Tb;ĹbłäpfČÇ÷fÄ‚]Ŕ‚ů»ŻË«÷źâ,(h‘Š4(·ASžĄAĆeQ”Uđ7ů"8 ˙)˙x{˙‰§'1ś2vđ HiÁ˛—đ=„÷őc(2RwˇČɱ~ŘčpëĘÎşM}0ŞúNŇTĄuÍťk®á$Žyöp-{»Dâz_›Ć» Áhhs5˛ßůD[Ýű żiĺŕsę-Ž‡3męęŘ»í9]eá_˘>‡ś9eą@ȬRFé2DQDT‡Łij;‰É= 9YQ\4z8(#[ôžSďéĹź‘4á‚f‡‘Ó"Iţ/KižR.ˇőäěžjź\95ŚAş«Ń ”˝&…Ń"ż™YE{^äÁ, -ň]íIkŹfIĂÉÎa˘V Yt¸ź{Ú`˙n5™.­Şć¸\áŢĐčc[ˇ} č Ră—/,a{¸{›Ń耛S>>ŰF®Ź­ěź€ôůÍžZ9$ŕ˙AŠ© ‚{^­xť®dë¦NŹĘ{öÇ0IŔëX{Ń>‚ůŻŚ‹sVÖGFńr )Ó(N…S«Ýµ&QN ŁZ‹Ä+˛2pAŮWę‡K–%dZ÷ę1Ś8 ł¶ŢCG‹śŔąü5g^ŠťÁ©Í@ î´›Ĺď‹eG¤<«_%˛ˇ§eőúđ1ĚcR–ËŰëűröćDřÖ÷ó‡ŮňăŰ«ŮŰÓńúź§·ĺíâó«č×íŹý!ă4Ťy‚f±/ť˛©Ë?`0Ŕ‘k(íÖi” ťĂ˘3Ňu:0¨ş-Ôô@ ’(!}4č`Ż}t«:µqĄďʆ““?†ńGŘmG‰ů˙Ćߪ‘>5v#tÚďéµ˝™+Ő×8ĸúö×ű_•ŐKÇ„’pTžâk¸Ž3NziŻđ >öżQI#ßÁT0˛¶­ÍťăfľcÝP®Ý3:óÇçô7Ó;ŠłëşŐ'Gą>–‘GUŤ±˛ĂŃ?Š2vxšô¶gŰ?QŁţfĐÔ{é_Bd Íáżâ 6j×´đa¶ŢkŻ•§ľć ŢÜ7xX~S¦qôŰ­Ń碾ó±ľ-˝Ţŕë{¤,Ř]tďŐGţiŢĹÝâ/śÝčý~t›ÂŁ˙KqŃ<ó,ŢŤ©öĂYi”ĎxLâ„Ó,ő=+ÍÎĽfĺŐO=nSŐ +xÚťVYsŰ6~ĎŻŕ[ˇ™o"o±ĺ¸nÇQÇ–źęŽ&)‰S^ĂĂŽű뻋]Ę’¬ię}u#GKy‘ł\;®T)Çut$µŠťŘURů±ł¬ś?EŃĎÎü$u3ŕ"†öYŢOł0f€ż—śčÍšţĂ– ­ÁÓ—™‹Ľ#RZš˘˘Ą©3R üKL&ź¬ĚĚ]ń ü KM=‰5(Ŕüu?v¦Ć”5¤MŐÄ_¦KlČ-{ă D:‘*ń(¦jĆÝŔřžüűě$Ú®Áă§Âň B÷#ómózâ„ëĺ´n»˘2Ý ±đĺÓIE«Ę_Íů˘Gáf,3Ún-Ď.č¨dčéČŢâą&jÚô|ß.O›.Łősw±ĚćD$”ÔIp‰$’®Çĺ°Ë¦†l®ÚŇÔ+Ů@‰>·Ö4E-LŰ–EjKŢÝGć©łc©tMIÄ˝éĂéS!Ó2Ž?ÎΦPi¬ă<;UGNÇtcN˙Xg¶Ö^3îŰŠZ=ZË+ĽA<ůCÇX°y™I´´kľO_xĎä™ëÉŘwáďJ†Î2[ž«Ž„~Đ®QäIĎĺüt9uŤŤĹŻRČě3\AÄÚŇőyv2â6§˛}2‚[ÄjÇßÓŢ`S ÚWů°e"`˛­ ęÚšnĂŠÖMÇHzľgťM*iJólě¬A®g'TŇ‹8;ŕXV 4pőAŞq/ˇ}î$m¶Mß­+쬗~Č«wd)úé,ů‰ôUDWÎşÍa>‚(óÂlꦷč`zJĄ +_\uÍŘňM ďď`s† nöt4ö$ÉP˙býBÔ˝(ŕ™ésV^Řj„š:'2¤ě4V9éEŇ]ÍÖ˘˘ߡw‡ĽDÓJ‹P)Zl¬OkÁ‹šÎ§‡ÎoîÎć·XUWt@ą˘ł]{Ű[Űö† ;,ĂŞ‚;Pó3Ń:¦<)l€Kc ŘB8<ż U-®Ç˙G)şô5ç•@ ˇµä›ž)¨ĽWg€Og\cŢO˙Šď{xĺ‹C°¬ůíQ’.ČŚW° Z˝Ŕ^ Ţ:©=źŞUĎ x˝PÜ pAÓeĹ?VYŠą}Ĺ}WL„Ë2G  +<)Xŕ.;ü·3­~?.vVckMÖ.ż.ng‰/–rJŠîß«čęË, Äry{}~żĽ|·"ŠőýŐęňöËű…w—?%x±ř6ż^^/ľ˝‘~ +ŁŔu‚yÜ:ËmŢcţé=s…y„Ö.m­@erŘ—ÎX¤óđA´­¦ńŽ •P3Ä°›>Pş,jxŚKÚ!fě˝›°SśgQőµ ›Ţ‰oµ5¬šĐČÓ< ˘ŐGĽ™-( g `d°ý „u×T§G°]D<'đ„»Ę"B `´ďě3múfěR>ČĚ``Žŕş\~řp:± endstream endobj -722 0 obj +723 0 obj << /Type /Page -/Contents 723 0 R -/Resources 721 0 R +/Contents 724 0 R +/Resources 722 0 R /MediaBox [0 0 612 792] -/Parent 725 0 R -/Annots [ 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R ] ->> -endobj -714 0 obj -<< -/Type /Annot -/Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 594.499 116.859 603.354] -/Subtype/Link/A<> +/Parent 726 0 R +/Annots [ 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R ] >> endobj 715 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 581.169 184.798 591.399] -/Subtype/Link/A<> +/Rect [71.004 546.678 116.859 555.534] +/Subtype/Link/A<> >> endobj 716 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 569.214 132.011 579.444] -/Subtype/Link/A<> +/Rect [71.004 533.348 184.798 543.578] +/Subtype/Link/A<> >> endobj 717 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 557.258 129.728 567.489] -/Subtype/Link/A<> +/Rect [71.004 521.393 132.011 531.623] +/Subtype/Link/A<> >> endobj 718 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] -/Rect [71.004 545.303 161.691 555.534] +/Rect [71.004 509.438 129.728 519.668] +/Subtype/Link/A<> +>> +endobj +719 0 obj +<< +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 1] +/Rect [71.004 497.483 161.691 507.713] /Subtype/Link/A<> >> endobj -724 0 obj +725 0 obj << -/D [722 0 R /XYZ 71 757.862 null] +/D [723 0 R /XYZ 71 757.862 null] >> endobj 174 0 obj << -/D [722 0 R /XYZ 72 645.267 null] +/D [723 0 R /XYZ 72 597.446 null] >> endobj -721 0 obj +722 0 obj << -/Font << /F47 271 0 R /F16 249 0 R /F27 247 0 R >> +/Font << /F16 249 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -728 0 obj +729 0 obj << /Length 446 /Filter /FlateDecode @@ -5302,17 +5293,17 @@ x ‡ůÝNÖOxî˙ň› Ć&Tˇ’KLš&~«Bž%]éěÝÔ™ endstream endobj -727 0 obj +728 0 obj << /Type /Page -/Contents 728 0 R -/Resources 726 0 R +/Contents 729 0 R +/Resources 727 0 R /MediaBox [0 0 612 792] -/Parent 725 0 R -/Group 720 0 R +/Parent 726 0 R +/Group 721 0 R >> endobj -719 0 obj +720 0 obj << /Type /XObject /Subtype /Image @@ -5320,7 +5311,7 @@ endobj /Height 823 /BitsPerComponent 8 /ColorSpace /DeviceRGB -/SMask 731 0 R +/SMask 732 0 R /Length 161128 /Filter /FlateDecode >> @@ -5849,7 +5840,7 @@ I } ‹ĎRz˝ŢĺĺĄFGÂ`sÂF–e’4¤‡’›âççgÎLyď%rč“ ťß•°Řś°ˇ5HŘčt:///ś™ęş»»“°ˇ˝6›6Ś1’4¦ÓéůůůŐŐU$1ŁŰí¶Z­v»­óÁ6ßHJgT«Ő­µ:ů`0Đn •óđđĐď÷ďďď‡Ăˇ„Ťńxěś;99‘°!©’k°f’4tÎÉfł©ËĽę§Żr;ś˘št5^ť‡MJ)Ĺ•ťgggGGGR\®yŔšéĚ Ň=ŐëőÁ` ÝÓd2Ńaš:P9ÓżtóýýÝszzzpp •ĺš¬ź†Ťfły{{+Ť··7IňWRÇ4Ť´|B’†ě‘‚ňđ-ICgşŢÝÝÝŰŰ«×ëµZMnŤ†4¨ ýý}‰ŽR>©¦4tĎÎÎŽ´Ť1\ó€5Ëó\‡m\__·ŰíŘ:­iôű}k-×<`ýO6ô”ŐMlÍ“Ëĺl¸ćk¶Śú”˛­‘rµĐ¬żÂ[}`Eä|KŘX.JÎŮŘb3Ľ÷TŕżüÝiÜ# endstream endobj -731 0 obj +732 0 obj << /Type /XObject /Subtype /Image @@ -5864,32 +5855,32 @@ stream xÚíÁ1 ţ©g  ¸2âkřj endstream endobj -720 0 obj +721 0 obj <> endobj -729 0 obj +730 0 obj << -/D [727 0 R /XYZ 71 757.862 null] +/D [728 0 R /XYZ 71 757.862 null] >> endobj 178 0 obj << -/D [727 0 R /XYZ 72 158.391 null] +/D [728 0 R /XYZ 72 158.391 null] >> endobj -730 0 obj +731 0 obj << -/D [727 0 R /XYZ 72 87.698 null] +/D [728 0 R /XYZ 72 87.698 null] >> endobj -726 0 obj +727 0 obj << /Font << /F27 247 0 R /F16 249 0 R >> -/XObject << /Im6 719 0 R >> +/XObject << /Im6 720 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -736 0 obj +737 0 obj << /Length 2090 /Filter /FlateDecode @@ -5902,17 +5893,17 @@ aE0@q\1 ‘iÄߤš*8> endobj -732 0 obj +733 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -5920,33 +5911,33 @@ endobj /Subtype/Link/A<> >> endobj -737 0 obj -<< -/D [735 0 R /XYZ 71 757.862 null] ->> -endobj 738 0 obj << -/D [735 0 R /XYZ 72 503.679 null] ->> -endobj -182 0 obj -<< -/D [735 0 R /XYZ 72 325.95 null] +/D [736 0 R /XYZ 71 757.862 null] >> endobj 739 0 obj << -/D [735 0 R /XYZ 72 258.31 null] +/D [736 0 R /XYZ 72 503.679 null] >> endobj -734 0 obj +182 0 obj +<< +/D [736 0 R /XYZ 72 325.95 null] +>> +endobj +740 0 obj +<< +/D [736 0 R /XYZ 72 258.31 null] +>> +endobj +735 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -742 0 obj +743 0 obj << /Length 2165 /Filter /FlateDecode @@ -5963,17 +5954,17 @@ s d‹\'“$~06Ó86Ëyl¦ç×Ĺü;M ‡ ÚI놌O¶ÓFD* ¤AŚiHŽĎ÷ Żü„Éř[M#d„Zű¨ÖxŔ–ÎlăŰIȸaRz0âµ›ć®-v÷ĐÉ™­UâvͱGe a_ŃĎ'¶Ś[űp|B6;B|ńúňćíC°ř—8§>ŕ¸É7ŹK]·äMźĚ&¦|/EPŘOt›g§?o{č5 ŹŽ'ł cŃ“Ě°Łb˛)˝úOďżbPŽ,‹X¶kźCÇHścá®özś©˛SLśfZ(”Ó41ĎVô‚Cúú?,yŇ endstream endobj -741 0 obj +742 0 obj << /Type /Page -/Contents 742 0 R -/Resources 740 0 R +/Contents 743 0 R +/Resources 741 0 R /MediaBox [0 0 612 792] -/Parent 725 0 R -/Annots [ 733 0 R ] +/Parent 726 0 R +/Annots [ 734 0 R ] >> endobj -733 0 obj +734 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] @@ -5981,33 +5972,33 @@ endobj /Subtype/Link/A<> >> endobj -743 0 obj -<< -/D [741 0 R /XYZ 71 757.862 null] ->> -endobj 744 0 obj << -/D [741 0 R /XYZ 72 491.724 null] ->> -endobj -186 0 obj -<< -/D [741 0 R /XYZ 72 337.352 null] +/D [742 0 R /XYZ 71 757.862 null] >> endobj 745 0 obj << -/D [741 0 R /XYZ 72 257.748 null] +/D [742 0 R /XYZ 72 491.724 null] >> endobj -740 0 obj +186 0 obj +<< +/D [742 0 R /XYZ 72 337.352 null] +>> +endobj +746 0 obj +<< +/D [742 0 R /XYZ 72 257.748 null] +>> +endobj +741 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F27 247 0 R >> /ProcSet [ /PDF /Text ] >> endobj -748 0 obj +749 0 obj << /Length 2988 /Filter /FlateDecode @@ -6033,32 +6024,32 @@ BZz 3ËbatE’beŃÁÎŰ»«˙´C endstream endobj -747 0 obj +748 0 obj << /Type /Page -/Contents 748 0 R -/Resources 746 0 R +/Contents 749 0 R +/Resources 747 0 R /MediaBox [0 0 612 792] -/Parent 725 0 R ->> -endobj -749 0 obj -<< -/D [747 0 R /XYZ 71 757.862 null] +/Parent 726 0 R >> endobj 750 0 obj << -/D [747 0 R /XYZ 72 455.859 null] +/D [748 0 R /XYZ 71 757.862 null] >> endobj -746 0 obj +751 0 obj +<< +/D [748 0 R /XYZ 72 455.859 null] +>> +endobj +747 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -754 0 obj +755 0 obj << /Length 915 /Filter /FlateDecode @@ -6072,16 +6063,16 @@ e óß^üH÷táÎúŚÚăç”˙ę ,÷_pHJ<¤Ĺdü?ü‚cô endstream endobj -753 0 obj +754 0 obj << /Type /Page -/Contents 754 0 R -/Resources 752 0 R +/Contents 755 0 R +/Resources 753 0 R /MediaBox [0 0 612 792] -/Parent 725 0 R +/Parent 726 0 R >> endobj -751 0 obj +752 0 obj << /Type /XObject /Subtype /Image @@ -7059,29 +7050,29 @@ hVZ牼 ^ÎP‡łĄ(C’ Ć6ĺ‹i&xůU F+ËpŘąűL^ˇŠ©Ěçí1pôéÖź;łź5HĘ\Í^W»Ü(˘Šŕ;Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( Š( ˙Ů endstream endobj -755 0 obj +756 0 obj << -/D [753 0 R /XYZ 71 757.862 null] +/D [754 0 R /XYZ 71 757.862 null] >> endobj 190 0 obj << -/D [753 0 R /XYZ 72 340.466 null] +/D [754 0 R /XYZ 72 340.466 null] >> endobj -756 0 obj +757 0 obj << -/D [753 0 R /XYZ 72 282.282 null] +/D [754 0 R /XYZ 72 282.282 null] >> endobj -752 0 obj +753 0 obj << /Font << /F16 249 0 R /F27 247 0 R >> -/XObject << /Im7 751 0 R >> +/XObject << /Im7 752 0 R >> /ProcSet [ /PDF /Text /ImageC ] >> endobj -759 0 obj +760 0 obj << /Length 2108 /Filter /FlateDecode @@ -7097,47 +7088,47 @@ y] (M'±zęÝ]ä?Ę'ÔĂ˙ť^ąĎĎńĎ#˛8)ŔËýăÎp[÷J%ď<¨bŹ…đI§Ć&.¨RĆ·™µă»ÉSnjźr '€›•Ďa%iüeXÉŤ~P9_†“çń'ÓNŠśä3ą’˙0O.NÎqŽ|Ŕ \¸ĘkŮaśQÄ\ÓÎߏ+× o=<)Q*“Ż_fž‡)‡ĘźĐ îkĄI>«M‰?#Éme endstream endobj -758 0 obj +759 0 obj << /Type /Page -/Contents 759 0 R -/Resources 757 0 R +/Contents 760 0 R +/Resources 758 0 R /MediaBox [0 0 612 792] -/Parent 767 0 R ->> -endobj -760 0 obj -<< -/D [758 0 R /XYZ 71 757.862 null] +/Parent 768 0 R >> endobj 761 0 obj << -/D [758 0 R /XYZ 72 527.59 null] +/D [759 0 R /XYZ 71 757.862 null] >> endobj 762 0 obj << -/D [758 0 R /XYZ 72 363.801 null] +/D [759 0 R /XYZ 72 527.59 null] >> endobj -765 0 obj +763 0 obj << -/D [758 0 R /XYZ 72 245.108 null] +/D [759 0 R /XYZ 72 363.801 null] >> endobj 766 0 obj << -/D [758 0 R /XYZ 72 102.503 null] +/D [759 0 R /XYZ 72 245.108 null] >> endobj -757 0 obj +767 0 obj << -/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F92 763 0 R /F89 636 0 R /F95 764 0 R >> +/D [759 0 R /XYZ 72 102.503 null] +>> +endobj +758 0 obj +<< +/Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R /F92 764 0 R /F89 637 0 R /F95 765 0 R >> /ProcSet [ /PDF /Text ] >> endobj -770 0 obj +771 0 obj << /Length 1909 /Filter /FlateDecode @@ -7150,37 +7141,37 @@ x üĘářLßŐ§c\TÝEa–éł\Xřz(ČŃ…»0fßvˇNn~‹ü{8¶†Şej@¨yëČŇf÷F2Ŕµ6Ť SÄplş—'m5m1‰}1sÇŰÄy&a0tÂ,FCÉ;W]- €čNĽÖQ9ÓňRęv.ĄF¶çÜ}ËQi¤:›m:˝~ýÍtw˝Ü]śÁˇ{ť0ă¦SÇW©C[ő˘1)ő¤NăŞNŚ˙RŚi&9G `ťkŢ»8HńJĽłdÜÍmrO§˝)@naťćt/e…•Ě‹ŽF;^qvŚ$Lď>ďć&ĂÜ”Čii §ĎD_ě;‡R"5Śˇ(îđoAQwóÓřŠę€JőE­LL =“ ¦ňĐ^É?U®†4‘vŠúşÔ>2ĽŰż5GMj6Bú8®‘_Gdťś…F^ŤÁ˘95/CF˛ ¨bp€xćűX ú‹0W’¶i €*m ĐŠÚÁ#B.ůň)Ä)4‚D—©Ň^©r§.;+ÓEb—¦żÚ!;™żî“4‰u_„}{Ü} %űŽ/ßS‚.ŰHč#5QŐżéÁ5şR°¨¬Ş˘ç©Gh±G°ĐGÁ‘„gł•fU&5Ţz> -endobj -771 0 obj -<< -/D [769 0 R /XYZ 71 757.862 null] +/Parent 768 0 R >> endobj 772 0 obj << -/D [769 0 R /XYZ 72 553.486 null] +/D [770 0 R /XYZ 71 757.862 null] >> endobj 773 0 obj << -/D [769 0 R /XYZ 72 291.33 null] +/D [770 0 R /XYZ 72 553.486 null] >> endobj -768 0 obj +774 0 obj << -/Font << /F16 249 0 R /F92 763 0 R /F89 636 0 R /F95 764 0 R >> +/D [770 0 R /XYZ 72 291.33 null] +>> +endobj +769 0 obj +<< +/Font << /F16 249 0 R /F92 764 0 R /F89 637 0 R /F95 765 0 R >> /ProcSet [ /PDF /Text ] >> endobj -776 0 obj +777 0 obj << /Length 2295 /Filter /FlateDecode @@ -7196,42 +7187,42 @@ xÚ•X sł1°„ůKfR1=ĎěAĘ!Ű3ŻÜN×(˙0c­k¸ Ő†_‚­›V ë€×|Y H#/‹ vR»¤nx×ŢÁź;)tý©˙Áµ›7$Wm}HÚ]ĆyZ_>&ÜdýiĆŔpdc&ĽÁi 9lff÷ C_AVWÔ7W“Ói2J(Í l<±Ďă´Ř6G“ˇ÷ş„«|îÇ„q/9U ĆIčAˇqâíÄî&^›;Â'ÁQÍ ňóŘ˝Ą„ßEšŔ}Żq?(%’0u?rUJ±ÓB5ôA’äÔSĆŹ ëĂ]© Y{ăßĂ]ëb–¤™űßEąČ·ë,5_s9OŢ<5ŇFi2Dý}M›ăŔ÷=§ľ°¬čM:ZáPęC·5ýa‚Ő«¦=Î+@XdşŠ§WCPĎue@c Ś ěć#ń9ş"Á ç~HšE¸XÂý©ŁĚ‹áčXĎÉ#H·±n+pĺ §™š˘n«É˙/+=\­Ëi6ŠĆ©ŕň>Ţ´ÚËS«ô9KL^L‡‡DżMĚ<ÍU|Ű®%Űm¨&á.ťjřö`TfݬΓ ) a ÁdŕôĂŕą7ËŰ»ë+#>L>kčtJöţ1#şaśŕ> -endobj -777 0 obj -<< -/D [775 0 R /XYZ 71 757.862 null] +/Parent 768 0 R >> endobj 778 0 obj << -/D [775 0 R /XYZ 72 720 null] ->> -endobj -194 0 obj -<< -/D [775 0 R /XYZ 72 527.59 null] +/D [776 0 R /XYZ 71 757.862 null] >> endobj 779 0 obj << -/D [775 0 R /XYZ 72 349.854 null] +/D [776 0 R /XYZ 72 720 null] >> endobj -774 0 obj +194 0 obj << -/Font << /F16 249 0 R /F92 763 0 R /F89 636 0 R /F95 764 0 R /F27 247 0 R /F47 271 0 R >> +/D [776 0 R /XYZ 72 527.59 null] +>> +endobj +780 0 obj +<< +/D [776 0 R /XYZ 72 349.854 null] +>> +endobj +775 0 obj +<< +/Font << /F16 249 0 R /F92 764 0 R /F89 637 0 R /F95 765 0 R /F27 247 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -782 0 obj +783 0 obj << /Length 1321 /Filter /FlateDecode @@ -7245,71 +7236,71 @@ h3 b (bLÚ*Ghs\ ‘şuÓzI€żpŮż8âQ̤tĎ*•$J#iŕÍzU2ŃP2»S|Ó˝řnÍßs_ľpß?ôr—:cŢ D.ŔŐ•żÁ&á˝cMŰůĎZĎmżąýôF˘ŚJ‹˛×PDłÇ{r24‹şńoV+[®Lw¤¸ ŞžôůI˙/*xTÚrhr(~ŤÍ ş‚ÍQ;ĺCźÚ*0×ŐÚ7sx! OpýÁ$¦o8qŹ-őČĽäÔůÚë}q>N»éí }»c<6˘ě±lŰ˝3ýď†_ ×Ô콡đäP¶Çł1¶ő°=DŠÁ8t8Îý‡f,'H)c őŞT$|( \ŕŐ}_m:ş{†F—†.~smضŕpë°ď˙„©«AÚ3±; ‚űÓą0H|r…BĎÂmijčˇîíÚ3׍˙&ĹĽ‡7ěî ’)†ÁëČ ’Lě‹cŹĐ­Ůúaŕ˘jFâÚ<pć’n]ůá-Âu°N.ô°îZ$^ÖţĹŃ ;XôÉ*Ýáŕ“î>NÓ aô9aüÄp.ŕߦřÉ?]‡©H®`b“t±†˙z’˛-M¸`Šý ´Ě4 endstream endobj -781 0 obj +782 0 obj << /Type /Page -/Contents 782 0 R -/Resources 780 0 R +/Contents 783 0 R +/Resources 781 0 R /MediaBox [0 0 612 792] -/Parent 767 0 R ->> -endobj -783 0 obj -<< -/D [781 0 R /XYZ 71 757.862 null] +/Parent 768 0 R >> endobj 784 0 obj << -/D [781 0 R /XYZ 72 575.41 null] +/D [782 0 R /XYZ 71 757.862 null] >> endobj -780 0 obj +785 0 obj +<< +/D [782 0 R /XYZ 72 575.41 null] +>> +endobj +781 0 obj << /Font << /F16 249 0 R /F28 248 0 R /F47 271 0 R >> /ProcSet [ /PDF /Text ] >> endobj -786 0 obj +787 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj -787 0 obj +788 0 obj [489.6 489.6 489.6 562.2 562.2 511.1 1022.2 0 408.5 306.7 306.7 613.3 562.2 587.8 881.7 894.4 511.1 306.7 400.7 817.8 500 817.8 766.7 306.7 408.9 408.9 511.1 766.7 306.7 357.8 306.7 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 511.1 306.7 306.7 777.8 766.7 777.8 511.1 766.7 743.4 703.9 715.6 755 678.4 652.8 773.6 743.4 385.5 525 768.9 627.2 896.7 743.4 766.7 678.4 766.7 729.5 562.2 715.6 743.4 743.4 998.9 743.4 743.4 613.3 306.7 500 306.7 555.6 743.4 306.7 511.1 460 460 511.1 460 306.7 460 511.1 306.7 306.7 460 255.5 817.8 562.2 511.1 511.1 460 421.7 408.9 332.2 536.7 460 664.5 463.9 485.6 408.9] endobj -789 0 obj +790 0 obj [525] endobj -790 0 obj +791 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj -791 0 obj +792 0 obj [525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525] endobj -792 0 obj +793 0 obj [982.5] endobj -793 0 obj +794 0 obj [727.1] endobj -794 0 obj +795 0 obj [777.8 944.4 610 444.5 305.6 722.2 1027.8 750 784.7 680.6 750 736.1 472.2 472.2 555.6 983.3 1457 472.2 708.3 916 500 676.2 777.8 883.3 361 361 444.5 750 777.8 750 277.8 484 500 683.3 449.4 683.3 777.8 683.3 683.3 777.8 375 777.8 359.3 359.3 500 555.6 611.1 777.8 777.8 365.8 419.1 472.2 825 825] endobj -795 0 obj +796 0 obj [472 472 472 555.6 555.6 500 1000 0 391.7 277.8 305.6 583.3 555.6 555.6 833.3 833.3 500 277.8 373.8 833.3 500 833.3 777.8 277.8 388.9 388.9 500 777.8 277.8 333.3 277.8 500 500 500 500 500 500 500 500 500 500 500 277.8 277.8 777.8 777.8 777.8 472.2 777.8 750 708.3 722.2 763.9 680.6 652.8 784.7 750 361.1 513.9 777.8 625 916.7 750 777.8 680.6 777.8 736.1 555.6 722.2 750 750 1027.8 750 750 611.1 277.8 500 277.8 555.6 750 277.8 500 555.6 444.5 555.6 444.5 305.6 500 555.6 277.8 305.6 527.8 277.8 833.3 555.6 500 555.6 527.8 391.7 394.5 388.9 555.6 527.8 722.2 527.8 527.8 444.5 500 277.8 500 555.6 166.7 750 750 722.2 722.2 763.9 680.6 680.6 784.7 625 625 625 750 750 750 777.8 736.1 736.1 555.6 555.6 555.6 722.2 722.2 750 750 750 611.1 611.1 611.1 838.9 361.1 555.6 484 500 500 444.5 444.5 555.6 444.5 444.5 500 277.8 277.8 336.1 555.6 555.6 506.3 500 391.7 391.7 394.5 394.5 394.5 388.9 388.9 555.6 555.6 527.8 444.5 444.5 444.5 555.6 277.8 472.2 750 750 750 750 750 750 750 902.8 722.2 680.6 680.6 680.6 680.6 361.1 361.1 361.1 361.1 763.9 750 777.8 777.8 777.8 777.8 777.8 1013.9 777.8 750 750 750 750 750 625 1111.1 500 500 500 500 500 500 722.2 444.5 444.5 444.5 444.5 444.5 277.8 277.8 277.8 277.8] endobj -796 0 obj +797 0 obj [575 1150 0 449.7 319.5 351.4 670.8 638.9 638.9 958.3 958.3 575 350 481.5 958.3 575 958.3 894.4 319.5 447.2 447.2 575 894.4 319.5 383.3 319.5 575 575 575 575 575 575 575 575 575 575 575 319.5 319.5 894.4 894.4 894.4 543.1 894.4 869.4 818.1 830.6 881.9 755.6 723.6 904.2 900 436.1 594.5 901.4 691.7 1091.7 900 863.9 786.1 863.9 862.5 638.9 800 884.7 869.4 1188.9 869.4 869.4 702.8 319.5 575 319.5 555.6 869.4 319.5 559 638.9 511.1 638.9 527.1 351.4 575 638.9 319.5 351.4 607 319.5 958.3 638.9 575 638.9 607 473.6 453.6 447.2 638.9 607 830.6 607 607 511.1 575 319.5 575 555.6 191.7 869.4 869.4 830.6 830.6 881.9 755.6 755.6 904.2 691.7 691.7 691.7 900 900 900 863.9 862.5 862.5 638.9 638.9 638.9 800 800 884.7 884.7 869.4 702.8 702.8 702.8 987 436.1 638.9 695 559 559 511.1 511.1 638.9 527.1 527.1 575 319.5 319.5 386.5 638.9 638.9 592.5 575 473.6 473.6 453.6 453.6 453.6 447.2 447.2 638.9 638.9 607 511.1 511.1 511.1 638.9 350 543.1 869.4 869.4 869.4 869.4 869.4 869.4 869.4 1041.7 830.6 755.6 755.6 755.6 755.6 436.1 436.1 436.1 436.1 881.9 900 863.9 863.9 863.9 863.9 863.9 1169.4 894.4 884.7 884.7 884.7 884.7 869.4 723.6 1277.8 559 559 559 559 559 559 830.6 511.1 527.1 527.1 527.1 527.1 319.5 319.5 319.5 319.5] endobj -797 0 obj +798 0 obj [312.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 562.5 312.5 312.5 894.4 875 894.4 531.2 875 849.5 799.7 812.5 862.3 738.4 707.2 884.2 879.6 419 581 880.7 675.9 1067.2 879.6 844.9 768.5 844.9 839.2 625 782.4 864.6 849.5 1162 849.5 849.5 687.5 312.5 575 312.5 555.6 849.5 312.5 546.9 625 500 625 513.3 343.7 562.5 625 312.5 343.7 593.7 312.5 937.5 625 562.5 625 593.7 459.5 443.7 437.5 625 593.7 812.5 593.7 593.7 500] endobj -798 0 obj +799 0 obj [300 350 300 500 500 500 500 500 500 500 500 500 500 500 300 300 761.6 750 761.6 500 750 726.8 688.4 700 738.4 663.4 638.4 756.7 726.8 376.9 513.4 751.8 613.4 876.8 726.8 750 663.4 750 713.4 550 700 726.8 726.8 976.8 726.8 726.8 600 300 500 300 555.6 726.8 300 500 450 450 500 450 300 450 500 300 300 450 250 800 550 500 500 450 412.5 400 325 525 450 650 450 475] endobj -799 0 obj +800 0 obj [499.3 499.3 749 749 458.6 249.7 321.6 772.1 458.6 772.1 719.8 249.7 354.1 354.1 458.6 719.8 249.7 301.9 249.7 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 458.6 249.7 249.7 761.6 719.8 761.6 432.5 719.8 693.3 654.3 667.6 706.6 628.2 602.1 726.3 693.3 327.6 471.5 719.4 576 850 693.3 719.8 628.2 719.8 680.4 510.9 667.6 693.3 693.3 954.5 693.3 693.3 563.1 249.7 500 249.7 555.6 693.3 249.7 458.6 510.9 406.4 510.9 406.4 275.8 458.6 510.9 249.7 275.8 484.7 249.7 772.1 510.9 458.6 510.9 484.7 354.1 359.4 354.1] endobj -800 0 obj +801 0 obj << /Length1 935 /Length2 6163 @@ -7333,7 +7324,7 @@ Jt =z«§áĚp?A*­Y0˝,†Üv\‘ô5»Z}HŞÂĺ«ďöÄ[ďÉ_kĽ.Cábzůľ8{Ň{đ ťqS_úµ$ČÂZ1 ě_¤¨ŢÄŃóQĺ·ŰđÎ˙sL< ß??¸˘#ˇřŔM׉·6T;žÁ÷– †Ćł7’“ög»–ĆAŤţ"°ÝT¤Ą]¦ü^‡´ÔšăÁ[Ăúůq ŠîG/šű˙\ëyI–ŠĚó¤gńÍŁ4ů8}Ç'ş¤;2YaS·yf±ŠÚrd9ýxbÂeUe‹ÁÓ˘ľ=­ěuá0ń$ Çŕ”“‰Š—ay}ü˘šPa”ňjëj`źŃi…;•Őjq‹8t˘ě@@‚Áś@0Ž48äNv“k§÷‚­6řÜWMCĹÉľŮĹůx9ž~ÁőČňÄ»®ęn»ť¬ˇÜ6–|=¨÷ůŇtÇtŘ™ŹSΗÁÓţ1\W%5¬~Ô·;Ä( áŰFű…!b´ţsÓĆ2ˇh“-ĎŻÔžłĂBOĽfő›Ű•Őżżł D•;8©0Q—ŰD‡J‘°ŤŚýý8ă endstream endobj -801 0 obj +802 0 obj << /Type /FontDescriptor /FontName /KCXMNX+TeX-feymr10 @@ -7346,10 +7337,10 @@ endobj /StemV 59 /XHeight 697 /CharSet (/e) -/FontFile 800 0 R +/FontFile 801 0 R >> endobj -802 0 obj +803 0 obj << /Length1 2645 /Length2 30382 @@ -7490,7 +7481,7 @@ U ö*H—Ô­©¸oT˘ł%¬™¬S[/c5öuÝä(ôľî#l€µđúuSÔeˇLĽYšs®„jÎókľ˙č=Ëď2•mŢíľ™ Ź$ ę×Ȣ‡T7Ň•ŔšĽCYr͇vËÜf×Fî$˙UU§jHAlI»w‰q’ą0¨Ä˙…f endstream endobj -803 0 obj +804 0 obj << /Type /FontDescriptor /FontName /BITSRZ+LMRoman10-Bold @@ -7503,10 +7494,10 @@ endobj /StemV 114 /XHeight 444 /CharSet (/A/B/C/D/E/F/G/H/I/K/L/M/N/O/P/R/S/T/V/a/b/c/colon/comma/d/e/eight/endash/f/ff/fi/five/four/g/h/hyphen/i/idieresis/j/k/l/m/n/nine/o/one/onehalf/p/parenleft/parenright/period/questiondown/r/s/seven/six/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 802 0 R +/FontFile 803 0 R >> endobj -804 0 obj +805 0 obj << /Length1 2443 /Length2 27554 @@ -7627,7 +7618,7 @@ T ^ Žüpt[ Ď,Â]8•f%ˇĂlĆŰęĐőđfx|ŹďĂ'2ě"ѧ͂)ˇĆ§Á±š[6†Ż_wÜ Ě?ŚŘÍzň73žŹÖä¤Ű:ő.µĹ~ ŕ?¦Nů0š'•qLăÝHť“•~ŤůhÔ3ŹńC0`0JúDQŁËBŽâ/gt…¤i={ĺąĐ$·ĘL;|®7káÝBĚěĚRžAs#dß”±TĄ:YŠBom(mü/uź°@a0‰ďŰš(µ˘ĺÔoÎĐÖH(ů.~Ď2ŮĆ€Y!Â?řÔÝ4¸âV·đţôřĄĺ=öäGpĹď,2“şU#8<4đ˝îÁ?Zaä˘äyרÖTÜňPŹ# ęś„úb?^‘ Ja|ňŮŮńÂ]ěż˝x …—ZÄť˙—śç/o+pˇ%ä•Üy;Űź»ßŻt=8¦§M>ń† –ăfĺĺňůá›[*dÜ‘¤§]VĎ˙>tęë¸ăóĎŐťčăűoYM2mŘRĆ ›Š´Ęř„ü&y śÎup)0Č[ĂJ¬g"ËŁöBOh…“/úa|g×|˛çł˘ŤN-ú07b!¬ÂC‰gwçË‹¨DËDP–Ȧ-•©“Žň6ô|™KŤÚ+  nŘ-µ§ç¦'ôujDő–÷ý˛ÄöÜ5:OjĆJl›P©, Ú46h˘Ű1´e‚Ë쎿ĎKçŐđ9BňůŮ•ě/µţ’«Ţ'aĂce–E ¤ÍÜlö(vTěĚýűěBÝôŚ ÇšR´ŢŚ©·S“|‹ÖŠ§Óß k´…ů„?ô/Ż]k§řk‡¬~˝ endstream endobj -805 0 obj +806 0 obj << /Type /FontDescriptor /FontName /BHSZME+LMRoman12-Bold @@ -7640,10 +7631,10 @@ endobj /StemV 109 /XHeight 444 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/X/Y/a/b/c/d/e/eight/f/five/four/g/h/i/k/l/m/n/nine/o/one/p/period/r/s/seven/six/t/three/two/u/underscore/v/y/z/zero) -/FontFile 804 0 R +/FontFile 805 0 R >> endobj -806 0 obj +807 0 obj << /Length1 3234 /Length2 37179 @@ -7792,7 +7783,7 @@ wî‹ż  " endstream endobj -807 0 obj +808 0 obj << /Type /FontDescriptor /FontName /GGCMXF+LMRoman10-Regular @@ -7805,10 +7796,10 @@ endobj /StemV 69 /XHeight 431 /CharSet (/A/Acircumflex/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/a/acircumflex/asterisk/b/braceleft/braceright/bracketleft/bracketright/bullet/c/colon/comma/copyright/d/e/eight/equal/f/ff/ffi/fi/five/fl/four/g/greater/h/hyphen/i/idieresis/j/k/l/less/m/n/nine/o/one/onehalf/p/parenleft/parenright/percent/period/plus/q/question/questiondown/quotedblleft/quotedblright/quoteleft/quoteright/r/s/semicolon/seven/six/slash/t/three/trademark/two/u/underscore/v/w/x/y/z/zero) -/FontFile 806 0 R +/FontFile 807 0 R >> endobj -808 0 obj +809 0 obj << /Length1 1905 /Length2 22858 @@ -7911,7 +7902,7 @@ Z7&r “ě,8K déogÜ‘l~8BFTăđˇYö°ů\üď>‘c gJĹQľ§ŻOPÚD^ą~«h Ď$<‰¤jŮl“¨ń­t~f».t\6GćVŠřÇ 7÷¸ý‹xšI-áşÁ"ř6»nbś|':nĄkÝN>Ć%öLŹ<í÷XńQź4Ůź5]XĄ˝ĚC Ęŕń‰×€_LÁ0ďF|‡:PKÎťě4÷ýWŁ QŤSç'žf._ÔßN EŠMĺl(* ó#™đÝAµĎłX€›ÜEŞkŚâč=hrEĚóS endstream endobj -809 0 obj +810 0 obj << /Type /FontDescriptor /FontName /ICULYI+LMRoman17-Regular @@ -7924,10 +7915,10 @@ endobj /StemV 18 /XHeight 430 /CharSet (/C/D/M/O/P/S/a/c/d/e/fi/i/l/m/n/o/p/s/t) -/FontFile 808 0 R +/FontFile 809 0 R >> endobj -810 0 obj +811 0 obj << /Length1 2695 /Length2 23849 @@ -8037,7 +8028,7 @@ k6: Ź‘HŰ!ń)zT60eOâ"ĘH"X-Ń~ľÎÓýěS©ÓÎVSa+‹.ν,ĐŘŇ#˙šŐpđ‰ÜQäB€ç7Q\ăńKlǤĽ2¬Ęglͦu9üŚżlIŇĆ ´ţ5ĄĂ˝Ú…ş„ÇŇ#ŃBč*–ňpjęŇ=M D˘é—ŰhśčŁÜxăÉe¨¨n`­ÝŻBµŠŇ]·âĺdFb¨_ň¤0Bꨖ¶uyÂł\H¬^ŚÔŠčÇ s{!ôcsł0Ŕ?BR};^ÎY<…ĺn@ˇA­ëůćówÓă|ĐKŇXÉ?D¬< ľkˇTâž<”`Ł‘ąĆťtĐ‹ÝünGŢ«Ď~ÚČŞAŐ,W¨6îĂDć|Ŕ‡»N<§8Ě” endstream endobj -811 0 obj +812 0 obj << /Type /FontDescriptor /FontName /IZETLV+LMRoman10-Italic @@ -8050,90 +8041,91 @@ endobj /StemV 56 /XHeight 431 /CharSet (/A/B/C/D/E/G/H/I/L/M/N/P/Q/R/S/T/U/W/a/b/c/colon/comma/d/e/eight/equal/f/fi/five/four/g/greater/h/hyphen/i/k/l/m/n/nine/o/one/p/parenleft/parenright/percent/period/quotedblleft/quotedblright/r/s/seven/six/slash/t/three/two/u/underscore/v/w/x/y/z/zero) -/FontFile 810 0 R +/FontFile 811 0 R >> endobj -812 0 obj -<< -/Length1 2040 -/Length2 15497 -/Length3 0 -/Length 16768 -/Filter /FlateDecode ->> -stream -xÚ´úuTjł6CŃâî’âî^ÜÝ] 8w·âîRÜÝݡ¸—˘Ĺ˝Đâ?ş÷9ĎŢçyżżĹ -É5zÍÜ3w+””ŐELÁĆ I°ť3#+ @^Al ´cec”qÚXšŘXX8()ĹA@gK°ť8ĐÄŕv¶(™8żą:ŘXXx(R ;ă›Ň`ěP9Ő=ěA¬ŕ_@ěäĚh tzSěĚ-í@´o.b`{GKs ç?1Ř˙Dúă-ĘšXÝś¬-@;S€,“@ěö&´Đ€íĆ  ŤlPi4Ô$TŐRŞJĘj´LoŐ\ěíÁŽ˙ĂELM]CŠ .˘¨.i2¤4ÔÔ˙üVŮ˝ń7g(Şżé˙äy3üă® ˇ.˘®Ł,ÁĘü§+Ŕäčdů'íqŁzcř‡Ú›«™#ŘöŻ gg{>ff777&s'g&°Ł9“˝Í_üÔ-,ťn`GkŔŰł#ČôWc\ěLßÚélú;ŔźCČ[š€ěś@ś$Á+mßZůćô&wţ±·F8˙‰ió·9Ŕ ú?i,€NůĘ++Ël–vÎ ; ťÉ›ˇ3ĐŮĹ đé/ŮŰdJý7A@ĚĹŃńO…˙U9ţ'Í˙RżU¦oăĺtűďÚą8yţ«7˙·l°ť“Ą“łÓßA3KĐöNÎĚŇî/™‚˘Ś¤„š:ŁüŰŕŮ1*€ßşcÇäěîü—őźx"âň|.+/€ĺmH%ěLĹŔ¶¶o¬ťţ´OÜň­OÎ`Gć˙g®­íŔnv^˙ŻÜĚŇÎÔěOçM]ě™5ě,\@2â˙cý&BřGfr°@»‰óźtMË1ëń[|ĽěÁö3 ŤČÇŇ ôö„ŕĺtś]@>^˙Vü_„ŔĘ 0µ4q~ô·eAř+şŚťŔű·řŤÉ˙ŞţghţZTÚ·-5ŰŮxLAfĚŠ`ç· ů˙ĎžýW.IE -ćż[úßv@[KŹ˙ků_&Z ?diÁŽ¶@›˙ŇY:IZşL•-ťM,ţîěßňżs‰Ř™Ű€Ś¬L,ě\lk4ţ¬•ÍŰüľÝA–®°7=7çéŢFÓÄÚääŕŕřKzkÇ;?´Ě:jŞňô˙Ďěüe&ag6µ´3°qr€ŽŽ@–·`ăäx±ľÍ¶)ČýŻ‰03Ůťß\ö.Î>3°#ÂźSĺâ0‹ţýŤ¸Ěb˙Ao¬™ĺţA<fĹ˙ łň? Ŕ¬úÄűřâ0›ü˝•Ëlň¶3˙čYYŢB™ţ ˛A˙‚o˙¸żQ˛đ°·ŮýËâMfů/řV‘ŐżŕëÁ·*lţßČŮţYߨü™ăM ¶űÖ7.Ž˙‚o‰ťţ9˙ ëż™±ľQqţÇŕ-¸łř5Ű[Ą˙d{cć rü[˙GAůĎ•ř׶łü3˙ó^ńVsv[´,MßŢ'˙e˘tv´t×cy[UÖ7ůŰĎ˙ľ2ř? (˙ąeţĺ-* -v÷bäxë#/€•ť“ç­$6Nź˙ăkň÷µý×5ń6Ä˙‹˙Ü™Čd‚°˛6ůl•ÚZć+Q0SCÉËtZ‰#¨-˝’1ÓI'ž»C* hőϤ*ËKóř&ŘkScŰĽl¶%UM˙4UŢú*ř˘HŚçh2if*,ű—w“ŃÉćäë”pĚe¶Ç·“4ĆŹĹx;{îŁŮ¦^ŃŻSČôËŰ×ó`ÜŠľ±¶`9Ú`¸/Łt.ĎtA:żŢcĹFűEVčć?ĺ‡âŚËÂÚ÷ő`TZ`e?ĚbĂă;ńňĺCÇLňô5ęÖÄ}!†üś»Žs Ó)Úôµ'ĘéűŐçŘ®ď÷ú‡:ăżJc85őˇ{młĎA_m” ¬Ĺ/iJ@™^x'Ł5ł±őĂ(ęKC ěˇ{aEîhŤŽ®7­¸fę""÷9ËzÖSUľIíx˛ĂQÜĚĚđËývČ)pDZ¤ş4Ę©j=…äK#v’gad–č—kŁ­ß= -´âKuO |=‹ŔĹTţkç÷;e®Ł·Ą&Ż+ěrĐŤ;©‹ŽÂĚŢţ5XPO˝=Hz‘C‘Ĺf©¸Tú,¨(†#ąá6?-I"Ł‰î{­îřç‡k«pör/\52(‰GH`ճҡ~hô˙hążyúAhJ5Ú[žŇĄ,OÄ夏Hbl>ä›X®ňCDţ!aušt OP1=5 /nQLęOŐ7­Âá…˙vfË–wš -a®ŐX'Ôzšq¦çś÷fw‹g*yíyHwűڨʾ5,1";UyŢW:´Óô°@ĄĹk0Éáđđ­ż•µ?óq›uѡŁ ŁŃJµ•Ŕ>`g‘–űѡ#ĹEkZÚÉţUÂ,4Żđ6'7‚˝ -e5ő.¤‡1Ĺ_řÁHVĚš;2‹>qÜaׂł´RhçŃ\7b`ˇYěďľçE=U;ř¸23J {Đ—˘ -ç[Ł’$­Tr/ÍvD/?5!.ř¤‡gĽL弩a»pg÷(ňĚř“Ăę;)‹˘bod˝… ]Ä2Q'äç÷› ěÚţĆĘ:¨7¦ŻqGßCĺŕéÝawŹDjL¸ľÝwŐ`$Ţň~‚ßď‚ľĘl–Ŕá‚h0Uť™]Ó¬ľčŐ‚OÖ™ä<óqTčěÓč;Ś•.Č)¦xOŻUTóEş€u?Zepw¶Ë\žíÎsĐ:%oŹ‹”bVúÇöËőlą§mĚzz é— śâAĂđ­ˇ%ĺążc2Â'c -}/“Ŕ} -ÝŽü„e>-/·ß„UiúNµşó#fiß=ć0ĘŻG‡’"…< m:ëťqOÉRHÚ„©ňTů.Ň}8-ąÔjRĹ;>‹'˛eÓhI§Šˇ}ę5®ÄŻM*ČAQ3‚kg&*šŐΓągĎ<q7'][ľź+{µçŽ$Ç™[‚Ž)ölÜŢ€™üƇ» ~q@ż‘’x6c=w:ľé¦pÎrkzĽ‡ífA3s9‡wĺÎą_ O <*‹ Ăž:ńáײ°j g†­RýöÜŤüţÎkMöi6Ľüä±ä’ŇŘĐdĄŽO˝’đ.ŕ⣔+ĘW"]©Şí®Ü©2ŞŹ ™Őp¦Ząe‡,˝ ŕ1ł*Z¸eú"˛/9ŃäôůѱŢÔç \¦P:ĄÍ=źPdŃźŰó-ľ¤>DHB4™¦jgP;Ý´ť L©ĆDî@5:źQSľ4·~~>…͢­‰Hg”˙8Řúޢ -Ý˝tŁŇE“I1ó’#’Ô7¨âđ¨ßŰ—7«§ĘMÔ;4ĄkŕóÁůřĆIÜ=CśĐÝćĹąP¨ˇZF\ńśŁŚ\“Îj Ľ÷qýÓaU/†ŽW*eńý¬¤Şy˙ˇžŻ¤t^Vđă^›"ĐqŁQ]egšSđU´V,čşoîk\7ü6-…ţ¨oć‹BĹÎ7)'ic?T•ţ9ßÄî.J21$~FVzp—DMĘc$TŐ(ÍŞJ »¶ËbĂíî›­±vřiý1ú«´{÷,šŞřxŽjP¬Ó˝Ţţ‹uY$Ů\Töˇ~Ľ@ĎÖ˛K°łśś űrŽ3šůÓČâ@©ŞR EĹşíŤfßF°Bh ¨v…‰Žż4tű]ĘUᶫ‘Ć+ŰKěcwĆťçŤę‡ÉŁ‡2]#CbßśÎ|.tĐŃrWe|ę©,LÄÄ62Ż ?xů¨o˙Q°nśdáXíĹĐ6ăý çÎŮ—©‡ŐŁZú?‹đúö H[{Śg‡ů»9%‰ůÚYŁb?˛ľ[óŞŘ<)ë{7!aÉ´ŰD%–»)hĚť;= ă!ß(RßV·Rνj°j‚cBv¨ňý;&voR P Śh„sj`˙-#Đ“UşEÝX\JIE(6ţNEh4$źqÂÜg™eÇ°ŇŤţĄ.äőĚ“ÎľA¤ĺ6ŤE\!Ľ? F(Oôĺc·ŃÔ˙Šnn˛žŰÜév&ĆáL.™dŘ]ĂzôŇ ˘ÖÝÝ9MrŢBÖ]Ś9'žŕë RRĎćş7äFŻpl±qĽĚđFO>}‘Ž'T -FRPÜS]źfĺźŐ Ýhő®ß4Ö´áÎŹÝüBşőuGü+a"ńN /T lŮ-ůťS{ÔĎś;Z©Âď÷„Ä®\Â<ß: l+Ę -ČÇ3ćúm©Z±©‘–ljuĆľëŮÍ›Ą|\đ4Ú8=Ěöa*ďä’)žµ•ĚL @C–Ôn© µ ^« -77Ů®Ô@Ú‹ 3ö<*É€ X.R8˝‰Ţ˝QťHÔ/hąá ď´x´ĹJ(®đa/ä[ú h)yš¬ďűÂă ‘MĚÓۉ“3ouć+w[™eĹ2.Żż*Ôů”Ų‡‘ĺš>ěËÍWXîHU2ăj[¤©”©ąŤ·‰ ¶}#’µ‚ú±łě‘ĚVWDůęi_Ýş6©{¦›ËAnň T·Ç˘h9±Fë1ú…Šx®8’b/9KHK$”‘Ě)ÄJ®‹+!MŢť>ęCű.a•łÎż©đĘď¸>בc!ŁeÖ±KµŇ}Q\Ë9yĚŻvÚâ +Š yĚňć&F=ág$䆀ľ9•@?O˛šR?C>8.±Ô1ŕÎIý¸řÜ´Tz‘˛ß™ˇčH8Š˘MłĆšywňÚJg0zĐÎi]3Ř+ą¨Í˝ĎŔgSÄP`ţKű·$ŐĂ:ţ,{Vµů„ ˛ĺŞwŻR٤ńSĚ sO˘—tżŠ®dÁÓ«t1"'›y}·^€űŹ–° v7ŇPj;0ÂéT÷Ż“Ű6c–V¤łxÁćŮ„R2-ŤNž ÔACNŢâ÷‡¤ßp%ümôł­UňŔ# ţ&g‚”ŘHň·ź4DhŇž ŮÓPARXôDj8ň±BĚŔ¤ #Hć<ĂZëJZ-źę›4[).F‚I‡2eű˛±Ş±9+yX‡÷î¨Éší-OÍđ„9¬´łM'ŘÚÁ(fGŰF]ŻzŤŮf`lł[¶őʲîü.ÓcŮë@ËjZü…—18YalŮűážCÜőç<šq4îŃňQ_ź¶Ą/fÔý qŠ3áuá_ä?ĺÜí5ĽČŰ–k×öśąĘZă`ÓĐÂ_óX8Z§5ËĚ­r—$ďżµť~îAz8˛9,Ôóő.—ŚnôÇ,’á`ä#°X,‹5ň‹·)Šß°ún‡AIjłCÖćĘIýôÝ46Ĺ-ß_üekźtˇ» RŤb’=.(áŠŐtزľ'y.ŹľúăIŇU|ÚÂy†O=Ł¶Ňpóý€ľÔ"ďK@Ďg4Đá ŃE!V µ“w Ftć—&ŚĎ -¬C_a$č“Éf­Ěµ¤ 9¤J YdMj„:ËCnn˝°řaĽj.ct^él^x$úҵ›LČ"„L«L¶cÚűmv_˘7cmXňąč…Ť>q -TYđ6ĄňŘ…0ťv“°js´˘i4뮳E TĘö_’ť<`ĺ§ÚĆpęteĆmYťÄĘ:A76”aW÷´@ç)ş­w&٬ňŻ[ţţď|›`–i3éĘ=až.śË×]Řqř”tŐŘ%ŞC} hńM˝Um€ňÚ‹U®6„_4„µÚBé0 ŤĎ#…ŁKp $r'ém|ŕďR*bĹŽ/(ú ‘˝)ÖĚűEfyÎů{‰mgPç•ĎC:ł© ™Ěńę5n;˝śźĹY[ľŹR•2§‰Môŕ1˘ë5Tőb•¦@KyÜá áJ»¸ĘăiHč¨uwŠ´‰ő;<äú^K4[+†kcąÖü -ţMäĂ'Nc„­/ů“ŹďÇËQÍ(M°p_Ĺ2ič(̑§ŕš\’ÁŤ%°PůçľtŽżKÔĆśyŘ°uĄI5S‡tL GŃçÓ›ÔMä)n:ţđ‚8Ä s§âGa‘±śÁ8Ç«]KÉn¬ńg¦]ć§HyČť9 ĎJÖşĘDŐĂQĚ\z}e=âÓwd k1–¦].¶h,HĎęMµ4Al>Ą2+©‘57Ô” -Ś¬m¶}§¤^ĆBmOěżIRúqóyI¬ÔËą[k=UÎęË´źťu®×„Ł‹cD*3‹_[M[§Á©m¤¦ŘF(Žf 61ĄÂ§žů¦±H’ÚK}Šű]˛—Ŕ@R°’ŕöžöd3 +ĄS¸,[•„¨= ÉŔ˛¸•ş¤*KPtmĂ áÎČă -nęĹ?ĂÄv|/Ą Q'źž-•oh6‰ćW×24lžšĹßť µM€]ȱf¸>gK„{Ĺ’’č„«ôÂxĚőżwý‚ř3ýč"•ÚŠ)˛@§ĐK&Űń˛=ĚY¶¬–&C$^ŰŰ…ź&¸cUÖĚ\Ô ·ńbËwöąlŘ”śÓĘ"źĘ6W[?r{đ§®gAQşâ}0jśˇźˇ3w%C ŤĆż Ý>»ř€~Í‚˘qň%şÂŮá‰ë–&“ÍeIŇz·I‚ŹŞa@ýńýs,b!Ż Ď -i,r±…ó‹c¦Ť ă¦gńÔĎ(ŢSuęjtóµu†ßY‰Ib꣦r9ź~{÷¨t¬Ű^Š}ňŮóífČ›ĚÍŕpNÎÖuďő3 á-±pô &Ä_ąpřłÉčťNşg!HĂßiNťLJĚĄ!Ú»'ď!yĐU!ë*Îć&®Řř+A!B/«o9YjWáŔq'Ť$¶MĄúůő$Ď úPŠ4 QÓOŹś‡ęšäzű —eŇ”NÉ./j·ÍSÝä¨ ¨4ĄHhż`N9lćAÖ»{-ĺĵQcÉÁ ŤŇç\¨F"é›2u -U˘çe™™˝oÇÔˇ\Iź’§>Őüí'ĆLp-łöÉK0öyşÝé‰?ňŻ8##j6&R`ËŠţKĄ ´ -ŹŢ—p«Ą´Ý…% ÂËA7¸x÷˝Ö\µý•őUćZÍ–É’ł 5t8ľŁń‚|ßÇďL.ýx!… -žŐ“rś›CVPSĘ.š!‰iaąmźQ¤’€âJ˙4´^mř˙­gD~ :÷±äÜ%ę÷–iŠ0' -N“ňëůšş:'T—öeÍ+7ĂÍٸ pdž??Č^vßą@Â'8$•ńťË‚F×DaÇ`µ\$†÷“!eß–H :#ĂĂŢo“g `#ď'ÚQŁ|d¬Źn‚dĄjľŐo÷{uÚFłÝE@Ü˝řćßą´˙Şź>Ś"v2{ď´ q8Ż˝2Ű?Ăđż«Ş!¤xÉ%#3¬Ôb©s¦vů%ŮşĎo‡Ľ¦‹>Ş#$đ)cRbj-ś ŰČż!đ’ŁĄ%NĄJů×5A˛LTć×ĂÁLŰj6Ť$tÜ­ŢpŐ–ý"›×#»J…< ´XHśÉxA~˘ÔYÁm/“ąkŽÎę¶ŕę´w!ßÎNÝŻYQR]b5)éĎvSâĄeń‡Çż?Ć0"ňyíźî^(qncÜI” _2“¦äĺć¤nř-vdYqN­jjý†Ţ(ÎW¤ě†¤^fŚWä "R¨¤7ĺeÇ Ó»TtŕşP„—+ĆüREËrž\QmúlŔrc­éąŞ,_Ĺĺ´ŠZ5¦1óSUv6ŽÉ(2? -*v“ăóe¨´řc îóŹřMČ)Iú Mą‘⏲ńy6Š<.> Óúe3_n÷¨zŽ<6ÓĂ®¶u±ŚućZDë0šĂŤ#("5?a7FÝoRŃç|‡ě‘_Ę’÷Śłě٧2ËuűNŐ_ŮŻ©'ĘěIŚŕ‹Z ĐcoW´Ż÷„MîaCg `r—±Y™âą™‚ř ěŮŞź2V#w©fľÜgQvFU„TIřÖ“äÉÇg]ńӿ̂(Wî+Éßő~ŽżÎpg•FÁ˝B(‘yĐVŤLÔí żGëz©cDŁ5Ć›insOěG¬ŮR˙,?ń §;–ŕżş>ÝúÉ,ă‘“|ł~€˛rwd Ćr<=gC¶Ô |÷áŽ(‘r>f±4·¸#‘h—éuśb"nqę`™XezŞňŽaX+Ź‚÷cěAödJ‚&x«YwóäUÎ×qxĄžFö“ĺM.J¦ 3›ŽˇżHäŇÂÔÁĽ|’2Ş-zÖ Ĺą;­˝ÄYa}ĄŤT"ÇtťÇ­ó žąh‰Í’®·‹•‡čŇŕąVfĂ줠Vď°Ř䧶p×j ü ¨©F »ÍećdS¬6Ąuč0ý¬Úî€Ů©JµŠBĆCJ_m6z1Šäw€ĂS9Ç Ă±™L¸L”™XA+ÂiqjnAµ{”RŢGń´|˙ɱ‚á`űm˝ó˘ăŃ[˛Qc‚ßšC1ŕ•˙'ęµ -|ŃýĄŞµ‡Rż01÷R)¶Şvp`¬FÜ Óż§Ťkf‰©S6Ç#äńťÝ=M‘î‰a›E0|+)Ž%ń -w)®Çň~ü!DHş™tĐó—ďzţč\ědŰÖćčWúi5nŹáűvŤ˘˝G÷óŻxá˘Č‰sëÚ1ľHřĄďJ’‡ÔÉĆ„q”¤‘ŰH˝©Ś)‹™v76ŁµÂ™kŐiâ‘ć‹öŠłhâBŠ"Űúe]%Ŕđ0! D>zöĄ¸UżZLÝ×R:ţ€ŹŔĚĽŮĽ=5ám.?;d¤mJü‡0|śő#Eő&˙µOlĺ±&?|„Çm$•<–Ćú˝Č7XĹďŇs§b®vM? 1F-F2#l–3ŞßëtCgS›SŰkŻAsŢúMś›¸¤)č ËűxAÁđơWSúÚyM5v¬†p1iC{]ŔŽb—,ń)őC¸/ÍJËX'O%4pźw¨ ˇĘúžTq)‹ÚôwOŰcÍ<*Ç«j 6":ž(ŚoE“Á7›·ć{í+&˛ůqěWLqĂŁyđ¶g´iâÔćáŕ–ŐWöź—lÝ©NčUĎ5ŮYyŽq‚ÇGT>é%„»ĐLđňŕňűŢ,ß Z˛‹ŘĚiµbv'čVŮĎňŔSôîçÓŠ÷Ť Ó“ÜMmsÚ: ŹĽ‡¶ţ·ÂîT}j3lnĎ×ĎŇ–Ąv|šDĹ’zţ7hPk —Ż(Ą^<÷°×źq¶Bô\u<‘ťt„ š$×/¶I -ž˛ř±e›'żb_„ ;{?/–iŇźă®CĆĹęMđ•ÓÉ|5µL'ֳʭG6Cźb!xNŇ Zřú€50LĄÓę-wąK‚dů]&węLľBvVɦĂŔ^Âţ>Ľe¶˛—˝í4Uîßܨú&áÁ\=ď‹`‚ŁJähtt(×ň›A8ă;Ǧň“X—ĽÝhvĄŘ¸g j}=óĆVg–‚hŵńWUo|LđŁY–|):F)á)-A D97smtG೪|ţ"oܡ“čq¶7ý’EŇ"uXXÝzş˝lßâg##ŤÝ€×r–ţŤňeűĄ[źßŁćš>ž„]ź †VĎ/9»*^+±KŚ¤ĐĽËŔäŮć€ÂBű[âPó‘âzĺŕM¦ŔžäÖ¨8…‡OńWdw˘2ˇď[ůhf\ŠÂ -Ľč ?ă˝?0¸÷BŇ‹Íb¤Ă§>üćDŘß«°wRµ!Śűµ‹+ -˙QöŠş6HăőłG«Qß.m©&–©řěÁŰe8$lę&'§pńHtt ňýľ M×ňĹĽĽâĄ¶ űhŘyźBC -vYµ «cÝń.,ÁĄ2röt#=áč÷´@ů‚̱´Ľ˝éŠ7ŁBAL!ŰĄg2ö)źÜśřbI—Ľ/Ů.ÁŮ/žŕtž­0J—›N1Fąę°5]…ĎQlŻlcű<Ř©raŰ‚p٦vPĺk’;"’. -sŁ@ëlľZˇW(­Q—$ˇťAŐJ:ÁP' ¨‚IËńłI5·µ‚žĎhŰJ“cű·E6¬Ux,Î×÷’QD%†»*ĹX]GpĄÔŽ*…V0ŠĽqB apr°v·;ćńŰRş©ę¨¨Ž -öÍ’VΛńţÉ|Âw¨Ź”ź“žż†Ę_=9¨NBáÔ©ÜD¦ăôĽńŤd&ĺY„›$ž©¸4Đ’şµĎyűĂ®9*îžáff 8&‡’Üůx1Öfłű/Ůš$¤lO˘–M‡ 0mé'×měGîČqýŁŻ8]0®í'ľ¬ňßëý´k•w&IKŰ•Ľ@8ő;ŰŔ Ą#1Pa`T?zJŽŹ"wěçF#äăĎ‚ňÜަOőĎĹ5źů_6ۆi8’Űk<„6׺'ó­.¶ÇˇÎZGq3M†ß«H:HË€ŚóY®^±áťKt ›Ź•2B?=O4¶ś·JΦî~ˇŁą?X•+D¶<‡ ŰĎĹPIŮjeşčŤv -ĺ–[3j–ąµ«âÜsÂ'`őC; şSĺq秫"2ĽŹaNpKCi¶LŤMAA/zcÔBĂ›ÂŰxDőŰŢ!¦ů -†‚}°î'˘—6Ó+éB7 -ŃFýbü©yź"¶˛Řą×¦Ť ä‡%ý§X*v3š6ÔÍHż­ďëh>ůßÎ=\ęgŹq Ljyűz᱿âëçxÂ\ÚLb˛GąÄ˘>{Ŕ}M/¶c4*…‰ăŚÎ­eŚö€'PŽÇ§ćH*UĆËgz1a l|RĎ)ďs9Aë[^gMp MB>şSX&Ą“Qgř~Iâč9Ę÷[×Oďŕ“_ÇÜa†¨ ›pŐž -ż?Ś#¤]5ŽO@„XŚĽPĚ,oĽ›ÁbÍĘ%Íz„42ޕ̉uT˙w - &ČS1ŕçş´ţ]µ3ůpvo(¨"ö&]»Oo©jŁ`Ş-^đŘCŤ[°\PR_¤ďK€y»…ă} ¦äŞO,§Űszž,äóÜ™ťç>—ŕľĘôî&Ü/´2µÁ&26öod”G2¨0ĎîĄÜµ|Ő¤=3žúŘÇeTôw˘Ă8­¨ÁŞ ĘŁśÄÁGŮ-?PN’H–¬:G¤SŽńÂ;3y={ -î‘şő?ZYx3ęăĺű‚ wůÉ=GA›¨c…ßš™˝Ó‘ŁQ0Ý|XěRnvń^rAĐčh)?7$L'ŻWͶĎ|µÜĽňˇíť$R®ÂĂÍ4ÄĆĐÍbýěRFDŻ¶tó -ÚÍcEąY56čŢůĚôř]ţ?‘+NśĹ‘ě‹čšçČQd·\‚(_9Ž†sl6ýDß!‹Đ9­)Í%űđŇ|űŃó,ą||f5iAÄXg…Ńk6ŇĚW$ç¶QY‘üM‘M¦7 ŮrS‚Głď°vÍ:92źŕDÁąď|@őĐ÷˝Ëë'Oí"7s’ü8”şKŠü©ó9”ŕX…qÜůžď;“ŢHH­µ`ţaŁIî„. M3BÎU<®oĐ⢬ĄŠń9™Ö-ŚV©xuf„±«GS^#®Ľ­µ‚ť~ošĺń鉞Pąä}qcz—ť\îŔúwáňxíG>Q–Żą‘ŤŹH›%ß$ąĐĄ*âÚó•=꬜qäšqµż|öý©L#çovĹićŔ]bĎ|ťŞŮ=ŠÖ[}§…| ˝ě`ÔŞMŻ¸őą auéluţBŠ {.şć˛ÁňŃ+ŹąáŰi•[ý 8‡9“&nikŕă¸=9u€Ś(˝Źö5M¸úŃé.´źYŁ…hĚ°Đčń:w–Ď@ü~x<Ł@żť‰Ě- óűŚŤM}ž[“©¶%Ě‚vÁt*)•awׯ"kÚ–´1GĚŔś©J1őňşÁ%™¦ KgĘýEH}¸ŮJnš•Ź\lÓďşçzďjäŕ?sxÎŽž3ćĂť¸kŢ)°ZˇŤr\>‘¦V:¶ŚX"ţ Źę,Šř^lGíq°…řç×Ű5—ŘA„<®)ę÷Ĺü°F-h|¦^7Ąz„Ŕ^YŹ˝'Q1’ăMMţ÷bPQçč ŐjŻŠBnVsĊŚ·Ľ§ŘZŽ=ٶ¶Ĺ„Á3Hť9Ő:ż_ľeëř)Š6úČů 8™ŃY^Ćśťď:霬YIrV—†UZ‘l)ÍÂůáPáî=QŻĂeŹěµZžöWą†‘/€Ř&uó2äy™¸bS?ÔGR@ĺ«Ě;‡ëë 3Đż˙¶pVn⥨čA˝Śrn>m(Ěčmˇźż9/Á=Ĺ"íE‚«Ĺ€IzÖ›ĄMÉ?@j’uŘĘQ“Riüđß ŁHŮĐĎ*„âu~K—#ĆôxcëY–¨Ţ!Ůů>A2K|}&=ĽŇzé0˙­¤Xż8nLbćťnd}«Ěú 4 őűř>ö´}VҶ*ÚТsŐžözŽţ>;$ťůxNńĆ“ŇŚaŽ?YüčÁÝxa&'4šÁôŃačȸΞKý}_4ľÄGa§J3föű81ynáţˇÓ†Ť &ëwX?­¬…ĺȢ¦´Ą&_čźB­şTą.Ď&\j(uZż(>ě~mź™-ľM!<»č7Ž˛­+§ őšŽ\Yęr‡îVbV;Ěţť…Ů€RqChĽŰŤw–ç]{PŕţŐ¶€ź0Ś`á˙ž©â0O¨ŞV >Ü*˛Ó„űw”HíËyĐbĄÉ^Ď(6t¬iŚÇCŘŕ4Ł"čĽ`:˙xJ3Ô -űHĹő\pńqďŠ@’ts¤ß‡»CP¸[Čŕkąjs2ëQ7öüI -nŁ|‹őűţ­$‡Čf,ZŤócŃzŇ8}zw;yäˇĚe@Ů[X‰Ę)şľµx&rë†j­;ć˝ě|:ejwJ¤9q§[$jÂö„7ÓţZĹĺá:YÇtş’y˘`*1;.´rţĂ9‚ŘT©‡Ň7*Áč÷µř đ Ü`![›Ę§·Äéd›ÁŘéů Ůhňunăű4C -ŇđÂ#ë=8˝7%Ą”ßańľŰupě,@÷×ćťéű¨«`!]řµ1‘ÍŘ;,Ys¬µYܢ–ŁÇaţČ8Í8ŐUŮBňŽÉ Äs†?¦#+÷ţDżU[(­Vô(gymúU÷ŠűY¶dÂř=ďM{DQŔς ‡1?c#yA1™{ćG“úă˛LyćłůÝR“mÝŔźß*5zš8˝Nę))‹!©i !Śˇ:#$‡‹‹‘sF¶ŚO€Ć|öĐÖZĘď -×>˛j¬&!Í«DÜ0éłA7eMŐšśpí¶ŽúçĚśeË|î¸Ę¬űîrr‚×FĽ…]Ś ë¬ăG˘úěq÷ipđE°óľÖK˙eü¶“ríb ľÉĚmŻwö"ÎĺčÖô~» Â…îž)n8T/:J¨vČ›kÍWáq¤˘ëűagЧö‡Ľ«ňwđFą'ýWuŔçhS%ťPŁŘF\ÖšeřČąORŽDĹ"ŞP7Ż}C‹ľBzáśÇµ:漒,‘?¤zĄWRîd¶ö6Ę–ĺí÷ť»Ë$ nŽ^~-ȆO2¨˛3hi+d¦"¨\óýs´ËP§ŔX©Îf$ľŰZ4L®xŻ“mę—ů­ŐEĚ4/ÉýiŠSřŇré9‡ąRůš -‚Ôě E4şĐiĆ - FĽŃ~9CXĂŻ/×ÂVâźŕó0QnIĐL™ Đ.«7a• ľc®¨Snfç‡w|ÂÔ·‡ďcs‡ânî|Ď<đŰ˝O’ ť2q¶¶Ŕ0úĆřFŞ­ \;s.‹Ů_:Ţ­’«őŐ’Ľ_0ćn ›V$+LĂů‘H“čpđj¬/űł÷¤â@ ÷ťŰv4‹ýÎÂצăŢ.bň'ŁÇŹ,ę&ţ<ŠĄ»Í‰–•†Ď"<Ă[2IÎ âO÷[´G·hµęµmsŻ(řęě‘Ęň%6iú=óŽ w+vC:·úú´'ű•ĆZ]ůě(Źô*=ŰŻM~MęÍmżí¨kü¤ ±hxR†U„ÝíçüúˇKHJŕpÜ oyzÁ°• )$7śęˆűĎ`Ľ3ŞiŮq3ý›ŕp?AÍŃ~¸źKićCÝÁKE­´|ŞqŃŠ˘84l©{7Is±ZWÖPł8Ó]*xÁ T‡‹Řk"bŠ»ÝáČ×›®Ő˝ůĽ’ŢuÂŤެ›$ÓÇYŽ’\N^‡85Ú8"­-Áuë2¤Ç;!Ťč‚+îíŻîĆ˝sd•a0h,îŕěLŚ¤Đgę…ŮVśňňmď ‚ř„ĺ:©ĽóÚ…‡fw6“ž{?-S]Ú/ ÝD$ťŮ§g2~4úĎż•Ô!t±:˝¨=[Ź&„GôOÓŕvŔ[ד8ó†)ÂĺÁ>E;ĚŕÔ\Ř ôŘś¨gŇýîT:W·(!Ą•ř`Ň"” ü3˛˛ĂŹŢ!•BM_äý&'ĺvîň‰¶7ŞŞě°…U}ťę˛ęäę"€Ž Őb)ľf[ćHŢ^©Ë±¨m×s­!7ßfsżŰÎŃYiť…îŐިóßÁPjÇň÷ŕ9}úu5_ił•ů|ĘĘI„w9ĘG8é”ůeň{ňĂB&Š9ŤĂ#žć;=”´ęW§ÓţŤ#ŞŇNd/L•řiÉůŹB -¨áȦĐö -xńUř':EüFJMµ”±Z!żnĐBť;"Ěý©RÂ4Z4ç'ÓX»‘–ź†ɦ‰FaÄ:E@Î(¬Ăp"ăwţą®2ăĂĄşBŮŘ‘Yů÷IYŻźŠ\eŤĹ{rŮ#Q\żÝ˘µD}HÉőmłŤłçT1Łä r:ż@f›<µž/sŻe´Uíč -Đ‚ŘčqĆBâQŮ– K ŽčZ×(®t=z #Uě;–sX/ŠÓaęÝÂ7Ž— A|ößoG»ńůl{đ eK]A=a@¨@ůÎÝł“Ć .ű”K z”qř°óÉĽŕ#’IŚfëŽő`É;šĹ|e'[ LUZ"‚E_ż4âäë -Żw,ă×tSF(¨(ťÔ‘P~Y­Y“ŃÁcŔ‚Rî83śeÄČ–nĺ˘Ô I.lŐŘ‚Făis„±}¤ľTK@OĘ®/Ä cĄĄ˛ŚÝÄűęNĂ€ĐăŰó÷÷ ĎdŹ&§EŐÁ˘ĚdŽ%Ţ^Çđ ‘tőWĂ)††tPۡ2…łvţŢżM#ŤŮ>şÚŠ˛™$K˘nńŕx” –¬ w˛`ŔđÝźŚŚ€ń×7_Î@źF…Iu7S›§Ľ¶&âZ?Ň<€őĘíč<şôŘĎUA›ńł˛Sźk]._/sĆ«m› Fx×)Çáž©=©ÔĂ:ľky;đ|űĘb3É©0”ăɡů3ŻŁZKźÝ9aof9;ň##ů<ą×uńg"Y(±€áˇĽľ]1”"Ć ăŁ©Úns— †î•[t´ -&×®¨Á!3ÁQ'•‚Ȧ{ĹĂ×cżX©]dvĎű~:z5ŚO[ć®Nć«ŰÍţ,_Ť Sć`FékÓő)îîŃ(UdbŁüyń3źf_ů÷Beď}8íµęxQă{R[č0F‰:Ö0_vŃß7$äŃą-‰}-oQE]N™*Vźl•>3e¶p©7ˇ>”kI›/Żü&ˇF$`Ź›éoYřHPŚĹ§Ęět5aóĂ( .mĹ€9«MđX߲>ĐÝůěŽň> ˇűAćT˛qLPř•l/śoťżćkśŔţŔ,żwÂ1é¦ÔŤËr‡ŔµP ~ĽnCB2Ś*27 ‘ŁÇÇ„S±Ůu-…*Šź>ÉĚ^7˘âvƬ¬Äô˛ßÍ5o/ç[k(” wű”?úrđM&%ëëÁtPŞżüú`ËqÁW›Ä+ÍS{&y$… ~M§aůŁŃb'§1Şb]ŠS̵zUÎFa"ţť'Űş$¶©©¦+OĆ’5äńˇőt=^·IľĚńćy™íšN.b aÖ2CŞÝŻi˙ŔKýFa /ßcśăBä!n–$ŁLŠaß—ßÖ„éé­Čw<ňMvŻŰ&ťkp?S(‚ńÚ•·˛ŻžFܦ-ypŻ~2K"•sőŞâ‰"Ď#zL9ęuXŘ9mZX`‚ł¦LßôHź+ÜĄ¬Ľiŕ+şxřű`Ř)88$}voÜrN]ĺůÖíB$-‰›+9W•m.’¶RJ0˛Ęź)—Ć<˘ źYMD Ť˙1óB/3Jód‚e~÷§{ěÍ>,%^ŮüZY1ňgdX´Đ‹pšű´Hš±Ň]™ć¸¬—°?Âgá743u–ňRoŠ·Ŕuüä߼ť+<đŕ!ŤT‹q2ÎŰ“§=íF‡ ޵|ŢMtž™‰ŘGKOOŘ…Őd„šN‘ëŇeĽĆ\ÖŐ4e#]l}N†Ěbăç*éʸžTRé_ä/±.xr…{i+ÁăŞCÉPˇ|÷á=ßcŮv lGFxÄ·.śšJ°´¨Hé"iÍ„ÂňĄ»@=źŰÉ;rÔÓěß7 J?›5qvňÉČAyΚ´•”-t»­şÍ«É(R`WÂŤh˘/*!9Ö2릶u…Ľ»Z ÇăŇęěĐ“h^Ä‘Öű×TŞ,Qę1Psü>nÝYŠŠ´ę ™Ą ‰y`µď@$Ywl8ű -+Łn*Z|e. qŘgßźTĐ“üô˙ÍŐ~úźM»§Š>ÜŔĘ;ëX ěGˇ -endstream -endobj 813 0 obj << +/Length1 2073 +/Length2 15947 +/Length3 0 +/Length 17239 +/Filter /FlateDecode +>> +stream +xÚ´»uTÚ¶= wwhp)nE +ĹÝÝ=8ÁÝÝÝ))îZÜÝÝ˝ĹÝ]~ôÜ÷î9÷ľďßo0 ™k.™{íµw’‘‰Ľ˝€±Ť!PÔäHĎĚŔÄ –Q´±61łĐK8X™XŘŕ)(„ěŽć6 aG 7ೣ@ÎČń=ÔŔÂÄÄO‚€öď¤1ŔĐ t4Pvł2¨ ţň6Žô†ď4djŇĽ‡Ůغٛ›š9ţÉÁJO˙'ÓźhA€¤‘ĄŤ‹Ą9Ŕd daČÚ¸ĽÍÔ6 €!ĐĚŔĘ`cPŞT”D•bŠr*ňJ4 ślmmě˙G‹’˛Š@X@VYTĄ©()˙ů« ˝ë7ĄČ*żóęĽ;ţ —QPÖafüł3Ŕhď`ţ§ěiŁ|Wř[Ú{¨‰˝Ťő_ÔfŽŽ¶ÜŚŚ... ¦NŽ 6ö¦ ¶VéS63w¸ŘŘ[ŢíVŔżă2~o§Łđ_ ţl +@ÚÜrţ µůiýŢĘ÷ w»ăż…˝7ÂńON«ą€Ŕ˙(cfŕđW¬´ĽĽ4ŔÚŔä€ŚŢ ťúŮŢĆT˙9ŮŰ˙©!óż”ýżËüŻtA›÷•i[yx¸ü÷Ž€śÜ˙Ń›˙\¶‘ ČÁÜÁŃá_s+ŕőöĚô—MF@VBTDI™^ú}đ@ô26ďÝ18ş:ţĺý'ź€°47€“‰ŔĚĹ`zR±Ťµő»jř?í6ď“ŁŤ˝ă˙™kKŤ Čă˙ÚMĚAĆ&:oěd˨2·sJ˙Ź÷» ţo›)ĐŔÚ€®FfŚĘý5-ĚĚĚďmđň°µ±X9˝ĚM€ďđÎ@€Ł˝ĐËăźÄ"xćĎcs#Ç÷A?,đe—™Ř¸ţe~WňżÔ˙Śő_•ćý”Ű€¬ÜĆ@xFYÇ÷ ţ˙çśýW-Q'++Yk ő·ôżý ¬Í­ÜţÓóż\Ô€ÄRËÚŘ[Xýgî jî +4–7w42űWg˙e˙W-©@ĎĚĆŔÄĘÁň/Fĺϱ˛zźß÷;ČüĎöÎf˙/î}4Ť,A@Ű_đ˝˙%ü}ţČ0JČHKČ}ú?łó—›ČČĆŘd +`açŘ۸Á3˝ ;;Ŕů}¶Ť®M €‘dăř°urôŘŘĂ˙ŮUŁŕÓżĐgŁĐżŃ»jF©ż'€Qöß“ Ŕ(˙7b0*ţq˝g1řqŤţŤŢ—Ëhô~fţć™™ŢS˙2˙†ď‹bük{ţ¶Ľ×2±q˛˙GÄ{Nłż+Ľ«6sł5‚ţáńn3˙|Ojńř®×ňđ}ˇV˙€ďú­˙†Ěďj˙ÎĚöNÚ€€˙ ßµüCó{a‡żĄż“ć®˙ ß…üceď©]lţ¦YŢ[áöw­w]î@űń˙9+ňîĚż®¦ż‡ç^LţÂJŽö6–@5să÷ҸČ8Ú›»j1˝źećwűűĎ˙>ÓůŹ_C˙´qő g{ď= '€™•ťó}I,ě^˙kôŻ{ýŻ{ä}Ę˙˙ąT@ +Đ~iŢĆ'Đ"ĺgp±·ČŹÉ( +.†ă2l>uÉ8ČĄôÉV\áě_¤ŔŻy~Ťľß(ól¤ĹąuĽ“ü@ęXVŻëM‰ĺ×Ć +üż ĽeĽ EF˛TTüżÉ,ú–´“ŇHfĺj˛MkŽk&¨Ś +qµv§.~óŔ=ŞDźŠ©@V^č#Źg ŢÍwEŻłwľmÄa3QxČZÔ˛/÷FOlĆ•üĚČ»Ř BJî…9Śů¨I-ź˘Ô‘Gf&b¶0U9 %5G;_jÜpűˇ×[¤ŮłćížoS@é»rúđ«Řyč¦Ččm‰U +˛îWĘĽ=?ŁçĽo%ć‡çÎD­ľ“Jm&dÝA»ě0«ksâđŢ(‡N‹Ű/3UĺŘŰŮgÎ*éDÄĐĘi®÷Tşw›_®žw Ś)‡:+Ń’ŰäĄ é#´ MűĽJv¤ŕă—‡l‚ańK'ĆG #ő@ň1íńšúeś°{G–Li‡ń ĆŇ`•UµçIÇOě3ž¬.q …oŹi.ýuŠ¬ż> JŽ—FśvőýŞśŁTăŇcł{śí.DAaîţö´ĹJ_9`_pżÉ猀˘Ă]#ÉľĹíWÜŠ™…Xyéx"AiÍ­i"S : ˝Ŕ­ÇłŞűĘk \©żĹl=IÁ~r…ţ} PůhÄ1űĐV‰.p»ĎĄ»Óyń­î”éEŇwe{ăűiů¨źĺ—ŔW.#˙ Ľu_ř şć +ľÔ%Ôcç<ÉĆĘů&űĆĚŘ7Ĺ—ržRĽň>TeRˇK0VÚÜ2¬a¸ §~˛+ŻŇŹşôf Żżöá!®&})(?&]úí ł˙t» @–Zť jŤeI6{ŽţÁ[†´¶˛ĺšćcŤ’óÍS%;‘i4tYQ2 ŮĹ@g‰Öá(:ěÔ—ÉŕƶӑXCDÇńĘ36ËCőČQśë„MĎTď…4˝–Ąř‹ě.XżV¸ÁÂç÷s@}$×ٵęKC"«Ď‚%=qíÓ¨/±Q©¸y±? Ó‡AžľĎXT”ΧÓWE#Ń}Âß8ŮŤ¦*r˝čéć…1«Đ~HşĘV3l3ËY:Ůt¨iŽb‰wP6®s‹,Grů;T>ôä+ÂnZáČg3‹ÔHOŞ +ηĂ,5}ϵhvÇBč4„çhčLÖkÁCâ’¸#—®~¬xŹ•V&8>€aťŮztÝ—ĐcB—Ť‡ŕ@1G{¨Ď?i8 ¦W2Ĺ`ę¶Wă÷» ‰m¨v8$1 ”~8ăE˙,@şępĄ¦R¬ˇćňń(¸ať©H>ĂŚ6¶ü2Ř“ĎÄŞHm‡^{ |˛!ŻŃŃ"Xňraó ÉÎż)\™ěôҦxsü!Ü”ä"wßj*MN@_ťÖJ>ĺXľ«íY É%5ËoŇŹöÍF:ü5KđZĎ” é•ÝăÖŢît’PŁPŤ«ĎŐJ«<y#Żń*±EŽ±ňÖ uu»ŔŠg·SŹÚ<Ďć„ 3^ń->łň§ňoŹ<ŇÖDÇIžˇŻ'úCčKmŕă qîË(¦ó´~«>4ň6í™NÓ9Öż^V)¸:śÄ¤2ŇxšĎW3Ąž·$0j>™‰ż>Ŕ¸!ěŐÜč +QPśúÚ'Áë’Sk{ůď`“k¶äĆ/r«y¸Ü”§j;TişÍ šŕ§Î"ąMŁ—\ő%F|u×µj­qÄ9&íáM&nâ§ĚáŁSä>Kób§7çP†ŻLn N`I¤VOÍBŐď4,Ă«Jü‘?¨¤ÓĚ<@?Ąž#ńŔúmĎŕŕóĎÄKs¸éRo¶ź#đă°§ Ł Üë¶Ö Ćféspć’l^íĐ®ÄD^LOŻÚÉ3\ľ>ÝŽ@·3ˇš8ťÂ:sL;^ňŹ"?É ńC;đ‰ÖĄ8ŢSń覎ÔE~đ®Ć8öë`¦*€gťAăôÂv÷KE ôFóřj©kÔ±‰}ŚF*ĆkŐwbE˝‘FÍi˱ęÔÍtalł,UÓ €:MÂdŰšŹ¦čą[Čb+D{o"_Sßp§±®Ś{@>CâĺUR§&!înčżÇ+ůőÄ\f„{ËŻE8ĎEŕĐô7fËŇüe`'¦Ô1RýͲ„ÖŕdWÚČžÍ}óQćnp,ăDî@Ťé!zFK:­™Ř">ěAU¤ś!łř1˘ŻFY ťŹÉž)!„0ät?>r··& EĆbYv0ZWČöËřłµ×µ¬Ť-e&0¨\ËźůşďŁĺźčäÉ‹Ű3ý°%§ ň\Żá)ř0”C®Iů]Â÷ý<ĺۨh'ýüĚl¨â‰”븇ě5üV~†Ç#ŚřÇ­ČÓŮ!îŤ/´ü ĽMuă8 +ů±Ě”/ľmT®tä'j$nŻ†¸›±‚ŚŽ/ĘĹjksjCăę&ąŐ˘Ĺ?b\űpí¬E“¤pűĺźR5‘"†mD:ÚmDnv~ MůśÖ4×Qs$††Pb|ať“>™;7ŚLJĆ/GîMqUxswűůäş flĘçYă,c–Ň’jj.ö>ÁĽRŇ;•Ŕq;śţ¦®"•ŐĆęŮ®nhÂrK<\6ŤÜýH˙ô‚yé u<‚i˛±>w»„Ţ +¦•Ć ¶ŐcĘ“â›ý×$K-LoO$‹˛Óů훏ÇCě‚ń|ś¶{˝.Ëż×ăNýř”\é`Ç—˛ű6cdÖłAĚȢ=iĄĹFe)D‹&z,be LůŘřČ÷jöľ­ŚÍRî…ŢtŃ®†30?ĹܡX%VŰ9¨lF5•"ëňbLişÁťŁ:¶őĚ ¸Ëo J— ‹{H)“ &ËđˇM{+’ó„|知>~|jŔŤ„1ąľAĚV!¨a1§aČčrqIu{üěD!?R$’&láÔ}KO=n9yúUŤăŽh–äp4›#c~.ńŚ‘Ć]őšÂŢŹŃË}¨OiuŠÄµôaâ?ösĄS­řŰ6lHﻧyĺ/IĽ WŽh8ź˝aĆS*–ńřßő´®•ímĘYn +:Ążd3Ţđ»=ČŹ×L€řO']G\úâăOčŠ(Üć·%¸sĎ„X5ż’˛ř0oI2ć¦đ‚ •¸˘‰Â´ĺ+uë•łúSŻ2Ząlf¦ŻŢ´CöGťîç™užÉlsÁę,~ °ţ©ëâĨ5$ĺZFßoëă—áP˛÷ ÝŻ^.s>ĆéËnSÇęóÔ2;’©68ž¬;ČYöÚĹŮ~Ćh Yť)HF{w€-¬Ě=řh +ŢΗnČîRŕ8ÎůöÓϡv-Şôő-ź=M‡i5˛>JesµÔ¸]R¤…ŃýVą˘A}őÓNgjźčO.g$7ü`r‰HXl=kkďÝVWs”ó¦új +J7°3íÖ(âË^˘żK}UFSŠ/Ž?Yz; gĶ·ń-Ţ­ŇGöçĽl:tçmYi]ůŹšÄvŞżżEĽ‚nű_ü«‹O‰cĹd°Đµ°'βF[Ô˛g–Kŕ»'%#WůKôőÖ +hYtÖVÔq®âS oŹçYâŘŻ•9,”Fş˛´ť}٧ ĐöČëăłË‡¤Đl +޵ULěĂ;@!¤>A +j _Ţ4|Ë€á(=ô­—,ŇÜ°ŠMPIZ2TÍg7 <^#,őé’Č-Ś‘“)ZkGlh}¦*,©CQ2„ĆÚďb©±Ó~rgôĺp[ť>ű˝-`®=F>ě;× Á4PóřSN~"8 fŃ۲k0¤"Ťňšě‡]O{Ý I§0a­Đ†·ĘâëŇmĐÍ +ş]ň¦ńąxţ˛úđcÔ|Ŕ’°şxŃk°źERßaץĺa“A!ąˇFłě,Á™e˙w€ńŐsg¨ŇŘDž®KIĚ˝†Ő·©&´—&]õRË$ą൑ ­H!ńD;ŃÜäĐj˙a:ŐóAô“#EŢC®…ŻÔô'˙ßôX÷d çHÓWoÚ2–Nś&Yóú=-żĐMkâeiřĚE—iꥧŹYoq‡9ž—Y^:SŞăäłĂőă:¤2-ú„~Rz¨Ééď~LÂ`†’SGm°ý¬ČOő„ óë¨I»)qŕ†°PP&…!©†Đ_f˛ AUź«rĹbÇ0Ç°Bű q-Ď™»ňŇś„˛îqőł`) í%üóŮrř— Őňď7«b)äç ¶ XŮ–Úĺ»úéŹV/jÝÓšWbࡽ „ÍÁ͢äÜf(±Žůi¤š˛ú›8ÁlÇţ„éĎ×~n·)\•ÜOŢ©çÇŤ(@ކ˘F’V¶_>í#‹»yő{38¸®5EóżÓKn×t­LFëqeN)Äš©3 &˘LĄŔE5Ł`,2ž™Éřč%2‚ŔÓ~5×ęÎĆżMFŤŘ‚Q&č•Ćś’ż—ĂtJŁ +>~¶g*Ĺ본¤'łý$lfÁŻUÇŠ8íËQ5J+H‡^ĽEłl€pÁHp*BoŁü`4ÇbÂl ČĽ¦~Z!ţ~14QéË^6ËÍ‘ÁĎČG÷}U űőŠ†”ą żú#Ć%t <„`ĺ†ŃžÓĽ°ĘL|o­î»űZ)§¦0Ëźr&±î b.‰w9e‡ŻĄlů¨DÚŇ>»Ć.ăéŔßWżňČ%“ÇFSW aşAľ Ũ&“>Ţ—B“Jhřć–OŽĂxT­îKëĘ›‘ORA›ÖóMi˘BĽEůVGnÜŔŮŤűą4LĐŤ/ŞŞýÜjÓr DŐ=§ÍĘ*zJş·ČUj›ÜQ\÷wR¦Ů8¸óňŃ xwăA–1ţŇ;łm{ľéfS†‘NÔëO;\:ŞkĘqÍÁťůĄźe:ŔZůŠ}íS>žt  ý@\W©ż•´×‰•†äUýÚaÁ5]źjŠ0bŞâÖJÂá,’4ěšnĂŻ€jÁ„·VĹ\ÖąĘö×đŁ÷7›Z†ŞąMIĐŐ¤vŘáÓ°ĹAü-%·„Ó˛ŹÔ'­ «Ú"xÉžű8y źV•ŤÝ]1_¦Ó0]&a\¤úfť“ź + h4€Z.Íă“X*0%‹ÚÉ«Ô0V×˝ůD;±eŔ…řş,ĄŠU'e'$ü'Ü(Ëć/’·"dW>86,ŞżR§éű.&`‚ůLQ>¬*ĆůM-Ł|‹ŢI?ŰOąt€™ˇ!Ü4\ŹffAgžT;ćüĺGP¨čD­ą?ÝĹŕľ0Ń€ěúĽz©w +ëfëwF©EýímöD]{ +fnŇn&…ŘÝhnŢóDjéß·Ź »žM€i|f0Ko†Uv¦]xhs;ÎĆi ËKéł_ď¤ÄŽjˇzD"4¬%0´4ĘŠhŔÇé·VąV8ˇ5…+¨€ë™®Ńˇ„I§vąňV)őr^·¨˝˘!$;ÁË|ź$‹xšŠ“3–Ľśýd}cŐ/''96Ýä®ôě?N¤”/ęâoPÍ“*dÜřú‘\z!yţäţ /@uĂ4nŹň.őL“¶mw”Š•ďŚUl‚RÇÄ`—“YIbÖa ć„ŞČ«úÇĎ~eŻsŠş•ĆŞwł®QÍőűÁ’JnŞ€[ÁM[Ź+•ÇôĹĆ»ÉęץÁw&#©ĐČíËÉ­JŞÜ@ňŢýÜÄ%2çHżĹD5o$AYŠJHÂ+4Jť‰ÔŢß_ć~ĺyąÇN# +ÍOWďŔjä^ţ5Nş:=CidŇ‚–Ç‹,P†Â1ţ",~69l&QR~4úËę‹­‚´C$>‚Čů +2Sä +€úúŕĺŞ?„í¬¨vVQńŐXvŔś>·ĺ`OGÍŻ\Ú é &tĐöňLçč® &3ăpŠ2߼)*ďţpĂ}¦»„G×(Gľ ,á-ÇŰ}Ys[Ú·ôlĄ—Ěîi2ôČétldó×™ÜĐMâOq*“Yłí“¶öń;}‡ĎÇ-[úsŕ\çv/ĺs*¦JˇéŕLŽÂźś­OŮî†č HĂŘą|CővΠd4w8Ůb”ĚgžăOš9sSčmv dÎx‰ˇö°¬7L|k&¨‚Żť¦_™§jâÄ#=ëľ“†ţJ(0Âř4€Î?~ł;LOt=3ćřŁ§·“?îtp-ďĆűĹ‹ŘiŹżë\›z 2§WÝ\o®ÍrŢĆäęUľ~óţo™Ů´MŢpŘŠ©BŰ)”§ćÇCeńh"ő&@Y…5¬"I™")®FdQ†2 Ń#,Ő¶^!W"ý„±RR‰—U¸“ňA]wxVFÓ¸@/w‚ó=ATWć‰ěa7­Ő–,F‡j˝˝éď«–B~Ó2÷T·fµl,ŃŻgęP†ů>Čr:5ÄĽ®Oąm“Đf@§Ôáae×4bŽLśçÎ:¤ć=CŞžěŹôEů*V÷Í‘3ěŞ=Ĺ~)Ě Č†ÖŰinc¨0· ÁѢ¬(ËnWdÄ}5‚auÄýňVőĚ€#ÖˇÂôłÓiÎş +/~tŢ,\ěD¸ÝÍóDP®zOß«ĚÓ*—d•ĐďLćLę ę15~-qRůÓĘľDö°OÓŮJ©¸Iăc¬HŃ^_¤ÇUőtłIH/ µá,×\­Eă¦\^líBŤVy—ÉřôßJŘĆ.vÖU°ú +™,E×˙l›S‚Vzę*+2ť+Gc©l]lZRĚľK•`ܢçĺorö–YŻëšĆĘ?ÔMă@[ĚŰ…Đd}üA°en'±Đ<>!ě·j0^ęčś»ů! SĆŐĹźŁŽŰëůć # [%ł"g±Ş¬óç#uőŃwÚÜM…¨#ő]‹Ż˘ěD(¦Ó剔€gP™ĺ&–iö'çš»0R¦ł¤‰(Łě:÷(ŽT=ź‘ëÝ:´´"Ye‚`pŘ/+âĘ&˝Ćö§0sýae ?ů[@đO>Î@vűANz$<\Ňu:ĂŻüťéóX0Ő¦ {päŢ( ˝ťŃmźAOΉ޺ĄšQXŇ ?»ŘpO”jF÷kđ8űęl3B†×ax5ÜGRÍśq +>ŞďÉŔ±i5ŰÄý®Ž@-…·hżPăŽĹb´;' lô öÍjݨI/|? źÍŕľ&|u˛kÂ"4Sý ° Ľ'snÖ“·Fe—ĆŚ]XîłW“ĹtĽň=#އś#=ő/×nă?ă_!úve¤čEú§nŽ¤ß·HÜ8clćĹşŇ`Éç˛řŕĚĎŚ oe VoOHĐÝ°˝WEe@ăÄ”-…yŽkCfµŃK’Ě:s9nő•« ĎĽU`?đ›ž8;bšÝ§§«ĎßâB\{ÔŠF|4şj’)†\Ý#UbŢžľC¦  öö(`®ďÂś–*•JŢ€…Ç5çĆf®‹,U©Ř'‡Ó($•wÄÍá6âyÇ2=ń"R q¶{Oá‡Bj–DŮńŽrńeĚ\"^–}˘ _hP‚d §Ö·oH‡§®mţl}¶xSŘě’bz´FfôűNc#AÇßíÄÂ'¶µÂČ2dĄŰ6Ďj§ľŤěF™âç\Jť3*J¸+­)Ĺ^傉܉”íŘZwĐ Ó>Nĺá@ŠŇ§łT†ď0ooř+˘Ćż$pÓI ÷ë*şů<â~Ů´rzřľ±8‘śsK".Ëď—ŽĽĂ¤B$V›śkIý‡ĺZFü® †(ńh§–›”‰ß×”¨sÉ]Kř!QóPńőůýc uwĂî—6źź‹6˘…ü‰]%á¤ÝxwńŘ-­*ťĎѢ ÍĽJf$•ű!7óřqq[w¦IÍ™Ŕtű€€(#tŘeřş$e<|I‡ĚKiyđj¨ű¨mńdbgq@ďĺ…;ŕ~Ăb§HŹčZN^ăĆŹD䲂+LY^ĎőUđ€ź»:{¸´|á˛RZvśů,‡š ýĹ~ŽÝAČľű˛µˇuŚňÍ 2Ń/°Ě?_K&€‹€‚YĐŔü^”~xŐ±*ćŠtPuEzz ç€07ßsSrČĂ”˙’™—óBNŇŇ[¦ÜBĘ/ŠîÓăĄ{X‘IKĘŮâJđäţ5Ňó ,żXŠľŕhČłPĎxă<FY źd‹¨Ě¸Ž„)—·âH™b¶ă%K,ÎŔ“éË÷D”–3&ü(ţŰ«Űźű­ő/Ä=SZ–«ßů!<2 aeĂw§˝ĐÉëVÉjz%1ŘY/ĄpÔ7Ģ5ZýâXX"ěbŹWűĘrlM*‰žü Lw˝)ł'Vňľ@—Făh?˘kpąo¨)w¨^¦V’׆ȞE[Kő ‚˝Mqá&}h×+|T]§ř„ě‹Ş©d×Í“BÂ0Ő1ž;4ouáŢvÂDş&śmżŠř–uľéb΀úNĘűTźŚÍY÷ŢíÉx´ö·le7Ď$Y_­ü š?´š˝@ŢrŹGb’™\\ń«ćz ÷'|„ŐČ`RĚ‘­¦9šŻĘłáŮDB +÷\ý/žöfG"qęI0P§É@@MÂŔ7¶ş0¦TŚGd:Ž©V/˘`ç Ü/Ú«çĐ»™ť7ȦM,¸W6<‹8ŹĎŹJaĽř,šŇÄDͧ5ň– \ä®?ĐƇźĽ¤ ¨zsAeboľÇë©Ť¦(„Yü•ż¬ĹjćI<µh…ˇĽjŁn`†‰EżQopj„ć}÷“%ľý1ń źxö‡KCóµµb/}Ýí—„ŤďŤ8jLÄDwQ ă¤8:™ŘFÜŚ`Žµň şž›Ĺ6.,ťÜAŠ…¦M9á¨ÂľĄYÇ‹ä?Ů0C_kNţ6N°é“âŰŤÝ>‚ŁÓréĘ m¸+đ§Ţ Ĺ„óÚŹ(Śł”ś—6Őׂ´×?xßűÜş)÷xš$ ę%‚Ż[<®gjF¦Š÷”¬ŹëĆŞł ’†áK]ř|MľNtËú0Űn}ľě±µł]¤†lŁ;0ΙB;â¸uâ¨Y†xw°·_±|OłölY×îVWIn‡ÄÓVž~xĺčT(|…˛źOžjëČáď˘/Źľ Ł™¬¦I.DˇP±šíÄPG›FbT;\…éË(şüdIűCšhĺú˛|ŽÇa;rŘ2l*Nna!3ŃÉ~„†Ç=ź©ĽÇ"řěąuî LE¬˘>s4^Ý´űˇ +çÉěx÷J ˛m/ŽźtB” )íY¸.‰a<[jŕ:ĘŰ%ěüsŻ—)ťŐ-ąÖżż=±ěDz0|˝w§AÉę^‹z­ąi#ŘCŘ٦ÂčMšńJ€geOă˙$\ěČË ĐqżPŘi7H}ŔyĚŞ˙Pą+€‘”0öc·ÖîŢ'•\‡ÎUj1ŞîjÜö̧Ŕ™ŔŘdÚ96ňl5DliqůÖÚI‡Ă™-– ţKw>}ąMh?Ýň Ş]f×éFÇú·ÄXY¸ĐěM/ö¶dç;5ňľŐś~äĺ’­™%łdwL±ťˇ9,€ĐA˝c9(›DČ™L‡eSš/pŻŃ+˙'S8u[ŞiáHĚ!ËcĹÂŻČ:Hł˘„ 5©ä”»RŽţD«Ü"T +4úŢŹű/AuX•o(öüËÂSeš?úd‰”ěą Úg¸(mŐWZń{'«Łů8ůŃ»…÷ é-G Ç–±t@Ăúš+±ňÁ: ˝ô·”‘|ńřŢů#P.ü#ě&ŚÎFĐÖÎe5Iwł)ž56é•Ňz¸FÁç;ţăšŃĹ—Ů5sË=Ę7Ş"łHóR2úŘš*Q?ŮüŘ:Rˇ»µdŘ&ĐLŁĄ¶ôJşĄ¤PuˉÂD>Îhí)¬Ô…hŐ¸á4•Jo†‡sĄ&Jžüť&2…TŞĘDu[°[c™ďC­¦Ďč\Ďá´KP˝r±ŞÂQGe&§Ś+{Š=O~{H©U2Âű°ĺ­O‹˙QÖôf0-#]H)… +§N;iĹžI–ú8=ĺî5v˝ż"ŻçčÁ‡žjż‰aĶPUď¶ůúÇłĺ©Ť}‹e"Ń ĺwc°V1cÓŞŞ*ËOŮ+8»—|­$T)u?2 űTrSe¸ďk6şĹö3îÉ IĘs6Ě6–ŕiCŐ}č{÷ĆS3Ę$$W/ŔŞE>_ÍšyŠ‰„ë§gD %ş 2Ú&÷5ĘőN Ňµ z4 }F>ýşí€Ä=X3TéYuŕr?¨vŕ¸aP¨q®ł›BëZ©¬űÚżâę/RKŢŽ‚R·×Ĺç@‹ †ká‰üúű?Ľ¤–čŘőĄJ†ă†'¦P¬é-2„Ç#m«/©š,ß·`ĘŚĽą7ťv×8ůéžWŰA¦ŃI Ö$ů÷đjötBý¨ěŽC¬a !yřčyĄřňTŕ\Ăň+sý†dĺYúşś‘Ŕ0ôqL"‚©O>r”§…ľ¶ç±Ęn*Ű·čwVZţĺ;%ŢáŢăČá3őל}(™f´ŕŕO]71hŚâ)÷»m÷¦2Šy©¤LĐůňGŠR§řMő=ŢĄÓLjŹȨюTßňKÚľđÓůs5Fu%7qütjr#«ř4ĘχŁ¨¤Ş/ż^Ü}µEOloˇUşąŮ%¨ËŰŮ‚ĹňŔç^ÖĐżv É .˛áˊϱ‘6¸ü9ŚbÇ/Íĺ÷ŘËÚ\§„dTąg>ę6ŮMážÉÂ_7nP)áŕęůĹâôń-Ŕdţ~Ú=u4kŮŤú!#‡ýg*2ż†Í¶p/Y&,é…?îîORan‚mB”˛| ę~jp÷!ÎőcO8 ü ĄĐ–u+ő˘G,fřĆ6čIÓ>§ť=h˙ÚA˘a‘µ{ B Čc-ç<Żě! _ć@ťÁC–Ő#l>E84žÜYYőŤ¨Z~íXřbőŇ~w6ĘÎ/JŮohëż*o1łs««5Q|čNs<Ż‹ą]Ś<·SóŇÍŻö¬$‰•ôç,?MOU%L„wÝ-P´ľŇE$Ą9 Ş˘ś@šVéćc§†M®ÁΩ,'-'3ĹĆŃ÷záGżt…áK›Đe‡ĆÖŃÇß]»“Ů;) i-`Ş6ĂÎZ•/O’/ôjr’¤“Ůń•ú;„§S8ÇŚľMô‰Ř&Ţ#((Ëwí¬W¶őü ^e¤ŔÄ®7*b˛ë‘K¤Ü‹Kâî:>}3O#›ĺ‘»¶7peĹT˝Ŕ[ĘśÜC÷ö.ZׂăłÖL›[6ŇZÍxęđ˘ÓŮvh'´P +Ż‹ôĽwĽ31daX± ůálß!wź¦|39guÖŁ¦p™«]/ŐŇk]Hsz%:ZÁÇUšÄÓŃuÜ(+Ú°Â!‰xs· ¬ +ĘšëśÜĂËĂÝQÍĎŃ“*‘qiýAżk/ÔňŃ©6bÍÚą'\ŔVYfŁo0¬üęv§žˇJŹ0o?ŽĺvÚďüˇW/ÍĽ( +ČCcköÁ^őŐ,)Řř…Č˝•â1@QăzýA#p3Mb"˙đ× Zůj,Ş÷9"˘ećšJC Bř^ŁäJ-É]¨PGÂ7°M1*$PGÝ9AóĐ/ló =Ůýö¨a‡*Îř‹=®5wÍKř•f…j#GFLFÄX·b <Ó<Ďצ,śĆľŔoD\Ĺ÷QŻlYb6×7a飚•+ÎËÁBťxŹâăĄÂËöxěß–˘‚“iš\QÇi;µ]ąŇb"&<ţHA¬r”s:Óî?-7ŻŹü3uŔsgGÝ»ăˇĹŰAŃ BK+uW:›'ţÉá+ţFn·Źß<ŚÜ©D1m 56JűVÉxIĎańY?NCä}Ĺ{Ü)ćÄΣ绑˝˛ĹRĚŮľ4҆96T~ÔnÓ%nlPťQ–ެY‰9őÍ‹M2Úó#Óyşł‹ë˝^Vu—Ł€ľ˝Żő‘ŚęeHqÎT+ĄNWn-0–Ž=¬ĎégR“pŻmŻşäT+Hv,z¬ß©± 2M†^«É÷›Ën–q@ąË@ź‡mtű´Ď :gp. +łš\ +ä5×ű UdČR÷_űceŢ^RşíaÇ0~í¬©É‹ 7Q`uëq+ăËK&VIkŕTFcđ&–á•ě%ܶ}1X”×űD)Véš}-ŕĆoHž~Š_‚P(ôŔúVŽżŁŹzćÉnqŚÝîżzĘAQÍń&ˇ ‹jŇéŕ"¨X+F;ŐłÍB*“oÄ5o1BňŮáë ‰ ő>Ů)˘Ôçmٙ؍vč~¤ŻÎ qó +2őaqÉŠÔJýîŠ[Ř´ôśŻ?ůűVR»Éš\'§%?<Ţ>Ą§5lŘÁ´cc?AÜűk’LÎgA<¦˝nŹ×Ŕ NöŕŔ!Łč<sŹŹ:㌞úB’‹!“YůČ×a•i)űÍëŇ«ßJ–ktŃFf†¦™Ką&t,žĺ>µ5Aȶ4@5hý;DŢ`u˙gwTx‡{ôb˙ +Ĺm%ëţoĺűxraćŻLăźôľĚMXŐ‹j ¨ÝNŹ +Řą´+ř5audNrvecŕ„°Y{vrşš'Őď2Ć?ÜČ’ţŞđéݱü Żn]–B˘—Ë‘n RžA˘ě9‹ćő âUb§°űě1Ô«€‰G¦nFńŰ̧Ý˙H5Q;Đ,yŔźO×59XtÎąŃĐĹJň÷ěo&DŹČuťńąq)ĚpEnw"ÉŠÜŮśçtU=qĺ'’˛Źct=“8ţ{2"kŇc–bcîuÖąiĚî\°Çđ„éĺÔśpĹěëT n8Ź6Žż·5Ýt"N€z Â×p8btÖ{űa{ń"ÝwůvyŮ +vvĹ™˘Ż¶ő5~¬tón7­ˇ X‡ô8€VEuÁŻÜö¶H” ?a +Ľá•ą´}˝lúGÎÜőňÝc[jǡşŮ` ‰ĂHLéś űÄ1v­ě§#îÎ (yĽĎA›-ÖŮżł}G…ŤFbWĂ  Ü<;?7Řćłřgć9’OO ł‡+ŃJ°É}ĐÓ(ň‚®QĂ°I+ Np¸Ekí2í}‹‘ ?„3ŶâňĘĽ:ÖŃŠ°¶ä×a¸®1ÄIěÝ.»ťĺ; ¤mr.{Ëi~MoŢm|~+ PËŽQóIsŻ÷ŻBVňţĽăfVKđůçaůÓŽ śT×DďBÉC˝3űhe* +µ^őˇGáfá˛\íěy˝Ëá€NŁň̀¶•,Ć$ůeôĚΗŢvůąü±¨R¸1±V°MžĄM =$É„źŞu +°vÓJák" ŇTäŕô26°ľţóIŰ~O®Ť–%d…üK>~®tu¸Óąô´Q~’_ˇIëÉGox.%[‘’Şű‹WľÇĐŠ»$RK»<=o g!ű¶ŤLLąÓ12tSŐŔ–Fě[¸ňĚm&hĄovŁPţÎEž˙;ˇšt'čŐĆ­öI›dă<ş° Ý:†ýxP¬đÚÝ‚ˇ5Ç7óݦľXĄ0,µdJTÇńvˇ)ŠŰ}#?aÓ°E«§™Qw¬Ô"çÜźş‹$¨5¬±úí_Č/ÜŐĎ0)îCÓ3‡ąÉţ¦o<'”…Q8ë{ ńĐ2×´k{ę+$y>břDľło5lvSăČL}×T*L~Ź'»ß¤ˇ˘ĺ}¶2–,2}źÎG ;¤Ęg+$1QCAoQŞK?óÝ!%ÄŐ†Óeë›4ő¤5x{˙żî+–&á +Uné΢łÍZű'<Ľť´µEëÓr†Ż«Ü8~é«9aÝ‚j5la1Y””¬Ť‘ÍŔŇ•µĹR1Ä^î üůx%’Ů5çm˝o„˝ŮŞ˛™îbĎx2ĺŕ"fÔR‰č˛ĺŤFŽµô&~–¨čŇžÔWÓžˇH|Q„3dqĺ«î3ކş“˝‘Ź=™„%`%ŃŢ’Ň@¨?î,Î_Xs%şżc7šŚŞ.ٸäO^¬“ƱvÂźh°ŹĆőäbŻF,"2ŹňŰ?ĹlKÂtOđ­ăćşľĺ!“Yz sŕѧTS+|—¬ -Ą ·©ĎŞVÖK—'Éé?€Ű÷Ăţ÷ż„Ď…3—í2|­¦§Ś>ŐvÂŚĽ-uÁ±Ś+ÚâšIă#í ZŁť§ŕŰt: X>ą¬ĎßćÔů°ŻÖ؆Ć›P1ćů”îďß>{|ýIuăoŁÖ¦˙%e€˝¸¨–‹>T?…şnąq¸ďhŐ'L¬ ¶ü;/Â4?ÎYÎúĽZ˝ŰćOŃťd­ďŇ´ťÜĐ>"Ő@’rđ´M¨8_*ßjË-óé©ů= l@Z°ěilSęddYŔŔ=ş2ÇŘíö´y€_.鏪UsCńÇv\ç‡/ąŇ‡1Ž® /O*}ň/<¦ŮpIQ¤jşA÷{ ŃĘÚńŠ® +_<^,÷őîkP*(8\©îkq ?ʡ駭âl 2ŁŽ*ť^j‡ëĺxnąy±·SĄóŚ¶NáĚQD׼,ÄĚÂ1%÷1 `膥R?ěiϢH5#—SßáS˘ßwT\Łęq—/8çË›ŹV"ˇ—4ľu©‹BĺÓM)]¸ćĹu„ű!9Ü™Ú[ˇŽ ő¨s +T$Y´ţéPH’ ™ ©ÝŇŁf ˘0QO’˛DÚ‡ěJ*ő ¤Łľ„FáO¶†.÷¦†•đ Â1MŕjihKüśó”ÁëP‡Ď‹`†đ~” +˛k*ŽlĄt^?䶵őůA¨±übň[\ÜůZ2xì³kYb˝ç´őŞeʉžŠ»›çîđą$ßxh„h«CŻCw( &tżţ]˛ĐŠňööD|ÖôňŹPVÇŠ¤î˛3áE—ŕ(xÚdi @ß~šB ÚŘtą°§_żOź#ŞÁDÚÔĎŹ9łĘĘŔćŘsk“Ç7¸\Źs¸Uç–•ÄäĚţť´Ëe  ôč-!‡P¨™ł6ŤĺI{j§!Ý(Ęď›8Ĺw¦sQőÚ{vŻ[uĽę •ąX™kGńö˘w‰áâ! ŘŃ;ĺ‹ŮZäD”h„,Ł $×vçţŇ IŇĂÍŇí7x=Î1ľĹ%ÔVŇŞ\ŰÜ%©u˙= dkňĽž÷’éé]Ůq0 W»ľď»B!šŁďČŮÁ»ěÄ’`ĹĎ®Ą˙J8˛¨Ň¬ěupgx´˝ âÓ–wz%\đtX¤jŠÁęzf-Fß·ât«Ć›é[[(R˛,گ<¬4^⧭čő!^Ó®»§“ŔvŞ·3ŔóŻ!o"‚Ä‹¨úéĄáŽM*đbďŹV5ZťśgZ˘[ř¦q©Ť-§a…ěĘBQŤ„Âv9ő°’č`ű±:ßSůÁo=űšC(űĹꢹű äüˇŰ…¨ZtfŇŻń«6şĎ«>qôdyęÁ~ÉÁ§h‘ëq—<µĆßş<Ó˝Ż ŮuŐ{cüĆqő˝2żr8P·˝zS{ľ~Ţ„EjŇ·mÉmtrÄôŚ20ZĂŐĘbĂa]óŠŤMz‹ł^•ÄÜßđ]„šŘŽ6ήŠúM€$KµpÔµ¦nf%jłŕŃŤŁÜ˝ô*p\b™fîěčŽßp´l«Žĺť†U–´ t†-wz„y‘öĺě7‹& áĹ xÔlžůaµÉ›±m /}LĚv5(Ś˛™Ş°ŐťĆĽ¬f‘tü4Č-8i®ůgŠ`îô÷JÄ/S<…)^˘ęĄ:ÎG´wp|w¶řE™dryž‚bbŢG§Ő”É@1= ^ÚÝšJ¶íĄv1žîŐhčŕíď"ł:|ÜP˙°xŇß*°,ś{Ě’ôUĐ×8G/ĄY«N(Ő0˝\{ü™qTüŢÖYS +í +J3néí2LŁ‹P#8fbŃÔľ:źš ż"Ľ ŽvžÂ;=}lßSnÖüâłŢÓQˇĆý…®hϲ˝`„Dń”ň#beF62ü뙇€1ÚWÔÎÄ‹Ős#ôt„TńěŰěÚv§ÝäY(ć2šK!o·˛Éćíóĺ_MYç9ő,ň^‚=m% +öFTSeąŚ-Ž©n_°xˇ+÷8V[X„~­N¸cŰYJÓ’öş¸™cˇŽtëc3„EŚ\̢xbIϲNŃęóŚ2'ŞúcB1[X6‡“) ¬·¸ä÷Ç?ź4öÚ*ô<ĂRKŹŕ>ÁµîâsX »”cĂ}ř9šî@ÎEIdĘ—°ˇ÷D·ÇMJŘg‰v®/\pąäń" wóxŮr?‹ź*¦ř}+‚> endobj -814 0 obj +815 0 obj << /Length1 1902 /Length2 23557 @@ -8246,7 +8238,7 @@ s kŞ®©Żl“©3Ń~i‰Řf(SCď„cľĐďrShőČoÎ_0Â^Ň8·L{ 7ZĘDܬŕE™j滦MRŻju:ÔvúzÔ¤ťârf&Đ6ţÉWż endstream endobj -815 0 obj +816 0 obj << /Type /FontDescriptor /FontName /RYXDKR+LMMonoLt10-Bold @@ -8259,10 +8251,10 @@ endobj /StemV 83 /XHeight 431 /CharSet (/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/T/U/V/W/Y) -/FontFile 814 0 R +/FontFile 815 0 R >> endobj -816 0 obj +817 0 obj << /Length1 2453 /Length2 26390 @@ -8373,7 +8365,7 @@ K~i> ĄaˇŞ“X} óŮGWp*§˙§Ů2nńčŞ7ÔÖH˘Űłęć…žbâ|Ä*ŇAćÓ9\@oĺüčxP ‚sŻ¦^))ć­·ŰÖLT< l„c˝ÔČĚ;smăŕh·›čoťď}űĎę ·ŻaĽkú¦tWŘżc©ŕ+• „üVđiÄ[ĂąşŚ±ťŘ“Áf/qÓ׆Yj>óţeŁ; endstream endobj -817 0 obj +818 0 obj << /Type /FontDescriptor /FontName /TQJFJZ+LMMono10-Regular @@ -8386,10 +8378,10 @@ endobj /StemV 69 /XHeight 431 /CharSet (/A/C/D/G/H/I/M/N/O/R/T/U/V/a/asterisk/b/bracketleft/bracketright/c/d/e/equal/five/four/g/h/i/idieresis/l/m/n/o/one/onehalf/p/parenleft/parenright/q/questiondown/r/s/seven/six/t/three/two/u/underscore/v/x/y/zero) -/FontFile 816 0 R +/FontFile 817 0 R >> endobj -818 0 obj +819 0 obj << /Length1 2226 /Length2 16213 @@ -8471,7 +8463,7 @@ L Mg:ý'!"`˛Ě⣨©'ő%ĂČLŞ82QĹÓTŁ¬¤1h endstream endobj -819 0 obj +820 0 obj << /Type /FontDescriptor /FontName /YCZHCY+LMMono10-Italic @@ -8484,16 +8476,16 @@ endobj /StemV 69 /XHeight 431 /CharSet (/A/B/E/I/L/P/a/b/c/comma/d/e/eight/equal/f/five/g/h/i/l/m/n/o/one/p/period/r/s/seven/six/slash/t/three/two/u/x/y/z/zero) -/FontFile 818 0 R +/FontFile 819 0 R >> endobj -785 0 obj +786 0 obj << /Type /Encoding /Differences [16/quotedblleft/quotedblright 21/endash 27/ff/fi/fl/ffi 37/percent 39/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft 93/bracketright 95/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft 125/braceright 190/questiondown 194/Acircumflex 226/acircumflex 239/idieresis] >> endobj -788 0 obj +789 0 obj << /Type /Encoding /Differences [136/bullet 151/trademark 169/copyright 189/onehalf] @@ -8504,11 +8496,11 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /BITSRZ+LMRoman10-Bold -/FontDescriptor 803 0 R +/FontDescriptor 804 0 R /FirstChar 21 /LastChar 239 -/Widths 796 0 R -/Encoding 785 0 R +/Widths 797 0 R +/Encoding 786 0 R >> endobj 247 0 obj @@ -8516,11 +8508,11 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /BHSZME+LMRoman12-Bold -/FontDescriptor 805 0 R +/FontDescriptor 806 0 R /FirstChar 46 /LastChar 122 -/Widths 797 0 R -/Encoding 785 0 R +/Widths 798 0 R +/Encoding 786 0 R >> endobj 249 0 obj @@ -8528,11 +8520,11 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /GGCMXF+LMRoman10-Regular -/FontDescriptor 807 0 R +/FontDescriptor 808 0 R /FirstChar 16 /LastChar 239 -/Widths 795 0 R -/Encoding 785 0 R +/Widths 796 0 R +/Encoding 786 0 R >> endobj 244 0 obj @@ -8540,106 +8532,47 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /ICULYI+LMRoman17-Regular -/FontDescriptor 809 0 R +/FontDescriptor 810 0 R /FirstChar 28 /LastChar 116 -/Widths 799 0 R -/Encoding 785 0 R ->> -endobj -763 0 obj -<< -/Type /Font -/Subtype /Type1 -/BaseFont /IZETLV+LMRoman10-Italic -/FontDescriptor 811 0 R -/FirstChar 16 -/LastChar 122 -/Widths 787 0 R -/Encoding 785 0 R ->> -endobj -245 0 obj -<< -/Type /Font -/Subtype /Type1 -/BaseFont /YSRULU+LMRoman12-Italic -/FontDescriptor 813 0 R -/FirstChar 44 -/LastChar 121 -/Widths 798 0 R -/Encoding 785 0 R ->> -endobj -635 0 obj -<< -/Type /Font -/Subtype /Type1 -/BaseFont /RYXDKR+LMMonoLt10-Bold -/FontDescriptor 815 0 R -/FirstChar 65 -/LastChar 89 -/Widths 791 0 R -/Encoding 785 0 R ->> -endobj -636 0 obj -<< -/Type /Font -/Subtype /Type1 -/BaseFont /TQJFJZ+LMMono10-Regular -/FontDescriptor 817 0 R -/FirstChar 40 -/LastChar 239 -/Widths 790 0 R -/Encoding 785 0 R +/Widths 800 0 R +/Encoding 786 0 R >> endobj 764 0 obj << /Type /Font /Subtype /Type1 -/BaseFont /YCZHCY+LMMono10-Italic -/FontDescriptor 819 0 R -/FirstChar 44 +/BaseFont /IZETLV+LMRoman10-Italic +/FontDescriptor 812 0 R +/FirstChar 16 /LastChar 122 -/Widths 786 0 R -/Encoding 785 0 R +/Widths 788 0 R +/Encoding 786 0 R >> endobj -524 0 obj +245 0 obj << /Type /Font /Subtype /Type1 -/BaseFont /KCXMNX+TeX-feymr10 -/FontDescriptor 801 0 R -/FirstChar 101 -/LastChar 101 -/Widths 793 0 R +/BaseFont /IMELIO+LMRoman12-Italic +/FontDescriptor 814 0 R +/FirstChar 44 +/LastChar 121 +/Widths 799 0 R +/Encoding 786 0 R >> endobj -622 0 obj +636 0 obj << /Type /Font /Subtype /Type1 -/BaseFont /BITSRZ+LMRoman10-Bold -/FontDescriptor 803 0 R -/FirstChar 189 -/LastChar 189 +/BaseFont /RYXDKR+LMMonoLt10-Bold +/FontDescriptor 816 0 R +/FirstChar 65 +/LastChar 89 /Widths 792 0 R -/Encoding 788 0 R ->> -endobj -271 0 obj -<< -/Type /Font -/Subtype /Type1 -/BaseFont /GGCMXF+LMRoman10-Regular -/FontDescriptor 807 0 R -/FirstChar 136 -/LastChar 189 -/Widths 794 0 R -/Encoding 788 0 R +/Encoding 786 0 R >> endobj 637 0 obj @@ -8647,18 +8580,77 @@ endobj /Type /Font /Subtype /Type1 /BaseFont /TQJFJZ+LMMono10-Regular -/FontDescriptor 817 0 R +/FontDescriptor 818 0 R +/FirstChar 40 +/LastChar 239 +/Widths 791 0 R +/Encoding 786 0 R +>> +endobj +765 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /YCZHCY+LMMono10-Italic +/FontDescriptor 820 0 R +/FirstChar 44 +/LastChar 122 +/Widths 787 0 R +/Encoding 786 0 R +>> +endobj +525 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /KCXMNX+TeX-feymr10 +/FontDescriptor 802 0 R +/FirstChar 101 +/LastChar 101 +/Widths 794 0 R +>> +endobj +623 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /BITSRZ+LMRoman10-Bold +/FontDescriptor 804 0 R /FirstChar 189 /LastChar 189 -/Widths 789 0 R -/Encoding 788 0 R +/Widths 793 0 R +/Encoding 789 0 R +>> +endobj +271 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /GGCMXF+LMRoman10-Regular +/FontDescriptor 808 0 R +/FirstChar 136 +/LastChar 189 +/Widths 795 0 R +/Encoding 789 0 R +>> +endobj +638 0 obj +<< +/Type /Font +/Subtype /Type1 +/BaseFont /TQJFJZ+LMMono10-Regular +/FontDescriptor 818 0 R +/FirstChar 189 +/LastChar 189 +/Widths 790 0 R +/Encoding 789 0 R >> endobj 250 0 obj << /Type /Pages /Count 6 -/Parent 820 0 R +/Parent 821 0 R /Kids [198 0 R 268 0 R 274 0 R 278 0 R 285 0 R 293 0 R] >> endobj @@ -8666,7 +8658,7 @@ endobj << /Type /Pages /Count 6 -/Parent 820 0 R +/Parent 821 0 R /Kids [299 0 R 306 0 R 322 0 R 327 0 R 331 0 R 339 0 R] >> endobj @@ -8674,7 +8666,7 @@ endobj << /Type /Pages /Count 6 -/Parent 820 0 R +/Parent 821 0 R /Kids [351 0 R 369 0 R 380 0 R 388 0 R 395 0 R 401 0 R] >> endobj @@ -8682,7 +8674,7 @@ endobj << /Type /Pages /Count 6 -/Parent 820 0 R +/Parent 821 0 R /Kids [409 0 R 418 0 R 424 0 R 430 0 R 434 0 R 438 0 R] >> endobj @@ -8690,7 +8682,7 @@ endobj << /Type /Pages /Count 6 -/Parent 820 0 R +/Parent 821 0 R /Kids [442 0 R 447 0 R 452 0 R 458 0 R 464 0 R 470 0 R] >> endobj @@ -8698,99 +8690,99 @@ endobj << /Type /Pages /Count 6 -/Parent 820 0 R -/Kids [475 0 R 485 0 R 491 0 R 511 0 R 516 0 R 521 0 R] +/Parent 821 0 R +/Kids [475 0 R 485 0 R 491 0 R 512 0 R 517 0 R 522 0 R] >> endobj -531 0 obj +532 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [526 0 R 533 0 R 539 0 R 545 0 R 551 0 R 556 0 R] +/Parent 822 0 R +/Kids [527 0 R 534 0 R 540 0 R 546 0 R 552 0 R 557 0 R] >> endobj -566 0 obj +567 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [561 0 R 568 0 R 572 0 R 578 0 R 583 0 R 588 0 R] +/Parent 822 0 R +/Kids [562 0 R 569 0 R 573 0 R 579 0 R 584 0 R 589 0 R] >> endobj -598 0 obj +599 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [594 0 R 600 0 R 605 0 R 610 0 R 618 0 R 630 0 R] +/Parent 822 0 R +/Kids [595 0 R 601 0 R 606 0 R 611 0 R 619 0 R 631 0 R] >> endobj -644 0 obj +645 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [640 0 R 646 0 R 651 0 R 659 0 R 666 0 R 671 0 R] +/Parent 822 0 R +/Kids [641 0 R 647 0 R 652 0 R 660 0 R 667 0 R 672 0 R] >> endobj -682 0 obj +683 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [677 0 R 686 0 R 692 0 R 697 0 R 702 0 R 711 0 R] +/Parent 822 0 R +/Kids [678 0 R 687 0 R 693 0 R 698 0 R 703 0 R 711 0 R] >> endobj -725 0 obj +726 0 obj << /Type /Pages /Count 6 -/Parent 821 0 R -/Kids [722 0 R 727 0 R 735 0 R 741 0 R 747 0 R 753 0 R] +/Parent 822 0 R +/Kids [723 0 R 728 0 R 736 0 R 742 0 R 748 0 R 754 0 R] >> endobj -767 0 obj +768 0 obj << /Type /Pages /Count 4 -/Parent 822 0 R -/Kids [758 0 R 769 0 R 775 0 R 781 0 R] ->> -endobj -820 0 obj -<< -/Type /Pages -/Count 36 /Parent 823 0 R -/Kids [250 0 R 304 0 R 354 0 R 413 0 R 445 0 R 480 0 R] +/Kids [759 0 R 770 0 R 776 0 R 782 0 R] >> endobj 821 0 obj << /Type /Pages /Count 36 -/Parent 823 0 R -/Kids [531 0 R 566 0 R 598 0 R 644 0 R 682 0 R 725 0 R] +/Parent 824 0 R +/Kids [250 0 R 304 0 R 354 0 R 413 0 R 445 0 R 480 0 R] >> endobj 822 0 obj << /Type /Pages -/Count 4 -/Parent 823 0 R -/Kids [767 0 R] +/Count 36 +/Parent 824 0 R +/Kids [532 0 R 567 0 R 599 0 R 645 0 R 683 0 R 726 0 R] >> endobj 823 0 obj << /Type /Pages -/Count 76 -/Kids [820 0 R 821 0 R 822 0 R] +/Count 4 +/Parent 824 0 R +/Kids [768 0 R] >> endobj 824 0 obj << +/Type /Pages +/Count 76 +/Kids [821 0 R 822 0 R 823 0 R] +>> +endobj +825 0 obj +<< /Type /Outlines /First 3 0 R /Last 175 0 R @@ -8844,7 +8836,7 @@ endobj << /Title 176 0 R /A 173 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 163 0 R /First 179 0 R /Last 195 0 R @@ -8871,7 +8863,7 @@ endobj << /Title 164 0 R /A 161 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 147 0 R /Next 175 0 R /First 167 0 R @@ -8908,7 +8900,7 @@ endobj << /Title 148 0 R /A 145 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 87 0 R /Next 163 0 R /First 151 0 R @@ -9044,7 +9036,7 @@ endobj << /Title 88 0 R /A 85 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 79 0 R /Next 147 0 R /First 91 0 R @@ -9063,7 +9055,7 @@ endobj << /Title 80 0 R /A 77 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 27 0 R /Next 87 0 R /First 83 0 R @@ -9181,7 +9173,7 @@ endobj << /Title 28 0 R /A 25 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 23 0 R /Next 79 0 R /First 31 0 R @@ -9193,7 +9185,7 @@ endobj << /Title 24 0 R /A 21 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 7 0 R /Next 27 0 R >> @@ -9227,7 +9219,7 @@ endobj << /Title 8 0 R /A 5 0 R -/Parent 824 0 R +/Parent 825 0 R /Prev 3 0 R /Next 23 0 R /First 11 0 R @@ -9239,532 +9231,532 @@ endobj << /Title 4 0 R /A 1 0 R -/Parent 824 0 R +/Parent 825 0 R /Next 7 0 R >> endobj -825 0 obj +826 0 obj << /Names [(Doc-Start) 243 0 R (figure.1) 334 0 R (page.1) 242 0 R (page.10) 329 0 R (page.11) 333 0 R (page.12) 341 0 R] /Limits [(Doc-Start) (page.12)] >> endobj -826 0 obj +827 0 obj << /Names [(page.13) 353 0 R (page.14) 371 0 R (page.15) 382 0 R (page.16) 390 0 R (page.17) 397 0 R (page.18) 403 0 R] /Limits [(page.13) (page.18)] >> endobj -827 0 obj +828 0 obj << /Names [(page.19) 411 0 R (page.2) 270 0 R (page.20) 420 0 R (page.21) 426 0 R (page.22) 432 0 R (page.23) 436 0 R] /Limits [(page.19) (page.23)] >> endobj -828 0 obj +829 0 obj << /Names [(page.24) 440 0 R (page.25) 444 0 R (page.26) 449 0 R (page.27) 454 0 R (page.28) 460 0 R (page.29) 466 0 R] /Limits [(page.24) (page.29)] >> endobj -829 0 obj -<< -/Names [(page.3) 276 0 R (page.30) 472 0 R (page.31) 477 0 R (page.32) 487 0 R (page.33) 493 0 R (page.34) 513 0 R] -/Limits [(page.3) (page.34)] ->> -endobj 830 0 obj << -/Names [(page.35) 518 0 R (page.36) 523 0 R (page.37) 528 0 R (page.38) 535 0 R (page.39) 541 0 R (page.4) 280 0 R] -/Limits [(page.35) (page.4)] +/Names [(page.3) 276 0 R (page.30) 472 0 R (page.31) 477 0 R (page.32) 487 0 R (page.33) 493 0 R (page.34) 514 0 R] +/Limits [(page.3) (page.34)] >> endobj 831 0 obj << -/Names [(page.40) 547 0 R (page.41) 553 0 R (page.42) 558 0 R (page.43) 563 0 R (page.44) 570 0 R (page.45) 574 0 R] -/Limits [(page.40) (page.45)] +/Names [(page.35) 519 0 R (page.36) 524 0 R (page.37) 529 0 R (page.38) 536 0 R (page.39) 542 0 R (page.4) 280 0 R] +/Limits [(page.35) (page.4)] >> endobj 832 0 obj << -/Names [(page.46) 580 0 R (page.47) 585 0 R (page.48) 590 0 R (page.49) 596 0 R (page.5) 287 0 R (page.50) 602 0 R] -/Limits [(page.46) (page.50)] +/Names [(page.40) 548 0 R (page.41) 554 0 R (page.42) 559 0 R (page.43) 564 0 R (page.44) 571 0 R (page.45) 575 0 R] +/Limits [(page.40) (page.45)] >> endobj 833 0 obj << -/Names [(page.51) 607 0 R (page.52) 612 0 R (page.53) 620 0 R (page.54) 632 0 R (page.55) 642 0 R (page.56) 648 0 R] -/Limits [(page.51) (page.56)] +/Names [(page.46) 581 0 R (page.47) 586 0 R (page.48) 591 0 R (page.49) 597 0 R (page.5) 287 0 R (page.50) 603 0 R] +/Limits [(page.46) (page.50)] >> endobj 834 0 obj << -/Names [(page.57) 653 0 R (page.58) 661 0 R (page.59) 668 0 R (page.6) 295 0 R (page.60) 673 0 R (page.61) 679 0 R] -/Limits [(page.57) (page.61)] +/Names [(page.51) 608 0 R (page.52) 613 0 R (page.53) 621 0 R (page.54) 633 0 R (page.55) 643 0 R (page.56) 649 0 R] +/Limits [(page.51) (page.56)] >> endobj 835 0 obj << -/Names [(page.62) 688 0 R (page.63) 694 0 R (page.64) 699 0 R (page.65) 704 0 R (page.66) 713 0 R (page.67) 724 0 R] -/Limits [(page.62) (page.67)] +/Names [(page.57) 654 0 R (page.58) 662 0 R (page.59) 669 0 R (page.6) 295 0 R (page.60) 674 0 R (page.61) 680 0 R] +/Limits [(page.57) (page.61)] >> endobj 836 0 obj << -/Names [(page.68) 729 0 R (page.69) 737 0 R (page.7) 301 0 R (page.70) 743 0 R (page.71) 749 0 R (page.72) 755 0 R] -/Limits [(page.68) (page.72)] +/Names [(page.62) 689 0 R (page.63) 695 0 R (page.64) 700 0 R (page.65) 705 0 R (page.66) 713 0 R (page.67) 725 0 R] +/Limits [(page.62) (page.67)] >> endobj 837 0 obj << -/Names [(page.73) 760 0 R (page.74) 771 0 R (page.75) 777 0 R (page.76) 783 0 R (page.8) 308 0 R (page.9) 324 0 R] -/Limits [(page.73) (page.9)] +/Names [(page.68) 730 0 R (page.69) 738 0 R (page.7) 301 0 R (page.70) 744 0 R (page.71) 750 0 R (page.72) 756 0 R] +/Limits [(page.68) (page.72)] >> endobj 838 0 obj << -/Names [(paragraph.6.11.2.1) 615 0 R (paragraph.6.11.2.2) 621 0 R (paragraph.6.11.2.3) 624 0 R (paragraph.6.11.2.4) 626 0 R (paragraph.6.11.2.5) 633 0 R (paragraph.6.11.2.6) 634 0 R] -/Limits [(paragraph.6.11.2.1) (paragraph.6.11.2.6)] +/Names [(page.73) 761 0 R (page.74) 772 0 R (page.75) 778 0 R (page.76) 784 0 R (page.8) 308 0 R (page.9) 324 0 R] +/Limits [(page.73) (page.9)] >> endobj 839 0 obj << +/Names [(paragraph.6.11.2.1) 616 0 R (paragraph.6.11.2.2) 622 0 R (paragraph.6.11.2.3) 625 0 R (paragraph.6.11.2.4) 627 0 R (paragraph.6.11.2.5) 634 0 R (paragraph.6.11.2.6) 635 0 R] +/Limits [(paragraph.6.11.2.1) (paragraph.6.11.2.6)] +>> +endobj +840 0 obj +<< /Names [(section*.1) 246 0 R (section.1) 2 0 R (section.2) 6 0 R (section.3) 22 0 R (section.4) 26 0 R (section.5) 78 0 R] /Limits [(section*.1) (section.5)] >> endobj -840 0 obj +841 0 obj << /Names [(section.6) 86 0 R (section.7) 146 0 R (section.8) 162 0 R (section.9) 174 0 R (subsection.2.1) 10 0 R (subsection.2.2) 14 0 R] /Limits [(section.6) (subsection.2.2)] >> endobj -841 0 obj +842 0 obj << /Names [(subsection.2.3) 18 0 R (subsection.4.1) 30 0 R (subsection.4.10) 66 0 R (subsection.4.11) 70 0 R (subsection.4.12) 74 0 R (subsection.4.2) 34 0 R] /Limits [(subsection.2.3) (subsection.4.2)] >> endobj -842 0 obj +843 0 obj << /Names [(subsection.4.3) 38 0 R (subsection.4.4) 42 0 R (subsection.4.5) 46 0 R (subsection.4.6) 50 0 R (subsection.4.7) 54 0 R (subsection.4.8) 58 0 R] /Limits [(subsection.4.3) (subsection.4.8)] >> endobj -843 0 obj +844 0 obj << /Names [(subsection.4.9) 62 0 R (subsection.5.1) 82 0 R (subsection.6.1) 90 0 R (subsection.6.10) 126 0 R (subsection.6.11) 130 0 R (subsection.6.12) 134 0 R] /Limits [(subsection.4.9) (subsection.6.12)] >> endobj -844 0 obj +845 0 obj << /Names [(subsection.6.13) 138 0 R (subsection.6.14) 142 0 R (subsection.6.2) 94 0 R (subsection.6.3) 98 0 R (subsection.6.4) 102 0 R (subsection.6.5) 106 0 R] /Limits [(subsection.6.13) (subsection.6.5)] >> endobj -845 0 obj +846 0 obj << /Names [(subsection.6.6) 110 0 R (subsection.6.7) 114 0 R (subsection.6.8) 118 0 R (subsection.6.9) 122 0 R (subsection.7.1) 150 0 R (subsection.7.2) 154 0 R] /Limits [(subsection.6.6) (subsection.7.2)] >> endobj -846 0 obj +847 0 obj << /Names [(subsection.7.3) 158 0 R (subsection.8.1) 166 0 R (subsection.8.2) 170 0 R (subsection.9.1) 178 0 R (subsection.9.2) 182 0 R (subsection.9.3) 186 0 R] /Limits [(subsection.7.3) (subsection.9.3)] >> endobj -847 0 obj +848 0 obj << /Names [(subsection.9.4) 190 0 R (subsection.9.5) 194 0 R (subsubsection.2.3.1) 281 0 R (subsubsection.2.3.2) 282 0 R (subsubsection.2.3.3) 288 0 R (subsubsection.2.3.4) 289 0 R] /Limits [(subsection.9.4) (subsubsection.2.3.4)] >> endobj -848 0 obj +849 0 obj << /Names [(subsubsection.2.3.5) 290 0 R (subsubsection.2.3.6) 291 0 R (subsubsection.2.3.7) 296 0 R (subsubsection.2.3.8) 297 0 R (subsubsection.2.3.9) 302 0 R (subsubsection.4.1.1) 343 0 R] /Limits [(subsubsection.2.3.5) (subsubsection.4.1.1)] >> endobj -849 0 obj +850 0 obj << /Names [(subsubsection.4.10.1) 473 0 R (subsubsection.4.11.1) 479 0 R (subsubsection.4.12.1) 489 0 R (subsubsection.4.2.1) 373 0 R (subsubsection.4.3.1) 392 0 R (subsubsection.4.4.1) 398 0 R] /Limits [(subsubsection.4.10.1) (subsubsection.4.4.1)] >> endobj -850 0 obj -<< -/Names [(subsubsection.4.5.1) 421 0 R (subsubsection.4.6.1) 427 0 R (subsubsection.4.7.1) 455 0 R (subsubsection.4.8.1) 461 0 R (subsubsection.4.9.1) 467 0 R (subsubsection.5.1.1) 514 0 R] -/Limits [(subsubsection.4.5.1) (subsubsection.5.1.1)] ->> -endobj 851 0 obj << -/Names [(subsubsection.6.1.1) 529 0 R (subsubsection.6.10.1) 603 0 R (subsubsection.6.11.1) 613 0 R (subsubsection.6.11.2) 614 0 R (subsubsection.6.12.1) 643 0 R (subsubsection.6.13.1) 654 0 R] -/Limits [(subsubsection.6.1.1) (subsubsection.6.13.1)] +/Names [(subsubsection.4.5.1) 421 0 R (subsubsection.4.6.1) 427 0 R (subsubsection.4.7.1) 455 0 R (subsubsection.4.8.1) 461 0 R (subsubsection.4.9.1) 467 0 R (subsubsection.5.1.1) 515 0 R] +/Limits [(subsubsection.4.5.1) (subsubsection.5.1.1)] >> endobj 852 0 obj << -/Names [(subsubsection.6.14.1) 663 0 R (subsubsection.6.2.1) 536 0 R (subsubsection.6.3.1) 542 0 R (subsubsection.6.4.1) 548 0 R (subsubsection.6.5.1) 554 0 R (subsubsection.6.6.1) 564 0 R] -/Limits [(subsubsection.6.14.1) (subsubsection.6.6.1)] +/Names [(subsubsection.6.1.1) 530 0 R (subsubsection.6.10.1) 604 0 R (subsubsection.6.11.1) 614 0 R (subsubsection.6.11.2) 615 0 R (subsubsection.6.12.1) 644 0 R (subsubsection.6.13.1) 655 0 R] +/Limits [(subsubsection.6.1.1) (subsubsection.6.13.1)] >> endobj 853 0 obj << -/Names [(subsubsection.6.7.1) 575 0 R (subsubsection.6.8.1) 581 0 R (subsubsection.6.9.1) 591 0 R (subsubsection.7.1.1) 674 0 R (subsubsection.7.2.1) 680 0 R (subsubsection.7.3.1) 689 0 R] -/Limits [(subsubsection.6.7.1) (subsubsection.7.3.1)] +/Names [(subsubsection.6.14.1) 664 0 R (subsubsection.6.2.1) 537 0 R (subsubsection.6.3.1) 543 0 R (subsubsection.6.4.1) 549 0 R (subsubsection.6.5.1) 555 0 R (subsubsection.6.6.1) 565 0 R] +/Limits [(subsubsection.6.14.1) (subsubsection.6.6.1)] >> endobj 854 0 obj << -/Names [(subsubsection.8.1.1) 695 0 R (subsubsection.8.2.1) 705 0 R (subsubsection.9.1.1) 738 0 R (subsubsection.9.2.1) 744 0 R (subsubsection.9.3.1) 750 0 R (subsubsection.9.4.1) 761 0 R] -/Limits [(subsubsection.8.1.1) (subsubsection.9.4.1)] +/Names [(subsubsection.6.7.1) 576 0 R (subsubsection.6.8.1) 582 0 R (subsubsection.6.9.1) 592 0 R (subsubsection.7.1.1) 675 0 R (subsubsection.7.2.1) 681 0 R (subsubsection.7.3.1) 690 0 R] +/Limits [(subsubsection.6.7.1) (subsubsection.7.3.1)] >> endobj 855 0 obj << -/Names [(subsubsection.9.5.1) 784 0 R (table.1) 283 0 R (table.10) 422 0 R (table.11) 428 0 R (table.12) 450 0 R (table.13) 456 0 R] -/Limits [(subsubsection.9.5.1) (table.13)] +/Names [(subsubsection.8.1.1) 696 0 R (subsubsection.8.2.1) 706 0 R (subsubsection.9.1.1) 739 0 R (subsubsection.9.2.1) 745 0 R (subsubsection.9.3.1) 751 0 R (subsubsection.9.4.1) 762 0 R] +/Limits [(subsubsection.8.1.1) (subsubsection.9.4.1)] >> endobj 856 0 obj << -/Names [(table.14) 462 0 R (table.15) 468 0 R (table.16) 478 0 R (table.17) 488 0 R (table.18) 494 0 R (table.19) 519 0 R] -/Limits [(table.14) (table.19)] +/Names [(subsubsection.9.5.1) 785 0 R (table.1) 283 0 R (table.10) 422 0 R (table.11) 428 0 R (table.12) 450 0 R (table.13) 456 0 R] +/Limits [(subsubsection.9.5.1) (table.13)] >> endobj 857 0 obj << -/Names [(table.2) 303 0 R (table.20) 530 0 R (table.21) 537 0 R (table.22) 543 0 R (table.23) 549 0 R (table.24) 559 0 R] -/Limits [(table.2) (table.24)] +/Names [(table.14) 462 0 R (table.15) 468 0 R (table.16) 478 0 R (table.17) 488 0 R (table.18) 494 0 R (table.19) 520 0 R] +/Limits [(table.14) (table.19)] >> endobj 858 0 obj << -/Names [(table.25) 565 0 R (table.26) 576 0 R (table.27) 586 0 R (table.28) 597 0 R (table.29) 608 0 R (table.3) 342 0 R] -/Limits [(table.25) (table.3)] +/Names [(table.2) 303 0 R (table.20) 531 0 R (table.21) 538 0 R (table.22) 544 0 R (table.23) 550 0 R (table.24) 560 0 R] +/Limits [(table.2) (table.24)] >> endobj 859 0 obj << -/Names [(table.30) 616 0 R (table.31) 623 0 R (table.32) 625 0 R (table.33) 627 0 R (table.34) 628 0 R (table.35) 638 0 R] -/Limits [(table.30) (table.35)] +/Names [(table.25) 566 0 R (table.26) 577 0 R (table.27) 587 0 R (table.28) 598 0 R (table.29) 609 0 R (table.3) 342 0 R] +/Limits [(table.25) (table.3)] >> endobj 860 0 obj << -/Names [(table.36) 649 0 R (table.37) 662 0 R (table.38) 669 0 R (table.39) 675 0 R (table.4) 372 0 R (table.40) 681 0 R] -/Limits [(table.36) (table.40)] +/Names [(table.30) 617 0 R (table.31) 624 0 R (table.32) 626 0 R (table.33) 628 0 R (table.34) 629 0 R (table.35) 639 0 R] +/Limits [(table.30) (table.35)] >> endobj 861 0 obj << -/Names [(table.41) 690 0 R (table.42) 700 0 R (table.43) 706 0 R (table.44) 730 0 R (table.45) 739 0 R (table.46) 745 0 R] -/Limits [(table.41) (table.46)] +/Names [(table.36) 650 0 R (table.37) 663 0 R (table.38) 670 0 R (table.39) 676 0 R (table.4) 372 0 R (table.40) 682 0 R] +/Limits [(table.36) (table.40)] >> endobj 862 0 obj << -/Names [(table.47) 756 0 R (table.48) 762 0 R (table.49) 765 0 R (table.5) 374 0 R (table.50) 766 0 R (table.51) 772 0 R] -/Limits [(table.47) (table.51)] +/Names [(table.41) 691 0 R (table.42) 701 0 R (table.43) 714 0 R (table.44) 731 0 R (table.45) 740 0 R (table.46) 746 0 R] +/Limits [(table.41) (table.46)] >> endobj 863 0 obj << -/Names [(table.52) 773 0 R (table.53) 778 0 R (table.54) 779 0 R (table.6) 391 0 R (table.7) 393 0 R (table.8) 399 0 R] -/Limits [(table.52) (table.8)] +/Names [(table.47) 757 0 R (table.48) 763 0 R (table.49) 766 0 R (table.5) 374 0 R (table.50) 767 0 R (table.51) 773 0 R] +/Limits [(table.47) (table.51)] >> endobj 864 0 obj << +/Names [(table.52) 774 0 R (table.53) 779 0 R (table.54) 780 0 R (table.6) 391 0 R (table.7) 393 0 R (table.8) 399 0 R] +/Limits [(table.52) (table.8)] +>> +endobj +865 0 obj +<< /Names [(table.9) 412 0 R] /Limits [(table.9) (table.9)] >> endobj -865 0 obj -<< -/Kids [825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R] -/Limits [(Doc-Start) (page.4)] ->> -endobj 866 0 obj << -/Kids [831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R] -/Limits [(page.40) (page.72)] +/Kids [826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R] +/Limits [(Doc-Start) (page.4)] >> endobj 867 0 obj << -/Kids [837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R] -/Limits [(page.73) (subsection.4.8)] +/Kids [832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R] +/Limits [(page.40) (page.72)] >> endobj 868 0 obj << -/Kids [843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R] -/Limits [(subsection.4.9) (subsubsection.4.1.1)] +/Kids [838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R] +/Limits [(page.73) (subsection.4.8)] >> endobj 869 0 obj << -/Kids [849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R] -/Limits [(subsubsection.4.10.1) (subsubsection.9.4.1)] +/Kids [844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R] +/Limits [(subsection.4.9) (subsubsection.4.1.1)] >> endobj 870 0 obj << -/Kids [855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 860 0 R] -/Limits [(subsubsection.9.5.1) (table.40)] +/Kids [850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R] +/Limits [(subsubsection.4.10.1) (subsubsection.9.4.1)] >> endobj 871 0 obj << -/Kids [861 0 R 862 0 R 863 0 R 864 0 R] -/Limits [(table.41) (table.9)] +/Kids [856 0 R 857 0 R 858 0 R 859 0 R 860 0 R 861 0 R] +/Limits [(subsubsection.9.5.1) (table.40)] >> endobj 872 0 obj << -/Kids [865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R] -/Limits [(Doc-Start) (table.40)] +/Kids [862 0 R 863 0 R 864 0 R 865 0 R] +/Limits [(table.41) (table.9)] >> endobj 873 0 obj << -/Kids [871 0 R] -/Limits [(table.41) (table.9)] +/Kids [866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R] +/Limits [(Doc-Start) (table.40)] >> endobj 874 0 obj << -/Kids [872 0 R 873 0 R] -/Limits [(Doc-Start) (table.9)] +/Kids [872 0 R] +/Limits [(table.41) (table.9)] >> endobj 875 0 obj << -/Dests 874 0 R +/Kids [873 0 R 874 0 R] +/Limits [(Doc-Start) (table.9)] >> endobj 876 0 obj << -/Type /Catalog -/Pages 823 0 R -/Outlines 824 0 R -/Names 875 0 R -/PageMode/UseOutlines -/OpenAction 197 0 R +/Dests 875 0 R >> endobj 877 0 obj << +/Type /Catalog +/Pages 824 0 R +/Outlines 825 0 R +/Names 876 0 R +/PageMode/UseOutlines +/OpenAction 197 0 R +>> +endobj +878 0 obj +<< /Author(\376\377\000C\000h\000r\000i\000s\000t\000i\000a\000n\000\040\000R\000e\000i\000c\000h\000,\000\040\000P\000a\000t\000r\000i\000c\000k\000\040\000R\000y\000a\000n\000,\000\040\000R\000i\000m\000m\000a\000\040\000B\000e\000l\000e\000n\000k\000a\000y\000a\000,\000\040\000K\000a\000r\000t\000h\000i\000k\000\040\000N\000a\000t\000a\000r\000a\000j\000a\000n\000\040\000a\000n\000d\000\040\000C\000l\000a\000i\000r\000\040\000B\000l\000a\000c\000k\000e\000t\000e\000r)/Title(\376\377\000O\000M\000O\000P\000\040\000C\000o\000m\000m\000o\000n\000\040\000D\000a\000t\000a\000\040\000M\000o\000d\000e\000l\000\040\000S\000p\000e\000c\000i\000f\000i\000c\000a\000t\000i\000o\000n\000s)/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.18)/Keywords() -/CreationDate (D:20171121081201-05'00') -/ModDate (D:20171121081201-05'00') +/CreationDate (D:20180614152158-04'00') +/ModDate (D:20180614152158-04'00') /Trapped /False -/PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6354 (1.40.18)) +/PTEX.Fullbanner (This is MiKTeX-pdfTeX 2.9.6499 (1.40.18)) >> endobj xref -0 878 +0 879 0000000000 65535 f 0000000015 00000 n -0000023156 00000 n -0001056523 00000 n +0000023159 00000 n +0001057690 00000 n 0000000060 00000 n 0000000121 00000 n -0000023211 00000 n -0001056402 00000 n +0000023214 00000 n +0001057569 00000 n 0000000166 00000 n 0000000242 00000 n -0000027591 00000 n -0001056330 00000 n +0000027594 00000 n +0001057497 00000 n 0000000292 00000 n 0000000502 00000 n -0000027647 00000 n -0001056244 00000 n +0000027650 00000 n +0001057411 00000 n 0000000553 00000 n 0000000668 00000 n -0000030757 00000 n -0001056171 00000 n +0000030760 00000 n +0001057338 00000 n 0000000719 00000 n 0000000862 00000 n -0000041498 00000 n -0001056084 00000 n +0000041501 00000 n +0001057251 00000 n 0000000908 00000 n 0000001026 00000 n -0000047345 00000 n -0001055958 00000 n +0000047348 00000 n +0001057125 00000 n 0000001072 00000 n 0000001227 00000 n -0000052982 00000 n -0001055884 00000 n +0000052985 00000 n +0001057051 00000 n 0000001278 00000 n 0000001340 00000 n -0000118119 00000 n -0001055797 00000 n +0000118126 00000 n +0001056964 00000 n 0000001391 00000 n 0000001468 00000 n -0000126067 00000 n -0001055710 00000 n +0000126074 00000 n +0001056877 00000 n 0000001519 00000 n 0000001576 00000 n -0000126236 00000 n -0001055623 00000 n +0000126243 00000 n +0001056790 00000 n 0000001627 00000 n 0000001722 00000 n -0000133658 00000 n -0001055536 00000 n +0000133665 00000 n +0001056703 00000 n 0000001773 00000 n 0000001903 00000 n -0000137473 00000 n -0001055449 00000 n +0000137480 00000 n +0001056616 00000 n 0000001954 00000 n 0000002041 00000 n -0000146395 00000 n -0001055362 00000 n +0000146402 00000 n +0001056529 00000 n 0000002092 00000 n 0000002197 00000 n -0000149223 00000 n -0001055275 00000 n +0000149210 00000 n +0001056442 00000 n 0000002248 00000 n 0000002358 00000 n -0000151827 00000 n -0001055188 00000 n +0000151814 00000 n +0001056355 00000 n 0000002409 00000 n 0000002550 00000 n -0000154905 00000 n -0001055101 00000 n +0000154892 00000 n +0001056268 00000 n 0000002602 00000 n 0000002697 00000 n -0000161570 00000 n -0001055014 00000 n +0000161425 00000 n +0001056181 00000 n 0000002749 00000 n 0000002864 00000 n -0000161740 00000 n -0001054940 00000 n +0000161595 00000 n +0001056107 00000 n 0000002916 00000 n 0000003046 00000 n -0000164855 00000 n -0001054815 00000 n +0000164844 00000 n +0001055982 00000 n 0000003092 00000 n 0000003227 00000 n -0000171891 00000 n -0001054754 00000 n +0000171879 00000 n +0001055921 00000 n 0000003278 00000 n 0000003358 00000 n -0000176701 00000 n -0001054626 00000 n +0000176918 00000 n +0001055793 00000 n 0000003404 00000 n 0000003605 00000 n -0000208121 00000 n -0001054552 00000 n +0000208338 00000 n +0001055719 00000 n 0000003656 00000 n 0000003713 00000 n -0000213269 00000 n -0001054465 00000 n +0000213486 00000 n +0001055632 00000 n 0000003764 00000 n 0000003884 00000 n -0000216443 00000 n -0001054376 00000 n +0000216660 00000 n +0001055543 00000 n 0000003935 00000 n 0000004003 00000 n -0000218976 00000 n -0001054285 00000 n +0000219193 00000 n +0001055452 00000 n 0000004055 00000 n 0000004108 00000 n -0000222035 00000 n -0001054193 00000 n +0000222249 00000 n +0001055360 00000 n 0000004160 00000 n 0000004271 00000 n -0000225738 00000 n -0001054101 00000 n +0000225842 00000 n +0001055268 00000 n 0000004323 00000 n 0000004454 00000 n -0000231451 00000 n -0001054009 00000 n +0000231555 00000 n +0001055176 00000 n 0000004506 00000 n 0000004602 00000 n -0000237809 00000 n -0001053917 00000 n +0000237913 00000 n +0001055084 00000 n 0000004654 00000 n 0000004760 00000 n -0000243155 00000 n -0001053825 00000 n +0000243261 00000 n +0001054992 00000 n 0000004812 00000 n 0000004943 00000 n -0000249123 00000 n -0001053733 00000 n +0000249236 00000 n +0001054900 00000 n 0000004996 00000 n 0000005079 00000 n -0000255229 00000 n -0001053641 00000 n +0000255444 00000 n +0001054808 00000 n 0000005132 00000 n 0000005180 00000 n -0000264256 00000 n -0001053549 00000 n +0000264470 00000 n +0001054716 00000 n 0000005233 00000 n 0000005304 00000 n -0000269009 00000 n -0001053457 00000 n +0000269217 00000 n +0001054624 00000 n 0000005357 00000 n 0000005440 00000 n -0000275640 00000 n -0001053379 00000 n +0000275848 00000 n +0001054546 00000 n 0000005493 00000 n 0000005609 00000 n -0000275811 00000 n -0001053248 00000 n +0000276019 00000 n +0001054415 00000 n 0000005656 00000 n 0000005886 00000 n -0000304528 00000 n -0001053169 00000 n +0000304736 00000 n +0001054336 00000 n 0000005938 00000 n 0000006006 00000 n -0000307658 00000 n -0001053076 00000 n +0000307866 00000 n +0001054243 00000 n 0000006058 00000 n 0000006134 00000 n -0000310576 00000 n -0001052997 00000 n +0000310784 00000 n +0001054164 00000 n 0000006186 00000 n 0000006254 00000 n -0000314347 00000 n -0001052865 00000 n +0000314662 00000 n +0001054032 00000 n 0000006301 00000 n 0000006546 00000 n -0000314403 00000 n -0001052786 00000 n +0000314718 00000 n +0001053953 00000 n 0000006598 00000 n 0000006717 00000 n -0000317122 00000 n -0001052707 00000 n +0000320470 00000 n +0001053874 00000 n 0000006769 00000 n 0000006817 00000 n -0000330366 00000 n -0001052589 00000 n +0000331053 00000 n +0001053756 00000 n 0000006864 00000 n 0000007043 00000 n -0000493399 00000 n -0001052510 00000 n +0000494086 00000 n +0001053677 00000 n 0000007095 00000 n 0000007153 00000 n -0000496259 00000 n -0001052417 00000 n +0000496946 00000 n +0001053584 00000 n 0000007205 00000 n 0000007316 00000 n -0000499188 00000 n -0001052324 00000 n +0000499875 00000 n +0001053491 00000 n 0000007368 00000 n 0000007439 00000 n -0000783263 00000 n -0001052231 00000 n +0000783950 00000 n +0001053398 00000 n 0000007491 00000 n 0000007562 00000 n -0000791201 00000 n -0001052152 00000 n +0000791888 00000 n +0001053319 00000 n 0000007614 00000 n 0000007710 00000 n 0000009277 00000 n @@ -9808,650 +9800,651 @@ xref 0000015459 00000 n 0000015613 00000 n 0000015767 00000 n -0000020479 00000 n +0000020482 00000 n 0000016088 00000 n 0000007760 00000 n 0000015921 00000 n 0000015978 00000 n -0001048483 00000 n -0001048828 00000 n +0001049650 00000 n +0001049995 00000 n 0000016031 00000 n -0001048140 00000 n -0001047970 00000 n -0001048310 00000 n -0001050181 00000 n -0000020630 00000 n -0000020786 00000 n -0000020942 00000 n -0000021092 00000 n -0000021248 00000 n -0000021404 00000 n -0000021560 00000 n -0000021716 00000 n -0000021872 00000 n -0000019007 00000 n -0000022054 00000 n -0000022251 00000 n -0000022477 00000 n -0000022687 00000 n -0000022902 00000 n -0000027370 00000 n -0000023266 00000 n -0000018763 00000 n +0001049307 00000 n +0001049137 00000 n +0001049477 00000 n +0001051348 00000 n +0000020633 00000 n +0000020789 00000 n +0000020945 00000 n +0000021095 00000 n +0000021251 00000 n +0000021407 00000 n +0000021563 00000 n +0000021719 00000 n +0000021875 00000 n +0000019010 00000 n +0000022057 00000 n +0000022254 00000 n +0000022480 00000 n +0000022690 00000 n +0000022905 00000 n +0000027373 00000 n +0000023269 00000 n +0000018766 00000 n 0000016212 00000 n -0000023099 00000 n -0001049834 00000 n -0000019886 00000 n -0000027703 00000 n -0000027238 00000 n -0000023421 00000 n -0000027534 00000 n -0000030983 00000 n -0000030588 00000 n -0000027814 00000 n -0000030700 00000 n -0000030813 00000 n -0000030870 00000 n -0000030927 00000 n -0000034738 00000 n -0000034345 00000 n -0000031094 00000 n -0000034457 00000 n -0000034514 00000 n -0000034567 00000 n -0000034624 00000 n -0000034681 00000 n -0000038612 00000 n -0000038333 00000 n -0000034836 00000 n -0000038445 00000 n -0000038502 00000 n -0000038555 00000 n -0000041611 00000 n -0000041272 00000 n -0000038710 00000 n -0000041384 00000 n -0000041441 00000 n -0000041554 00000 n -0001050298 00000 n -0000044422 00000 n -0000044253 00000 n -0000041722 00000 n -0000044365 00000 n -0000046888 00000 n -0000047087 00000 n -0000050849 00000 n -0000051047 00000 n -0000051253 00000 n -0000051466 00000 n -0000051671 00000 n -0000051879 00000 n -0000052087 00000 n -0000052301 00000 n -0000052505 00000 n -0000052715 00000 n -0000047401 00000 n -0000046748 00000 n -0000044494 00000 n -0000047288 00000 n -0000053543 00000 n -0000053038 00000 n -0000050645 00000 n -0000047486 00000 n -0000052925 00000 n -0000105598 00000 n -0000053431 00000 n -0000053136 00000 n -0000105479 00000 n -0000105536 00000 n -0000108227 00000 n -0000108441 00000 n -0000108641 00000 n -0000109016 00000 n -0000108079 00000 n -0000105706 00000 n -0000108845 00000 n -0000108902 00000 n -0000108959 00000 n -0000113187 00000 n -0000113396 00000 n -0000113610 00000 n -0000113820 00000 n -0000114030 00000 n -0000114288 00000 n -0000114559 00000 n -0000113015 00000 n -0000109101 00000 n -0000114502 00000 n -0001050415 00000 n -0000117632 00000 n -0000117846 00000 n -0000119554 00000 n -0000119775 00000 n -0000119994 00000 n -0000120214 00000 n -0000120434 00000 n -0000120651 00000 n -0000120870 00000 n -0000121091 00000 n -0000121308 00000 n -0000121528 00000 n -0000121751 00000 n -0000118342 00000 n -0000117492 00000 n -0000114644 00000 n -0000118062 00000 n -0000118171 00000 n -0000118228 00000 n -0000118285 00000 n -0000121974 00000 n -0000122192 00000 n -0000124944 00000 n -0000125167 00000 n -0000122469 00000 n -0000119326 00000 n -0000118453 00000 n -0000122412 00000 n -0000125389 00000 n -0000125603 00000 n -0000125809 00000 n -0000129222 00000 n -0000126348 00000 n -0000124780 00000 n -0000122541 00000 n -0000126010 00000 n -0000126122 00000 n -0000126179 00000 n -0000126292 00000 n -0000129593 00000 n -0000129090 00000 n -0000126459 00000 n -0000129422 00000 n -0000129479 00000 n -0000129536 00000 n -0000131248 00000 n -0000131079 00000 n -0000129691 00000 n -0000131191 00000 n -0000132994 00000 n -0000133199 00000 n -0000133400 00000 n -0000136535 00000 n -0000133771 00000 n -0000132846 00000 n -0000131320 00000 n -0000133601 00000 n -0000133714 00000 n -0001050532 00000 n -0000136741 00000 n -0000136947 00000 n -0000137156 00000 n -0000137586 00000 n -0000136379 00000 n -0000133856 00000 n -0000137360 00000 n -0000137417 00000 n -0000137529 00000 n -0000140331 00000 n -0000140048 00000 n -0000137697 00000 n -0000140160 00000 n -0000140217 00000 n -0000140274 00000 n -0000141473 00000 n -0000141304 00000 n -0000140429 00000 n -0000141416 00000 n -0000142678 00000 n -0000142509 00000 n -0000141545 00000 n -0000142621 00000 n -0000143860 00000 n -0000143691 00000 n -0000142750 00000 n -0000143803 00000 n -0000145082 00000 n -0000144913 00000 n -0000143932 00000 n -0000145025 00000 n -0001050649 00000 n -0000146508 00000 n -0000146226 00000 n -0000145154 00000 n -0000146338 00000 n -0000146451 00000 n -0000149336 00000 n -0000148997 00000 n -0000146593 00000 n -0000149109 00000 n -0000149166 00000 n -0000149279 00000 n -0000151940 00000 n -0000151605 00000 n -0000149447 00000 n -0000151717 00000 n -0000151774 00000 n -0000151883 00000 n -0000155018 00000 n -0000154683 00000 n -0000152051 00000 n -0000154795 00000 n -0000154852 00000 n -0000154961 00000 n -0000158184 00000 n -0000157958 00000 n -0000155129 00000 n -0000158070 00000 n -0000158127 00000 n -0000161795 00000 n -0000161401 00000 n -0000158282 00000 n -0000161513 00000 n -0000161626 00000 n -0000161683 00000 n -0001050766 00000 n -0000164282 00000 n -0000164481 00000 n -0000166440 00000 n -0000164911 00000 n -0000164142 00000 n -0000161906 00000 n -0000164684 00000 n -0000164741 00000 n -0000164798 00000 n -0000172004 00000 n -0000166328 00000 n -0000165022 00000 n -0000171834 00000 n -0000171947 00000 n -0000173725 00000 n -0000173924 00000 n -0000174135 00000 n -0000174336 00000 n -0000174534 00000 n -0000174743 00000 n -0000174955 00000 n -0000175161 00000 n -0000175369 00000 n -0000175582 00000 n -0000175786 00000 n -0000175982 00000 n -0000176181 00000 n -0000176384 00000 n -0000177614 00000 n -0000176757 00000 n -0000173489 00000 n -0000172125 00000 n -0000176591 00000 n -0000176648 00000 n -0000208234 00000 n -0000177502 00000 n -0000176868 00000 n -0000208064 00000 n -0000208177 00000 n -0000210543 00000 n -0000210374 00000 n -0000208355 00000 n -0000210486 00000 n -0001049513 00000 n -0000213382 00000 n -0000213043 00000 n -0000210641 00000 n -0000213155 00000 n -0000213212 00000 n -0000213325 00000 n -0001050883 00000 n -0000216556 00000 n -0000216221 00000 n -0000213493 00000 n -0000216333 00000 n -0000216390 00000 n -0000216499 00000 n -0000219090 00000 n -0000218750 00000 n -0000216667 00000 n -0000218862 00000 n -0000218919 00000 n -0000219033 00000 n -0000222149 00000 n -0000221809 00000 n -0000219201 00000 n -0000221921 00000 n -0000221978 00000 n -0000222092 00000 n -0000225795 00000 n -0000225513 00000 n -0000222260 00000 n -0000225625 00000 n -0000225682 00000 n -0000228047 00000 n -0000227821 00000 n -0000225906 00000 n -0000227933 00000 n -0000227990 00000 n -0000231564 00000 n -0000231229 00000 n -0000228132 00000 n -0000231341 00000 n -0000231398 00000 n -0000231507 00000 n -0001051000 00000 n -0000233940 00000 n -0000233771 00000 n -0000231675 00000 n -0000233883 00000 n -0000237922 00000 n -0000237583 00000 n -0000234012 00000 n -0000237695 00000 n -0000237752 00000 n -0000237866 00000 n -0000240425 00000 n -0000240199 00000 n -0000238033 00000 n -0000240311 00000 n -0000240368 00000 n -0000243269 00000 n -0000242986 00000 n -0000240523 00000 n -0000243098 00000 n -0000243212 00000 n -0000246436 00000 n -0000246210 00000 n -0000243367 00000 n -0000246322 00000 n -0000246379 00000 n -0000248826 00000 n -0000249233 00000 n -0000248694 00000 n -0000246534 00000 n -0000249066 00000 n -0000249176 00000 n -0001051117 00000 n -0000252641 00000 n -0000252415 00000 n -0000249318 00000 n -0000252527 00000 n -0000252584 00000 n -0000255343 00000 n -0000255060 00000 n -0000252739 00000 n -0000255172 00000 n -0000255286 00000 n -0000258983 00000 n -0000258590 00000 n -0000255441 00000 n -0000258702 00000 n -0000258759 00000 n -0000258812 00000 n -0000258869 00000 n -0000258926 00000 n -0000261409 00000 n -0000260845 00000 n -0000259081 00000 n -0000260957 00000 n -0000261014 00000 n -0001049663 00000 n -0000261067 00000 n -0000261124 00000 n -0000261181 00000 n -0000261238 00000 n -0000261295 00000 n -0000261352 00000 n -0000264370 00000 n -0000263977 00000 n -0000261520 00000 n -0000264089 00000 n -0000264146 00000 n -0000264199 00000 n -0001049000 00000 n -0001049170 00000 n -0001050008 00000 n -0000264313 00000 n -0000266829 00000 n -0000266603 00000 n -0000264520 00000 n -0000266715 00000 n -0000266772 00000 n -0001051234 00000 n -0000269123 00000 n -0000268840 00000 n -0000266927 00000 n -0000268952 00000 n -0000269066 00000 n -0000272046 00000 n -0000271820 00000 n -0000269221 00000 n -0000271932 00000 n -0000271989 00000 n -0000274980 00000 n -0000275181 00000 n -0000275383 00000 n -0000275868 00000 n -0000274832 00000 n -0000272144 00000 n -0000275583 00000 n -0000275697 00000 n -0000275754 00000 n -0000277086 00000 n -0000304642 00000 n -0000276974 00000 n -0000275979 00000 n -0000304471 00000 n -0000304585 00000 n -0000307772 00000 n -0000307432 00000 n -0000304763 00000 n -0000307544 00000 n -0000307601 00000 n -0000307715 00000 n -0000310690 00000 n -0000310350 00000 n -0000307883 00000 n -0000310462 00000 n -0000310519 00000 n -0000310633 00000 n -0001051351 00000 n -0000313827 00000 n -0000314037 00000 n -0000314517 00000 n -0000313687 00000 n -0000310801 00000 n -0000314233 00000 n -0000314290 00000 n -0000314460 00000 n -0000317179 00000 n -0000316896 00000 n -0000314628 00000 n -0000317008 00000 n -0000317065 00000 n -0000320055 00000 n -0000319829 00000 n -0000317290 00000 n -0000319941 00000 n -0000319998 00000 n -0000323311 00000 n -0000323028 00000 n -0000320127 00000 n -0000323140 00000 n -0000323197 00000 n -0000323254 00000 n -0000327297 00000 n -0000327510 00000 n -0000327700 00000 n -0000327959 00000 n -0000327149 00000 n -0000323396 00000 n -0000327902 00000 n -0000329293 00000 n -0000329492 00000 n -0000329701 00000 n -0000329902 00000 n -0000330103 00000 n -0000331175 00000 n -0000493271 00000 n -0000330423 00000 n -0000329129 00000 n -0000328044 00000 n -0000330309 00000 n -0001051468 00000 n -0000493512 00000 n -0000331048 00000 n -0000330521 00000 n -0000493342 00000 n -0000493456 00000 n -0000492496 00000 n -0000495936 00000 n -0000498860 00000 n -0000496371 00000 n -0000495804 00000 n -0000493633 00000 n -0000496145 00000 n -0000496202 00000 n -0000496315 00000 n -0000499302 00000 n -0000498728 00000 n -0000496482 00000 n -0000499074 00000 n -0000499131 00000 n -0000499245 00000 n -0000502708 00000 n -0000502482 00000 n -0000499413 00000 n -0000502594 00000 n -0000502651 00000 n -0000503914 00000 n -0000783377 00000 n -0000503802 00000 n -0000502806 00000 n -0000783206 00000 n -0000783320 00000 n -0000786083 00000 n -0000785687 00000 n -0000783498 00000 n -0000785799 00000 n -0000785856 00000 n -0000785912 00000 n -0001048656 00000 n -0001049342 00000 n -0000785969 00000 n -0000786026 00000 n -0001051585 00000 n -0000788492 00000 n -0000788210 00000 n -0000786220 00000 n -0000788322 00000 n -0000788379 00000 n -0000788436 00000 n -0000791314 00000 n -0000790979 00000 n -0000788603 00000 n -0000791091 00000 n -0000791148 00000 n -0000791257 00000 n -0000793078 00000 n -0000792853 00000 n -0000791451 00000 n -0000792965 00000 n -0000793022 00000 n -0001047328 00000 n -0000793176 00000 n -0000793511 00000 n -0001047865 00000 n -0000794147 00000 n -0000794170 00000 n -0000794983 00000 n -0000795102 00000 n -0000795127 00000 n -0000795152 00000 n -0000795465 00000 n -0000796688 00000 n -0000797921 00000 n -0000798374 00000 n -0000798755 00000 n -0000799298 00000 n -0000806246 00000 n -0000806464 00000 n -0000838452 00000 n -0000838914 00000 n -0000868006 00000 n -0000868389 00000 n -0000907446 00000 n -0000908137 00000 n -0000932315 00000 n -0000932585 00000 n -0000958116 00000 n -0000958598 00000 n -0000975487 00000 n -0000975793 00000 n -0001000629 00000 n -0001000899 00000 n -0001028840 00000 n -0001029272 00000 n -0001046979 00000 n -0001051686 00000 n -0001051804 00000 n -0001051922 00000 n -0001051999 00000 n -0001052077 00000 n -0001056594 00000 n -0001056768 00000 n -0001056938 00000 n -0001057107 00000 n -0001057277 00000 n -0001057445 00000 n -0001057613 00000 n -0001057783 00000 n -0001057952 00000 n -0001058122 00000 n -0001058291 00000 n -0001058461 00000 n -0001058630 00000 n -0001058797 00000 n -0001059055 00000 n -0001059236 00000 n -0001059434 00000 n -0001059657 00000 n -0001059877 00000 n -0001060104 00000 n -0001060331 00000 n -0001060557 00000 n -0001060783 00000 n -0001061034 00000 n -0001061300 00000 n -0001061570 00000 n -0001061836 00000 n -0001062108 00000 n -0001062376 00000 n -0001062642 00000 n -0001062908 00000 n -0001063107 00000 n -0001063285 00000 n -0001063461 00000 n -0001063637 00000 n -0001063815 00000 n -0001063992 00000 n -0001064170 00000 n -0001064347 00000 n -0001064521 00000 n -0001064601 00000 n -0001064711 00000 n -0001064820 00000 n -0001064936 00000 n -0001065064 00000 n -0001065198 00000 n -0001065320 00000 n -0001065414 00000 n -0001065526 00000 n -0001065596 00000 n -0001065675 00000 n -0001065713 00000 n -0001065841 00000 n +0000023102 00000 n +0001051001 00000 n +0000019889 00000 n +0000027706 00000 n +0000027241 00000 n +0000023424 00000 n +0000027537 00000 n +0000030986 00000 n +0000030591 00000 n +0000027817 00000 n +0000030703 00000 n +0000030816 00000 n +0000030873 00000 n +0000030930 00000 n +0000034741 00000 n +0000034348 00000 n +0000031097 00000 n +0000034460 00000 n +0000034517 00000 n +0000034570 00000 n +0000034627 00000 n +0000034684 00000 n +0000038615 00000 n +0000038336 00000 n +0000034839 00000 n +0000038448 00000 n +0000038505 00000 n +0000038558 00000 n +0000041614 00000 n +0000041275 00000 n +0000038713 00000 n +0000041387 00000 n +0000041444 00000 n +0000041557 00000 n +0001051465 00000 n +0000044425 00000 n +0000044256 00000 n +0000041725 00000 n +0000044368 00000 n +0000046891 00000 n +0000047090 00000 n +0000050852 00000 n +0000051050 00000 n +0000051256 00000 n +0000051469 00000 n +0000051674 00000 n +0000051882 00000 n +0000052090 00000 n +0000052304 00000 n +0000052508 00000 n +0000052718 00000 n +0000047404 00000 n +0000046751 00000 n +0000044497 00000 n +0000047291 00000 n +0000053546 00000 n +0000053041 00000 n +0000050648 00000 n +0000047489 00000 n +0000052928 00000 n +0000105601 00000 n +0000053434 00000 n +0000053139 00000 n +0000105482 00000 n +0000105539 00000 n +0000108230 00000 n +0000108444 00000 n +0000108644 00000 n +0000109019 00000 n +0000108082 00000 n +0000105709 00000 n +0000108848 00000 n +0000108905 00000 n +0000108962 00000 n +0000113190 00000 n +0000113399 00000 n +0000113613 00000 n +0000113823 00000 n +0000114033 00000 n +0000114291 00000 n +0000114562 00000 n +0000113018 00000 n +0000109104 00000 n +0000114505 00000 n +0001051582 00000 n +0000117639 00000 n +0000117853 00000 n +0000119561 00000 n +0000119782 00000 n +0000120001 00000 n +0000120221 00000 n +0000120441 00000 n +0000120658 00000 n +0000120877 00000 n +0000121098 00000 n +0000121315 00000 n +0000121535 00000 n +0000121758 00000 n +0000118349 00000 n +0000117499 00000 n +0000114647 00000 n +0000118069 00000 n +0000118178 00000 n +0000118235 00000 n +0000118292 00000 n +0000121981 00000 n +0000122199 00000 n +0000124951 00000 n +0000125174 00000 n +0000122476 00000 n +0000119333 00000 n +0000118460 00000 n +0000122419 00000 n +0000125396 00000 n +0000125610 00000 n +0000125816 00000 n +0000129229 00000 n +0000126355 00000 n +0000124787 00000 n +0000122548 00000 n +0000126017 00000 n +0000126129 00000 n +0000126186 00000 n +0000126299 00000 n +0000129600 00000 n +0000129097 00000 n +0000126466 00000 n +0000129429 00000 n +0000129486 00000 n +0000129543 00000 n +0000131255 00000 n +0000131086 00000 n +0000129698 00000 n +0000131198 00000 n +0000133001 00000 n +0000133206 00000 n +0000133407 00000 n +0000136542 00000 n +0000133778 00000 n +0000132853 00000 n +0000131327 00000 n +0000133608 00000 n +0000133721 00000 n +0001051699 00000 n +0000136748 00000 n +0000136954 00000 n +0000137163 00000 n +0000137593 00000 n +0000136386 00000 n +0000133863 00000 n +0000137367 00000 n +0000137424 00000 n +0000137536 00000 n +0000140338 00000 n +0000140055 00000 n +0000137704 00000 n +0000140167 00000 n +0000140224 00000 n +0000140281 00000 n +0000141480 00000 n +0000141311 00000 n +0000140436 00000 n +0000141423 00000 n +0000142685 00000 n +0000142516 00000 n +0000141552 00000 n +0000142628 00000 n +0000143867 00000 n +0000143698 00000 n +0000142757 00000 n +0000143810 00000 n +0000145089 00000 n +0000144920 00000 n +0000143939 00000 n +0000145032 00000 n +0001051816 00000 n +0000146515 00000 n +0000146233 00000 n +0000145161 00000 n +0000146345 00000 n +0000146458 00000 n +0000149323 00000 n +0000148984 00000 n +0000146600 00000 n +0000149096 00000 n +0000149153 00000 n +0000149266 00000 n +0000151927 00000 n +0000151592 00000 n +0000149434 00000 n +0000151704 00000 n +0000151761 00000 n +0000151870 00000 n +0000155005 00000 n +0000154670 00000 n +0000152038 00000 n +0000154782 00000 n +0000154839 00000 n +0000154948 00000 n +0000158171 00000 n +0000157945 00000 n +0000155116 00000 n +0000158057 00000 n +0000158114 00000 n +0000161650 00000 n +0000161256 00000 n +0000158269 00000 n +0000161368 00000 n +0000161481 00000 n +0000161538 00000 n +0001051933 00000 n +0000164271 00000 n +0000164470 00000 n +0000166428 00000 n +0000164900 00000 n +0000164131 00000 n +0000161761 00000 n +0000164673 00000 n +0000164730 00000 n +0000164787 00000 n +0000171992 00000 n +0000166316 00000 n +0000165011 00000 n +0000171822 00000 n +0000171935 00000 n +0000173735 00000 n +0000173934 00000 n +0000174145 00000 n +0000174346 00000 n +0000174544 00000 n +0000174753 00000 n +0000174958 00000 n +0000175170 00000 n +0000175376 00000 n +0000175584 00000 n +0000175796 00000 n +0000175999 00000 n +0000176195 00000 n +0000176396 00000 n +0000176599 00000 n +0000177831 00000 n +0000176974 00000 n +0000173491 00000 n +0000172113 00000 n +0000176808 00000 n +0000176865 00000 n +0000208451 00000 n +0000177719 00000 n +0000177085 00000 n +0000208281 00000 n +0000208394 00000 n +0000210760 00000 n +0000210591 00000 n +0000208572 00000 n +0000210703 00000 n +0001050680 00000 n +0000213599 00000 n +0000213260 00000 n +0000210858 00000 n +0000213372 00000 n +0000213429 00000 n +0000213542 00000 n +0001052050 00000 n +0000216773 00000 n +0000216438 00000 n +0000213710 00000 n +0000216550 00000 n +0000216607 00000 n +0000216716 00000 n +0000219307 00000 n +0000218967 00000 n +0000216884 00000 n +0000219079 00000 n +0000219136 00000 n +0000219250 00000 n +0000222363 00000 n +0000222023 00000 n +0000219418 00000 n +0000222135 00000 n +0000222192 00000 n +0000222306 00000 n +0000225899 00000 n +0000225617 00000 n +0000222474 00000 n +0000225729 00000 n +0000225786 00000 n +0000228151 00000 n +0000227925 00000 n +0000226010 00000 n +0000228037 00000 n +0000228094 00000 n +0000231668 00000 n +0000231333 00000 n +0000228236 00000 n +0000231445 00000 n +0000231502 00000 n +0000231611 00000 n +0001052167 00000 n +0000234044 00000 n +0000233875 00000 n +0000231779 00000 n +0000233987 00000 n +0000238026 00000 n +0000237687 00000 n +0000234116 00000 n +0000237799 00000 n +0000237856 00000 n +0000237970 00000 n +0000240531 00000 n +0000240305 00000 n +0000238137 00000 n +0000240417 00000 n +0000240474 00000 n +0000243375 00000 n +0000243092 00000 n +0000240629 00000 n +0000243204 00000 n +0000243318 00000 n +0000246542 00000 n +0000246316 00000 n +0000243473 00000 n +0000246428 00000 n +0000246485 00000 n +0000248939 00000 n +0000249346 00000 n +0000248807 00000 n +0000246640 00000 n +0000249179 00000 n +0000249289 00000 n +0001052284 00000 n +0000252648 00000 n +0000252422 00000 n +0000249431 00000 n +0000252534 00000 n +0000252591 00000 n +0000255557 00000 n +0000255275 00000 n +0000252746 00000 n +0000255387 00000 n +0000255501 00000 n +0000259197 00000 n +0000258804 00000 n +0000255655 00000 n +0000258916 00000 n +0000258973 00000 n +0000259026 00000 n +0000259083 00000 n +0000259140 00000 n +0000261623 00000 n +0000261059 00000 n +0000259295 00000 n +0000261171 00000 n +0000261228 00000 n +0001050830 00000 n +0000261281 00000 n +0000261338 00000 n +0000261395 00000 n +0000261452 00000 n +0000261509 00000 n +0000261566 00000 n +0000264584 00000 n +0000264191 00000 n +0000261734 00000 n +0000264303 00000 n +0000264360 00000 n +0000264413 00000 n +0001050167 00000 n +0001050337 00000 n +0001051175 00000 n +0000264527 00000 n +0000267037 00000 n +0000266811 00000 n +0000264734 00000 n +0000266923 00000 n +0000266980 00000 n +0001052401 00000 n +0000269331 00000 n +0000269048 00000 n +0000267135 00000 n +0000269160 00000 n +0000269274 00000 n +0000272254 00000 n +0000272028 00000 n +0000269429 00000 n +0000272140 00000 n +0000272197 00000 n +0000275188 00000 n +0000275389 00000 n +0000275591 00000 n +0000276076 00000 n +0000275040 00000 n +0000272352 00000 n +0000275791 00000 n +0000275905 00000 n +0000275962 00000 n +0000277294 00000 n +0000304850 00000 n +0000277182 00000 n +0000276187 00000 n +0000304679 00000 n +0000304793 00000 n +0000307980 00000 n +0000307640 00000 n +0000304971 00000 n +0000307752 00000 n +0000307809 00000 n +0000307923 00000 n +0000310898 00000 n +0000310558 00000 n +0000308091 00000 n +0000310670 00000 n +0000310727 00000 n +0000310841 00000 n +0001052518 00000 n +0000314142 00000 n +0000314352 00000 n +0000314832 00000 n +0000314002 00000 n +0000311009 00000 n +0000314548 00000 n +0000314605 00000 n +0000314775 00000 n +0000317690 00000 n +0000317464 00000 n +0000314943 00000 n +0000317576 00000 n +0000317633 00000 n +0000320580 00000 n +0000320301 00000 n +0000317788 00000 n +0000320413 00000 n +0000320523 00000 n +0000323756 00000 n +0000323530 00000 n +0000320665 00000 n +0000323642 00000 n +0000323699 00000 n +0000327635 00000 n +0000327848 00000 n +0000328038 00000 n +0000328354 00000 n +0000327487 00000 n +0000323841 00000 n +0000328240 00000 n +0000328297 00000 n +0000329980 00000 n +0000330179 00000 n +0000330388 00000 n +0000330589 00000 n +0000330790 00000 n +0000331862 00000 n +0000493958 00000 n +0000331110 00000 n +0000329816 00000 n +0000328439 00000 n +0000330996 00000 n +0001052635 00000 n +0000494199 00000 n +0000331735 00000 n +0000331208 00000 n +0000494029 00000 n +0000494143 00000 n +0000493183 00000 n +0000496623 00000 n +0000499547 00000 n +0000497058 00000 n +0000496491 00000 n +0000494320 00000 n +0000496832 00000 n +0000496889 00000 n +0000497002 00000 n +0000499989 00000 n +0000499415 00000 n +0000497169 00000 n +0000499761 00000 n +0000499818 00000 n +0000499932 00000 n +0000503395 00000 n +0000503169 00000 n +0000500100 00000 n +0000503281 00000 n +0000503338 00000 n +0000504601 00000 n +0000784064 00000 n +0000504489 00000 n +0000503493 00000 n +0000783893 00000 n +0000784007 00000 n +0000786770 00000 n +0000786374 00000 n +0000784185 00000 n +0000786486 00000 n +0000786543 00000 n +0000786599 00000 n +0001049823 00000 n +0001050509 00000 n +0000786656 00000 n +0000786713 00000 n +0001052752 00000 n +0000789179 00000 n +0000788897 00000 n +0000786907 00000 n +0000789009 00000 n +0000789066 00000 n +0000789123 00000 n +0000792001 00000 n +0000791666 00000 n +0000789290 00000 n +0000791778 00000 n +0000791835 00000 n +0000791944 00000 n +0000793765 00000 n +0000793540 00000 n +0000792138 00000 n +0000793652 00000 n +0000793709 00000 n +0001048495 00000 n +0000793863 00000 n +0000794198 00000 n +0001049032 00000 n +0000794834 00000 n +0000794857 00000 n +0000795670 00000 n +0000795789 00000 n +0000795814 00000 n +0000795839 00000 n +0000796152 00000 n +0000797375 00000 n +0000798608 00000 n +0000799061 00000 n +0000799442 00000 n +0000799985 00000 n +0000806933 00000 n +0000807151 00000 n +0000839139 00000 n +0000839601 00000 n +0000868693 00000 n +0000869076 00000 n +0000908133 00000 n +0000908824 00000 n +0000933002 00000 n +0000933272 00000 n +0000958803 00000 n +0000959285 00000 n +0000976645 00000 n +0000976960 00000 n +0001001796 00000 n +0001002066 00000 n +0001030007 00000 n +0001030439 00000 n +0001048146 00000 n +0001052853 00000 n +0001052971 00000 n +0001053089 00000 n +0001053166 00000 n +0001053244 00000 n +0001057761 00000 n +0001057935 00000 n +0001058105 00000 n +0001058274 00000 n +0001058444 00000 n +0001058612 00000 n +0001058780 00000 n +0001058950 00000 n +0001059119 00000 n +0001059289 00000 n +0001059458 00000 n +0001059628 00000 n +0001059797 00000 n +0001059964 00000 n +0001060222 00000 n +0001060403 00000 n +0001060601 00000 n +0001060824 00000 n +0001061044 00000 n +0001061271 00000 n +0001061498 00000 n +0001061724 00000 n +0001061950 00000 n +0001062201 00000 n +0001062467 00000 n +0001062737 00000 n +0001063003 00000 n +0001063275 00000 n +0001063543 00000 n +0001063809 00000 n +0001064075 00000 n +0001064274 00000 n +0001064452 00000 n +0001064628 00000 n +0001064804 00000 n +0001064982 00000 n +0001065159 00000 n +0001065337 00000 n +0001065514 00000 n +0001065688 00000 n +0001065768 00000 n +0001065878 00000 n +0001065987 00000 n +0001066103 00000 n +0001066231 00000 n +0001066365 00000 n +0001066487 00000 n +0001066581 00000 n +0001066693 00000 n +0001066763 00000 n +0001066842 00000 n +0001066880 00000 n +0001067008 00000 n trailer -<< /Size 878 -/Root 876 0 R -/Info 877 0 R -/ID [<14B55B680B9D9C412E825A7F09CDF426> <14B55B680B9D9C412E825A7F09CDF426>] >> +<< /Size 879 +/Root 877 0 R +/Info 878 0 R +/ID [<266635EDB975CD09E6F67B9BD2F74D71> <266635EDB975CD09E6F67B9BD2F74D71>] >> startxref -1066784 +1067951 %%EOF diff --git a/Oracle/OMOP CDM oracle constraints.txt b/Oracle/OMOP CDM oracle constraints.txt index c6d4134..915439c 100644 --- a/Oracle/OMOP CDM oracle constraints.txt +++ b/Oracle/OMOP CDM oracle constraints.txt @@ -2,7 +2,7 @@ # Copyright 2014 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ oracle script to create foreign key constraints within OMOP common data model, version 5.3.0 -last revised: 15-November-2017 +last revised: 14-June-2018 author: Patrick Ryan, Clair Blacketer @@ -80,12 +80,16 @@ ALTER TABLE relationship ADD CONSTRAINT fpk_relationship_reverse FOREIGN KEY (re ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_concept FOREIGN KEY (concept_id) REFERENCES concept (concept_id); +ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_language FOREIGN KEY (language_concept_id) REFERENCES concept (concept_id); + ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_1 FOREIGN KEY (ancestor_concept_id) REFERENCES concept (concept_id); ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_2 FOREIGN KEY (descendant_concept_id) REFERENCES concept (concept_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_1 FOREIGN KEY (source_vocabulary_id) REFERENCES vocabulary (vocabulary_id); +ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_concept_id FOREIGN KEY (source_concept_id) REFERENCES concept (concept_id); + ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_2 FOREIGN KEY (target_vocabulary_id) REFERENCES vocabulary (vocabulary_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_c_1 FOREIGN KEY (target_concept_id) REFERENCES concept (concept_id); @@ -102,6 +106,10 @@ ALTER TABLE drug_strength ADD CONSTRAINT fpk_drug_strength_unit_3 FOREIGN KEY (d ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_definition_concept FOREIGN KEY (definition_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_subject_concept FOREIGN KEY (subject_concept_id) REFERENCES concept (concept_id); + +ALTER TABLE attribute_definition ADD CONSTRAINT fpk_attribute_type_concept FOREIGN KEY (attribute_type_concept_id) REFERENCES concept (concept_id); + /************************** @@ -173,7 +181,7 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_provider FOREIGN KEY (prov ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_ visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -184,13 +192,13 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_preceding FOREIGN KEY (pre ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_person FOREIGN KEY (person_id) REFERENCES person (person_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_detail_type_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_provider FOREIGN KEY (provider_id) REFERENCES provider (provider_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_detail_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -375,7 +383,7 @@ Standardized derived elements ************************/ -ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); +--ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); ALTER TABLE cohort_attribute ADD CONSTRAINT fpk_ca_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); diff --git a/Oracle/OMOP CDM oracle ddl.txt b/Oracle/OMOP CDM oracle ddl.txt index 3960b59..1a6783e 100644 --- a/Oracle/OMOP CDM oracle ddl.txt +++ b/Oracle/OMOP CDM oracle ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ oracle script to create OMOP common data model version 5.3 -last revised: 6-Nov-2017 +last revised: 14-June-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -62,7 +62,7 @@ CREATE TABLE vocabulary ( vocabulary_id VARCHAR(20) NOT NULL, vocabulary_name VARCHAR(255) NOT NULL, vocabulary_reference VARCHAR(255) NOT NULL, - vocabulary_version VARCHAR(255) NULL, + vocabulary_version VARCHAR(255) NOT NULL, vocabulary_concept_id INTEGER NOT NULL ) ; @@ -210,7 +210,7 @@ CREATE TABLE metadata value_as_string CLOB NULL , value_as_concept_id INTEGER NULL , metadata_date DATE NULL , - metadata_datetime TIMESTAMP NULL + metadata_datetime DATETIME2 NULL ) ; @@ -229,7 +229,7 @@ CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - birth_datetime TIMESTAMP NULL, + birth_datetime DATETIME2 NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL, @@ -266,7 +266,7 @@ CREATE TABLE specimen specimen_concept_id INTEGER NOT NULL , specimen_type_concept_id INTEGER NOT NULL , specimen_date DATE NOT NULL , - specimen_datetime TIMESTAMP NULL , + specimen_datetime DATETIME2 NULL , quantity FLOAT NULL , unit_concept_id INTEGER NULL , anatomic_site_concept_id INTEGER NULL , @@ -285,7 +285,7 @@ CREATE TABLE death ( person_id INTEGER NOT NULL , death_date DATE NOT NULL , - death_datetime TIMESTAMP NULL , + death_datetime DATETIME2 NULL , death_type_concept_id INTEGER NOT NULL , cause_concept_id INTEGER NULL , cause_source_value VARCHAR(50) NULL, @@ -301,9 +301,9 @@ CREATE TABLE visit_occurrence person_id INTEGER NOT NULL , visit_concept_id INTEGER NOT NULL , visit_start_date DATE NOT NULL , - visit_start_datetime TIMESTAMP NULL , + visit_start_datetime DATETIME2 NULL , visit_end_date DATE NOT NULL , - visit_end_datetime TIMESTAMP NULL , + visit_end_datetime DATETIME2 NULL , visit_type_concept_id INTEGER NOT NULL , provider_id INTEGER NULL, care_site_id INTEGER NULL, @@ -321,25 +321,25 @@ CREATE TABLE visit_occurrence --HINT DISTRIBUTE_ON_KEY(person_id) CREATE TABLE visit_detail ( - visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime TIMESTAMP NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime TIMESTAMP NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime DATETIME2 NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime DATETIME2 NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) ; @@ -351,7 +351,7 @@ CREATE TABLE procedure_occurrence person_id INTEGER NOT NULL , procedure_concept_id INTEGER NOT NULL , procedure_date DATE NOT NULL , - procedure_datetime TIMESTAMP NULL , + procedure_datetime DATETIME2 NULL , procedure_type_concept_id INTEGER NOT NULL , modifier_concept_id INTEGER NULL , quantity INTEGER NULL , @@ -372,9 +372,9 @@ CREATE TABLE drug_exposure person_id INTEGER NOT NULL , drug_concept_id INTEGER NOT NULL , drug_exposure_start_date DATE NOT NULL , - drug_exposure_start_datetime TIMESTAMP NULL , + drug_exposure_start_datetime DATETIME2 NULL , drug_exposure_end_date DATE NOT NULL , - drug_exposure_end_datetime TIMESTAMP NULL , + drug_exposure_end_datetime DATETIME2 NULL , verbatim_end_date DATE NULL , drug_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , @@ -402,9 +402,9 @@ CREATE TABLE device_exposure person_id INTEGER NOT NULL , device_concept_id INTEGER NOT NULL , device_exposure_start_date DATE NOT NULL , - device_exposure_start_datetime TIMESTAMP NULL , + device_exposure_start_datetime DATETIME2 NULL , device_exposure_end_date DATE NULL , - device_exposure_end_datetime TIMESTAMP NULL , + device_exposure_end_datetime DATETIME2 NULL , device_type_concept_id INTEGER NOT NULL , unique_device_id VARCHAR(50) NULL , quantity INTEGER NULL , @@ -424,9 +424,9 @@ CREATE TABLE condition_occurrence person_id INTEGER NOT NULL , condition_concept_id INTEGER NOT NULL , condition_start_date DATE NOT NULL , - condition_start_datetime TIMESTAMP NULL , + condition_start_datetime DATETIME2 NULL , condition_end_date DATE NULL , - condition_end_datetime TIMESTAMP NULL , + condition_end_datetime DATETIME2 NULL , condition_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , provider_id INTEGER NULL , @@ -447,8 +447,8 @@ CREATE TABLE measurement person_id INTEGER NOT NULL , measurement_concept_id INTEGER NOT NULL , measurement_date DATE NOT NULL , - measurement_datetime TIMESTAMP NULL , - measurement_time VARCHAR(10) NULL , + measurement_datetime DATETIME2 NULL , + measurement_time VARCHAR(10) NULL, measurement_type_concept_id INTEGER NOT NULL , operator_concept_id INTEGER NULL , value_as_number FLOAT NULL , @@ -473,7 +473,7 @@ CREATE TABLE note note_id INTEGER NOT NULL , person_id INTEGER NOT NULL , note_date DATE NOT NULL , - note_datetime TIMESTAMP NULL , + note_datetime DATETIME2 NULL , note_type_concept_id INTEGER NOT NULL , note_class_concept_id INTEGER NOT NULL , note_title VARCHAR(250) NULL , @@ -501,7 +501,7 @@ CREATE TABLE note_nlp note_nlp_source_concept_id INTEGER NULL , nlp_system VARCHAR(250) NULL , nlp_date DATE NOT NULL , - nlp_datetime TIMESTAMP NULL , + nlp_datetime DATETIME2 NULL , term_exists VARCHAR(1) NULL , term_temporal VARCHAR(50) NULL , term_modifiers VARCHAR(2000) NULL @@ -516,7 +516,7 @@ CREATE TABLE observation person_id INTEGER NOT NULL , observation_concept_id INTEGER NOT NULL , observation_date DATE NOT NULL , - observation_datetime TIMESTAMP NULL , + observation_datetime DATETIME2 NULL , observation_type_concept_id INTEGER NOT NULL , value_as_number FLOAT NULL , value_as_string VARCHAR(60) NULL , @@ -650,7 +650,7 @@ CREATE TABLE cost payer_plan_period_id INTEGER NULL , amount_allowed FLOAT NULL , revenue_code_concept_id INTEGER NULL , - revenue_code_source_value VARCHAR(50) NULL, + reveue_code_source_value VARCHAR(50) NULL, drg_concept_id INTEGER NULL, drg_source_value VARCHAR(3) NULL ) diff --git a/ParallelDataWarehouse/OMOP CDM pdw constraints.txt b/ParallelDataWarehouse/OMOP CDM pdw constraints.txt index 0d31276..8dac54e 100644 --- a/ParallelDataWarehouse/OMOP CDM pdw constraints.txt +++ b/ParallelDataWarehouse/OMOP CDM pdw constraints.txt @@ -2,7 +2,7 @@ # Copyright 2014 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ pdw script to create foreign key constraints within OMOP common data model, version 5.3.0 -last revised: 15-November-2017 +last revised: 14-June-2018 author: Patrick Ryan, Clair Blacketer @@ -80,12 +80,16 @@ ALTER TABLE relationship ADD CONSTRAINT fpk_relationship_reverse FOREIGN KEY (re ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_concept FOREIGN KEY (concept_id) REFERENCES concept (concept_id); +ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_language FOREIGN KEY (language_concept_id) REFERENCES concept (concept_id); + ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_1 FOREIGN KEY (ancestor_concept_id) REFERENCES concept (concept_id); ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_2 FOREIGN KEY (descendant_concept_id) REFERENCES concept (concept_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_1 FOREIGN KEY (source_vocabulary_id) REFERENCES vocabulary (vocabulary_id); +ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_concept_id FOREIGN KEY (source_concept_id) REFERENCES concept (concept_id); + ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_2 FOREIGN KEY (target_vocabulary_id) REFERENCES vocabulary (vocabulary_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_c_1 FOREIGN KEY (target_concept_id) REFERENCES concept (concept_id); @@ -102,6 +106,10 @@ ALTER TABLE drug_strength ADD CONSTRAINT fpk_drug_strength_unit_3 FOREIGN KEY (d ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_definition_concept FOREIGN KEY (definition_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_subject_concept FOREIGN KEY (subject_concept_id) REFERENCES concept (concept_id); + +ALTER TABLE attribute_definition ADD CONSTRAINT fpk_attribute_type_concept FOREIGN KEY (attribute_type_concept_id) REFERENCES concept (concept_id); + /************************** @@ -173,7 +181,7 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_provider FOREIGN KEY (prov ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_ visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -184,13 +192,13 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_preceding FOREIGN KEY (pre ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_person FOREIGN KEY (person_id) REFERENCES person (person_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_detail_type_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_provider FOREIGN KEY (provider_id) REFERENCES provider (provider_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_detail_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -375,7 +383,7 @@ Standardized derived elements ************************/ -ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); +--ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); ALTER TABLE cohort_attribute ADD CONSTRAINT fpk_ca_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); diff --git a/ParallelDataWarehouse/OMOP CDM pdw ddl.txt b/ParallelDataWarehouse/OMOP CDM pdw ddl.txt index aa5ca83..5a49470 100644 --- a/ParallelDataWarehouse/OMOP CDM pdw ddl.txt +++ b/ParallelDataWarehouse/OMOP CDM pdw ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ pdw script to create OMOP common data model version 5.3 -last revised: 6-Nov-2017 +last revised: 14-June-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -60,7 +60,7 @@ WITH (DISTRIBUTION = REPLICATE); IF XACT_STATE() = 1 COMMIT; CREATE TABLE vocabulary (vocabulary_id VARCHAR(20) NOT NULL, vocabulary_name VARCHAR(255) NOT NULL, vocabulary_reference VARCHAR(255) NOT NULL, - vocabulary_version VARCHAR(255) NULL, + vocabulary_version VARCHAR(255) NOT NULL, vocabulary_concept_id INTEGER NOT NULL ) WITH (DISTRIBUTION = REPLICATE); @@ -196,7 +196,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE metadata value_as_string VARCHAR(1000) NULL , value_as_concept_id INTEGER NULL , metadata_date DATE NULL , - metadata_datetime DATETIME NULL + metadata_datetime DATETIME2 NULL ) WITH (DISTRIBUTION = REPLICATE); @@ -214,7 +214,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - birth_datetime DATETIME NULL, + birth_datetime DATETIME2 NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL, @@ -249,7 +249,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE specimen specimen_concept_id INTEGER NOT NULL , specimen_type_concept_id INTEGER NOT NULL , specimen_date DATE NOT NULL , - specimen_datetime DATETIME NULL , + specimen_datetime DATETIME2 NULL , quantity FLOAT NULL , unit_concept_id INTEGER NULL , anatomic_site_concept_id INTEGER NULL , @@ -267,7 +267,7 @@ WITH (DISTRIBUTION = HASH(person_id)); IF XACT_STATE() = 1 COMMIT; CREATE TABLE death (person_id INTEGER NOT NULL , death_date DATE NOT NULL , - death_datetime DATETIME NULL , + death_datetime DATETIME2 NULL , death_type_concept_id INTEGER NOT NULL , cause_concept_id INTEGER NULL , cause_source_value VARCHAR(50) NULL, @@ -282,9 +282,9 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE visit_occurrence person_id INTEGER NOT NULL , visit_concept_id INTEGER NOT NULL , visit_start_date DATE NOT NULL , - visit_start_datetime DATETIME NULL , + visit_start_datetime DATETIME2 NULL , visit_end_date DATE NOT NULL , - visit_end_datetime DATETIME NULL , + visit_end_datetime DATETIME2 NULL , visit_type_concept_id INTEGER NOT NULL , provider_id INTEGER NULL, care_site_id INTEGER NULL, @@ -301,25 +301,25 @@ WITH (DISTRIBUTION = HASH(person_id)); --HINT DISTRIBUTE_ON_KEY(person_id) IF XACT_STATE() = 1 COMMIT; CREATE TABLE visit_detail - (visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime DATETIME NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime DATETIME NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + (visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime DATETIME2 NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime DATETIME2 NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) WITH (DISTRIBUTION = HASH(person_id)); @@ -330,7 +330,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE procedure_occurrence person_id INTEGER NOT NULL , procedure_concept_id INTEGER NOT NULL , procedure_date DATE NOT NULL , - procedure_datetime DATETIME NULL , + procedure_datetime DATETIME2 NULL , procedure_type_concept_id INTEGER NOT NULL , modifier_concept_id INTEGER NULL , quantity INTEGER NULL , @@ -350,9 +350,9 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE drug_exposure person_id INTEGER NOT NULL , drug_concept_id INTEGER NOT NULL , drug_exposure_start_date DATE NOT NULL , - drug_exposure_start_datetime DATETIME NULL , + drug_exposure_start_datetime DATETIME2 NULL , drug_exposure_end_date DATE NOT NULL , - drug_exposure_end_datetime DATETIME NULL , + drug_exposure_end_datetime DATETIME2 NULL , verbatim_end_date DATE NULL , drug_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , @@ -379,9 +379,9 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE device_exposure person_id INTEGER NOT NULL , device_concept_id INTEGER NOT NULL , device_exposure_start_date DATE NOT NULL , - device_exposure_start_datetime DATETIME NULL , + device_exposure_start_datetime DATETIME2 NULL , device_exposure_end_date DATE NULL , - device_exposure_end_datetime DATETIME NULL , + device_exposure_end_datetime DATETIME2 NULL , device_type_concept_id INTEGER NOT NULL , unique_device_id VARCHAR(50) NULL , quantity INTEGER NULL , @@ -400,9 +400,9 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE condition_occurrence person_id INTEGER NOT NULL , condition_concept_id INTEGER NOT NULL , condition_start_date DATE NOT NULL , - condition_start_datetime DATETIME NULL , + condition_start_datetime DATETIME2 NULL , condition_end_date DATE NULL , - condition_end_datetime DATETIME NULL , + condition_end_datetime DATETIME2 NULL , condition_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , provider_id INTEGER NULL , @@ -422,8 +422,8 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE measurement person_id INTEGER NOT NULL , measurement_concept_id INTEGER NOT NULL , measurement_date DATE NOT NULL , - measurement_datetime DATETIME NULL , - measurement_time VARCHAR(10) NULL , + measurement_datetime DATETIME2 NULL , + measurement_time VARCHAR(10) NULL, measurement_type_concept_id INTEGER NOT NULL , operator_concept_id INTEGER NULL , value_as_number FLOAT NULL , @@ -447,7 +447,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE note (note_id INTEGER NOT NULL , person_id INTEGER NOT NULL , note_date DATE NOT NULL , - note_datetime DATETIME NULL , + note_datetime DATETIME2 NULL , note_type_concept_id INTEGER NOT NULL , note_class_concept_id INTEGER NOT NULL , note_title VARCHAR(250) NULL , @@ -474,7 +474,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE note_nlp note_nlp_source_concept_id INTEGER NULL , nlp_system VARCHAR(250) NULL , nlp_date DATE NOT NULL , - nlp_datetime DATETIME NULL , + nlp_datetime DATETIME2 NULL , term_exists VARCHAR(1) NULL , term_temporal VARCHAR(50) NULL , term_modifiers VARCHAR(2000) NULL @@ -488,7 +488,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE observation person_id INTEGER NOT NULL , observation_concept_id INTEGER NOT NULL , observation_date DATE NOT NULL , - observation_datetime DATETIME NULL , + observation_datetime DATETIME2 NULL , observation_type_concept_id INTEGER NOT NULL , value_as_number FLOAT NULL , value_as_string VARCHAR(60) NULL , @@ -590,7 +590,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE payer_plan_period sponsor_source_concept_id INTEGER NULL , family_source_value VARCHAR(50) NULL , stop_reason_concept_id INTEGER NULL , - stop_reason_source_value VARCHAR(50) NULL , + stop_reason_source_value VARCHAR(50) NULL , stop_reason_source_concept_id INTEGER NULL ) WITH (DISTRIBUTION = HASH(person_id)); @@ -616,7 +616,7 @@ IF XACT_STATE() = 1 COMMIT; CREATE TABLE cost payer_plan_period_id INTEGER NULL , amount_allowed FLOAT NULL , revenue_code_concept_id INTEGER NULL , - revenue_code_source_value VARCHAR(50) NULL, + reveue_code_source_value VARCHAR(50) NULL, drg_concept_id INTEGER NULL, drg_source_value VARCHAR(3) NULL ) diff --git a/PostgreSQL/OMOP CDM postgresql constraints.txt b/PostgreSQL/OMOP CDM postgresql constraints.txt index 5428ee1..2fed63c 100644 --- a/PostgreSQL/OMOP CDM postgresql constraints.txt +++ b/PostgreSQL/OMOP CDM postgresql constraints.txt @@ -2,7 +2,7 @@ # Copyright 2014 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ postgresql script to create foreign key constraints within OMOP common data model, version 5.3.0 -last revised: 15-November-2017 +last revised: 14-June-2018 author: Patrick Ryan, Clair Blacketer @@ -80,12 +80,16 @@ ALTER TABLE relationship ADD CONSTRAINT fpk_relationship_reverse FOREIGN KEY (re ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_concept FOREIGN KEY (concept_id) REFERENCES concept (concept_id); +ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_language FOREIGN KEY (language_concept_id) REFERENCES concept (concept_id); + ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_1 FOREIGN KEY (ancestor_concept_id) REFERENCES concept (concept_id); ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_2 FOREIGN KEY (descendant_concept_id) REFERENCES concept (concept_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_1 FOREIGN KEY (source_vocabulary_id) REFERENCES vocabulary (vocabulary_id); +ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_concept_id FOREIGN KEY (source_concept_id) REFERENCES concept (concept_id); + ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_2 FOREIGN KEY (target_vocabulary_id) REFERENCES vocabulary (vocabulary_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_c_1 FOREIGN KEY (target_concept_id) REFERENCES concept (concept_id); @@ -102,6 +106,10 @@ ALTER TABLE drug_strength ADD CONSTRAINT fpk_drug_strength_unit_3 FOREIGN KEY (d ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_definition_concept FOREIGN KEY (definition_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_subject_concept FOREIGN KEY (subject_concept_id) REFERENCES concept (concept_id); + +ALTER TABLE attribute_definition ADD CONSTRAINT fpk_attribute_type_concept FOREIGN KEY (attribute_type_concept_id) REFERENCES concept (concept_id); + /************************** @@ -173,7 +181,7 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_provider FOREIGN KEY (prov ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_ visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -184,13 +192,13 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_preceding FOREIGN KEY (pre ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_person FOREIGN KEY (person_id) REFERENCES person (person_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_detail_type_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_provider FOREIGN KEY (provider_id) REFERENCES provider (provider_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_detail_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -375,7 +383,7 @@ Standardized derived elements ************************/ -ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); +--ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); ALTER TABLE cohort_attribute ADD CONSTRAINT fpk_ca_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); diff --git a/PostgreSQL/OMOP CDM postgresql ddl.txt b/PostgreSQL/OMOP CDM postgresql ddl.txt index e32867b..9e611f3 100644 --- a/PostgreSQL/OMOP CDM postgresql ddl.txt +++ b/PostgreSQL/OMOP CDM postgresql ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ postgresql script to create OMOP common data model version 5.3 -last revised: 6-Nov-2017 +last revised: 14-June-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -62,7 +62,7 @@ CREATE TABLE vocabulary ( vocabulary_id VARCHAR(20) NOT NULL, vocabulary_name VARCHAR(255) NOT NULL, vocabulary_reference VARCHAR(255) NOT NULL, - vocabulary_version VARCHAR(255) NULL, + vocabulary_version VARCHAR(255) NOT NULL, vocabulary_concept_id INTEGER NOT NULL ) ; @@ -210,7 +210,7 @@ CREATE TABLE metadata value_as_string TEXT NULL , value_as_concept_id INTEGER NULL , metadata_date DATE NULL , - metadata_datetime TIMESTAMP NULL + metadata_datetime DATETIME2 NULL ) ; @@ -229,7 +229,7 @@ CREATE TABLE person year_of_birth INTEGER NOT NULL , month_of_birth INTEGER NULL, day_of_birth INTEGER NULL, - birth_datetime TIMESTAMP NULL, + birth_datetime DATETIME2 NULL, race_concept_id INTEGER NOT NULL, ethnicity_concept_id INTEGER NOT NULL, location_id INTEGER NULL, @@ -266,7 +266,7 @@ CREATE TABLE specimen specimen_concept_id INTEGER NOT NULL , specimen_type_concept_id INTEGER NOT NULL , specimen_date DATE NOT NULL , - specimen_datetime TIMESTAMP NULL , + specimen_datetime DATETIME2 NULL , quantity NUMERIC NULL , unit_concept_id INTEGER NULL , anatomic_site_concept_id INTEGER NULL , @@ -285,7 +285,7 @@ CREATE TABLE death ( person_id INTEGER NOT NULL , death_date DATE NOT NULL , - death_datetime TIMESTAMP NULL , + death_datetime DATETIME2 NULL , death_type_concept_id INTEGER NOT NULL , cause_concept_id INTEGER NULL , cause_source_value VARCHAR(50) NULL, @@ -301,9 +301,9 @@ CREATE TABLE visit_occurrence person_id INTEGER NOT NULL , visit_concept_id INTEGER NOT NULL , visit_start_date DATE NOT NULL , - visit_start_datetime TIMESTAMP NULL , + visit_start_datetime DATETIME2 NULL , visit_end_date DATE NOT NULL , - visit_end_datetime TIMESTAMP NULL , + visit_end_datetime DATETIME2 NULL , visit_type_concept_id INTEGER NOT NULL , provider_id INTEGER NULL, care_site_id INTEGER NULL, @@ -321,25 +321,25 @@ CREATE TABLE visit_occurrence --HINT DISTRIBUTE_ON_KEY(person_id) CREATE TABLE visit_detail ( - visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime TIMESTAMP NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime TIMESTAMP NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime DATETIME2 NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime DATETIME2 NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) ; @@ -351,7 +351,7 @@ CREATE TABLE procedure_occurrence person_id INTEGER NOT NULL , procedure_concept_id INTEGER NOT NULL , procedure_date DATE NOT NULL , - procedure_datetime TIMESTAMP NULL , + procedure_datetime DATETIME2 NULL , procedure_type_concept_id INTEGER NOT NULL , modifier_concept_id INTEGER NULL , quantity INTEGER NULL , @@ -372,9 +372,9 @@ CREATE TABLE drug_exposure person_id INTEGER NOT NULL , drug_concept_id INTEGER NOT NULL , drug_exposure_start_date DATE NOT NULL , - drug_exposure_start_datetime TIMESTAMP NULL , + drug_exposure_start_datetime DATETIME2 NULL , drug_exposure_end_date DATE NOT NULL , - drug_exposure_end_datetime TIMESTAMP NULL , + drug_exposure_end_datetime DATETIME2 NULL , verbatim_end_date DATE NULL , drug_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , @@ -402,9 +402,9 @@ CREATE TABLE device_exposure person_id INTEGER NOT NULL , device_concept_id INTEGER NOT NULL , device_exposure_start_date DATE NOT NULL , - device_exposure_start_datetime TIMESTAMP NULL , + device_exposure_start_datetime DATETIME2 NULL , device_exposure_end_date DATE NULL , - device_exposure_end_datetime TIMESTAMP NULL , + device_exposure_end_datetime DATETIME2 NULL , device_type_concept_id INTEGER NOT NULL , unique_device_id VARCHAR(50) NULL , quantity INTEGER NULL , @@ -424,9 +424,9 @@ CREATE TABLE condition_occurrence person_id INTEGER NOT NULL , condition_concept_id INTEGER NOT NULL , condition_start_date DATE NOT NULL , - condition_start_datetime TIMESTAMP NULL , + condition_start_datetime DATETIME2 NULL , condition_end_date DATE NULL , - condition_end_datetime TIMESTAMP NULL , + condition_end_datetime DATETIME2 NULL , condition_type_concept_id INTEGER NOT NULL , stop_reason VARCHAR(20) NULL , provider_id INTEGER NULL , @@ -447,15 +447,15 @@ CREATE TABLE measurement person_id INTEGER NOT NULL , measurement_concept_id INTEGER NOT NULL , measurement_date DATE NOT NULL , - measurement_datetime TIMESTAMP NULL , - measurement_time VARCHAR(10) NULL , + measurement_datetime DATETIME2 NULL , + measurement_time VARCHAR(10) NULL, measurement_type_concept_id INTEGER NOT NULL , operator_concept_id INTEGER NULL , - value_as_number NUMERIC NULL , + value_as_number NUMERIC NULL , value_as_concept_id INTEGER NULL , unit_concept_id INTEGER NULL , - range_low NUMERIC NULL , - range_high NUMERIC NULL , + range_low NUMERIC NULL , + range_high NUMERIC NULL , provider_id INTEGER NULL , visit_occurrence_id INTEGER NULL , visit_detail_id INTEGER NULL , @@ -473,7 +473,7 @@ CREATE TABLE note note_id INTEGER NOT NULL , person_id INTEGER NOT NULL , note_date DATE NOT NULL , - note_datetime TIMESTAMP NULL , + note_datetime DATETIME2 NULL , note_type_concept_id INTEGER NOT NULL , note_class_concept_id INTEGER NOT NULL , note_title VARCHAR(250) NULL , @@ -501,7 +501,7 @@ CREATE TABLE note_nlp note_nlp_source_concept_id INTEGER NULL , nlp_system VARCHAR(250) NULL , nlp_date DATE NOT NULL , - nlp_datetime TIMESTAMP NULL , + nlp_datetime DATETIME2 NULL , term_exists VARCHAR(1) NULL , term_temporal VARCHAR(50) NULL , term_modifiers VARCHAR(2000) NULL @@ -516,7 +516,7 @@ CREATE TABLE observation person_id INTEGER NOT NULL , observation_concept_id INTEGER NOT NULL , observation_date DATE NOT NULL , - observation_datetime TIMESTAMP NULL , + observation_datetime DATETIME2 NULL , observation_type_concept_id INTEGER NOT NULL , value_as_number NUMERIC NULL , value_as_string VARCHAR(60) NULL , @@ -623,7 +623,7 @@ CREATE TABLE payer_plan_period sponsor_source_concept_id INTEGER NULL , family_source_value VARCHAR(50) NULL , stop_reason_concept_id INTEGER NULL , - stop_reason_source_value VARCHAR(50) NULL , + stop_reason_source_value VARCHAR(50) NULL , stop_reason_source_concept_id INTEGER NULL ) ; @@ -650,7 +650,7 @@ CREATE TABLE cost payer_plan_period_id INTEGER NULL , amount_allowed NUMERIC NULL , revenue_code_concept_id INTEGER NULL , - revenue_code_source_value VARCHAR(50) NULL, + reveue_code_source_value VARCHAR(50) NULL, drg_concept_id INTEGER NULL, drg_source_value VARCHAR(3) NULL ) diff --git a/README.md b/README.md index ab14de1..c78ef7e 100644 --- a/README.md +++ b/README.md @@ -1,26 +1,34 @@ -Common Data Model v5.3 +Common Data Model v5.3.1 ================= -See full CDM specification file on our github [wiki](https://github.com/OHDSI/CommonDataModel/wiki) or in the [CDM V5.3 PDF](https://github.com/OHDSI/CommonDataModel/blob/master/OMOP_CDM_v5_3.pdf) +See full CDM specification file on our github [wiki](https://github.com/OHDSI/CommonDataModel/wiki) or in the [CDM V5.3.1 PDF](https://github.com/OHDSI/CommonDataModel/blob/master/OMOP_CDM_v5_3_1.pdf) -Release Notes for v5.3 +Release Notes for v5.3.1 ============= -This version is based on the pull requests and CDM proposals: -* [#64](https://github.com/OHDSI/CommonDataModel/pull/64) This removes the datetime fields from OBSERVATION_PERIOD -* [#70](https://github.com/OHDSI/CommonDataModel/issues/70) Adds the VISIT_DETAIL table -* [#79](https://github.com/OHDSI/CommonDataModel/issues/79) Adds the METADATA table -* [#92](https://github.com/OHDSI/CommonDataModel/issues/92) Fixes qualifier typo in PROCEDURE_OCCURRENCE -* [#120](https://github.com/OHDSI/CommonDataModel/issues/120) Adds the following fields to PAYER_PLAN_PERIOD: - * PAYER_CONCEPT_ID - * PAYER_SOURCE_CONCEPT_ID - * PLAN_CONCEPT_ID - * PLAN_SOURCE_CONCEPT_ID - * SPONSOR_CONCEPT_ID - * SPONSOR_SOURCE_CONCEPT_ID - * STOP_REASON_CONCEPT_ID - * STOP_REASON_SOURCE_VALUE - * STOP_REASON_SOURCE_CONCEPT_ID + +### This version address the following issues/pull requests: + +* [#183](https://github.com/OHDSI/CommonDataModel/pull/183) Fixes VISIT_DETAIL documentation, 'required' and 'type' columns were switched +* [#169](https://github.com/OHDSI/CommonDataModel/pull/183) Data type changes for BigQuery +* [#171](https://github.com/OHDSI/CommonDataModel/issues/171) Datetime formats in Sql Server changed to Datetime2 +* [#173](https://github.com/OHDSI/CommonDataModel/issues/173) Impala reserved words +* [#177](https://github.com/OHDSI/CommonDataModel/pull/177) Postgres readme +* [#140](https://github.com/OHDSI/CommonDataModel/issues/140), [#144](https://github.com/OHDSI/CommonDataModel/issues/140), [#135](https://github.com/OHDSI/CommonDataModel/issues/140) + * Typos in readme and documentation +* [#158](https://github.com/OHDSI/CommonDataModel/pull/158) VOCABULARY.VOCABULARY_VERSION no longer a required field +* [#157](https://github.com/OHDSI/CommonDataModel/pull/157) Added MEASUREMENT.MEASUREMENT_TIME back to DDL for backwards compatibility +* [#147](https://github.com/OHDSI/CommonDataModel/issues/147) PAYER_PLAN_PERIOD.STOP_REASON_SOURCE_VALUE varchar instead of integer +* [#120](https://github.com/OHDSI/CommonDataModel/issues/120) PAYER_PLAN_PERIOD documentation +* [#160](https://github.com/OHDSI/CommonDataModel/issues/160) Removed errant semicolon in license header +* **[#145](https://github.com/OHDSI/CommonDataModel/issues/145) VISIT_DETAIL naming convention** + * This is the change with the most potential impact as column names were updated +* [#67](https://github.com/OHDSI/CommonDataModel/issues/67) Removed COHORT_DEFINITION_ID foreign key constraint from COHORT table +* [#16](https://github.com/OHDSI/CommonDataModel/issues/16) Added additional foreign key constraints that were missing +* [#12](https://github.com/OHDSI/CommonDataModel/issues/12) .csv file is now delivered with each version +* Additional BigQuery updates for compatibility +* A portion of [#112](https://github.com/OHDSI/CommonDataModel/issues/112) was addressed + * VISIT_DETAIL and documentation typos Additional Updates ================== diff --git a/Redshift/OMOP CDM redshift ddl.txt b/Redshift/OMOP CDM redshift ddl.txt index 36a3806..ccebf0d 100644 --- a/Redshift/OMOP CDM redshift ddl.txt +++ b/Redshift/OMOP CDM redshift ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ redshift script to create OMOP common data model version 5.3 -last revised: 6-Nov-2017 +last revised: 14-June-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -60,7 +60,7 @@ DISTSTYLE ALL; CREATE TABLE vocabulary (vocabulary_id VARCHAR(20) NOT NULL, vocabulary_name VARCHAR(255) NOT NULL, vocabulary_reference VARCHAR(255) NOT NULL, - vocabulary_version VARCHAR(255) NULL, + vocabulary_version VARCHAR(255) NOT NULL, vocabulary_concept_id INTEGER NOT NULL ) DISTSTYLE ALL; @@ -301,25 +301,25 @@ DISTKEY(person_id); --HINT DISTRIBUTE_ON_KEY(person_id) CREATE TABLE visit_detail - (visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime TIMESTAMP NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime TIMESTAMP NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + (visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime TIMESTAMP NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime TIMESTAMP NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) DISTKEY(person_id); @@ -422,8 +422,8 @@ CREATE TABLE measurement person_id INTEGER NOT NULL , measurement_concept_id INTEGER NOT NULL , measurement_date DATE NOT NULL , - measurement_datetime TIMESTAMP NULL , - measurement_time VARCHAR(10) NULL , + measurement_datetime TIMESTAMP NULL , + measurement_time VARCHAR(10) NULL, measurement_type_concept_id INTEGER NOT NULL , operator_concept_id INTEGER NULL , value_as_number FLOAT NULL , @@ -590,7 +590,7 @@ CREATE TABLE payer_plan_period sponsor_source_concept_id INTEGER NULL , family_source_value VARCHAR(50) NULL , stop_reason_concept_id INTEGER NULL , - stop_reason_source_value VARCHAR(50) NULL , + stop_reason_source_value VARCHAR(50) NULL , stop_reason_source_concept_id INTEGER NULL ) DISTKEY(person_id); @@ -616,7 +616,7 @@ CREATE TABLE cost payer_plan_period_id INTEGER NULL , amount_allowed FLOAT NULL , revenue_code_concept_id INTEGER NULL , - revenue_code_source_value VARCHAR(50) NULL, + reveue_code_source_value VARCHAR(50) NULL, drg_concept_id INTEGER NULL, drg_source_value VARCHAR(3) NULL ) diff --git a/Sql Server/OMOP CDM sql server constraints.txt b/Sql Server/OMOP CDM sql server constraints.txt index 3ec9744..26d67e8 100644 --- a/Sql Server/OMOP CDM sql server constraints.txt +++ b/Sql Server/OMOP CDM sql server constraints.txt @@ -2,7 +2,7 @@ # Copyright 2014 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ sql server script to create foreign key constraints within OMOP common data model, version 5.3.0 -last revised: 15-November-2017 +last revised: 14-June-2018 author: Patrick Ryan, Clair Blacketer @@ -80,12 +80,16 @@ ALTER TABLE relationship ADD CONSTRAINT fpk_relationship_reverse FOREIGN KEY (re ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_concept FOREIGN KEY (concept_id) REFERENCES concept (concept_id); +ALTER TABLE concept_synonym ADD CONSTRAINT fpk_concept_synonym_language FOREIGN KEY (language_concept_id) REFERENCES concept (concept_id); + ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_1 FOREIGN KEY (ancestor_concept_id) REFERENCES concept (concept_id); ALTER TABLE concept_ancestor ADD CONSTRAINT fpk_concept_ancestor_concept_2 FOREIGN KEY (descendant_concept_id) REFERENCES concept (concept_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_1 FOREIGN KEY (source_vocabulary_id) REFERENCES vocabulary (vocabulary_id); +ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_concept_id FOREIGN KEY (source_concept_id) REFERENCES concept (concept_id); + ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_v_2 FOREIGN KEY (target_vocabulary_id) REFERENCES vocabulary (vocabulary_id); ALTER TABLE source_to_concept_map ADD CONSTRAINT fpk_source_to_concept_map_c_1 FOREIGN KEY (target_concept_id) REFERENCES concept (concept_id); @@ -102,6 +106,10 @@ ALTER TABLE drug_strength ADD CONSTRAINT fpk_drug_strength_unit_3 FOREIGN KEY (d ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_definition_concept FOREIGN KEY (definition_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE cohort_definition ADD CONSTRAINT fpk_cohort_subject_concept FOREIGN KEY (subject_concept_id) REFERENCES concept (concept_id); + +ALTER TABLE attribute_definition ADD CONSTRAINT fpk_attribute_type_concept FOREIGN KEY (attribute_type_concept_id) REFERENCES concept (concept_id); + /************************** @@ -173,7 +181,7 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_provider FOREIGN KEY (prov ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_ visit_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -184,13 +192,13 @@ ALTER TABLE visit_occurrence ADD CONSTRAINT fpk_visit_preceding FOREIGN KEY (pre ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_person FOREIGN KEY (person_id) REFERENCES person (person_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_type_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_type_concept FOREIGN KEY (visit_detail_type_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_provider FOREIGN KEY (provider_id) REFERENCES provider (provider_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_care_site FOREIGN KEY (care_site_id) REFERENCES care_site (care_site_id); -ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_source_concept_id) REFERENCES concept (concept_id); +ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_concept_s FOREIGN KEY (visit_detail_source_concept_id) REFERENCES concept (concept_id); ALTER TABLE visit_detail ADD CONSTRAINT fpk_v_detail_admitting_s FOREIGN KEY (admitting_source_concept_id) REFERENCES concept (concept_id); @@ -375,7 +383,7 @@ Standardized derived elements ************************/ -ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); +--ALTER TABLE cohort ADD CONSTRAINT fpk_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); ALTER TABLE cohort_attribute ADD CONSTRAINT fpk_ca_cohort_definition FOREIGN KEY (cohort_definition_id) REFERENCES cohort_definition (cohort_definition_id); diff --git a/Sql Server/OMOP CDM sql server ddl.txt b/Sql Server/OMOP CDM sql server ddl.txt index 6a4e94b..cc2c114 100644 --- a/Sql Server/OMOP CDM sql server ddl.txt +++ b/Sql Server/OMOP CDM sql server ddl.txt @@ -2,7 +2,7 @@ # Copyright 2017-11 Observational Health Data Sciences and Informatics # # -# Licensed under the Apache License, Version 2.0 (the "License"); +# Licensed under the Apache License, Version 2.0 (the "License") # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # @@ -28,7 +28,7 @@ sql server script to create OMOP common data model version 5.3 -last revised: 6-Nov-2017 +last revised: 14-June-2018 Authors: Patrick Ryan, Christian Reich, Clair Blacketer @@ -62,7 +62,7 @@ CREATE TABLE vocabulary ( vocabulary_id VARCHAR(20) NOT NULL, vocabulary_name VARCHAR(255) NOT NULL, vocabulary_reference VARCHAR(255) NOT NULL, - vocabulary_version VARCHAR(255) NULL, + vocabulary_version VARCHAR(255) NOT NULL, vocabulary_concept_id INTEGER NOT NULL ) ; @@ -321,25 +321,25 @@ CREATE TABLE visit_occurrence --HINT DISTRIBUTE_ON_KEY(person_id) CREATE TABLE visit_detail ( - visit_detail_id INTEGER NOT NULL , - person_id INTEGER NOT NULL , - visit_detail_concept_id INTEGER NOT NULL , - visit_start_date DATE NOT NULL , - visit_start_datetime DATETIME2 NULL , - visit_end_date DATE NOT NULL , - visit_end_datetime DATETIME2 NULL , - visit_type_concept_id INTEGER NOT NULL , - provider_id INTEGER NULL , - care_site_id INTEGER NULL , - admitting_source_concept_id INTEGER NULL , - discharge_to_concept_id INTEGER NULL , - preceding_visit_detail_id INTEGER NULL , - visit_source_value VARCHAR(50) NULL , - visit_source_concept_id INTEGER NULL , - admitting_source_value VARCHAR(50) NULL , - discharge_to_source_value VARCHAR(50) NULL , - visit_detail_parent_id INTEGER NULL , - visit_occurrence_id INTEGER NOT NULL + visit_detail_id INTEGER NOT NULL , + person_id INTEGER NOT NULL , + visit_detail_concept_id INTEGER NOT NULL , + visit_detail_start_date DATE NOT NULL , + visit_detail_start_datetime DATETIME2 NULL , + visit_detail_end_date DATE NOT NULL , + visit_detail_end_datetime DATETIME2 NULL , + visit_detail_type_concept_id INTEGER NOT NULL , + provider_id INTEGER NULL , + care_site_id INTEGER NULL , + admitting_source_concept_id INTEGER NULL , + discharge_to_concept_id INTEGER NULL , + preceding_visit_detail_id INTEGER NULL , + visit_detail_source_value VARCHAR(50) NULL , + visit_detail_source_concept_id INTEGER NULL , + admitting_source_value VARCHAR(50) NULL , + discharge_to_source_value VARCHAR(50) NULL , + visit_detail_parent_id INTEGER NULL , + visit_occurrence_id INTEGER NOT NULL ) ; @@ -447,8 +447,8 @@ CREATE TABLE measurement person_id INTEGER NOT NULL , measurement_concept_id INTEGER NOT NULL , measurement_date DATE NOT NULL , - measurement_datetime DATETIME2 NULL , - measurement_time VARCHAR(10) NULL , + measurement_datetime DATETIME2 NULL , + measurement_time VARCHAR(10) NULL, measurement_type_concept_id INTEGER NOT NULL , operator_concept_id INTEGER NULL , value_as_number FLOAT NULL , @@ -623,7 +623,7 @@ CREATE TABLE payer_plan_period sponsor_source_concept_id INTEGER NULL , family_source_value VARCHAR(50) NULL , stop_reason_concept_id INTEGER NULL , - stop_reason_source_value VARCHAR(50) NULL , + stop_reason_source_value VARCHAR(50) NULL , stop_reason_source_concept_id INTEGER NULL ) ; @@ -650,7 +650,7 @@ CREATE TABLE cost payer_plan_period_id INTEGER NULL , amount_allowed FLOAT NULL , revenue_code_concept_id INTEGER NULL , - revenue_code_source_value VARCHAR(50) NULL, + reveue_code_source_value VARCHAR(50) NULL, drg_concept_id INTEGER NULL, drg_source_value VARCHAR(3) NULL )