cartodb-rb-client-rails-322 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/.rvmrc +1 -0
- data/.travis.yml +15 -0
- data/Gemfile +15 -0
- data/LICENSE +28 -0
- data/README.markdown +365 -0
- data/Rakefile +10 -0
- data/cartodb-rb-client.gemspec +34 -0
- data/lib/cartodb-rb-client.rb +18 -0
- data/lib/cartodb-rb-client/cartodb.rb +6 -0
- data/lib/cartodb-rb-client/cartodb/client.rb +4 -0
- data/lib/cartodb-rb-client/cartodb/client/authorization.rb +92 -0
- data/lib/cartodb-rb-client/cartodb/client/cache.rb +14 -0
- data/lib/cartodb-rb-client/cartodb/client/connection.rb +4 -0
- data/lib/cartodb-rb-client/cartodb/client/connection/base.rb +44 -0
- data/lib/cartodb-rb-client/cartodb/client/connection/cartodb.rb +280 -0
- data/lib/cartodb-rb-client/cartodb/client/connection/postgres.rb +255 -0
- data/lib/cartodb-rb-client/cartodb/client/error.rb +68 -0
- data/lib/cartodb-rb-client/cartodb/client/utils.rb +20 -0
- data/lib/cartodb-rb-client/cartodb/helpers.rb +1 -0
- data/lib/cartodb-rb-client/cartodb/helpers/sql_helper.rb +36 -0
- data/lib/cartodb-rb-client/cartodb/init.rb +30 -0
- data/lib/cartodb-rb-client/cartodb/libs.rb +2 -0
- data/lib/cartodb-rb-client/cartodb/libs/object.rb +15 -0
- data/lib/cartodb-rb-client/cartodb/libs/string.rb +116 -0
- data/lib/cartodb-rb-client/cartodb/model.rb +11 -0
- data/lib/cartodb-rb-client/cartodb/model/base.rb +20 -0
- data/lib/cartodb-rb-client/cartodb/model/constants.rb +30 -0
- data/lib/cartodb-rb-client/cartodb/model/defaults.rb +15 -0
- data/lib/cartodb-rb-client/cartodb/model/geo.rb +101 -0
- data/lib/cartodb-rb-client/cartodb/model/getters.rb +75 -0
- data/lib/cartodb-rb-client/cartodb/model/persistence.rb +69 -0
- data/lib/cartodb-rb-client/cartodb/model/query.rb +66 -0
- data/lib/cartodb-rb-client/cartodb/model/schema.rb +121 -0
- data/lib/cartodb-rb-client/cartodb/model/scope.rb +163 -0
- data/lib/cartodb-rb-client/cartodb/model/setters.rb +37 -0
- data/lib/cartodb-rb-client/cartodb/types.rb +2 -0
- data/lib/cartodb-rb-client/cartodb/types/metadata.rb +97 -0
- data/lib/cartodb-rb-client/cartodb/types/pg_result.rb +17 -0
- data/lib/cartodb-rb-client/install_utils.rb +19 -0
- data/lib/cartodb-rb-client/version.rb +7 -0
- data/run_tests.sh +6 -0
- data/spec/client_spec.rb +357 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_add_and_remove_colums_in_a_previously_created_table.yml +635 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_allow_reserved_words_in_columns_names.yml +284 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_change_a_previously_created_column.yml +362 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_and_get_its_table_definition.yml +1634 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_forcing_the_schema_and_get_its_table_definition.yml +298 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_from_a_csv_file.yml +2947 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTILINESTRING_type_geometry.yml +299 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTIPOLYGON_type_geometry.yml +298 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_POINT_type_geometry.yml +580 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_delete_a_table_s_row.yml +410 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_drop_a_table.yml +380 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_escape_properly_input_data_in_insert_queries.yml +295 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_execute_a_select_query_and_return_results.yml +987 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_get_a_table_by_its_name.yml +298 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_import_any_kind_of_data_file.yml +6951 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_insert_a_row_in_a_table.yml +357 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_paginate_records.yml +3642 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_rename_an_existing_table.yml +299 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_errors_on_invalid_queries.yml +132 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_nil_when_requesting_a_table_which_does_not_exists.yml +218 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_return_user_s_table_list.yml +244 -0
- data/spec/fixtures/cassettes/CartoDB_client/should_update_a_row_in_a_table.yml +347 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_destroy_a_previously_created_record.yml +1920 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_initialize_attributes_of_the_model_without_persisting_them.yml +963 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_save_method.yml +1946 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_static_create_method.yml +1796 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_save_polygons_in_different_formats.yml +1801 -0
- data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_update_an_existing_record.yml +2856 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_add_more_columns_if_the_table_previously_exists.yml +1509 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_contain_an_array_of_columns.yml +2007 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_a_table_with_custom_name_if_specified.yml +357 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_custom_data_types_columns.yml +565 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_polygon_type_geometry_columns.yml +493 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_the_table_in_cartodb_if_it_doesn_t_exists.yml +1048 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_CartoDB_Client_instance_as_a_connection_object.yml +971 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_table_name.yml +970 -0
- data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_return_only_data_columns.yml +1096 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_allow_to_select_the_specified_fiels.yml +25828 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_count_all_records.yml +22401 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_find_a_record_by_its_id.yml +21852 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_order_results.yml +23701 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_paginate_results.yml +35644 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_return_all_records_paginated.yml +23699 -0
- data/spec/fixtures/cassettes/CartoDB_model_scopes/should_search_records_by_certain_filters.yml +7080 -0
- data/spec/fixtures/cassettes/cartodb_spec_models.yml +3409 -0
- data/spec/fixtures/cassettes/clean_tables.yml +224 -0
- data/spec/model/data_spec.rb +157 -0
- data/spec/model/metadata_spec.rb +124 -0
- data/spec/model/scopes_spec.rb +171 -0
- data/spec/model_specs_helper.rb +2 -0
- data/spec/spec_helper.rb +54 -0
- data/spec/support/cartodb_config.yml +11 -0
- data/spec/support/cartodb_config.yml.sample +16 -0
- data/spec/support/cartodb_factories.rb +33 -0
- data/spec/support/cartodb_helpers.rb +14 -0
- data/spec/support/cartodb_models.rb +29 -0
- data/spec/support/data/110m-glaciated-areas.zip +0 -0
- data/spec/support/data/CartoDB_csv_export.zip +0 -0
- data/spec/support/data/CartoDB_shp_export.zip +0 -0
- data/spec/support/data/rmnp.kml +51 -0
- data/spec/support/data/states.kml.zip +0 -0
- data/spec/support/database.yml +5 -0
- data/spec/support/shp/cereal.dbf +0 -0
- data/spec/support/shp/cereal.shp +0 -0
- data/spec/support/shp/cereal.shx +0 -0
- data/spec/support/shp/cereal.zip +0 -0
- data/spec/support/shp/parcelas.dbf +0 -0
- data/spec/support/shp/parcelas.shp +0 -0
- data/spec/support/shp/parcelas.shx +0 -0
- data/spec/support/shp/parcelas.zip +0 -0
- data/spec/support/shp/zonas.dbf +0 -0
- data/spec/support/shp/zonas.shp +0 -0
- data/spec/support/shp/zonas.shx +0 -0
- data/spec/support/shp/zonas.zip +0 -0
- data/spec/support/whs_features.csv +315 -0
- data/spec/support/whs_features.csv.zip +0 -0
- data/spec/support/whs_features_temp.csv +315 -0
- metadata +400 -0
@@ -0,0 +1,298 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- &70293202938040 !ruby/object:MIME::Type
|
12
|
+
content_type: application/json
|
13
|
+
raw_media_type: application
|
14
|
+
raw_sub_type: json
|
15
|
+
simplified: application/json
|
16
|
+
media_type: application
|
17
|
+
sub_type: json
|
18
|
+
extensions:
|
19
|
+
- json
|
20
|
+
encoding: 8bit
|
21
|
+
system:
|
22
|
+
registered: true
|
23
|
+
url:
|
24
|
+
- IANA
|
25
|
+
- RFC4627
|
26
|
+
obsolete:
|
27
|
+
docs:
|
28
|
+
response:
|
29
|
+
status:
|
30
|
+
code: 200
|
31
|
+
message: !binary |-
|
32
|
+
T0s=
|
33
|
+
headers:
|
34
|
+
!binary "U2VydmVy":
|
35
|
+
- !binary |-
|
36
|
+
bmdpbng=
|
37
|
+
!binary "RGF0ZQ==":
|
38
|
+
- !binary |-
|
39
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozMiBHTVQ=
|
40
|
+
!binary "Q29udGVudC1UeXBl":
|
41
|
+
- !binary |-
|
42
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
43
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
44
|
+
- !binary |-
|
45
|
+
Y2h1bmtlZA==
|
46
|
+
!binary "Q29ubmVjdGlvbg==":
|
47
|
+
- !binary |-
|
48
|
+
a2VlcC1hbGl2ZQ==
|
49
|
+
!binary "VmFyeQ==":
|
50
|
+
- !binary |-
|
51
|
+
QWNjZXB0LUVuY29kaW5n
|
52
|
+
!binary "U3RhdHVz":
|
53
|
+
- !binary |-
|
54
|
+
MjAwIE9L
|
55
|
+
!binary "RXRhZw==":
|
56
|
+
- !binary |-
|
57
|
+
IjZmZWFmYjM1NDAxOWNlN2Q3ODBhZDNhZmE1ZDlkZjFhIg==
|
58
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
59
|
+
- !binary |-
|
60
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
61
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
62
|
+
- !binary |-
|
63
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
64
|
+
!binary "U2V0LUNvb2tpZQ==":
|
65
|
+
- !binary |-
|
66
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
67
|
+
UmlJbE0ySmpNelZsTXpFeVlqYzVaVFppTURoalpERTNNVEUxWVRVMU5qaGxN
|
68
|
+
V05KSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
69
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS0x
|
70
|
+
YWY1MzJjY2JlZTlmM2Y2YzNiZDMxY2ZiMjIxZjIyNzNkYjIyNGEyOyBkb21h
|
71
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
72
|
+
!binary "WC1SdW50aW1l":
|
73
|
+
- !binary |-
|
74
|
+
MC4wMDc2OTE=
|
75
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
76
|
+
- !binary |-
|
77
|
+
Z3ppcA==
|
78
|
+
body:
|
79
|
+
encoding: ASCII-8BIT
|
80
|
+
string: !binary |-
|
81
|
+
eyJ0b3RhbF9lbnRyaWVzIjoxLCJ0YWJsZXMiOlt7ImlkIjo4MTcyLCJuYW1l
|
82
|
+
IjoiY2FydG9kYl9zcGVjIiwicHJpdmFjeSI6IlBVQkxJQyIsInRhZ3MiOiIi
|
83
|
+
LCJzY2hlbWEiOltbImNhcnRvZGJfaWQiLCJudW1iZXIiXSxbInRoZV9nZW9t
|
84
|
+
IiwiZ2VvbWV0cnkiLCJnZW9tZXRyeSIsInBvaW50Il0sWyJkZXNjcmlwdGlv
|
85
|
+
biIsInN0cmluZyJdLFsibmFtZSIsInN0cmluZyJdLFsiY3JlYXRlZF9hdCIs
|
86
|
+
ImRhdGUiXSxbInVwZGF0ZWRfYXQiLCJkYXRlIl1dLCJ1cGRhdGVkX2F0Ijoi
|
87
|
+
MjAxMi0wOC0yMFQxMjo0NDozMSswMjowMCIsInJvd3NfY291bnRlZCI6MH1d
|
88
|
+
fQ==
|
89
|
+
http_version: !binary |-
|
90
|
+
MS4x
|
91
|
+
recorded_at: Mon, 20 Aug 2012 10:44:32 GMT
|
92
|
+
- request:
|
93
|
+
method: delete
|
94
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/cartodb_spec?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
95
|
+
body:
|
96
|
+
encoding: US-ASCII
|
97
|
+
string: ''
|
98
|
+
headers:
|
99
|
+
Accept:
|
100
|
+
- *70293202938040
|
101
|
+
response:
|
102
|
+
status:
|
103
|
+
code: 200
|
104
|
+
message: !binary |-
|
105
|
+
T0s=
|
106
|
+
headers:
|
107
|
+
!binary "U2VydmVy":
|
108
|
+
- !binary |-
|
109
|
+
bmdpbng=
|
110
|
+
!binary "RGF0ZQ==":
|
111
|
+
- !binary |-
|
112
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozMyBHTVQ=
|
113
|
+
!binary "Q29udGVudC1UeXBl":
|
114
|
+
- !binary |-
|
115
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
116
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
117
|
+
- !binary |-
|
118
|
+
Y2h1bmtlZA==
|
119
|
+
!binary "Q29ubmVjdGlvbg==":
|
120
|
+
- !binary |-
|
121
|
+
a2VlcC1hbGl2ZQ==
|
122
|
+
!binary "VmFyeQ==":
|
123
|
+
- !binary |-
|
124
|
+
QWNjZXB0LUVuY29kaW5n
|
125
|
+
!binary "U3RhdHVz":
|
126
|
+
- !binary |-
|
127
|
+
MjAwIE9L
|
128
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
129
|
+
- !binary |-
|
130
|
+
bm8tY2FjaGU=
|
131
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
132
|
+
- !binary |-
|
133
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
134
|
+
!binary "U2V0LUNvb2tpZQ==":
|
135
|
+
- !binary |-
|
136
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
137
|
+
UmlJbE9UWTBNbU0wWVRoaE1ETTVOVGhsWlROaE16QTFNREl3WlRNM09URXpN
|
138
|
+
VE5KSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
139
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS1i
|
140
|
+
NGRhZGRkMjQ2ZDQ0MDUxMDhjNjhlMzhmNzYxMTYxZjE2YTM1MWQ4OyBkb21h
|
141
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
142
|
+
!binary "WC1SdW50aW1l":
|
143
|
+
- !binary |-
|
144
|
+
MC4xNzQzNTY=
|
145
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
146
|
+
- !binary |-
|
147
|
+
Z3ppcA==
|
148
|
+
body:
|
149
|
+
encoding: ASCII-8BIT
|
150
|
+
string: !binary |-
|
151
|
+
IA==
|
152
|
+
http_version: !binary |-
|
153
|
+
MS4x
|
154
|
+
recorded_at: Mon, 20 Aug 2012 10:44:33 GMT
|
155
|
+
- request:
|
156
|
+
method: post
|
157
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
|
158
|
+
body:
|
159
|
+
encoding: US-ASCII
|
160
|
+
string: ''
|
161
|
+
headers:
|
162
|
+
Accept:
|
163
|
+
- *70293202938040
|
164
|
+
response:
|
165
|
+
status:
|
166
|
+
code: 200
|
167
|
+
message: !binary |-
|
168
|
+
T0s=
|
169
|
+
headers:
|
170
|
+
!binary "U2VydmVy":
|
171
|
+
- !binary |-
|
172
|
+
bmdpbng=
|
173
|
+
!binary "RGF0ZQ==":
|
174
|
+
- !binary |-
|
175
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozMyBHTVQ=
|
176
|
+
!binary "Q29udGVudC1UeXBl":
|
177
|
+
- !binary |-
|
178
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
179
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
180
|
+
- !binary |-
|
181
|
+
Y2h1bmtlZA==
|
182
|
+
!binary "Q29ubmVjdGlvbg==":
|
183
|
+
- !binary |-
|
184
|
+
a2VlcC1hbGl2ZQ==
|
185
|
+
!binary "VmFyeQ==":
|
186
|
+
- !binary |-
|
187
|
+
QWNjZXB0LUVuY29kaW5n
|
188
|
+
!binary "U3RhdHVz":
|
189
|
+
- !binary |-
|
190
|
+
MjAwIE9L
|
191
|
+
!binary "TG9jYXRpb24=":
|
192
|
+
- !binary |-
|
193
|
+
L3RhYmxlcy84MTcz
|
194
|
+
!binary "RXRhZw==":
|
195
|
+
- !binary |-
|
196
|
+
IjdlYjk4NzMwNzhiYzNlYTFjODk5Nzg2Yjc3MDQxODQzIg==
|
197
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
198
|
+
- !binary |-
|
199
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
200
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
201
|
+
- !binary |-
|
202
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
203
|
+
!binary "U2V0LUNvb2tpZQ==":
|
204
|
+
- !binary |-
|
205
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
206
|
+
UmlJbE5HVTRNbUUzWkRjNFpqZ3pOakJpWkdZeE5XTTNZamcwWWpBek5HWmtZ
|
207
|
+
bVpKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
208
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS01
|
209
|
+
YWRhNjk4MjFhYTg2NjdhZjExYTRkMTMwOTAwNjQxOTdiZDZmZjE4OyBkb21h
|
210
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
211
|
+
!binary "WC1SdW50aW1l":
|
212
|
+
- !binary |-
|
213
|
+
MC41MTYyMDY=
|
214
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
215
|
+
- !binary |-
|
216
|
+
Z3ppcA==
|
217
|
+
body:
|
218
|
+
encoding: ASCII-8BIT
|
219
|
+
string: !binary |-
|
220
|
+
eyJpZCI6ODE3MywibmFtZSI6ImNhcnRvZGJfc3BlYyIsInNjaGVtYSI6W1si
|
221
|
+
Y2FydG9kYl9pZCIsIm51bWJlciJdLFsiZmllbGQxIiwic3RyaW5nIl0sWyJm
|
222
|
+
aWVsZDIiLCJudW1iZXIiXSxbImZpZWxkMyIsImRhdGUiXSxbImZpZWxkNCIs
|
223
|
+
ImJvb2xlYW4iXSxbInVwZGF0ZWRfYXQiLCJkYXRlIl0sWyJjcmVhdGVkX2F0
|
224
|
+
IiwiZGF0ZSJdXX0=
|
225
|
+
http_version: !binary |-
|
226
|
+
MS4x
|
227
|
+
recorded_at: Mon, 20 Aug 2012 10:44:33 GMT
|
228
|
+
- request:
|
229
|
+
method: get
|
230
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/cartodb_spec?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
231
|
+
body:
|
232
|
+
encoding: US-ASCII
|
233
|
+
string: ''
|
234
|
+
headers:
|
235
|
+
Accept:
|
236
|
+
- *70293202938040
|
237
|
+
response:
|
238
|
+
status:
|
239
|
+
code: 200
|
240
|
+
message: !binary |-
|
241
|
+
T0s=
|
242
|
+
headers:
|
243
|
+
!binary "U2VydmVy":
|
244
|
+
- !binary |-
|
245
|
+
bmdpbng=
|
246
|
+
!binary "RGF0ZQ==":
|
247
|
+
- !binary |-
|
248
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozMyBHTVQ=
|
249
|
+
!binary "Q29udGVudC1UeXBl":
|
250
|
+
- !binary |-
|
251
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
252
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
253
|
+
- !binary |-
|
254
|
+
Y2h1bmtlZA==
|
255
|
+
!binary "Q29ubmVjdGlvbg==":
|
256
|
+
- !binary |-
|
257
|
+
a2VlcC1hbGl2ZQ==
|
258
|
+
!binary "VmFyeQ==":
|
259
|
+
- !binary |-
|
260
|
+
QWNjZXB0LUVuY29kaW5n
|
261
|
+
!binary "U3RhdHVz":
|
262
|
+
- !binary |-
|
263
|
+
MjAwIE9L
|
264
|
+
!binary "RXRhZw==":
|
265
|
+
- !binary |-
|
266
|
+
IjY3NzJjYzY4MDg0M2UzNzA0ZTYxOThiNjk0NWIwYzBkIg==
|
267
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
268
|
+
- !binary |-
|
269
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
270
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
271
|
+
- !binary |-
|
272
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
273
|
+
!binary "U2V0LUNvb2tpZQ==":
|
274
|
+
- !binary |-
|
275
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
276
|
+
UmlJbE9ETXhOelkzWVRZNVlXWTRPV1ZoTVRrelpEaGtZVGN6WkRkaU1HSTNa
|
277
|
+
V1pKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
278
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS02
|
279
|
+
ZjVhNDY3ODgzYzgwMGNkZDVkZTg1NGMwOTFmNzg2ZGI1NWE5Y2I2OyBkb21h
|
280
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
281
|
+
!binary "WC1SdW50aW1l":
|
282
|
+
- !binary |-
|
283
|
+
MC4wNTk4OTQ=
|
284
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
285
|
+
- !binary |-
|
286
|
+
Z3ppcA==
|
287
|
+
body:
|
288
|
+
encoding: ASCII-8BIT
|
289
|
+
string: !binary |-
|
290
|
+
eyJpZCI6ODE3MywibmFtZSI6ImNhcnRvZGJfc3BlYyIsInByaXZhY3kiOiJQ
|
291
|
+
VUJMSUMiLCJ0YWdzIjoiIiwic2NoZW1hIjpbWyJjYXJ0b2RiX2lkIiwibnVt
|
292
|
+
YmVyIl0sWyJmaWVsZDEiLCJzdHJpbmciXSxbImZpZWxkMiIsIm51bWJlciJd
|
293
|
+
LFsiZmllbGQzIiwiZGF0ZSJdLFsiZmllbGQ0IiwiYm9vbGVhbiJdLFsidXBk
|
294
|
+
YXRlZF9hdCIsImRhdGUiXSxbImNyZWF0ZWRfYXQiLCJkYXRlIl1dfQ==
|
295
|
+
http_version: !binary |-
|
296
|
+
MS4x
|
297
|
+
recorded_at: Mon, 20 Aug 2012 10:44:33 GMT
|
298
|
+
recorded_with: VCR 2.2.4
|
@@ -0,0 +1,2947 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- &70293202938040 !ruby/object:MIME::Type
|
12
|
+
content_type: application/json
|
13
|
+
raw_media_type: application
|
14
|
+
raw_sub_type: json
|
15
|
+
simplified: application/json
|
16
|
+
media_type: application
|
17
|
+
sub_type: json
|
18
|
+
extensions:
|
19
|
+
- json
|
20
|
+
encoding: 8bit
|
21
|
+
system:
|
22
|
+
registered: true
|
23
|
+
url:
|
24
|
+
- IANA
|
25
|
+
- RFC4627
|
26
|
+
obsolete:
|
27
|
+
docs:
|
28
|
+
response:
|
29
|
+
status:
|
30
|
+
code: 200
|
31
|
+
message: !binary |-
|
32
|
+
T0s=
|
33
|
+
headers:
|
34
|
+
!binary "U2VydmVy":
|
35
|
+
- !binary |-
|
36
|
+
bmdpbng=
|
37
|
+
!binary "RGF0ZQ==":
|
38
|
+
- !binary |-
|
39
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozNCBHTVQ=
|
40
|
+
!binary "Q29udGVudC1UeXBl":
|
41
|
+
- !binary |-
|
42
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
43
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
44
|
+
- !binary |-
|
45
|
+
Y2h1bmtlZA==
|
46
|
+
!binary "Q29ubmVjdGlvbg==":
|
47
|
+
- !binary |-
|
48
|
+
a2VlcC1hbGl2ZQ==
|
49
|
+
!binary "VmFyeQ==":
|
50
|
+
- !binary |-
|
51
|
+
QWNjZXB0LUVuY29kaW5n
|
52
|
+
!binary "U3RhdHVz":
|
53
|
+
- !binary |-
|
54
|
+
MjAwIE9L
|
55
|
+
!binary "RXRhZw==":
|
56
|
+
- !binary |-
|
57
|
+
ImM0YjFhMDhlMjdlNDEwMmM2ZDU1YTRlYmUxNTdlNDRiIg==
|
58
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
59
|
+
- !binary |-
|
60
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
61
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
62
|
+
- !binary |-
|
63
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
64
|
+
!binary "U2V0LUNvb2tpZQ==":
|
65
|
+
- !binary |-
|
66
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
67
|
+
UmlJbE5HRXdaV0l6TXpFd1lqY3hNREV5TmpjM09UaGxNR0k1WldKaU1HSTFN
|
68
|
+
RFJKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
69
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS1j
|
70
|
+
MTc2YmNmN2Q1Njk5MDdiOTRkNDRhMWY3NjczYTgxODQ0OTU3NmNhOyBkb21h
|
71
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
72
|
+
!binary "WC1SdW50aW1l":
|
73
|
+
- !binary |-
|
74
|
+
MC4wMDg0NTc=
|
75
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
76
|
+
- !binary |-
|
77
|
+
Z3ppcA==
|
78
|
+
body:
|
79
|
+
encoding: ASCII-8BIT
|
80
|
+
string: !binary |-
|
81
|
+
eyJ0b3RhbF9lbnRyaWVzIjoxLCJ0YWJsZXMiOlt7ImlkIjo4MTczLCJuYW1l
|
82
|
+
IjoiY2FydG9kYl9zcGVjIiwicHJpdmFjeSI6IlBVQkxJQyIsInRhZ3MiOiIi
|
83
|
+
LCJzY2hlbWEiOltbImNhcnRvZGJfaWQiLCJudW1iZXIiXSxbInRoZV9nZW9t
|
84
|
+
IiwiZ2VvbWV0cnkiLCJnZW9tZXRyeSIsInBvaW50Il0sWyJkZXNjcmlwdGlv
|
85
|
+
biIsInN0cmluZyJdLFsiZmllbGQxIiwic3RyaW5nIl0sWyJmaWVsZDIiLCJu
|
86
|
+
dW1iZXIiXSxbIm5hbWUiLCJzdHJpbmciXSxbImNyZWF0ZWRfYXQiLCJkYXRl
|
87
|
+
Il0sWyJ1cGRhdGVkX2F0IiwiZGF0ZSJdXSwidXBkYXRlZF9hdCI6IjIwMTIt
|
88
|
+
MDgtMjBUMTI6NDQ6MzMrMDI6MDAiLCJyb3dzX2NvdW50ZWQiOjB9XX0=
|
89
|
+
http_version: !binary |-
|
90
|
+
MS4x
|
91
|
+
recorded_at: Mon, 20 Aug 2012 10:44:34 GMT
|
92
|
+
- request:
|
93
|
+
method: delete
|
94
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/cartodb_spec?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
95
|
+
body:
|
96
|
+
encoding: US-ASCII
|
97
|
+
string: ''
|
98
|
+
headers:
|
99
|
+
Accept:
|
100
|
+
- *70293202938040
|
101
|
+
response:
|
102
|
+
status:
|
103
|
+
code: 200
|
104
|
+
message: !binary |-
|
105
|
+
T0s=
|
106
|
+
headers:
|
107
|
+
!binary "U2VydmVy":
|
108
|
+
- !binary |-
|
109
|
+
bmdpbng=
|
110
|
+
!binary "RGF0ZQ==":
|
111
|
+
- !binary |-
|
112
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozNCBHTVQ=
|
113
|
+
!binary "Q29udGVudC1UeXBl":
|
114
|
+
- !binary |-
|
115
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
116
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
117
|
+
- !binary |-
|
118
|
+
Y2h1bmtlZA==
|
119
|
+
!binary "Q29ubmVjdGlvbg==":
|
120
|
+
- !binary |-
|
121
|
+
a2VlcC1hbGl2ZQ==
|
122
|
+
!binary "VmFyeQ==":
|
123
|
+
- !binary |-
|
124
|
+
QWNjZXB0LUVuY29kaW5n
|
125
|
+
!binary "U3RhdHVz":
|
126
|
+
- !binary |-
|
127
|
+
MjAwIE9L
|
128
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
129
|
+
- !binary |-
|
130
|
+
bm8tY2FjaGU=
|
131
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
132
|
+
- !binary |-
|
133
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
134
|
+
!binary "U2V0LUNvb2tpZQ==":
|
135
|
+
- !binary |-
|
136
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
137
|
+
UmlJbE1EVTNNekpoWkdRNVlUSTBaakprTmpNMllUSmhNMlpsWWpaaU5HTXpN
|
138
|
+
bVpKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
139
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS0x
|
140
|
+
Mjc5MWI5NWFhOTU5NzMyZjc2MGUzNzU3NWQxNWY1ZDcyYWNlNmRmOyBkb21h
|
141
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
142
|
+
!binary "WC1SdW50aW1l":
|
143
|
+
- !binary |-
|
144
|
+
MC4xMjIxNjc=
|
145
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
146
|
+
- !binary |-
|
147
|
+
Z3ppcA==
|
148
|
+
body:
|
149
|
+
encoding: ASCII-8BIT
|
150
|
+
string: !binary |-
|
151
|
+
IA==
|
152
|
+
http_version: !binary |-
|
153
|
+
MS4x
|
154
|
+
recorded_at: Mon, 20 Aug 2012 10:44:34 GMT
|
155
|
+
- request:
|
156
|
+
method: post
|
157
|
+
uri: https://cartodb-rb-client.cartodb.com/upload
|
158
|
+
body:
|
159
|
+
encoding: UTF-8
|
160
|
+
string: ! "--50321512\r\nContent-Disposition: form-data; name=\"file\"; filename=\"whs_features.csv\"\r\nContent-Type:
|
161
|
+
application/octet-stream\r\n\r\ntitle,latitude,longitude,description,region,type,endangered_reason,edited_region,endangered_year,external_links,wikipedia_link,comments,criteria,iso_code,size,name,country,whs_site_id,date_of_inscription,whs_source_page\nAflaj
|
162
|
+
Irrigation Systems of Oman,22.998889,57.536056,\"A qanāt (from Arabic: قناة)
|
163
|
+
(Iran, Syria and Jordan) is a water management system used to provide a reliable
|
164
|
+
supply of water to human settlements and for irrigation in hot, arid and semi-arid
|
165
|
+
climates. Qanats are also called kārīz (or kārēz from Persian: كاريز) (Iran,
|
166
|
+
Afghanistan, Pakistan and Central Asia, derived from Persian: كاهریز), kahan
|
167
|
+
(from Persian: کهن), khettara (Morocco); galeria (Spain); falaj (United Arab
|
168
|
+
Emirates and Oman); Kahn (Baloch) or foggara/fughara (North Africa). Alternative
|
169
|
+
terms for qanats in Asia and North Africa are kakuriz, chin-avulz, and mayun.
|
170
|
+
Common variants of qanat in English include kanat, khanat, kunut, kona, konait,
|
171
|
+
ghanat, ghundat.\n\nThe qanat technology is known to have developed in pre-Islamic
|
172
|
+
Iran[when?] and then spread to other cultures. However, a recently discovered
|
173
|
+
falaj system in al-Ain, UAE, dates to 1000 BC, and another in Umm Safah, Sharja,
|
174
|
+
dates to the Iron Age. Also, a qanat-like system called the Turpan water system
|
175
|
+
originated in China during the Han Dynasty (206 BCE – 24 CE).\n\nThe value
|
176
|
+
of a qanat is directly related to the quality, volume and regularity of the
|
177
|
+
water flow. Much of the population of Iran and other arid countries in Asia
|
178
|
+
and North Africa historically depended upon the water from qanats; the areas
|
179
|
+
of population corresponded closely to the areas where qanats are possible.
|
180
|
+
Although a qanat was expensive to construct, its long-term value to the community,
|
181
|
+
and therefore to the group who invested in building and maintaining it, was
|
182
|
+
substantial.\n\nQanats are constructed as a series of well-like vertical shafts,
|
183
|
+
connected by gently sloping tunnels. Qanats tap into subterranean water in
|
184
|
+
a manner that efficiently delivers large quantities of water to the surface
|
185
|
+
without need for pumping. The water drains relying on gravity, with the destination
|
186
|
+
lower than the source, which is typically an upland aquifer. Qanats allow
|
187
|
+
water to be transported over long distances in hot dry climates without losing
|
188
|
+
a large proportion of the water to seepage and evaporation.\n\nIt is very
|
189
|
+
common in the construction of a qanat for the water source to be found below
|
190
|
+
ground at the foot of a range of foothills of mountains, where the water table
|
191
|
+
is closest to the surface. From this point, the slope of the qanat is maintained
|
192
|
+
closer to level than the surface above, until the water finally flows out
|
193
|
+
of the qanat above ground. To reach an aquifer, qanats must often extend for
|
194
|
+
long distances.\n\nQanats are sometimes split into an underground distribution
|
195
|
+
network of smaller canals called kariz. Like qanats, these smaller canals
|
196
|
+
were below ground to avoid contamination. In some cases water from a qanat
|
197
|
+
is stored in a reservoir, typically storing night flow for daytime use. An
|
198
|
+
Ab Anbar is an example of a traditional qanat fed reservoir for drinking water
|
199
|
+
in Persian antiquity.\n\nThe qanat system has the advantage of being resistant
|
200
|
+
to natural disasters such as earthquakes and floods, and to deliberate destruction
|
201
|
+
in war. Furthermore, it is almost insensitive to the levels of precipitation,
|
202
|
+
delivering a flow with only gradual variations from wet to dry years.\n\nThe
|
203
|
+
qanat technology is used most extensively in areas with the following characteristics:[citation
|
204
|
+
needed]\n\nA typical town or city in Iran and elsewhere where the qanat is
|
205
|
+
used has more than one qanat. Fields and gardens are located both over the
|
206
|
+
qanats a short distance before they emerge from the ground and after the surface
|
207
|
+
outlet. Water from the qanats defines both the social regions in the city
|
208
|
+
and the layout of the city.\n\nThe water is freshest, cleanest, and coolest
|
209
|
+
in the upper reaches and more prosperous people live at the outlet or immediately
|
210
|
+
upstream of the outlet. When the qanat is still below grade, the water is
|
211
|
+
drawn to the surface via water wells or animal driven Persian wells. Private
|
212
|
+
subterranean reservoirs could supply houses and buildings for domestic use
|
213
|
+
and garden irrigation as well. Further, air flow from the qanat is used to
|
214
|
+
cool an underground summer room (shabestan) found in many older houses and
|
215
|
+
buildings.\n\nDownstream of the outlet, the water runs through surface canals
|
216
|
+
called jubs (jūbs) which run downhill, with lateral branches to carry water
|
217
|
+
to the neighborhood, gardens and fields. The streets normally parallel the
|
218
|
+
jubs and their lateral branches. As a result, the cities and towns are oriented
|
219
|
+
consistent with the gradient of the land; this is a practical response to
|
220
|
+
efficient water distribution over varying terrain.\n\nThe lower reaches of
|
221
|
+
the canals are less desirable for both residences and agriculture. The water
|
222
|
+
grows progressively more polluted as it passes downstream. In dry years the
|
223
|
+
lower reaches are the most likely to see substantial reductions in flow.\n\nTraditionally
|
224
|
+
qanats are built by a group of skilled laborers, muqannīs, with hand labor.
|
225
|
+
The profession historically paid well and was typically handed down from father
|
226
|
+
to son.\n\nThe critical, initial step in qanat construction is identification
|
227
|
+
of an appropriate water source. The search begins at the point where the alluvial
|
228
|
+
fan meets the mountains or foothills; water is more abundant in the mountains
|
229
|
+
because of orographic lifting and excavation in the alluvial fan is relatively
|
230
|
+
easy. The muqannīs follow the track of the main water courses coming from
|
231
|
+
the mountains or foothills to identify evidence of subsurface water such as
|
232
|
+
deep-rooted vegetation or seasonal seeps. A trial well is then dug to determine
|
233
|
+
the location of the water table and determine whether a sufficient flow is
|
234
|
+
available to justify construction. If these prerequisites are met, then the
|
235
|
+
route is laid out aboveground.\n\nEquipment must be assembled. The equipment
|
236
|
+
is straightforward: containers (usually leather bags), ropes, reels to raise
|
237
|
+
the container to the surface at the shaft head, hatchets and shovels for excavation,
|
238
|
+
lights, spirit levels or plumb bobs and string. Depending upon the soil type,
|
239
|
+
qanat liners (usually fired clay hoops) may also be required.\n\nAlthough
|
240
|
+
the construction methods are simple, the construction of a qanat requires
|
241
|
+
a detailed understanding of subterranean geology and a degree of engineering
|
242
|
+
sophistication. The gradient of the qanat must be carefully controlled—too
|
243
|
+
shallow a gradient yields no flow—too steep a gradient will result in excessive
|
244
|
+
erosion, collapsing the qanat. And misreading the soil conditions leads to
|
245
|
+
collapses which at best require extensive rework and, at worst, can be fatal
|
246
|
+
for the crew.\n\nConstruction of a qanat is usually performed by a crew of
|
247
|
+
3-4 muqannīs. For a shallow qanat, one worker typically digs the horizontal
|
248
|
+
shaft, one raises the excavated earth from the shaft and one distributes the
|
249
|
+
excavated earth at the top.\n\nThe crew typically begins from the destination
|
250
|
+
to which the water will be delivered into the soil and works toward the source
|
251
|
+
(the test well). Vertical shafts are excavated along the route, separated
|
252
|
+
at a distance of 20–35 m. The separation of the shafts is a balance between
|
253
|
+
the amount of work required to excavate them and the amount of effort required
|
254
|
+
to excavate the space between them, as well as the ultimate maintenance effort.
|
255
|
+
In general, the shallower the qanat, the closer the vertical shafts. If the
|
256
|
+
qanat is long, excavation may begin from both ends at once. Tributary channels
|
257
|
+
are sometimes also constructed to supplement the water flow.\n\nMost qanats
|
258
|
+
in Iran run less than 5 km, while some have been measured at ~70 km in length
|
259
|
+
near Kerman. The vertical shafts usually range from 20 to 200 meters in depth,
|
260
|
+
although qanats in the province of Khorasan have been recorded with vertical
|
261
|
+
shafts of up to 275 m. The vertical shafts support construction and maintenance
|
262
|
+
of the underground channel as well as air interchange. Deep shafts require
|
263
|
+
intermediate platforms to simplify the process of removing spoils.\n\nThe
|
264
|
+
construction speed depends on the depth and nature of the ground. If the earth
|
265
|
+
is easy/soft to work; at 20 meters depth, a crew of 4 people can excavate
|
266
|
+
a horizontal length of 40 meters per day. When the vertical shaft reaches
|
267
|
+
40 meters, they can only excavate 20 meters horizontally per day and at 60
|
268
|
+
meters in depth this drops below 5 horizontal meters per day. In Algeria,
|
269
|
+
a common speed is just 2m per day at 15m depth. Deep, long qanats (which many
|
270
|
+
are) require years and even decades to construct.\n\nThe excavated material
|
271
|
+
is usually transported by means of leather bags up the vertical shafts. It
|
272
|
+
is mounded around the vertical shaft exit, providing a barrier that prevents
|
273
|
+
windblown or rain driven debris from entering the shafts. These mounds may
|
274
|
+
be covered to provide further protection to the qanat. From the air, these
|
275
|
+
shafts look like a string of bomb craters.\n\nThe qanat's water-carrying channel
|
276
|
+
must have a sufficient downward slope that water flows easily. However the
|
277
|
+
downward gradient must not be so great as to create conditions under which
|
278
|
+
the water transitions between supercritical and subcritical flow; if this
|
279
|
+
occurs, the waves which are established can result in severe erosion that
|
280
|
+
can damage or destroy the qanat. In shorter qanats the downward gradient varies
|
281
|
+
between 1:1000 and 1:1500, while in longer qanats it may be almost horizontal.
|
282
|
+
Such precision is routinely obtained with a spirit level and string.\n\nIn
|
283
|
+
cases where the gradient is steeper, underground waterfalls may be constructed
|
284
|
+
with appropriate design features (usually linings) to absorb the energy with
|
285
|
+
minimal erosion. In some cases the water power has been harnessed to drive
|
286
|
+
underground mills. If it is not possible to bring the outlet of the qanat
|
287
|
+
out near the settlement, it is necessary to run a jub or canal overground.
|
288
|
+
This is avoided when possible to limit pollution, warming and water loss due
|
289
|
+
to evaporation.\n\nThe vertical shafts may be covered to minimize in-blown
|
290
|
+
sand. The channels of qanats must be periodically inspected for erosion or
|
291
|
+
cave-ins, cleaned of sand and mud and otherwise repaired. Air flow must be
|
292
|
+
assured before entry for safety.\n\nSome damaged qanats have been restored.
|
293
|
+
In order to be sustainable, restoration needs to take into account many non-technical
|
294
|
+
factors, beginning with the process of selecting the qanat to be restored.
|
295
|
+
In the case of Syria, three sites were chosen based on a national inventory
|
296
|
+
conducted in 2001. One of them, the Drasiah qanat of Dmeir, was completed
|
297
|
+
in 2002. Selection criteria included the availability of a steady groundwater
|
298
|
+
flow, social cohesion and willingness to contribute of the community using
|
299
|
+
the qanat, and the existence of a functioning water rights system.\n\nThe
|
300
|
+
primary applications of qanats are for irrigation, providing cattle with water
|
301
|
+
and drinking water supply. Other applications include cooling and ice storage.\n\nQanats
|
302
|
+
used in conjunction with a wind tower can provide cooling as well as a water
|
303
|
+
supply. A wind tower is a chimney-like structure positioned above the house;
|
304
|
+
of its four openings, the one opposite the wind direction is opened to move
|
305
|
+
air out of the house. Incoming air is pulled from a qanat below the house.
|
306
|
+
The air flow across the vertical shaft opening creates a lower pressure (see
|
307
|
+
Bernoulli effect) and draws cool air up from the qanat tunnel, mixing with
|
308
|
+
it. The air from the qanat was drawn into the tunnel at some distance away
|
309
|
+
and is cooled both by contact with the cool tunnel walls/water and by the
|
310
|
+
giving up latent heat of evaporation as water evaporates into the air stream.
|
311
|
+
In dry desert climates this can result in a greater than 15°C reduction in
|
312
|
+
the air temperature coming from the qanat; the mixed air still feels dry,
|
313
|
+
so the basement is cool and only comfortably moist (not damp). Wind tower
|
314
|
+
and qanat cooling have been used in desert climates for over 1000 years.\n\nIn
|
315
|
+
400 BC Persian engineers had already mastered the technique of storing ice
|
316
|
+
in the middle of summer in the desert.\n\nThe ice could be brought in during
|
317
|
+
the winters from nearby mountains. But in a more usual & sophisticated method
|
318
|
+
they had a wall made along east-west direction close to the Ice Pit (yakhchal).In
|
319
|
+
winter the qanat water was being canalized to north side of the wall. The
|
320
|
+
shadow of the wall makes water freeze more quickly so they could have more
|
321
|
+
ice per each winter day. Then ice was being stored in a specially designed,
|
322
|
+
naturally cooled refrigerators called yakhchal (meaning ice pits). A large
|
323
|
+
underground space with thick insulated walls was connected to a qanat, and
|
324
|
+
a system of windcatchers or Wind Towers was used to draw cool subterranean
|
325
|
+
air up from the qanat to maintain temperatures inside the space at low levels,
|
326
|
+
even during hot summer days. As a result, the ice melted slowly and ice was
|
327
|
+
available year-round.\n\nThe Qanats, called Kariz (rhymes with \"\"breeze\"\")
|
328
|
+
\ in Pashto and Dari, have also been in use for hundreds of years. Kariz structures
|
329
|
+
are especially found in the Southern Afghanistan provinces of Kandahar, Uruzgan,
|
330
|
+
Nimroz and Hilmand. The incessant war for the last 30 years has destroyed
|
331
|
+
a number of these ancient structures. In the troubled times maintenance was
|
332
|
+
not always possible. To add to the troubles, at present (2008) the cost of
|
333
|
+
labour has become very high and maintaining the Kariz structures is no longer
|
334
|
+
possible[dubious – discuss]. Lack of skilled artisans who have the traditional
|
335
|
+
knowledge also poses difficulties. A number of the large farmers are abandoning
|
336
|
+
their Kariz which has been in their families sometimes for centuries, and
|
337
|
+
moving to tube and dug wells backed by diesel pumps[citation needed].\n\nHowever
|
338
|
+
the government of Afghanistan is aware of the importance of these structures
|
339
|
+
and all efforts are being made to repair, reconstruct and maintain (through
|
340
|
+
the community) the kariz[citation needed]. The Ministry of Rural Rehabilitation
|
341
|
+
and Development along with National and International NGOs is making the effort.\n\nStill,
|
342
|
+
there are functional qanat systems in 2009. American forces are reported to
|
343
|
+
have unintentionally destroyed some of the channels during expansion of a
|
344
|
+
military base, creating tensions between them and the local community. Some
|
345
|
+
of these tunnels have been used to store supplies, and to move men and equipment
|
346
|
+
underground.\n\nAn oasis at Turpan in the deserts of northwestern China uses
|
347
|
+
water provided by qanat (locally karez). Turfan has long been the center of
|
348
|
+
a fertile oasis and an important trade center along the Silk Road's northern
|
349
|
+
route, at which time it was adjacent to the kingdoms of Korla and Karashahr
|
350
|
+
to the southwest. The historical record of the karez system extends back to
|
351
|
+
the Han Dynasty. The Turfan Water Museum (see photos on this page) is a Protected
|
352
|
+
Area of the People's Republic of China because of the importance of the local
|
353
|
+
karez system to the history of the area. The number of karez systems in the
|
354
|
+
area is slightly below 1,000 and the total length of the canals is about 5,000
|
355
|
+
kilometers.\n\nIn Karnataka, India, a Qanat-type structure called Suranga
|
356
|
+
is used to tap underground water. But these are rarely in use these days[citation
|
357
|
+
needed].\n\nIt has been suggested that alleged underground temples at Gua
|
358
|
+
Made in Java reached by shafts, in which masks of a green metal were found,
|
359
|
+
originated as a qanat.\n\nIn the middle of the twentieth century, it is estimated
|
360
|
+
that approximately 50,000 qanats were in use in Iran, each commissioned and
|
361
|
+
maintained by local users. Of these only 25,000 remain in use as of 1980.\n\nThe
|
362
|
+
oldest and largest known qanat is in the Iranian city of Gonabad which after
|
363
|
+
2700 years still provides drinking and agricultural water to nearly 40,000
|
364
|
+
people. Its main well depth is more than 360 meters and its length is 45 kilometers.
|
365
|
+
Yazd, Khorasan and Kerman are the known zones for their dependence with an
|
366
|
+
extensive system of qanats.\n\nIn traditional Persian architecture, a Kariz
|
367
|
+
(کاریز) is a small Qanat, usually within a network inside an urban setting.
|
368
|
+
Kariz is what distributes the Qanat into its final destinations.\n\nA survey
|
369
|
+
of Qanat systems in the Kurdistan region of Iraq conducted by the Department
|
370
|
+
of Geography at Oklahoma State University (USA) on behalf of UNESCO in 2009
|
371
|
+
found that out of 683 karez systems, some 380 were still active in 2004, but
|
372
|
+
only 116 in 2009. Reasons for the decline of qanats include \"\"abandonment
|
373
|
+
and neglect\"\" previous to 2004, \"\"excessive pumping from wells\"\" and,
|
374
|
+
since 2005, drought. Water shortages are said to have forced over 100,000
|
375
|
+
people who depended on karez systems for their livelihoods to leave their
|
376
|
+
homes since 2005. The study says that a single karez has the potential to
|
377
|
+
provide enough household water for nearly 9,000 individuals and irrigate over
|
378
|
+
200 hectares of farmland. UNESCO and the government of Iraq plan to rehabilitate
|
379
|
+
Karez through a Karez Initiative for Community Revitalization to be launched
|
380
|
+
in 2010. Most of the karez are in Sulaymaniyah Governorate (84%). A large
|
381
|
+
number are also found in Erbil Governorate (13%), especially on the broad
|
382
|
+
plain around and in Erbil city.\n\nAmong the qanats built in the Roman Empire
|
383
|
+
was possibly the longest continuous qanat ever built, the 94 km long Gadara
|
384
|
+
Aqueduct in northern Jordan. Partly following the course of an older Hellenistic
|
385
|
+
aqueduct, excavation work arguably started after a visit of emperor Hadrian
|
386
|
+
in 129-130 AD. The Gadara Aqueduct was never quite finished, and was put in
|
387
|
+
service only in sections.\n\nThe Chagai district is in the north west corner
|
388
|
+
of Balochistan, Pakistan, bordering with Afghanistan and Iran. Qanats, locally
|
389
|
+
known as karezes, are found more broadly in this region. They are spread from
|
390
|
+
Chaghai district all the way up to Zhob district. A number of them are present
|
391
|
+
in Qilla Abdullah and Pishin districts. Karezes are also extensively found
|
392
|
+
in the neighbouring areas of Afghanistan such as Kandahar. The remains of
|
393
|
+
karezes found in different parts of the district are attributed to the Arabs.\n\nQanats
|
394
|
+
were found over much of Syria. The widespread installation of groundwater
|
395
|
+
pumps has lowered the water table and qanat system. Qanats have gone dry and
|
396
|
+
been abandoned across the country.\n\nIn Oman from the Iron Age Period (found
|
397
|
+
in Salut, Bat and other sites) a system of underground aqueducts called Falaj
|
398
|
+
were constructed, a series of well-like vertical shafts, connected by gently
|
399
|
+
sloping horizontal tunnels. There are three types of Falaj Daudi (داوودية)with
|
400
|
+
underground aqueducts Ghaili (الغيلية ) requiring a dam to collect the water
|
401
|
+
Aini (العينية ) whose source is a water spring These enabled large scale agriculture
|
402
|
+
to flourish in a dry land environment According to UNESCO some 3,000 aflaj
|
403
|
+
(plural) or falaj (singular), are still in use in Oman today. Nizwa, the former
|
404
|
+
capital city of Oman, was built around a falaj which is in use to this day.
|
405
|
+
These systems date to before the Iron Age in Oman . In July 2006, five representative
|
406
|
+
examples of this irrigation system were inscribed as a World Heritage Site.\n\nThe
|
407
|
+
oasis of Al Ain in the United Arab Emirates continues traditional falaj (qanat)
|
408
|
+
irrigations for the palm-groves and gardens.\n\nThere are 4 main oases in
|
409
|
+
the Egyptian desert. The Kharga Oasis is one of them which has been extensively
|
410
|
+
studied. As early as the second half of the 5th century BC there is evidence
|
411
|
+
that water was being used via qanats. The qanat is excavated through water-bearing
|
412
|
+
sandstone rock which seeps into the channel to collect in a basin behind a
|
413
|
+
small dam at the end. The width is approximately 60 cm, but the height ranges
|
414
|
+
from 5 to 9 meters; it is likely that the qanat was deepened to enhance seepage
|
415
|
+
when the water table dropped (as is also seen in Iran). From there the water
|
416
|
+
was used to irrigate fields.\n\nThere is another instructive structure located
|
417
|
+
at the Kharga Oasis. A well which apparently dried up was improved by driving
|
418
|
+
a side shaft through the easily penetrated sandstone (presumably in the direction
|
419
|
+
of greatest water seepage) into the hill of Ayn-Manâwîr to allow collection
|
420
|
+
of additional water. After this side shaft had been extended, another vertical
|
421
|
+
shaft was driven to intersect the side shaft. Side chambers were built and
|
422
|
+
holes bored into the rock—presumably at points where water seeped from the
|
423
|
+
rocks—are evident.\n\nDavid Mattingley reports foggara extending for hundreds
|
424
|
+
of miles in the Garamantes area near Jarma in Libya: \"\"The channels were
|
425
|
+
generally very narrow - less than 2 feet wide and 5 high - but some were several
|
426
|
+
miles long, and in total some 600 foggara extended for hundreds of miles underground.
|
427
|
+
The channels were dug out and maintained using a series of regularly-spaced
|
428
|
+
vertical shafts, one every 30 feet or so, 100,000 in total, averaging 30 feet
|
429
|
+
in depth, but sometimes reaching 130.\"\" (\"\"The 153 Club Newsletter\"\",
|
430
|
+
July 2007 No. 112, pp. 14–19; reprinted from Current world Archaeology.\n\nThe
|
431
|
+
foggara water management system in Tunisia, used to create oases, is similar
|
432
|
+
to that of the Iranian qanat. The foggara is dug into the foothills of a fairly
|
433
|
+
steep mountain range such as the eastern ranges of the Atlas mountains. Rainfall
|
434
|
+
in the mountains enters the aquifer and moves toward the Saharan region to
|
435
|
+
the south. The foggara, 1 to 3 km in length, penetrates the aquifer and collects
|
436
|
+
water. Families maintain the foggara and own the land it irrigates over a
|
437
|
+
ten meter wide, with width only by the size of plot that the available water
|
438
|
+
will irrigate.\n\nQanats (designated foggaras in Algeria) are the source of
|
439
|
+
water for irrigation at large oases like that at Gourara. The foggaras are
|
440
|
+
also found at Touat (an area of Adrar 200 km from Gourara). The length of
|
441
|
+
the foggaras in this region is estimated to be thousands of kilometers.\n\nAlthough
|
442
|
+
sources suggest that the foggaras may have been in use as early as 200 AD,
|
443
|
+
they were clearly in use by the 11th century after the Arabs took possession
|
444
|
+
of the oases in the 10th century and the residents embraced Islam.\n\nThe
|
445
|
+
water is metered to the various users through the use of distribution weirs
|
446
|
+
which meter flow to the various canals, each for a separate user.\n\nThe humidity
|
447
|
+
of the oases is also used to supplement the water supply to the foggara. The
|
448
|
+
temperature gradient in the vertical shafts causes air to rise by natural
|
449
|
+
convection, causing a draft to enter the foggara. The moist air of the agricultural
|
450
|
+
area is drawn into the foggara in the opposite direction to the water run-off.
|
451
|
+
In the foggara it condenses on the tunnel walls and the air passed out of
|
452
|
+
the vertical shafts. This condensed moisture is available for reuse.\n\nIn
|
453
|
+
southern Morocco the qanat (locally khettara) is also used. On the margins
|
454
|
+
of the Sahara Desert, the isolated oases of the Draa River valley and Tafilalt
|
455
|
+
have relied on qanat water for irrigation since the late-14th century. In
|
456
|
+
Marrakech and the Haouz plain the qanats have been abandoned since the early
|
457
|
+
1970s as they've dried; in the Tafilaft area half of the 400 khettaras are
|
458
|
+
still in use. The Hassan Adahkil Dam's impact on local water tables is said
|
459
|
+
to be one of the many reasons given for the loss of half of the khettara.\n\nThe
|
460
|
+
black berbers (haratin) of the south were the hereditary class of qanat diggers
|
461
|
+
in Morocco who build and repair these systems. Their work was hazardous.\n\nQanats
|
462
|
+
have preserved in Armenia in the community of Shvanidzor, in the southern
|
463
|
+
province of Syunik, bordering with Iran. Qanats are named kahrezes in Armenian.
|
464
|
+
There are 5 kahrezes in Shvanidzor. Four of them were constructed in XII-XIVc,
|
465
|
+
even before the village was founded. The fifth kahrez was constructed in 2005.
|
466
|
+
Potable water runs through I, II and V kahrezs. Kahrez III and IV are in quite
|
467
|
+
poor condition. In summer, especially in July and August, the amount of water
|
468
|
+
reaches its minimum, creating critical situation in the water supply system.
|
469
|
+
Still, kahrezes are the main source of potable and irrigation water for the
|
470
|
+
community.\n\nThe 5653 m long Claudius Tunnel, meant for draining the largest
|
471
|
+
Italian inland water, Fucine Lake, was constructed using the qanat technique.
|
472
|
+
It featured shafts up to 122 m deep. The entire ancient town of Palermo in
|
473
|
+
Sicily was equipped with a huge qanat system built during the Arab period
|
474
|
+
(827–1072). Many of the qanat are now mapped and some can be visited. The
|
475
|
+
famous Scirocco room has an air-conditioning system cooled by the flow of
|
476
|
+
water in a qanat and a \"\"wind tower\"\", a structure able to catch the wind
|
477
|
+
and direct it into the room.\n\nThe Raschpëtzer near Helmsange in southern
|
478
|
+
Luxembourg is a particularly well preserved example of a Roman qanat. It is
|
479
|
+
probably the most extensive system of its kind north of the Alps. To date
|
480
|
+
some 330 m of the total tunnel length of 600 m have been explored. Thirteen
|
481
|
+
of the 20 to 25 shafts have been investigated. The qanat appears to have provided
|
482
|
+
water for a large Roman villa on the slopes of the Alzette valley. It was
|
483
|
+
built during the Gallo-Roman period, probably around the year 150 and functioned
|
484
|
+
for about 120 years thereafter.\n\nThere are still many examples of galeria
|
485
|
+
or qanat systems in Spain, most likely brought to the area by the Moors during
|
486
|
+
their occupation of the Iberian peninsula. Turrillas in Andalusia on the north
|
487
|
+
facing slopes of the Sierra de Alhamilla has evidence of a qanat system. Granada
|
488
|
+
is another site with an extensive qanat system.\n\nQanats in the Americas,
|
489
|
+
usually referred to as filtration galleries, can be found in the Nazca region
|
490
|
+
of Peru and in northern Chile. The Spanish introduced qanats into Mexico in
|
491
|
+
1520 AD.\",\"Dakhiliya, Sharqiya and Batinah Regions\",cultural,,\"Dakhiliya,
|
492
|
+
Sharqiya and Batinah Regions\",,\"[The Origin and Spread of Qanats in the
|
493
|
+
Old World|http://www.jstor.org/stable/986162]#[\"\"Assessment of the Contributions
|
494
|
+
of Traditional Qanats in Sustainable Water Resources Management\"\"|http://www.ingentaconnect.com/content/routledg/cijw/2006/00000022/00000004/art00005]#[10.1080/07900620600551304|http://dx.doi.org/10.1080%2F07900620600551304]#[\"\"Reasons
|
495
|
+
behind Failure of Qanats in the 20th Century\"\"|http://scitation.aip.org/vsearch/servlet/VerityServlet?KEY=ASCERL&smode=strresults&maxdisp=25&possible1=Madani%2C+Kaveh&possible1zone=author&OUTLOG=NO&aqs=true&viewabs=ASCECP&key=DISPLAY&docID=1&page=0&chapter=0&aqs=true]#[10.1061/40976(316)77|http://dx.doi.org/10.1061%2F40976%28316%2977]\",http://en.wikipedia.org/wiki/Qanat,,[v],OM,14560000.0,Aflaj
|
496
|
+
Irrigation Systems of Oman,Oman,1207,2006,http://whc.unesco.org/en/list/1207\nAlto
|
497
|
+
Douro Wine Region,41.101667,-7.798889,\"\",\"Douro Region, Trás-os-Montes
|
498
|
+
e Alto Douro\",cultural,,\"Douro Region, Trás-os-Montes e Alto Douro\",,\"\",http://en.wikipedia.org/wiki/Douro_DOC,,\"[iii],[iv],[v]\",PT,246000000.0,Alto
|
499
|
+
Douro Wine Region,Portugal,1046,2001,http://whc.unesco.org/en/list/1046\nAmiens
|
500
|
+
Cathedral,49.895,2.301667,\"The Cathedral of Our Lady of Amiens (French: Cathédrale
|
501
|
+
Notre-Dame d'Amiens), or simply Amiens Cathedral, is a Roman Catholic cathedral
|
502
|
+
and seat of the Bishop of Amiens, Jean-Luc Bouilleret. The cathedral is the
|
503
|
+
tallest complete cathedral in France, with the greatest interior volume (estimated
|
504
|
+
at 200,000 m³). The vaults of the nave are 42.30 m high, the tallest nave
|
505
|
+
vaults in any completed French cathedral, and surpassed only by the incomplete
|
506
|
+
Beauvais Cathedral. This monumental cathedral is located in Amiens, the chief
|
507
|
+
city of Picardy, in the Somme River valley a little over 100 kilometers north
|
508
|
+
of Paris.\n\nNotre-Dame d'Amiens has been listed as a UNESCO World Heritage
|
509
|
+
Site since 1981 and was profiled in a PBS documentary.\n\nThe lack of documentation
|
510
|
+
concerning the construction of the Gothic cathedral may be in part the result
|
511
|
+
of fires that destroyed the chapter archives in 1218 and again in 1258—a fire
|
512
|
+
that damaged the cathedral itself. Bishop Evrard de Fouilly initiated work
|
513
|
+
on the cathedral in 1220. Robert de Luzarches was the architect until 1228,
|
514
|
+
and was followed by Thomas de Cormont until 1258. His son, Renaud de Cormont,
|
515
|
+
acted as the architect until 1288. The chronicle of Corbie gives a completion
|
516
|
+
date for the cathedral of 1266. Finishing works continued, however. Its floors
|
517
|
+
are covered with a number of designs, such as the swastika (to symbolize Jesus'
|
518
|
+
triumph over death). The labyrinth was installed in 1288. The cathedral contains
|
519
|
+
the alleged head of John the Baptist, a relic brought from Constantinople
|
520
|
+
by Wallon de Sarton as he was returning from the Fourth Crusade.\n\nThe construction
|
521
|
+
of the cathedral at this period can be seen as resulting from a coming together
|
522
|
+
of necessity and opportunity. The destruction of earlier buildings and attempts
|
523
|
+
at rebuilding by fire forced the fairly rapid construction of a building that,
|
524
|
+
consequently, has a good deal of artistic unity. The long and relatively peaceful
|
525
|
+
reign of Louis IX of France brought a prosperity to the region, based on thriving
|
526
|
+
agriculture and a booming cloth trade, that made the investment possible.
|
527
|
+
The great cathedrals of Reims and Chartres are roughly contemporary.\n\nThe
|
528
|
+
original design of the flying buttresses around the choir had them placed
|
529
|
+
too high to counteract the force of the ceiling arch pushing outwards resulting
|
530
|
+
in excessive lateral forces being placed on the vertical columns. The structure
|
531
|
+
was only saved when, centuries later, masons placed a second row of more robust
|
532
|
+
flying buttresses that connected lower down on the outer wall. This fix failed
|
533
|
+
to counteract similar issues with the lower wall which began to develop large
|
534
|
+
cracks around the late Middle Ages. This was solved by another patch that
|
535
|
+
consisted of a wrought iron bar chain being installed around the mezzanine
|
536
|
+
level to resist the forces pushing the stone columns outward. The chain was
|
537
|
+
installed red hot to act as a cinch, tightening as it cooled.\n\nThe west
|
538
|
+
front of the cathedral, (illustration, right) built in a single campaign,
|
539
|
+
1220–36, shows an unusual degree of artistic unity: its lower tier with three
|
540
|
+
vast deep porches is capped with the gallery of twenty-two over lifesize kings,
|
541
|
+
which stretches across the entire façade beneath the rose window. Above the
|
542
|
+
rose window there is an open arcade, the galerie des sonneurs. Flanking the
|
543
|
+
nave, the two towers were built without close regard to the former design,
|
544
|
+
the south tower being finished in 1366, the north one, reaching higher, in
|
545
|
+
1406.\n\nThe Western portals of the cathedral are justly famous for their
|
546
|
+
elaborate sculpture, featuring a gallery of locally-important saints and large
|
547
|
+
eschatological scenes. Statues of saints in the portal of the cathedral have
|
548
|
+
been identified as including the locally venerated Saints Victoricus and Gentian,
|
549
|
+
Saint Domitius, Saint Ulphia, and Saint Fermin.\n\nIn the book Mr Standfast,
|
550
|
+
John Buchan has his character Richard Hannay describe the cathedral as being
|
551
|
+
\"\"the noblest church that the hand of man ever built only for God.\"\"\n\nDuring
|
552
|
+
the process of laser cleaning in the 1990s, it was discovered that the western
|
553
|
+
façade of the cathedral was originally painted in multiple colours. A technique
|
554
|
+
was perfected to determine the exact make-up of the colours as they were applied
|
555
|
+
in the 13th century. Then, in conjunction with the laboratories of EDF (Electricity
|
556
|
+
of France) and the expertise of the Society Skertzo, elaborate lighting techniques
|
557
|
+
were developed to project these colours directly on the façade with precision,
|
558
|
+
recreating the polychromatic appearance of the 13th century. When projected
|
559
|
+
on the statues around the portals, the result is a stunning display that brings
|
560
|
+
the figures to life. The projected colors are faint to photograph, but a good
|
561
|
+
quality DSLR will provide excellent results as shown here.\n\nOf course, the
|
562
|
+
full magical effect can best be appreciated by direct viewing, accompanied
|
563
|
+
by stirring music, which can be done at the Son et lumière on Summer evenings,
|
564
|
+
during the Christmas Fair, and over the New Year.\n\nAmiens cathedral contains
|
565
|
+
the largest medieval interior in Western Europe, supported by 126 pillars.
|
566
|
+
Both the nave and the chancel are vast but extremely light, with considerable
|
567
|
+
amounts of stained glass surviving, despite the depredations of war.\n\nThe
|
568
|
+
ambulatory surrounding the choir is richly decorated with polychrome sculpture
|
569
|
+
and flanked by numerous chapels. One of the most sumptuous is the Drapers'
|
570
|
+
chapel. The cloth industry was the most dynamic component of the medieval
|
571
|
+
economy, especially in northern France, and the cloth merchants were keen
|
572
|
+
to display their wealth and civic pride. Another striking chapel is dedicated
|
573
|
+
to St Thomas of Canterbury, a 13th century dedication that complements the
|
574
|
+
cathedral's own very full list of martyrs.\n\nThe interior contains works
|
575
|
+
of art and decoration from every period since the building of the cathedral.\n\nThe
|
576
|
+
initial impetus for the building of the cathedral came from the installation
|
577
|
+
of the reputed head of John the Baptist on 17 December 1206. The head was
|
578
|
+
part of the loot of the Fourth Crusade, which had been diverted from campaigning
|
579
|
+
against the Turks to sacking the great Christian city of Constantinople. A
|
580
|
+
sumptuous reliquary was made to house the skull. Although later lost, a 19th
|
581
|
+
century replica still provides a focus for prayer and meditation in the North
|
582
|
+
aisle.\n\nSome of the most important works of art are sequences of polychrome
|
583
|
+
sculpture, dating mainly from the late 15th and the 16th centuries. A large
|
584
|
+
sequence in the North transept illustrates Jesus' Cleansing of the Temple,
|
585
|
+
with imaginative tableaux of the Temple. Both sides of the ambulatory are
|
586
|
+
lined with sequences illustrating the lives of the two saints whose cults
|
587
|
+
brought large numbers of pilgrims to the cathedral: John the Baptist and St
|
588
|
+
Firmin, the first bishop of Amiens. The artists took care to create a parallelism
|
589
|
+
in the telling of the stories: both saints, decapitated for offending the
|
590
|
+
rich and powerful, suffer neglect and loss, until a later generation discovers
|
591
|
+
their relics and houses them fittingly.\n\nThe baroque pulpit, constructed
|
592
|
+
of marble and gilded wood, dominates the nave of the cathedral. It is supported
|
593
|
+
by three allegorical female figures, apparently representing Faith, Hope and
|
594
|
+
Charity, the three Theological Virtues.\n\n\n\nCoordinates: 49°53′42″N 2°18′08″E\uFEFF
|
595
|
+
/ \uFEFF49.895°N 2.30222°E\uFEFF / 49.895; 2.30222\",\"Department of Somme,
|
596
|
+
Picardie Region\",cultural,,\"Department of Somme, Picardie Region\",,[Amiens
|
597
|
+
Cathedral.|http://www.britannica.com/eb/article-9106231]#[Amiens Cathedral
|
598
|
+
- World Heritage Site|http://www.worldheritagesite.org/sites/amiens.html]#[360°
|
599
|
+
photos of the cathedral|http://www.world-heritage-tour.org/europe/france/amiens/map.html]#[Outstanding
|
600
|
+
photos of the cathedral|http://www.pbase.com/ericdeparis/cathedrale_de_amiens]#[Photos|http://kunsthistorie.com/galleri/index.php?album=Frankrike%2FAmiens&sortby=name&order=asc],http://en.wikipedia.org/wiki/Amiens_Cathedral,,\"[i],[ii]\",FR,8600.0,Amiens
|
601
|
+
Cathedral,France,162,1981,http://whc.unesco.org/en/list/162\nAncient City
|
602
|
+
of Bosra,32.51806,36.48167,\"Bosra (Arabic: بصرى, also Bostra, Busrana, Bozrah,
|
603
|
+
Bozra, Busra Eski Şam, Busra ash-Sham, Nova Trajana Bostra) is an ancient
|
604
|
+
city administratively belonging to the Daraa Governorate in southern Syria.
|
605
|
+
It is a major archaeological site and has been declared a UNESCO World Heritage
|
606
|
+
Site.\n\nThe settlement was first mentioned in the documents of Tutmose III
|
607
|
+
and Akhenaton (14th century BC). Bosra was the first Nabatean city in the
|
608
|
+
2nd century BC. The Nabatean Kingdom was conquered by Cornelius Palma, a general
|
609
|
+
of Trajan, in 106.\n\nUnder the Roman Empire, Bosra was renamed Nova Trajana
|
610
|
+
Bostra, and was the residence of the legio III Cyrenaica and capital of the
|
611
|
+
Roman province Arabia Petraea. The city flourished and became a major metropolis
|
612
|
+
at the juncture of several trade routes, including the Roman road to the Red
|
613
|
+
Sea. The two Councils of Arabia were held at Bostra in 246 and 247 AD. The
|
614
|
+
city was conquered by the Sassanid Persians in the early 7th century, and,
|
615
|
+
after a short Byzantine reconquest, was finally captured by the forces of
|
616
|
+
the Rashidun Caliphate under Khalid ibn Walid in the Battle of Bosra (634).
|
617
|
+
Thereafter it was an Islamic possession.\n\nBosra played an important part
|
618
|
+
in the early life of the Prophet of Islam, Mohammed as described in the entry
|
619
|
+
for the Christian Monk, Bahira. Bahira was witnessing to Muhammad in the prophethood.\n\nToday,
|
620
|
+
Bosra is a major archaeological site, containing ruins from Roman, Byzantine,
|
621
|
+
and Muslim times, its main feature being the well preserved Roman theatre.
|
622
|
+
Every year there is a national music festival hosted in the main theater.\n\nOf
|
623
|
+
the city which once counted 80,000 inhabitants, there remains today only a
|
624
|
+
village settled among the ruins. The second century Roman theater, constructed
|
625
|
+
probably under Trajan, is the only monument of this type with its upper gallery
|
626
|
+
in the form of a covered portico which has been integrally preserved. It was
|
627
|
+
fortified between 481 and 1231 AD.\n\nFurther, Nabatean and Roman monuments,
|
628
|
+
Christian churches, mosques and Madrasahs are present within the half ruined
|
629
|
+
enceinte of the city. The structure of this monument a central plan with eastern
|
630
|
+
apses flanked by 2 sacristies exerted a decisive influence on the evolution
|
631
|
+
of Christian architectural forms, and, to a certain extent, on Islamic style
|
632
|
+
as well. Al-Omari Mosque of Bosra is one of the oldest surviving mosques in
|
633
|
+
Islamic history.\n\nClose by are the Kharaba Bridge and the Gemarrin Bridge,
|
634
|
+
both Roman bridges.\n\nCoordinates: 32°31′N 36°29′E\uFEFF / \uFEFF32.517°N
|
635
|
+
36.483°E\uFEFF / 32.517; 36.483\",Governorate of Deraa,cultural,,Governorate
|
636
|
+
of Deraa,,[Catholic Encyclopedia on Bosra|http://www.newadvent.org/cathen/02707a.htm]#[Official
|
637
|
+
website of Bosra city|http://www.bosracity.com/]#[Bosra World Heritage site
|
638
|
+
in panographies - 360 degree interactive imaging|http://www.WHTour.org/22]#[Extensive
|
639
|
+
photo site about Bosra|http://www.pbase.com/dosseman_syria/bosra],http://en.wikipedia.org/wiki/Bosra,,\"[i],[iii],[vi]\",SY,,Ancient
|
640
|
+
City of Bosra,Syrian Arab Republic,22,1980,http://whc.unesco.org/en/list/22\nAncient
|
641
|
+
City of Nessebar,42.65611,27.73,\"Nesebar (Bulgarian: Несебър, pronounced
|
642
|
+
[neˈsebər], also transcribed as Nessebar or Nesebur; ancient name: Mesembria)
|
643
|
+
is an ancient town and one of the major seaside resorts on the Bulgarian Black
|
644
|
+
Sea Coast, located in Burgas Province. It is the administrative centre of
|
645
|
+
the homonymous Nesebar Municipality. Often referred to as the \"\"Pearl of
|
646
|
+
the Black Sea\"\" and \"\"Bulgaria's Dubrovnik\"\", Nesebar is a rich city-museum
|
647
|
+
defined by more than three millennia of ever-changing history.\n\nIt is a
|
648
|
+
one of the most prominent tourist destinations and seaports on the Black Sea,
|
649
|
+
in what has become a popular area with several large resorts—the largest,
|
650
|
+
Sunny Beach, is situated immediately to the north of Nesebar.\n\nNesebar has
|
651
|
+
on several occasions found itself on the frontier of a threatened empire,
|
652
|
+
and as such it is a town with a rich history. The ancient part of the town
|
653
|
+
is situated on a peninsula (previously an island) connected to the mainland
|
654
|
+
by a narrow man-made isthmus, and it bears evidence of occupation by a variety
|
655
|
+
of different civilisations over the course of its existence. Its abundance
|
656
|
+
of historic buildings prompted UNESCO to include Nesebar in its list of World
|
657
|
+
Heritage Sites in 1983.\n\nAs of December 2009, the town has a population
|
658
|
+
of 11,626 inhabitants. It lies at 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
|
659
|
+
/ 42.65; 27.733Coordinates: 42°39′N 27°44′E\uFEFF / \uFEFF42.65°N 27.733°E\uFEFF
|
660
|
+
/ 42.65; 27.733.\n\nInhabited in the Antiquity by the Thracians and the Ancient
|
661
|
+
Greeks, the original Thracian settlement Menebria was called Mesembria (Ancient Greek:
|
662
|
+
Μεσήμβρια) by the Ancient Greeks. Under this name it was still known in the
|
663
|
+
Middle Ages to Bulgarians and Byzantines.\n\nOriginally a Thracian settlement
|
664
|
+
known as Menebria, the town became a Greek colony when settled by Dorians
|
665
|
+
from Megara at the beginning of the 6th century BC, and was an important trading
|
666
|
+
centre from then on and a rival of Apollonia (Sozopol). It remained the only
|
667
|
+
Doric colony along the Black Sea coast, as the rest were typical Ionic colonies.
|
668
|
+
Remains from the Hellenistic period include the acropolis, a temple of Apollo,
|
669
|
+
and an agora. A wall which formed part of the fortifications can still be
|
670
|
+
seen on the north side of the peninsula. Bronze and silver coins were minted
|
671
|
+
in the city since the 5th century BC and gold coins since the 3rd century
|
672
|
+
BC.\n\nThe town fell under Roman rule in 71 BC, yet continued to enjoy privileges
|
673
|
+
such as the right to mint its own coinage. It was one of the most important
|
674
|
+
strongholds of the Byzantine Empire from the 5th century AD onwards, and was
|
675
|
+
fought over by Byzantines and Bulgarians, being captured and incorporated
|
676
|
+
in the lands of the First Bulgarian Empire in 812 by Khan Krum after a two
|
677
|
+
week siege only to be ceded back to Byzantium by Knyaz Boris I in 864 and
|
678
|
+
reconquered by his son Tsar Simeon the Great. During the time of the Second
|
679
|
+
Bulgarian Empire it was also contested by Bulgarian and Byzantine forces and
|
680
|
+
enjoyed particular prosperity under Bulgarian tsar Ivan Alexander (1331–1371)
|
681
|
+
until it was conquered by Crusaders led by Amadeus VI, Count of Savoy in 1366.
|
682
|
+
The Bulgarian version of the name, Nesebar or Mesebar, has been attested since
|
683
|
+
the 11th century.\n\nMonuments from the Middle Ages include the 5–6th century
|
684
|
+
Stara Mitropoliya (\"\"old bishopric\"\"; also St Sophia), a basilica without
|
685
|
+
a transept; the 10th century church of the Virgin; and the 11th century Nova
|
686
|
+
Mitropoliya (\"\"new bishopric\"\"; also St Stephen) which continued to be
|
687
|
+
embellished until the 18th century. In the 13th and 14th century a remarkable
|
688
|
+
series of churches were built: St Theodore, St Paraskeva, St Michael St Gabriel,
|
689
|
+
and St John Aliturgetos.\n\nThe capture of the town by the Turks in 1453 marked
|
690
|
+
the start of its decline, but its architectural heritage remained and was
|
691
|
+
enriched in the 19th century by the construction of wooden houses in style
|
692
|
+
typical for the Bulgarian Black Sea Coast during this period. It was a kaza
|
693
|
+
centre in İslimye sanjak of Edirne Province before 1878. After the Liberation
|
694
|
+
of Bulgaria from Ottoman rule in 1878, Nesebar became part of the autonomous
|
695
|
+
Ottoman province of Eastern Rumelia as a kaza centre in Burgaz sanjak until
|
696
|
+
it united with the Principality of Bulgaria in 1886.\n\nAround the end of
|
697
|
+
the 19th century Nesebar was a small town of Greek fishermen and vinegrowers,
|
698
|
+
but developed as a key Bulgarian seaside resort since the beginning of the
|
699
|
+
20th century. After 1925 a new town part was built and the historic Old Town
|
700
|
+
was restored.\n\nNesebar is sometimes said to be the town with the highest
|
701
|
+
number of churches per capita.[1], [2] Although this might be wrong, their
|
702
|
+
number and variety is still impressive. Some of the most famous include:\n\nWhether
|
703
|
+
built during the Byzantine, Bulgarian or Ottoman rule of the city, the churches
|
704
|
+
of Nesebar represent the rich architectural heritage of the Eastern Orthodox
|
705
|
+
world and illustrate the gradual development from Early Christian basilicas
|
706
|
+
to medieval cross-domed churches.\n\nNesebar Gap on Livingston Island in the
|
707
|
+
South Shetland Islands, Antarctica is named after Nesebar.\",Burgas Province,cultural,,Burgas
|
708
|
+
Province,,[Evaluation|http://whc.unesco.org/archive/advisory_body_evaluation/217.pdf]#[Gallery
|
709
|
+
of pictures from Nesebar|http://www.pbase.com/ngruev/nesebur]#[Folklore Ensemble
|
710
|
+
Slanchev Bryag – Nessebar|http://www.nessebar-folk.com/]#[Ancient Nesebar|http://www.ancient-nessebar.com/]#[Portal
|
711
|
+
of Nessebar|http://www.nessebar-bulgaria.com/],http://en.wikipedia.org/wiki/Nesebar,,\"[iii],[iv]\",BG,270000.0,Ancient
|
712
|
+
City of Nessebar,Bulgaria,217,1983,http://whc.unesco.org/en/list/217\nTiya,8.43491,38.6121,\"Tiya
|
713
|
+
is a town in southern Ethiopia. Located in the Gurage Zone of the Southern
|
714
|
+
Nations, Nationalities, and Peoples Region south of Addis Ababa, the town
|
715
|
+
has a latitude and longitude of 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
|
716
|
+
/ 8.433; 38.617Coordinates: 8°26′N 38°37′E\uFEFF / \uFEFF8.433°N 38.617°E\uFEFF
|
717
|
+
/ 8.433; 38.617.\n\nTiya is best known for its adjacent archeological site,
|
718
|
+
which is distinguished by 36 standing stones or stelae, \"\"32 of which are
|
719
|
+
engraved with enigmatic symbols, notably swords,\"\" marking a large, prehistoric
|
720
|
+
burial complex. A German ethnographic expedition had visited the site in April
|
721
|
+
1935, and had found at one hour's journey to the south of the caravan camp
|
722
|
+
the stone monoliths with sword symbol, which had been seen earlier by Neuville
|
723
|
+
and Père Azaïs. The archeological site was designated a World Heritage Site
|
724
|
+
in 1980.\n\nOther points of interest near Tiya include Melka Awash, the Hera
|
725
|
+
Shetan crater lake, and Agesoke a place where very tall naturally ordered
|
726
|
+
stoneblocks could be seen.\n\nBased on figures from the Central Statistical
|
727
|
+
Agency in 2005, Tiya has an estimated total population of 3,363 of whom 1,615
|
728
|
+
are men and 1,748 are women. The 1994 national census reported this town had
|
729
|
+
a total population of 1,856 of whom 894 were males and 962 were females. Tiya
|
730
|
+
is one of three towns in Soddo woreda.\",\"Sodo woreda, Gurage zone, Southern
|
731
|
+
Nation Nationalities & Peoples Region\",cultural,,\"Sodo woreda, Gurage zone,
|
732
|
+
Southern Nation Nationalities & Peoples Region\",,[UNESCO Tiya Site|http://whc.unesco.org/en/list/12],http://en.wikipedia.org/wiki/Tiya,,\"[i],[iv]\",ET,,Tiya,Ethiopia,12,1980,http://whc.unesco.org/en/list/12\nAncient
|
733
|
+
Thebes with its Necropolis,25.73333,32.6,\"Thebes (Θῆβαι, Thēbai, Arabic:
|
734
|
+
طيبة, Ṭībah) is the Greek name for a city in Ancient Egypt located about
|
735
|
+
800 km south of the Mediterranean, on the east bank of the river Nile. The
|
736
|
+
Theban Necropolis is located nearby on the west bank of the Nile. Thebes was
|
737
|
+
inhabited from around 3200 BC. It was the eponymous capital of Waset, the
|
738
|
+
fourth Upper Egyptian nome. Waset was the capital of Egypt during part of
|
739
|
+
the 11th Dynasty (Middle Kingdom) and most of the 18th Dynasty (New Kingdom),
|
740
|
+
when Hatshepsut built a Red Sea fleet to facilitate trade between Thebes Red
|
741
|
+
Sea port of Elim, modern Quasir, and Elat at the head of the Gulf of Aqaba.
|
742
|
+
Traders bought frankincense, myrrh, bitumen, natron, fine woven linen, juniper
|
743
|
+
oil and copper amulets for the mortuary industry at Karnak with Nubian gold.
|
744
|
+
With the 19th Dynasty the seat of government moved to the Delta. The archaeological
|
745
|
+
remains of Thebes offer a striking testimony to Egyptian civilization at its
|
746
|
+
height. The Greek poet Homer extolled the wealth of Thebes in the Iliad, Book
|
747
|
+
9 (c. 8th Century BC): \"\"... in Egyptian Thebes the heaps of precious ingots
|
748
|
+
gleam, the hundred-gated Thebes.\"\"\n\nThe name Thebai is the Greek designation
|
749
|
+
of the ancient Egyptian opet \"\"The Karnak Temple\"\" (from coptic ta-pe,
|
750
|
+
Ta-opet became Thebai). At the seat of the Theban triad of Amun, Mut, and
|
751
|
+
Khonsu, Thebes was known in the Egyptian language from the end of the New
|
752
|
+
Kingdom as niwt-imn, \"\"The City of Amun.\"\" This found its way into the
|
753
|
+
Hebrew Bible as נא אמון nōʼ ʼāmôn (Nahum 3:8),\"\"no\"\" in Hebrew meaning
|
754
|
+
city with \"\"no amon\"\" or \"\"City of Amon\"\" referring to the Egyptian
|
755
|
+
deity Amon-Ra, most likely it is also the same as נא (\"\"No\"\") (Ezekiel
|
756
|
+
30:14). In Greek this name was rendered Διόσπολις Diospolis, \"\"City of Zeus\"\",
|
757
|
+
as Zeus was the god whom the Greeks identified with Amun, see interpretatio
|
758
|
+
graeca. The Greeks surnamed the city μεγάλη megale, \"\"the Great\"\", to
|
759
|
+
differentiate it from numerous other cities called Diospolis. The Romans rendered
|
760
|
+
the name Diospolis Magna.\n\nIn modern usage, the mortuary temples and tombs
|
761
|
+
on the west bank of the river Nile are generally thought of as part of Thebes.\n\nIn
|
762
|
+
1979, the ruins of ancient Thebes were inscribed by UNESCO as a World Cultural
|
763
|
+
Heritage site. The two great temples, now called Luxor (Arabic: الأقصر, Al-Uqṣur,
|
764
|
+
\"\"The palaces\"\") and al-Karnak (الكرنك), the Valley of the Kings and the
|
765
|
+
Valley of the Queens are among the great achievements of ancient Egypt.\n\nThe
|
766
|
+
site of Thebes is populated at least since the Middle Paleolithic.\n\n\n\nCoordinates:
|
767
|
+
25°43′14″N 32°36′37″E\uFEFF / \uFEFF25.72056°N 32.61028°E\uFEFF / 25.72056;
|
768
|
+
32.61028\",Governorate of Qina,cultural,,Governorate of Qina,,\"[More information
|
769
|
+
on ancient Thebes, a World Cultural Heritage site|http://whc.unesco.org/en/list/87/]#[Theban
|
770
|
+
Mapping Project|http://www.thebanmappingproject.com/]#[Ramesseum/Ancient Thebes
|
771
|
+
Digital Media Archive (photos, laser scans, panoramas)|http://archive.cyark.org/ancient-thebes-info]#[ICOMOS
|
772
|
+
Heritage at Risk 2001/2002|http://www.international.icomos.org/risk/2001/egyp2001.htm]\",\"http://en.wikipedia.org/wiki/Thebes,_Egypt\",,\"[i],[iii],[vi]\",EG,73900000.0,Ancient
|
773
|
+
Thebes with its Necropolis,Egypt,87,1979,http://whc.unesco.org/en/list/87\nHistoric
|
774
|
+
City of Trogir,43.5125,16.25167,\"\",County of Split-Dalmatia,cultural,,County
|
775
|
+
of Split-Dalmatia,,\"\",http://en.wikipedia.org/wiki/Trogir,,\"[ii],[iv]\",HR,64000.0,Historic
|
776
|
+
City of Trogir,Croatia,810,1997,http://whc.unesco.org/en/list/810\nAntigua
|
777
|
+
Guatemala,14.566667,-90.666667,\"La Antigua Guatemala (commonly referred to
|
778
|
+
as just Antigua or La Antigua) is a city in the central highlands of Guatemala
|
779
|
+
famous for its well-preserved Spanish Mudéjar-influencedBaroque architecture
|
780
|
+
as well as a number of spectacular ruins of colonial churches. It has been
|
781
|
+
designated a UNESCO World Heritage Site.\n\nAntigua Guatemala serves as the
|
782
|
+
municipal seat for the surrounding municipality of the same name. It also
|
783
|
+
serves as the departmental capital of Sacatepéquez Department.\n\nThe city
|
784
|
+
had a peak population of some 60,000 in the 1770s; the bulk of the population
|
785
|
+
moved away in the late 18th century. Despite significant population growth
|
786
|
+
in the late 20th century, the city had only reached half that number by the
|
787
|
+
1990s. According to the 2007 census, the city has some 34,685 inhabitants.\n\nLa
|
788
|
+
Antigua Guatemala means the \"\"Old Guatemala\"\" and was the third capital
|
789
|
+
of Guatemala. The first capital of Guatemala was founded on the site of a
|
790
|
+
Kakchikel-Maya city, now called Iximche, on Monday, July 25, 1524—the day
|
791
|
+
of Saint James—and therefore named Ciudad de Santiago de los Caballeros de
|
792
|
+
Goathemalan (City of Saint James of the Knights of Guatemala). Naturally,
|
793
|
+
St. James became the patron saint of the city.\n\nAfter several Cakchiquel
|
794
|
+
uprisings, the capital was moved to a more suitable site in the Valley of
|
795
|
+
Alotenango (Rio Guacalate) on November 22, 1527, and kept its original name.
|
796
|
+
When this city, on the site of present-day San Miguel Escobar, was destroyed
|
797
|
+
on September 11, 1541 by a devastating lahar from the Volcán de Agua, the
|
798
|
+
colonial authorities decided to move once more, this time to the Panchoy Valley.
|
799
|
+
So, on March 10, 1543 the Spanish conquistadors founded present-day Antigua,
|
800
|
+
and again, it was named Santiago de los Caballeros. For more than 200 years
|
801
|
+
it served as the seat of the military governor of the Spanish colony of Guatemala,
|
802
|
+
a large region that included almost all of present-day Central America and
|
803
|
+
the southernmost State of Mexico: Chiapas. In 1566 King Felipe II of Spain
|
804
|
+
gave it the title of \"\"Muy Noble y Muy Leal\"\" (\"\"Very Noble and Very
|
805
|
+
Loyal\"\").\n\nOn September 29, 1717, an estimated 7.4 magnitude earthquake
|
806
|
+
hit Antigua Guatemala, and destroyed over 3,000 buildings. Much of the city's
|
807
|
+
architecture was ruined. The damage the earthquake did to the city made authorities
|
808
|
+
consider moving the capital to another city.\n\nIn 1773, the Santa Marta earthquakes
|
809
|
+
destroyed much of the town, which led to the third change in location for
|
810
|
+
the city. The Spanish Crown ordered (1776) the removal of the capital to a
|
811
|
+
safer location, the Valley of the Shrine, where Guatemala City, the modern
|
812
|
+
capital of Guatemala, now stands. This new city did not retain its old name
|
813
|
+
and was christened Nueva Guatemala de la Asunción (New Guatemala of the Ascension)
|
814
|
+
and its patron saint is Our Lady of Ascension. The badly damaged city of Santiago
|
815
|
+
de los Caballeros was ordered abandoned, although not everyone left, and was
|
816
|
+
thereafter referred to as la Antigua Guatemala (the Old Guatemala).\n\nCentral
|
817
|
+
Park (Parque Central) is the heart of the city. The reconstructed fountain
|
818
|
+
there is a popular gathering spot. Off to the side of the Central Park, the
|
819
|
+
Arco de Santa Catalina is among the many notable architectural landmarks of
|
820
|
+
La Antigua.\n\nLa Antigua is noted for its very elaborate religious celebrations
|
821
|
+
during Lent (Cuaresma), leading up to Holy Week (Semana Santa) and Easter
|
822
|
+
(Pascua). Each Sunday in Lent, one of the local parishes sponsor a Procession
|
823
|
+
through the streets of Antigua. Elaborate and beautiful artistic carpets predominantly
|
824
|
+
made of dyed sawdust, flowers and even fruits and vegetables adorn the processions'
|
825
|
+
path.\n\nDue to its popularity amongst tourists and its very well developed
|
826
|
+
tourism infrastructure, Antigua Guatemala is often used as a central location
|
827
|
+
in which many choose to set up base and from here, visit other tourist areas
|
828
|
+
in Guatemala and Central America. Cruise ships that dock at Guatemalan ports
|
829
|
+
offer trips to Antigua from both the Pacific and Atlantic.\n\nAntigua also
|
830
|
+
holds a sizeable retirement community from the US as well as Europe as its
|
831
|
+
colonial charm has appealed to many who have crossed paths with this enchanting
|
832
|
+
and romantic town.\n\nTourism is the main driver of the economy. Antigua is
|
833
|
+
also a coffee producing region of Anacafé.\n\nAntigua is known as a destination
|
834
|
+
for people who want to learn Spanish through immersion. There are many Spanish
|
835
|
+
language schools in Antigua and it is one of the most popular and best recognized
|
836
|
+
centers for Spanish language study by students from Europe and North America.
|
837
|
+
Language institutes are one of the primary industries of Antigua, along with
|
838
|
+
tourism.\n\nThe University of San Carlos in Antigua was founded by the Papal
|
839
|
+
Bull of Pope Innocent XI issued dated 18 June 1687.\n\nAntigua GFC football
|
840
|
+
club has played in the Guatemala top division for several years but have been
|
841
|
+
playing in the second division lately. Their home stadium is the Estadio Pensativo
|
842
|
+
which has a capacity of 9,000. They are nicknamed Los panzas verdes (\"\"Green
|
843
|
+
bellies\"\").\n\n\n\nA number of restaurants can be found in Antigua. Many
|
844
|
+
small eateries can be found at the Antigua marketplace located next to the
|
845
|
+
central bus stop, next to the main market. U.S. style fast food restaurants
|
846
|
+
including \"\"Burger King\"\", \"\"McDonald's\"\", as well as Guatemalan favorite
|
847
|
+
\"\"Pollo Campero\"\" are in the city.\n\nAntigua is a growing tourist destination
|
848
|
+
in Guatemala as it is close to Guatemala City but is much calmer and safer,
|
849
|
+
with more tourist oriented activities. It is possible to take buses from Antigua
|
850
|
+
to many parts of Guatemala, many travel agencies offer shuttles to the main
|
851
|
+
touristic places: Monterrico beach, Atitlan Lake, Coban, Tikal or even Copan
|
852
|
+
in Honduras, though the transportation is more central in Guatemala City.\n\nThree
|
853
|
+
large volcanoes dominate the horizon around Antigua.\n\nThe most commanding,
|
854
|
+
to the south of the city, is the Volcán de Agua or \"\"Volcano of Water\"\",
|
855
|
+
some 3766 meters (12,356 ft) high. When the Spanish arrived, the inhabitants
|
856
|
+
of the zone, Kakchikel Mayas, called it Hunapú (and they still do). However,
|
857
|
+
it became known as Volcán de Agua after a mudslide from the volcano buried
|
858
|
+
the second site of the capital, which prompted the Spanish authorities to
|
859
|
+
move the capital to present-day Antigua. The original site of the 2nd capital
|
860
|
+
is now the village San Miguel Escobar.\n\nTo the west of the city are a pair
|
861
|
+
of peaks, Acatenango, last erupted in 1972, some 3976 meters (13045 ft) high,
|
862
|
+
and the Volcán de Fuego or \"\"Volcano of Fire\"\", some 3763 meters (12346 ft)
|
863
|
+
high. \"\"Fuego\"\" is famous for being almost constantly active at a low
|
864
|
+
level. Smoke issues from its top daily, but larger eruptions are rare.\n\nCoordinates:
|
865
|
+
14°34′N 90°44′W\uFEFF / \uFEFF14.567°N 90.733°W\uFEFF / 14.567; -90.733\",\"Department
|
866
|
+
of Sacatepéquez, Panchoy Valley\",cultural,,\"Department of Sacatepéquez,
|
867
|
+
Panchoy Valley\",,[Antigua Information and Directory site in English|http://www.antiguadailyphoto.com/]#[Official
|
868
|
+
Site in Spanish|http://patrimoniomundialguatemala.org/la-antigua.html]#[Travel
|
869
|
+
guide|http://roadtoantigua.com]#[Panoramic 360° Pictures of Antigua Guatemala|http://www.guate360.com/galeria/details.php?image_id=3],http://en.wikipedia.org/wiki/Antigua_Guatemala,,\"[ii],[iii],[iv]\",GT,490000.0,Antigua
|
870
|
+
Guatemala,Guatemala,65,1979,http://whc.unesco.org/en/list/65\nArchaeological
|
871
|
+
Area and the Patriarchal Basilica of Aquileia,45.768333,13.3675,\"Aquileia
|
872
|
+
(Friulian: Acuilee/Aquilee/Aquilea) is an ancient Roman city in what is now
|
873
|
+
Italy, at the head of the Adriatic at the edge of the lagoons, about 10 km
|
874
|
+
from the sea, on the river Natiso (modern Natisone), the course of which has
|
875
|
+
changed somewhat since Roman times. Today, it is one of the main archeological
|
876
|
+
sites of Northern Italy.\n\nAquileia was founded as a colony by the Romans
|
877
|
+
in 180/181 BC along the Natissa River, on land south of the Julian Alps but
|
878
|
+
about 8 miles north of the lagoons. Apparently named from an indigenous word
|
879
|
+
Akylis, the colony served as a frontier fortress at the north-east corner
|
880
|
+
of transpadane Italy and was intended to protect the Veneti, faithful Roman
|
881
|
+
allies, during the Illyrian Wars and act as a buttress to check the advance
|
882
|
+
of other warlike people, such as the hostile tribes of Carni and Histri. In
|
883
|
+
fact, Aquileia was founded on a site not far from where Gaulish invaders had
|
884
|
+
attempted to settle in 183 BC.\n\nThe colony was established with Latin rights
|
885
|
+
by the triumvirate of Publius Scipio Nasica, Caius Flaminius, and Lucius Manlius
|
886
|
+
Acidinus, two of whom were of consular and one of praetorian rank. They led
|
887
|
+
3,000 pedites (infantry), mainly from Samnium, who with their families formed
|
888
|
+
the bulk of the settlers and were soon supplemented by native Veneti. It is
|
889
|
+
likely that Aquileia had been a center of Venetia even before the coming of
|
890
|
+
the Romans. And Aquileia's strategic military position also served to promote
|
891
|
+
the Venetic trade in amber imported from the Baltic.\n\nAquileia was connected
|
892
|
+
by road with Bologna probably in 173 BC; and subsequently with Genoa in 148
|
893
|
+
BC by the Via Postumia, which ran through Cremona, Bedriacum and Altinum,
|
894
|
+
joining the first-mentioned road at Concordia, while the construction of the
|
895
|
+
Via Popilia from Rimini to Ad Portum near Altinum in 132 BC improved the communications
|
896
|
+
still further.\n\nIn 169 BC, 1,500 more Latin colonists with their families
|
897
|
+
were settled in the town as a reinforcement to the garrison. The discovery
|
898
|
+
of the gold fields near the modern Klagenfurt in 130 BC brought it into notice,
|
899
|
+
and it soon became a place of importance, not only owing to its strategic
|
900
|
+
position, but as a centre of trade, especially in agricultural products and
|
901
|
+
viticulture. It also had, in later times at least, considerable brickfields.\n\nThe
|
902
|
+
original Latin colony became a municipium probably in 90 BC. Citizens were
|
903
|
+
ascribed to the Roman tribe Velina. The customs boundary of Italy was close
|
904
|
+
by in Cicero's day. It was plundered by the Iapydes under Augustus, but, in
|
905
|
+
the period of peace which followed, was able to develop its resources. Augustus
|
906
|
+
visited it during the Pannonian wars in 12‑10 BC and it was the birthplace
|
907
|
+
of Tiberius' son by Julia, in the latter year.\n\nIt was the starting-point
|
908
|
+
of several important roads leading to the north-eastern portion of the empire
|
909
|
+
— the road (Via Iulia Augusta) by Iulium Carnicum to Veldidena (mod. Wilten,
|
910
|
+
near Innsbruck), from which branched off the road into Noricum, leading by
|
911
|
+
Virunum (Klagenfurt) to Laurieum (Lorch) on the Danube, the road into Pannonia,
|
912
|
+
leading to Aemona (Ljubljana) and Sirmium (Sremska Mitrovica), the road to
|
913
|
+
Tarsatica (near Fiume, now Rijeka) and Siscia (Sisak), and that to Tergeste
|
914
|
+
(Trieste) and the Istrian coast.\n\nBesides natives of Italy, Celts, Illyrians,
|
915
|
+
Greeks, Egyptians, Jews, and Syrians all settled in the city and contributed
|
916
|
+
to its commercial development. Jewish artisans established a flourishing trade
|
917
|
+
in glasswork. Metal from Noricum was forged and exported. The ancient Venetic
|
918
|
+
trade in amber from the Baltic was continued. Wine, especially its famous
|
919
|
+
Pucinum was exported. Oil was imported from Proconsular Africa.\n\nIn terms
|
920
|
+
of religion, the Roman pantheon was adopted although a native sungod, Belenus,
|
921
|
+
had a large following. Jews practiced their ancestral religion and it was
|
922
|
+
perhaps some of these Jews who became the first Christians. Meanwhile, soldiers
|
923
|
+
brought the martial cult of Mithras.\n\nIn the war against the Marcomanni
|
924
|
+
in 167, the town was hard pressed; its fortifications had fallen into disrepair
|
925
|
+
during the long peace. Nevertheless, when in 168 Marcus Aurelius made Aquileia
|
926
|
+
the principal fortress of the empire against the barbarians of the North and
|
927
|
+
East, it rose to the pinnacle of its greatness and soon had a population of
|
928
|
+
100,000. In 238, when the town took the side of the Senate against the Emperor
|
929
|
+
Maximinus Thrax, the fortifications were hastily restored, and proved of sufficient
|
930
|
+
strength to resist for several months, until Maximinus himself was assassinated.\n\nDuring
|
931
|
+
the 4th century, Aquileia maintained its importance. Constantine sojourned
|
932
|
+
there on numerous occasions. It became a naval station and the seat of the
|
933
|
+
Corrector Venetiarum et Histriae; a mint was established, of which the coins
|
934
|
+
were very numerous, and the bishop obtained the rank of metropolitan archbishop.
|
935
|
+
A council held in the city in 381 was only the first of a series of Councils
|
936
|
+
of Aquileia that have been convened over the centuries.\n\nAn imperial palace
|
937
|
+
was constructed here, in which the emperors after the time of Diocletian frequently
|
938
|
+
resided; and the city often played a part in the struggles between the rulers
|
939
|
+
of the 4th century. In 340, Emperor Constantine II was killed under its walls
|
940
|
+
while attempting to take the city from his younger brother Constans.\n\nAt
|
941
|
+
the end of the 4th century, Ausonius, enumerated Aquileia as the ninth among
|
942
|
+
the great cities of the world, placing Rome, Mediolanum and Capua before it.
|
943
|
+
However, it was besieged by Alaric and the Visigoths in 401, during which
|
944
|
+
time some of its residents fled to the lagoons, and again unsuccessfully in
|
945
|
+
408. In 452, the city was so utterly destroyed by Attila's Huns that it was
|
946
|
+
afterwards hard to recognize its original site. The Roman inhabitants, together
|
947
|
+
with those of smaller towns in the neighborhood, fled to the lagoons, and
|
948
|
+
so laid the foundations of the cities of Venice and nearby Grado.\n\nYet Aquileia
|
949
|
+
would rise again, though much diminished, and continue to exist until the
|
950
|
+
Lombard invasion of 568. It was once more destroyed (590) by the Lombards.
|
951
|
+
Meanwhile, the patriarch fled to the island town of Grado, which was under
|
952
|
+
the protection of the Byzantines. When the patriarch residing in Grado was
|
953
|
+
reconciled with Rome in 606, those continuing in their rejection of the Second
|
954
|
+
Council of Constantinople elected a patriarch at Aquileia. Thus, the diocese
|
955
|
+
was essentially divided into two parts, with the mainland patriarchate of
|
956
|
+
Aquileia under the protection of the Lombards, and the insular patriarchate
|
957
|
+
of Aquileia seated in Grado being protected by the exarchate of Ravenna and
|
958
|
+
later the Doges of Venice, with the collusion of the Lombards. The line of
|
959
|
+
the patriarchs elected in Aquileia would continue in schism until 699. However,
|
960
|
+
although they kept the title of patriarch of Aquileia, they moved their residence
|
961
|
+
first to Cormons and later to Cividale.\n\nThe Lombard Dukes of Friuli ruled
|
962
|
+
Aquileia and the surrounding mainland territory from Cividale. In 774, Charlemagne
|
963
|
+
conquered the Lombard duchy and made it into a Frankish one with Eric of Friuli
|
964
|
+
as duke. In 787, Charlemagne named the priest and master of grammar at the
|
965
|
+
Palace School Paulinus the new patriarch of Aquileia. Although Paulinus resided
|
966
|
+
mainly at Cividale, his successor Maxentius considered rebuilding Aquileia.
|
967
|
+
However, the project never came to fruition.\n\nWhile Maxentius was patriarch,
|
968
|
+
the pope approved the Synod of Mantua, which affirmed the precedence of the
|
969
|
+
mainland patriarch of Aquileia over the patriarch of Grado. However, material
|
970
|
+
conditions were soon to worsen for Aquileia. The ruins of Aquileia were continually
|
971
|
+
pillaged for building material. And with the collapse of the Carolingians
|
972
|
+
in the 10th century, the inhabitants would suffer under the raids of the Magyars.\n\nBy
|
973
|
+
the 11th century, the patriarch of Aquileia had grown strong enough to assert
|
974
|
+
temporal sovereignty over Friuli and Aquileia. The Holy Roman Emperor gave
|
975
|
+
the region to the patriarch as a feudal possession. However, the patriarch's
|
976
|
+
temporal authority was constantly disputed and assailed by the territorial
|
977
|
+
nobility.\n\nIn 1027 and 1044 Patriarch Poppo of Aquileia, who rebuilt the
|
978
|
+
cathedral of Aquileia, entered and sacked neighboring Grado, and, though the
|
979
|
+
Pope reconfirmed the Patriarch of the latter in his dignities, the town never
|
980
|
+
fully recovered, though it continued to be the seat of the Patriarchate until
|
981
|
+
its formal transference to Venice in 1450.\n\nIn the 14th century the Patriarchate
|
982
|
+
reached its biggest extension, stretching from the Piave river to the Julian
|
983
|
+
Alps and northern Istria. The seat of the Patriarchate of Aquileia had been
|
984
|
+
transferred to Udine in 1238, but returned to Aquiliea in 1420 when Venice
|
985
|
+
annexed the territory of Udine.\n\nIn 1445, the defeated patriarch Ludovico
|
986
|
+
Trevisan acquiesced in the loss of his ancient temporal estate in return for
|
987
|
+
an annual salary of 5,000 ducats allowed him from the Venetian treasury. Henceforth
|
988
|
+
only Venetians were allowed to hold the title of Patriarch of Aquileia. The
|
989
|
+
Patriarchate was incorporated in the Republic of Venice with the name of Patria
|
990
|
+
del Friuli, ruled by a General Proveditor or a \"\"Luogotenente\"\" living
|
991
|
+
in Udine.\n\nIt was finally officially suppressed in 1751, and the sees of
|
992
|
+
Udine and Gorizia (Görz) established in its stead.\n\nThe Cathedral of Aquileia
|
993
|
+
is a flat-roofed basilica erected by Patriarch Poppo in 1031 on the site of
|
994
|
+
an earlier church, and rebuilt about 1379 in the Gothic style by Patriarch
|
995
|
+
Marquard von Randeck.\n\nThe façade, in Romanesque-Gothic style, is connected
|
996
|
+
by a portico to the Church of the Pagans, and the remains of the 5th century
|
997
|
+
Baptistry. The interior has a nave and two aisles, with a noteworthy mosaic
|
998
|
+
pavement from the 4th century. The wooden ceiling is from 1526, while the
|
999
|
+
fresco decoration belongs to various ages: from the 4th century in the St.
|
1000
|
+
Peter's chapel of the apse area; from the 11th century in the apse itself;
|
1001
|
+
from the 12th century in the so-called \"\"Crypt of the Frescoes\"\", under
|
1002
|
+
the presbytery, with a cycle depicting the origins of Christianity in Aquileia
|
1003
|
+
and the history of St. Hermagoras, first bishop of the city.\n\nNext to the
|
1004
|
+
11th century Romanesque chapel of the Holy Sepulchre, at the beginning of
|
1005
|
+
the left aisle, flooring of different ages can be seen: the lowest is from
|
1006
|
+
a Roman villa of the age of Augustus; the middle one has a typical cocciopesto
|
1007
|
+
pavemente; the upper one, bearing blackening from the Attila's fire, has geometrical
|
1008
|
+
decorations.\n\nExternally, behind the 9th century campanile and the apse,
|
1009
|
+
is the Cemetery of the Fallen, where ten unnamed soldiers of World War I are
|
1010
|
+
buried. Saint Hermangoras is also buried there.\n\nThe ancient buildings of
|
1011
|
+
Aquileia served as stone quarries for centuries, and no edifices of the Roman
|
1012
|
+
period remain above ground. Excavations have revealed one street and the north-west
|
1013
|
+
angle of the town walls, while the National Archaeological Museum (one of
|
1014
|
+
the most important museums of Ancient Rome in the world) contains over 2,000
|
1015
|
+
inscriptions, statues and other antiquities, as well as glasses of local production
|
1016
|
+
and a numismatics collection.\n\nThe site of Aquileia, believed to be the
|
1017
|
+
largest Roman city yet to be excavated, is inscribed on the UNESCO World Heritage
|
1018
|
+
List.\n\nIn the Monastero fraction is a 5th century Christian basilica, later
|
1019
|
+
a Benedictine monastery, which today houses the Paleo-Christian Museum.\",\"Province
|
1020
|
+
of Udine, Friuli-Venezia Giulia Region\",cultural,,\"Province of Udine, Friuli-Venezia
|
1021
|
+
Giulia Region\",,[Aquileia virtual tour (Italian Landmarks)|http://www.burger.si/Italy/Aquileia/uvod_ENG.html]#[Pre-roman
|
1022
|
+
and Celtic Aquileia|http://www.terrediaquileia.it/docebo/doceboCms/index.php?special=changearea&newArea=572]#[Aquileia
|
1023
|
+
featured on 10 Euro Italian Coin|http://news.coinupdate.com/aquileia-euro-coin-from-the-italian-state-mint-0473/],http://en.wikipedia.org/wiki/Aquileia,,\"[iii],[iv],[vi]\",IT,1550000.0,Archaeological
|
1024
|
+
Area and the Patriarchal Basilica of Aquileia,Italy,825,1998,http://whc.unesco.org/en/list/825\n\r\n--50321512\r\nContent-Disposition:
|
1025
|
+
form-data; name=\"api_key\"\r\n\r\n242015a0c60666b5cdff0ce614334668817b52ac\r\n--50321512--\r\n\r\n"
|
1026
|
+
headers:
|
1027
|
+
Accept:
|
1028
|
+
- *70293202938040
|
1029
|
+
Content-Type:
|
1030
|
+
- multipart/form-data; boundary=50321512
|
1031
|
+
response:
|
1032
|
+
status:
|
1033
|
+
code: 200
|
1034
|
+
message: !binary |-
|
1035
|
+
Q29udGludWU=
|
1036
|
+
headers:
|
1037
|
+
!binary "U2VydmVy":
|
1038
|
+
- !binary |-
|
1039
|
+
bmdpbng=
|
1040
|
+
!binary "RGF0ZQ==":
|
1041
|
+
- !binary |-
|
1042
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozNCBHTVQ=
|
1043
|
+
!binary "Q29udGVudC1UeXBl":
|
1044
|
+
- !binary |-
|
1045
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
1046
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1047
|
+
- !binary |-
|
1048
|
+
Y2h1bmtlZA==
|
1049
|
+
!binary "Q29ubmVjdGlvbg==":
|
1050
|
+
- !binary |-
|
1051
|
+
a2VlcC1hbGl2ZQ==
|
1052
|
+
!binary "VmFyeQ==":
|
1053
|
+
- !binary |-
|
1054
|
+
QWNjZXB0LUVuY29kaW5n
|
1055
|
+
!binary "U3RhdHVz":
|
1056
|
+
- !binary |-
|
1057
|
+
MjAwIE9L
|
1058
|
+
!binary "RXRhZw==":
|
1059
|
+
- !binary |-
|
1060
|
+
IjkzYTk0OThiMWZjMjI0ZDZkMmQ4YTQ5NjczMWNkMjY2Ig==
|
1061
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
1062
|
+
- !binary |-
|
1063
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
1064
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
1065
|
+
- !binary |-
|
1066
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
1067
|
+
!binary "U2V0LUNvb2tpZQ==":
|
1068
|
+
- !binary |-
|
1069
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
1070
|
+
UmlJbE1HTmpOakUyTnpVek9HWXhNamxpTkRkbU5tUTJOVFV3T0dVMFl6SmpN
|
1071
|
+
V1ZKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
1072
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS0x
|
1073
|
+
ZWUxOWFjMmQ1M2IzMTI3YTQ4NGQ4YTA4MDg5MmM0NjQyNmI4MTgzOyBkb21h
|
1074
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
1075
|
+
!binary "WC1SdW50aW1l":
|
1076
|
+
- !binary |-
|
1077
|
+
MC4wMDcyMTI=
|
1078
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
1079
|
+
- !binary |-
|
1080
|
+
Z3ppcA==
|
1081
|
+
body:
|
1082
|
+
encoding: ASCII-8BIT
|
1083
|
+
string: !binary |-
|
1084
|
+
eyJmaWxlX3VyaSI6Ii91cGxvYWRzL2QwMGRiMTFlOGMyNTg4NTliNjlmL3do
|
1085
|
+
c19mZWF0dXJlcy5jc3YiLCJzdWNjZXNzIjp0cnVlfQ==
|
1086
|
+
http_version: !binary |-
|
1087
|
+
MS4x
|
1088
|
+
recorded_at: Mon, 20 Aug 2012 10:44:34 GMT
|
1089
|
+
- request:
|
1090
|
+
method: post
|
1091
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
|
1092
|
+
body:
|
1093
|
+
encoding: US-ASCII
|
1094
|
+
string: ''
|
1095
|
+
headers:
|
1096
|
+
Accept:
|
1097
|
+
- *70293202938040
|
1098
|
+
response:
|
1099
|
+
status:
|
1100
|
+
code: 200
|
1101
|
+
message: !binary |-
|
1102
|
+
T0s=
|
1103
|
+
headers:
|
1104
|
+
!binary "U2VydmVy":
|
1105
|
+
- !binary |-
|
1106
|
+
bmdpbng=
|
1107
|
+
!binary "RGF0ZQ==":
|
1108
|
+
- !binary |-
|
1109
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozOSBHTVQ=
|
1110
|
+
!binary "Q29udGVudC1UeXBl":
|
1111
|
+
- !binary |-
|
1112
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
1113
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1114
|
+
- !binary |-
|
1115
|
+
Y2h1bmtlZA==
|
1116
|
+
!binary "Q29ubmVjdGlvbg==":
|
1117
|
+
- !binary |-
|
1118
|
+
a2VlcC1hbGl2ZQ==
|
1119
|
+
!binary "VmFyeQ==":
|
1120
|
+
- !binary |-
|
1121
|
+
QWNjZXB0LUVuY29kaW5n
|
1122
|
+
!binary "U3RhdHVz":
|
1123
|
+
- !binary |-
|
1124
|
+
MjAwIE9L
|
1125
|
+
!binary "TG9jYXRpb24=":
|
1126
|
+
- !binary |-
|
1127
|
+
L3RhYmxlcy84MTc0
|
1128
|
+
!binary "RXRhZw==":
|
1129
|
+
- !binary |-
|
1130
|
+
ImZlOWYyODgwNDRmNjRmYmIxNDllMjkzY2ZhZmM3ZjM3Ig==
|
1131
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
1132
|
+
- !binary |-
|
1133
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
1134
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
1135
|
+
- !binary |-
|
1136
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
1137
|
+
!binary "U2V0LUNvb2tpZQ==":
|
1138
|
+
- !binary |-
|
1139
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
1140
|
+
UmlJbFl6YzJZV1l3TUdGbFpXTTROMlprWVdNME5UZzBOV1JqTWpJME16VXpN
|
1141
|
+
RFpKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
1142
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS1i
|
1143
|
+
MWNhZjAxNDM2NDAwODEwZTU2ZGYxZTAyNWE2MTQ1ODBiZmVmZWEzOyBkb21h
|
1144
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
1145
|
+
!binary "WC1SdW50aW1l":
|
1146
|
+
- !binary |-
|
1147
|
+
NC40MjYzOTU=
|
1148
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
1149
|
+
- !binary |-
|
1150
|
+
Z3ppcA==
|
1151
|
+
body:
|
1152
|
+
encoding: ASCII-8BIT
|
1153
|
+
string: !binary |-
|
1154
|
+
eyJpZCI6ODE3NCwibmFtZSI6Il8yMDEyMDgyMF8xNDYxN193MGhzIiwic2No
|
1155
|
+
ZW1hIjpbWyJjYXJ0b2RiX2lkIiwibnVtYmVyIl0sWyJ0aGVfZ2VvbSIsImdl
|
1156
|
+
b21ldHJ5IiwiZ2VvbWV0cnkiLCJwb2ludCJdLFsiY29tbWVudHMiLCJzdHJp
|
1157
|
+
bmciXSxbImNvdW50cnkiLCJzdHJpbmciXSxbImNyaXRlcmlhIiwic3RyaW5n
|
1158
|
+
Il0sWyJkYXRlX29mX2luc2NyaXB0aW9uIiwic3RyaW5nIl0sWyJkZXNjcmlw
|
1159
|
+
dGlvbiIsInN0cmluZyJdLFsiZWRpdGVkX3JlZ2lvbiIsInN0cmluZyJdLFsi
|
1160
|
+
ZW5kYW5nZXJlZF9yZWFzb24iLCJzdHJpbmciXSxbImVuZGFuZ2VyZWRfeWVh
|
1161
|
+
ciIsInN0cmluZyJdLFsiZXh0ZXJuYWxfbGlua3MiLCJzdHJpbmciXSxbImlz
|
1162
|
+
b19jb2RlIiwic3RyaW5nIl0sWyJsYXRpdHVkZSIsInN0cmluZyJdLFsibG9u
|
1163
|
+
Z2l0dWRlIiwic3RyaW5nIl0sWyJuYW1lIiwic3RyaW5nIl0sWyJyZWdpb24i
|
1164
|
+
LCJzdHJpbmciXSxbInNpemUiLCJzdHJpbmciXSxbInRpdGxlIiwic3RyaW5n
|
1165
|
+
Il0sWyJ0eXBlIiwic3RyaW5nIl0sWyJ3aHNfc2l0ZV9pZCIsInN0cmluZyJd
|
1166
|
+
LFsid2hzX3NvdXJjZV9wYWdlIiwic3RyaW5nIl0sWyJ3aWtpcGVkaWFfbGlu
|
1167
|
+
ayIsInN0cmluZyJdLFsiY3JlYXRlZF9hdCIsImRhdGUiXSxbInVwZGF0ZWRf
|
1168
|
+
YXQiLCJkYXRlIl1dfQ==
|
1169
|
+
http_version: !binary |-
|
1170
|
+
MS4x
|
1171
|
+
recorded_at: Mon, 20 Aug 2012 10:44:39 GMT
|
1172
|
+
- request:
|
1173
|
+
method: get
|
1174
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/_20120820_14617_w0hs?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
1175
|
+
body:
|
1176
|
+
encoding: US-ASCII
|
1177
|
+
string: ''
|
1178
|
+
headers:
|
1179
|
+
Accept:
|
1180
|
+
- *70293202938040
|
1181
|
+
response:
|
1182
|
+
status:
|
1183
|
+
code: 200
|
1184
|
+
message: !binary |-
|
1185
|
+
T0s=
|
1186
|
+
headers:
|
1187
|
+
!binary "U2VydmVy":
|
1188
|
+
- !binary |-
|
1189
|
+
bmdpbng=
|
1190
|
+
!binary "RGF0ZQ==":
|
1191
|
+
- !binary |-
|
1192
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozOSBHTVQ=
|
1193
|
+
!binary "Q29udGVudC1UeXBl":
|
1194
|
+
- !binary |-
|
1195
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
1196
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1197
|
+
- !binary |-
|
1198
|
+
Y2h1bmtlZA==
|
1199
|
+
!binary "Q29ubmVjdGlvbg==":
|
1200
|
+
- !binary |-
|
1201
|
+
a2VlcC1hbGl2ZQ==
|
1202
|
+
!binary "VmFyeQ==":
|
1203
|
+
- !binary |-
|
1204
|
+
QWNjZXB0LUVuY29kaW5n
|
1205
|
+
!binary "U3RhdHVz":
|
1206
|
+
- !binary |-
|
1207
|
+
MjAwIE9L
|
1208
|
+
!binary "RXRhZw==":
|
1209
|
+
- !binary |-
|
1210
|
+
IjQ3YTBkODIxMmU2ZjVhMTc2ZmQwOGQ5Y2M4YmM2ZGEzIg==
|
1211
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
1212
|
+
- !binary |-
|
1213
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
1214
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
1215
|
+
- !binary |-
|
1216
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
1217
|
+
!binary "U2V0LUNvb2tpZQ==":
|
1218
|
+
- !binary |-
|
1219
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
1220
|
+
UmlJbE1EaGxZbU0yTVRCbFl6aGpZems0TURreVlUQmxOV000WkRGalkyWmpZ
|
1221
|
+
MkpKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
1222
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS1h
|
1223
|
+
YmVmMjkxM2RjYjk1Mjk4OGJkNmRhNjQ3MWU3Zjg2YTljNWI3ZDFlOyBkb21h
|
1224
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
1225
|
+
!binary "WC1SdW50aW1l":
|
1226
|
+
- !binary |-
|
1227
|
+
MC4wNTc0MDA=
|
1228
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
1229
|
+
- !binary |-
|
1230
|
+
Z3ppcA==
|
1231
|
+
body:
|
1232
|
+
encoding: ASCII-8BIT
|
1233
|
+
string: !binary |-
|
1234
|
+
eyJpZCI6ODE3NCwibmFtZSI6Il8yMDEyMDgyMF8xNDYxN193MGhzIiwicHJp
|
1235
|
+
dmFjeSI6IlBVQkxJQyIsInRhZ3MiOiIiLCJzY2hlbWEiOltbImNhcnRvZGJf
|
1236
|
+
aWQiLCJudW1iZXIiXSxbInRoZV9nZW9tIiwiZ2VvbWV0cnkiLCJnZW9tZXRy
|
1237
|
+
eSIsInBvaW50Il0sWyJjb21tZW50cyIsInN0cmluZyJdLFsiY291bnRyeSIs
|
1238
|
+
InN0cmluZyJdLFsiY3JpdGVyaWEiLCJzdHJpbmciXSxbImRhdGVfb2ZfaW5z
|
1239
|
+
Y3JpcHRpb24iLCJzdHJpbmciXSxbImRlc2NyaXB0aW9uIiwic3RyaW5nIl0s
|
1240
|
+
WyJlZGl0ZWRfcmVnaW9uIiwic3RyaW5nIl0sWyJlbmRhbmdlcmVkX3JlYXNv
|
1241
|
+
biIsInN0cmluZyJdLFsiZW5kYW5nZXJlZF95ZWFyIiwic3RyaW5nIl0sWyJl
|
1242
|
+
eHRlcm5hbF9saW5rcyIsInN0cmluZyJdLFsiaXNvX2NvZGUiLCJzdHJpbmci
|
1243
|
+
XSxbImxhdGl0dWRlIiwic3RyaW5nIl0sWyJsb25naXR1ZGUiLCJzdHJpbmci
|
1244
|
+
XSxbIm5hbWUiLCJzdHJpbmciXSxbInJlZ2lvbiIsInN0cmluZyJdLFsic2l6
|
1245
|
+
ZSIsInN0cmluZyJdLFsidGl0bGUiLCJzdHJpbmciXSxbInR5cGUiLCJzdHJp
|
1246
|
+
bmciXSxbIndoc19zaXRlX2lkIiwic3RyaW5nIl0sWyJ3aHNfc291cmNlX3Bh
|
1247
|
+
Z2UiLCJzdHJpbmciXSxbIndpa2lwZWRpYV9saW5rIiwic3RyaW5nIl0sWyJj
|
1248
|
+
cmVhdGVkX2F0IiwiZGF0ZSJdLFsidXBkYXRlZF9hdCIsImRhdGUiXV19
|
1249
|
+
http_version: !binary |-
|
1250
|
+
MS4x
|
1251
|
+
recorded_at: Mon, 20 Aug 2012 10:44:39 GMT
|
1252
|
+
- request:
|
1253
|
+
method: get
|
1254
|
+
uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/_20120820_14617_w0hs/records?api_key=242015a0c60666b5cdff0ce614334668817b52ac
|
1255
|
+
body:
|
1256
|
+
encoding: US-ASCII
|
1257
|
+
string: ''
|
1258
|
+
headers:
|
1259
|
+
Accept:
|
1260
|
+
- *70293202938040
|
1261
|
+
response:
|
1262
|
+
status:
|
1263
|
+
code: 200
|
1264
|
+
message: !binary |-
|
1265
|
+
T0s=
|
1266
|
+
headers:
|
1267
|
+
!binary "U2VydmVy":
|
1268
|
+
- !binary |-
|
1269
|
+
bmdpbng=
|
1270
|
+
!binary "RGF0ZQ==":
|
1271
|
+
- !binary |-
|
1272
|
+
TW9uLCAyMCBBdWcgMjAxMiAxMDo0NDozOSBHTVQ=
|
1273
|
+
!binary "Q29udGVudC1UeXBl":
|
1274
|
+
- !binary |-
|
1275
|
+
YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD11dGYtOA==
|
1276
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
1277
|
+
- !binary |-
|
1278
|
+
Y2h1bmtlZA==
|
1279
|
+
!binary "Q29ubmVjdGlvbg==":
|
1280
|
+
- !binary |-
|
1281
|
+
a2VlcC1hbGl2ZQ==
|
1282
|
+
!binary "VmFyeQ==":
|
1283
|
+
- !binary |-
|
1284
|
+
QWNjZXB0LUVuY29kaW5n
|
1285
|
+
!binary "U3RhdHVz":
|
1286
|
+
- !binary |-
|
1287
|
+
MjAwIE9L
|
1288
|
+
!binary "RXRhZw==":
|
1289
|
+
- !binary |-
|
1290
|
+
Ijk4YTVjMWE2NTlkM2UxODQ1YTAzM2IxNThmNmU3YWVkIg==
|
1291
|
+
!binary "Q2FjaGUtQ29udHJvbA==":
|
1292
|
+
- !binary |-
|
1293
|
+
bWF4LWFnZT0wLCBwcml2YXRlLCBtdXN0LXJldmFsaWRhdGU=
|
1294
|
+
!binary "WC1VYS1Db21wYXRpYmxl":
|
1295
|
+
- !binary |-
|
1296
|
+
SUU9RWRnZSxjaHJvbWU9MQ==
|
1297
|
+
!binary "U2V0LUNvb2tpZQ==":
|
1298
|
+
- !binary |-
|
1299
|
+
X2NhcnRvZGJfc2Vzc2lvbj1CQWg3QjBraUQzTmxjM05wYjI1ZmFXUUdPZ1pG
|
1300
|
+
UmlJbE5XRmlNREZpWW1JM09EY3paV0UwTVRRME1EVTNNVGM0WkRsaFl6Wm1a
|
1301
|
+
RGhKSWlaM1lYSmtaVzR1ZFhObGNpNWpZWEowYjJSaUxYSmlMV05zYVdWdWRD
|
1302
|
+
NXJaWGtHT3dCVVNTSVdZMkZ5ZEc5a1lpMXlZaTFqYkdsbGJuUUdPd0JVLS00
|
1303
|
+
YmYxNmI1OWM3MjMzMTdiNDQwOGNkZTY2MzAwZWEzNGVmYmFmNDUwOyBkb21h
|
1304
|
+
aW49LmNhcnRvZGIuY29tOyBwYXRoPS87IEh0dHBPbmx5
|
1305
|
+
!binary "WC1SdW50aW1l":
|
1306
|
+
- !binary |-
|
1307
|
+
MC4wNDk1MjQ=
|
1308
|
+
!binary "Q29udGVudC1FbmNvZGluZw==":
|
1309
|
+
- !binary |-
|
1310
|
+
Z3ppcA==
|
1311
|
+
body:
|
1312
|
+
encoding: ASCII-8BIT
|
1313
|
+
string: !binary |-
|
1314
|
+
eyJpZCI6ODE3NCwibmFtZSI6Il8yMDEyMDgyMF8xNDYxN193MGhzIiwidG90
|
1315
|
+
YWxfcm93cyI6MTAsInJvd3MiOlt7InVwZGF0ZWRfYXQiOiIyMDEyLTA4LTIw
|
1316
|
+
VDEyOjQ0OjM4KzAyOjAwIiwiY3JlYXRlZF9hdCI6IjIwMTItMDgtMjBUMTI6
|
1317
|
+
NDQ6MzgrMDI6MDAiLCJjYXJ0b2RiX2lkIjoxLCJ0aGVfZ2VvbSI6IntcInR5
|
1318
|
+
cGVcIjpcIlBvaW50XCIsXCJjb29yZGluYXRlc1wiOls1Ny41MzYwNTYsMjIu
|
1319
|
+
OTk4ODg5XX0iLCJ3aHNfc291cmNlX3BhZ2UiOiJodHRwOi8vd2hjLnVuZXNj
|
1320
|
+
by5vcmcvZW4vbGlzdC8xMjA3IiwiZGF0ZV9vZl9pbnNjcmlwdGlvbiI6IjIw
|
1321
|
+
MDYiLCJ3aHNfc2l0ZV9pZCI6IjEyMDciLCJjb3VudHJ5IjoiT21hbiIsIm5h
|
1322
|
+
bWUiOiJBZmxhaiBJcnJpZ2F0aW9uIFN5c3RlbXMgb2YgT21hbiIsInNpemUi
|
1323
|
+
OiIxNDU2MDAwMC4wIiwiaXNvX2NvZGUiOiJPTSIsImNyaXRlcmlhIjoiW3Zd
|
1324
|
+
IiwiY29tbWVudHMiOiIiLCJ3aWtpcGVkaWFfbGluayI6Imh0dHA6Ly9lbi53
|
1325
|
+
aWtpcGVkaWEub3JnL3dpa2kvUWFuYXQiLCJleHRlcm5hbF9saW5rcyI6IltU
|
1326
|
+
aGUgT3JpZ2luIGFuZCBTcHJlYWQgb2YgUWFuYXRzIGluIHRoZSBPbGQgV29y
|
1327
|
+
bGR8aHR0cDovL3d3dy5qc3Rvci5vcmcvc3RhYmxlLzk4NjE2Ml0jW1wiQXNz
|
1328
|
+
ZXNzbWVudCBvZiB0aGUgQ29udHJpYnV0aW9ucyBvZiBUcmFkaXRpb25hbCBR
|
1329
|
+
YW5hdHMgaW4gU3VzdGFpbmFibGUgV2F0ZXIgUmVzb3VyY2VzIE1hbmFnZW1l
|
1330
|
+
bnRcInxodHRwOi8vd3d3LmluZ2VudGFjb25uZWN0LmNvbS9jb250ZW50L3Jv
|
1331
|
+
dXRsZWRnL2NpancvMjAwNi8wMDAwMDAyMi8wMDAwMDAwNC9hcnQwMDAwNV0j
|
1332
|
+
WzEwLjEwODAvMDc5MDA2MjA2MDA1NTEzMDR8aHR0cDovL2R4LmRvaS5vcmcv
|
1333
|
+
MTAuMTA4MCUyRjA3OTAwNjIwNjAwNTUxMzA0XSNbXCJSZWFzb25zIGJlaGlu
|
1334
|
+
ZCBGYWlsdXJlIG9mIFFhbmF0cyBpbiB0aGUgMjB0aCBDZW50dXJ5XCJ8aHR0
|
1335
|
+
cDovL3NjaXRhdGlvbi5haXAub3JnL3ZzZWFyY2gvc2VydmxldC9WZXJpdHlT
|
1336
|
+
ZXJ2bGV0P0tFWT1BU0NFUkwmc21vZGU9c3RycmVzdWx0cyZtYXhkaXNwPTI1
|
1337
|
+
JnBvc3NpYmxlMT1NYWRhbmklMkMrS2F2ZWgmcG9zc2libGUxem9uZT1hdXRo
|
1338
|
+
b3ImT1VUTE9HPU5PJmFxcz10cnVlJnZpZXdhYnM9QVNDRUNQJmtleT1ESVNQ
|
1339
|
+
TEFZJmRvY0lEPTEmcGFnZT0wJmNoYXB0ZXI9MCZhcXM9dHJ1ZV0jWzEwLjEw
|
1340
|
+
NjEvNDA5NzYoMzE2KTc3fGh0dHA6Ly9keC5kb2kub3JnLzEwLjEwNjElMkY0
|
1341
|
+
MDk3NiUyODMxNiUyOTc3XSIsImVuZGFuZ2VyZWRfeWVhciI6IiIsImVkaXRl
|
1342
|
+
ZF9yZWdpb24iOiJEYWtoaWxpeWEsIFNoYXJxaXlhIGFuZCBCYXRpbmFoIFJl
|
1343
|
+
Z2lvbnMiLCJlbmRhbmdlcmVkX3JlYXNvbiI6IiIsInR5cGUiOiJjdWx0dXJh
|
1344
|
+
bCIsInJlZ2lvbiI6IkRha2hpbGl5YSwgU2hhcnFpeWEgYW5kIEJhdGluYWgg
|
1345
|
+
UmVnaW9ucyIsImRlc2NyaXB0aW9uIjoiQSBxYW7EgXQgKGZyb20gQXJhYmlj
|
1346
|
+
OiDZgtmG2KfYqeKAjikgKElyYW4sIFN5cmlhIGFuZCBKb3JkYW4pIGlzIGEg
|
1347
|
+
d2F0ZXIgbWFuYWdlbWVudCBzeXN0ZW0gdXNlZCB0byBwcm92aWRlIGEgcmVs
|
1348
|
+
aWFibGUgc3VwcGx5IG9mIHdhdGVyIHRvIGh1bWFuIHNldHRsZW1lbnRzIGFu
|
1349
|
+
ZCBmb3IgaXJyaWdhdGlvbiBpbiBob3QsIGFyaWQgYW5kIHNlbWktYXJpZCBj
|
1350
|
+
bGltYXRlcy4gUWFuYXRzIGFyZSBhbHNvIGNhbGxlZCBrxIFyxKt6IChvciBr
|
1351
|
+
xIFyxJN6IGZyb20gUGVyc2lhbjog2YPYp9ix2YrYsikgKElyYW4sIEFmZ2hh
|
1352
|
+
bmlzdGFuLCBQYWtpc3RhbiBhbmQgQ2VudHJhbCBBc2lhLCBkZXJpdmVkIGZy
|
1353
|
+
b20gUGVyc2lhbjog2YPYp9mH2LHbjNiyKSwga2FoYW4gKGZyb20gUGVyc2lh
|
1354
|
+
bjog2qnZh9mGKSwga2hldHRhcmEgKE1vcm9jY28pOyBnYWxlcmlhIChTcGFp
|
1355
|
+
bik7IGZhbGFqIChVbml0ZWQgQXJhYiBFbWlyYXRlcyBhbmQgT21hbik7IEth
|
1356
|
+
aG4gKEJhbG9jaCkgb3IgZm9nZ2FyYS9mdWdoYXJhIChOb3J0aCBBZnJpY2Ep
|
1357
|
+
LiBBbHRlcm5hdGl2ZSB0ZXJtcyBmb3IgcWFuYXRzIGluIEFzaWEgYW5kIE5v
|
1358
|
+
cnRoIEFmcmljYSBhcmUga2FrdXJpeiwgY2hpbi1hdnVseiwgYW5kIG1heXVu
|
1359
|
+
LiBDb21tb24gdmFyaWFudHMgb2YgcWFuYXQgaW4gRW5nbGlzaCBpbmNsdWRl
|
1360
|
+
IGthbmF0LCBraGFuYXQsIGt1bnV0LCBrb25hLCBrb25haXQsIGdoYW5hdCwg
|
1361
|
+
Z2h1bmRhdC5cblxuVGhlIHFhbmF0IHRlY2hub2xvZ3kgaXMga25vd24gdG8g
|
1362
|
+
aGF2ZSBkZXZlbG9wZWQgaW4gcHJlLUlzbGFtaWMgSXJhblt3aGVuP10gYW5k
|
1363
|
+
IHRoZW4gc3ByZWFkIHRvIG90aGVyIGN1bHR1cmVzLiBIb3dldmVyLCBhIHJl
|
1364
|
+
Y2VudGx5IGRpc2NvdmVyZWQgZmFsYWogc3lzdGVtIGluIGFsLUFpbiwgVUFF
|
1365
|
+
LCBkYXRlcyB0byAxMDAwIEJDLCBhbmQgYW5vdGhlciBpbiBVbW0gU2FmYWgs
|
1366
|
+
IFNoYXJqYSwgZGF0ZXMgdG8gdGhlIElyb24gQWdlLiBBbHNvLCBhIHFhbmF0
|
1367
|
+
LWxpa2Ugc3lzdGVtIGNhbGxlZCB0aGUgVHVycGFuIHdhdGVyIHN5c3RlbSBv
|
1368
|
+
cmlnaW5hdGVkIGluIENoaW5hIGR1cmluZyB0aGUgSGFuIER5bmFzdHkgKDIw
|
1369
|
+
NiBCQ0Ug4oCTIDI0IENFKS5cblxuVGhlIHZhbHVlIG9mIGEgcWFuYXQgaXMg
|
1370
|
+
ZGlyZWN0bHkgcmVsYXRlZCB0byB0aGUgcXVhbGl0eSwgdm9sdW1lIGFuZCBy
|
1371
|
+
ZWd1bGFyaXR5IG9mIHRoZSB3YXRlciBmbG93LiBNdWNoIG9mIHRoZSBwb3B1
|
1372
|
+
bGF0aW9uIG9mIElyYW4gYW5kIG90aGVyIGFyaWQgY291bnRyaWVzIGluIEFz
|
1373
|
+
aWEgYW5kIE5vcnRoIEFmcmljYSBoaXN0b3JpY2FsbHkgZGVwZW5kZWQgdXBv
|
1374
|
+
biB0aGUgd2F0ZXIgZnJvbSBxYW5hdHM7IHRoZSBhcmVhcyBvZiBwb3B1bGF0
|
1375
|
+
aW9uIGNvcnJlc3BvbmRlZCBjbG9zZWx5IHRvIHRoZSBhcmVhcyB3aGVyZSBx
|
1376
|
+
YW5hdHMgYXJlIHBvc3NpYmxlLiBBbHRob3VnaCBhIHFhbmF0IHdhcyBleHBl
|
1377
|
+
bnNpdmUgdG8gY29uc3RydWN0LCBpdHMgbG9uZy10ZXJtIHZhbHVlIHRvIHRo
|
1378
|
+
ZSBjb21tdW5pdHksIGFuZCB0aGVyZWZvcmUgdG8gdGhlIGdyb3VwIHdobyBp
|
1379
|
+
bnZlc3RlZCBpbiBidWlsZGluZyBhbmQgbWFpbnRhaW5pbmcgaXQsIHdhcyBz
|
1380
|
+
dWJzdGFudGlhbC5cblxuUWFuYXRzIGFyZSBjb25zdHJ1Y3RlZCBhcyBhIHNl
|
1381
|
+
cmllcyBvZiB3ZWxsLWxpa2UgdmVydGljYWwgc2hhZnRzLCBjb25uZWN0ZWQg
|
1382
|
+
YnkgZ2VudGx5IHNsb3BpbmcgdHVubmVscy4gUWFuYXRzIHRhcCBpbnRvIHN1
|
1383
|
+
YnRlcnJhbmVhbiB3YXRlciBpbiBhIG1hbm5lciB0aGF0IGVmZmljaWVudGx5
|
1384
|
+
IGRlbGl2ZXJzIGxhcmdlIHF1YW50aXRpZXMgb2Ygd2F0ZXIgdG8gdGhlIHN1
|
1385
|
+
cmZhY2Ugd2l0aG91dCBuZWVkIGZvciBwdW1waW5nLiBUaGUgd2F0ZXIgZHJh
|
1386
|
+
aW5zIHJlbHlpbmcgb24gZ3Jhdml0eSwgd2l0aCB0aGUgZGVzdGluYXRpb24g
|
1387
|
+
bG93ZXIgdGhhbiB0aGUgc291cmNlLCB3aGljaCBpcyB0eXBpY2FsbHkgYW4g
|
1388
|
+
dXBsYW5kIGFxdWlmZXIuIFFhbmF0cyBhbGxvdyB3YXRlciB0byBiZSB0cmFu
|
1389
|
+
c3BvcnRlZCBvdmVyIGxvbmcgZGlzdGFuY2VzIGluIGhvdCBkcnkgY2xpbWF0
|
1390
|
+
ZXMgd2l0aG91dCBsb3NpbmcgYSBsYXJnZSBwcm9wb3J0aW9uIG9mIHRoZSB3
|
1391
|
+
YXRlciB0byBzZWVwYWdlIGFuZCBldmFwb3JhdGlvbi5cblxuSXQgaXMgdmVy
|
1392
|
+
eSBjb21tb24gaW4gdGhlIGNvbnN0cnVjdGlvbiBvZiBhIHFhbmF0IGZvciB0
|
1393
|
+
aGUgd2F0ZXIgc291cmNlIHRvIGJlIGZvdW5kIGJlbG93IGdyb3VuZCBhdCB0
|
1394
|
+
aGUgZm9vdCBvZiBhIHJhbmdlIG9mIGZvb3RoaWxscyBvZiBtb3VudGFpbnMs
|
1395
|
+
IHdoZXJlIHRoZSB3YXRlciB0YWJsZSBpcyBjbG9zZXN0IHRvIHRoZSBzdXJm
|
1396
|
+
YWNlLiBGcm9tIHRoaXMgcG9pbnQsIHRoZSBzbG9wZSBvZiB0aGUgcWFuYXQg
|
1397
|
+
aXMgbWFpbnRhaW5lZCBjbG9zZXIgdG8gbGV2ZWwgdGhhbiB0aGUgc3VyZmFj
|
1398
|
+
ZSBhYm92ZSwgdW50aWwgdGhlIHdhdGVyIGZpbmFsbHkgZmxvd3Mgb3V0IG9m
|
1399
|
+
IHRoZSBxYW5hdCBhYm92ZSBncm91bmQuIFRvIHJlYWNoIGFuIGFxdWlmZXIs
|
1400
|
+
IHFhbmF0cyBtdXN0IG9mdGVuIGV4dGVuZCBmb3IgbG9uZyBkaXN0YW5jZXMu
|
1401
|
+
XG5cblFhbmF0cyBhcmUgc29tZXRpbWVzIHNwbGl0IGludG8gYW4gdW5kZXJn
|
1402
|
+
cm91bmQgZGlzdHJpYnV0aW9uIG5ldHdvcmsgb2Ygc21hbGxlciBjYW5hbHMg
|
1403
|
+
Y2FsbGVkIGthcml6LiBMaWtlIHFhbmF0cywgdGhlc2Ugc21hbGxlciBjYW5h
|
1404
|
+
bHMgd2VyZSBiZWxvdyBncm91bmQgdG8gYXZvaWQgY29udGFtaW5hdGlvbi4g
|
1405
|
+
SW4gc29tZSBjYXNlcyB3YXRlciBmcm9tIGEgcWFuYXQgaXMgc3RvcmVkIGlu
|
1406
|
+
IGEgcmVzZXJ2b2lyLCB0eXBpY2FsbHkgc3RvcmluZyBuaWdodCBmbG93IGZv
|
1407
|
+
ciBkYXl0aW1lIHVzZS4gQW4gQWIgQW5iYXIgaXMgYW4gZXhhbXBsZSBvZiBh
|
1408
|
+
IHRyYWRpdGlvbmFsIHFhbmF0IGZlZCByZXNlcnZvaXIgZm9yIGRyaW5raW5n
|
1409
|
+
IHdhdGVyIGluIFBlcnNpYW4gYW50aXF1aXR5LlxuXG5UaGUgcWFuYXQgc3lz
|
1410
|
+
dGVtIGhhcyB0aGUgYWR2YW50YWdlIG9mIGJlaW5nIHJlc2lzdGFudCB0byBu
|
1411
|
+
YXR1cmFsIGRpc2FzdGVycyBzdWNoIGFzIGVhcnRocXVha2VzIGFuZCBmbG9v
|
1412
|
+
ZHMsIGFuZCB0byBkZWxpYmVyYXRlIGRlc3RydWN0aW9uIGluIHdhci4gRnVy
|
1413
|
+
dGhlcm1vcmUsIGl0IGlzIGFsbW9zdCBpbnNlbnNpdGl2ZSB0byB0aGUgbGV2
|
1414
|
+
ZWxzIG9mIHByZWNpcGl0YXRpb24sIGRlbGl2ZXJpbmcgYSBmbG93IHdpdGgg
|
1415
|
+
b25seSBncmFkdWFsIHZhcmlhdGlvbnMgZnJvbSB3ZXQgdG8gZHJ5IHllYXJz
|
1416
|
+
LlxuXG5UaGUgcWFuYXQgdGVjaG5vbG9neSBpcyB1c2VkIG1vc3QgZXh0ZW5z
|
1417
|
+
aXZlbHkgaW4gYXJlYXMgd2l0aCB0aGUgZm9sbG93aW5nIGNoYXJhY3Rlcmlz
|
1418
|
+
dGljczpbY2l0YXRpb24gbmVlZGVkXVxuXG5BIHR5cGljYWwgdG93biBvciBj
|
1419
|
+
aXR5IGluIElyYW4gYW5kIGVsc2V3aGVyZSB3aGVyZSB0aGUgcWFuYXQgaXMg
|
1420
|
+
dXNlZCBoYXMgbW9yZSB0aGFuIG9uZSBxYW5hdC4gRmllbGRzIGFuZCBnYXJk
|
1421
|
+
ZW5zIGFyZSBsb2NhdGVkIGJvdGggb3ZlciB0aGUgcWFuYXRzIGEgc2hvcnQg
|
1422
|
+
ZGlzdGFuY2UgYmVmb3JlIHRoZXkgZW1lcmdlIGZyb20gdGhlIGdyb3VuZCBh
|
1423
|
+
bmQgYWZ0ZXIgdGhlIHN1cmZhY2Ugb3V0bGV0LiBXYXRlciBmcm9tIHRoZSBx
|
1424
|
+
YW5hdHMgZGVmaW5lcyBib3RoIHRoZSBzb2NpYWwgcmVnaW9ucyBpbiB0aGUg
|
1425
|
+
Y2l0eSBhbmQgdGhlIGxheW91dCBvZiB0aGUgY2l0eS5cblxuVGhlIHdhdGVy
|
1426
|
+
IGlzIGZyZXNoZXN0LCBjbGVhbmVzdCwgYW5kIGNvb2xlc3QgaW4gdGhlIHVw
|
1427
|
+
cGVyIHJlYWNoZXMgYW5kIG1vcmUgcHJvc3Blcm91cyBwZW9wbGUgbGl2ZSBh
|
1428
|
+
dCB0aGUgb3V0bGV0IG9yIGltbWVkaWF0ZWx5IHVwc3RyZWFtIG9mIHRoZSBv
|
1429
|
+
dXRsZXQuIFdoZW4gdGhlIHFhbmF0IGlzIHN0aWxsIGJlbG93IGdyYWRlLCB0
|
1430
|
+
aGUgd2F0ZXIgaXMgZHJhd24gdG8gdGhlIHN1cmZhY2UgdmlhIHdhdGVyIHdl
|
1431
|
+
bGxzIG9yIGFuaW1hbCBkcml2ZW4gUGVyc2lhbiB3ZWxscy4gUHJpdmF0ZSBz
|
1432
|
+
dWJ0ZXJyYW5lYW4gcmVzZXJ2b2lycyBjb3VsZCBzdXBwbHkgaG91c2VzIGFu
|
1433
|
+
ZCBidWlsZGluZ3MgZm9yIGRvbWVzdGljIHVzZSBhbmQgZ2FyZGVuIGlycmln
|
1434
|
+
YXRpb24gYXMgd2VsbC4gRnVydGhlciwgYWlyIGZsb3cgZnJvbSB0aGUgcWFu
|
1435
|
+
YXQgaXMgdXNlZCB0byBjb29sIGFuIHVuZGVyZ3JvdW5kIHN1bW1lciByb29t
|
1436
|
+
IChzaGFiZXN0YW4pIGZvdW5kIGluIG1hbnkgb2xkZXIgaG91c2VzIGFuZCBi
|
1437
|
+
dWlsZGluZ3MuXG5cbkRvd25zdHJlYW0gb2YgdGhlIG91dGxldCwgdGhlIHdh
|
1438
|
+
dGVyIHJ1bnMgdGhyb3VnaCBzdXJmYWNlIGNhbmFscyBjYWxsZWQganVicyAo
|
1439
|
+
asWrYnMpIHdoaWNoIHJ1biBkb3duaGlsbCwgd2l0aCBsYXRlcmFsIGJyYW5j
|
1440
|
+
aGVzIHRvIGNhcnJ5IHdhdGVyIHRvIHRoZSBuZWlnaGJvcmhvb2QsIGdhcmRl
|
1441
|
+
bnMgYW5kIGZpZWxkcy4gVGhlIHN0cmVldHMgbm9ybWFsbHkgcGFyYWxsZWwg
|
1442
|
+
dGhlIGp1YnMgYW5kIHRoZWlyIGxhdGVyYWwgYnJhbmNoZXMuIEFzIGEgcmVz
|
1443
|
+
dWx0LCB0aGUgY2l0aWVzIGFuZCB0b3ducyBhcmUgb3JpZW50ZWQgY29uc2lz
|
1444
|
+
dGVudCB3aXRoIHRoZSBncmFkaWVudCBvZiB0aGUgbGFuZDsgdGhpcyBpcyBh
|
1445
|
+
IHByYWN0aWNhbCByZXNwb25zZSB0byBlZmZpY2llbnQgd2F0ZXIgZGlzdHJp
|
1446
|
+
YnV0aW9uIG92ZXIgdmFyeWluZyB0ZXJyYWluLlxuXG5UaGUgbG93ZXIgcmVh
|
1447
|
+
Y2hlcyBvZiB0aGUgY2FuYWxzIGFyZSBsZXNzIGRlc2lyYWJsZSBmb3IgYm90
|
1448
|
+
aCByZXNpZGVuY2VzIGFuZCBhZ3JpY3VsdHVyZS4gVGhlIHdhdGVyIGdyb3dz
|
1449
|
+
IHByb2dyZXNzaXZlbHkgbW9yZSBwb2xsdXRlZCBhcyBpdCBwYXNzZXMgZG93
|
1450
|
+
bnN0cmVhbS4gSW4gZHJ5IHllYXJzIHRoZSBsb3dlciByZWFjaGVzIGFyZSB0
|
1451
|
+
aGUgbW9zdCBsaWtlbHkgdG8gc2VlIHN1YnN0YW50aWFsIHJlZHVjdGlvbnMg
|
1452
|
+
aW4gZmxvdy5cblxuVHJhZGl0aW9uYWxseSBxYW5hdHMgYXJlIGJ1aWx0IGJ5
|
1453
|
+
IGEgZ3JvdXAgb2Ygc2tpbGxlZCBsYWJvcmVycywgbXVxYW5uxKtzLCB3aXRo
|
1454
|
+
IGhhbmQgbGFib3IuIFRoZSBwcm9mZXNzaW9uIGhpc3RvcmljYWxseSBwYWlk
|
1455
|
+
IHdlbGwgYW5kIHdhcyB0eXBpY2FsbHkgaGFuZGVkIGRvd24gZnJvbSBmYXRo
|
1456
|
+
ZXIgdG8gc29uLlxuXG5UaGUgY3JpdGljYWwsIGluaXRpYWwgc3RlcCBpbiBx
|
1457
|
+
YW5hdCBjb25zdHJ1Y3Rpb24gaXMgaWRlbnRpZmljYXRpb24gb2YgYW4gYXBw
|
1458
|
+
cm9wcmlhdGUgd2F0ZXIgc291cmNlLiBUaGUgc2VhcmNoIGJlZ2lucyBhdCB0
|
1459
|
+
aGUgcG9pbnQgd2hlcmUgdGhlIGFsbHV2aWFsIGZhbiBtZWV0cyB0aGUgbW91
|
1460
|
+
bnRhaW5zIG9yIGZvb3RoaWxsczsgd2F0ZXIgaXMgbW9yZSBhYnVuZGFudCBp
|
1461
|
+
biB0aGUgbW91bnRhaW5zIGJlY2F1c2Ugb2Ygb3JvZ3JhcGhpYyBsaWZ0aW5n
|
1462
|
+
IGFuZCBleGNhdmF0aW9uIGluIHRoZSBhbGx1dmlhbCBmYW4gaXMgcmVsYXRp
|
1463
|
+
dmVseSBlYXN5LiBUaGUgbXVxYW5uxKtzIGZvbGxvdyB0aGUgdHJhY2sgb2Yg
|
1464
|
+
dGhlIG1haW4gd2F0ZXIgY291cnNlcyBjb21pbmcgZnJvbSB0aGUgbW91bnRh
|
1465
|
+
aW5zIG9yIGZvb3RoaWxscyB0byBpZGVudGlmeSBldmlkZW5jZSBvZiBzdWJz
|
1466
|
+
dXJmYWNlIHdhdGVyIHN1Y2ggYXMgZGVlcC1yb290ZWQgdmVnZXRhdGlvbiBv
|
1467
|
+
ciBzZWFzb25hbCBzZWVwcy4gQSB0cmlhbCB3ZWxsIGlzIHRoZW4gZHVnIHRv
|
1468
|
+
IGRldGVybWluZSB0aGUgbG9jYXRpb24gb2YgdGhlIHdhdGVyIHRhYmxlIGFu
|
1469
|
+
ZCBkZXRlcm1pbmUgd2hldGhlciBhIHN1ZmZpY2llbnQgZmxvdyBpcyBhdmFp
|
1470
|
+
bGFibGUgdG8ganVzdGlmeSBjb25zdHJ1Y3Rpb24uIElmIHRoZXNlIHByZXJl
|
1471
|
+
cXVpc2l0ZXMgYXJlIG1ldCwgdGhlbiB0aGUgcm91dGUgaXMgbGFpZCBvdXQg
|
1472
|
+
YWJvdmVncm91bmQuXG5cbkVxdWlwbWVudCBtdXN0IGJlIGFzc2VtYmxlZC4g
|
1473
|
+
VGhlIGVxdWlwbWVudCBpcyBzdHJhaWdodGZvcndhcmQ6IGNvbnRhaW5lcnMg
|
1474
|
+
KHVzdWFsbHkgbGVhdGhlciBiYWdzKSwgcm9wZXMsIHJlZWxzIHRvIHJhaXNl
|
1475
|
+
IHRoZSBjb250YWluZXIgdG8gdGhlIHN1cmZhY2UgYXQgdGhlIHNoYWZ0IGhl
|
1476
|
+
YWQsIGhhdGNoZXRzIGFuZCBzaG92ZWxzIGZvciBleGNhdmF0aW9uLCBsaWdo
|
1477
|
+
dHMsIHNwaXJpdCBsZXZlbHMgb3IgcGx1bWIgYm9icyBhbmQgc3RyaW5nLiBE
|
1478
|
+
ZXBlbmRpbmcgdXBvbiB0aGUgc29pbCB0eXBlLCBxYW5hdCBsaW5lcnMgKHVz
|
1479
|
+
dWFsbHkgZmlyZWQgY2xheSBob29wcykgbWF5IGFsc28gYmUgcmVxdWlyZWQu
|
1480
|
+
XG5cbkFsdGhvdWdoIHRoZSBjb25zdHJ1Y3Rpb24gbWV0aG9kcyBhcmUgc2lt
|
1481
|
+
cGxlLCB0aGUgY29uc3RydWN0aW9uIG9mIGEgcWFuYXQgcmVxdWlyZXMgYSBk
|
1482
|
+
ZXRhaWxlZCB1bmRlcnN0YW5kaW5nIG9mIHN1YnRlcnJhbmVhbiBnZW9sb2d5
|
1483
|
+
IGFuZCBhIGRlZ3JlZSBvZiBlbmdpbmVlcmluZyBzb3BoaXN0aWNhdGlvbi4g
|
1484
|
+
VGhlIGdyYWRpZW50IG9mIHRoZSBxYW5hdCBtdXN0IGJlIGNhcmVmdWxseSBj
|
1485
|
+
b250cm9sbGVk4oCUdG9vIHNoYWxsb3cgYSBncmFkaWVudCB5aWVsZHMgbm8g
|
1486
|
+
Zmxvd+KAlHRvbyBzdGVlcCBhIGdyYWRpZW50IHdpbGwgcmVzdWx0IGluIGV4
|
1487
|
+
Y2Vzc2l2ZSBlcm9zaW9uLCBjb2xsYXBzaW5nIHRoZSBxYW5hdC4gQW5kIG1p
|
1488
|
+
c3JlYWRpbmcgdGhlIHNvaWwgY29uZGl0aW9ucyBsZWFkcyB0byBjb2xsYXBz
|
1489
|
+
ZXMgd2hpY2ggYXQgYmVzdCByZXF1aXJlIGV4dGVuc2l2ZSByZXdvcmsgYW5k
|
1490
|
+
LCBhdCB3b3JzdCwgY2FuIGJlIGZhdGFsIGZvciB0aGUgY3Jldy5cblxuQ29u
|
1491
|
+
c3RydWN0aW9uIG9mIGEgcWFuYXQgaXMgdXN1YWxseSBwZXJmb3JtZWQgYnkg
|
1492
|
+
YSBjcmV3IG9mIDMtNCBtdXFhbm7Eq3MuIEZvciBhIHNoYWxsb3cgcWFuYXQs
|
1493
|
+
IG9uZSB3b3JrZXIgdHlwaWNhbGx5IGRpZ3MgdGhlIGhvcml6b250YWwgc2hh
|
1494
|
+
ZnQsIG9uZSByYWlzZXMgdGhlIGV4Y2F2YXRlZCBlYXJ0aCBmcm9tIHRoZSBz
|
1495
|
+
aGFmdCBhbmQgb25lIGRpc3RyaWJ1dGVzIHRoZSBleGNhdmF0ZWQgZWFydGgg
|
1496
|
+
YXQgdGhlIHRvcC5cblxuVGhlIGNyZXcgdHlwaWNhbGx5IGJlZ2lucyBmcm9t
|
1497
|
+
IHRoZSBkZXN0aW5hdGlvbiB0byB3aGljaCB0aGUgd2F0ZXIgd2lsbCBiZSBk
|
1498
|
+
ZWxpdmVyZWQgaW50byB0aGUgc29pbCBhbmQgd29ya3MgdG93YXJkIHRoZSBz
|
1499
|
+
b3VyY2UgKHRoZSB0ZXN0IHdlbGwpLiBWZXJ0aWNhbCBzaGFmdHMgYXJlIGV4
|
1500
|
+
Y2F2YXRlZCBhbG9uZyB0aGUgcm91dGUsIHNlcGFyYXRlZCBhdCBhIGRpc3Rh
|
1501
|
+
bmNlIG9mIDIw4oCTMzUgbS4gVGhlIHNlcGFyYXRpb24gb2YgdGhlIHNoYWZ0
|
1502
|
+
cyBpcyBhIGJhbGFuY2UgYmV0d2VlbiB0aGUgYW1vdW50IG9mIHdvcmsgcmVx
|
1503
|
+
dWlyZWQgdG8gZXhjYXZhdGUgdGhlbSBhbmQgdGhlIGFtb3VudCBvZiBlZmZv
|
1504
|
+
cnQgcmVxdWlyZWQgdG8gZXhjYXZhdGUgdGhlIHNwYWNlIGJldHdlZW4gdGhl
|
1505
|
+
bSwgYXMgd2VsbCBhcyB0aGUgdWx0aW1hdGUgbWFpbnRlbmFuY2UgZWZmb3J0
|
1506
|
+
LiBJbiBnZW5lcmFsLCB0aGUgc2hhbGxvd2VyIHRoZSBxYW5hdCwgdGhlIGNs
|
1507
|
+
b3NlciB0aGUgdmVydGljYWwgc2hhZnRzLiBJZiB0aGUgcWFuYXQgaXMgbG9u
|
1508
|
+
ZywgZXhjYXZhdGlvbiBtYXkgYmVnaW4gZnJvbSBib3RoIGVuZHMgYXQgb25j
|
1509
|
+
ZS4gVHJpYnV0YXJ5IGNoYW5uZWxzIGFyZSBzb21ldGltZXMgYWxzbyBjb25z
|
1510
|
+
dHJ1Y3RlZCB0byBzdXBwbGVtZW50IHRoZSB3YXRlciBmbG93LlxuXG5Nb3N0
|
1511
|
+
IHFhbmF0cyBpbiBJcmFuIHJ1biBsZXNzIHRoYW4gNcKga20sIHdoaWxlIHNv
|
1512
|
+
bWUgaGF2ZSBiZWVuIG1lYXN1cmVkIGF0IH43MMKga20gaW4gbGVuZ3RoIG5l
|
1513
|
+
YXIgS2VybWFuLiBUaGUgdmVydGljYWwgc2hhZnRzIHVzdWFsbHkgcmFuZ2Ug
|
1514
|
+
ZnJvbSAyMCB0byAyMDAgbWV0ZXJzIGluIGRlcHRoLCBhbHRob3VnaCBxYW5h
|
1515
|
+
dHMgaW4gdGhlIHByb3ZpbmNlIG9mIEtob3Jhc2FuIGhhdmUgYmVlbiByZWNv
|
1516
|
+
cmRlZCB3aXRoIHZlcnRpY2FsIHNoYWZ0cyBvZiB1cCB0byAyNzUgbS4gVGhl
|
1517
|
+
IHZlcnRpY2FsIHNoYWZ0cyBzdXBwb3J0IGNvbnN0cnVjdGlvbiBhbmQgbWFp
|
1518
|
+
bnRlbmFuY2Ugb2YgdGhlIHVuZGVyZ3JvdW5kIGNoYW5uZWwgYXMgd2VsbCBh
|
1519
|
+
cyBhaXIgaW50ZXJjaGFuZ2UuIERlZXAgc2hhZnRzIHJlcXVpcmUgaW50ZXJt
|
1520
|
+
ZWRpYXRlIHBsYXRmb3JtcyB0byBzaW1wbGlmeSB0aGUgcHJvY2VzcyBvZiBy
|
1521
|
+
ZW1vdmluZyBzcG9pbHMuXG5cblRoZSBjb25zdHJ1Y3Rpb24gc3BlZWQgZGVw
|
1522
|
+
ZW5kcyBvbiB0aGUgZGVwdGggYW5kIG5hdHVyZSBvZiB0aGUgZ3JvdW5kLiBJ
|
1523
|
+
ZiB0aGUgZWFydGggaXMgZWFzeS9zb2Z0IHRvIHdvcms7IGF0IDIwIG1ldGVy
|
1524
|
+
cyBkZXB0aCwgYSBjcmV3IG9mIDQgcGVvcGxlIGNhbiBleGNhdmF0ZSBhIGhv
|
1525
|
+
cml6b250YWwgbGVuZ3RoIG9mIDQwIG1ldGVycyBwZXIgZGF5LiBXaGVuIHRo
|
1526
|
+
ZSB2ZXJ0aWNhbCBzaGFmdCByZWFjaGVzIDQwIG1ldGVycywgdGhleSBjYW4g
|
1527
|
+
b25seSBleGNhdmF0ZSAyMCBtZXRlcnMgaG9yaXpvbnRhbGx5IHBlciBkYXkg
|
1528
|
+
YW5kIGF0IDYwIG1ldGVycyBpbiBkZXB0aCB0aGlzIGRyb3BzIGJlbG93IDUg
|
1529
|
+
aG9yaXpvbnRhbCBtZXRlcnMgcGVyIGRheS4gSW4gQWxnZXJpYSwgYSBjb21t
|
1530
|
+
b24gc3BlZWQgaXMganVzdCAybSBwZXIgZGF5IGF0IDE1bSBkZXB0aC4gRGVl
|
1531
|
+
cCwgbG9uZyBxYW5hdHMgKHdoaWNoIG1hbnkgYXJlKSByZXF1aXJlIHllYXJz
|
1532
|
+
IGFuZCBldmVuIGRlY2FkZXMgdG8gY29uc3RydWN0LlxuXG5UaGUgZXhjYXZh
|
1533
|
+
dGVkIG1hdGVyaWFsIGlzIHVzdWFsbHkgdHJhbnNwb3J0ZWQgYnkgbWVhbnMg
|
1534
|
+
b2YgbGVhdGhlciBiYWdzIHVwIHRoZSB2ZXJ0aWNhbCBzaGFmdHMuIEl0IGlz
|
1535
|
+
IG1vdW5kZWQgYXJvdW5kIHRoZSB2ZXJ0aWNhbCBzaGFmdCBleGl0LCBwcm92
|
1536
|
+
aWRpbmcgYSBiYXJyaWVyIHRoYXQgcHJldmVudHMgd2luZGJsb3duIG9yIHJh
|
1537
|
+
aW4gZHJpdmVuIGRlYnJpcyBmcm9tIGVudGVyaW5nIHRoZSBzaGFmdHMuIFRo
|
1538
|
+
ZXNlIG1vdW5kcyBtYXkgYmUgY292ZXJlZCB0byBwcm92aWRlIGZ1cnRoZXIg
|
1539
|
+
cHJvdGVjdGlvbiB0byB0aGUgcWFuYXQuIEZyb20gdGhlIGFpciwgdGhlc2Ug
|
1540
|
+
c2hhZnRzIGxvb2sgbGlrZSBhIHN0cmluZyBvZiBib21iIGNyYXRlcnMuXG5c
|
1541
|
+
blRoZSBxYW5hdCdzIHdhdGVyLWNhcnJ5aW5nIGNoYW5uZWwgbXVzdCBoYXZl
|
1542
|
+
IGEgc3VmZmljaWVudCBkb3dud2FyZCBzbG9wZSB0aGF0IHdhdGVyIGZsb3dz
|
1543
|
+
IGVhc2lseS4gSG93ZXZlciB0aGUgZG93bndhcmQgZ3JhZGllbnQgbXVzdCBu
|
1544
|
+
b3QgYmUgc28gZ3JlYXQgYXMgdG8gY3JlYXRlIGNvbmRpdGlvbnMgdW5kZXIg
|
1545
|
+
d2hpY2ggdGhlIHdhdGVyIHRyYW5zaXRpb25zIGJldHdlZW4gc3VwZXJjcml0
|
1546
|
+
aWNhbCBhbmQgc3ViY3JpdGljYWwgZmxvdzsgaWYgdGhpcyBvY2N1cnMsIHRo
|
1547
|
+
ZSB3YXZlcyB3aGljaCBhcmUgZXN0YWJsaXNoZWQgY2FuIHJlc3VsdCBpbiBz
|
1548
|
+
ZXZlcmUgZXJvc2lvbiB0aGF0IGNhbiBkYW1hZ2Ugb3IgZGVzdHJveSB0aGUg
|
1549
|
+
cWFuYXQuIEluIHNob3J0ZXIgcWFuYXRzIHRoZSBkb3dud2FyZCBncmFkaWVu
|
1550
|
+
dCB2YXJpZXMgYmV0d2VlbiAxOjEwMDAgYW5kIDE6MTUwMCwgd2hpbGUgaW4g
|
1551
|
+
bG9uZ2VyIHFhbmF0cyBpdCBtYXkgYmUgYWxtb3N0IGhvcml6b250YWwuIFN1
|
1552
|
+
Y2ggcHJlY2lzaW9uIGlzIHJvdXRpbmVseSBvYnRhaW5lZCB3aXRoIGEgc3Bp
|
1553
|
+
cml0IGxldmVsIGFuZCBzdHJpbmcuXG5cbkluIGNhc2VzIHdoZXJlIHRoZSBn
|
1554
|
+
cmFkaWVudCBpcyBzdGVlcGVyLCB1bmRlcmdyb3VuZCB3YXRlcmZhbGxzIG1h
|
1555
|
+
eSBiZSBjb25zdHJ1Y3RlZCB3aXRoIGFwcHJvcHJpYXRlIGRlc2lnbiBmZWF0
|
1556
|
+
dXJlcyAodXN1YWxseSBsaW5pbmdzKSB0byBhYnNvcmIgdGhlIGVuZXJneSB3
|
1557
|
+
aXRoIG1pbmltYWwgZXJvc2lvbi4gSW4gc29tZSBjYXNlcyB0aGUgd2F0ZXIg
|
1558
|
+
cG93ZXIgaGFzIGJlZW4gaGFybmVzc2VkIHRvIGRyaXZlIHVuZGVyZ3JvdW5k
|
1559
|
+
IG1pbGxzLiBJZiBpdCBpcyBub3QgcG9zc2libGUgdG8gYnJpbmcgdGhlIG91
|
1560
|
+
dGxldCBvZiB0aGUgcWFuYXQgb3V0IG5lYXIgdGhlIHNldHRsZW1lbnQsIGl0
|
1561
|
+
IGlzIG5lY2Vzc2FyeSB0byBydW4gYSBqdWIgb3IgY2FuYWwgb3Zlcmdyb3Vu
|
1562
|
+
ZC4gVGhpcyBpcyBhdm9pZGVkIHdoZW4gcG9zc2libGUgdG8gbGltaXQgcG9s
|
1563
|
+
bHV0aW9uLCB3YXJtaW5nIGFuZCB3YXRlciBsb3NzIGR1ZSB0byBldmFwb3Jh
|
1564
|
+
dGlvbi5cblxuVGhlIHZlcnRpY2FsIHNoYWZ0cyBtYXkgYmUgY292ZXJlZCB0
|
1565
|
+
byBtaW5pbWl6ZSBpbi1ibG93biBzYW5kLiBUaGUgY2hhbm5lbHMgb2YgcWFu
|
1566
|
+
YXRzIG11c3QgYmUgcGVyaW9kaWNhbGx5IGluc3BlY3RlZCBmb3IgZXJvc2lv
|
1567
|
+
biBvciBjYXZlLWlucywgY2xlYW5lZCBvZiBzYW5kIGFuZCBtdWQgYW5kIG90
|
1568
|
+
aGVyd2lzZSByZXBhaXJlZC4gQWlyIGZsb3cgbXVzdCBiZSBhc3N1cmVkIGJl
|
1569
|
+
Zm9yZSBlbnRyeSBmb3Igc2FmZXR5LlxuXG5Tb21lIGRhbWFnZWQgcWFuYXRz
|
1570
|
+
IGhhdmUgYmVlbiByZXN0b3JlZC4gSW4gb3JkZXIgdG8gYmUgc3VzdGFpbmFi
|
1571
|
+
bGUsIHJlc3RvcmF0aW9uIG5lZWRzIHRvIHRha2UgaW50byBhY2NvdW50IG1h
|
1572
|
+
bnkgbm9uLXRlY2huaWNhbCBmYWN0b3JzLCBiZWdpbm5pbmcgd2l0aCB0aGUg
|
1573
|
+
cHJvY2VzcyBvZiBzZWxlY3RpbmcgdGhlIHFhbmF0IHRvIGJlIHJlc3RvcmVk
|
1574
|
+
LiBJbiB0aGUgY2FzZSBvZiBTeXJpYSwgdGhyZWUgc2l0ZXMgd2VyZSBjaG9z
|
1575
|
+
ZW4gYmFzZWQgb24gYSBuYXRpb25hbCBpbnZlbnRvcnkgY29uZHVjdGVkIGlu
|
1576
|
+
IDIwMDEuIE9uZSBvZiB0aGVtLCB0aGUgRHJhc2lhaCBxYW5hdCBvZiBEbWVp
|
1577
|
+
ciwgd2FzIGNvbXBsZXRlZCBpbiAyMDAyLiBTZWxlY3Rpb24gY3JpdGVyaWEg
|
1578
|
+
aW5jbHVkZWQgdGhlIGF2YWlsYWJpbGl0eSBvZiBhIHN0ZWFkeSBncm91bmR3
|
1579
|
+
YXRlciBmbG93LCBzb2NpYWwgY29oZXNpb24gYW5kIHdpbGxpbmduZXNzIHRv
|
1580
|
+
IGNvbnRyaWJ1dGUgb2YgdGhlIGNvbW11bml0eSB1c2luZyB0aGUgcWFuYXQs
|
1581
|
+
IGFuZCB0aGUgZXhpc3RlbmNlIG9mIGEgZnVuY3Rpb25pbmcgd2F0ZXIgcmln
|
1582
|
+
aHRzIHN5c3RlbS5cblxuVGhlIHByaW1hcnkgYXBwbGljYXRpb25zIG9mIHFh
|
1583
|
+
bmF0cyBhcmUgZm9yIGlycmlnYXRpb24sIHByb3ZpZGluZyBjYXR0bGUgd2l0
|
1584
|
+
aCB3YXRlciBhbmQgZHJpbmtpbmcgd2F0ZXIgc3VwcGx5LiBPdGhlciBhcHBs
|
1585
|
+
aWNhdGlvbnMgaW5jbHVkZSBjb29saW5nIGFuZCBpY2Ugc3RvcmFnZS5cblxu
|
1586
|
+
UWFuYXRzIHVzZWQgaW4gY29uanVuY3Rpb24gd2l0aCBhIHdpbmQgdG93ZXIg
|
1587
|
+
Y2FuIHByb3ZpZGUgY29vbGluZyBhcyB3ZWxsIGFzIGEgd2F0ZXIgc3VwcGx5
|
1588
|
+
LiBBIHdpbmQgdG93ZXIgaXMgYSBjaGltbmV5LWxpa2Ugc3RydWN0dXJlIHBv
|
1589
|
+
c2l0aW9uZWQgYWJvdmUgdGhlIGhvdXNlOyBvZiBpdHMgZm91ciBvcGVuaW5n
|
1590
|
+
cywgdGhlIG9uZSBvcHBvc2l0ZSB0aGUgd2luZCBkaXJlY3Rpb24gaXMgb3Bl
|
1591
|
+
bmVkIHRvIG1vdmUgYWlyIG91dCBvZiB0aGUgaG91c2UuIEluY29taW5nIGFp
|
1592
|
+
ciBpcyBwdWxsZWQgZnJvbSBhIHFhbmF0IGJlbG93IHRoZSBob3VzZS4gVGhl
|
1593
|
+
IGFpciBmbG93IGFjcm9zcyB0aGUgdmVydGljYWwgc2hhZnQgb3BlbmluZyBj
|
1594
|
+
cmVhdGVzIGEgbG93ZXIgcHJlc3N1cmUgKHNlZSBCZXJub3VsbGkgZWZmZWN0
|
1595
|
+
KSBhbmQgZHJhd3MgY29vbCBhaXIgdXAgZnJvbSB0aGUgcWFuYXQgdHVubmVs
|
1596
|
+
LCBtaXhpbmcgd2l0aCBpdC4gVGhlIGFpciBmcm9tIHRoZSBxYW5hdCB3YXMg
|
1597
|
+
ZHJhd24gaW50byB0aGUgdHVubmVsIGF0IHNvbWUgZGlzdGFuY2UgYXdheSBh
|
1598
|
+
bmQgaXMgY29vbGVkIGJvdGggYnkgY29udGFjdCB3aXRoIHRoZSBjb29sIHR1
|
1599
|
+
bm5lbCB3YWxscy93YXRlciBhbmQgYnkgdGhlIGdpdmluZyB1cCBsYXRlbnQg
|
1600
|
+
aGVhdCBvZiBldmFwb3JhdGlvbiBhcyB3YXRlciBldmFwb3JhdGVzIGludG8g
|
1601
|
+
dGhlIGFpciBzdHJlYW0uIEluIGRyeSBkZXNlcnQgY2xpbWF0ZXMgdGhpcyBj
|
1602
|
+
YW4gcmVzdWx0IGluIGEgZ3JlYXRlciB0aGFuIDE1wrBDIHJlZHVjdGlvbiBp
|
1603
|
+
biB0aGUgYWlyIHRlbXBlcmF0dXJlIGNvbWluZyBmcm9tIHRoZSBxYW5hdDsg
|
1604
|
+
dGhlIG1peGVkIGFpciBzdGlsbCBmZWVscyBkcnksIHNvIHRoZSBiYXNlbWVu
|
1605
|
+
dCBpcyBjb29sIGFuZCBvbmx5IGNvbWZvcnRhYmx5IG1vaXN0IChub3QgZGFt
|
1606
|
+
cCkuIFdpbmQgdG93ZXIgYW5kIHFhbmF0IGNvb2xpbmcgaGF2ZSBiZWVuIHVz
|
1607
|
+
ZWQgaW4gZGVzZXJ0IGNsaW1hdGVzIGZvciBvdmVyIDEwMDAgeWVhcnMuXG5c
|
1608
|
+
bkluIDQwMCBCQyBQZXJzaWFuIGVuZ2luZWVycyBoYWQgYWxyZWFkeSBtYXN0
|
1609
|
+
ZXJlZCB0aGUgdGVjaG5pcXVlIG9mIHN0b3JpbmcgaWNlIGluIHRoZSBtaWRk
|
1610
|
+
bGUgb2Ygc3VtbWVyIGluIHRoZSBkZXNlcnQuXG5cblRoZSBpY2UgY291bGQg
|
1611
|
+
YmUgYnJvdWdodCBpbiBkdXJpbmcgdGhlIHdpbnRlcnMgZnJvbSBuZWFyYnkg
|
1612
|
+
bW91bnRhaW5zLiBCdXQgaW4gYSBtb3JlIHVzdWFsICYgc29waGlzdGljYXRl
|
1613
|
+
ZCBtZXRob2QgdGhleSBoYWQgYSB3YWxsIG1hZGUgYWxvbmcgZWFzdC13ZXN0
|
1614
|
+
IGRpcmVjdGlvbiBjbG9zZSB0byB0aGUgSWNlIFBpdCAoeWFraGNoYWwpLklu
|
1615
|
+
IHdpbnRlciB0aGUgcWFuYXQgd2F0ZXIgd2FzIGJlaW5nIGNhbmFsaXplZCB0
|
1616
|
+
byBub3J0aCBzaWRlIG9mIHRoZSB3YWxsLiBUaGUgc2hhZG93IG9mIHRoZSB3
|
1617
|
+
YWxsIG1ha2VzIHdhdGVyIGZyZWV6ZSBtb3JlIHF1aWNrbHkgc28gdGhleSBj
|
1618
|
+
b3VsZCBoYXZlIG1vcmUgaWNlIHBlciBlYWNoIHdpbnRlciBkYXkuIFRoZW4g
|
1619
|
+
aWNlIHdhcyBiZWluZyBzdG9yZWQgaW4gYSBzcGVjaWFsbHkgZGVzaWduZWQs
|
1620
|
+
IG5hdHVyYWxseSBjb29sZWQgcmVmcmlnZXJhdG9ycyBjYWxsZWQgeWFraGNo
|
1621
|
+
YWwgKG1lYW5pbmcgaWNlIHBpdHMpLiBBIGxhcmdlIHVuZGVyZ3JvdW5kIHNw
|
1622
|
+
YWNlIHdpdGggdGhpY2sgaW5zdWxhdGVkIHdhbGxzIHdhcyBjb25uZWN0ZWQg
|
1623
|
+
dG8gYSBxYW5hdCwgYW5kIGEgc3lzdGVtIG9mIHdpbmRjYXRjaGVycyBvciBX
|
1624
|
+
aW5kIFRvd2VycyB3YXMgdXNlZCB0byBkcmF3IGNvb2wgc3VidGVycmFuZWFu
|
1625
|
+
IGFpciB1cCBmcm9tIHRoZSBxYW5hdCB0byBtYWludGFpbiB0ZW1wZXJhdHVy
|
1626
|
+
ZXMgaW5zaWRlIHRoZSBzcGFjZSBhdCBsb3cgbGV2ZWxzLCBldmVuIGR1cmlu
|
1627
|
+
ZyBob3Qgc3VtbWVyIGRheXMuIEFzIGEgcmVzdWx0LCB0aGUgaWNlIG1lbHRl
|
1628
|
+
ZCBzbG93bHkgYW5kIGljZSB3YXMgYXZhaWxhYmxlIHllYXItcm91bmQuXG5c
|
1629
|
+
blRoZSBRYW5hdHMsIGNhbGxlZCBLYXJpeiAocmh5bWVzIHdpdGggXCJicmVl
|
1630
|
+
emVcIikgIGluIFBhc2h0byBhbmQgRGFyaSwgaGF2ZSBhbHNvIGJlZW4gaW4g
|
1631
|
+
dXNlIGZvciBodW5kcmVkcyBvZiB5ZWFycy4gS2FyaXogc3RydWN0dXJlcyBh
|
1632
|
+
cmUgZXNwZWNpYWxseSBmb3VuZCBpbiB0aGUgU291dGhlcm4gQWZnaGFuaXN0
|
1633
|
+
YW4gcHJvdmluY2VzIG9mIEthbmRhaGFyLCBVcnV6Z2FuLCBOaW1yb3ogYW5k
|
1634
|
+
IEhpbG1hbmQuIFRoZSBpbmNlc3NhbnQgd2FyIGZvciB0aGUgbGFzdCAzMCB5
|
1635
|
+
ZWFycyBoYXMgZGVzdHJveWVkIGEgbnVtYmVyIG9mIHRoZXNlIGFuY2llbnQg
|
1636
|
+
c3RydWN0dXJlcy4gSW4gdGhlIHRyb3VibGVkIHRpbWVzIG1haW50ZW5hbmNl
|
1637
|
+
IHdhcyBub3QgYWx3YXlzIHBvc3NpYmxlLiBUbyBhZGQgdG8gdGhlIHRyb3Vi
|
1638
|
+
bGVzLCBhdCBwcmVzZW50ICgyMDA4KSB0aGUgY29zdCBvZiBsYWJvdXIgaGFz
|
1639
|
+
IGJlY29tZSB2ZXJ5IGhpZ2ggYW5kIG1haW50YWluaW5nIHRoZSBLYXJpeiBz
|
1640
|
+
dHJ1Y3R1cmVzIGlzIG5vIGxvbmdlciBwb3NzaWJsZVtkdWJpb3VzIOKAkyBk
|
1641
|
+
aXNjdXNzXS4gTGFjayBvZiBza2lsbGVkIGFydGlzYW5zIHdobyBoYXZlIHRo
|
1642
|
+
ZSB0cmFkaXRpb25hbCBrbm93bGVkZ2UgYWxzbyBwb3NlcyBkaWZmaWN1bHRp
|
1643
|
+
ZXMuIEEgbnVtYmVyIG9mIHRoZSBsYXJnZSBmYXJtZXJzIGFyZSBhYmFuZG9u
|
1644
|
+
aW5nIHRoZWlyIEthcml6IHdoaWNoIGhhcyBiZWVuIGluIHRoZWlyIGZhbWls
|
1645
|
+
aWVzIHNvbWV0aW1lcyBmb3IgY2VudHVyaWVzLCBhbmQgbW92aW5nIHRvIHR1
|
1646
|
+
YmUgYW5kIGR1ZyB3ZWxscyBiYWNrZWQgYnkgZGllc2VsIHB1bXBzW2NpdGF0
|
1647
|
+
aW9uIG5lZWRlZF0uXG5cbkhvd2V2ZXIgdGhlIGdvdmVybm1lbnQgb2YgQWZn
|
1648
|
+
aGFuaXN0YW4gaXMgYXdhcmUgb2YgdGhlIGltcG9ydGFuY2Ugb2YgdGhlc2Ug
|
1649
|
+
c3RydWN0dXJlcyBhbmQgYWxsIGVmZm9ydHMgYXJlIGJlaW5nIG1hZGUgdG8g
|
1650
|
+
cmVwYWlyLCByZWNvbnN0cnVjdCBhbmQgbWFpbnRhaW4gKHRocm91Z2ggdGhl
|
1651
|
+
IGNvbW11bml0eSkgdGhlIGthcml6W2NpdGF0aW9uIG5lZWRlZF0uIFRoZSBN
|
1652
|
+
aW5pc3RyeSBvZiBSdXJhbCBSZWhhYmlsaXRhdGlvbiBhbmQgRGV2ZWxvcG1l
|
1653
|
+
bnQgYWxvbmcgd2l0aCBOYXRpb25hbCBhbmQgSW50ZXJuYXRpb25hbCBOR09z
|
1654
|
+
IGlzIG1ha2luZyB0aGUgZWZmb3J0LlxuXG5TdGlsbCwgdGhlcmUgYXJlIGZ1
|
1655
|
+
bmN0aW9uYWwgcWFuYXQgc3lzdGVtcyBpbiAyMDA5LiBBbWVyaWNhbiBmb3Jj
|
1656
|
+
ZXMgYXJlIHJlcG9ydGVkIHRvIGhhdmUgdW5pbnRlbnRpb25hbGx5IGRlc3Ry
|
1657
|
+
b3llZCBzb21lIG9mIHRoZSBjaGFubmVscyBkdXJpbmcgZXhwYW5zaW9uIG9m
|
1658
|
+
IGEgbWlsaXRhcnkgYmFzZSwgY3JlYXRpbmcgdGVuc2lvbnMgYmV0d2VlbiB0
|
1659
|
+
aGVtIGFuZCB0aGUgbG9jYWwgY29tbXVuaXR5LiBTb21lIG9mIHRoZXNlIHR1
|
1660
|
+
bm5lbHMgaGF2ZSBiZWVuIHVzZWQgdG8gc3RvcmUgc3VwcGxpZXMsIGFuZCB0
|
1661
|
+
byBtb3ZlIG1lbiBhbmQgZXF1aXBtZW50IHVuZGVyZ3JvdW5kLlxuXG5BbiBv
|
1662
|
+
YXNpcyBhdCBUdXJwYW4gaW4gdGhlIGRlc2VydHMgb2Ygbm9ydGh3ZXN0ZXJu
|
1663
|
+
IENoaW5hIHVzZXMgd2F0ZXIgcHJvdmlkZWQgYnkgcWFuYXQgKGxvY2FsbHkg
|
1664
|
+
a2FyZXopLiBUdXJmYW4gaGFzIGxvbmcgYmVlbiB0aGUgY2VudGVyIG9mIGEg
|
1665
|
+
ZmVydGlsZSBvYXNpcyBhbmQgYW4gaW1wb3J0YW50IHRyYWRlIGNlbnRlciBh
|
1666
|
+
bG9uZyB0aGUgU2lsayBSb2FkJ3Mgbm9ydGhlcm4gcm91dGUsIGF0IHdoaWNo
|
1667
|
+
IHRpbWUgaXQgd2FzIGFkamFjZW50IHRvIHRoZSBraW5nZG9tcyBvZiBLb3Js
|
1668
|
+
YSBhbmQgS2FyYXNoYWhyIHRvIHRoZSBzb3V0aHdlc3QuIFRoZSBoaXN0b3Jp
|
1669
|
+
Y2FsIHJlY29yZCBvZiB0aGUga2FyZXogc3lzdGVtIGV4dGVuZHMgYmFjayB0
|
1670
|
+
byB0aGUgSGFuIER5bmFzdHkuIFRoZSBUdXJmYW4gV2F0ZXIgTXVzZXVtIChz
|
1671
|
+
ZWUgcGhvdG9zIG9uIHRoaXMgcGFnZSkgaXMgYSBQcm90ZWN0ZWQgQXJlYSBv
|
1672
|
+
ZiB0aGUgUGVvcGxlJ3MgUmVwdWJsaWMgb2YgQ2hpbmEgYmVjYXVzZSBvZiB0
|
1673
|
+
aGUgaW1wb3J0YW5jZSBvZiB0aGUgbG9jYWwga2FyZXogc3lzdGVtIHRvIHRo
|
1674
|
+
ZSBoaXN0b3J5IG9mIHRoZSBhcmVhLiBUaGUgbnVtYmVyIG9mIGthcmV6IHN5
|
1675
|
+
c3RlbXMgaW4gdGhlIGFyZWEgaXMgc2xpZ2h0bHkgYmVsb3cgMSwwMDAgYW5k
|
1676
|
+
IHRoZSB0b3RhbCBsZW5ndGggb2YgdGhlIGNhbmFscyBpcyBhYm91dCA1LDAw
|
1677
|
+
MCBraWxvbWV0ZXJzLlxuXG5JbiBLYXJuYXRha2EsIEluZGlhLCBhIFFhbmF0
|
1678
|
+
LXR5cGUgc3RydWN0dXJlIGNhbGxlZCBTdXJhbmdhIGlzIHVzZWQgdG8gdGFw
|
1679
|
+
IHVuZGVyZ3JvdW5kIHdhdGVyLiBCdXQgdGhlc2UgYXJlIHJhcmVseSBpbiB1
|
1680
|
+
c2UgdGhlc2UgZGF5c1tjaXRhdGlvbiBuZWVkZWRdLlxuXG5JdCBoYXMgYmVl
|
1681
|
+
biBzdWdnZXN0ZWQgdGhhdCBhbGxlZ2VkIHVuZGVyZ3JvdW5kIHRlbXBsZXMg
|
1682
|
+
YXQgR3VhIE1hZGUgaW4gSmF2YSByZWFjaGVkIGJ5IHNoYWZ0cywgaW4gd2hp
|
1683
|
+
Y2ggbWFza3Mgb2YgYSBncmVlbiBtZXRhbCB3ZXJlIGZvdW5kLCBvcmlnaW5h
|
1684
|
+
dGVkIGFzIGEgcWFuYXQuXG5cbkluIHRoZSBtaWRkbGUgb2YgdGhlIHR3ZW50
|
1685
|
+
aWV0aCBjZW50dXJ5LCBpdCBpcyBlc3RpbWF0ZWQgdGhhdCBhcHByb3hpbWF0
|
1686
|
+
ZWx5IDUwLDAwMCBxYW5hdHMgd2VyZSBpbiB1c2UgaW4gSXJhbiwgZWFjaCBj
|
1687
|
+
b21taXNzaW9uZWQgYW5kIG1haW50YWluZWQgYnkgbG9jYWwgdXNlcnMuIE9m
|
1688
|
+
IHRoZXNlIG9ubHkgMjUsMDAwIHJlbWFpbiBpbiB1c2UgYXMgb2YgMTk4MC5c
|
1689
|
+
blxuVGhlIG9sZGVzdCBhbmQgbGFyZ2VzdCBrbm93biBxYW5hdCBpcyBpbiB0
|
1690
|
+
aGUgSXJhbmlhbiBjaXR5IG9mIEdvbmFiYWQgd2hpY2ggYWZ0ZXIgMjcwMCB5
|
1691
|
+
ZWFycyBzdGlsbCBwcm92aWRlcyBkcmlua2luZyBhbmQgYWdyaWN1bHR1cmFs
|
1692
|
+
IHdhdGVyIHRvIG5lYXJseSA0MCwwMDAgcGVvcGxlLiBJdHMgbWFpbiB3ZWxs
|
1693
|
+
IGRlcHRoIGlzIG1vcmUgdGhhbiAzNjAgbWV0ZXJzIGFuZCBpdHMgbGVuZ3Ro
|
1694
|
+
IGlzIDQ1IGtpbG9tZXRlcnMuIFlhemQsIEtob3Jhc2FuIGFuZCBLZXJtYW4g
|
1695
|
+
YXJlIHRoZSBrbm93biB6b25lcyBmb3IgdGhlaXIgZGVwZW5kZW5jZSB3aXRo
|
1696
|
+
IGFuIGV4dGVuc2l2ZSBzeXN0ZW0gb2YgcWFuYXRzLlxuXG5JbiB0cmFkaXRp
|
1697
|
+
b25hbCBQZXJzaWFuIGFyY2hpdGVjdHVyZSwgYSBLYXJpeiAo2qnYp9ix24zY
|
1698
|
+
sikgaXMgYSBzbWFsbCBRYW5hdCwgdXN1YWxseSB3aXRoaW4gYSBuZXR3b3Jr
|
1699
|
+
IGluc2lkZSBhbiB1cmJhbiBzZXR0aW5nLiBLYXJpeiBpcyB3aGF0IGRpc3Ry
|
1700
|
+
aWJ1dGVzIHRoZSBRYW5hdCBpbnRvIGl0cyBmaW5hbCBkZXN0aW5hdGlvbnMu
|
1701
|
+
XG5cbkEgc3VydmV5IG9mIFFhbmF0IHN5c3RlbXMgaW4gdGhlIEt1cmRpc3Rh
|
1702
|
+
biByZWdpb24gb2YgSXJhcSBjb25kdWN0ZWQgYnkgdGhlIERlcGFydG1lbnQg
|
1703
|
+
b2YgR2VvZ3JhcGh5IGF0IE9rbGFob21hIFN0YXRlIFVuaXZlcnNpdHkgKFVT
|
1704
|
+
QSkgb24gYmVoYWxmIG9mIFVORVNDTyBpbiAyMDA5IGZvdW5kIHRoYXQgb3V0
|
1705
|
+
IG9mIDY4MyBrYXJleiBzeXN0ZW1zLCBzb21lIDM4MCB3ZXJlIHN0aWxsIGFj
|
1706
|
+
dGl2ZSBpbiAyMDA0LCBidXQgb25seSAxMTYgaW4gMjAwOS4gUmVhc29ucyBm
|
1707
|
+
b3IgdGhlIGRlY2xpbmUgb2YgcWFuYXRzIGluY2x1ZGUgXCJhYmFuZG9ubWVu
|
1708
|
+
dCBhbmQgbmVnbGVjdFwiIHByZXZpb3VzIHRvIDIwMDQsIFwiZXhjZXNzaXZl
|
1709
|
+
IHB1bXBpbmcgZnJvbSB3ZWxsc1wiIGFuZCwgc2luY2UgMjAwNSwgZHJvdWdo
|
1710
|
+
dC4gV2F0ZXIgc2hvcnRhZ2VzIGFyZSBzYWlkIHRvIGhhdmUgZm9yY2VkIG92
|
1711
|
+
ZXIgMTAwLDAwMCBwZW9wbGUgd2hvIGRlcGVuZGVkIG9uIGthcmV6IHN5c3Rl
|
1712
|
+
bXMgZm9yIHRoZWlyIGxpdmVsaWhvb2RzIHRvIGxlYXZlIHRoZWlyIGhvbWVz
|
1713
|
+
IHNpbmNlIDIwMDUuIFRoZSBzdHVkeSBzYXlzIHRoYXQgYSBzaW5nbGUga2Fy
|
1714
|
+
ZXogaGFzIHRoZSBwb3RlbnRpYWwgdG8gcHJvdmlkZSBlbm91Z2ggaG91c2Vo
|
1715
|
+
b2xkIHdhdGVyIGZvciBuZWFybHkgOSwwMDAgaW5kaXZpZHVhbHMgYW5kIGly
|
1716
|
+
cmlnYXRlIG92ZXIgMjAwIGhlY3RhcmVzIG9mIGZhcm1sYW5kLiBVTkVTQ08g
|
1717
|
+
YW5kIHRoZSBnb3Zlcm5tZW50IG9mIElyYXEgcGxhbiB0byByZWhhYmlsaXRh
|
1718
|
+
dGUgS2FyZXogdGhyb3VnaCBhIEthcmV6IEluaXRpYXRpdmUgZm9yIENvbW11
|
1719
|
+
bml0eSBSZXZpdGFsaXphdGlvbiB0byBiZSBsYXVuY2hlZCBpbiAyMDEwLiBN
|
1720
|
+
b3N0IG9mIHRoZSBrYXJleiBhcmUgaW4gU3VsYXltYW5peWFoIEdvdmVybm9y
|
1721
|
+
YXRlICg4NCUpLiBBIGxhcmdlIG51bWJlciBhcmUgYWxzbyBmb3VuZCBpbiBF
|
1722
|
+
cmJpbCBHb3Zlcm5vcmF0ZSAoMTMlKSwgZXNwZWNpYWxseSBvbiB0aGUgYnJv
|
1723
|
+
YWQgcGxhaW4gYXJvdW5kIGFuZCBpbiBFcmJpbCBjaXR5LlxuXG5BbW9uZyB0
|
1724
|
+
aGUgcWFuYXRzIGJ1aWx0IGluIHRoZSBSb21hbiBFbXBpcmUgd2FzIHBvc3Np
|
1725
|
+
Ymx5IHRoZSBsb25nZXN0IGNvbnRpbnVvdXMgcWFuYXQgZXZlciBidWlsdCwg
|
1726
|
+
dGhlIDk0wqBrbSBsb25nIEdhZGFyYSBBcXVlZHVjdCBpbiBub3J0aGVybiBK
|
1727
|
+
b3JkYW4uIFBhcnRseSBmb2xsb3dpbmcgdGhlIGNvdXJzZSBvZiBhbiBvbGRl
|
1728
|
+
ciBIZWxsZW5pc3RpYyBhcXVlZHVjdCwgZXhjYXZhdGlvbiB3b3JrIGFyZ3Vh
|
1729
|
+
Ymx5IHN0YXJ0ZWQgYWZ0ZXIgYSB2aXNpdCBvZiBlbXBlcm9yIEhhZHJpYW4g
|
1730
|
+
aW4gMTI5LTEzMCBBRC4gVGhlIEdhZGFyYSBBcXVlZHVjdCB3YXMgbmV2ZXIg
|
1731
|
+
cXVpdGUgZmluaXNoZWQsIGFuZCB3YXMgcHV0IGluIHNlcnZpY2Ugb25seSBp
|
1732
|
+
biBzZWN0aW9ucy5cblxuVGhlIENoYWdhaSBkaXN0cmljdCBpcyBpbiB0aGUg
|
1733
|
+
bm9ydGggd2VzdCBjb3JuZXIgb2YgQmFsb2NoaXN0YW4sIFBha2lzdGFuLCBi
|
1734
|
+
b3JkZXJpbmcgd2l0aCBBZmdoYW5pc3RhbiBhbmQgSXJhbi4gUWFuYXRzLCBs
|
1735
|
+
b2NhbGx5IGtub3duIGFzIGthcmV6ZXMsIGFyZSBmb3VuZCBtb3JlIGJyb2Fk
|
1736
|
+
bHkgaW4gdGhpcyByZWdpb24uIFRoZXkgYXJlIHNwcmVhZCBmcm9tIENoYWdo
|
1737
|
+
YWkgZGlzdHJpY3QgYWxsIHRoZSB3YXkgdXAgdG8gWmhvYiBkaXN0cmljdC4g
|
1738
|
+
QSBudW1iZXIgb2YgdGhlbSBhcmUgcHJlc2VudCBpbiBRaWxsYSBBYmR1bGxh
|
1739
|
+
aCBhbmQgUGlzaGluIGRpc3RyaWN0cy4gS2FyZXplcyBhcmUgYWxzbyBleHRl
|
1740
|
+
bnNpdmVseSBmb3VuZCBpbiB0aGUgbmVpZ2hib3VyaW5nIGFyZWFzIG9mIEFm
|
1741
|
+
Z2hhbmlzdGFuIHN1Y2ggYXMgS2FuZGFoYXIuIFRoZSByZW1haW5zIG9mIGth
|
1742
|
+
cmV6ZXMgZm91bmQgaW4gZGlmZmVyZW50IHBhcnRzIG9mIHRoZSBkaXN0cmlj
|
1743
|
+
dCBhcmUgYXR0cmlidXRlZCB0byB0aGUgQXJhYnMuXG5cblFhbmF0cyB3ZXJl
|
1744
|
+
IGZvdW5kIG92ZXIgbXVjaCBvZiBTeXJpYS4gVGhlIHdpZGVzcHJlYWQgaW5z
|
1745
|
+
dGFsbGF0aW9uIG9mIGdyb3VuZHdhdGVyIHB1bXBzIGhhcyBsb3dlcmVkIHRo
|
1746
|
+
ZSB3YXRlciB0YWJsZSBhbmQgcWFuYXQgc3lzdGVtLiBRYW5hdHMgaGF2ZSBn
|
1747
|
+
b25lIGRyeSBhbmQgYmVlbiBhYmFuZG9uZWQgYWNyb3NzIHRoZSBjb3VudHJ5
|
1748
|
+
LlxuXG5JbiBPbWFuIGZyb20gdGhlIElyb24gQWdlIFBlcmlvZCAoZm91bmQg
|
1749
|
+
aW4gU2FsdXQsIEJhdCBhbmQgb3RoZXIgc2l0ZXMpIGEgc3lzdGVtIG9mIHVu
|
1750
|
+
ZGVyZ3JvdW5kIGFxdWVkdWN0cyBjYWxsZWQgRmFsYWogd2VyZSBjb25zdHJ1
|
1751
|
+
Y3RlZCwgYSBzZXJpZXMgb2Ygd2VsbC1saWtlIHZlcnRpY2FsIHNoYWZ0cywg
|
1752
|
+
Y29ubmVjdGVkIGJ5IGdlbnRseSBzbG9waW5nIGhvcml6b250YWwgdHVubmVs
|
1753
|
+
cy4gVGhlcmUgYXJlIHRocmVlIHR5cGVzIG9mIEZhbGFqIERhdWRpICjYr9in
|
1754
|
+
2YjZiNiv2YrYqSl3aXRoIHVuZGVyZ3JvdW5kIGFxdWVkdWN0cyBHaGFpbGkg
|
1755
|
+
KNin2YTYutmK2YTZitipICkgcmVxdWlyaW5nIGEgZGFtIHRvIGNvbGxlY3Qg
|
1756
|
+
dGhlIHdhdGVyIEFpbmkgKNin2YTYudmK2YbZitipICkgd2hvc2Ugc291cmNl
|
1757
|
+
IGlzIGEgd2F0ZXIgc3ByaW5nIFRoZXNlIGVuYWJsZWQgbGFyZ2Ugc2NhbGUg
|
1758
|
+
YWdyaWN1bHR1cmUgdG8gZmxvdXJpc2ggaW4gYSBkcnkgbGFuZCBlbnZpcm9u
|
1759
|
+
bWVudCBBY2NvcmRpbmcgdG8gVU5FU0NPIHNvbWUgMywwMDAgYWZsYWogKHBs
|
1760
|
+
dXJhbCkgb3IgZmFsYWogKHNpbmd1bGFyKSwgYXJlIHN0aWxsIGluIHVzZSBp
|
1761
|
+
biBPbWFuIHRvZGF5LiBOaXp3YSwgdGhlIGZvcm1lciBjYXBpdGFsIGNpdHkg
|
1762
|
+
b2YgT21hbiwgd2FzIGJ1aWx0IGFyb3VuZCBhIGZhbGFqIHdoaWNoIGlzIGlu
|
1763
|
+
IHVzZSB0byB0aGlzIGRheS4gVGhlc2Ugc3lzdGVtcyBkYXRlIHRvIGJlZm9y
|
1764
|
+
ZSB0aGUgSXJvbiBBZ2UgaW4gT21hbiAuIEluIEp1bHkgMjAwNiwgZml2ZSBy
|
1765
|
+
ZXByZXNlbnRhdGl2ZSBleGFtcGxlcyBvZiB0aGlzIGlycmlnYXRpb24gc3lz
|
1766
|
+
dGVtIHdlcmUgaW5zY3JpYmVkIGFzIGEgV29ybGQgSGVyaXRhZ2UgU2l0ZS5c
|
1767
|
+
blxuVGhlIG9hc2lzIG9mIEFsIEFpbiBpbiB0aGUgVW5pdGVkIEFyYWIgRW1p
|
1768
|
+
cmF0ZXMgY29udGludWVzIHRyYWRpdGlvbmFsIGZhbGFqIChxYW5hdCkgaXJy
|
1769
|
+
aWdhdGlvbnMgZm9yIHRoZSBwYWxtLWdyb3ZlcyBhbmQgZ2FyZGVucy5cblxu
|
1770
|
+
VGhlcmUgYXJlIDQgbWFpbiBvYXNlcyBpbiB0aGUgRWd5cHRpYW4gZGVzZXJ0
|
1771
|
+
LiBUaGUgS2hhcmdhIE9hc2lzIGlzIG9uZSBvZiB0aGVtIHdoaWNoIGhhcyBi
|
1772
|
+
ZWVuIGV4dGVuc2l2ZWx5IHN0dWRpZWQuIEFzIGVhcmx5IGFzIHRoZSBzZWNv
|
1773
|
+
bmQgaGFsZiBvZiB0aGUgNXRoIGNlbnR1cnkgQkMgdGhlcmUgaXMgZXZpZGVu
|
1774
|
+
Y2UgdGhhdCB3YXRlciB3YXMgYmVpbmcgdXNlZCB2aWEgcWFuYXRzLiBUaGUg
|
1775
|
+
cWFuYXQgaXMgZXhjYXZhdGVkIHRocm91Z2ggd2F0ZXItYmVhcmluZyBzYW5k
|
1776
|
+
c3RvbmUgcm9jayB3aGljaCBzZWVwcyBpbnRvIHRoZSBjaGFubmVsIHRvIGNv
|
1777
|
+
bGxlY3QgaW4gYSBiYXNpbiBiZWhpbmQgYSBzbWFsbCBkYW0gYXQgdGhlIGVu
|
1778
|
+
ZC4gVGhlIHdpZHRoIGlzIGFwcHJveGltYXRlbHkgNjDCoGNtLCBidXQgdGhl
|
1779
|
+
IGhlaWdodCByYW5nZXMgZnJvbSA1IHRvIDkgbWV0ZXJzOyBpdCBpcyBsaWtl
|
1780
|
+
bHkgdGhhdCB0aGUgcWFuYXQgd2FzIGRlZXBlbmVkIHRvIGVuaGFuY2Ugc2Vl
|
1781
|
+
cGFnZSB3aGVuIHRoZSB3YXRlciB0YWJsZSBkcm9wcGVkIChhcyBpcyBhbHNv
|
1782
|
+
IHNlZW4gaW4gSXJhbikuIEZyb20gdGhlcmUgdGhlIHdhdGVyIHdhcyB1c2Vk
|
1783
|
+
IHRvIGlycmlnYXRlIGZpZWxkcy5cblxuVGhlcmUgaXMgYW5vdGhlciBpbnN0
|
1784
|
+
cnVjdGl2ZSBzdHJ1Y3R1cmUgbG9jYXRlZCBhdCB0aGUgS2hhcmdhIE9hc2lz
|
1785
|
+
LiBBIHdlbGwgd2hpY2ggYXBwYXJlbnRseSBkcmllZCB1cCB3YXMgaW1wcm92
|
1786
|
+
ZWQgYnkgZHJpdmluZyBhIHNpZGUgc2hhZnQgdGhyb3VnaCB0aGUgZWFzaWx5
|
1787
|
+
IHBlbmV0cmF0ZWQgc2FuZHN0b25lIChwcmVzdW1hYmx5IGluIHRoZSBkaXJl
|
1788
|
+
Y3Rpb24gb2YgZ3JlYXRlc3Qgd2F0ZXIgc2VlcGFnZSkgaW50byB0aGUgaGls
|
1789
|
+
bCBvZiBBeW4tTWFuw6J3w65yIHRvIGFsbG93IGNvbGxlY3Rpb24gb2YgYWRk
|
1790
|
+
aXRpb25hbCB3YXRlci4gQWZ0ZXIgdGhpcyBzaWRlIHNoYWZ0IGhhZCBiZWVu
|
1791
|
+
IGV4dGVuZGVkLCBhbm90aGVyIHZlcnRpY2FsIHNoYWZ0IHdhcyBkcml2ZW4g
|
1792
|
+
dG8gaW50ZXJzZWN0IHRoZSBzaWRlIHNoYWZ0LiBTaWRlIGNoYW1iZXJzIHdl
|
1793
|
+
cmUgYnVpbHQgYW5kIGhvbGVzIGJvcmVkIGludG8gdGhlIHJvY2vigJRwcmVz
|
1794
|
+
dW1hYmx5IGF0IHBvaW50cyB3aGVyZSB3YXRlciBzZWVwZWQgZnJvbSB0aGUg
|
1795
|
+
cm9ja3PigJRhcmUgZXZpZGVudC5cblxuRGF2aWQgTWF0dGluZ2xleSByZXBv
|
1796
|
+
cnRzIGZvZ2dhcmEgZXh0ZW5kaW5nIGZvciBodW5kcmVkcyBvZiBtaWxlcyBp
|
1797
|
+
biB0aGUgR2FyYW1hbnRlcyBhcmVhIG5lYXIgSmFybWEgaW4gTGlieWE6IFwi
|
1798
|
+
VGhlIGNoYW5uZWxzIHdlcmUgZ2VuZXJhbGx5IHZlcnkgbmFycm93IC0gbGVz
|
1799
|
+
cyB0aGFuIDIgZmVldCB3aWRlIGFuZCA1IGhpZ2ggLSBidXQgc29tZSB3ZXJl
|
1800
|
+
IHNldmVyYWwgbWlsZXMgbG9uZywgYW5kIGluIHRvdGFsIHNvbWUgNjAwIGZv
|
1801
|
+
Z2dhcmEgZXh0ZW5kZWQgZm9yIGh1bmRyZWRzIG9mIG1pbGVzIHVuZGVyZ3Jv
|
1802
|
+
dW5kLiBUaGUgY2hhbm5lbHMgd2VyZSBkdWcgb3V0IGFuZCBtYWludGFpbmVk
|
1803
|
+
IHVzaW5nIGEgc2VyaWVzIG9mIHJlZ3VsYXJseS1zcGFjZWQgdmVydGljYWwg
|
1804
|
+
c2hhZnRzLCBvbmUgZXZlcnkgMzAgZmVldCBvciBzbywgMTAwLDAwMCBpbiB0
|
1805
|
+
b3RhbCwgYXZlcmFnaW5nIDMwIGZlZXQgaW4gZGVwdGgsIGJ1dCBzb21ldGlt
|
1806
|
+
ZXMgcmVhY2hpbmcgMTMwLlwiIChcIlRoZSAxNTMgQ2x1YiBOZXdzbGV0dGVy
|
1807
|
+
XCIsIEp1bHkgMjAwNyBOby4gMTEyLCBwcC7CoDE04oCTMTk7IHJlcHJpbnRl
|
1808
|
+
ZCBmcm9tIEN1cnJlbnQgd29ybGQgQXJjaGFlb2xvZ3kuXG5cblRoZSBmb2dn
|
1809
|
+
YXJhIHdhdGVyIG1hbmFnZW1lbnQgc3lzdGVtIGluIFR1bmlzaWEsIHVzZWQg
|
1810
|
+
dG8gY3JlYXRlIG9hc2VzLCBpcyBzaW1pbGFyIHRvIHRoYXQgb2YgdGhlIEly
|
1811
|
+
YW5pYW4gcWFuYXQuIFRoZSBmb2dnYXJhIGlzIGR1ZyBpbnRvIHRoZSBmb290
|
1812
|
+
aGlsbHMgb2YgYSBmYWlybHkgc3RlZXAgbW91bnRhaW4gcmFuZ2Ugc3VjaCBh
|
1813
|
+
cyB0aGUgZWFzdGVybiByYW5nZXMgb2YgdGhlIEF0bGFzIG1vdW50YWlucy4g
|
1814
|
+
UmFpbmZhbGwgaW4gdGhlIG1vdW50YWlucyBlbnRlcnMgdGhlIGFxdWlmZXIg
|
1815
|
+
YW5kIG1vdmVzIHRvd2FyZCB0aGUgU2FoYXJhbiByZWdpb24gdG8gdGhlIHNv
|
1816
|
+
dXRoLiBUaGUgZm9nZ2FyYSwgMSB0byAzwqBrbSBpbiBsZW5ndGgsIHBlbmV0
|
1817
|
+
cmF0ZXMgdGhlIGFxdWlmZXIgYW5kIGNvbGxlY3RzIHdhdGVyLiBGYW1pbGll
|
1818
|
+
cyBtYWludGFpbiB0aGUgZm9nZ2FyYSBhbmQgb3duIHRoZSBsYW5kIGl0IGly
|
1819
|
+
cmlnYXRlcyBvdmVyIGEgdGVuIG1ldGVyIHdpZGUsIHdpdGggd2lkdGggb25s
|
1820
|
+
eSBieSB0aGUgc2l6ZSBvZiBwbG90IHRoYXQgdGhlIGF2YWlsYWJsZSB3YXRl
|
1821
|
+
ciB3aWxsIGlycmlnYXRlLlxuXG5RYW5hdHMgKGRlc2lnbmF0ZWQgZm9nZ2Fy
|
1822
|
+
YXMgaW4gQWxnZXJpYSkgYXJlIHRoZSBzb3VyY2Ugb2Ygd2F0ZXIgZm9yIGly
|
1823
|
+
cmlnYXRpb24gYXQgbGFyZ2Ugb2FzZXMgbGlrZSB0aGF0IGF0IEdvdXJhcmEu
|
1824
|
+
IFRoZSBmb2dnYXJhcyBhcmUgYWxzbyBmb3VuZCBhdCBUb3VhdCAoYW4gYXJl
|
1825
|
+
YSBvZiBBZHJhciAyMDDCoGttIGZyb20gR291cmFyYSkuIFRoZSBsZW5ndGgg
|
1826
|
+
b2YgdGhlIGZvZ2dhcmFzIGluIHRoaXMgcmVnaW9uIGlzIGVzdGltYXRlZCB0
|
1827
|
+
byBiZSB0aG91c2FuZHMgb2Yga2lsb21ldGVycy5cblxuQWx0aG91Z2ggc291
|
1828
|
+
cmNlcyBzdWdnZXN0IHRoYXQgdGhlIGZvZ2dhcmFzIG1heSBoYXZlIGJlZW4g
|
1829
|
+
aW4gdXNlIGFzIGVhcmx5IGFzIDIwMCBBRCwgdGhleSB3ZXJlIGNsZWFybHkg
|
1830
|
+
aW4gdXNlIGJ5IHRoZSAxMXRoIGNlbnR1cnkgYWZ0ZXIgdGhlIEFyYWJzIHRv
|
1831
|
+
b2sgcG9zc2Vzc2lvbiBvZiB0aGUgb2FzZXMgaW4gdGhlIDEwdGggY2VudHVy
|
1832
|
+
eSBhbmQgdGhlIHJlc2lkZW50cyBlbWJyYWNlZCBJc2xhbS5cblxuVGhlIHdh
|
1833
|
+
dGVyIGlzIG1ldGVyZWQgdG8gdGhlIHZhcmlvdXMgdXNlcnMgdGhyb3VnaCB0
|
1834
|
+
aGUgdXNlIG9mIGRpc3RyaWJ1dGlvbiB3ZWlycyB3aGljaCBtZXRlciBmbG93
|
1835
|
+
IHRvIHRoZSB2YXJpb3VzIGNhbmFscywgZWFjaCBmb3IgYSBzZXBhcmF0ZSB1
|
1836
|
+
c2VyLlxuXG5UaGUgaHVtaWRpdHkgb2YgdGhlIG9hc2VzIGlzIGFsc28gdXNl
|
1837
|
+
ZCB0byBzdXBwbGVtZW50IHRoZSB3YXRlciBzdXBwbHkgdG8gdGhlIGZvZ2dh
|
1838
|
+
cmEuIFRoZSB0ZW1wZXJhdHVyZSBncmFkaWVudCBpbiB0aGUgdmVydGljYWwg
|
1839
|
+
c2hhZnRzIGNhdXNlcyBhaXIgdG8gcmlzZSBieSBuYXR1cmFsIGNvbnZlY3Rp
|
1840
|
+
b24sIGNhdXNpbmcgYSBkcmFmdCB0byBlbnRlciB0aGUgZm9nZ2FyYS4gVGhl
|
1841
|
+
IG1vaXN0IGFpciBvZiB0aGUgYWdyaWN1bHR1cmFsIGFyZWEgaXMgZHJhd24g
|
1842
|
+
aW50byB0aGUgZm9nZ2FyYSBpbiB0aGUgb3Bwb3NpdGUgZGlyZWN0aW9uIHRv
|
1843
|
+
IHRoZSB3YXRlciBydW4tb2ZmLiBJbiB0aGUgZm9nZ2FyYSBpdCBjb25kZW5z
|
1844
|
+
ZXMgb24gdGhlIHR1bm5lbCB3YWxscyBhbmQgdGhlIGFpciBwYXNzZWQgb3V0
|
1845
|
+
IG9mIHRoZSB2ZXJ0aWNhbCBzaGFmdHMuIFRoaXMgY29uZGVuc2VkIG1vaXN0
|
1846
|
+
dXJlIGlzIGF2YWlsYWJsZSBmb3IgcmV1c2UuXG5cbkluIHNvdXRoZXJuIE1v
|
1847
|
+
cm9jY28gdGhlIHFhbmF0IChsb2NhbGx5IGtoZXR0YXJhKSBpcyBhbHNvIHVz
|
1848
|
+
ZWQuIE9uIHRoZSBtYXJnaW5zIG9mIHRoZSBTYWhhcmEgRGVzZXJ0LCB0aGUg
|
1849
|
+
aXNvbGF0ZWQgb2FzZXMgb2YgdGhlIERyYWEgUml2ZXIgdmFsbGV5IGFuZCBU
|
1850
|
+
YWZpbGFsdCBoYXZlIHJlbGllZCBvbiBxYW5hdCB3YXRlciBmb3IgaXJyaWdh
|
1851
|
+
dGlvbiBzaW5jZSB0aGUgbGF0ZS0xNHRoIGNlbnR1cnkuIEluIE1hcnJha2Vj
|
1852
|
+
aCBhbmQgdGhlIEhhb3V6IHBsYWluIHRoZSBxYW5hdHMgaGF2ZSBiZWVuIGFi
|
1853
|
+
YW5kb25lZCBzaW5jZSB0aGUgZWFybHkgMTk3MHMgYXMgdGhleSd2ZSBkcmll
|
1854
|
+
ZDsgaW4gdGhlIFRhZmlsYWZ0IGFyZWEgaGFsZiBvZiB0aGUgNDAwIGtoZXR0
|
1855
|
+
YXJhcyBhcmUgc3RpbGwgaW4gdXNlLiBUaGUgSGFzc2FuIEFkYWhraWwgRGFt
|
1856
|
+
J3MgaW1wYWN0IG9uIGxvY2FsIHdhdGVyIHRhYmxlcyBpcyBzYWlkIHRvIGJl
|
1857
|
+
IG9uZSBvZiB0aGUgbWFueSByZWFzb25zIGdpdmVuIGZvciB0aGUgbG9zcyBv
|
1858
|
+
ZiBoYWxmIG9mIHRoZSBraGV0dGFyYS5cblxuVGhlIGJsYWNrIGJlcmJlcnMg
|
1859
|
+
KGhhcmF0aW4pIG9mIHRoZSBzb3V0aCB3ZXJlIHRoZSBoZXJlZGl0YXJ5IGNs
|
1860
|
+
YXNzIG9mIHFhbmF0IGRpZ2dlcnMgaW4gTW9yb2NjbyB3aG8gYnVpbGQgYW5k
|
1861
|
+
IHJlcGFpciB0aGVzZSBzeXN0ZW1zLiBUaGVpciB3b3JrIHdhcyBoYXphcmRv
|
1862
|
+
dXMuXG5cblFhbmF0cyBoYXZlIHByZXNlcnZlZCBpbiBBcm1lbmlhIGluIHRo
|
1863
|
+
ZSBjb21tdW5pdHkgb2YgU2h2YW5pZHpvciwgaW4gdGhlIHNvdXRoZXJuIHBy
|
1864
|
+
b3ZpbmNlIG9mIFN5dW5paywgYm9yZGVyaW5nIHdpdGggSXJhbi4gUWFuYXRz
|
1865
|
+
IGFyZSBuYW1lZCBrYWhyZXplcyBpbiBBcm1lbmlhbi4gVGhlcmUgYXJlIDUg
|
1866
|
+
a2FocmV6ZXMgaW4gU2h2YW5pZHpvci4gRm91ciBvZiB0aGVtIHdlcmUgY29u
|
1867
|
+
c3RydWN0ZWQgaW4gWElJLVhJVmMsIGV2ZW4gYmVmb3JlIHRoZSB2aWxsYWdl
|
1868
|
+
IHdhcyBmb3VuZGVkLiBUaGUgZmlmdGgga2FocmV6IHdhcyBjb25zdHJ1Y3Rl
|
1869
|
+
ZCBpbiAyMDA1LiBQb3RhYmxlIHdhdGVyIHJ1bnMgdGhyb3VnaCBJLCBJSSBh
|
1870
|
+
bmQgViBrYWhyZXpzLiBLYWhyZXogSUlJIGFuZCBJViBhcmUgaW4gcXVpdGUg
|
1871
|
+
cG9vciBjb25kaXRpb24uIEluIHN1bW1lciwgZXNwZWNpYWxseSBpbiBKdWx5
|
1872
|
+
IGFuZCBBdWd1c3QsIHRoZSBhbW91bnQgb2Ygd2F0ZXIgcmVhY2hlcyBpdHMg
|
1873
|
+
bWluaW11bSwgY3JlYXRpbmcgY3JpdGljYWwgc2l0dWF0aW9uIGluIHRoZSB3
|
1874
|
+
YXRlciBzdXBwbHkgc3lzdGVtLiBTdGlsbCwga2FocmV6ZXMgYXJlIHRoZSBt
|
1875
|
+
YWluIHNvdXJjZSBvZiBwb3RhYmxlIGFuZCBpcnJpZ2F0aW9uIHdhdGVyIGZv
|
1876
|
+
ciB0aGUgY29tbXVuaXR5LlxuXG5UaGUgNTY1MyBtIGxvbmcgQ2xhdWRpdXMg
|
1877
|
+
VHVubmVsLCBtZWFudCBmb3IgZHJhaW5pbmcgdGhlIGxhcmdlc3QgSXRhbGlh
|
1878
|
+
biBpbmxhbmQgd2F0ZXIsIEZ1Y2luZSBMYWtlLCB3YXMgY29uc3RydWN0ZWQg
|
1879
|
+
dXNpbmcgdGhlIHFhbmF0IHRlY2huaXF1ZS4gSXQgZmVhdHVyZWQgc2hhZnRz
|
1880
|
+
IHVwIHRvIDEyMiBtIGRlZXAuIFRoZSBlbnRpcmUgYW5jaWVudCB0b3duIG9m
|
1881
|
+
IFBhbGVybW8gaW4gU2ljaWx5IHdhcyBlcXVpcHBlZCB3aXRoIGEgaHVnZSBx
|
1882
|
+
YW5hdCBzeXN0ZW0gYnVpbHQgZHVyaW5nIHRoZSBBcmFiIHBlcmlvZCAoODI3
|
1883
|
+
4oCTMTA3MikuIE1hbnkgb2YgdGhlIHFhbmF0IGFyZSBub3cgbWFwcGVkIGFu
|
1884
|
+
ZCBzb21lIGNhbiBiZSB2aXNpdGVkLiBUaGUgZmFtb3VzIFNjaXJvY2NvIHJv
|
1885
|
+
b20gaGFzIGFuIGFpci1jb25kaXRpb25pbmcgc3lzdGVtIGNvb2xlZCBieSB0
|
1886
|
+
aGUgZmxvdyBvZiB3YXRlciBpbiBhIHFhbmF0IGFuZCBhIFwid2luZCB0b3dl
|
1887
|
+
clwiLCBhIHN0cnVjdHVyZSBhYmxlIHRvIGNhdGNoIHRoZSB3aW5kIGFuZCBk
|
1888
|
+
aXJlY3QgaXQgaW50byB0aGUgcm9vbS5cblxuVGhlIFJhc2NocMOrdHplciBu
|
1889
|
+
ZWFyIEhlbG1zYW5nZSBpbiBzb3V0aGVybiBMdXhlbWJvdXJnIGlzIGEgcGFy
|
1890
|
+
dGljdWxhcmx5IHdlbGwgcHJlc2VydmVkIGV4YW1wbGUgb2YgYSBSb21hbiBx
|
1891
|
+
YW5hdC4gSXQgaXMgcHJvYmFibHkgdGhlIG1vc3QgZXh0ZW5zaXZlIHN5c3Rl
|
1892
|
+
bSBvZiBpdHMga2luZCBub3J0aCBvZiB0aGUgQWxwcy4gVG8gZGF0ZSBzb21l
|
1893
|
+
IDMzMCBtIG9mIHRoZSB0b3RhbCB0dW5uZWwgbGVuZ3RoIG9mIDYwMCBtIGhh
|
1894
|
+
dmUgYmVlbiBleHBsb3JlZC4gVGhpcnRlZW4gb2YgdGhlIDIwIHRvIDI1IHNo
|
1895
|
+
YWZ0cyBoYXZlIGJlZW4gaW52ZXN0aWdhdGVkLiBUaGUgcWFuYXQgYXBwZWFy
|
1896
|
+
cyB0byBoYXZlIHByb3ZpZGVkIHdhdGVyIGZvciBhIGxhcmdlIFJvbWFuIHZp
|
1897
|
+
bGxhIG9uIHRoZSBzbG9wZXMgb2YgdGhlIEFsemV0dGUgdmFsbGV5LiBJdCB3
|
1898
|
+
YXMgYnVpbHQgZHVyaW5nIHRoZSBHYWxsby1Sb21hbiBwZXJpb2QsIHByb2Jh
|
1899
|
+
Ymx5IGFyb3VuZCB0aGUgeWVhciAxNTAgYW5kIGZ1bmN0aW9uZWQgZm9yIGFi
|
1900
|
+
b3V0IDEyMCB5ZWFycyB0aGVyZWFmdGVyLlxuXG5UaGVyZSBhcmUgc3RpbGwg
|
1901
|
+
bWFueSBleGFtcGxlcyBvZiBnYWxlcmlhIG9yIHFhbmF0IHN5c3RlbXMgaW4g
|
1902
|
+
U3BhaW4sIG1vc3QgbGlrZWx5IGJyb3VnaHQgdG8gdGhlIGFyZWEgYnkgdGhl
|
1903
|
+
IE1vb3JzIGR1cmluZyB0aGVpciBvY2N1cGF0aW9uIG9mIHRoZSBJYmVyaWFu
|
1904
|
+
IHBlbmluc3VsYS4gVHVycmlsbGFzIGluIEFuZGFsdXNpYSBvbiB0aGUgbm9y
|
1905
|
+
dGggZmFjaW5nIHNsb3BlcyBvZiB0aGUgU2llcnJhIGRlIEFsaGFtaWxsYSBo
|
1906
|
+
YXMgZXZpZGVuY2Ugb2YgYSBxYW5hdCBzeXN0ZW0uIEdyYW5hZGEgaXMgYW5v
|
1907
|
+
dGhlciBzaXRlIHdpdGggYW4gZXh0ZW5zaXZlIHFhbmF0IHN5c3RlbS5cblxu
|
1908
|
+
UWFuYXRzIGluIHRoZSBBbWVyaWNhcywgdXN1YWxseSByZWZlcnJlZCB0byBh
|
1909
|
+
cyBmaWx0cmF0aW9uIGdhbGxlcmllcywgY2FuIGJlIGZvdW5kIGluIHRoZSBO
|
1910
|
+
YXpjYSByZWdpb24gb2YgUGVydSBhbmQgaW4gbm9ydGhlcm4gQ2hpbGUuIFRo
|
1911
|
+
ZSBTcGFuaXNoIGludHJvZHVjZWQgcWFuYXRzIGludG8gTWV4aWNvIGluIDE1
|
1912
|
+
MjAgQUQuIiwibG9uZ2l0dWRlIjoiNTcuNTM2MDU2IiwibGF0aXR1ZGUiOiIy
|
1913
|
+
Mi45OTg4ODkiLCJ0aXRsZSI6IkFmbGFqIElycmlnYXRpb24gU3lzdGVtcyBv
|
1914
|
+
ZiBPbWFuIn0seyJ1cGRhdGVkX2F0IjoiMjAxMi0wOC0yMFQxMjo0NDozOCsw
|
1915
|
+
MjowMCIsImNyZWF0ZWRfYXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4KzAyOjAw
|
1916
|
+
IiwiY2FydG9kYl9pZCI6MiwidGhlX2dlb20iOiJ7XCJ0eXBlXCI6XCJQb2lu
|
1917
|
+
dFwiLFwiY29vcmRpbmF0ZXNcIjpbLTcuNzk4ODg5LDQxLjEwMTY2N119Iiwi
|
1918
|
+
d2hzX3NvdXJjZV9wYWdlIjoiaHR0cDovL3doYy51bmVzY28ub3JnL2VuL2xp
|
1919
|
+
c3QvMTA0NiIsImRhdGVfb2ZfaW5zY3JpcHRpb24iOiIyMDAxIiwid2hzX3Np
|
1920
|
+
dGVfaWQiOiIxMDQ2IiwiY291bnRyeSI6IlBvcnR1Z2FsIiwibmFtZSI6IkFs
|
1921
|
+
dG8gRG91cm8gV2luZSBSZWdpb24iLCJzaXplIjoiMjQ2MDAwMDAwLjAiLCJp
|
1922
|
+
c29fY29kZSI6IlBUIiwiY3JpdGVyaWEiOiJbaWlpXSxbaXZdLFt2XSIsImNv
|
1923
|
+
bW1lbnRzIjoiIiwid2lraXBlZGlhX2xpbmsiOiJodHRwOi8vZW4ud2lraXBl
|
1924
|
+
ZGlhLm9yZy93aWtpL0RvdXJvX0RPQyIsImV4dGVybmFsX2xpbmtzIjoiIiwi
|
1925
|
+
ZW5kYW5nZXJlZF95ZWFyIjoiIiwiZWRpdGVkX3JlZ2lvbiI6IkRvdXJvIFJl
|
1926
|
+
Z2lvbiwgVHLDg8Khcy1vcy1Nb250ZXMgZSBBbHRvIERvdXJvIiwiZW5kYW5n
|
1927
|
+
ZXJlZF9yZWFzb24iOiIiLCJ0eXBlIjoiY3VsdHVyYWwiLCJyZWdpb24iOiJE
|
1928
|
+
b3VybyBSZWdpb24sIFRyw4PCoXMtb3MtTW9udGVzIGUgQWx0byBEb3VybyIs
|
1929
|
+
ImRlc2NyaXB0aW9uIjoiIiwibG9uZ2l0dWRlIjoiLTcuNzk4ODg5IiwibGF0
|
1930
|
+
aXR1ZGUiOiI0MS4xMDE2NjciLCJ0aXRsZSI6IkFsdG8gRG91cm8gV2luZSBS
|
1931
|
+
ZWdpb24ifSx7InVwZGF0ZWRfYXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4KzAy
|
1932
|
+
OjAwIiwiY3JlYXRlZF9hdCI6IjIwMTItMDgtMjBUMTI6NDQ6MzgrMDI6MDAi
|
1933
|
+
LCJjYXJ0b2RiX2lkIjozLCJ0aGVfZ2VvbSI6IntcInR5cGVcIjpcIlBvaW50
|
1934
|
+
XCIsXCJjb29yZGluYXRlc1wiOlsyLjMwMTY2Nyw0OS44OTVdfSIsIndoc19z
|
1935
|
+
b3VyY2VfcGFnZSI6Imh0dHA6Ly93aGMudW5lc2NvLm9yZy9lbi9saXN0LzE2
|
1936
|
+
MiIsImRhdGVfb2ZfaW5zY3JpcHRpb24iOiIxOTgxIiwid2hzX3NpdGVfaWQi
|
1937
|
+
OiIxNjIiLCJjb3VudHJ5IjoiRnJhbmNlIiwibmFtZSI6IkFtaWVucyBDYXRo
|
1938
|
+
ZWRyYWwiLCJzaXplIjoiODYwMC4wIiwiaXNvX2NvZGUiOiJGUiIsImNyaXRl
|
1939
|
+
cmlhIjoiW2ldLFtpaV0iLCJjb21tZW50cyI6IiIsIndpa2lwZWRpYV9saW5r
|
1940
|
+
IjoiaHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9BbWllbnNfQ2F0aGVk
|
1941
|
+
cmFsIiwiZXh0ZXJuYWxfbGlua3MiOiJbQW1pZW5zIENhdGhlZHJhbC58aHR0
|
1942
|
+
cDovL3d3dy5icml0YW5uaWNhLmNvbS9lYi9hcnRpY2xlLTkxMDYyMzFdI1tB
|
1943
|
+
bWllbnMgQ2F0aGVkcmFsIC0gV29ybGQgSGVyaXRhZ2UgU2l0ZXxodHRwOi8v
|
1944
|
+
d3d3LndvcmxkaGVyaXRhZ2VzaXRlLm9yZy9zaXRlcy9hbWllbnMuaHRtbF0j
|
1945
|
+
WzM2MMKwIHBob3RvcyBvZiB0aGUgY2F0aGVkcmFsfGh0dHA6Ly93d3cud29y
|
1946
|
+
bGQtaGVyaXRhZ2UtdG91ci5vcmcvZXVyb3BlL2ZyYW5jZS9hbWllbnMvbWFw
|
1947
|
+
Lmh0bWxdI1tPdXRzdGFuZGluZyBwaG90b3Mgb2YgdGhlIGNhdGhlZHJhbHxo
|
1948
|
+
dHRwOi8vd3d3LnBiYXNlLmNvbS9lcmljZGVwYXJpcy9jYXRoZWRyYWxlX2Rl
|
1949
|
+
X2FtaWVuc10jW1Bob3Rvc3xodHRwOi8va3Vuc3RoaXN0b3JpZS5jb20vZ2Fs
|
1950
|
+
bGVyaS9pbmRleC5waHA/YWxidW09RnJhbmtyaWtlJTJGQW1pZW5zJnNvcnRi
|
1951
|
+
eT1uYW1lJm9yZGVyPWFzY10iLCJlbmRhbmdlcmVkX3llYXIiOiIiLCJlZGl0
|
1952
|
+
ZWRfcmVnaW9uIjoiRGVwYXJ0bWVudCBvZiBTb21tZSwgUGljYXJkaWUgUmVn
|
1953
|
+
aW9uIiwiZW5kYW5nZXJlZF9yZWFzb24iOiIiLCJ0eXBlIjoiY3VsdHVyYWwi
|
1954
|
+
LCJyZWdpb24iOiJEZXBhcnRtZW50IG9mIFNvbW1lLCBQaWNhcmRpZSBSZWdp
|
1955
|
+
b24iLCJkZXNjcmlwdGlvbiI6IlRoZSBDYXRoZWRyYWwgb2YgT3VyIExhZHkg
|
1956
|
+
b2YgQW1pZW5zIChGcmVuY2g6IENhdGjDqWRyYWxlIE5vdHJlLURhbWUgZCdB
|
1957
|
+
bWllbnMpLCBvciBzaW1wbHkgQW1pZW5zIENhdGhlZHJhbCwgaXMgYSBSb21h
|
1958
|
+
biBDYXRob2xpYyBjYXRoZWRyYWwgYW5kIHNlYXQgb2YgdGhlIEJpc2hvcCBv
|
1959
|
+
ZiBBbWllbnMsIEplYW4tTHVjIEJvdWlsbGVyZXQuIFRoZSBjYXRoZWRyYWwg
|
1960
|
+
aXMgdGhlIHRhbGxlc3QgY29tcGxldGUgY2F0aGVkcmFsIGluIEZyYW5jZSwg
|
1961
|
+
d2l0aCB0aGUgZ3JlYXRlc3QgaW50ZXJpb3Igdm9sdW1lIChlc3RpbWF0ZWQg
|
1962
|
+
YXQgMjAwLDAwMCBtwrMpLiBUaGUgdmF1bHRzIG9mIHRoZSBuYXZlIGFyZSA0
|
1963
|
+
Mi4zMMKgbSBoaWdoLCB0aGUgdGFsbGVzdCBuYXZlIHZhdWx0cyBpbiBhbnkg
|
1964
|
+
Y29tcGxldGVkIEZyZW5jaCBjYXRoZWRyYWwsIGFuZCBzdXJwYXNzZWQgb25s
|
1965
|
+
eSBieSB0aGUgaW5jb21wbGV0ZSBCZWF1dmFpcyBDYXRoZWRyYWwuIFRoaXMg
|
1966
|
+
bW9udW1lbnRhbCBjYXRoZWRyYWwgaXMgbG9jYXRlZCBpbiBBbWllbnMsIHRo
|
1967
|
+
ZSBjaGllZiBjaXR5IG9mIFBpY2FyZHksIGluIHRoZSBTb21tZSBSaXZlciB2
|
1968
|
+
YWxsZXkgYSBsaXR0bGUgb3ZlciAxMDDCoGtpbG9tZXRlcnMgbm9ydGggb2Yg
|
1969
|
+
UGFyaXMuXG5cbk5vdHJlLURhbWUgZCdBbWllbnMgaGFzIGJlZW4gbGlzdGVk
|
1970
|
+
IGFzIGEgVU5FU0NPIFdvcmxkIEhlcml0YWdlIFNpdGUgc2luY2UgMTk4MSBh
|
1971
|
+
bmQgd2FzIHByb2ZpbGVkIGluIGEgUEJTIGRvY3VtZW50YXJ5LlxuXG5UaGUg
|
1972
|
+
bGFjayBvZiBkb2N1bWVudGF0aW9uIGNvbmNlcm5pbmcgdGhlIGNvbnN0cnVj
|
1973
|
+
dGlvbiBvZiB0aGUgR290aGljIGNhdGhlZHJhbCBtYXkgYmUgaW4gcGFydCB0
|
1974
|
+
aGUgcmVzdWx0IG9mIGZpcmVzIHRoYXQgZGVzdHJveWVkIHRoZSBjaGFwdGVy
|
1975
|
+
IGFyY2hpdmVzIGluIDEyMTggYW5kIGFnYWluIGluIDEyNTjigJRhIGZpcmUg
|
1976
|
+
dGhhdCBkYW1hZ2VkIHRoZSBjYXRoZWRyYWwgaXRzZWxmLiBCaXNob3AgRXZy
|
1977
|
+
YXJkIGRlIEZvdWlsbHkgaW5pdGlhdGVkIHdvcmsgb24gdGhlIGNhdGhlZHJh
|
1978
|
+
bCBpbiAxMjIwLiBSb2JlcnQgZGUgTHV6YXJjaGVzIHdhcyB0aGUgYXJjaGl0
|
1979
|
+
ZWN0IHVudGlsIDEyMjgsIGFuZCB3YXMgZm9sbG93ZWQgYnkgVGhvbWFzIGRl
|
1980
|
+
IENvcm1vbnQgdW50aWwgMTI1OC4gSGlzIHNvbiwgUmVuYXVkIGRlIENvcm1v
|
1981
|
+
bnQsIGFjdGVkIGFzIHRoZSBhcmNoaXRlY3QgdW50aWwgMTI4OC4gVGhlIGNo
|
1982
|
+
cm9uaWNsZSBvZiBDb3JiaWUgZ2l2ZXMgYSBjb21wbGV0aW9uIGRhdGUgZm9y
|
1983
|
+
IHRoZSBjYXRoZWRyYWwgb2YgMTI2Ni4gRmluaXNoaW5nIHdvcmtzIGNvbnRp
|
1984
|
+
bnVlZCwgaG93ZXZlci4gSXRzIGZsb29ycyBhcmUgY292ZXJlZCB3aXRoIGEg
|
1985
|
+
bnVtYmVyIG9mIGRlc2lnbnMsIHN1Y2ggYXMgdGhlIHN3YXN0aWthICh0byBz
|
1986
|
+
eW1ib2xpemUgSmVzdXMnIHRyaXVtcGggb3ZlciBkZWF0aCkuIFRoZSBsYWJ5
|
1987
|
+
cmludGggd2FzIGluc3RhbGxlZCBpbiAxMjg4LiBUaGUgY2F0aGVkcmFsIGNv
|
1988
|
+
bnRhaW5zIHRoZSBhbGxlZ2VkIGhlYWQgb2YgSm9obiB0aGUgQmFwdGlzdCwg
|
1989
|
+
YSByZWxpYyBicm91Z2h0IGZyb20gQ29uc3RhbnRpbm9wbGUgYnkgV2FsbG9u
|
1990
|
+
IGRlIFNhcnRvbiBhcyBoZSB3YXMgcmV0dXJuaW5nIGZyb20gdGhlIEZvdXJ0
|
1991
|
+
aCBDcnVzYWRlLlxuXG5UaGUgY29uc3RydWN0aW9uIG9mIHRoZSBjYXRoZWRy
|
1992
|
+
YWwgYXQgdGhpcyBwZXJpb2QgY2FuIGJlIHNlZW4gYXMgcmVzdWx0aW5nIGZy
|
1993
|
+
b20gYSBjb21pbmcgdG9nZXRoZXIgb2YgbmVjZXNzaXR5IGFuZCBvcHBvcnR1
|
1994
|
+
bml0eS4gVGhlIGRlc3RydWN0aW9uIG9mIGVhcmxpZXIgYnVpbGRpbmdzIGFu
|
1995
|
+
ZCBhdHRlbXB0cyBhdCByZWJ1aWxkaW5nIGJ5IGZpcmUgZm9yY2VkIHRoZSBm
|
1996
|
+
YWlybHkgcmFwaWQgY29uc3RydWN0aW9uIG9mIGEgYnVpbGRpbmcgdGhhdCwg
|
1997
|
+
Y29uc2VxdWVudGx5LCBoYXMgYSBnb29kIGRlYWwgb2YgYXJ0aXN0aWMgdW5p
|
1998
|
+
dHkuIFRoZSBsb25nIGFuZCByZWxhdGl2ZWx5IHBlYWNlZnVsIHJlaWduIG9m
|
1999
|
+
IExvdWlzIElYIG9mIEZyYW5jZSBicm91Z2h0IGEgcHJvc3Blcml0eSB0byB0
|
2000
|
+
aGUgcmVnaW9uLCBiYXNlZCBvbiB0aHJpdmluZyBhZ3JpY3VsdHVyZSBhbmQg
|
2001
|
+
YSBib29taW5nIGNsb3RoIHRyYWRlLCB0aGF0IG1hZGUgdGhlIGludmVzdG1l
|
2002
|
+
bnQgcG9zc2libGUuIFRoZSBncmVhdCBjYXRoZWRyYWxzIG9mIFJlaW1zIGFu
|
2003
|
+
ZCBDaGFydHJlcyBhcmUgcm91Z2hseSBjb250ZW1wb3JhcnkuXG5cblRoZSBv
|
2004
|
+
cmlnaW5hbCBkZXNpZ24gb2YgdGhlIGZseWluZyBidXR0cmVzc2VzIGFyb3Vu
|
2005
|
+
ZCB0aGUgY2hvaXIgaGFkIHRoZW0gcGxhY2VkIHRvbyBoaWdoIHRvIGNvdW50
|
2006
|
+
ZXJhY3QgdGhlIGZvcmNlIG9mIHRoZSBjZWlsaW5nIGFyY2ggcHVzaGluZyBv
|
2007
|
+
dXR3YXJkcyByZXN1bHRpbmcgaW4gZXhjZXNzaXZlIGxhdGVyYWwgZm9yY2Vz
|
2008
|
+
IGJlaW5nIHBsYWNlZCBvbiB0aGUgdmVydGljYWwgY29sdW1ucy4gVGhlIHN0
|
2009
|
+
cnVjdHVyZSB3YXMgb25seSBzYXZlZCB3aGVuLCBjZW50dXJpZXMgbGF0ZXIs
|
2010
|
+
IG1hc29ucyBwbGFjZWQgYSBzZWNvbmQgcm93IG9mIG1vcmUgcm9idXN0IGZs
|
2011
|
+
eWluZyBidXR0cmVzc2VzIHRoYXQgY29ubmVjdGVkIGxvd2VyIGRvd24gb24g
|
2012
|
+
dGhlIG91dGVyIHdhbGwuIFRoaXMgZml4IGZhaWxlZCB0byBjb3VudGVyYWN0
|
2013
|
+
IHNpbWlsYXIgaXNzdWVzIHdpdGggdGhlIGxvd2VyIHdhbGwgd2hpY2ggYmVn
|
2014
|
+
YW4gdG8gZGV2ZWxvcCBsYXJnZSBjcmFja3MgYXJvdW5kIHRoZSBsYXRlIE1p
|
2015
|
+
ZGRsZSBBZ2VzLiBUaGlzIHdhcyBzb2x2ZWQgYnkgYW5vdGhlciBwYXRjaCB0
|
2016
|
+
aGF0IGNvbnNpc3RlZCBvZiBhIHdyb3VnaHQgaXJvbiBiYXIgY2hhaW4gYmVp
|
2017
|
+
bmcgaW5zdGFsbGVkIGFyb3VuZCB0aGUgbWV6emFuaW5lIGxldmVsIHRvIHJl
|
2018
|
+
c2lzdCB0aGUgZm9yY2VzIHB1c2hpbmcgdGhlIHN0b25lIGNvbHVtbnMgb3V0
|
2019
|
+
d2FyZC4gVGhlIGNoYWluIHdhcyBpbnN0YWxsZWQgcmVkIGhvdCB0byBhY3Qg
|
2020
|
+
YXMgYSBjaW5jaCwgdGlnaHRlbmluZyBhcyBpdCBjb29sZWQuXG5cblRoZSB3
|
2021
|
+
ZXN0IGZyb250IG9mIHRoZSBjYXRoZWRyYWwsIChpbGx1c3RyYXRpb24sIHJp
|
2022
|
+
Z2h0KSBidWlsdCBpbiBhIHNpbmdsZSBjYW1wYWlnbiwgMTIyMOKAkzM2LCBz
|
2023
|
+
aG93cyBhbiB1bnVzdWFsIGRlZ3JlZSBvZiBhcnRpc3RpYyB1bml0eTogaXRz
|
2024
|
+
IGxvd2VyIHRpZXIgd2l0aCB0aHJlZSB2YXN0IGRlZXAgcG9yY2hlcyBpcyBj
|
2025
|
+
YXBwZWQgd2l0aCB0aGUgZ2FsbGVyeSBvZiB0d2VudHktdHdvIG92ZXIgbGlm
|
2026
|
+
ZXNpemUga2luZ3MsIHdoaWNoIHN0cmV0Y2hlcyBhY3Jvc3MgdGhlIGVudGly
|
2027
|
+
ZSBmYcOnYWRlIGJlbmVhdGggdGhlIHJvc2Ugd2luZG93LiBBYm92ZSB0aGUg
|
2028
|
+
cm9zZSB3aW5kb3cgdGhlcmUgaXMgYW4gb3BlbiBhcmNhZGUsIHRoZSBnYWxl
|
2029
|
+
cmllIGRlcyBzb25uZXVycy4gRmxhbmtpbmcgdGhlIG5hdmUsIHRoZSB0d28g
|
2030
|
+
dG93ZXJzIHdlcmUgYnVpbHQgd2l0aG91dCBjbG9zZSByZWdhcmQgdG8gdGhl
|
2031
|
+
IGZvcm1lciBkZXNpZ24sIHRoZSBzb3V0aCB0b3dlciBiZWluZyBmaW5pc2hl
|
2032
|
+
ZCBpbiAxMzY2LCB0aGUgbm9ydGggb25lLCByZWFjaGluZyBoaWdoZXIsIGlu
|
2033
|
+
IDE0MDYuXG5cblRoZSBXZXN0ZXJuIHBvcnRhbHMgb2YgdGhlIGNhdGhlZHJh
|
2034
|
+
bCBhcmUganVzdGx5IGZhbW91cyBmb3IgdGhlaXIgZWxhYm9yYXRlIHNjdWxw
|
2035
|
+
dHVyZSwgZmVhdHVyaW5nIGEgZ2FsbGVyeSBvZiBsb2NhbGx5LWltcG9ydGFu
|
2036
|
+
dCBzYWludHMgYW5kIGxhcmdlIGVzY2hhdG9sb2dpY2FsIHNjZW5lcy4gU3Rh
|
2037
|
+
dHVlcyBvZiBzYWludHMgaW4gdGhlIHBvcnRhbCBvZiB0aGUgY2F0aGVkcmFs
|
2038
|
+
IGhhdmUgYmVlbiBpZGVudGlmaWVkIGFzIGluY2x1ZGluZyB0aGUgbG9jYWxs
|
2039
|
+
eSB2ZW5lcmF0ZWQgU2FpbnRzIFZpY3RvcmljdXMgYW5kIEdlbnRpYW4sIFNh
|
2040
|
+
aW50IERvbWl0aXVzLCBTYWludCBVbHBoaWEsIGFuZCBTYWludCBGZXJtaW4u
|
2041
|
+
XG5cbkluIHRoZSBib29rIE1yIFN0YW5kZmFzdCwgSm9obiBCdWNoYW4gaGFz
|
2042
|
+
IGhpcyBjaGFyYWN0ZXIgUmljaGFyZCBIYW5uYXkgZGVzY3JpYmUgdGhlIGNh
|
2043
|
+
dGhlZHJhbCBhcyBiZWluZyBcInRoZSBub2JsZXN0IGNodXJjaCB0aGF0IHRo
|
2044
|
+
ZSBoYW5kIG9mIG1hbiBldmVyIGJ1aWx0IG9ubHkgZm9yIEdvZC5cIlxuXG5E
|
2045
|
+
dXJpbmcgdGhlIHByb2Nlc3Mgb2YgbGFzZXIgY2xlYW5pbmcgaW4gdGhlIDE5
|
2046
|
+
OTBzLCBpdCB3YXMgZGlzY292ZXJlZCB0aGF0IHRoZSB3ZXN0ZXJuIGZhw6dh
|
2047
|
+
ZGUgb2YgdGhlIGNhdGhlZHJhbCB3YXMgb3JpZ2luYWxseSBwYWludGVkIGlu
|
2048
|
+
IG11bHRpcGxlIGNvbG91cnMuIEEgdGVjaG5pcXVlIHdhcyBwZXJmZWN0ZWQg
|
2049
|
+
dG8gZGV0ZXJtaW5lIHRoZSBleGFjdCBtYWtlLXVwIG9mIHRoZSBjb2xvdXJz
|
2050
|
+
IGFzIHRoZXkgd2VyZSBhcHBsaWVkIGluIHRoZSAxM3RoIGNlbnR1cnkuIFRo
|
2051
|
+
ZW4sIGluIGNvbmp1bmN0aW9uIHdpdGggdGhlIGxhYm9yYXRvcmllcyBvZiBF
|
2052
|
+
REYgKEVsZWN0cmljaXR5IG9mIEZyYW5jZSkgYW5kIHRoZSBleHBlcnRpc2Ug
|
2053
|
+
b2YgdGhlIFNvY2lldHkgU2tlcnR6bywgZWxhYm9yYXRlIGxpZ2h0aW5nIHRl
|
2054
|
+
Y2huaXF1ZXMgd2VyZSBkZXZlbG9wZWQgdG8gcHJvamVjdCB0aGVzZSBjb2xv
|
2055
|
+
dXJzIGRpcmVjdGx5IG9uIHRoZSBmYcOnYWRlIHdpdGggcHJlY2lzaW9uLCBy
|
2056
|
+
ZWNyZWF0aW5nIHRoZSBwb2x5Y2hyb21hdGljIGFwcGVhcmFuY2Ugb2YgdGhl
|
2057
|
+
IDEzdGggY2VudHVyeS4gV2hlbiBwcm9qZWN0ZWQgb24gdGhlIHN0YXR1ZXMg
|
2058
|
+
YXJvdW5kIHRoZSBwb3J0YWxzLCB0aGUgcmVzdWx0IGlzIGEgc3R1bm5pbmcg
|
2059
|
+
ZGlzcGxheSB0aGF0IGJyaW5ncyB0aGUgZmlndXJlcyB0byBsaWZlLiBUaGUg
|
2060
|
+
cHJvamVjdGVkIGNvbG9ycyBhcmUgZmFpbnQgdG8gcGhvdG9ncmFwaCwgYnV0
|
2061
|
+
IGEgZ29vZCBxdWFsaXR5IERTTFIgd2lsbCBwcm92aWRlIGV4Y2VsbGVudCBy
|
2062
|
+
ZXN1bHRzIGFzIHNob3duIGhlcmUuXG5cbk9mIGNvdXJzZSwgdGhlIGZ1bGwg
|
2063
|
+
bWFnaWNhbCBlZmZlY3QgY2FuIGJlc3QgYmUgYXBwcmVjaWF0ZWQgYnkgZGly
|
2064
|
+
ZWN0IHZpZXdpbmcsIGFjY29tcGFuaWVkIGJ5IHN0aXJyaW5nIG11c2ljLCB3
|
2065
|
+
aGljaCBjYW4gYmUgZG9uZSBhdCB0aGUgU29uIGV0IGx1bWnDqHJlIG9uIFN1
|
2066
|
+
bW1lciBldmVuaW5ncywgZHVyaW5nIHRoZSBDaHJpc3RtYXMgRmFpciwgYW5k
|
2067
|
+
IG92ZXIgdGhlIE5ldyBZZWFyLlxuXG5BbWllbnMgY2F0aGVkcmFsIGNvbnRh
|
2068
|
+
aW5zIHRoZSBsYXJnZXN0IG1lZGlldmFsIGludGVyaW9yIGluIFdlc3Rlcm4g
|
2069
|
+
RXVyb3BlLCBzdXBwb3J0ZWQgYnkgMTI2IHBpbGxhcnMuIEJvdGggdGhlIG5h
|
2070
|
+
dmUgYW5kIHRoZSBjaGFuY2VsIGFyZSB2YXN0IGJ1dCBleHRyZW1lbHkgbGln
|
2071
|
+
aHQsIHdpdGggY29uc2lkZXJhYmxlIGFtb3VudHMgb2Ygc3RhaW5lZCBnbGFz
|
2072
|
+
cyBzdXJ2aXZpbmcsIGRlc3BpdGUgdGhlIGRlcHJlZGF0aW9ucyBvZiB3YXIu
|
2073
|
+
XG5cblRoZSBhbWJ1bGF0b3J5IHN1cnJvdW5kaW5nIHRoZSBjaG9pciBpcyBy
|
2074
|
+
aWNobHkgZGVjb3JhdGVkIHdpdGggcG9seWNocm9tZSBzY3VscHR1cmUgYW5k
|
2075
|
+
IGZsYW5rZWQgYnkgbnVtZXJvdXMgY2hhcGVscy4gT25lIG9mIHRoZSBtb3N0
|
2076
|
+
IHN1bXB0dW91cyBpcyB0aGUgRHJhcGVycycgY2hhcGVsLiBUaGUgY2xvdGgg
|
2077
|
+
aW5kdXN0cnkgd2FzIHRoZSBtb3N0IGR5bmFtaWMgY29tcG9uZW50IG9mIHRo
|
2078
|
+
ZSBtZWRpZXZhbCBlY29ub215LCBlc3BlY2lhbGx5IGluIG5vcnRoZXJuIEZy
|
2079
|
+
YW5jZSwgYW5kIHRoZSBjbG90aCBtZXJjaGFudHMgd2VyZSBrZWVuIHRvIGRp
|
2080
|
+
c3BsYXkgdGhlaXIgd2VhbHRoIGFuZCBjaXZpYyBwcmlkZS4gQW5vdGhlciBz
|
2081
|
+
dHJpa2luZyBjaGFwZWwgaXMgZGVkaWNhdGVkIHRvIFN0IFRob21hcyBvZiBD
|
2082
|
+
YW50ZXJidXJ5LCBhIDEzdGggY2VudHVyeSBkZWRpY2F0aW9uIHRoYXQgY29t
|
2083
|
+
cGxlbWVudHMgdGhlIGNhdGhlZHJhbCdzIG93biB2ZXJ5IGZ1bGwgbGlzdCBv
|
2084
|
+
ZiBtYXJ0eXJzLlxuXG5UaGUgaW50ZXJpb3IgY29udGFpbnMgd29ya3Mgb2Yg
|
2085
|
+
YXJ0IGFuZCBkZWNvcmF0aW9uIGZyb20gZXZlcnkgcGVyaW9kIHNpbmNlIHRo
|
2086
|
+
ZSBidWlsZGluZyBvZiB0aGUgY2F0aGVkcmFsLlxuXG5UaGUgaW5pdGlhbCBp
|
2087
|
+
bXBldHVzIGZvciB0aGUgYnVpbGRpbmcgb2YgdGhlIGNhdGhlZHJhbCBjYW1l
|
2088
|
+
IGZyb20gdGhlIGluc3RhbGxhdGlvbiBvZiB0aGUgcmVwdXRlZCBoZWFkIG9m
|
2089
|
+
IEpvaG4gdGhlIEJhcHRpc3Qgb24gMTcgRGVjZW1iZXIgMTIwNi4gVGhlIGhl
|
2090
|
+
YWQgd2FzIHBhcnQgb2YgdGhlIGxvb3Qgb2YgdGhlIEZvdXJ0aCBDcnVzYWRl
|
2091
|
+
LCB3aGljaCBoYWQgYmVlbiBkaXZlcnRlZCBmcm9tIGNhbXBhaWduaW5nIGFn
|
2092
|
+
YWluc3QgdGhlIFR1cmtzIHRvIHNhY2tpbmcgdGhlIGdyZWF0IENocmlzdGlh
|
2093
|
+
biBjaXR5IG9mIENvbnN0YW50aW5vcGxlLiBBIHN1bXB0dW91cyByZWxpcXVh
|
2094
|
+
cnkgd2FzIG1hZGUgdG8gaG91c2UgdGhlIHNrdWxsLiBBbHRob3VnaCBsYXRl
|
2095
|
+
ciBsb3N0LCBhIDE5dGggY2VudHVyeSByZXBsaWNhIHN0aWxsIHByb3ZpZGVz
|
2096
|
+
IGEgZm9jdXMgZm9yIHByYXllciBhbmQgbWVkaXRhdGlvbiBpbiB0aGUgTm9y
|
2097
|
+
dGggYWlzbGUuXG5cblNvbWUgb2YgdGhlIG1vc3QgaW1wb3J0YW50IHdvcmtz
|
2098
|
+
IG9mIGFydCBhcmUgc2VxdWVuY2VzIG9mIHBvbHljaHJvbWUgc2N1bHB0dXJl
|
2099
|
+
LCBkYXRpbmcgbWFpbmx5IGZyb20gdGhlIGxhdGUgMTV0aCBhbmQgdGhlIDE2
|
2100
|
+
dGggY2VudHVyaWVzLiBBIGxhcmdlIHNlcXVlbmNlIGluIHRoZSBOb3J0aCB0
|
2101
|
+
cmFuc2VwdCBpbGx1c3RyYXRlcyBKZXN1cycgQ2xlYW5zaW5nIG9mIHRoZSBU
|
2102
|
+
ZW1wbGUsIHdpdGggaW1hZ2luYXRpdmUgdGFibGVhdXggb2YgdGhlIFRlbXBs
|
2103
|
+
ZS4gQm90aCBzaWRlcyBvZiB0aGUgYW1idWxhdG9yeSBhcmUgbGluZWQgd2l0
|
2104
|
+
aCBzZXF1ZW5jZXMgaWxsdXN0cmF0aW5nIHRoZSBsaXZlcyBvZiB0aGUgdHdv
|
2105
|
+
IHNhaW50cyB3aG9zZSBjdWx0cyBicm91Z2h0IGxhcmdlIG51bWJlcnMgb2Yg
|
2106
|
+
cGlsZ3JpbXMgdG8gdGhlIGNhdGhlZHJhbDogSm9obiB0aGUgQmFwdGlzdCBh
|
2107
|
+
bmQgU3QgRmlybWluLCB0aGUgZmlyc3QgYmlzaG9wIG9mIEFtaWVucy4gVGhl
|
2108
|
+
IGFydGlzdHMgdG9vayBjYXJlIHRvIGNyZWF0ZSBhIHBhcmFsbGVsaXNtIGlu
|
2109
|
+
IHRoZSB0ZWxsaW5nIG9mIHRoZSBzdG9yaWVzOiBib3RoIHNhaW50cywgZGVj
|
2110
|
+
YXBpdGF0ZWQgZm9yIG9mZmVuZGluZyB0aGUgcmljaCBhbmQgcG93ZXJmdWws
|
2111
|
+
IHN1ZmZlciBuZWdsZWN0IGFuZCBsb3NzLCB1bnRpbCBhIGxhdGVyIGdlbmVy
|
2112
|
+
YXRpb24gZGlzY292ZXJzIHRoZWlyIHJlbGljcyBhbmQgaG91c2VzIHRoZW0g
|
2113
|
+
Zml0dGluZ2x5LlxuXG5UaGUgYmFyb3F1ZSBwdWxwaXQsIGNvbnN0cnVjdGVk
|
2114
|
+
IG9mIG1hcmJsZSBhbmQgZ2lsZGVkIHdvb2QsIGRvbWluYXRlcyB0aGUgbmF2
|
2115
|
+
ZSBvZiB0aGUgY2F0aGVkcmFsLiBJdCBpcyBzdXBwb3J0ZWQgYnkgdGhyZWUg
|
2116
|
+
YWxsZWdvcmljYWwgZmVtYWxlIGZpZ3VyZXMsIGFwcGFyZW50bHkgcmVwcmVz
|
2117
|
+
ZW50aW5nIEZhaXRoLCBIb3BlIGFuZCBDaGFyaXR5LCB0aGUgdGhyZWUgVGhl
|
2118
|
+
b2xvZ2ljYWwgVmlydHVlcy5cblxuXG5cbkNvb3JkaW5hdGVzOiA0OcKwNTPi
|
2119
|
+
gLI0MuKAs04gMsKwMTjigLIwOOKAs0Xvu78gLyDvu780OS44OTXCsE4gMi4z
|
2120
|
+
MDIyMsKwRe+7vyAvIDQ5Ljg5NTsgMi4zMDIyMiIsImxvbmdpdHVkZSI6IjIu
|
2121
|
+
MzAxNjY3IiwibGF0aXR1ZGUiOiI0OS44OTUiLCJ0aXRsZSI6IkFtaWVucyBD
|
2122
|
+
YXRoZWRyYWwifSx7InVwZGF0ZWRfYXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4
|
2123
|
+
KzAyOjAwIiwiY3JlYXRlZF9hdCI6IjIwMTItMDgtMjBUMTI6NDQ6MzgrMDI6
|
2124
|
+
MDAiLCJjYXJ0b2RiX2lkIjo0LCJ0aGVfZ2VvbSI6IntcInR5cGVcIjpcIlBv
|
2125
|
+
aW50XCIsXCJjb29yZGluYXRlc1wiOlszNi40ODE2NywzMi41MTgwNl19Iiwi
|
2126
|
+
d2hzX3NvdXJjZV9wYWdlIjoiaHR0cDovL3doYy51bmVzY28ub3JnL2VuL2xp
|
2127
|
+
c3QvMjIiLCJkYXRlX29mX2luc2NyaXB0aW9uIjoiMTk4MCIsIndoc19zaXRl
|
2128
|
+
X2lkIjoiMjIiLCJjb3VudHJ5IjoiU3lyaWFuIEFyYWIgUmVwdWJsaWMiLCJu
|
2129
|
+
YW1lIjoiQW5jaWVudCBDaXR5IG9mIEJvc3JhIiwic2l6ZSI6IiIsImlzb19j
|
2130
|
+
b2RlIjoiU1kiLCJjcml0ZXJpYSI6IltpXSxbaWlpXSxbdmldIiwiY29tbWVu
|
2131
|
+
dHMiOiIiLCJ3aWtpcGVkaWFfbGluayI6Imh0dHA6Ly9lbi53aWtpcGVkaWEu
|
2132
|
+
b3JnL3dpa2kvQm9zcmEiLCJleHRlcm5hbF9saW5rcyI6IltDYXRob2xpYyBF
|
2133
|
+
bmN5Y2xvcGVkaWEgb24gQm9zcmF8aHR0cDovL3d3dy5uZXdhZHZlbnQub3Jn
|
2134
|
+
L2NhdGhlbi8wMjcwN2EuaHRtXSNbT2ZmaWNpYWwgd2Vic2l0ZSBvZiBCb3Ny
|
2135
|
+
YSBjaXR5fGh0dHA6Ly93d3cuYm9zcmFjaXR5LmNvbS9dI1tCb3NyYSBXb3Js
|
2136
|
+
ZCBIZXJpdGFnZSBzaXRlIGluIHBhbm9ncmFwaGllcyAtIDM2MCBkZWdyZWUg
|
2137
|
+
aW50ZXJhY3RpdmUgaW1hZ2luZ3xodHRwOi8vd3d3LldIVG91ci5vcmcvMjJd
|
2138
|
+
I1tFeHRlbnNpdmUgcGhvdG8gc2l0ZSBhYm91dCBCb3NyYXxodHRwOi8vd3d3
|
2139
|
+
LnBiYXNlLmNvbS9kb3NzZW1hbl9zeXJpYS9ib3NyYV0iLCJlbmRhbmdlcmVk
|
2140
|
+
X3llYXIiOiIiLCJlZGl0ZWRfcmVnaW9uIjoiR292ZXJub3JhdGUgb2YgRGVy
|
2141
|
+
YWEiLCJlbmRhbmdlcmVkX3JlYXNvbiI6IiIsInR5cGUiOiJjdWx0dXJhbCIs
|
2142
|
+
InJlZ2lvbiI6IkdvdmVybm9yYXRlIG9mIERlcmFhIiwiZGVzY3JpcHRpb24i
|
2143
|
+
OiJCb3NyYSAoQXJhYmljOiDYqNi12LHZieKAjiwgYWxzbyBCb3N0cmEsIEJ1
|
2144
|
+
c3JhbmEsIEJvenJhaCwgQm96cmEsIEJ1c3JhIEVza2kgxZ5hbSwgQnVzcmEg
|
2145
|
+
YXNoLVNoYW0sIE5vdmEgVHJhamFuYSBCb3N0cmEpIGlzIGFuIGFuY2llbnQg
|
2146
|
+
Y2l0eSBhZG1pbmlzdHJhdGl2ZWx5IGJlbG9uZ2luZyB0byB0aGUgRGFyYWEg
|
2147
|
+
R292ZXJub3JhdGUgaW4gc291dGhlcm4gU3lyaWEuIEl0IGlzIGEgbWFqb3Ig
|
2148
|
+
YXJjaGFlb2xvZ2ljYWwgc2l0ZSBhbmQgaGFzIGJlZW4gZGVjbGFyZWQgYSBV
|
2149
|
+
TkVTQ08gV29ybGQgSGVyaXRhZ2UgU2l0ZS5cblxuVGhlIHNldHRsZW1lbnQg
|
2150
|
+
d2FzIGZpcnN0IG1lbnRpb25lZCBpbiB0aGUgZG9jdW1lbnRzIG9mIFR1dG1v
|
2151
|
+
c2UgSUlJIGFuZCBBa2hlbmF0b24gKDE0dGggY2VudHVyeSBCQykuIEJvc3Jh
|
2152
|
+
IHdhcyB0aGUgZmlyc3QgTmFiYXRlYW4gY2l0eSBpbiB0aGUgMm5kIGNlbnR1
|
2153
|
+
cnkgQkMuIFRoZSBOYWJhdGVhbiBLaW5nZG9tIHdhcyBjb25xdWVyZWQgYnkg
|
2154
|
+
Q29ybmVsaXVzIFBhbG1hLCBhIGdlbmVyYWwgb2YgVHJhamFuLCBpbiAxMDYu
|
2155
|
+
XG5cblVuZGVyIHRoZSBSb21hbiBFbXBpcmUsIEJvc3JhIHdhcyByZW5hbWVk
|
2156
|
+
IE5vdmEgVHJhamFuYSBCb3N0cmEsIGFuZCB3YXMgdGhlIHJlc2lkZW5jZSBv
|
2157
|
+
ZiB0aGUgbGVnaW8gSUlJIEN5cmVuYWljYSBhbmQgY2FwaXRhbCBvZiB0aGUg
|
2158
|
+
Um9tYW4gcHJvdmluY2UgQXJhYmlhIFBldHJhZWEuIFRoZSBjaXR5IGZsb3Vy
|
2159
|
+
aXNoZWQgYW5kIGJlY2FtZSBhIG1ham9yIG1ldHJvcG9saXMgYXQgdGhlIGp1
|
2160
|
+
bmN0dXJlIG9mIHNldmVyYWwgdHJhZGUgcm91dGVzLCBpbmNsdWRpbmcgdGhl
|
2161
|
+
IFJvbWFuIHJvYWQgdG8gdGhlIFJlZCBTZWEuIFRoZSB0d28gQ291bmNpbHMg
|
2162
|
+
b2YgQXJhYmlhIHdlcmUgaGVsZCBhdCBCb3N0cmEgaW4gMjQ2IGFuZCAyNDcg
|
2163
|
+
QUQuIFRoZSBjaXR5IHdhcyBjb25xdWVyZWQgYnkgdGhlIFNhc3NhbmlkIFBl
|
2164
|
+
cnNpYW5zIGluIHRoZSBlYXJseSA3dGggY2VudHVyeSwgYW5kLCBhZnRlciBh
|
2165
|
+
IHNob3J0IEJ5emFudGluZSByZWNvbnF1ZXN0LCB3YXMgZmluYWxseSBjYXB0
|
2166
|
+
dXJlZCBieSB0aGUgZm9yY2VzIG9mIHRoZSBSYXNoaWR1biBDYWxpcGhhdGUg
|
2167
|
+
dW5kZXIgS2hhbGlkIGlibiBXYWxpZCBpbiB0aGUgQmF0dGxlIG9mIEJvc3Jh
|
2168
|
+
ICg2MzQpLiBUaGVyZWFmdGVyIGl0IHdhcyBhbiBJc2xhbWljIHBvc3Nlc3Np
|
2169
|
+
b24uXG5cbkJvc3JhIHBsYXllZCBhbiBpbXBvcnRhbnQgcGFydCBpbiB0aGUg
|
2170
|
+
ZWFybHkgbGlmZSBvZiB0aGUgUHJvcGhldCBvZiBJc2xhbSwgTW9oYW1tZWQg
|
2171
|
+
YXMgZGVzY3JpYmVkIGluIHRoZSBlbnRyeSBmb3IgdGhlIENocmlzdGlhbiBN
|
2172
|
+
b25rLCBCYWhpcmEuIEJhaGlyYSB3YXMgd2l0bmVzc2luZyB0byBNdWhhbW1h
|
2173
|
+
ZCBpbiB0aGUgcHJvcGhldGhvb2QuXG5cblRvZGF5LCBCb3NyYSBpcyBhIG1h
|
2174
|
+
am9yIGFyY2hhZW9sb2dpY2FsIHNpdGUsIGNvbnRhaW5pbmcgcnVpbnMgZnJv
|
2175
|
+
bSBSb21hbiwgQnl6YW50aW5lLCBhbmQgTXVzbGltIHRpbWVzLCBpdHMgbWFp
|
2176
|
+
biBmZWF0dXJlIGJlaW5nIHRoZSB3ZWxsIHByZXNlcnZlZCBSb21hbiB0aGVh
|
2177
|
+
dHJlLiBFdmVyeSB5ZWFyIHRoZXJlIGlzIGEgbmF0aW9uYWwgbXVzaWMgZmVz
|
2178
|
+
dGl2YWwgaG9zdGVkIGluIHRoZSBtYWluIHRoZWF0ZXIuXG5cbk9mIHRoZSBj
|
2179
|
+
aXR5IHdoaWNoIG9uY2UgY291bnRlZCA4MCwwMDAgaW5oYWJpdGFudHMsIHRo
|
2180
|
+
ZXJlIHJlbWFpbnMgdG9kYXkgb25seSBhIHZpbGxhZ2Ugc2V0dGxlZCBhbW9u
|
2181
|
+
ZyB0aGUgcnVpbnMuIFRoZSBzZWNvbmQgY2VudHVyeSBSb21hbiB0aGVhdGVy
|
2182
|
+
LCBjb25zdHJ1Y3RlZCBwcm9iYWJseSB1bmRlciBUcmFqYW4sIGlzIHRoZSBv
|
2183
|
+
bmx5IG1vbnVtZW50IG9mIHRoaXMgdHlwZSB3aXRoIGl0cyB1cHBlciBnYWxs
|
2184
|
+
ZXJ5IGluIHRoZSBmb3JtIG9mIGEgY292ZXJlZCBwb3J0aWNvIHdoaWNoIGhh
|
2185
|
+
cyBiZWVuIGludGVncmFsbHkgcHJlc2VydmVkLiBJdCB3YXMgZm9ydGlmaWVk
|
2186
|
+
IGJldHdlZW4gNDgxIGFuZCAxMjMxIEFELlxuXG5GdXJ0aGVyLCBOYWJhdGVh
|
2187
|
+
biBhbmQgUm9tYW4gbW9udW1lbnRzLCBDaHJpc3RpYW4gY2h1cmNoZXMsIG1v
|
2188
|
+
c3F1ZXMgYW5kIE1hZHJhc2FocyBhcmUgcHJlc2VudCB3aXRoaW4gdGhlIGhh
|
2189
|
+
bGYgcnVpbmVkIGVuY2VpbnRlIG9mIHRoZSBjaXR5LiBUaGUgc3RydWN0dXJl
|
2190
|
+
IG9mIHRoaXMgbW9udW1lbnQgYSBjZW50cmFsIHBsYW4gd2l0aCBlYXN0ZXJu
|
2191
|
+
IGFwc2VzIGZsYW5rZWQgYnkgMiBzYWNyaXN0aWVzIGV4ZXJ0ZWQgYSBkZWNp
|
2192
|
+
c2l2ZSBpbmZsdWVuY2Ugb24gdGhlIGV2b2x1dGlvbiBvZiBDaHJpc3RpYW4g
|
2193
|
+
YXJjaGl0ZWN0dXJhbCBmb3JtcywgYW5kLCB0byBhIGNlcnRhaW4gZXh0ZW50
|
2194
|
+
LCBvbiBJc2xhbWljIHN0eWxlIGFzIHdlbGwuIEFsLU9tYXJpIE1vc3F1ZSBv
|
2195
|
+
ZiBCb3NyYSBpcyBvbmUgb2YgdGhlIG9sZGVzdCBzdXJ2aXZpbmcgbW9zcXVl
|
2196
|
+
cyBpbiBJc2xhbWljIGhpc3RvcnkuXG5cbkNsb3NlIGJ5IGFyZSB0aGUgS2hh
|
2197
|
+
cmFiYSBCcmlkZ2UgYW5kIHRoZSBHZW1hcnJpbiBCcmlkZ2UsIGJvdGggUm9t
|
2198
|
+
YW4gYnJpZGdlcy5cblxuQ29vcmRpbmF0ZXM6IDMywrAzMeKAsk4gMzbCsDI5
|
2199
|
+
4oCyRe+7vyAvIO+7vzMyLjUxN8KwTiAzNi40ODPCsEXvu78gLyAzMi41MTc7
|
2200
|
+
IDM2LjQ4MyIsImxvbmdpdHVkZSI6IjM2LjQ4MTY3IiwibGF0aXR1ZGUiOiIz
|
2201
|
+
Mi41MTgwNiIsInRpdGxlIjoiQW5jaWVudCBDaXR5IG9mIEJvc3JhIn0seyJ1
|
2202
|
+
cGRhdGVkX2F0IjoiMjAxMi0wOC0yMFQxMjo0NDozOCswMjowMCIsImNyZWF0
|
2203
|
+
ZWRfYXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4KzAyOjAwIiwiY2FydG9kYl9p
|
2204
|
+
ZCI6NSwidGhlX2dlb20iOiJ7XCJ0eXBlXCI6XCJQb2ludFwiLFwiY29vcmRp
|
2205
|
+
bmF0ZXNcIjpbMjcuNzMsNDIuNjU2MTFdfSIsIndoc19zb3VyY2VfcGFnZSI6
|
2206
|
+
Imh0dHA6Ly93aGMudW5lc2NvLm9yZy9lbi9saXN0LzIxNyIsImRhdGVfb2Zf
|
2207
|
+
aW5zY3JpcHRpb24iOiIxOTgzIiwid2hzX3NpdGVfaWQiOiIyMTciLCJjb3Vu
|
2208
|
+
dHJ5IjoiQnVsZ2FyaWEiLCJuYW1lIjoiQW5jaWVudCBDaXR5IG9mIE5lc3Nl
|
2209
|
+
YmFyIiwic2l6ZSI6IjI3MDAwMC4wIiwiaXNvX2NvZGUiOiJCRyIsImNyaXRl
|
2210
|
+
cmlhIjoiW2lpaV0sW2l2XSIsImNvbW1lbnRzIjoiIiwid2lraXBlZGlhX2xp
|
2211
|
+
bmsiOiJodHRwOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL05lc2ViYXIiLCJl
|
2212
|
+
eHRlcm5hbF9saW5rcyI6IltFdmFsdWF0aW9ufGh0dHA6Ly93aGMudW5lc2Nv
|
2213
|
+
Lm9yZy9hcmNoaXZlL2Fkdmlzb3J5X2JvZHlfZXZhbHVhdGlvbi8yMTcucGRm
|
2214
|
+
XSNbR2FsbGVyeSBvZiBwaWN0dXJlcyBmcm9tIE5lc2ViYXJ8aHR0cDovL3d3
|
2215
|
+
dy5wYmFzZS5jb20vbmdydWV2L25lc2VidXJdI1tGb2xrbG9yZSBFbnNlbWJs
|
2216
|
+
ZSBTbGFuY2hldiBCcnlhZyDigJMgTmVzc2ViYXJ8aHR0cDovL3d3dy5uZXNz
|
2217
|
+
ZWJhci1mb2xrLmNvbS9dI1tBbmNpZW50IE5lc2ViYXJ8aHR0cDovL3d3dy5h
|
2218
|
+
bmNpZW50LW5lc3NlYmFyLmNvbS9dI1tQb3J0YWwgb2YgTmVzc2ViYXJ8aHR0
|
2219
|
+
cDovL3d3dy5uZXNzZWJhci1idWxnYXJpYS5jb20vXSIsImVuZGFuZ2VyZWRf
|
2220
|
+
eWVhciI6IiIsImVkaXRlZF9yZWdpb24iOiJCdXJnYXMgUHJvdmluY2UiLCJl
|
2221
|
+
bmRhbmdlcmVkX3JlYXNvbiI6IiIsInR5cGUiOiJjdWx0dXJhbCIsInJlZ2lv
|
2222
|
+
biI6IkJ1cmdhcyBQcm92aW5jZSIsImRlc2NyaXB0aW9uIjoiTmVzZWJhciAo
|
2223
|
+
QnVsZ2FyaWFuOiDQndC10YHQtdCx0YrRgCwgcHJvbm91bmNlZCBbbmXLiHNl
|
2224
|
+
YsmZcl0sIGFsc28gdHJhbnNjcmliZWQgYXMgTmVzc2ViYXIgb3IgTmVzZWJ1
|
2225
|
+
cjsgYW5jaWVudCBuYW1lOiBNZXNlbWJyaWEpIGlzIGFuIGFuY2llbnQgdG93
|
2226
|
+
biBhbmQgb25lIG9mIHRoZSBtYWpvciBzZWFzaWRlIHJlc29ydHMgb24gdGhl
|
2227
|
+
IEJ1bGdhcmlhbiBCbGFjayBTZWEgQ29hc3QsIGxvY2F0ZWQgaW4gQnVyZ2Fz
|
2228
|
+
IFByb3ZpbmNlLiBJdCBpcyB0aGUgYWRtaW5pc3RyYXRpdmUgY2VudHJlIG9m
|
2229
|
+
IHRoZSBob21vbnltb3VzIE5lc2ViYXIgTXVuaWNpcGFsaXR5LiBPZnRlbiBy
|
2230
|
+
ZWZlcnJlZCB0byBhcyB0aGUgXCJQZWFybCBvZiB0aGUgQmxhY2sgU2VhXCIg
|
2231
|
+
YW5kIFwiQnVsZ2FyaWEncyBEdWJyb3ZuaWtcIiwgTmVzZWJhciBpcyBhIHJp
|
2232
|
+
Y2ggY2l0eS1tdXNldW0gZGVmaW5lZCBieSBtb3JlIHRoYW4gdGhyZWUgbWls
|
2233
|
+
bGVubmlhIG9mIGV2ZXItY2hhbmdpbmcgaGlzdG9yeS5cblxuSXQgaXMgYSBv
|
2234
|
+
bmUgb2YgdGhlIG1vc3QgcHJvbWluZW50IHRvdXJpc3QgZGVzdGluYXRpb25z
|
2235
|
+
IGFuZCBzZWFwb3J0cyBvbiB0aGUgQmxhY2sgU2VhLCBpbiB3aGF0IGhhcyBi
|
2236
|
+
ZWNvbWUgYSBwb3B1bGFyIGFyZWEgd2l0aCBzZXZlcmFsIGxhcmdlIHJlc29y
|
2237
|
+
dHPigJR0aGUgbGFyZ2VzdCwgU3VubnkgQmVhY2gsIGlzIHNpdHVhdGVkIGlt
|
2238
|
+
bWVkaWF0ZWx5IHRvIHRoZSBub3J0aCBvZiBOZXNlYmFyLlxuXG5OZXNlYmFy
|
2239
|
+
IGhhcyBvbiBzZXZlcmFsIG9jY2FzaW9ucyBmb3VuZCBpdHNlbGYgb24gdGhl
|
2240
|
+
IGZyb250aWVyIG9mIGEgdGhyZWF0ZW5lZCBlbXBpcmUsIGFuZCBhcyBzdWNo
|
2241
|
+
IGl0IGlzIGEgdG93biB3aXRoIGEgcmljaCBoaXN0b3J5LiBUaGUgYW5jaWVu
|
2242
|
+
dCBwYXJ0IG9mIHRoZSB0b3duIGlzIHNpdHVhdGVkIG9uIGEgcGVuaW5zdWxh
|
2243
|
+
IChwcmV2aW91c2x5IGFuIGlzbGFuZCkgY29ubmVjdGVkIHRvIHRoZSBtYWlu
|
2244
|
+
bGFuZCBieSBhIG5hcnJvdyBtYW4tbWFkZSBpc3RobXVzLCBhbmQgaXQgYmVh
|
2245
|
+
cnMgZXZpZGVuY2Ugb2Ygb2NjdXBhdGlvbiBieSBhIHZhcmlldHkgb2YgZGlm
|
2246
|
+
ZmVyZW50IGNpdmlsaXNhdGlvbnMgb3ZlciB0aGUgY291cnNlIG9mIGl0cyBl
|
2247
|
+
eGlzdGVuY2UuIEl0cyBhYnVuZGFuY2Ugb2YgaGlzdG9yaWMgYnVpbGRpbmdz
|
2248
|
+
IHByb21wdGVkIFVORVNDTyB0byBpbmNsdWRlIE5lc2ViYXIgaW4gaXRzIGxp
|
2249
|
+
c3Qgb2YgV29ybGQgSGVyaXRhZ2UgU2l0ZXMgaW4gMTk4My5cblxuQXMgb2Yg
|
2250
|
+
RGVjZW1iZXIgMjAwOSwgdGhlIHRvd24gaGFzIGEgcG9wdWxhdGlvbiBvZiAx
|
2251
|
+
MSw2MjYgaW5oYWJpdGFudHMuIEl0IGxpZXMgYXQgNDLCsDM54oCyTiAyN8Kw
|
2252
|
+
NDTigLJF77u/IC8g77u/NDIuNjXCsE4gMjcuNzMzwrBF77u/IC8gNDIuNjU7
|
2253
|
+
IDI3LjczM0Nvb3JkaW5hdGVzOiA0MsKwMznigLJOIDI3wrA0NOKAskXvu78g
|
2254
|
+
LyDvu780Mi42NcKwTiAyNy43MzPCsEXvu78gLyA0Mi42NTsgMjcuNzMzLlxu
|
2255
|
+
XG5JbmhhYml0ZWQgaW4gdGhlIEFudGlxdWl0eSBieSB0aGUgVGhyYWNpYW5z
|
2256
|
+
IGFuZCB0aGUgQW5jaWVudCBHcmVla3MsIHRoZSBvcmlnaW5hbCBUaHJhY2lh
|
2257
|
+
biBzZXR0bGVtZW50IE1lbmVicmlhIHdhcyBjYWxsZWQgTWVzZW1icmlhIChB
|
2258
|
+
bmNpZW50wqBHcmVlazogzpzOtc+Dzq7OvM6yz4HOuc6xKSBieSB0aGUgQW5j
|
2259
|
+
aWVudCBHcmVla3MuIFVuZGVyIHRoaXMgbmFtZSBpdCB3YXMgc3RpbGwga25v
|
2260
|
+
d24gaW4gdGhlIE1pZGRsZSBBZ2VzIHRvIEJ1bGdhcmlhbnMgYW5kIEJ5emFu
|
2261
|
+
dGluZXMuXG5cbk9yaWdpbmFsbHkgYSBUaHJhY2lhbiBzZXR0bGVtZW50IGtu
|
2262
|
+
b3duIGFzIE1lbmVicmlhLCB0aGUgdG93biBiZWNhbWUgYSBHcmVlayBjb2xv
|
2263
|
+
bnkgd2hlbiBzZXR0bGVkIGJ5IERvcmlhbnMgZnJvbSBNZWdhcmEgYXQgdGhl
|
2264
|
+
IGJlZ2lubmluZyBvZiB0aGUgNnRoIGNlbnR1cnkgQkMsIGFuZCB3YXMgYW4g
|
2265
|
+
aW1wb3J0YW50IHRyYWRpbmcgY2VudHJlIGZyb20gdGhlbiBvbiBhbmQgYSBy
|
2266
|
+
aXZhbCBvZiBBcG9sbG9uaWEgKFNvem9wb2wpLiBJdCByZW1haW5lZCB0aGUg
|
2267
|
+
b25seSBEb3JpYyBjb2xvbnkgYWxvbmcgdGhlIEJsYWNrIFNlYSBjb2FzdCwg
|
2268
|
+
YXMgdGhlIHJlc3Qgd2VyZSB0eXBpY2FsIElvbmljIGNvbG9uaWVzLiBSZW1h
|
2269
|
+
aW5zIGZyb20gdGhlIEhlbGxlbmlzdGljIHBlcmlvZCBpbmNsdWRlIHRoZSBh
|
2270
|
+
Y3JvcG9saXMsIGEgdGVtcGxlIG9mIEFwb2xsbywgYW5kIGFuIGFnb3JhLiBB
|
2271
|
+
IHdhbGwgd2hpY2ggZm9ybWVkIHBhcnQgb2YgdGhlIGZvcnRpZmljYXRpb25z
|
2272
|
+
IGNhbiBzdGlsbCBiZSBzZWVuIG9uIHRoZSBub3J0aCBzaWRlIG9mIHRoZSBw
|
2273
|
+
ZW5pbnN1bGEuIEJyb256ZSBhbmQgc2lsdmVyIGNvaW5zIHdlcmUgbWludGVk
|
2274
|
+
IGluIHRoZSBjaXR5IHNpbmNlIHRoZSA1dGggY2VudHVyeSBCQyBhbmQgZ29s
|
2275
|
+
ZCBjb2lucyBzaW5jZSB0aGUgM3JkIGNlbnR1cnkgQkMuXG5cblRoZSB0b3du
|
2276
|
+
IGZlbGwgdW5kZXIgUm9tYW4gcnVsZSBpbiA3MSBCQywgeWV0IGNvbnRpbnVl
|
2277
|
+
ZCB0byBlbmpveSBwcml2aWxlZ2VzIHN1Y2ggYXMgdGhlIHJpZ2h0IHRvIG1p
|
2278
|
+
bnQgaXRzIG93biBjb2luYWdlLiBJdCB3YXMgb25lIG9mIHRoZSBtb3N0IGlt
|
2279
|
+
cG9ydGFudCBzdHJvbmdob2xkcyBvZiB0aGUgQnl6YW50aW5lIEVtcGlyZSBm
|
2280
|
+
cm9tIHRoZSA1dGggY2VudHVyeSBBRCBvbndhcmRzLCBhbmQgd2FzIGZvdWdo
|
2281
|
+
dCBvdmVyIGJ5IEJ5emFudGluZXMgYW5kIEJ1bGdhcmlhbnMsIGJlaW5nIGNh
|
2282
|
+
cHR1cmVkIGFuZCBpbmNvcnBvcmF0ZWQgaW4gdGhlIGxhbmRzIG9mIHRoZSBG
|
2283
|
+
aXJzdCBCdWxnYXJpYW4gRW1waXJlIGluIDgxMiBieSBLaGFuIEtydW0gYWZ0
|
2284
|
+
ZXIgYSB0d28gd2VlayBzaWVnZSBvbmx5IHRvIGJlIGNlZGVkIGJhY2sgdG8g
|
2285
|
+
Qnl6YW50aXVtIGJ5IEtueWF6IEJvcmlzIEkgaW4gODY0IGFuZCByZWNvbnF1
|
2286
|
+
ZXJlZCBieSBoaXMgc29uIFRzYXIgU2ltZW9uIHRoZSBHcmVhdC4gRHVyaW5n
|
2287
|
+
IHRoZSB0aW1lIG9mIHRoZSBTZWNvbmQgQnVsZ2FyaWFuIEVtcGlyZSBpdCB3
|
2288
|
+
YXMgYWxzbyBjb250ZXN0ZWQgYnkgQnVsZ2FyaWFuIGFuZCBCeXphbnRpbmUg
|
2289
|
+
Zm9yY2VzIGFuZCBlbmpveWVkIHBhcnRpY3VsYXIgcHJvc3Blcml0eSB1bmRl
|
2290
|
+
ciBCdWxnYXJpYW4gdHNhciBJdmFuIEFsZXhhbmRlciAoMTMzMeKAkzEzNzEp
|
2291
|
+
IHVudGlsIGl0IHdhcyBjb25xdWVyZWQgYnkgQ3J1c2FkZXJzIGxlZCBieSBB
|
2292
|
+
bWFkZXVzIFZJLCBDb3VudCBvZiBTYXZveSBpbiAxMzY2LiBUaGUgQnVsZ2Fy
|
2293
|
+
aWFuIHZlcnNpb24gb2YgdGhlIG5hbWUsIE5lc2ViYXIgb3IgTWVzZWJhciwg
|
2294
|
+
aGFzIGJlZW4gYXR0ZXN0ZWQgc2luY2UgdGhlIDExdGggY2VudHVyeS5cblxu
|
2295
|
+
TW9udW1lbnRzIGZyb20gdGhlIE1pZGRsZSBBZ2VzIGluY2x1ZGUgdGhlIDXi
|
2296
|
+
gJM2dGggY2VudHVyeSBTdGFyYSBNaXRyb3BvbGl5YSAoXCJvbGQgYmlzaG9w
|
2297
|
+
cmljXCI7IGFsc28gU3QgU29waGlhKSwgYSBiYXNpbGljYSB3aXRob3V0IGEg
|
2298
|
+
dHJhbnNlcHQ7IHRoZSAxMHRoIGNlbnR1cnkgY2h1cmNoIG9mIHRoZSBWaXJn
|
2299
|
+
aW47IGFuZCB0aGUgMTF0aCBjZW50dXJ5IE5vdmEgTWl0cm9wb2xpeWEgKFwi
|
2300
|
+
bmV3IGJpc2hvcHJpY1wiOyBhbHNvIFN0IFN0ZXBoZW4pIHdoaWNoIGNvbnRp
|
2301
|
+
bnVlZCB0byBiZSBlbWJlbGxpc2hlZCB1bnRpbCB0aGUgMTh0aCBjZW50dXJ5
|
2302
|
+
LiBJbiB0aGUgMTN0aCBhbmQgMTR0aCBjZW50dXJ5IGEgcmVtYXJrYWJsZSBz
|
2303
|
+
ZXJpZXMgb2YgY2h1cmNoZXMgd2VyZSBidWlsdDogU3QgVGhlb2RvcmUsIFN0
|
2304
|
+
IFBhcmFza2V2YSwgU3QgTWljaGFlbCBTdCBHYWJyaWVsLCBhbmQgU3QgSm9o
|
2305
|
+
biBBbGl0dXJnZXRvcy5cblxuVGhlIGNhcHR1cmUgb2YgdGhlIHRvd24gYnkg
|
2306
|
+
dGhlIFR1cmtzIGluIDE0NTMgbWFya2VkIHRoZSBzdGFydCBvZiBpdHMgZGVj
|
2307
|
+
bGluZSwgYnV0IGl0cyBhcmNoaXRlY3R1cmFsIGhlcml0YWdlIHJlbWFpbmVk
|
2308
|
+
IGFuZCB3YXMgZW5yaWNoZWQgaW4gdGhlIDE5dGggY2VudHVyeSBieSB0aGUg
|
2309
|
+
Y29uc3RydWN0aW9uIG9mIHdvb2RlbiBob3VzZXMgaW4gc3R5bGUgdHlwaWNh
|
2310
|
+
bCBmb3IgdGhlIEJ1bGdhcmlhbiBCbGFjayBTZWEgQ29hc3QgZHVyaW5nIHRo
|
2311
|
+
aXMgcGVyaW9kLiBJdCB3YXMgYSBrYXphIGNlbnRyZSBpbiDEsHNsaW15ZSBz
|
2312
|
+
YW5qYWsgb2YgRWRpcm5lIFByb3ZpbmNlIGJlZm9yZSAxODc4LiBBZnRlciB0
|
2313
|
+
aGUgTGliZXJhdGlvbiBvZiBCdWxnYXJpYSBmcm9tIE90dG9tYW4gcnVsZSBp
|
2314
|
+
biAxODc4LCBOZXNlYmFyIGJlY2FtZSBwYXJ0IG9mIHRoZSBhdXRvbm9tb3Vz
|
2315
|
+
IE90dG9tYW4gcHJvdmluY2Ugb2YgRWFzdGVybiBSdW1lbGlhIGFzIGEga2F6
|
2316
|
+
YSBjZW50cmUgaW4gQnVyZ2F6IHNhbmphayB1bnRpbCBpdCB1bml0ZWQgd2l0
|
2317
|
+
aCB0aGUgUHJpbmNpcGFsaXR5IG9mIEJ1bGdhcmlhIGluIDE4ODYuXG5cbkFy
|
2318
|
+
b3VuZCB0aGUgZW5kIG9mIHRoZSAxOXRoIGNlbnR1cnkgTmVzZWJhciB3YXMg
|
2319
|
+
YSBzbWFsbCB0b3duIG9mIEdyZWVrIGZpc2hlcm1lbiBhbmQgdmluZWdyb3dl
|
2320
|
+
cnMsIGJ1dCBkZXZlbG9wZWQgYXMgYSBrZXkgQnVsZ2FyaWFuIHNlYXNpZGUg
|
2321
|
+
cmVzb3J0IHNpbmNlIHRoZSBiZWdpbm5pbmcgb2YgdGhlIDIwdGggY2VudHVy
|
2322
|
+
eS4gQWZ0ZXIgMTkyNSBhIG5ldyB0b3duIHBhcnQgd2FzIGJ1aWx0IGFuZCB0
|
2323
|
+
aGUgaGlzdG9yaWMgT2xkIFRvd24gd2FzIHJlc3RvcmVkLlxuXG5OZXNlYmFy
|
2324
|
+
IGlzIHNvbWV0aW1lcyBzYWlkIHRvIGJlIHRoZSB0b3duIHdpdGggdGhlIGhp
|
2325
|
+
Z2hlc3QgbnVtYmVyIG9mIGNodXJjaGVzIHBlciBjYXBpdGEuWzFdLCBbMl0g
|
2326
|
+
QWx0aG91Z2ggdGhpcyBtaWdodCBiZSB3cm9uZywgdGhlaXIgbnVtYmVyIGFu
|
2327
|
+
ZCB2YXJpZXR5IGlzIHN0aWxsIGltcHJlc3NpdmUuIFNvbWUgb2YgdGhlIG1v
|
2328
|
+
c3QgZmFtb3VzIGluY2x1ZGU6XG5cbldoZXRoZXIgYnVpbHQgZHVyaW5nIHRo
|
2329
|
+
ZSBCeXphbnRpbmUsIEJ1bGdhcmlhbiBvciBPdHRvbWFuIHJ1bGUgb2YgdGhl
|
2330
|
+
IGNpdHksIHRoZSBjaHVyY2hlcyBvZiBOZXNlYmFyIHJlcHJlc2VudCB0aGUg
|
2331
|
+
cmljaCBhcmNoaXRlY3R1cmFsIGhlcml0YWdlIG9mIHRoZSBFYXN0ZXJuIE9y
|
2332
|
+
dGhvZG94IHdvcmxkIGFuZCBpbGx1c3RyYXRlIHRoZSBncmFkdWFsIGRldmVs
|
2333
|
+
b3BtZW50IGZyb20gRWFybHkgQ2hyaXN0aWFuIGJhc2lsaWNhcyB0byBtZWRp
|
2334
|
+
ZXZhbCBjcm9zcy1kb21lZCBjaHVyY2hlcy5cblxuTmVzZWJhciBHYXAgb24g
|
2335
|
+
TGl2aW5nc3RvbiBJc2xhbmQgaW4gdGhlIFNvdXRoIFNoZXRsYW5kIElzbGFu
|
2336
|
+
ZHMsIEFudGFyY3RpY2EgaXMgbmFtZWQgYWZ0ZXIgTmVzZWJhci4iLCJsb25n
|
2337
|
+
aXR1ZGUiOiIyNy43MyIsImxhdGl0dWRlIjoiNDIuNjU2MTEiLCJ0aXRsZSI6
|
2338
|
+
IkFuY2llbnQgQ2l0eSBvZiBOZXNzZWJhciJ9LHsidXBkYXRlZF9hdCI6IjIw
|
2339
|
+
MTItMDgtMjBUMTI6NDQ6MzgrMDI6MDAiLCJjcmVhdGVkX2F0IjoiMjAxMi0w
|
2340
|
+
OC0yMFQxMjo0NDozOCswMjowMCIsImNhcnRvZGJfaWQiOjYsInRoZV9nZW9t
|
2341
|
+
Ijoie1widHlwZVwiOlwiUG9pbnRcIixcImNvb3JkaW5hdGVzXCI6WzM4LjYx
|
2342
|
+
MjEsOC40MzQ5MV19Iiwid2hzX3NvdXJjZV9wYWdlIjoiaHR0cDovL3doYy51
|
2343
|
+
bmVzY28ub3JnL2VuL2xpc3QvMTIiLCJkYXRlX29mX2luc2NyaXB0aW9uIjoi
|
2344
|
+
MTk4MCIsIndoc19zaXRlX2lkIjoiMTIiLCJjb3VudHJ5IjoiRXRoaW9waWEi
|
2345
|
+
LCJuYW1lIjoiVGl5YSIsInNpemUiOiIiLCJpc29fY29kZSI6IkVUIiwiY3Jp
|
2346
|
+
dGVyaWEiOiJbaV0sW2l2XSIsImNvbW1lbnRzIjoiIiwid2lraXBlZGlhX2xp
|
2347
|
+
bmsiOiJodHRwOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL1RpeWEiLCJleHRl
|
2348
|
+
cm5hbF9saW5rcyI6IltVTkVTQ08gVGl5YSBTaXRlfGh0dHA6Ly93aGMudW5l
|
2349
|
+
c2NvLm9yZy9lbi9saXN0LzEyXSIsImVuZGFuZ2VyZWRfeWVhciI6IiIsImVk
|
2350
|
+
aXRlZF9yZWdpb24iOiJTb2RvIHdvcmVkYSwgR3VyYWdlIHpvbmUsIFNvdXRo
|
2351
|
+
ZXJuIE5hdGlvbiBOYXRpb25hbGl0aWVzICYgUGVvcGxlcyBSZWdpb24iLCJl
|
2352
|
+
bmRhbmdlcmVkX3JlYXNvbiI6IiIsInR5cGUiOiJjdWx0dXJhbCIsInJlZ2lv
|
2353
|
+
biI6IlNvZG8gd29yZWRhLCBHdXJhZ2Ugem9uZSwgU291dGhlcm4gTmF0aW9u
|
2354
|
+
IE5hdGlvbmFsaXRpZXMgJiBQZW9wbGVzIFJlZ2lvbiIsImRlc2NyaXB0aW9u
|
2355
|
+
IjoiVGl5YSBpcyBhIHRvd24gaW4gc291dGhlcm4gRXRoaW9waWEuIExvY2F0
|
2356
|
+
ZWQgaW4gdGhlIEd1cmFnZSBab25lIG9mIHRoZSBTb3V0aGVybiBOYXRpb25z
|
2357
|
+
LCBOYXRpb25hbGl0aWVzLCBhbmQgUGVvcGxlcyBSZWdpb24gc291dGggb2Yg
|
2358
|
+
QWRkaXMgQWJhYmEsIHRoZSB0b3duIGhhcyBhIGxhdGl0dWRlIGFuZCBsb25n
|
2359
|
+
aXR1ZGUgb2YgOMKwMjbigLJOIDM4wrAzN+KAskXvu78gLyDvu784LjQzM8Kw
|
2360
|
+
TiAzOC42MTfCsEXvu78gLyA4LjQzMzsgMzguNjE3Q29vcmRpbmF0ZXM6IDjC
|
2361
|
+
sDI24oCyTiAzOMKwMzfigLJF77u/IC8g77u/OC40MzPCsE4gMzguNjE3wrBF
|
2362
|
+
77u/IC8gOC40MzM7IDM4LjYxNy5cblxuVGl5YSBpcyBiZXN0IGtub3duIGZv
|
2363
|
+
ciBpdHMgYWRqYWNlbnQgYXJjaGVvbG9naWNhbCBzaXRlLCB3aGljaCBpcyBk
|
2364
|
+
aXN0aW5ndWlzaGVkIGJ5IDM2IHN0YW5kaW5nIHN0b25lcyBvciBzdGVsYWUs
|
2365
|
+
IFwiMzIgb2Ygd2hpY2ggYXJlIGVuZ3JhdmVkIHdpdGggZW5pZ21hdGljIHN5
|
2366
|
+
bWJvbHMsIG5vdGFibHkgc3dvcmRzLFwiIG1hcmtpbmcgYSBsYXJnZSwgcHJl
|
2367
|
+
aGlzdG9yaWMgYnVyaWFsIGNvbXBsZXguIEEgR2VybWFuIGV0aG5vZ3JhcGhp
|
2368
|
+
YyBleHBlZGl0aW9uIGhhZCB2aXNpdGVkIHRoZSBzaXRlIGluIEFwcmlsIDE5
|
2369
|
+
MzUsIGFuZCBoYWQgZm91bmQgYXQgb25lIGhvdXIncyBqb3VybmV5IHRvIHRo
|
2370
|
+
ZSBzb3V0aCBvZiB0aGUgY2FyYXZhbiBjYW1wIHRoZSBzdG9uZSBtb25vbGl0
|
2371
|
+
aHMgd2l0aCBzd29yZCBzeW1ib2wsIHdoaWNoIGhhZCBiZWVuIHNlZW4gZWFy
|
2372
|
+
bGllciBieSBOZXV2aWxsZSBhbmQgUMOocmUgQXphw69zLiBUaGUgYXJjaGVv
|
2373
|
+
bG9naWNhbCBzaXRlIHdhcyBkZXNpZ25hdGVkIGEgV29ybGQgSGVyaXRhZ2Ug
|
2374
|
+
U2l0ZSBpbiAxOTgwLlxuXG5PdGhlciBwb2ludHMgb2YgaW50ZXJlc3QgbmVh
|
2375
|
+
ciBUaXlhIGluY2x1ZGUgTWVsa2EgQXdhc2gsIHRoZSBIZXJhIFNoZXRhbiBj
|
2376
|
+
cmF0ZXIgbGFrZSwgYW5kIEFnZXNva2UgYSBwbGFjZSB3aGVyZSB2ZXJ5IHRh
|
2377
|
+
bGwgbmF0dXJhbGx5IG9yZGVyZWQgc3RvbmVibG9ja3MgY291bGQgYmUgc2Vl
|
2378
|
+
bi5cblxuQmFzZWQgb24gZmlndXJlcyBmcm9tIHRoZSBDZW50cmFsIFN0YXRp
|
2379
|
+
c3RpY2FsIEFnZW5jeSBpbiAyMDA1LCBUaXlhIGhhcyBhbiBlc3RpbWF0ZWQg
|
2380
|
+
dG90YWwgcG9wdWxhdGlvbiBvZiAzLDM2MyBvZiB3aG9tIDEsNjE1IGFyZSBt
|
2381
|
+
ZW4gYW5kIDEsNzQ4IGFyZSB3b21lbi4gVGhlIDE5OTQgbmF0aW9uYWwgY2Vu
|
2382
|
+
c3VzIHJlcG9ydGVkIHRoaXMgdG93biBoYWQgYSB0b3RhbCBwb3B1bGF0aW9u
|
2383
|
+
IG9mIDEsODU2IG9mIHdob20gODk0IHdlcmUgbWFsZXMgYW5kIDk2MiB3ZXJl
|
2384
|
+
IGZlbWFsZXMuIFRpeWEgaXMgb25lIG9mIHRocmVlIHRvd25zIGluIFNvZGRv
|
2385
|
+
IHdvcmVkYS4iLCJsb25naXR1ZGUiOiIzOC42MTIxIiwibGF0aXR1ZGUiOiI4
|
2386
|
+
LjQzNDkxIiwidGl0bGUiOiJUaXlhIn0seyJ1cGRhdGVkX2F0IjoiMjAxMi0w
|
2387
|
+
OC0yMFQxMjo0NDozOCswMjowMCIsImNyZWF0ZWRfYXQiOiIyMDEyLTA4LTIw
|
2388
|
+
VDEyOjQ0OjM4KzAyOjAwIiwiY2FydG9kYl9pZCI6NywidGhlX2dlb20iOiJ7
|
2389
|
+
XCJ0eXBlXCI6XCJQb2ludFwiLFwiY29vcmRpbmF0ZXNcIjpbMzIuNiwyNS43
|
2390
|
+
MzMzM119Iiwid2hzX3NvdXJjZV9wYWdlIjoiaHR0cDovL3doYy51bmVzY28u
|
2391
|
+
b3JnL2VuL2xpc3QvODciLCJkYXRlX29mX2luc2NyaXB0aW9uIjoiMTk3OSIs
|
2392
|
+
Indoc19zaXRlX2lkIjoiODciLCJjb3VudHJ5IjoiRWd5cHQiLCJuYW1lIjoi
|
2393
|
+
QW5jaWVudCBUaGViZXMgd2l0aCBpdHMgTmVjcm9wb2xpcyIsInNpemUiOiI3
|
2394
|
+
MzkwMDAwMC4wIiwiaXNvX2NvZGUiOiJFRyIsImNyaXRlcmlhIjoiW2ldLFtp
|
2395
|
+
aWldLFt2aV0iLCJjb21tZW50cyI6IiIsIndpa2lwZWRpYV9saW5rIjoiaHR0
|
2396
|
+
cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9UaGViZXMsX0VneXB0IiwiZXh0
|
2397
|
+
ZXJuYWxfbGlua3MiOiJbTW9yZSBpbmZvcm1hdGlvbiBvbiBhbmNpZW50IFRo
|
2398
|
+
ZWJlcywgYSBXb3JsZCBDdWx0dXJhbCBIZXJpdGFnZSBzaXRlfGh0dHA6Ly93
|
2399
|
+
aGMudW5lc2NvLm9yZy9lbi9saXN0Lzg3L10jW1RoZWJhbiBNYXBwaW5nIFBy
|
2400
|
+
b2plY3R8aHR0cDovL3d3dy50aGViYW5tYXBwaW5ncHJvamVjdC5jb20vXSNb
|
2401
|
+
UmFtZXNzZXVtL0FuY2llbnQgVGhlYmVzIERpZ2l0YWwgTWVkaWEgQXJjaGl2
|
2402
|
+
ZSAocGhvdG9zLCBsYXNlciBzY2FucywgcGFub3JhbWFzKXxodHRwOi8vYXJj
|
2403
|
+
aGl2ZS5jeWFyay5vcmcvYW5jaWVudC10aGViZXMtaW5mb10jW0lDT01PUyBI
|
2404
|
+
ZXJpdGFnZSBhdCBSaXNrIDIwMDEvMjAwMnxodHRwOi8vd3d3LmludGVybmF0
|
2405
|
+
aW9uYWwuaWNvbW9zLm9yZy9yaXNrLzIwMDEvZWd5cDIwMDEuaHRtXSIsImVu
|
2406
|
+
ZGFuZ2VyZWRfeWVhciI6IiIsImVkaXRlZF9yZWdpb24iOiJHb3Zlcm5vcmF0
|
2407
|
+
ZSBvZiBRaW5hIiwiZW5kYW5nZXJlZF9yZWFzb24iOiIiLCJ0eXBlIjoiY3Vs
|
2408
|
+
dHVyYWwiLCJyZWdpb24iOiJHb3Zlcm5vcmF0ZSBvZiBRaW5hIiwiZGVzY3Jp
|
2409
|
+
cHRpb24iOiJUaGViZXMgKM6Y4b+GzrLOsc65LCBUaMSTYmFpLCBBcmFiaWM6
|
2410
|
+
INi32YrYqNip4oCOLCDhuazEq2JhaCkgaXMgdGhlIEdyZWVrIG5hbWUgZm9y
|
2411
|
+
IGEgY2l0eSBpbiBBbmNpZW50IEVneXB0IGxvY2F0ZWQgYWJvdXQgODAwwqBr
|
2412
|
+
bSBzb3V0aCBvZiB0aGUgTWVkaXRlcnJhbmVhbiwgb24gdGhlIGVhc3QgYmFu
|
2413
|
+
ayBvZiB0aGUgcml2ZXIgTmlsZS4gVGhlIFRoZWJhbiBOZWNyb3BvbGlzIGlz
|
2414
|
+
IGxvY2F0ZWQgbmVhcmJ5IG9uIHRoZSB3ZXN0IGJhbmsgb2YgdGhlIE5pbGUu
|
2415
|
+
IFRoZWJlcyB3YXMgaW5oYWJpdGVkIGZyb20gYXJvdW5kIDMyMDAgQkMuIEl0
|
2416
|
+
IHdhcyB0aGUgZXBvbnltb3VzIGNhcGl0YWwgb2YgV2FzZXQsIHRoZSBmb3Vy
|
2417
|
+
dGggVXBwZXIgRWd5cHRpYW4gbm9tZS4gV2FzZXQgd2FzIHRoZSBjYXBpdGFs
|
2418
|
+
IG9mIEVneXB0IGR1cmluZyBwYXJ0IG9mIHRoZSAxMXRoIER5bmFzdHkgKE1p
|
2419
|
+
ZGRsZSBLaW5nZG9tKSBhbmQgbW9zdCBvZiB0aGUgMTh0aCBEeW5hc3R5IChO
|
2420
|
+
ZXcgS2luZ2RvbSksIHdoZW4gSGF0c2hlcHN1dCBidWlsdCBhIFJlZCBTZWEg
|
2421
|
+
ZmxlZXQgdG8gZmFjaWxpdGF0ZSB0cmFkZSBiZXR3ZWVuIFRoZWJlcyBSZWQg
|
2422
|
+
U2VhIHBvcnQgb2YgRWxpbSwgbW9kZXJuIFF1YXNpciwgYW5kIEVsYXQgYXQg
|
2423
|
+
dGhlIGhlYWQgb2YgdGhlIEd1bGYgb2YgQXFhYmEuIFRyYWRlcnMgYm91Z2h0
|
2424
|
+
IGZyYW5raW5jZW5zZSwgbXlycmgsIGJpdHVtZW4sIG5hdHJvbiwgZmluZSB3
|
2425
|
+
b3ZlbiBsaW5lbiwganVuaXBlciBvaWwgYW5kIGNvcHBlciBhbXVsZXRzIGZv
|
2426
|
+
ciB0aGUgbW9ydHVhcnkgaW5kdXN0cnkgYXQgS2FybmFrIHdpdGggTnViaWFu
|
2427
|
+
IGdvbGQuIFdpdGggdGhlIDE5dGggRHluYXN0eSB0aGUgc2VhdCBvZiBnb3Zl
|
2428
|
+
cm5tZW50IG1vdmVkIHRvIHRoZSBEZWx0YS4gVGhlIGFyY2hhZW9sb2dpY2Fs
|
2429
|
+
IHJlbWFpbnMgb2YgVGhlYmVzIG9mZmVyIGEgc3RyaWtpbmcgdGVzdGltb255
|
2430
|
+
IHRvIEVneXB0aWFuIGNpdmlsaXphdGlvbiBhdCBpdHMgaGVpZ2h0LiBUaGUg
|
2431
|
+
R3JlZWsgcG9ldCBIb21lciBleHRvbGxlZCB0aGUgd2VhbHRoIG9mIFRoZWJl
|
2432
|
+
cyBpbiB0aGUgSWxpYWQsIEJvb2sgOSAoYy4gOHRoIENlbnR1cnkgQkMpOiBc
|
2433
|
+
Ii4uLiBpbiBFZ3lwdGlhbiBUaGViZXMgdGhlIGhlYXBzIG9mIHByZWNpb3Vz
|
2434
|
+
IGluZ290cyBnbGVhbSwgdGhlIGh1bmRyZWQtZ2F0ZWQgVGhlYmVzLlwiXG5c
|
2435
|
+
blRoZSBuYW1lIFRoZWJhaSBpcyB0aGUgR3JlZWsgZGVzaWduYXRpb24gb2Yg
|
2436
|
+
dGhlIGFuY2llbnQgRWd5cHRpYW4gb3BldCBcIlRoZSBLYXJuYWsgVGVtcGxl
|
2437
|
+
XCIgKGZyb20gY29wdGljIHRhLXBlLCBUYS1vcGV0IGJlY2FtZSBUaGViYWkp
|
2438
|
+
LiBBdCB0aGUgc2VhdCBvZiB0aGUgVGhlYmFuIHRyaWFkIG9mIEFtdW4sIE11
|
2439
|
+
dCwgYW5kIEtob25zdSwgVGhlYmVzIHdhcyBrbm93biBpbiB0aGUgRWd5cHRp
|
2440
|
+
YW4gbGFuZ3VhZ2UgZnJvbSB0aGUgZW5kIG9mIHRoZSBOZXcgS2luZ2RvbSBh
|
2441
|
+
cyBuaXd0LWltbiwgXCJUaGUgQ2l0eSBvZiBBbXVuLlwiIFRoaXMgZm91bmQg
|
2442
|
+
aXRzIHdheSBpbnRvIHRoZSBIZWJyZXcgQmlibGUgYXMg16DXkCDXkNee15XX
|
2443
|
+
nyBuxY3KvCDKvMSBbcO0biAoTmFodW0gMzo4KSxcIm5vXCIgaW4gSGVicmV3
|
2444
|
+
IG1lYW5pbmcgY2l0eSB3aXRoIFwibm8gYW1vblwiIG9yIFwiQ2l0eSBvZiBB
|
2445
|
+
bW9uXCIgcmVmZXJyaW5nIHRvIHRoZSBFZ3lwdGlhbiBkZWl0eSBBbW9uLVJh
|
2446
|
+
LCBtb3N0IGxpa2VseSBpdCBpcyBhbHNvIHRoZSBzYW1lIGFzINeg15AgKFwi
|
2447
|
+
Tm9cIikgKEV6ZWtpZWwgMzA6MTQpLiBJbiBHcmVlayB0aGlzIG5hbWUgd2Fz
|
2448
|
+
IHJlbmRlcmVkIM6UzrnPjM+Dz4DOv867zrnPgiBEaW9zcG9saXMsIFwiQ2l0
|
2449
|
+
eSBvZiBaZXVzXCIsIGFzIFpldXMgd2FzIHRoZSBnb2Qgd2hvbSB0aGUgR3Jl
|
2450
|
+
ZWtzIGlkZW50aWZpZWQgd2l0aCBBbXVuLCBzZWUgaW50ZXJwcmV0YXRpbyBn
|
2451
|
+
cmFlY2EuIFRoZSBHcmVla3Mgc3VybmFtZWQgdGhlIGNpdHkgzrzOtc6zzqzO
|
2452
|
+
u863IG1lZ2FsZSwgXCJ0aGUgR3JlYXRcIiwgdG8gZGlmZmVyZW50aWF0ZSBp
|
2453
|
+
dCBmcm9tIG51bWVyb3VzIG90aGVyIGNpdGllcyBjYWxsZWQgRGlvc3BvbGlz
|
2454
|
+
LiBUaGUgUm9tYW5zIHJlbmRlcmVkIHRoZSBuYW1lIERpb3Nwb2xpcyBNYWdu
|
2455
|
+
YS5cblxuSW4gbW9kZXJuIHVzYWdlLCB0aGUgbW9ydHVhcnkgdGVtcGxlcyBh
|
2456
|
+
bmQgdG9tYnMgb24gdGhlIHdlc3QgYmFuayBvZiB0aGUgcml2ZXIgTmlsZSBh
|
2457
|
+
cmUgZ2VuZXJhbGx5IHRob3VnaHQgb2YgYXMgcGFydCBvZiBUaGViZXMuXG5c
|
2458
|
+
bkluIDE5NzksIHRoZSBydWlucyBvZiBhbmNpZW50IFRoZWJlcyB3ZXJlIGlu
|
2459
|
+
c2NyaWJlZCBieSBVTkVTQ08gYXMgYSBXb3JsZCBDdWx0dXJhbCBIZXJpdGFn
|
2460
|
+
ZSBzaXRlLiBUaGUgdHdvIGdyZWF0IHRlbXBsZXMsIG5vdyBjYWxsZWQgTHV4
|
2461
|
+
b3IgKEFyYWJpYzog2KfZhNij2YLYtdixLCBBbC1VceG5o3VyLCBcIlRoZSBw
|
2462
|
+
YWxhY2VzXCIpIGFuZCBhbC1LYXJuYWsgKNin2YTZg9ix2YbZgyksIHRoZSBW
|
2463
|
+
YWxsZXkgb2YgdGhlIEtpbmdzIGFuZCB0aGUgVmFsbGV5IG9mIHRoZSBRdWVl
|
2464
|
+
bnMgYXJlIGFtb25nIHRoZSBncmVhdCBhY2hpZXZlbWVudHMgb2YgYW5jaWVu
|
2465
|
+
dCBFZ3lwdC5cblxuVGhlIHNpdGUgb2YgVGhlYmVzIGlzIHBvcHVsYXRlZCBh
|
2466
|
+
dCBsZWFzdCBzaW5jZSB0aGUgTWlkZGxlIFBhbGVvbGl0aGljLlxuXG5cblxu
|
2467
|
+
Q29vcmRpbmF0ZXM6IDI1wrA0M+KAsjE04oCzTiAzMsKwMzbigLIzN+KAs0Xv
|
2468
|
+
u78gLyDvu78yNS43MjA1NsKwTiAzMi42MTAyOMKwRe+7vyAvIDI1LjcyMDU2
|
2469
|
+
OyAzMi42MTAyOCIsImxvbmdpdHVkZSI6IjMyLjYiLCJsYXRpdHVkZSI6IjI1
|
2470
|
+
LjczMzMzIiwidGl0bGUiOiJBbmNpZW50IFRoZWJlcyB3aXRoIGl0cyBOZWNy
|
2471
|
+
b3BvbGlzIn0seyJ1cGRhdGVkX2F0IjoiMjAxMi0wOC0yMFQxMjo0NDozOCsw
|
2472
|
+
MjowMCIsImNyZWF0ZWRfYXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4KzAyOjAw
|
2473
|
+
IiwiY2FydG9kYl9pZCI6OCwidGhlX2dlb20iOiJ7XCJ0eXBlXCI6XCJQb2lu
|
2474
|
+
dFwiLFwiY29vcmRpbmF0ZXNcIjpbMTYuMjUxNjcsNDMuNTEyNV19Iiwid2hz
|
2475
|
+
X3NvdXJjZV9wYWdlIjoiaHR0cDovL3doYy51bmVzY28ub3JnL2VuL2xpc3Qv
|
2476
|
+
ODEwIiwiZGF0ZV9vZl9pbnNjcmlwdGlvbiI6IjE5OTciLCJ3aHNfc2l0ZV9p
|
2477
|
+
ZCI6IjgxMCIsImNvdW50cnkiOiJDcm9hdGlhIiwibmFtZSI6Ikhpc3Rvcmlj
|
2478
|
+
IENpdHkgb2YgVHJvZ2lyIiwic2l6ZSI6IjY0MDAwLjAiLCJpc29fY29kZSI6
|
2479
|
+
IkhSIiwiY3JpdGVyaWEiOiJbaWldLFtpdl0iLCJjb21tZW50cyI6IiIsIndp
|
2480
|
+
a2lwZWRpYV9saW5rIjoiaHR0cDovL2VuLndpa2lwZWRpYS5vcmcvd2lraS9U
|
2481
|
+
cm9naXIiLCJleHRlcm5hbF9saW5rcyI6IiIsImVuZGFuZ2VyZWRfeWVhciI6
|
2482
|
+
IiIsImVkaXRlZF9yZWdpb24iOiJDb3VudHkgb2YgU3BsaXQtRGFsbWF0aWEi
|
2483
|
+
LCJlbmRhbmdlcmVkX3JlYXNvbiI6IiIsInR5cGUiOiJjdWx0dXJhbCIsInJl
|
2484
|
+
Z2lvbiI6IkNvdW50eSBvZiBTcGxpdC1EYWxtYXRpYSIsImRlc2NyaXB0aW9u
|
2485
|
+
IjoiIiwibG9uZ2l0dWRlIjoiMTYuMjUxNjciLCJsYXRpdHVkZSI6IjQzLjUx
|
2486
|
+
MjUiLCJ0aXRsZSI6Ikhpc3RvcmljIENpdHkgb2YgVHJvZ2lyIn0seyJ1cGRh
|
2487
|
+
dGVkX2F0IjoiMjAxMi0wOC0yMFQxMjo0NDozOCswMjowMCIsImNyZWF0ZWRf
|
2488
|
+
YXQiOiIyMDEyLTA4LTIwVDEyOjQ0OjM4KzAyOjAwIiwiY2FydG9kYl9pZCI6
|
2489
|
+
OSwidGhlX2dlb20iOiJ7XCJ0eXBlXCI6XCJQb2ludFwiLFwiY29vcmRpbmF0
|
2490
|
+
ZXNcIjpbLTkwLjY2NjY2NywxNC41NjY2NjddfSIsIndoc19zb3VyY2VfcGFn
|
2491
|
+
ZSI6Imh0dHA6Ly93aGMudW5lc2NvLm9yZy9lbi9saXN0LzY1IiwiZGF0ZV9v
|
2492
|
+
Zl9pbnNjcmlwdGlvbiI6IjE5NzkiLCJ3aHNfc2l0ZV9pZCI6IjY1IiwiY291
|
2493
|
+
bnRyeSI6Ikd1YXRlbWFsYSIsIm5hbWUiOiJBbnRpZ3VhIEd1YXRlbWFsYSIs
|
2494
|
+
InNpemUiOiI0OTAwMDAuMCIsImlzb19jb2RlIjoiR1QiLCJjcml0ZXJpYSI6
|
2495
|
+
IltpaV0sW2lpaV0sW2l2XSIsImNvbW1lbnRzIjoiIiwid2lraXBlZGlhX2xp
|
2496
|
+
bmsiOiJodHRwOi8vZW4ud2lraXBlZGlhLm9yZy93aWtpL0FudGlndWFfR3Vh
|
2497
|
+
dGVtYWxhIiwiZXh0ZXJuYWxfbGlua3MiOiJbQW50aWd1YSBJbmZvcm1hdGlv
|
2498
|
+
biBhbmQgRGlyZWN0b3J5IHNpdGUgaW4gRW5nbGlzaHxodHRwOi8vd3d3LmFu
|
2499
|
+
dGlndWFkYWlseXBob3RvLmNvbS9dI1tPZmZpY2lhbCBTaXRlIGluIFNwYW5p
|
2500
|
+
c2h8aHR0cDovL3BhdHJpbW9uaW9tdW5kaWFsZ3VhdGVtYWxhLm9yZy9sYS1h
|
2501
|
+
bnRpZ3VhLmh0bWxdI1tUcmF2ZWwgZ3VpZGV8aHR0cDovL3JvYWR0b2FudGln
|
2502
|
+
dWEuY29tXSNbUGFub3JhbWljIDM2MMKwIFBpY3R1cmVzIG9mIEFudGlndWEg
|
2503
|
+
R3VhdGVtYWxhfGh0dHA6Ly93d3cuZ3VhdGUzNjAuY29tL2dhbGVyaWEvZGV0
|
2504
|
+
YWlscy5waHA/aW1hZ2VfaWQ9M10iLCJlbmRhbmdlcmVkX3llYXIiOiIiLCJl
|
2505
|
+
ZGl0ZWRfcmVnaW9uIjoiRGVwYXJ0bWVudCBvZiBTYWNhdGVww4PCqXF1ZXos
|
2506
|
+
IFBhbmNob3kgVmFsbGV5IiwiZW5kYW5nZXJlZF9yZWFzb24iOiIiLCJ0eXBl
|
2507
|
+
IjoiY3VsdHVyYWwiLCJyZWdpb24iOiJEZXBhcnRtZW50IG9mIFNhY2F0ZXDD
|
2508
|
+
g8KpcXVleiwgUGFuY2hveSBWYWxsZXkiLCJkZXNjcmlwdGlvbiI6IkxhIEFu
|
2509
|
+
dGlndWEgR3VhdGVtYWxhIChjb21tb25seSByZWZlcnJlZCB0byBhcyBqdXN0
|
2510
|
+
IEFudGlndWEgb3IgTGEgQW50aWd1YSkgaXMgYSBjaXR5IGluIHRoZSBjZW50
|
2511
|
+
cmFsIGhpZ2hsYW5kcyBvZiBHdWF0ZW1hbGEgZmFtb3VzIGZvciBpdHMgd2Vs
|
2512
|
+
bC1wcmVzZXJ2ZWQgU3BhbmlzaCBNdWTDqWphci1pbmZsdWVuY2VkQmFyb3F1
|
2513
|
+
ZSBhcmNoaXRlY3R1cmUgYXMgd2VsbCBhcyBhIG51bWJlciBvZiBzcGVjdGFj
|
2514
|
+
dWxhciBydWlucyBvZiBjb2xvbmlhbCBjaHVyY2hlcy4gSXQgaGFzIGJlZW4g
|
2515
|
+
ZGVzaWduYXRlZCBhIFVORVNDTyBXb3JsZCBIZXJpdGFnZSBTaXRlLlxuXG5B
|
2516
|
+
bnRpZ3VhIEd1YXRlbWFsYSBzZXJ2ZXMgYXMgdGhlIG11bmljaXBhbCBzZWF0
|
2517
|
+
IGZvciB0aGUgc3Vycm91bmRpbmcgbXVuaWNpcGFsaXR5IG9mIHRoZSBzYW1l
|
2518
|
+
IG5hbWUuIEl0IGFsc28gc2VydmVzIGFzIHRoZSBkZXBhcnRtZW50YWwgY2Fw
|
2519
|
+
aXRhbCBvZiBTYWNhdGVww6lxdWV6IERlcGFydG1lbnQuXG5cblRoZSBjaXR5
|
2520
|
+
IGhhZCBhIHBlYWsgcG9wdWxhdGlvbiBvZiBzb21lIDYwLDAwMCBpbiB0aGUg
|
2521
|
+
MTc3MHM7IHRoZSBidWxrIG9mIHRoZSBwb3B1bGF0aW9uIG1vdmVkIGF3YXkg
|
2522
|
+
aW4gdGhlIGxhdGUgMTh0aCBjZW50dXJ5LiBEZXNwaXRlIHNpZ25pZmljYW50
|
2523
|
+
IHBvcHVsYXRpb24gZ3Jvd3RoIGluIHRoZSBsYXRlIDIwdGggY2VudHVyeSwg
|
2524
|
+
dGhlIGNpdHkgaGFkIG9ubHkgcmVhY2hlZCBoYWxmIHRoYXQgbnVtYmVyIGJ5
|
2525
|
+
IHRoZSAxOTkwcy4gQWNjb3JkaW5nIHRvIHRoZSAyMDA3IGNlbnN1cywgdGhl
|
2526
|
+
IGNpdHkgaGFzIHNvbWUgMzQsNjg1IGluaGFiaXRhbnRzLlxuXG5MYSBBbnRp
|
2527
|
+
Z3VhIEd1YXRlbWFsYSBtZWFucyB0aGUgXCJPbGQgR3VhdGVtYWxhXCIgYW5k
|
2528
|
+
IHdhcyB0aGUgdGhpcmQgY2FwaXRhbCBvZiBHdWF0ZW1hbGEuIFRoZSBmaXJz
|
2529
|
+
dCBjYXBpdGFsIG9mIEd1YXRlbWFsYSB3YXMgZm91bmRlZCBvbiB0aGUgc2l0
|
2530
|
+
ZSBvZiBhIEtha2NoaWtlbC1NYXlhIGNpdHksIG5vdyBjYWxsZWQgSXhpbWNo
|
2531
|
+
ZSwgb24gTW9uZGF5LCBKdWx5IDI1LCAxNTI04oCUdGhlIGRheSBvZiBTYWlu
|
2532
|
+
dCBKYW1lc+KAlGFuZCB0aGVyZWZvcmUgbmFtZWQgQ2l1ZGFkIGRlIFNhbnRp
|
2533
|
+
YWdvIGRlIGxvcyBDYWJhbGxlcm9zIGRlIEdvYXRoZW1hbGFuIChDaXR5IG9m
|
2534
|
+
IFNhaW50IEphbWVzIG9mIHRoZSBLbmlnaHRzIG9mIEd1YXRlbWFsYSkuIE5h
|
2535
|
+
dHVyYWxseSwgU3QuIEphbWVzIGJlY2FtZSB0aGUgcGF0cm9uIHNhaW50IG9m
|
2536
|
+
IHRoZSBjaXR5LlxuXG5BZnRlciBzZXZlcmFsIENha2NoaXF1ZWwgdXByaXNp
|
2537
|
+
bmdzLCB0aGUgY2FwaXRhbCB3YXMgbW92ZWQgdG8gYSBtb3JlIHN1aXRhYmxl
|
2538
|
+
IHNpdGUgaW4gdGhlIFZhbGxleSBvZiBBbG90ZW5hbmdvIChSaW8gR3VhY2Fs
|
2539
|
+
YXRlKSBvbiBOb3ZlbWJlciAyMiwgMTUyNywgYW5kIGtlcHQgaXRzIG9yaWdp
|
2540
|
+
bmFsIG5hbWUuIFdoZW4gdGhpcyBjaXR5LCBvbiB0aGUgc2l0ZSBvZiBwcmVz
|
2541
|
+
ZW50LWRheSBTYW4gTWlndWVsIEVzY29iYXIsIHdhcyBkZXN0cm95ZWQgb24g
|
2542
|
+
U2VwdGVtYmVyIDExLCAxNTQxIGJ5IGEgZGV2YXN0YXRpbmcgbGFoYXIgZnJv
|
2543
|
+
bSB0aGUgVm9sY8OhbiBkZSBBZ3VhLCB0aGUgY29sb25pYWwgYXV0aG9yaXRp
|
2544
|
+
ZXMgZGVjaWRlZCB0byBtb3ZlIG9uY2UgbW9yZSwgdGhpcyB0aW1lIHRvIHRo
|
2545
|
+
ZSBQYW5jaG95IFZhbGxleS4gU28sIG9uIE1hcmNoIDEwLCAxNTQzIHRoZSBT
|
2546
|
+
cGFuaXNoIGNvbnF1aXN0YWRvcnMgZm91bmRlZCBwcmVzZW50LWRheSBBbnRp
|
2547
|
+
Z3VhLCBhbmQgYWdhaW4sIGl0IHdhcyBuYW1lZCBTYW50aWFnbyBkZSBsb3Mg
|
2548
|
+
Q2FiYWxsZXJvcy4gRm9yIG1vcmUgdGhhbiAyMDAgeWVhcnMgaXQgc2VydmVk
|
2549
|
+
IGFzIHRoZSBzZWF0IG9mIHRoZSBtaWxpdGFyeSBnb3Zlcm5vciBvZiB0aGUg
|
2550
|
+
U3BhbmlzaCBjb2xvbnkgb2YgR3VhdGVtYWxhLCBhIGxhcmdlIHJlZ2lvbiB0
|
2551
|
+
aGF0IGluY2x1ZGVkIGFsbW9zdCBhbGwgb2YgcHJlc2VudC1kYXkgQ2VudHJh
|
2552
|
+
bCBBbWVyaWNhIGFuZCB0aGUgc291dGhlcm5tb3N0IFN0YXRlIG9mIE1leGlj
|
2553
|
+
bzogQ2hpYXBhcy4gSW4gMTU2NiBLaW5nIEZlbGlwZSBJSSBvZiBTcGFpbiBn
|
2554
|
+
YXZlIGl0IHRoZSB0aXRsZSBvZiBcIk11eSBOb2JsZSB5IE11eSBMZWFsXCIg
|
2555
|
+
KFwiVmVyeSBOb2JsZSBhbmQgVmVyeSBMb3lhbFwiKS5cblxuT24gU2VwdGVt
|
2556
|
+
YmVyIDI5LCAxNzE3LCBhbiBlc3RpbWF0ZWQgNy40IG1hZ25pdHVkZSBlYXJ0
|
2557
|
+
aHF1YWtlIGhpdCBBbnRpZ3VhIEd1YXRlbWFsYSwgYW5kIGRlc3Ryb3llZCBv
|
2558
|
+
dmVyIDMsMDAwIGJ1aWxkaW5ncy4gTXVjaCBvZiB0aGUgY2l0eSdzIGFyY2hp
|
2559
|
+
dGVjdHVyZSB3YXMgcnVpbmVkLiBUaGUgZGFtYWdlIHRoZSBlYXJ0aHF1YWtl
|
2560
|
+
IGRpZCB0byB0aGUgY2l0eSBtYWRlIGF1dGhvcml0aWVzIGNvbnNpZGVyIG1v
|
2561
|
+
dmluZyB0aGUgY2FwaXRhbCB0byBhbm90aGVyIGNpdHkuXG5cbkluIDE3NzMs
|
2562
|
+
IHRoZSBTYW50YSBNYXJ0YSBlYXJ0aHF1YWtlcyBkZXN0cm95ZWQgbXVjaCBv
|
2563
|
+
ZiB0aGUgdG93biwgd2hpY2ggbGVkIHRvIHRoZSB0aGlyZCBjaGFuZ2UgaW4g
|
2564
|
+
bG9jYXRpb24gZm9yIHRoZSBjaXR5LiBUaGUgU3BhbmlzaCBDcm93biBvcmRl
|
2565
|
+
cmVkICgxNzc2KSB0aGUgcmVtb3ZhbCBvZiB0aGUgY2FwaXRhbCB0byBhIHNh
|
2566
|
+
ZmVyIGxvY2F0aW9uLCB0aGUgVmFsbGV5IG9mIHRoZSBTaHJpbmUsIHdoZXJl
|
2567
|
+
IEd1YXRlbWFsYSBDaXR5LCB0aGUgbW9kZXJuIGNhcGl0YWwgb2YgR3VhdGVt
|
2568
|
+
YWxhLCBub3cgc3RhbmRzLiBUaGlzIG5ldyBjaXR5IGRpZCBub3QgcmV0YWlu
|
2569
|
+
IGl0cyBvbGQgbmFtZSBhbmQgd2FzIGNocmlzdGVuZWQgTnVldmEgR3VhdGVt
|
2570
|
+
YWxhIGRlIGxhIEFzdW5jacOzbiAoTmV3IEd1YXRlbWFsYSBvZiB0aGUgQXNj
|
2571
|
+
ZW5zaW9uKSBhbmQgaXRzIHBhdHJvbiBzYWludCBpcyBPdXIgTGFkeSBvZiBB
|
2572
|
+
c2NlbnNpb24uIFRoZSBiYWRseSBkYW1hZ2VkIGNpdHkgb2YgU2FudGlhZ28g
|
2573
|
+
ZGUgbG9zIENhYmFsbGVyb3Mgd2FzIG9yZGVyZWQgYWJhbmRvbmVkLCBhbHRo
|
2574
|
+
b3VnaCBub3QgZXZlcnlvbmUgbGVmdCwgYW5kIHdhcyB0aGVyZWFmdGVyIHJl
|
2575
|
+
ZmVycmVkIHRvIGFzIGxhIEFudGlndWEgR3VhdGVtYWxhICh0aGUgT2xkIEd1
|
2576
|
+
YXRlbWFsYSkuXG5cbkNlbnRyYWwgUGFyayAoUGFycXVlIENlbnRyYWwpIGlz
|
2577
|
+
IHRoZSBoZWFydCBvZiB0aGUgY2l0eS4gVGhlIHJlY29uc3RydWN0ZWQgZm91
|
2578
|
+
bnRhaW4gdGhlcmUgaXMgYSBwb3B1bGFyIGdhdGhlcmluZyBzcG90LiBPZmYg
|
2579
|
+
dG8gdGhlIHNpZGUgb2YgdGhlIENlbnRyYWwgUGFyaywgdGhlIEFyY28gZGUg
|
2580
|
+
U2FudGEgQ2F0YWxpbmEgaXMgYW1vbmcgdGhlIG1hbnkgbm90YWJsZSBhcmNo
|
2581
|
+
aXRlY3R1cmFsIGxhbmRtYXJrcyBvZiBMYSBBbnRpZ3VhLlxuXG5MYSBBbnRp
|
2582
|
+
Z3VhIGlzIG5vdGVkIGZvciBpdHMgdmVyeSBlbGFib3JhdGUgcmVsaWdpb3Vz
|
2583
|
+
IGNlbGVicmF0aW9ucyBkdXJpbmcgTGVudCAoQ3VhcmVzbWEpLCBsZWFkaW5n
|
2584
|
+
IHVwIHRvIEhvbHkgV2VlayAoU2VtYW5hIFNhbnRhKSBhbmQgRWFzdGVyIChQ
|
2585
|
+
YXNjdWEpLiBFYWNoIFN1bmRheSBpbiBMZW50LCBvbmUgb2YgdGhlIGxvY2Fs
|
2586
|
+
IHBhcmlzaGVzIHNwb25zb3IgYSBQcm9jZXNzaW9uIHRocm91Z2ggdGhlIHN0
|
2587
|
+
cmVldHMgb2YgQW50aWd1YS4gRWxhYm9yYXRlIGFuZCBiZWF1dGlmdWwgYXJ0
|
2588
|
+
aXN0aWMgY2FycGV0cyBwcmVkb21pbmFudGx5IG1hZGUgb2YgZHllZCBzYXdk
|
2589
|
+
dXN0LCBmbG93ZXJzIGFuZCBldmVuIGZydWl0cyBhbmQgdmVnZXRhYmxlcyBh
|
2590
|
+
ZG9ybiB0aGUgcHJvY2Vzc2lvbnMnIHBhdGguXG5cbkR1ZSB0byBpdHMgcG9w
|
2591
|
+
dWxhcml0eSBhbW9uZ3N0IHRvdXJpc3RzIGFuZCBpdHMgdmVyeSB3ZWxsIGRl
|
2592
|
+
dmVsb3BlZCB0b3VyaXNtIGluZnJhc3RydWN0dXJlLCBBbnRpZ3VhIEd1YXRl
|
2593
|
+
bWFsYSBpcyBvZnRlbiB1c2VkIGFzIGEgY2VudHJhbCBsb2NhdGlvbiBpbiB3
|
2594
|
+
aGljaCBtYW55IGNob29zZSB0byBzZXQgdXAgYmFzZSBhbmQgZnJvbSBoZXJl
|
2595
|
+
LCB2aXNpdCBvdGhlciB0b3VyaXN0IGFyZWFzIGluIEd1YXRlbWFsYSBhbmQg
|
2596
|
+
Q2VudHJhbCBBbWVyaWNhLiBDcnVpc2Ugc2hpcHMgdGhhdCBkb2NrIGF0IEd1
|
2597
|
+
YXRlbWFsYW4gcG9ydHMgb2ZmZXIgdHJpcHMgdG8gQW50aWd1YSBmcm9tIGJv
|
2598
|
+
dGggdGhlIFBhY2lmaWMgYW5kIEF0bGFudGljLlxuXG5BbnRpZ3VhIGFsc28g
|
2599
|
+
aG9sZHMgYSBzaXplYWJsZSByZXRpcmVtZW50IGNvbW11bml0eSBmcm9tIHRo
|
2600
|
+
ZSBVUyBhcyB3ZWxsIGFzIEV1cm9wZSBhcyBpdHMgY29sb25pYWwgY2hhcm0g
|
2601
|
+
aGFzIGFwcGVhbGVkIHRvIG1hbnkgd2hvIGhhdmUgY3Jvc3NlZCBwYXRocyB3
|
2602
|
+
aXRoIHRoaXMgZW5jaGFudGluZyBhbmQgcm9tYW50aWMgdG93bi5cblxuVG91
|
2603
|
+
cmlzbSBpcyB0aGUgbWFpbiBkcml2ZXIgb2YgdGhlIGVjb25vbXkuIEFudGln
|
2604
|
+
dWEgaXMgYWxzbyBhIGNvZmZlZSBwcm9kdWNpbmcgcmVnaW9uIG9mIEFuYWNh
|
2605
|
+
ZsOpLlxuXG5BbnRpZ3VhIGlzIGtub3duIGFzIGEgZGVzdGluYXRpb24gZm9y
|
2606
|
+
IHBlb3BsZSB3aG8gd2FudCB0byBsZWFybiBTcGFuaXNoIHRocm91Z2ggaW1t
|
2607
|
+
ZXJzaW9uLiBUaGVyZSBhcmUgbWFueSBTcGFuaXNoIGxhbmd1YWdlIHNjaG9v
|
2608
|
+
bHMgaW4gQW50aWd1YSBhbmQgaXQgaXMgb25lIG9mIHRoZSBtb3N0IHBvcHVs
|
2609
|
+
YXIgYW5kIGJlc3QgcmVjb2duaXplZCBjZW50ZXJzIGZvciBTcGFuaXNoIGxh
|
2610
|
+
bmd1YWdlIHN0dWR5IGJ5IHN0dWRlbnRzIGZyb20gRXVyb3BlIGFuZCBOb3J0
|
2611
|
+
aCBBbWVyaWNhLiBMYW5ndWFnZSBpbnN0aXR1dGVzIGFyZSBvbmUgb2YgdGhl
|
2612
|
+
IHByaW1hcnkgaW5kdXN0cmllcyBvZiBBbnRpZ3VhLCBhbG9uZyB3aXRoIHRv
|
2613
|
+
dXJpc20uXG5cblRoZSBVbml2ZXJzaXR5IG9mIFNhbiBDYXJsb3MgaW4gQW50
|
2614
|
+
aWd1YSB3YXMgZm91bmRlZCBieSB0aGUgUGFwYWwgQnVsbCBvZiBQb3BlIElu
|
2615
|
+
bm9jZW50IFhJIGlzc3VlZCBkYXRlZCAxOCBKdW5lIDE2ODcuXG5cbkFudGln
|
2616
|
+
dWEgR0ZDIGZvb3RiYWxsIGNsdWIgaGFzIHBsYXllZCBpbiB0aGUgR3VhdGVt
|
2617
|
+
YWxhIHRvcCBkaXZpc2lvbiBmb3Igc2V2ZXJhbCB5ZWFycyBidXQgaGF2ZSBi
|
2618
|
+
ZWVuIHBsYXlpbmcgaW4gdGhlIHNlY29uZCBkaXZpc2lvbiBsYXRlbHkuIFRo
|
2619
|
+
ZWlyIGhvbWUgc3RhZGl1bSBpcyB0aGUgRXN0YWRpbyBQZW5zYXRpdm8gd2hp
|
2620
|
+
Y2ggaGFzIGEgY2FwYWNpdHkgb2YgOSwwMDAuIFRoZXkgYXJlIG5pY2tuYW1l
|
2621
|
+
ZCBMb3MgcGFuemFzIHZlcmRlcyAoXCJHcmVlbiBiZWxsaWVzXCIpLlxuXG5c
|
2622
|
+
blxuQSBudW1iZXIgb2YgcmVzdGF1cmFudHMgY2FuIGJlIGZvdW5kIGluIEFu
|
2623
|
+
dGlndWEuIE1hbnkgc21hbGwgZWF0ZXJpZXMgY2FuIGJlIGZvdW5kIGF0IHRo
|
2624
|
+
ZSBBbnRpZ3VhIG1hcmtldHBsYWNlIGxvY2F0ZWQgbmV4dCB0byB0aGUgY2Vu
|
2625
|
+
dHJhbCBidXMgc3RvcCwgbmV4dCB0byB0aGUgbWFpbiBtYXJrZXQuIFUuUy4g
|
2626
|
+
c3R5bGUgZmFzdCBmb29kIHJlc3RhdXJhbnRzIGluY2x1ZGluZyBcIkJ1cmdl
|
2627
|
+
ciBLaW5nXCIsIFwiTWNEb25hbGQnc1wiLCBhcyB3ZWxsIGFzIEd1YXRlbWFs
|
2628
|
+
YW4gZmF2b3JpdGUgXCJQb2xsbyBDYW1wZXJvXCIgYXJlIGluIHRoZSBjaXR5
|
2629
|
+
LlxuXG5BbnRpZ3VhIGlzIGEgZ3Jvd2luZyB0b3VyaXN0IGRlc3RpbmF0aW9u
|
2630
|
+
IGluIEd1YXRlbWFsYSBhcyBpdCBpcyBjbG9zZSB0byBHdWF0ZW1hbGEgQ2l0
|
2631
|
+
eSBidXQgaXMgbXVjaCBjYWxtZXIgYW5kIHNhZmVyLCB3aXRoIG1vcmUgdG91
|
2632
|
+
cmlzdCBvcmllbnRlZCBhY3Rpdml0aWVzLiBJdCBpcyBwb3NzaWJsZSB0byB0
|
2633
|
+
YWtlIGJ1c2VzIGZyb20gQW50aWd1YSB0byBtYW55IHBhcnRzIG9mIEd1YXRl
|
2634
|
+
bWFsYSwgbWFueSB0cmF2ZWwgYWdlbmNpZXMgb2ZmZXIgc2h1dHRsZXMgdG8g
|
2635
|
+
dGhlIG1haW4gdG91cmlzdGljIHBsYWNlczogTW9udGVycmljbyBiZWFjaCwg
|
2636
|
+
QXRpdGxhbiBMYWtlLCBDb2JhbiwgVGlrYWwgb3IgZXZlbiBDb3BhbiBpbiBI
|
2637
|
+
b25kdXJhcywgdGhvdWdoIHRoZSB0cmFuc3BvcnRhdGlvbiBpcyBtb3JlIGNl
|
2638
|
+
bnRyYWwgaW4gR3VhdGVtYWxhIENpdHkuXG5cblRocmVlIGxhcmdlIHZvbGNh
|
2639
|
+
bm9lcyBkb21pbmF0ZSB0aGUgaG9yaXpvbiBhcm91bmQgQW50aWd1YS5cblxu
|
2640
|
+
VGhlIG1vc3QgY29tbWFuZGluZywgdG8gdGhlIHNvdXRoIG9mIHRoZSBjaXR5
|
2641
|
+
LCBpcyB0aGUgVm9sY8OhbiBkZSBBZ3VhIG9yIFwiVm9sY2FubyBvZiBXYXRl
|
2642
|
+
clwiLCBzb21lIDM3NjYgbWV0ZXJzICgxMiwzNTbCoGZ0KSBoaWdoLiBXaGVu
|
2643
|
+
IHRoZSBTcGFuaXNoIGFycml2ZWQsIHRoZSBpbmhhYml0YW50cyBvZiB0aGUg
|
2644
|
+
em9uZSwgS2FrY2hpa2VsIE1heWFzLCBjYWxsZWQgaXQgSHVuYXDDuiAoYW5k
|
2645
|
+
IHRoZXkgc3RpbGwgZG8pLiBIb3dldmVyLCBpdCBiZWNhbWUga25vd24gYXMg
|
2646
|
+
Vm9sY8OhbiBkZSBBZ3VhIGFmdGVyIGEgbXVkc2xpZGUgZnJvbSB0aGUgdm9s
|
2647
|
+
Y2FubyBidXJpZWQgdGhlIHNlY29uZCBzaXRlIG9mIHRoZSBjYXBpdGFsLCB3
|
2648
|
+
aGljaCBwcm9tcHRlZCB0aGUgU3BhbmlzaCBhdXRob3JpdGllcyB0byBtb3Zl
|
2649
|
+
IHRoZSBjYXBpdGFsIHRvIHByZXNlbnQtZGF5IEFudGlndWEuIFRoZSBvcmln
|
2650
|
+
aW5hbCBzaXRlIG9mIHRoZSAybmQgY2FwaXRhbCBpcyBub3cgdGhlIHZpbGxh
|
2651
|
+
Z2UgU2FuIE1pZ3VlbCBFc2NvYmFyLlxuXG5UbyB0aGUgd2VzdCBvZiB0aGUg
|
2652
|
+
Y2l0eSBhcmUgYSBwYWlyIG9mIHBlYWtzLCBBY2F0ZW5hbmdvLCBsYXN0IGVy
|
2653
|
+
dXB0ZWQgaW4gMTk3Miwgc29tZSAzOTc2IG1ldGVycyAoMTMwNDXCoGZ0KSBo
|
2654
|
+
aWdoLCBhbmQgdGhlIFZvbGPDoW4gZGUgRnVlZ28gb3IgXCJWb2xjYW5vIG9m
|
2655
|
+
IEZpcmVcIiwgc29tZSAzNzYzIG1ldGVycyAoMTIzNDbCoGZ0KSBoaWdoLiBc
|
2656
|
+
IkZ1ZWdvXCIgaXMgZmFtb3VzIGZvciBiZWluZyBhbG1vc3QgY29uc3RhbnRs
|
2657
|
+
eSBhY3RpdmUgYXQgYSBsb3cgbGV2ZWwuIFNtb2tlIGlzc3VlcyBmcm9tIGl0
|
2658
|
+
cyB0b3AgZGFpbHksIGJ1dCBsYXJnZXIgZXJ1cHRpb25zIGFyZSByYXJlLlxu
|
2659
|
+
XG5Db29yZGluYXRlczogMTTCsDM04oCyTiA5MMKwNDTigLJX77u/IC8g77u/
|
2660
|
+
MTQuNTY3wrBOIDkwLjczM8KwV++7vyAvIDE0LjU2NzsgLTkwLjczMyIsImxv
|
2661
|
+
bmdpdHVkZSI6Ii05MC42NjY2NjciLCJsYXRpdHVkZSI6IjE0LjU2NjY2NyIs
|
2662
|
+
InRpdGxlIjoiQW50aWd1YSBHdWF0ZW1hbGEifSx7InVwZGF0ZWRfYXQiOiIy
|
2663
|
+
MDEyLTA4LTIwVDEyOjQ0OjM4KzAyOjAwIiwiY3JlYXRlZF9hdCI6IjIwMTIt
|
2664
|
+
MDgtMjBUMTI6NDQ6MzgrMDI6MDAiLCJjYXJ0b2RiX2lkIjoxMCwidGhlX2dl
|
2665
|
+
b20iOiJ7XCJ0eXBlXCI6XCJQb2ludFwiLFwiY29vcmRpbmF0ZXNcIjpbMTMu
|
2666
|
+
MzY3NSw0NS43NjgzMzNdfSIsIndoc19zb3VyY2VfcGFnZSI6Imh0dHA6Ly93
|
2667
|
+
aGMudW5lc2NvLm9yZy9lbi9saXN0LzgyNSIsImRhdGVfb2ZfaW5zY3JpcHRp
|
2668
|
+
b24iOiIxOTk4Iiwid2hzX3NpdGVfaWQiOiI4MjUiLCJjb3VudHJ5IjoiSXRh
|
2669
|
+
bHkiLCJuYW1lIjoiQXJjaGFlb2xvZ2ljYWwgQXJlYSBhbmQgdGhlIFBhdHJp
|
2670
|
+
YXJjaGFsIEJhc2lsaWNhIG9mIEFxdWlsZWlhIiwic2l6ZSI6IjE1NTAwMDAu
|
2671
|
+
MCIsImlzb19jb2RlIjoiSVQiLCJjcml0ZXJpYSI6IltpaWldLFtpdl0sW3Zp
|
2672
|
+
XSIsImNvbW1lbnRzIjoiIiwid2lraXBlZGlhX2xpbmsiOiJodHRwOi8vZW4u
|
2673
|
+
d2lraXBlZGlhLm9yZy93aWtpL0FxdWlsZWlhIiwiZXh0ZXJuYWxfbGlua3Mi
|
2674
|
+
OiJbQXF1aWxlaWEgdmlydHVhbCB0b3VyIChJdGFsaWFuIExhbmRtYXJrcyl8
|
2675
|
+
aHR0cDovL3d3dy5idXJnZXIuc2kvSXRhbHkvQXF1aWxlaWEvdXZvZF9FTkcu
|
2676
|
+
aHRtbF0jW1ByZS1yb21hbiBhbmQgQ2VsdGljIEFxdWlsZWlhfGh0dHA6Ly93
|
2677
|
+
d3cudGVycmVkaWFxdWlsZWlhLml0L2RvY2Viby9kb2NlYm9DbXMvaW5kZXgu
|
2678
|
+
cGhwP3NwZWNpYWw9Y2hhbmdlYXJlYSZuZXdBcmVhPTU3Ml0jW0FxdWlsZWlh
|
2679
|
+
IGZlYXR1cmVkIG9uIDEwIEV1cm8gSXRhbGlhbiBDb2lufGh0dHA6Ly9uZXdz
|
2680
|
+
LmNvaW51cGRhdGUuY29tL2FxdWlsZWlhLWV1cm8tY29pbi1mcm9tLXRoZS1p
|
2681
|
+
dGFsaWFuLXN0YXRlLW1pbnQtMDQ3My9dIiwiZW5kYW5nZXJlZF95ZWFyIjoi
|
2682
|
+
IiwiZWRpdGVkX3JlZ2lvbiI6IlByb3ZpbmNlIG9mIFVkaW5lLCBGcml1bGkt
|
2683
|
+
VmVuZXppYSBHaXVsaWEgUmVnaW9uIiwiZW5kYW5nZXJlZF9yZWFzb24iOiIi
|
2684
|
+
LCJ0eXBlIjoiY3VsdHVyYWwiLCJyZWdpb24iOiJQcm92aW5jZSBvZiBVZGlu
|
2685
|
+
ZSwgRnJpdWxpLVZlbmV6aWEgR2l1bGlhIFJlZ2lvbiIsImRlc2NyaXB0aW9u
|
2686
|
+
IjoiQXF1aWxlaWEgKEZyaXVsaWFuOiBBY3VpbGVlL0FxdWlsZWUvQXF1aWxl
|
2687
|
+
YSkgaXMgYW4gYW5jaWVudCBSb21hbiBjaXR5IGluIHdoYXQgaXMgbm93IEl0
|
2688
|
+
YWx5LCBhdCB0aGUgaGVhZCBvZiB0aGUgQWRyaWF0aWMgYXQgdGhlIGVkZ2Ug
|
2689
|
+
b2YgdGhlIGxhZ29vbnMsIGFib3V0IDEwwqBrbSBmcm9tIHRoZSBzZWEsIG9u
|
2690
|
+
IHRoZSByaXZlciBOYXRpc28gKG1vZGVybiBOYXRpc29uZSksIHRoZSBjb3Vy
|
2691
|
+
c2Ugb2Ygd2hpY2ggaGFzIGNoYW5nZWQgc29tZXdoYXQgc2luY2UgUm9tYW4g
|
2692
|
+
dGltZXMuIFRvZGF5LCBpdCBpcyBvbmUgb2YgdGhlIG1haW4gYXJjaGVvbG9n
|
2693
|
+
aWNhbCBzaXRlcyBvZiBOb3J0aGVybiBJdGFseS5cblxuQXF1aWxlaWEgd2Fz
|
2694
|
+
IGZvdW5kZWQgYXMgYSBjb2xvbnkgYnkgdGhlIFJvbWFucyBpbiAxODAvMTgx
|
2695
|
+
IEJDIGFsb25nIHRoZSBOYXRpc3NhIFJpdmVyLCBvbiBsYW5kIHNvdXRoIG9m
|
2696
|
+
IHRoZSBKdWxpYW4gQWxwcyBidXQgYWJvdXQgOCBtaWxlcyBub3J0aCBvZiB0
|
2697
|
+
aGUgbGFnb29ucy4gQXBwYXJlbnRseSBuYW1lZCBmcm9tIGFuIGluZGlnZW5v
|
2698
|
+
dXMgd29yZCBBa3lsaXMsIHRoZSBjb2xvbnkgc2VydmVkIGFzIGEgZnJvbnRp
|
2699
|
+
ZXIgZm9ydHJlc3MgYXQgdGhlIG5vcnRoLWVhc3QgY29ybmVyIG9mIHRyYW5z
|
2700
|
+
cGFkYW5lIEl0YWx5IGFuZCB3YXMgaW50ZW5kZWQgdG8gcHJvdGVjdCB0aGUg
|
2701
|
+
VmVuZXRpLCBmYWl0aGZ1bCBSb21hbiBhbGxpZXMsIGR1cmluZyB0aGUgSWxs
|
2702
|
+
eXJpYW4gV2FycyBhbmQgYWN0IGFzIGEgYnV0dHJlc3MgdG8gY2hlY2sgdGhl
|
2703
|
+
IGFkdmFuY2Ugb2Ygb3RoZXIgd2FybGlrZSBwZW9wbGUsIHN1Y2ggYXMgdGhl
|
2704
|
+
IGhvc3RpbGUgdHJpYmVzIG9mIENhcm5pIGFuZCBIaXN0cmkuIEluIGZhY3Qs
|
2705
|
+
IEFxdWlsZWlhIHdhcyBmb3VuZGVkIG9uIGEgc2l0ZSBub3QgZmFyIGZyb20g
|
2706
|
+
d2hlcmUgR2F1bGlzaCBpbnZhZGVycyBoYWQgYXR0ZW1wdGVkIHRvIHNldHRs
|
2707
|
+
ZSBpbiAxODMgQkMuXG5cblRoZSBjb2xvbnkgd2FzIGVzdGFibGlzaGVkIHdp
|
2708
|
+
dGggTGF0aW4gcmlnaHRzIGJ5IHRoZSB0cml1bXZpcmF0ZSBvZiBQdWJsaXVz
|
2709
|
+
IFNjaXBpbyBOYXNpY2EsIENhaXVzIEZsYW1pbml1cywgYW5kIEx1Y2l1cyBN
|
2710
|
+
YW5saXVzIEFjaWRpbnVzLCB0d28gb2Ygd2hvbSB3ZXJlIG9mIGNvbnN1bGFy
|
2711
|
+
IGFuZCBvbmUgb2YgcHJhZXRvcmlhbiByYW5rLiBUaGV5IGxlZCAzLDAwMCBw
|
2712
|
+
ZWRpdGVzIChpbmZhbnRyeSksIG1haW5seSBmcm9tIFNhbW5pdW0sIHdobyB3
|
2713
|
+
aXRoIHRoZWlyIGZhbWlsaWVzIGZvcm1lZCB0aGUgYnVsayBvZiB0aGUgc2V0
|
2714
|
+
dGxlcnMgYW5kIHdlcmUgc29vbiBzdXBwbGVtZW50ZWQgYnkgbmF0aXZlIFZl
|
2715
|
+
bmV0aS4gSXQgaXMgbGlrZWx5IHRoYXQgQXF1aWxlaWEgaGFkIGJlZW4gYSBj
|
2716
|
+
ZW50ZXIgb2YgVmVuZXRpYSBldmVuIGJlZm9yZSB0aGUgY29taW5nIG9mIHRo
|
2717
|
+
ZSBSb21hbnMuIEFuZCBBcXVpbGVpYSdzIHN0cmF0ZWdpYyBtaWxpdGFyeSBw
|
2718
|
+
b3NpdGlvbiBhbHNvIHNlcnZlZCB0byBwcm9tb3RlIHRoZSBWZW5ldGljIHRy
|
2719
|
+
YWRlIGluIGFtYmVyIGltcG9ydGVkIGZyb20gdGhlIEJhbHRpYy5cblxuQXF1
|
2720
|
+
aWxlaWEgd2FzIGNvbm5lY3RlZCBieSByb2FkIHdpdGggQm9sb2duYSBwcm9i
|
2721
|
+
YWJseSBpbiAxNzMgQkM7IGFuZCBzdWJzZXF1ZW50bHkgd2l0aCBHZW5vYSBp
|
2722
|
+
biAxNDggQkMgYnkgdGhlIFZpYSBQb3N0dW1pYSwgd2hpY2ggcmFuIHRocm91
|
2723
|
+
Z2ggQ3JlbW9uYSwgQmVkcmlhY3VtIGFuZCBBbHRpbnVtLCBqb2luaW5nIHRo
|
2724
|
+
ZSBmaXJzdC1tZW50aW9uZWQgcm9hZCBhdCBDb25jb3JkaWEsIHdoaWxlIHRo
|
2725
|
+
ZSBjb25zdHJ1Y3Rpb24gb2YgdGhlIFZpYSBQb3BpbGlhIGZyb20gUmltaW5p
|
2726
|
+
IHRvIEFkIFBvcnR1bSBuZWFyIEFsdGludW0gaW4gMTMyIEJDIGltcHJvdmVk
|
2727
|
+
IHRoZSBjb21tdW5pY2F0aW9ucyBzdGlsbCBmdXJ0aGVyLlxuXG5JbiAxNjkg
|
2728
|
+
QkMsIDEsNTAwIG1vcmUgTGF0aW4gY29sb25pc3RzIHdpdGggdGhlaXIgZmFt
|
2729
|
+
aWxpZXMgd2VyZSBzZXR0bGVkIGluIHRoZSB0b3duIGFzIGEgcmVpbmZvcmNl
|
2730
|
+
bWVudCB0byB0aGUgZ2Fycmlzb24uIFRoZSBkaXNjb3Zlcnkgb2YgdGhlIGdv
|
2731
|
+
bGQgZmllbGRzIG5lYXIgdGhlIG1vZGVybiBLbGFnZW5mdXJ0IGluIDEzMCBC
|
2732
|
+
QyBicm91Z2h0IGl0IGludG8gbm90aWNlLCBhbmQgaXQgc29vbiBiZWNhbWUg
|
2733
|
+
YSBwbGFjZSBvZiBpbXBvcnRhbmNlLCBub3Qgb25seSBvd2luZyB0byBpdHMg
|
2734
|
+
c3RyYXRlZ2ljIHBvc2l0aW9uLCBidXQgYXMgYSBjZW50cmUgb2YgdHJhZGUs
|
2735
|
+
IGVzcGVjaWFsbHkgaW4gYWdyaWN1bHR1cmFsIHByb2R1Y3RzIGFuZCB2aXRp
|
2736
|
+
Y3VsdHVyZS4gSXQgYWxzbyBoYWQsIGluIGxhdGVyIHRpbWVzIGF0IGxlYXN0
|
2737
|
+
LCBjb25zaWRlcmFibGUgYnJpY2tmaWVsZHMuXG5cblRoZSBvcmlnaW5hbCBM
|
2738
|
+
YXRpbiBjb2xvbnkgYmVjYW1lIGEgbXVuaWNpcGl1bSBwcm9iYWJseSBpbiA5
|
2739
|
+
MCBCQy4gQ2l0aXplbnMgd2VyZSBhc2NyaWJlZCB0byB0aGUgUm9tYW4gdHJp
|
2740
|
+
YmUgVmVsaW5hLiBUaGUgY3VzdG9tcyBib3VuZGFyeSBvZiBJdGFseSB3YXMg
|
2741
|
+
Y2xvc2UgYnkgaW4gQ2ljZXJvJ3MgZGF5LiBJdCB3YXMgcGx1bmRlcmVkIGJ5
|
2742
|
+
IHRoZSBJYXB5ZGVzIHVuZGVyIEF1Z3VzdHVzLCBidXQsIGluIHRoZSBwZXJp
|
2743
|
+
b2Qgb2YgcGVhY2Ugd2hpY2ggZm9sbG93ZWQsIHdhcyBhYmxlIHRvIGRldmVs
|
2744
|
+
b3AgaXRzIHJlc291cmNlcy4gQXVndXN0dXMgdmlzaXRlZCBpdCBkdXJpbmcg
|
2745
|
+
dGhlIFBhbm5vbmlhbiB3YXJzIGluIDEy4oCRMTDCoEJDIGFuZCBpdCB3YXMg
|
2746
|
+
dGhlIGJpcnRocGxhY2Ugb2YgVGliZXJpdXMnIHNvbiBieSBKdWxpYSwgaW4g
|
2747
|
+
dGhlIGxhdHRlciB5ZWFyLlxuXG5JdCB3YXMgdGhlIHN0YXJ0aW5nLXBvaW50
|
2748
|
+
IG9mIHNldmVyYWwgaW1wb3J0YW50IHJvYWRzIGxlYWRpbmcgdG8gdGhlIG5v
|
2749
|
+
cnRoLWVhc3Rlcm4gcG9ydGlvbiBvZiB0aGUgZW1waXJlIOKAlCB0aGUgcm9h
|
2750
|
+
ZCAoVmlhIEl1bGlhIEF1Z3VzdGEpIGJ5IEl1bGl1bSBDYXJuaWN1bSB0byBW
|
2751
|
+
ZWxkaWRlbmEgKG1vZC4gV2lsdGVuLCBuZWFyIElubnNicnVjayksIGZyb20g
|
2752
|
+
d2hpY2ggYnJhbmNoZWQgb2ZmIHRoZSByb2FkIGludG8gTm9yaWN1bSwgbGVh
|
2753
|
+
ZGluZyBieSBWaXJ1bnVtIChLbGFnZW5mdXJ0KSB0byBMYXVyaWV1bSAoTG9y
|
2754
|
+
Y2gpIG9uIHRoZSBEYW51YmUsIHRoZSByb2FkIGludG8gUGFubm9uaWEsIGxl
|
2755
|
+
YWRpbmcgdG8gQWVtb25hIChManVibGphbmEpIGFuZCBTaXJtaXVtIChTcmVt
|
2756
|
+
c2thIE1pdHJvdmljYSksIHRoZSByb2FkIHRvIFRhcnNhdGljYSAobmVhciBG
|
2757
|
+
aXVtZSwgbm93IFJpamVrYSkgYW5kIFNpc2NpYSAoU2lzYWspLCBhbmQgdGhh
|
2758
|
+
dCB0byBUZXJnZXN0ZSAoVHJpZXN0ZSkgYW5kIHRoZSBJc3RyaWFuIGNvYXN0
|
2759
|
+
LlxuXG5CZXNpZGVzIG5hdGl2ZXMgb2YgSXRhbHksIENlbHRzLCBJbGx5cmlh
|
2760
|
+
bnMsIEdyZWVrcywgRWd5cHRpYW5zLCBKZXdzLCBhbmQgU3lyaWFucyBhbGwg
|
2761
|
+
c2V0dGxlZCBpbiB0aGUgY2l0eSBhbmQgY29udHJpYnV0ZWQgdG8gaXRzIGNv
|
2762
|
+
bW1lcmNpYWwgZGV2ZWxvcG1lbnQuIEpld2lzaCBhcnRpc2FucyBlc3RhYmxp
|
2763
|
+
c2hlZCBhIGZsb3VyaXNoaW5nIHRyYWRlIGluIGdsYXNzd29yay4gTWV0YWwg
|
2764
|
+
ZnJvbSBOb3JpY3VtIHdhcyBmb3JnZWQgYW5kIGV4cG9ydGVkLiBUaGUgYW5j
|
2765
|
+
aWVudCBWZW5ldGljIHRyYWRlIGluIGFtYmVyIGZyb20gdGhlIEJhbHRpYyB3
|
2766
|
+
YXMgY29udGludWVkLiBXaW5lLCBlc3BlY2lhbGx5IGl0cyBmYW1vdXMgUHVj
|
2767
|
+
aW51bSB3YXMgZXhwb3J0ZWQuIE9pbCB3YXMgaW1wb3J0ZWQgZnJvbSBQcm9j
|
2768
|
+
b25zdWxhciBBZnJpY2EuXG5cbkluIHRlcm1zIG9mIHJlbGlnaW9uLCB0aGUg
|
2769
|
+
Um9tYW4gcGFudGhlb24gd2FzIGFkb3B0ZWQgYWx0aG91Z2ggYSBuYXRpdmUg
|
2770
|
+
c3VuZ29kLCBCZWxlbnVzLCBoYWQgYSBsYXJnZSBmb2xsb3dpbmcuIEpld3Mg
|
2771
|
+
cHJhY3RpY2VkIHRoZWlyIGFuY2VzdHJhbCByZWxpZ2lvbiBhbmQgaXQgd2Fz
|
2772
|
+
IHBlcmhhcHMgc29tZSBvZiB0aGVzZSBKZXdzIHdobyBiZWNhbWUgdGhlIGZp
|
2773
|
+
cnN0IENocmlzdGlhbnMuIE1lYW53aGlsZSwgc29sZGllcnMgYnJvdWdodCB0
|
2774
|
+
aGUgbWFydGlhbCBjdWx0IG9mIE1pdGhyYXMuXG5cbkluIHRoZSB3YXIgYWdh
|
2775
|
+
aW5zdCB0aGUgTWFyY29tYW5uaSBpbiAxNjcsIHRoZSB0b3duIHdhcyBoYXJk
|
2776
|
+
IHByZXNzZWQ7IGl0cyBmb3J0aWZpY2F0aW9ucyBoYWQgZmFsbGVuIGludG8g
|
2777
|
+
ZGlzcmVwYWlyIGR1cmluZyB0aGUgbG9uZyBwZWFjZS4gTmV2ZXJ0aGVsZXNz
|
2778
|
+
LCB3aGVuIGluIDE2OCBNYXJjdXMgQXVyZWxpdXMgbWFkZSBBcXVpbGVpYSB0
|
2779
|
+
aGUgcHJpbmNpcGFsIGZvcnRyZXNzIG9mIHRoZSBlbXBpcmUgYWdhaW5zdCB0
|
2780
|
+
aGUgYmFyYmFyaWFucyBvZiB0aGUgTm9ydGggYW5kIEVhc3QsIGl0IHJvc2Ug
|
2781
|
+
dG8gdGhlIHBpbm5hY2xlIG9mIGl0cyBncmVhdG5lc3MgYW5kIHNvb24gaGFk
|
2782
|
+
IGEgcG9wdWxhdGlvbiBvZiAxMDAsMDAwLiBJbiAyMzgsIHdoZW4gdGhlIHRv
|
2783
|
+
d24gdG9vayB0aGUgc2lkZSBvZiB0aGUgU2VuYXRlIGFnYWluc3QgdGhlIEVt
|
2784
|
+
cGVyb3IgTWF4aW1pbnVzIFRocmF4LCB0aGUgZm9ydGlmaWNhdGlvbnMgd2Vy
|
2785
|
+
ZSBoYXN0aWx5IHJlc3RvcmVkLCBhbmQgcHJvdmVkIG9mIHN1ZmZpY2llbnQg
|
2786
|
+
c3RyZW5ndGggdG8gcmVzaXN0IGZvciBzZXZlcmFsIG1vbnRocywgdW50aWwg
|
2787
|
+
TWF4aW1pbnVzIGhpbXNlbGYgd2FzIGFzc2Fzc2luYXRlZC5cblxuRHVyaW5n
|
2788
|
+
IHRoZSA0dGggY2VudHVyeSwgQXF1aWxlaWEgbWFpbnRhaW5lZCBpdHMgaW1w
|
2789
|
+
b3J0YW5jZS4gQ29uc3RhbnRpbmUgc29qb3VybmVkIHRoZXJlIG9uIG51bWVy
|
2790
|
+
b3VzIG9jY2FzaW9ucy4gSXQgYmVjYW1lIGEgbmF2YWwgc3RhdGlvbiBhbmQg
|
2791
|
+
dGhlIHNlYXQgb2YgdGhlIENvcnJlY3RvciBWZW5ldGlhcnVtIGV0IEhpc3Ry
|
2792
|
+
aWFlOyBhIG1pbnQgd2FzIGVzdGFibGlzaGVkLCBvZiB3aGljaCB0aGUgY29p
|
2793
|
+
bnMgd2VyZSB2ZXJ5IG51bWVyb3VzLCBhbmQgdGhlIGJpc2hvcCBvYnRhaW5l
|
2794
|
+
ZCB0aGUgcmFuayBvZiBtZXRyb3BvbGl0YW4gYXJjaGJpc2hvcC4gQSBjb3Vu
|
2795
|
+
Y2lsIGhlbGQgaW4gdGhlIGNpdHkgaW4gMzgxIHdhcyBvbmx5IHRoZSBmaXJz
|
2796
|
+
dCBvZiBhIHNlcmllcyBvZiBDb3VuY2lscyBvZiBBcXVpbGVpYSB0aGF0IGhh
|
2797
|
+
dmUgYmVlbiBjb252ZW5lZCBvdmVyIHRoZSBjZW50dXJpZXMuXG5cbkFuIGlt
|
2798
|
+
cGVyaWFsIHBhbGFjZSB3YXMgY29uc3RydWN0ZWQgaGVyZSwgaW4gd2hpY2gg
|
2799
|
+
dGhlIGVtcGVyb3JzIGFmdGVyIHRoZSB0aW1lIG9mIERpb2NsZXRpYW4gZnJl
|
2800
|
+
cXVlbnRseSByZXNpZGVkOyBhbmQgdGhlIGNpdHkgb2Z0ZW4gcGxheWVkIGEg
|
2801
|
+
cGFydCBpbiB0aGUgc3RydWdnbGVzIGJldHdlZW4gdGhlIHJ1bGVycyBvZiB0
|
2802
|
+
aGUgNHRoIGNlbnR1cnkuIEluIDM0MCwgRW1wZXJvciBDb25zdGFudGluZSBJ
|
2803
|
+
SSB3YXMga2lsbGVkIHVuZGVyIGl0cyB3YWxscyB3aGlsZSBhdHRlbXB0aW5n
|
2804
|
+
IHRvIHRha2UgdGhlIGNpdHkgZnJvbSBoaXMgeW91bmdlciBicm90aGVyIENv
|
2805
|
+
bnN0YW5zLlxuXG5BdCB0aGUgZW5kIG9mIHRoZSA0dGggY2VudHVyeSwgQXVz
|
2806
|
+
b25pdXMsIGVudW1lcmF0ZWQgQXF1aWxlaWEgYXMgdGhlIG5pbnRoIGFtb25n
|
2807
|
+
IHRoZSBncmVhdCBjaXRpZXMgb2YgdGhlIHdvcmxkLCBwbGFjaW5nIFJvbWUs
|
2808
|
+
IE1lZGlvbGFudW0gYW5kIENhcHVhIGJlZm9yZSBpdC4gSG93ZXZlciwgaXQg
|
2809
|
+
d2FzIGJlc2llZ2VkIGJ5IEFsYXJpYyBhbmQgdGhlIFZpc2lnb3RocyBpbiA0
|
2810
|
+
MDEsIGR1cmluZyB3aGljaCB0aW1lIHNvbWUgb2YgaXRzIHJlc2lkZW50cyBm
|
2811
|
+
bGVkIHRvIHRoZSBsYWdvb25zLCBhbmQgYWdhaW4gdW5zdWNjZXNzZnVsbHkg
|
2812
|
+
aW4gNDA4LiBJbiA0NTIsIHRoZSBjaXR5IHdhcyBzbyB1dHRlcmx5IGRlc3Ry
|
2813
|
+
b3llZCBieSBBdHRpbGEncyBIdW5zIHRoYXQgaXQgd2FzIGFmdGVyd2FyZHMg
|
2814
|
+
aGFyZCB0byByZWNvZ25pemUgaXRzIG9yaWdpbmFsIHNpdGUuIFRoZSBSb21h
|
2815
|
+
biBpbmhhYml0YW50cywgdG9nZXRoZXIgd2l0aCB0aG9zZSBvZiBzbWFsbGVy
|
2816
|
+
IHRvd25zIGluIHRoZSBuZWlnaGJvcmhvb2QsIGZsZWQgdG8gdGhlIGxhZ29v
|
2817
|
+
bnMsIGFuZCBzbyBsYWlkIHRoZSBmb3VuZGF0aW9ucyBvZiB0aGUgY2l0aWVz
|
2818
|
+
IG9mIFZlbmljZSBhbmQgbmVhcmJ5IEdyYWRvLlxuXG5ZZXQgQXF1aWxlaWEg
|
2819
|
+
d291bGQgcmlzZSBhZ2FpbiwgdGhvdWdoIG11Y2ggZGltaW5pc2hlZCwgYW5k
|
2820
|
+
IGNvbnRpbnVlIHRvIGV4aXN0IHVudGlsIHRoZSBMb21iYXJkIGludmFzaW9u
|
2821
|
+
IG9mIDU2OC4gSXQgd2FzIG9uY2UgbW9yZSBkZXN0cm95ZWQgKDU5MCkgYnkg
|
2822
|
+
dGhlIExvbWJhcmRzLiBNZWFud2hpbGUsIHRoZSBwYXRyaWFyY2ggZmxlZCB0
|
2823
|
+
byB0aGUgaXNsYW5kIHRvd24gb2YgR3JhZG8sIHdoaWNoIHdhcyB1bmRlciB0
|
2824
|
+
aGUgcHJvdGVjdGlvbiBvZiB0aGUgQnl6YW50aW5lcy4gV2hlbiB0aGUgcGF0
|
2825
|
+
cmlhcmNoIHJlc2lkaW5nIGluIEdyYWRvIHdhcyByZWNvbmNpbGVkIHdpdGgg
|
2826
|
+
Um9tZSBpbiA2MDYsIHRob3NlIGNvbnRpbnVpbmcgaW4gdGhlaXIgcmVqZWN0
|
2827
|
+
aW9uIG9mIHRoZSBTZWNvbmQgQ291bmNpbCBvZiBDb25zdGFudGlub3BsZSBl
|
2828
|
+
bGVjdGVkIGEgcGF0cmlhcmNoIGF0IEFxdWlsZWlhLiBUaHVzLCB0aGUgZGlv
|
2829
|
+
Y2VzZSB3YXMgZXNzZW50aWFsbHkgZGl2aWRlZCBpbnRvIHR3byBwYXJ0cywg
|
2830
|
+
d2l0aCB0aGUgbWFpbmxhbmQgcGF0cmlhcmNoYXRlIG9mIEFxdWlsZWlhIHVu
|
2831
|
+
ZGVyIHRoZSBwcm90ZWN0aW9uIG9mIHRoZSBMb21iYXJkcywgYW5kIHRoZSBp
|
2832
|
+
bnN1bGFyIHBhdHJpYXJjaGF0ZSBvZiBBcXVpbGVpYSBzZWF0ZWQgaW4gR3Jh
|
2833
|
+
ZG8gYmVpbmcgcHJvdGVjdGVkIGJ5IHRoZSBleGFyY2hhdGUgb2YgUmF2ZW5u
|
2834
|
+
YSBhbmQgbGF0ZXIgdGhlIERvZ2VzIG9mIFZlbmljZSwgd2l0aCB0aGUgY29s
|
2835
|
+
bHVzaW9uIG9mIHRoZSBMb21iYXJkcy4gVGhlIGxpbmUgb2YgdGhlIHBhdHJp
|
2836
|
+
YXJjaHMgZWxlY3RlZCBpbiBBcXVpbGVpYSB3b3VsZCBjb250aW51ZSBpbiBz
|
2837
|
+
Y2hpc20gdW50aWwgNjk5LiBIb3dldmVyLCBhbHRob3VnaCB0aGV5IGtlcHQg
|
2838
|
+
dGhlIHRpdGxlIG9mIHBhdHJpYXJjaCBvZiBBcXVpbGVpYSwgdGhleSBtb3Zl
|
2839
|
+
ZCB0aGVpciByZXNpZGVuY2UgZmlyc3QgdG8gQ29ybW9ucyBhbmQgbGF0ZXIg
|
2840
|
+
dG8gQ2l2aWRhbGUuXG5cblRoZSBMb21iYXJkIER1a2VzIG9mIEZyaXVsaSBy
|
2841
|
+
dWxlZCBBcXVpbGVpYSBhbmQgdGhlIHN1cnJvdW5kaW5nIG1haW5sYW5kIHRl
|
2842
|
+
cnJpdG9yeSBmcm9tIENpdmlkYWxlLiBJbiA3NzQsIENoYXJsZW1hZ25lIGNv
|
2843
|
+
bnF1ZXJlZCB0aGUgTG9tYmFyZCBkdWNoeSBhbmQgbWFkZSBpdCBpbnRvIGEg
|
2844
|
+
RnJhbmtpc2ggb25lIHdpdGggRXJpYyBvZiBGcml1bGkgYXMgZHVrZS4gSW4g
|
2845
|
+
Nzg3LCBDaGFybGVtYWduZSBuYW1lZCB0aGUgcHJpZXN0IGFuZCBtYXN0ZXIg
|
2846
|
+
b2YgZ3JhbW1hciBhdCB0aGUgUGFsYWNlIFNjaG9vbCBQYXVsaW51cyB0aGUg
|
2847
|
+
bmV3IHBhdHJpYXJjaCBvZiBBcXVpbGVpYS4gQWx0aG91Z2ggUGF1bGludXMg
|
2848
|
+
cmVzaWRlZCBtYWlubHkgYXQgQ2l2aWRhbGUsIGhpcyBzdWNjZXNzb3IgTWF4
|
2849
|
+
ZW50aXVzIGNvbnNpZGVyZWQgcmVidWlsZGluZyBBcXVpbGVpYS4gSG93ZXZl
|
2850
|
+
ciwgdGhlIHByb2plY3QgbmV2ZXIgY2FtZSB0byBmcnVpdGlvbi5cblxuV2hp
|
2851
|
+
bGUgTWF4ZW50aXVzIHdhcyBwYXRyaWFyY2gsIHRoZSBwb3BlIGFwcHJvdmVk
|
2852
|
+
IHRoZSBTeW5vZCBvZiBNYW50dWEsIHdoaWNoIGFmZmlybWVkIHRoZSBwcmVj
|
2853
|
+
ZWRlbmNlIG9mIHRoZSBtYWlubGFuZCBwYXRyaWFyY2ggb2YgQXF1aWxlaWEg
|
2854
|
+
b3ZlciB0aGUgcGF0cmlhcmNoIG9mIEdyYWRvLiBIb3dldmVyLCBtYXRlcmlh
|
2855
|
+
bCBjb25kaXRpb25zIHdlcmUgc29vbiB0byB3b3JzZW4gZm9yIEFxdWlsZWlh
|
2856
|
+
LiBUaGUgcnVpbnMgb2YgQXF1aWxlaWEgd2VyZSBjb250aW51YWxseSBwaWxs
|
2857
|
+
YWdlZCBmb3IgYnVpbGRpbmcgbWF0ZXJpYWwuIEFuZCB3aXRoIHRoZSBjb2xs
|
2858
|
+
YXBzZSBvZiB0aGUgQ2Fyb2xpbmdpYW5zIGluIHRoZSAxMHRoIGNlbnR1cnks
|
2859
|
+
IHRoZSBpbmhhYml0YW50cyB3b3VsZCBzdWZmZXIgdW5kZXIgdGhlIHJhaWRz
|
2860
|
+
IG9mIHRoZSBNYWd5YXJzLlxuXG5CeSB0aGUgMTF0aCBjZW50dXJ5LCB0aGUg
|
2861
|
+
cGF0cmlhcmNoIG9mIEFxdWlsZWlhIGhhZCBncm93biBzdHJvbmcgZW5vdWdo
|
2862
|
+
IHRvIGFzc2VydCB0ZW1wb3JhbCBzb3ZlcmVpZ250eSBvdmVyIEZyaXVsaSBh
|
2863
|
+
bmQgQXF1aWxlaWEuIFRoZSBIb2x5IFJvbWFuIEVtcGVyb3IgZ2F2ZSB0aGUg
|
2864
|
+
cmVnaW9uIHRvIHRoZSBwYXRyaWFyY2ggYXMgYSBmZXVkYWwgcG9zc2Vzc2lv
|
2865
|
+
bi4gSG93ZXZlciwgdGhlIHBhdHJpYXJjaCdzIHRlbXBvcmFsIGF1dGhvcml0
|
2866
|
+
eSB3YXMgY29uc3RhbnRseSBkaXNwdXRlZCBhbmQgYXNzYWlsZWQgYnkgdGhl
|
2867
|
+
IHRlcnJpdG9yaWFsIG5vYmlsaXR5LlxuXG5JbiAxMDI3IGFuZCAxMDQ0IFBh
|
2868
|
+
dHJpYXJjaCBQb3BwbyBvZiBBcXVpbGVpYSwgd2hvIHJlYnVpbHQgdGhlIGNh
|
2869
|
+
dGhlZHJhbCBvZiBBcXVpbGVpYSwgZW50ZXJlZCBhbmQgc2Fja2VkIG5laWdo
|
2870
|
+
Ym9yaW5nIEdyYWRvLCBhbmQsIHRob3VnaCB0aGUgUG9wZSByZWNvbmZpcm1l
|
2871
|
+
ZCB0aGUgUGF0cmlhcmNoIG9mIHRoZSBsYXR0ZXIgaW4gaGlzIGRpZ25pdGll
|
2872
|
+
cywgdGhlIHRvd24gbmV2ZXIgZnVsbHkgcmVjb3ZlcmVkLCB0aG91Z2ggaXQg
|
2873
|
+
Y29udGludWVkIHRvIGJlIHRoZSBzZWF0IG9mIHRoZSBQYXRyaWFyY2hhdGUg
|
2874
|
+
dW50aWwgaXRzIGZvcm1hbCB0cmFuc2ZlcmVuY2UgdG8gVmVuaWNlIGluIDE0
|
2875
|
+
NTAuXG5cbkluIHRoZSAxNHRoIGNlbnR1cnkgdGhlIFBhdHJpYXJjaGF0ZSBy
|
2876
|
+
ZWFjaGVkIGl0cyBiaWdnZXN0IGV4dGVuc2lvbiwgc3RyZXRjaGluZyBmcm9t
|
2877
|
+
IHRoZSBQaWF2ZSByaXZlciB0byB0aGUgSnVsaWFuIEFscHMgYW5kIG5vcnRo
|
2878
|
+
ZXJuIElzdHJpYS4gVGhlIHNlYXQgb2YgdGhlIFBhdHJpYXJjaGF0ZSBvZiBB
|
2879
|
+
cXVpbGVpYSBoYWQgYmVlbiB0cmFuc2ZlcnJlZCB0byBVZGluZSBpbiAxMjM4
|
2880
|
+
LCBidXQgcmV0dXJuZWQgdG8gQXF1aWxpZWEgaW4gMTQyMCB3aGVuIFZlbmlj
|
2881
|
+
ZSBhbm5leGVkIHRoZSB0ZXJyaXRvcnkgb2YgVWRpbmUuXG5cbkluIDE0NDUs
|
2882
|
+
IHRoZSBkZWZlYXRlZCBwYXRyaWFyY2ggTHVkb3ZpY28gVHJldmlzYW4gYWNx
|
2883
|
+
dWllc2NlZCBpbiB0aGUgbG9zcyBvZiBoaXMgYW5jaWVudCB0ZW1wb3JhbCBl
|
2884
|
+
c3RhdGUgaW4gcmV0dXJuIGZvciBhbiBhbm51YWwgc2FsYXJ5IG9mIDUsMDAw
|
2885
|
+
IGR1Y2F0cyBhbGxvd2VkIGhpbSBmcm9tIHRoZSBWZW5ldGlhbiB0cmVhc3Vy
|
2886
|
+
eS4gSGVuY2Vmb3J0aCBvbmx5IFZlbmV0aWFucyB3ZXJlIGFsbG93ZWQgdG8g
|
2887
|
+
aG9sZCB0aGUgdGl0bGUgb2YgUGF0cmlhcmNoIG9mIEFxdWlsZWlhLiBUaGUg
|
2888
|
+
UGF0cmlhcmNoYXRlIHdhcyBpbmNvcnBvcmF0ZWQgaW4gdGhlIFJlcHVibGlj
|
2889
|
+
IG9mIFZlbmljZSB3aXRoIHRoZSBuYW1lIG9mIFBhdHJpYSBkZWwgRnJpdWxp
|
2890
|
+
LCBydWxlZCBieSBhIEdlbmVyYWwgUHJvdmVkaXRvciBvciBhIFwiTHVvZ290
|
2891
|
+
ZW5lbnRlXCIgbGl2aW5nIGluIFVkaW5lLlxuXG5JdCB3YXMgZmluYWxseSBv
|
2892
|
+
ZmZpY2lhbGx5IHN1cHByZXNzZWQgaW4gMTc1MSwgYW5kIHRoZSBzZWVzIG9m
|
2893
|
+
IFVkaW5lIGFuZCBHb3JpemlhIChHw7ZyeikgZXN0YWJsaXNoZWQgaW4gaXRz
|
2894
|
+
IHN0ZWFkLlxuXG5UaGUgQ2F0aGVkcmFsIG9mIEFxdWlsZWlhIGlzIGEgZmxh
|
2895
|
+
dC1yb29mZWQgYmFzaWxpY2EgZXJlY3RlZCBieSBQYXRyaWFyY2ggUG9wcG8g
|
2896
|
+
aW4gMTAzMSBvbiB0aGUgc2l0ZSBvZiBhbiBlYXJsaWVyIGNodXJjaCwgYW5k
|
2897
|
+
IHJlYnVpbHQgYWJvdXQgMTM3OSBpbiB0aGUgR290aGljIHN0eWxlIGJ5IFBh
|
2898
|
+
dHJpYXJjaCBNYXJxdWFyZCB2b24gUmFuZGVjay5cblxuVGhlIGZhw6dhZGUs
|
2899
|
+
IGluIFJvbWFuZXNxdWUtR290aGljIHN0eWxlLCBpcyBjb25uZWN0ZWQgYnkg
|
2900
|
+
YSBwb3J0aWNvIHRvIHRoZSBDaHVyY2ggb2YgdGhlIFBhZ2FucywgYW5kIHRo
|
2901
|
+
ZSByZW1haW5zIG9mIHRoZSA1dGggY2VudHVyeSBCYXB0aXN0cnkuIFRoZSBp
|
2902
|
+
bnRlcmlvciBoYXMgYSBuYXZlIGFuZCB0d28gYWlzbGVzLCB3aXRoIGEgbm90
|
2903
|
+
ZXdvcnRoeSBtb3NhaWMgcGF2ZW1lbnQgZnJvbSB0aGUgNHRoIGNlbnR1cnku
|
2904
|
+
IFRoZSB3b29kZW4gY2VpbGluZyBpcyBmcm9tIDE1MjYsIHdoaWxlIHRoZSBm
|
2905
|
+
cmVzY28gZGVjb3JhdGlvbiBiZWxvbmdzIHRvIHZhcmlvdXMgYWdlczogZnJv
|
2906
|
+
bSB0aGUgNHRoIGNlbnR1cnkgaW4gdGhlIFN0LiBQZXRlcidzIGNoYXBlbCBv
|
2907
|
+
ZiB0aGUgYXBzZSBhcmVhOyBmcm9tIHRoZSAxMXRoIGNlbnR1cnkgaW4gdGhl
|
2908
|
+
IGFwc2UgaXRzZWxmOyBmcm9tIHRoZSAxMnRoIGNlbnR1cnkgaW4gdGhlIHNv
|
2909
|
+
LWNhbGxlZCBcIkNyeXB0IG9mIHRoZSBGcmVzY29lc1wiLCB1bmRlciB0aGUg
|
2910
|
+
cHJlc2J5dGVyeSwgd2l0aCBhIGN5Y2xlIGRlcGljdGluZyB0aGUgb3JpZ2lu
|
2911
|
+
cyBvZiBDaHJpc3RpYW5pdHkgaW4gQXF1aWxlaWEgYW5kIHRoZSBoaXN0b3J5
|
2912
|
+
IG9mIFN0LiBIZXJtYWdvcmFzLCBmaXJzdCBiaXNob3Agb2YgdGhlIGNpdHku
|
2913
|
+
XG5cbk5leHQgdG8gdGhlIDExdGggY2VudHVyeSBSb21hbmVzcXVlIGNoYXBl
|
2914
|
+
bCBvZiB0aGUgSG9seSBTZXB1bGNocmUsIGF0IHRoZSBiZWdpbm5pbmcgb2Yg
|
2915
|
+
dGhlIGxlZnQgYWlzbGUsIGZsb29yaW5nIG9mIGRpZmZlcmVudCBhZ2VzIGNh
|
2916
|
+
biBiZSBzZWVuOiB0aGUgbG93ZXN0IGlzIGZyb20gYSBSb21hbiB2aWxsYSBv
|
2917
|
+
ZiB0aGUgYWdlIG9mIEF1Z3VzdHVzOyB0aGUgbWlkZGxlIG9uZSBoYXMgYSB0
|
2918
|
+
eXBpY2FsIGNvY2Npb3Blc3RvIHBhdmVtZW50ZTsgdGhlIHVwcGVyIG9uZSwg
|
2919
|
+
YmVhcmluZyBibGFja2VuaW5nIGZyb20gdGhlIEF0dGlsYSdzIGZpcmUsIGhh
|
2920
|
+
cyBnZW9tZXRyaWNhbCBkZWNvcmF0aW9ucy5cblxuRXh0ZXJuYWxseSwgYmVo
|
2921
|
+
aW5kIHRoZSA5dGggY2VudHVyeSBjYW1wYW5pbGUgYW5kIHRoZSBhcHNlLCBp
|
2922
|
+
cyB0aGUgQ2VtZXRlcnkgb2YgdGhlIEZhbGxlbiwgd2hlcmUgdGVuIHVubmFt
|
2923
|
+
ZWQgc29sZGllcnMgb2YgV29ybGQgV2FyIEkgYXJlIGJ1cmllZC4gU2FpbnQg
|
2924
|
+
SGVybWFuZ29yYXMgaXMgYWxzbyBidXJpZWQgdGhlcmUuXG5cblRoZSBhbmNp
|
2925
|
+
ZW50IGJ1aWxkaW5ncyBvZiBBcXVpbGVpYSBzZXJ2ZWQgYXMgc3RvbmUgcXVh
|
2926
|
+
cnJpZXMgZm9yIGNlbnR1cmllcywgYW5kIG5vIGVkaWZpY2VzIG9mIHRoZSBS
|
2927
|
+
b21hbiBwZXJpb2QgcmVtYWluIGFib3ZlIGdyb3VuZC4gRXhjYXZhdGlvbnMg
|
2928
|
+
aGF2ZSByZXZlYWxlZCBvbmUgc3RyZWV0IGFuZCB0aGUgbm9ydGgtd2VzdCBh
|
2929
|
+
bmdsZSBvZiB0aGUgdG93biB3YWxscywgd2hpbGUgdGhlIE5hdGlvbmFsIEFy
|
2930
|
+
Y2hhZW9sb2dpY2FsIE11c2V1bSAob25lIG9mIHRoZSBtb3N0IGltcG9ydGFu
|
2931
|
+
dCBtdXNldW1zIG9mIEFuY2llbnQgUm9tZSBpbiB0aGUgd29ybGQpIGNvbnRh
|
2932
|
+
aW5zIG92ZXIgMiwwMDAgaW5zY3JpcHRpb25zLCBzdGF0dWVzIGFuZCBvdGhl
|
2933
|
+
ciBhbnRpcXVpdGllcywgYXMgd2VsbCBhcyBnbGFzc2VzIG9mIGxvY2FsIHBy
|
2934
|
+
b2R1Y3Rpb24gYW5kIGEgbnVtaXNtYXRpY3MgY29sbGVjdGlvbi5cblxuVGhl
|
2935
|
+
IHNpdGUgb2YgQXF1aWxlaWEsIGJlbGlldmVkIHRvIGJlIHRoZSBsYXJnZXN0
|
2936
|
+
IFJvbWFuIGNpdHkgeWV0IHRvIGJlIGV4Y2F2YXRlZCwgaXMgaW5zY3JpYmVk
|
2937
|
+
IG9uIHRoZSBVTkVTQ08gV29ybGQgSGVyaXRhZ2UgTGlzdC5cblxuSW4gdGhl
|
2938
|
+
IE1vbmFzdGVybyBmcmFjdGlvbiBpcyBhIDV0aCBjZW50dXJ5IENocmlzdGlh
|
2939
|
+
biBiYXNpbGljYSwgbGF0ZXIgYSBCZW5lZGljdGluZSBtb25hc3RlcnksIHdo
|
2940
|
+
aWNoIHRvZGF5IGhvdXNlcyB0aGUgUGFsZW8tQ2hyaXN0aWFuIE11c2V1bS4i
|
2941
|
+
LCJsb25naXR1ZGUiOiIxMy4zNjc1IiwibGF0aXR1ZGUiOiI0NS43NjgzMzMi
|
2942
|
+
LCJ0aXRsZSI6IkFyY2hhZW9sb2dpY2FsIEFyZWEgYW5kIHRoZSBQYXRyaWFy
|
2943
|
+
Y2hhbCBCYXNpbGljYSBvZiBBcXVpbGVpYSJ9XX0=
|
2944
|
+
http_version: !binary |-
|
2945
|
+
MS4x
|
2946
|
+
recorded_at: Mon, 20 Aug 2012 10:44:39 GMT
|
2947
|
+
recorded_with: VCR 2.2.4
|